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

body {
	font: 100%/1.4 Arial, Helvetica, sans-serif;
	font-size: 12px;
	background: #c0bcbc;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul { 
	padding: 0 10px 0 40px;
	margin: 0;
}

li {
	margin-bottom:12px;
	color:#d95d00;
	font-weight:bold;
}

li span {
	color:black;
	font-weight:normal;
}

img {
	padding-left:35px;
}

p {
	margin-top: 0;	 
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#092f7a;
	text-decoration: underline;
}
a:hover {
	text-decoration: underline !important;
}
a:active, a:focus, a:visited { 
	color: #092f7a;
	text-decoration: underline;
}

.alt_link {
	font-weight:bold;
	color:#ea9111 !important;
	text-decoration: none !important;
}

.footer_link { 
	color: #6E6C64 !important;
	text-decoration: none !important;
}

/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 980px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

#header_top {
	height:20px;
	background-color:#ea9111;
}

header {
	background: #FFFFFF;
}

.sidebar {
	float: right;
	width: 500px;
	background: #FFFFFF;
	padding-bottom: 10px;
}

.sidebar .banner {
	background:white url(../img/sidebar_banner.jpg) 15px 0px no-repeat;
	height:92px;
	padding:15px 60px 10px 120px;
}

.content {
	width: 480px;
	float: right;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
footer {
	padding: 10px 0;
	background: #FFFFFF url(../img/footer_logo.jpg) right no-repeat;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	border-top:solid #3072be thin;
	font-size:x-small;
	color:#666666;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article {
	display: block;
}