@charset "utf-8";
body {
	background: #E1E1E1;
	margin: 0;
	padding: 0;
	color: #333;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 85%;
	line-height: 1.4;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
}
h1, h2, h3, h4, h5, h6 {
	color: #CC0000;
	font-weight:normal;
}
h1 {
	font-size: 1.7em;
	text-transform:none;
}
h2 {
	font-size: 1.3em;
	text-transform:none;
}
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: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	/* this next bit provides the drop-shadow effect for the container */
	-moz-box-shadow: 0px 0px 15px #111;
	-webkit-box-shadow: 0px 0px 15px #111;
	box-shadow: 0px 0px 15px #111;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=150, Color='#111111')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=8, Direction=150, Color='#111111');	
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background: #FFF;
	padding: 6px;
}

/* ~~ Navigation for the drop down menu */
#nav {
	width: 100%;
	height: 32px;
	margin-bottom: 10px;
	background-color: #666666;
}

.head_image {
	padding: 1px;
}

/* ~~ The content area holding all content elements ~~ */
.content {
	padding: 30px;
}

/* ~~ Home page content elements ~~ */
.content .home_top_left {
	float:left;
	max-width: 840px;
	padding-right: 25px;
	margin-bottom: 15px;
/*	border-right: 1px #AAA solid;  */
}
.content .home_top_right {
	float:left;
	margin-bottom: 15px;
	max-width: 420px;
	padding-left: 25px;
}
.content .home_divider {
	clear:both;
	margin-bottom: 15px;
	border-top: 1px solid #AAA;
}
.content .home_bottom_first {
	float: left;
	max-width: 265px;
	padding-right: 25px;
	border-right: 1px #AAA solid;
}
.content .home_bottom_first img {
	text-align:center;
	padding: 5px;
	margin-bottom: 12px;
	background:#CCC;
	border: 1px solid #EEE;
}
.content .home_bottom_second {
	float: left;
	max-width: 265px;
	padding: 0 25px;
	border-right: 1px #AAA solid;
}
.content .home_bottom_second img {
	text-align:center;
	padding: 5px;
	margin-bottom: 12px;
	background:#CCC;
	border: 1px solid #EEE;
}
.content .home_bottom_third {
	float: left;
	padding-left: 25px;
	max-width: 265px;
}
.content .home_bottom_third img {
	text-align:center;
	padding: 5px;
	margin-bottom: 12px;
	background:#CCC;
	border: 1px solid #EEE;
}

/* ~~ Product page content elements ~~ */
.content .product_top {
	min-height: 300px;
}
.content .product_top .product_image img {
	width: 300px;
	float: left;
	padding: 15px;
	background:#CCC;
	border: 1px solid #EEE;
}
.content .product_top .product_info {
	width: 550px;
	float: left;
	padding-left: 15px;
}
.content .product_bottom {
	min-height: 150px;
}
.content .product_header {
	width: 900px;
	margin: 30px 0;
	padding: 5px;
	background-color: #102045;
	color: #FFF;
	font-size: 1.3em;
	text-transform:uppercase;
	text-align: center;
}
.content .product_bottom .product_cell {
	min-height: 175px;
	width: 900px;
	margin: 0;
	padding: 0 0 15px 0;
}
.content .product_bottom .product_cell .list_left img {
	width: 150px;
	float: left;
	padding: 10px;
	background:#CCC;
	border: 1px solid #EEE;
}
.content .product_bottom .product_cell .list_right {
	width: 700px;
	float: left;
	padding-left: 15px;
}


.page_divider {
	clear: both;
}



/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	margin: 10px auto;
	text-align: center;
	width: 960px;
	font-size: .8em;
	color: #666;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
