/* root */
.menulist, .menulist ul {
  margin: 0;
  padding: 0;
  width: 250px;
  list-style: none;
}
/* drugi nivo */
.menulist ul {
  visibility: hidden;
  position: absolute;
  top: 2;
  left: 250px;
  width: 220px;
  border: 2px solid #D8DFD9;
}
.menulist li {
  position: relative;
  border: none;
  background: #F7F9F7;
  border-top: 2px solid #fff;
}
.menulist ul li {
  background: #F7F9F7;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #EBEFEB;
}
.menulist ul li:first-child {
  border-top: none;
}
.menulist ul li:last-child {
  border-bottom: none;
}

/* treci nivo */
.menulist ul ul {
	left: 218px;
  width: 190px;
}


/* Links inside the menu */
.menulist a {
  display: block;
  padding: 0px;
  color: #555;
  font-weight: bold;
  text-decoration: none;
}
.menulist ul a {
  padding: 8px;
}
/*  Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus. */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
  color: #7689B5;
  background-color: #E7EAF2;
}
.menulist a.highlighted {
  color: #7689B5;
  background-color: #E7EAF2;
}



/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
  float: right;
}
/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
  float: left;
  height: 1%;
}
* html .menulist a {
  height: 1%;
}
/* End Hack */
