#menuabs2	{	
	z-index: 4;
}
ul.makeMenu2, ul.makeMenu2 ul {
  padding: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  width: 595px;
  float : right;
}
ul.makeMenu2 li {
  list-style-type: none;       /* removes the bullet points */  
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  float: right;
  display: block;
  text-align: center;
  margin: 0px;
  padding: 0px;
}
ul.makeMenu2 li ul {			/*nastaveni pozice submenu pro EI*/
	position: absolute;
	top: 19px;
	left: 0px;
	width: 75px;
}
ul.makeMenu2 li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 18px;                    /* position slightly lower than the parent menu item */
  left: 0px;                  /* 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 */
  width: 75px;
}
ul.makeMenu2 li:hover, ul.makeMenu2 li.CSStoHighlight {
  display: block;
}
ul.makeMenu2 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 */
  visibility: visible; 
}

ul.makeMenu2 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 */
}
/* and some link styles */
ul.makeMenu2 li a { /* menu */
	width: 85px;
	background: white;
	color: #A2A2A2;
	text-align: center;
	font-size: 80%;
	display: block;
	padding: 2px 5px 2px 5px;
	text-decoration: none;
	border-right: 1px solid #A2A2A2;
}
ul.makeMenu2 li ul li #search { /* menu */
	display: block;
	font-size: 12px;
	text-decoration: none;
	width: 170px;
	background: #DFDFDF;
}
ul.makeMenu2 li ul li a { /* menu */
   	float: left;
   	position: relative;
   	top: -19px;
   	left: 55px;
	display: block;
	font-size: 12px;
	text-decoration: none;
	width: 34px;
	color: white;
	background: #DFDFDF;
	border: 0px solid #A2A2A2;
}

ul.makeMenu2 li a:hover, ul.makeMenu2 li a.CSStoHighLink { 
	text-decoration: underline;
}
ul.makeMenu2 li:hover > a { 
	text-decoration: underline;
}
ul.makeMenu2 li ul li a:hover, ul.makeMenu2 li ul li a.CSStoHighLink { 
	text-decoration: underline;
	color: black;
	background: #F1F1F1;
}
ul.makeMenu2 li ul li:hover > a { 
	text-decoration: underline;
	color: black;
	background: #F1F1F1;
}
/* supports links in branch headings - should not be display: block; */

/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu2 li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url(IEmen.htc);
}
ul.makeMenu2 ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 18px; left: 0px;
}
