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

* {
	margin:0; 
	padding:0;
}

html,body{
	height:100%;
}

body{
	font: normal 14px "Trebuchet MS";
	background: url(images/metal-texture.jpg) repeat-x;
}

img {border: 0;}

h2 {
font-size: 20px;	
margin-bottom:20px;
border-bottom: 1px dotted gray;
	
}

h3 {
margin-bottom:10px;
}

p{ margin-bottom:20px;}

#container {
	position:relative;
	width: 900px;
	min-height:100%;
	padding: 0;
	margin: 0 auto;
	background: white url(images/body-line.png) repeat-y;
	border-right: 1px solid #999999;
	border-left: 1px solid #999999;
}


#header {
	background-color:white;
	height:135px;
}

#topnav {
	background: silver url(images/light-nav-back.png) repeat-x;
	height:40px;
	position:relative;
	z-index:1;
}

#body {
	
	padding-bottom:46px;
	height:100%;
	
}

#content{
	padding:20px;
	width:600px;
	float:left;
	position:relative;
}

#sidebar{
	
	float:right;
	width:200px;
	
	padding:30px;
		
}

#footer {
	position:absolute;
   	bottom:0;
   	width:100%;
   	height:36px;   /* Height of the footer */
  	text-align:center;
	font-size:11px;
	color:gray;
	
	
	padding-top: 10px;
}

ul {
	margin-left:40px;
	margin-top:20px;
}

li {
	margin-bottom:10px;	
}

input[type=text], textarea { 
	border: 1px solid silver;
	padding:5px;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:12px;
	color:blue;
}


/* NAV CSS */

ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:13px;
	
	


}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 40px;
	
}
ul#topnav li:hover a, ul#topnav li a:hover { background-position: left bottom; } /*--Hover State--*/

ul#topnav a.home {
	background: url(images/home.png) no-repeat;
	width: 98px;
	margin-left:20px;

}
ul#topnav a.about {
	background: url(images/about.png) no-repeat;
	width: 98px;
}
ul#topnav a.services {
	background: url(images/services.png) no-repeat;
	width: 98px;
}
ul#topnav a.contact {
	background: url(images/contact.png) no-repeat;
	width: 98px;
}
/* SUB NAV CSS */

ul#topnav li .sub {
	position: absolute; /*--Important--*/
	top: 40px; left: 0px;
	z-index: 9999;
	background: #e5e5e5 url(images/sub-bg.png) repeat-x; /*--Background gradient--*/
	padding: 20px 20px 20px;
	float: left;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
	border:1px solid gray;
	border-top:5px solid  blue;
}
ul#topnav li .row { /*--If needed to break out into rows--*/
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 150px;
	float: left;
}
ul#topnav li .wide ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 200px;
	float: left;
}

ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: black;
}
ul#topnav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size: 1.3em;
	font-weight: normal;
}
ul#topnav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: navy;
}
ul#topnav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	background: url(images/nav-arrow.png) no-repeat 0px 10px;
	padding: 7px 5px 7px 15px;
	display: block;
	text-decoration: none;
	color: black
}
ul#topnav .sub ul li a:hover {
	color: red;
	background-position: 3px 10px ;/*--Override background position--*/
}




/*====SLIDE SHOW =======*/

/*--Main Container--*/
.main_view {
	float: left;
	position: relative;
	font: normal 10px Verdana, Arial, Helvetica, sans-serif;
	border-bottom:5px solid red;
	
}
/*--Window/Masking Styles--*/
.window {
	height:286px;	width: 900px;
	overflow: hidden; /*--Hides anything outside of the set width/height--*/
	position: relative;

}
.image_reel {
	position: relative;
	top: 0; left: 0;
}
.image_reel img {float: left;}

/*--Paging Styles--*/
.paging {
	position: absolute;
	bottom: 20px; right: -9px;
	width: 225px; height:47px;
	z-index: 100; /*--Assures the paging stays on the top layer--*/
	text-align: center;
	line-height: 40px;
	background: url(images/paging_bg3.png) no-repeat;
	display: none; /*--Hidden by default, will be later shown with jQuery--*/
}
.paging a {
	padding: 5px;
	text-decoration: none;
	color: #fff;
}
.paging a.active {
	font-weight: bold; 
	background: #920000; 
	border: 1px solid #610000;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
}
.paging a:hover {font-weight: bold;}
