@charset "UTF-8";
body  {
	background:url(../images/bg_background.jpg) repeat-x #8DA0B2;
	padding:18px 0;
}
.wrapper #container { 
	width: 814px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #999;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width:778px; /* min width to avoid collapse and overlap of content. Must be in PX to set static width. */
} 
.wrapper #header { 
	background: url(../images/header.jpg) no-repeat 6px 6px; 
	padding: 0 10px;
	height:280px;
} 
.wrapper #header h1 {
	display:none
}





.wrapper #sidebar {
	float: right; 
	width: 18em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 8px 0 18px 0; /* top and bottom padding create visual space within this div  */
	margin-right:12px;
}
.wrapper #sidebar h3 {
	margin:0 10px;
	color:#0054A6;
	font-weight:100;
	line-height:.8em;
}

.wrapper #sidebar ul {
	margin:0 12px;
	padding:0;
	list-style:none;
	}
.wrapper #sidebar ul li {
	margin-top:6px;
	padding-bottom:6px;
	border-bottom:solid 1px #FBFBFB;
	}


/** MAIN CONTENT **/ 
.wrapper #mainContent {
  margin: 0 20em 0 12px; /* the left margin's value is equal to the header and footer which creates alignment down the left side of the document. */
} 
.wrapper #mainContent p {
	font-size:0.9em;
	color:#444;
	}
.wrapper #footer { 
	background:url(../images/bg_footer.jpg) no-repeat 6px 6px #FFF;
	height:66px;
}



#navigation {
	position:relative;
	top:199px;
	left:22px;
	}
	#navigation ul {
		float: left;
		width: 100%;
		padding: 0;
		list-style: none; 
		}
	#navigation ul li {
		display: inline; 
		}
	#navigation ul li a,
	#navigation ul li.active,
	#navigation ul li.nonactive {
		float: left;
		border-right: solid 1px #E53832;
		margin: 8px 18px 8px 0;
		padding: .2em 18px .2em 0;
		font-size: 1.9em;
		font-family:Georgia, "Times New Roman", Times, serif;
		color:#FFF; 
		}
	#navigation ul li a:hover,
	#navigation ul li a:active {
		text-decoration: none;
		color:#000; 
		}
	#navigation ul li.active {
		border-bottom: none;
		margin: 8px 8px 0 8px;
		padding: .3em .6em .7em .6em;
		font-weight: bold; 
		}







.title {
	background:url(../images/bg_title.jpg) repeat-y 100% 0 #FFF;
	margin-bottom:12px;
	}
.title h1 {
	color:#D61F26;
	font-family:Georgia, "Times New Roman", Times, serif;
	padding:8px 0;
	font-weight:100;
	margin-right:72px;
	}


.postTitle {
	color:#0054A6;
	font-weight:normal;
	}
.postTitle a {
	color:#0054A6;
	}
.video {
	margin:12px 0 36px 0;
	}
	.video p {
		margin:12px 88px 0 0;
		}


/** COMMENTS **/
#comments {
	margin-bottom:24px;
	}
	
.comment {
	border-top:dashed 1px #CCC;
	padding:10px;
	font-size:0.9em;
	background:#F5F5F5;
	}
#comments .highlight {
	background:#D6EAF9;
	}

#postComment {
	border-top:dashed 1px #CCC;
	border-bottom:dashed 1px #CCC;
	padding:12px;
	background:#E5EAEF;
	}




/** HOME CONTENT **/
#homeContent {
	margin:0 12px;
}
#homeContent p {
	font-size:1.1em;
	color:#555;
	margin:0 8px;
	}
#homeContent .postTitle {
	margin:0 8px;
	}
#homeRecent {
	margin-top:24px;
	padding-top:12px;
	border-top:solid 1px #E1E1E1;
	}
	#homeRecent .right,
	#homeRecent .left {
		float: left;
		width:46%;
		margin-bottom:18px;
		}
	#homeRecent .right {
		float: right;
		border-left:solid  1px #E1E1E1;
		padding-left:32px;
		}


	#homeRecent .right h3,
	#homeRecent .left h3 {
	margin:0 8px;
	color:#0054A6;
	font-weight:100;
	line-height:.8em;
	}

	#homeRecent .right ul,
	#homeRecent .left ul {
	margin:0 12px;
	padding:0;
	list-style:none;
	}
	#homeRecent .right ul li,
	#homeRecent .left ul li {
	font-size:1.3em;
	margin-top:6px;
	padding-bottom:6px;
	border-bottom:solid 1px #E1E1E1;
	}
	
	#homeRecent .right .light,
	#homeRecent .left .light {
		font-size:0.7em;
		color:#999;
		}




/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}




