/*----------------------------*/
/* CSS_MENU.CSS               */
/*----------------------------*/
#menu
{
width: 100%;
float: left;
/*background: #FFB311;*/
position: relative;  
z-index: 600;
}

#menu ul
{
list-style: none;
/*margin: 0;*/
padding: 0;
background: #FFB311;
}

#menu ul li
{
float: left;
}

#menu ul li ul li
{
float: none;
}

#menu ul ul
{
display: none;
}

#menu ul li:hover > ul
{
display: block;
}
#menu li
{
position: relative;
}

#menu ul li ul
{
width: 150px;
}

#menu ul ul
{
position: absolute;
z-index: 500;
}

#menu ul ul ul
{
top: 0;
left: 100%;
}

#menu a
{
/*font: .9em Verdana;rp */
display: block;
color: #ffffff;
text-decoration: none;
/*background: #070260;*/
text-align: left;
}

#menu ul li ul li a {
}

#menu a.main_menu
{
/*font: bold .9em Verdana; rp*/
color: #ffffff;
text-align: left;
background: #FFB311;
padding-left: 3px;
padding-top: 2px;
padding-right: 3px;
padding-bottom: 2px;
}

#menu a.main_current
{
color: #070260;
background: #FFFFFF;
}

#menu a.current
{
color: #070260;
/*background: #FFB311;*/
}

#menu a:hover
{
color: #070260;
background: #FFB311;
cursor: pointer;
}

#menu a.main_menu:hover {
color: #070260;
background: #ffffff;
cursor: pointer;
}


