/* All <ul> tags in the menu including the first level */
.menulist {
    text-align:left; position:absolute; top:40px; left:14px;
}
.menulist ul{text-align:left; width:150px; }

.menulist, .menulist ul {
 margin:0px;
 list-style:none;
 padding:0px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top:0px;
 left:153px;
 background-color:#000;
 }
.menulist ul ul{
 left:171px;
 margin:0px;
 border:0px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
    position:relative;
    margin:0px;
    padding:0px;
    border:0px;
}

/* Links inside the menu */
.menulist li a {
 color: #FFF;
 display:block;
 text-decoration:none;
 margin:0px;
 white-space:nowrap;
}

/*style dla glownego menu*/
.menulist a:hover, 
.menulist a.highlighted:hover, 
.menulist a:focus {
 color: #148700;
 border:0px;
 background:url(../../pliki/bg_menu.gif) left bottom no-repeat;
 margin:0px;
 white-space:nowrap;
}
.menulist a.highlighted {
 color: #148700;
 background:url(../../pliki/bg_menu.gif) left bottom no-repeat;
 border:0px;
 margin:0px;
 white-space:nowrap;
}

/*style dla submnu*/
.menulist ul a:hover, 
.menulist ul a.highlighted:hover, 
.menulist ul a:focus {
 color: #D4D4D4;
 margin:0px;
 border:0px;
 display:block;
 text-decoration:none;
 white-space:nowrap;
}

.menulist ul a.highlighted {
 color: #D4D4D4;
 border:0px;
 margin:0px;
 display:block;
 text-decoration:none;
 white-space:nowrap;
}
* html .menulist ul li a {
 border:0px;
 color:#FFF;
 margin:0px;
 white-space:nowrap;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 width: 100%;
}

* html .menulist li {
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */
