@charset "utf-8";

/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	
	display: block;
}

body {
	font: 100%/1.4 Arial, Helvetica, sans-serif;
	background: #645b5c;
	color: #000;
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,q:before, q:after {
	content: '';
	content: none;
}

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

/* End of the browser reset section */

a img {
	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: #b80a07;
	text-decoration: none;
}

a:visited {
	color: #b80a07;
	text-decoration: none;
}

a:hover, a:active, a:focus {
	text-decoration: underline;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 980px;
	background: #FFF;
	margin: 5px auto;
	padding-top: 25px;
	border-top: #FFF solid 1px;
}

.header {
	width: 930px;
	height: 57px;
	margin: 0 auto;
	background-color: #979191;
	color: #FFF;
}

.header_logo {
	float: left;
	width: 400px;
	height: 57px;
}

.header_logo h1 {
	font-size: 40px;
	padding: 6px 0 0 25px;
}

.header_email {
	float: right;
	width: 460px;
	height: 40px;
	margin: 12px 15px 4px 0;
}

.header_email p {
	font-size: 13px;
	text-align: right;
	padding-bottom: 8px;
}

.header_email a:link, .header_email a:visited {
	color: #fff;
}

.top_navigation {
	width: 950px;
	height: 40px;
	margin: 0 auto;
}

/* ~~ This is the layout information. ~~ */

.content {
	position: relative;
	width: 930px;
	margin: 0 auto;
	padding: 0 0 30px 0;
}

/* ~~ The footer ~~ */
.footer {
	height: 65px;
}

.footer_logo {
	float: left;
	width: 440px;
	height: 40px;
	margin: 13px 0 0 25px;
}


.footer_logo img {
	float: left;
	opacity: 1;
	margin-right: 25px;
}

/*
.footer_logo a {
	float: left;
	opacity: .7;
}

.footer_logo a:hover {
	opacity: 1;
}
*/

.footer_recommended {
	float: right;
	width: 475px;
	height: 25px;
	margin: 23px 25px 0 0;
	background-color: #979191;
}

.footer_recommended p {
	font-size: 11px;
	color: #ffffff;
	padding: 6px 0 0 6px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}