@charset "utf-8";
/* CSS Document */

body {
	font: 100% "Trebuchet MS";
	background: #000000 url(../images/bg.gif);
	margin-top:5px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #999;
}

p{
	font-size:80%;
	text-align:justify;
	}
	

	
h1{
	color:#ff6600;
	border-bottom:1px dotted #444444;
	font-size:130%;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-transform:lowercase;
	font-style:italic;
	font-weight:normal;
	}
	
h2{
	color:#0099ff;
	font-size:110%;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-transform:lowercase;
	font-style:italic;
	font-weight:normal;
	border-bottom:1px dotted #333333;
	}
	
h3{
	color:#0099ff;
	font-size:110%;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-transform:lowercase;
	font-style:italic;
	font-weight:normal;
	}
	
a{
	color:#ff6600;
	text-decoration:none;
	}	

a:hover{
	text-decoration:underline;
	}	

input, select, textarea{
	border:1px dotted #666666;
	font-size:90%;
	background-color:#333333;
	color:#bbbbbb;
	}

.input-btns{
	border:1px dotted #222;
	font-size:90%;
	background-color:#ff6600;
	color:#000;
	}

.form_text{
	font-size:80%;
	}

#container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
/*	background: #FFFFFF;*/
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	
}



#header {
	background: url(../images/bg_header.png) top no-repeat;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 15px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	border:none;
}

#nav {
	background:url(../images/bg_nav.png) left no-repeat;
	height:62px;
	width:1000px;
	position:absolute;
	top:76px;
	left: 50%;
    margin-left: -500px;
	z-index:999;
	}


#mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-top:46px;
	z-index:1;
	border-bottom:1px dotted #000000;
}



.bg{
	background-color:#222222;
	}

#mainContent-sub {
/*	margin-top:46px;*/
/*	height:548px;*/
	z-index:1;
	background-color:#1e1e1e;
	padding:20px 20px 20px 20px;
	width:680px;
}

#mainContent-sub li{
	list-style:url(../arrow-right.gif);
	font-size:80%;
	}

#sideContent{
	float:right;
	width:220px;
	padding:25px 10px 40px 10px;	
	}



.mh-overlay{
	background:url(../images/masthead_overlay.png) right no-repeat;
	height:235px;
	width:188px;
	position: absolute;
	left:50%;
	margin-left: 250px;
	top:403px;
	padding-top:100px;
	padding-left:20px;
	padding-right: 10px;
	padding-bottom: 10px;
	color:#FFFFFF;
	z-index:989;
	}
	
.mh-overlay h1{
	color:#ffffff;
	font-family:"Trebuchet MS";
	font-size:120%;
	font-weight:none;
	border:none;
	}
	
.form_error{
		color : #ff0000;
		}

.products img{
/*	border:1px dotted #999999;*/
	}
	
.products p{
	font-size:80%;
	color:#666666;
	text-align:left;
	margin-top:0px;
	}

.products-head{
	font-weight:bold;
	color:#0099ff;
	}
	
.gallery img{
	border:1px dotted #666666;
	}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
/*	background: url(../images/bg_footer.gif) top no-repeat;*/
	background:url(../images/bg_footer.png) bottom;
	margin-top:0px;
	border-top:1px dotted #000000;

}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#444444;
	font-size:70%
}
