/*

Title: 		Globals & Reset
Media:		Screen
Updated: 	May 4, 2009


/* ---------------------------
		=Globals & Resets 
---------------------------- */

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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: baseline;
}

/* 	font-size set following Richard Rutter's method to allow text resizing across all browsers: 
	http://www.alistapart.com/articles/howtosizetextincss/ 
	16px baseline font-size. See ie.css for IE baseline font-size rule. 
	
	Important: 
	Line-height calculations are based on the most immediate font size. 
	For example: if font-size is resized to 14px, begin line-height calculation for that element at 14px (not 16px).
	Otherwise line-height will inherit base line-height of 17px (see body rule). 
*/

body {
	background: #011240 url(../img/bg-body.jpg) 50% 142px no-repeat;
	font-family: Helvetica, Arial, Sans-Serif;
	font-size: 16px;
	line-height: 1.125em; /* 16 x 1.125 = 18px */	
	text-align: center;
	color: #000;
	border-top: 3px solid #ff5c00;
}

h1,
h2,
h3,
h4,
h5,
h6 { 
	font-weight: normal;
	line-height: normal; 
	}

ul { list-style: none; }

ol {
	margin-left: 20px;
	}
	
ol li {
	margin-bottom: 12px;
	}

img, fieldset { border:none; }

a, #maincol dd h3 a { 
	outline: none;
	text-decoration: none; 
	color: #049dbf;
	}
	
a:hover, #maincol dd h3 a:hover {
	color: #25d3fb;
	}
	
:focus, :active {
	outline: 0;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

th {
	font-weight: bold;
	}

td {
	vertical-align: top;
	}
	
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

strong {
	font-weight: bold;
}

em {
	font-style: italic;
}

.alignleft { 
	float:left;
 	margin: 2px 12px 2px 0;
	}

.alignright { 
	float:right; 
	margin: 2px 0 2px 12px;
	}

.aligncenter {
	display: block;
	margin: 0 auto 20px;
	text-align: center;
	font-size: .75em; /* 12px */
	}
	
.no-m {
	margin: 0;
	}
	
.hide, .skip, hr, .closed { display: none; }

.open { display: block; }

/* 
	Clearing floats: http://www.positioniseverything.net/easyclearing.html  
*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.c\learfix:after { line-height: 0; }
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

/* Maincol, sidecol globals */

#maincol li p {
	font-size: 1em;
	}
	
#maincol p.learn-more a {
	background: #f3f3ee;
	padding: 6px 5px 5px 7px;
	color: #049dbf;
	text-transform: uppercase;
	font-weight: bold;
	font-size: .916em; /* 11px */
	}
	
#maincol p.learn-more a:hover {
	background: #fff;
	text-decoration: none;
	}

