@charset "UTF-8";
/* CSS Document */
/* This style sheet used for all pages EXCEPT the index page */
/* ----------------- FEATURES NAV BAR ---------------*/
#wrapper #featuresNav {
	width: 1000px;
	height:20px;
	background-color:#999999;
	position:absolute;
	z-index: 100;
	margin: 0;
	top: 260px;
	left: 0;
	font-family:Arial, Helvetica, sans-serif;
}
#wrapper #featuresNav ul {
	margin:0;
	padding:.35em 0 0 0;
	/*width:1000px;*/
	}
#wrapper #featuresNav li{
	float:left;
	position:relative;
	list-style-type:none;
	}
#wrapper #featuresNav ul a{
	padding: 0 .5em;
	font-size:12px;
	/*line-height:1.5em;
	float:left;*/
	text-decoration:none;
	color:#ffffff;
	display:block;
}
#wrapper #featuresNav ul a:hover{
	color:#FFFF00;
}
/* ---- Start Drop Menu ----- */
#wrapper #featuresNav ul li ul {
	/*margin: 0;*/
	width: 13em;
	position:absolute;
	background-color:#999999;
}
#wrapper #featuresNav ul li ul li {
	width: 100%;
	padding: .4em 0;
	border-top:1px solid #ffffff;
}
/*#wrapper #featuresNav ul li ul li:first-child{
	border-top: 0px solid #fff;
}*/
/* make the drop-down display as the menu is rolled over */
#wrapper #featuresNav ul li ul {
	display: none; /* conceals the drop-down when menu not hovered */
}
#wrapper #featuresNav ul li:hover ul{
	display:block; /* shows the drop-down when the menu is hovered */
}
/* add a top line to drops and pops in IE browsers - can't read :first-child */
* html  #wrapper #featuresNav  ul li ul {
	border-top:0px solid #069;
	border-left:0px; /* stops the drop inheriting the ul border */
	margin: 20px 0 0 0;
	}
