@charset "utf-8";
/* CSS Document */

.arrowlistmenu{
padding:0 0 0 0;
width: 175px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font:11px Verdana;
color: #336082;
border:1px #a2b6c5 solid;
padding: 4px 0 4px 23px; /*header text is indented 10px*/
margin:3px;
cursor: pointer;
}
.arrowlistmenu .menuheader a {
font:11px Verdana;
color: #336082;
margin:3px;
cursor: pointer;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background: url(../slike/titlebar-active.gif) no-repeat left center;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 3px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: url(../slike/subcollapsible.gif) no-repeat center left;
/*border:1px #a2b6c5 solid;*/
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: url(../slike/titlebar-active.gif) no-repeat center left;
}

.arrowlistmenu ul li a{
color: #336082;
display: block;
padding: 2px 0;
padding-left: 23px; /*link text is indented 19px*/
text-decoration: none;
font:11px Verdana, Arial, Helvetica, sans-serif;
}

.arrowlistmenu ul li a:active{
text-decoration:underline;
/*background:url(slike/item-active.gif) no-repeat left center !important;
*/color: #7ea0b9;
}
.arrowlistmenu ul li a:visited
{color:#336082;}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
text-decoration:underline;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
text-decoration:underline;
}



