@charset "UTF-8";
/* CSS Document */

/*normalizer begins*/
/* Source: http://www.elementalfocus.com/normalizing-your-css/ */
/* Normalize padding and margins */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td {
	margin: 				0;	
	padding: 				0;
}

/* Normalize header sizes */
h1, h2, h3, h4, h5, h6 {
	font-size: 				100%;
}

/* Normalize list styles */
ol, ul {
	list-style: 			none;
}

/* Normalize font style and weight on odd elements */
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: 			normal;
	font-weight: 			normal;
}

/* Normalize table borders */
table {
	border-collapse: 		collapse;
	border-spacing: 		0;
}

/* Normalize other borders */
fieldset, img {
	border: 				0;
}

/* Normalize text-alignment */
caption, th {
	text-align: 			left;
}

/* Normalize (remove) quotation marks */
q:before, q:after {
	content: 				'';
}

/*normalizer ends*/

#wrapper {
	width: 900px;
	margin: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}

#header {
	width: 900px;
	height: 105px;
	border-bottom: 1px #000 solid;
	margin-top: 20px;
}

#header img {
	float: left;	
}

#header ul {
	list-style: none;
	display: block;
	float: right;
	margin-top: 60px;
}

#header li {
	text-align: center;
	float: left;
}

.active {
	color: #0089bd;
	border-bottom: 1px dotted #333;
}

.subhead {
	font-size: 17px;
	color:#333;
}

#content {
	width: 900px;
	margin-top: 32px;
}

#content_left {
	width: 500px;
	float:left;
}

#content_right {
	width: 400px;
	float: left;
}



#footer {
	width: 900px;
	border-top: 1px solid #000;
	margin-top: 10px;
}

a {
	color: #333;
	border: 0 none;	
	text-decoration: none;
}

#header a:hover, #content a:hover  {
	color: #0089bd;
	border-bottom: 1px dotted #333;
}

h1 {
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	color: #b2dbeb;
	font-weight: normal;
	margin-bottom: 7px;
		
}

h2 {
	font-size: 22px;
	line-height: 30px;
	color: #0089bd;
	font-weight: normal;
	margin-bottom: 7px;
	
}

p {
	font-size: 13px;
	line-height: 20px;
	margin-bottom: 15px;
}

.clear {
	clear: both;	
}

#footer {
	padding-top: 16px;
	text-align: right;
}

.blue {
	color: #0089bd;
}

.black {
	color: #333;	
}

