/* CSS Document */
/* Styles used by the navigation bar
   ----------------------------------------------------------------- */

.header {
	width: 100%;
	background: #424242 none;
	background: -webkit-gradient(linear,left top,left bottom,from(#505050),to(#343434));
	background: -moz-linear-gradient(top,#505050,#343434);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF505050,endColorstr=#FF343434);
	background: -ms-linear-gradient(top,#505050,#343434);
	background: -o-linear-gradient(top,#505050,#343434);
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #85954E;
	position: relative;
}

/* New styling used by the drop-down menu */
/*micro-clearfix by Nicolas Gallagher http://nicolasgallagher.com/micro-clearfix-hack/*/
/* For modern browsers */
.cf:before, .cf:after {
	content:"";
	display:table;
}

.cf:after {
	clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
	zoom:1;
}
/*horizontal menu styles*/	
nav {
	height: 55px;
	width: 996px;
	margin: 0px auto;
	position: relative;
}

nav img {
	border: none;
}

nav ul, nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
nav ul {
	height: 55px;
	width: 100%;
}
nav li {
	position: relative;
}
nav li a {
	display: block;
	line-height: 55px;
	text-align: center;
	font-size: 0.80em;
	letter-spacing: 0.15em;
	padding: 0 1em;
	color: white;
	font-family: Myriad Pro, Verdana, Geneva, sans-serif;
	text-transform: uppercase;
	border-right: 1px solid #000;
	text-decoration: none;
}
nav li a:hover, .topmenu li:hover > a {
	background: #5c5c5c none;
	background: -webkit-gradient(linear,left top,left bottom,from(#6a6a6a),to(#414141));
	background: -moz-linear-gradient(top,#6a6a6a,#414141);
	background: -ms-linear-gradient(top,#6a6a6a,#414141);
	background: -o-linear-gradient(top,#6a6a6a,#414141);
	height: 55px;
	position: relative;
}
.current, a:hover.current, .topmenu li:hover a.current {
	background: #5c5c5c none;
	background: -webkit-gradient(linear,left top,left bottom,from(#6a6a6a),to(#414141));
	background: -moz-linear-gradient(top,#6a6a6a,#414141);
	background: -ms-linear-gradient(top,#6a6a6a,#414141);
	background: -o-linear-gradient(top,#6a6a6a,#414141);
	color: #eee;
	position: relative;
	cursor: default;
	font-weight: bold;
}
/*dropdown menu styles*/
ul.submenu {
	float: none;
	background: #424242 none;
	background: -webkit-gradient(linear,left top,left bottom,from(#505050),to(#343434));
	background: -moz-linear-gradient(top,#505050,#343434);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FF505050,endColorstr=#FF343434);
	background: -ms-linear-gradient(top,#505050,#343434);
	background: -o-linear-gradient(top,#505050,#343434);
	width: auto;
	height: auto;
	position: absolute;
	top: 55px;
	left: -9000em;
	max-height: 0;
	-moz-transition:max-height 0.5s ease-in-out;
	-webkit-transition:max-height 0.5s ease-in-out;
	-o-transition:max-height 0.5s ease-in-out;
	transition:max-height 0.5s ease-in-out;
	overflow: hidden;
	z-index: 1000;
}
ul.submenu li {
	float: none;
}
.topmenu li:hover ul {
	left: 0;
	max-height: 750px;
}
ul.submenu li a {
	border-bottom: 1px solid #000;
	padding: .2em 1em;
	white-space: nowrap;
	text-transform: none;
}
ul.submenu li:last-child a {
	border-bottom: none;
}
ul.submenu li a:hover {
	background: #5c5c5c none;
	background: -webkit-gradient(linear,left top,left bottom,from(#6a6a6a),to(#414141));
	background: -moz-linear-gradient(top,#6a6a6a,#414141);
	background: -ms-linear-gradient(top,#6a6a6a,#414141);
	background: -o-linear-gradient(top,#6a6a6a,#414141);
	height: 55px;
	padding-top: .2em;
	top: 0;
}

