#menuabs	{	
	z-index: 2;
	float : right;
}
ul.makeMenu, ul.makeMenu 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.makeMenu 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: left;
  display: block;
  text-align: left;
  margin: 0px;
  padding: 0px;
}
ul.makeMenu li ul li{
  display: block;
  float: none;
}
ul.makeMenu li ul {			/*nastaveni pozice submenu pro EI*/
	position: absolute;
	top: 18px;
	left: 0px;
	width: 100%;
	border-bottom: 1px solid white;
}
ul.makeMenu 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: 100%;
  border-bottom: 1px solid white;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  display: block;
}
ul.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 */
  visibility: visible;
}
ul.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 */
}
/* and some link styles */
ul.makeMenu li a { /* menu */
	color: white;
	display: block;
	font-size: 12px;
	padding: 2px 2px 2px 19px;
	text-decoration: none;
	background: #9FAAB5;
	border-left: 1px solid white;
	border-right: 1px solid white;
}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { 
	color: white;
	border-left: 1px solid white;
	border-right: 1px solid white;
	background: #6D7B8A;
}
ul.makeMenu li:hover > a { 
	color: white;
	border-left: 1px solid white;
	border-right: 1px solid white;
	background: #6D7B8A;
}
/* supports links in branch headings - should not be display: block; */

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