/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
z-index:1000 !important;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:1000 !important;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:1000 !important;
left:-1px;
top:25px; /* !!!! wazne dla IE !!!!*/
}

/* style all the links */
.menu a, .menu:visited {
display:block;
font-size:11px;
font-family: tahoma;
font-weight: bold;
width:150px;
/*padding:8px 0;*/
color:#FFFFFF;
background:#017A52;
text-decoration:none;
/*margin-right:1px;*/
text-align:center;
/*border-left: 1px solid #84C19F;
border-right: 1px solid #84C19F;*/

border:1px solid #84C19F;
}
/* style the links hover */
.menu :hover{
color:#FFFFFF;
background:#016644;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:150px;
z-index:1000 !important;
height:0;
}


.menu ul ul li a  {
background:#E4EAC6;
color: black;
/*border-top: 1px solid #84C19F;*/
}


/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}

