/* 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 ---*/
	height:32px;
	width:900px;
	margin:0px;
	padding:0px;
	background-image:url(../images/bg-nav.jpg);
	background-repeat:no-repeat;
}

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;
	padding:0px;
	margin:0px;
}

div#listmenu ul 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;
	margin:0px;
	padding-left:12px;
	padding-right:12px;
	padding-top:8px;
	height:24px;
}

div#listmenu ul li:hover
{
	background-color:#195730;
	color:white;
}

div#listmenu ul li a, div#listmenu ul li a:visited
{
	font-size:13px;
	font-weight:normal;
	color:white;
	text-decoration:none;
	background-color:none;
	background-image:none;
}

div#listmenu ul li a, div#listmenu ul li a:visited
{
	font-size:13px;
	font-weight:bold;
	color:white;
	text-decoration:none;
}



/*div#listmenu ul li.home
{
	width:65px;
	height:38px;
	background-repeat:no-repeat;
	display:block;
}

div#listmenu ul li.home:hover  {
	background-image:url(file:///W|/sssworld.com/images/nav-home-on.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.nolink
{
	color:#000;
	font-weight:bold;
	padding-top:3px;
	padding-left:3px;
	width:190px;
	background-color:#e8dbca;
}

div#listmenu ul li ul li.nolink:hover
{
	color:#000;
	font-weight:bold;
	padding-top:3px;
	padding-left:3px;
	width:190px;
	background-color:#e8dbca;
}
	
div#listmenu ul li ul li a.dropDown {
	color:black;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:3px;
	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 ---*/
	top:32px;
	padding:0px;
	border-left:1px solid #825422;
	border-right:1px solid #825422;
	border-bottom:1px solid #825422;
	background-color:#e8dbca;
	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:160px;
	padding:0px;
	margin-top:0px;
}

div#listmenu ul li ul.asb
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:200px;
	padding:0px;
	margin-top:0px;
}

div#listmenu ul li ul.legal
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:260px;
	padding:0px;
	margin-top:0px;
}

div#listmenu ul li ul.news
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:115px;
	padding:0px;
	margin-top:0px;
}

div#listmenu ul li ul.qa
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:150px;
	padding:0px;
	margin-top: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 ---*/
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#e8dbca;
	border-top:1px solid #baab96;
}


div#listmenu ul li ul li:hover {
	background-color:#baab96;
}




/*Left menu*/
div#leftMenu /*--- Menu List Container ---*/
{
	width:167px;
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px;
	margin:8px 0px 0px 0px;
}

div#leftMenu h2
{
	font-size:20px;
	font-weight:normal;
	margin:0px;
	padding:0px;
	color:#805221;
}

div#leftMenu ul
{
	margin:0px;
	padding:0px 0px;
	font-size:12px;
}

div#leftMenu ul li
{
	padding:12px 0px 5px 5px ;
	margin:0px;
	width:162px;
	display:block;
	background-color:none;
	border-bottom:1px solid #baab96;
}

div#leftMenu ul li:hover
{
	width:162px;
	background-color:#b9cab9;
	border-bottom:1px solid #baab96;
}

div#leftMenu ul li a, div#leftMenu ul li a:visited
{
	color:#371109;
	text-decoration:none;
	font-weight:normal;
	font-size:12px;
}


div#leftMenu ul li a:hover, div#leftMenu ul li a:active
{
	color:#371109;
	text-decoration:none;
	font-weight:normal;
	font-size:12px;
}



