





@charset "utf-8";
/* CSS Document */
body{
margin:0 auto;
font: 100% Arial, Helvetica, sans-serif;
font-size:16px;
color:#000;
background:url(../images/background.jpg) no-repeat center center fixed;
        -webkit-background-size: cover; /*for webKit*/
        -moz-background-size: cover; /*Mozilla*/
        -o-background-size: cover; /*opera*/
        background-size: cover; /*generic*/
}
#main_body{
		margin:0 auto;
		border:1px solid #39C;	
		width:100%;
		border-top:none;
		border-left:none;
		border-right:none;
		height:100%;	
}

/* ~~ 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;
}

img { border: none;}
h1{
font-size:20px;
}
h2{
font-size:20px;
}
h3{
font-size:20px;
}
h6{
font: 100% Arial, Helvetica, sans-serif;
font-size:16px;
color:#000;
font-weight:bold;
}

.strong_mask{
font: 100% Arial, Helvetica, sans-serif;
font-size:16px;
color:#000;
}
/* ~~this fixed width container surrounds the other divs~~ */
.container {
	border:1px solid #39C;	
	width: 1000px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ 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: #ADB96E;
}

.sidebar1 {
	float: left;
	width: 180px;
	background: #EADCAE;
	padding-bottom: 10px;
}
.content {
    float:right;
    width:73%;
    position:relative;
    overflow:hidden;
	text-align:justify;
	padding-bottom:30px;
	padding-right:25px;
}


#background{
background:url(../images/backgound.jpg) no-repeat center fixed;
-webkit-background-size: cover; /*for webKit*/
-moz-background-size: cover; /*Mozilla*/
-o-background-size: cover; /*opera*/
background-size: cover; /*generic*/
}
/* ~~ 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 navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #FFF;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	background: #012D58;
	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 */
}

/* ~~ 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;
}
.side_links{
	list-style: none;
	font-size:16px;
	font-weight:bold;
	border:none;
	
	
}
a.side_link_active{text-decoration:none; color:#00F; border:none; font-weight:bold; margin-bottom:5px; }
a.side_link_active:visited {text-decoration:none; color:#000; border:none; font-weight:bold; margin-bottom:5px;} /* visited link */
a.side_link_active:hover {text-decoration:none; color:#F00; border:none; font-weight:bold; margin-bottom:5px;}   /* mouse over link */
a.side_link_active:active {color:#000; border:none; font-weight:bold; margin-bottom:5px;}

a.buy{text-decoration:none; color:#69F; border:none; font-weight:bold; margin-bottom:5px; }
a.buy:visited {text-decoration:none; color:#69F; border:none; font-weight:bold; margin-bottom:5px;} /* visited link */
a.buy:hover {text-decoration:underline; color:#69F; border:none; font-weight:bold; margin-bottom:5px;}   /* mouse over link */
a.buy:active {color:#69F; border:none; font-weight:bold; margin-bottom:5px;}

a.authority_link:link {text-decoration:none; color:#000; border:none; font-weight:normal;}    /* unvisited link */
a.authority_link:visited {text-decoration:none; color:#000; border:none; font-weight:normal;} /* visited link */
a.authority_link:hover {text-decoration:none; color:#000; border:none; font-weight:normal;}   /* mouse over link */
a.authority_link:active {text-decoration:none; color:#000; border:none; font-weight:normal;}
#footer{		
		width:100%;
		height:90px;
		background-color:#012D58;
		padding-top:20px;
}
.footer_text{
	font-size:16px;
	color:#FFF;		
}
#clr_float{
		clear:both;
}

.product_image1{
	float:right;
}
.product_image2{
	float:left;
}
.ad{
	padding-left:30px;
}

.ad2{
	padding-left:30px;
	float:right;
}
img.review_image1{
	margin-left: auto;
	margin-right: auto;
	display: block;
	padding-left:10px;
	padding-bottom:10px;
}

.sidebarmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font: bold 13px Verdana;
width: 220px; /* Main Menu Item widths */
border-bottom: 1px solid #ccc;
}
 
.sidebarmenu ul li{
position: relative;
}

/* Top level menu links style */
.sidebarmenu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: white;
text-decoration: none;
padding: 6px;
padding-left:10px;
border-bottom: 1px solid #778;
border-right: 1px solid #778;
}

.sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{
background-color: #012D58; /*background of tabs (default state)*/
}

.sidebarmenu ul li a:visited{
color: white;
}

.sidebarmenu ul li a:hover{
background-color:#ff9900;
}

/*Sub level menu items */
.sidebarmenu ul li ul{
position: absolute;
width: 170px; /*Sub Menu Items width */
top: 0;
visibility: hidden;
}

.sidebarmenu a.subfolderstyle{
background: url(../CSS/right.gif) no-repeat 97% 50%;
}
.strong_mask{
font: 100% Arial, Helvetica, sans-serif;
font-size:16px;
color:#000;
}

/* Holly Hack for IE \*/
* html .sidebarmenu ul li { float: left; height: 1%; }
* html .sidebarmenu ul li a { height: 1%; }
/* End */
#poll{
	height:200px;
	width:270px;
	float:right;
	padding-right:30px;
	padding-bottom:50px;
}

.pollresult{
	padding-left:20px;
	width:350px;
}

.question {
	font-weight: bold;
	font-size: 12pt;
}

fieldset {
	border: solid 1px #666666;
	width: 270px;
	padding: 0 10px 10px 10px;
	margin-bottom: 15px;
}

legend {
	color: #ffffff;
	background: #012D58;
	border: 1px outset #cccccc;
	padding: 2px 2px 0 2px;
	font-weight: bold;
}

.currentResults {
	font-size: 8pt;
}

.vote {
	margin-top: 4px;
	padding: 0 0 0 0;
}

.vote p {
	margin-top: 6px;
	margin-bottom: 6px;
}

.errorMessage {
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 10pt;
	color: #ff0000;
}

input.submit {
	color: #000000;
	background: #69F;
	border: 2px outset #cccccc;
}

/* Default for the poll bars */

.pollBar {
	height: 15px;
	background: #ff0000;
	border: 1px solid #000000;
}

/* Poll bar ids are sequential and one-indexed */

#pollBar1 {
	background: #ff0000;
}

#pollBar2 {
	background: #00ff00;
}

#pollBar3 {
	background: #0000ff;
}

#pollBar4 {
	background: #ffff00;
}

#pollBar5 {
	background: #00ffff;
}

#pollBar6 {
	background: #ff00ff;
}

.buy{
	font-size:24px;
	text-align:center;
	text-decoration:none;
	color:#69F;	
}
.review{
	text-align:center;
}

.line{
	border-bottom: 1px solid #000000;
	width:600px;
    margin:0 auto;
}