/* NUTNO DEFINOVAT CELOU CESTU NA JEDNOTLIVE ELEMENTY MENU */


div#div_holder div.item div.cont ul.benefit li ul.makeMenu {
  cursor: default; 
	display: none;
	position: absolute;
	border-top: 3px solid #5C7EB1;
	border-right: 3px solid #5C7EB1;
	border-bottom: 2px solid #5C7EB1;
	border-left: 3px solid #5C7EB1;
	background:#F5F6FA;
	padding: 0;
	margin: -10px 20px 0 80px;
  &margin: -10px 20px 0 4px;
}

div#div_holder div.item div.cont ul.benefit li ul.makeMenu li					
{
	background: #F5F6FA url("../images/bg_dhtmlmenu.gif") repeat-y;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #0859A4;
	height: auto;

}

div#div_holder div.item div.cont ul.benefit li ul.makeMenu li a, div#div_holder div.item div.cont ul.benefit li ul.makeMenu li span					
{
	font-weight: bold;
	font-size: 11px;
	display: block;
	width: 150px;
	padding: 2px 0 2px 17px;
	margin: 0 0 0 0;
	border: 0;
	height: auto;
	background:  url("../images/bg_list_benefit_item.gif") no-repeat 4px 6px;
}

div#div_holder div.item div.cont ul.benefit li ul.makeMenu li span {
	cursor: default;
}


div#div_holder div.item div.cont ul.benefit li ul.makeMenu li a:hover		
{
	color: #FFFFFF;
	background: #7E9BC9  url("../images/bg_list_benefit_item_a.gif") no-repeat 4px 6px;
}



.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
 background: #ffffff;                 /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
.makeMenu li:hover, .makeMenu li:visited, ul.makeMenu li.CSStoHighlight {
      /* gives the active menu items a yellow background */                /* makes the active menu item text black */ 
	cursor: pointer;
	_cursor: hand;
}
.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}


/* that IE 5+ conditional comment makes this only visible in IE 5+ */
.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
	behavior: url( IEmen.htc );
	
}
