/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px 0px;
	height:27px;
	width:726px;
	margin:0px 0px;
	font-family:Arial, Helvetica, sans-serif;
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

div#listmenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	display:block;
}


div#listmenu ul li.about{
	background-image:url(images/layout_03.jpg);
	background-position:left;
	width:96px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.about:hover  {
	background-image:url(images/rollover_03.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.test{
	background-image:url(images/testNav.jpg);
	background-position:left;
	width:115px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.test:hover  {
	background-image:url(images/testNavRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.services{
	background-image:url(images/layout_04.jpg);
	background-position:left;
	width:78px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.services:hover  {
	background-image:url(images/rollover_04.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.benefits{
	background-image:url(images/layout_05.jpg);
	background-position:left;
	width:76px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.benefits:hover  {
	background-image:url(images/rollover_05.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.news{
	background-image:url(images/layout_06.jpg);
	background-position:left;
	width:57px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.news:hover  {
	background-image:url(images/rollover_06.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.location{
	background-image:url(images/layout_07.jpg);
	background-position:left;
	width:142px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.location:hover  {
	background-image:url(images/rollover_07.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.faq{
	background-image:url(images/layout_08.jpg);
	background-position:left;
	width:54px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.faq:hover  {
	background-image:url(images/rollover_08.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.contact{
	background-image:url(images/layout_09.jpg);
	background-position:left;
	width:103px;
	height:27px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(images/rollover_09.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.account{
	background-image:url(images/layout_10space.jpg);
	background-position:left;
	width:62px;
	height:27px;
	background-repeat:repeat-x;
	display:block;
}

/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:#2a5c51;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:6px;
	padding-left:8px;
	font-size:12px;
	font-weight:normal;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:white;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	padding:0px;
	z-index:99;
}


div#listmenu ul li ul.about{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	margin-top:27px;
	padding:0px;
}

div#listmenu ul li ul.services{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:185px;
	margin-top:27px;
	padding:0px;
}
div#listmenu ul li ul.benefits{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	margin-top:27px;
	padding:0px;
}

div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	border-top:0px;
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#c3cdc2;
}

div#listmenu ul li ul li:hover {
	background-color:#6c7f71;
}

