/* 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:31px;
	width:764px;
	margin:0px 0px;
	font-family:Helvetica;
	background-color:#75877B;	
	
}

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.home{
	background-image:url(images/layout_03.jpg);
	background-position:left;
	width:64px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(images/rollovers_03.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.about{
	background-image:url(images/layout_04.jpg);
	background-position:left;
	width:72px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.about:hover  {
	background-image:url(images/rollovers_04.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.why{
	background-image:url(images/layout_05.jpg);
	background-position:left;
	width:71px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.why:hover  {
	background-image:url(images/rollovers_05.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.sell{
	background-image:url(images/layout_06.jpg);
	background-position:left;
	width:93px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.sell:hover  {
	background-image:url(images/rollovers_06.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li.buy{
	background-image:url(images/layout_07.jpg);
	background-position:left;
	width:100px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.buy:hover  {
	background-image:url(images/rollovers_07.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.news{
	background-image:url(images/layout_08.jpg);
	background-position:left;
	width:105px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.news:hover  {
	background-image:url(images/rollovers_08.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.faq{
	background-image:url(images/layout_09.jpg);
	background-position:left;
	width:67px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.faq:hover  {
	background-image:url(images/rollovers_09.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.contact{
	background-image:url(images/layout_10.jpg);
	background-position:left;
	width:84px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.contact:hover  {
	background-image:url(images/rollovers_10.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}
div#listmenu ul li.login{
	background-image:url(images/layout_11.jpg);
	background-position:left;
	width:108px;
	height:31px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.login:hover  {
	background-image:url(images/rollovers_11.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 #666666;
	border-right:1px solid #666666;
	border-bottom:1px solid #666666;
	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:165px;
	padding:0px;
	margin-top:30px;
}
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:165px;
	padding:0px;
	margin-top:30px;
}
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:225px;
	padding:0px;
	margin-top:30px;
}
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:150px;
	padding:0px;
	margin-top:30px;
}


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:#6c7f71;
}

