/*

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, input {
	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: #011143;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 16px;
	line-height: 1.125em; /* 16 x 1.125 = 18px */	
	text-align: center;
	color: #000;
}

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

ul { list-style: none; }

ol {
	margin-left: 20px;
	}

img, fieldset { border:none; }

a { 
	outline: none;
	text-decoration: none; 
	color: #086bda;
	}
	
a:hover {
	color: #39f;
	}
	
: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 p, #maincol li, #maincol blockquote, #maincol td, #sidecol p, #sidecol li, #sidecol blockquote, #sidecol td {
	font-size: .75em;
	margin-bottom: 12px;
	}
	
/* #sidecol p {
	font-size: .687em;
	line-height: 1.45em;}
*/
	
#content .wrap p.more {
	font-size: .625em; /* 10px */
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: -3px 0;
	font-weight: bold;
	}
	
#content .wrap p.more a {
	display: block;
	padding: 5px 0;
	}

h2 a, h3 a {
	color: #086bda;
	}
	
#quick-fact h2 a {
	color: #000;
	}
	
#content .go-to {
	line-height: 23px;
	font-size: .687em; /* 10px */
	text-transform: uppercase;
	}
	
.go-to a {
	color: #fff;
	padding: 5px 6px 5px 8px;
	background: url(../s-img/bg-go-to.gif) 0 0 repeat;
	border: 1px solid #8ca807;
	}
	
.go-to a:hover {
	background: #b6d31a;
	}