ul.menuVertical {
  width: 200px;                 /* sets the size of the menu blocks */
  height: auto;  
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: #3E5392;      /* 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-top: -10px;            /* Opera 7 final's margin and margin-box model cause problems */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-size: 1em;
  text-align: left;
  position: absolute;
  z-index: 100;  
}

* html ul.menuVertical { width: 200px; border: solid 0px yellow; background-color: #3E5392;}

ul.menuVertical ul {
  width: 200px;                 /* sets the size of the menu blocks */
  border: 0px solid #000;      /* puts a black border around the menu blocks */
  background-color: #3E5392;      /* 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-left: 200px;
  font-size: 1em;
  margin-top: -18px;
  text-align: center;
  position: relative;
  z-index: 110;
}

* html ul.menuVertical ul {width: 200px; margin-top: -2px; margin-left: 122px; border: solid 0px red;}

ul.menuVertical li ul  li ul{
  width: 200px;                 
  border: 0px solid red;   
  background-color: #3E5392;      /* */
  padding-left: 0px;           /* */
  cursor: default;             /* */  
  margin-left: 200px;
  font-size: 1em;
  text-align: center;	
  margin-top: -18px;	
    position: relative;
   z-index: 110;
	}
	
.nietos {display: none;}

ul.menuVertical li { border: solid 0px yellow; margin-top: 2px;   text-align: center; width: 200px; 
  list-style-type: 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 */
  color: #fff;                 /* sets the default font colour to white */
  
}

* html ul.menuVertical li {width: 190px; }

ul.menuVertical 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: 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 */
}


ul.menuVertical  li > .nietos {  text-align: left;         /* 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: 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 */
}


ul.menuVertical li:hover, ul.menuVertical li.CSStoHighlight {
  background-color: #C7D0E0;      /* gives the active menu items a yellow background */
  color: #000;                 /* makes the active menu item text black */ 
  border: solid 0px yellow;
}
ul.menuVertical 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.menuVertical 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.menuVertical li a { color: #fff; display: block; width: 100%; text-decoration: none; padding-top: 3px; font-size: 0.8em; text-align: left; padding-left: 10px;}
/*ul.menuVertical li h3 { position: relative; margin-top: 0px; color: #000; display: block; width: 190px; text-decoration: none; padding-top: 3px; font-size: 0.8em; text-align: center; padding-left: 10px;}*/
ul.menuVertical li a:hover, ul.menuVertical li a.CSStoHighLink { color: #000; text-decoration: none; }
ul.menuVertical li:hover > a { color: #000; } /* supports links in branch headings - should not be display: block; */
