/* CSS Menus - Horizontal CSS Menu with Dropdown and Popout Menus - 20050131 */



/* Begin CSS Popout Menu */

#menu{
float:left;
}

#menu a{
font:11px arial,helvetica,sans-serif;
display:block;
white-space:nowrap;
margin:0;
padding:15px 10px;
}

#menu h4.x {
	padding:0;
}

#menu h4{
font:12px arial,helvetica,sans-serif;
font-weight:bolder;
display:block;
border-left:solid 1px #fff;
white-space:nowrap;
margin:0;
text-align:left;
padding:20px 10px 10px 10px;
}

#menu h4{
color:#333;
background:#fff;
}

#menu h4.large{
	width:130px;
}

#menu a.titlu {
	font-size:12px;
	font-weight:bold;
	padding:20px 10px 10px 10px;
	margin:0;
	color:#333;
	background:#fff;
}

#menu a.titlu:hover {
	color:#eee;
	background:#3a3a3a;
}
	

#menu a{
background:#fff;
text-align:left;
text-decoration:none;
}

#menu a, #menu a:visited{
color:#000;
}

#menu a:hover{
color:#666;
text-decoration:none;
background-color:#eee;
}

#menu a:active{
color:#ccc;
}

#menu ul{
list-style:none;
margin:0;
padding:0;
float:left;
width:120px;
}

#menu ul.large {
	width:145px;
}

#menu li{
position:relative;
}

#menu ul ul{
position:absolute;
z-index:500;
top:auto;
display:none;
}

#menu ul ul.large{
	width:145px;
}

#menu ul ul ul{
top:0;
left:100%;
}

/* Begin non-anchor hover selectors */

/* Enter the more specific element (div) selector
on non-anchor hovers for IE5.x to comply with the
older version of csshover.htc - V1.21.041022. It
improves IE's performance speed to use the older
file and this method */

div#menu h4:hover{
background:#3a3a3a;
color:#eee;
}

div#menu li:hover{
cursor:pointer;
z-index:100;
}

div#menu li:hover ul ul,
div#menu li li:hover ul ul,
div#menu li li li:hover ul ul,
div#menu li li li li:hover ul ul
{display:none;}

div#menu li:hover ul,
div#menu li li:hover ul,
div#menu li li li:hover ul,
div#menu li li li li:hover ul
{display:block;}

/* End of non-anchor hover selectors */




