/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */


/* Begin CSS Popout Menu */

#menu{
position:absolute;
top:325px;
left:20px;
z-index:2;
width:160px;
}

#menu a, #menu h6{
	font: 12pt Georgia, Times New Roman, Times, serif;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	margin: 0;
	line-height: normal;
}

#menu h6{
color:#000;
background:#fff;
}

#menu a{
	color: #000;
	background: #fff;
	text-decoration: none;
}
#menu a img {
  border: none;
 }
#menu a:hover{
	color: #000;
	background: #FFF url(img/sfumato.gif) 100% 0 repeat-y;
	border-bottom: 1px solid #000;
	background-position: left;
}

#menu a:active{
	color:#000;
	background: #FFF url(img/sfumato.gif) 100% 0 repeat-y;
	background-position: left;
	text-decoration: none;
}

#menu ul{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	line-height: normal;
}

/* 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;
}

div#menu li ul{
position:absolute;
top:0;
left:100.1%;
display:none;
}

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: #ffff;
}

#menu a.x:hover{
color:#000;
background: #fff;
}

#menu a.x:active{
color:#000;
background: #FFF;
}

