/* NUTNO DEFINOVAT CELOU CESTU NA JEDNOTLIVE ELEMENTY MENU */


ul.vermenu li.item ul.makeMenu {
	cursor: default;
	display: none;
	position: absolute;
	border: 3px solid #cccccc;
	background:#000000;
	padding: 0;
	margin:-22px 0 0 184px;
	&margin:-6px 0 0 15px;
	list-style-type: none;
}

ul.vermenu li.item ul.makeMenu li					
{
	background: #FFFFFF;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #cccccc;
}

ul.vermenu li.item ul.makeMenu li a					
{
	background: #FFFFFF url(../images/common/vernav_bullet.gif) no-repeat 5px 7px;
	font-weight: bold;
	font-size: 9pt;
	display: block;
	width: 190px;
	padding: 3px 10px 3px 23px;
	line-height: 13.5pt;
	margin: 0 0 0 0;
	text-decoration:none;
}


ul.vermenu li.item ul.makeMenu li a:hover		
{
	background: #f5f5f5 url(../images/common/vernav_bullet.gif) no-repeat 5px 7px;
}



.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 );
	
}
