/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */

*{margin:0;padding:0;border:none;}



/* Begin CSS Popout Menu */

#menu{
	position:relative;		
	width:231px;
	padding-bottom:20px; /* To allow room for bottom dropdown */
	text-align:left;/*added by me*/
	/*text-overflow:clip;added by me*/
}
#menu a{
	display:block;
	line-height: 29px;
	white-space:nowrap;/*Changes by me*/
	margin:0;
	padding:0 30px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	
	
}

#menu a{
color:#594416;
background:#e1dac8;
text-decoration:none;
line-height: 28px;
/*text-align:left;added by me*/

}

#menu a:hover{
	color:#990000;
	background:#d0c9af;
	line-height: 28px;
	

}

#menu a:active{
color:#060;
background:#e1dac8;
line-height: 28px;

}

#menu ul{
list-style:none;
margin:0;
padding:0;
width:100%;
line-height: 28px;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */

div#menu li, div#menu li:hover{
position:relative;
line-height: 28px;

}

div#menu li ul{
position:absolute;
top:0;
left:100.1%;
display:none;
line-height: 28px;

}

div#menu ul ul,
div#menu ul ul ul,
div#menu ul li:hover ul ul,
div#menu ul li:hover ul ul ul
{display:none; }

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display:block; }

/* End non-anchor hover selectors */

/* Styling for Expand */

#menu a.x, #menu a.x:visited{
background-image: url(/images/b_sub.jpg);
	background-repeat: no-repeat;
	
		line-height: 28px;
}

#menu a.x:hover{
color:#6a6347;
background:#dbd29c;
background-image: url(/images/b_sub_over.jpg);
background-repeat: no-repeat;
	line-height: 28px;
	
}

#menu a.x:active{
	color:#990000;
	background-color: #e1dac8;
	background-image: url(/images/b_sub.jpg);
	background-repeat: no-repeat;
	line-height: 28px;
	
	
}


