.menu_stanga {
font-size:90%;
margin:0 0 0 0; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.menu_stanga ul {
position:relative;
z-index:500;
padding:0;
margin:0;
list-style-type:none;
width:157px;
}
/* style the list items */
.menu_stanga li {
background:#A90B1C url(shade.gif);
width:157px;
padding:8px 0 10px 0;
margin-top:2px;
margin-bottom:2px;
/* for IE7 */
float:left;
clear:both;
}
/*
.menu_stanga li.sub_stanga {background:#A90B1C url(sub_stanga.gif) no-repeat right center;} 
*/
.sub_stanga li{
background:#A90B1C;
border-bottom:1px solid #F87F15;
margin-top:0px;
margin-bottom:0px;} 


/* get rid of the table */
.menu_stanga table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu_stanga a, .menu_stanga a:visited {
display:block; 
text-decoration:none;
width:157px;
color:#FFFFFF;
padding:0;
}
/* hack for IE5.5 */
* html .menu_stanga a, * html .menu_stanga a:visited {width:150px; w\idth:149px;}
/* style the link hover */
* html .menu_stanga a:hover {color:#CCCCCC; background:#A90B1C; position:relative;}

.menu_stanga li:hover {position:relative;}

/* For accessibility of the top level menu_stanga when tabbing */
.menu_stanga a:active, .menu_stanga a:focus {color:#CCCCCC; background:#A90B1C;}

/* retain the hover colors for each sub_stangalevel IE7 and Firefox etc */
.menu_stanga li:hover > a {color:#CCCCCC;}
 
/* hide the sub_stanga levels and give them a positon absolute so that they take up no room */
.menu_stanga li ul {
visibility:hidden;
position:absolute;
top:-30px;
/* set up the overlap (minus the overrun) */
left:120px;
/* set up the overrun area */
padding:30px;
/* this is for IE to make it interpret the overrrun padding */
background:transparent url(transparent.gif);
}

/* for browsers that understand this is all you need for the flyouts */
.menu_stanga li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.menu_stanga ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.menu_stanga ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.menu_stanga ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.menu_stanga ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.menu_stanga ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.menu_stanga ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.menu_stanga ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}

