/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Tabs
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */
	body {
		color: #666;
		font-size: 16px;
		font-family: "HelveticaNeue", "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
		font-weight:400;
		font-stretch:normal;

		background-color: #700;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%; }


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #666;
		font-family: "Rockwell Extra Bold", "RockwellStdExtraBoldRegular", monospace;
		line-height: 1.5em;
		font-weight: normal; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 46px; }
	h2 {
		font-size: 36px;
		font-family: "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
		font-weight:300;
		font-stretch:normal; }
	h3 { font-size: 22px; }
	h4 { font-size: 18px; }
	h5 { font-size: 16px; }
	h6 { font-size: 14px; }

	p { margin: 0 0 10px; line-height: 1.5em;}

	em {  }
	strong { font-family: "Rockwell Extra Bold", "RockwellStdExtraBoldRegular", monospace; }
	small { font-size: 9px; }

/*	Blockquotes  */
	blockquote, blockquote p {  }
	blockquote {  }
	blockquote cite {  }
	blockquote cite:before {  }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {  }

	hr {  }


/* #Links
================================================== */
	a, a:visited { color: #900; text-decoration: none; outline: 0; }
	a:hover, a:focus { color: #b00; text-decoration: underline; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol {  }
	ul {  }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul {  }
	ul ul li, ul ol li,
	ol ol li, ol ul li {  }
	li { line-height: 1.5em; }
	ul.large li {  }
	li p {  }


/* #Images
================================================== */
	img.scale-with-grid{
		max-width:100%;
		height:auto;
	}


/* #Buttons - need to edit when implementing forms
================================================== */
	a.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"]{
		height:40px;
		margin-bottom:10px;
		padding:0 10px;
		border:none;
		
		color:#fff;
		font-size:18px;
		font-family:"HelveticaNeue", "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
		font-weight:400;
		font-stretch:normal;
		line-height:40px;
		background-color:#900;
	}

	a.button{
		display:inline-block;	
	}

	a.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover{
		cursor:pointer;
		text-decoration:none;
		background-color:#b00;
	}

	a.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active{

	}

	a.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width{
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center;
	}

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner{
    border:0;
    padding:0;
	}


/* #Tooltip
================================================== */
	.tooltip{
		display:none;
		position:relative;
		width:130px;
		padding:10px;
	
		color:#666;
		font-size:12px;
		line-height:1.125em;
		background-color:#fff;
	
		-webkit-border-radius:4px;
		-moz-border-radius:4px;
		border-radius:4px;
	
		-moz-box-shadow:0 0 8px 0 #666;
		-webkit-box-shadow:0 0 8px 0 #666;
		box-shadow:0 0 8px 0 #666;
	}
	
	.tooltip span{
		position:absolute;
		display:block;
		height:10px;
		width:150px;
		left:0;
		top:-7px;
		background:transparent url(../images/g_tooltip_arrow.gif) center top no-repeat;
	}


/* #Overlay
================================================== */
	#overlay{
		display:none;
		position:relative;
		color:#666;
	}
	
	#overlay .close{
		position:absolute;
		display:block;
		cursor:pointer;
		top:-13px;
		right:-14px;
		height:30px;
		width:30px;
		background:transparent url(../images/b_close.png) left top no-repeat;
	}

	.overlayContent{
		padding:40px 60px;
		background:#fff;
	}


/* #Tabs
================================================== */
	ul.tabs{
		height:40px;
	}

	ul.tabs li{
		float:left;
	}

	ul.tabs a{
		float:left;
		position:relative;
		display:block;
		height:40px;
		margin-right:10px;
		padding:0 10px;
		outline:0;

		color:#fff;
		font-size:18px;
		line-height:40px;
		text-decoration:none;
		background-color:#8c8c84;
	}

	ul.tabs a:hover{
		color:#fff;
		background-color:#b00;
	}

	ul.tabs a.current{
		cursor:default;
		color:#666;
		background-color:#e9e9db;
	}

	.panes div{
		padding:20px 30px 10px;
		background-color:#e9e9db;
	}

	.panes div.disclaimer{
		padding:10px 0 0;
	}


/* #Forms - need to edit when implementing forms
================================================== */
	form {  }
	fieldset {  }

	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		display:block;
		width:350px;
		max-width:90%;
		margin-bottom:10px;
		padding:10px;
		outline:none;

		color:#333;
		font-size:22px;
		font-family:"HelveticaNeue", "Helvetica Neue", "HelveticaNeueRoman", "HelveticaNeue-Roman", "Helvetica Neue Roman", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif;
		font-weight:400;
		font-stretch:normal;

		border:1px dotted #c66;
		background:#fff;
	}

	select { padding: 0; }

	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
	-moz-box-shadow:0 0 3px 0 #999;
	-webkit-box-shadow:0 0 3px 0 #999;
	box-shadow:0 0 3px 0 #999;
	}

	textarea { min-height: 60px; }

	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;
	}

	select {
		width: 300px; }

	input[type="checkbox"] { display: inline; }

	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444;
	}

/* #Misc
================================================== */
	.remove-bottom{ margin-bottom: 0 !important; }
	.add-bottom{ margin-bottom: 10px !important; }
	.twice-bottom{ margin-bottom: 20px !important; }


