ul.makeMenu, ul.makeMenu ul {
  list-style: none;
  width: 164px;                 /* sets the size of the menu blocks */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0;            /* Opera 7 final's margin and margin-box model cause problems */
  display: block;
}
ul.makeMenu li {
  list-style: none;       		/* 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 */
  background: url(../images/inne/menu_poz_dark.gif) no-repeat top left; 
  color: #8B9D63;                 /* sets the default font colour to white */
  display: block;
}

ul.makeMenu li :hover{
  background: url(../images/inne/menu_poz.gif) no-repeat top left; 
}

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: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 162px;                  /* 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 */

}


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 { 
font: bold 11px Arial, Helvetica, sans-serif;
color: #8b9d63;
display: block;
width: 94%;
height: 100%;
padding: 8px 0 9px 8px;
text-decoration: none;
}
ul.makeMenu li a:hover { 
font: bold 11px Arial, Helvetica, sans-serif;
color: #ECFFBF;
display: block;
width: 94%;
height: 100%;
padding: 8px 0 9px 8px;
text-decoration: none;
}

ul.makeMenu li:hover > a { color: #ECFFBF; } /* supports links in branch headings - should not be display: block; */

