ul.makeMenu, ul.makeMenu ul {
  width: auto;                 /* sets the size of the menu blocks */
  border: 0;      /* puts a black border around the menu blocks */
  /*background-color: #F9F9F9;*/      /* makes the menu blocks mint green - a bg-color MUST be included for IE to work properly! */
  padding-left: 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 */
}
ul.sub li {
  
  font-family:Arial, Helvetica, sans-serif;
  font-size:12px;
  width:150px;
  _width:150px;
  display:block;
  height:20px;
  margin-right:2px;
  
       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  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 */
  color: #666;                 /* sets the default font colour to white */
  /*background-color: #F9F9F9;*/
}

ul.makeMenu li {
  
  font-family:Arial, Helvetica, sans-serif;
  font-size:12px;
   display:block;
  height:20px;
  margin-right:2px;
  
       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  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 */
  color: #666;                 /* sets the default font colour to white */
  /*background-color: #F9F9F9;*/
}
ul.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: relative;          /* make child blocks hover without leaving space for them */
  top: 1px;                    /* position slightly lower than the parent menu item */
  left: 5px;                  /* 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 */
  border:1px solid #ccc;
  width:155px;
  height:auto;
  
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
   background:#A7DDFE url(../img/active-menu.png) repeat-x;
 /* color: #fff;*/                 /* makes the active menu item text black */ 
  text-decoration:underline;
}

ul.makeMenu li.CSStoHighlight {
	
}

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 */
}
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 { 
	color: #000; 
	display: block;
	text-decoration: none;
	margin:3px;
	margin-left:6px;
  }
  
  ul.makeMenu li a:hover { 
	text-decoration:underline;
  }
  
ul.makeMenu li span { 
	color: #000; 
	display: block;
	width:100px;
	text-decoration: none;
	margin:3px;
	margin-left:6px;
  }
  
ul.makeMenu li span:hover { 
	/*color: #fff; */
  }
  
li.hlavni {
padding:2px;
padding-left:10px;
padding-left:8px;
padding-top:3;
display:block;
 background-image:url(../img/min.gif); 
 background-position:5px center;
 background-repeat:no-repeat;
 background-color:transparent;
  width:113px;
  _width:103px;
  float:left;
 /*border-right:1px solid #ccc;*/
}

.sub {
	background-color:#fff;
}

.sub a {
	background-color:#fff;
	text-decoration:none;
	background-image:none;
}

.sub a:hover {
	background-color:#fff;
	text-decoration:underline;
	background-image:none;
}

.sub li:hover {
	background-color:#fff;
	text-decoration:underline;
	background-image:none;
}

ul.sub li:hover {
	background-color:#fff;
	text-decoration:underline;
	background-image:none;
}

.sub li {
	background-color:#fff;
	border-bottom:1px solid #ccc;
}

.sub li.pos {
	background-color:#fff;
	border-bottom:none;
}
.hlavni a{
	background-color:transparent;
}  
  
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { background-image:none;/*color: #fff;*/ }
ul.makeMenu li:hover > a { background-image:none;/*color: #fff;*/ } /* supports links in branch headings - must not be display: block; */
