/* 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:32px;
	width:802px;
	margin:0px 0px;
	font-family:Helvetica;
	background-color:#709271;
	
}

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.space
{
	background-image:url(images/da_layout_06.jpg);
	width:230px;
	height:32px;
	background-repeat:no-repeat;
	background-position:left;
	display:block;
}

div#listmenu ul li.home{
	background-image:url(images/da_layout_12.jpg);
	background-position:left;
	width:59px;
	height:32px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(images/navRoll_12.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.about{
	background-image:url(images/da_layout_13.jpg);
	background-position:left;
	width:74px;
	height:32px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.about:hover  {
	background-image:url(images/navRoll_13.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.why{
	background-image:url(images/da_layout_14.jpg);
	background-position:left;
	width:67px;
	height:32px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.why:hover  {
	background-image:url(images/navRoll_14.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.sell{
	background-image:url(images/da_layout_15.jpg);
	background-position:left;
	width:97px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.sell:hover  {
	background-image:url(images/navRoll_15.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.buy{
	background-image:url(images/da_layout_10.jpg);
	background-position:left;
	width:98px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.buy:hover  {
	background-image:url(images/navRoll_10.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.faq{
	background-image:url(images/da_layout_11.jpg);
	background-position:left;
	width:57px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.faq:hover  {
	background-image:url(images/navRoll_11.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.contact{
	background-image:url(images/da_layout_08.jpg);
	background-position:left;
	width:91px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(images/navRoll_08.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	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:black;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:5px;
	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;
	border-left:1px solid #6c7f71;
	border-right:1px solid #6c7f71;
	border-bottom:1px solid #6c7f71;
	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:105px;
	padding:0px;
	margin-top:32px;
}
div#listmenu ul li ul.why{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:115px;
	padding:0px;
	margin-top:32px;
}
div#listmenu ul li ul.sell{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:250px;
	padding:0px;
	margin-top:32px;
}
div#listmenu ul li ul.buy{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:225px;
	padding:0px;
	margin-top:31px;
}

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:#c0cfc1;
}

div#listmenu ul li ul li:hover {
	background-color:#587153;
}

