ul.makeMenu {
  width: 720px;                 /* sets the size of the menu blocks */
  height: 20px;  
  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: 0px;            /* 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: center;
  position: absolute;
  z-index: 100;  
}

ul.makeMenu ul {
  width: 120px;                 /* 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: 0px;
  font-size: 1em;
  text-align: center;
  position: relative;
  z-index: 110;
}

* html ul.makeMenu ul {margin-top: 16px; margin-left: -78px; width: 120px;}

ul.makeMenu li ul  li ul{
  width: 120px;                 
  border: 0px solid red;   
  background-color: #3E5392;      /* */
  padding-left: 0px;           /* */
  cursor: default;             /* */  
  margin-left: 120px;
  font-size: 1em;
  text-align: center;	
  margin-top: -18px;	
    position: relative;
   z-index: 110;
	}

* html ul.makeMenu li ul  li ul{margin-left: 45px; border: solid 0px yellow;}
.nietos {display: none;}

ul.makeMenu li { float: left; border: solid 0px yellow; margin-top: 2px;   text-align: center; width: 120px;
  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 */
  
}
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: 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.makeMenu  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.makeMenu li:hover, ul.makeMenu 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;
}

/** html ul.makeMenu li :hover, ul.makeMenu li.CSStoHighlight {
  background-color: #C7D0E0;      
  color: #000;                
  border: solid 0px yellow;
}

	ul.makeMenu ul li a:hover ul {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 */
}

ul.makeMenu li:hover > ul { display: block; }
/** html ul.makeMenu li:hover, ul {display: block;}*/

/*ul.makeMenu li :hover ul,
ul.makeMenu ul li :hover ul
{display: block;}
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}*/


/*Estylo de los Links*/
ul.makeMenu li a { color: #fff; display: block; width: 100%; text-decoration: none; padding-top: 3px; font-size: 0.8em;  border-bottom: solid 0px yellow;}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; text-decoration: none;  border-bottom: solid 2px #ffffff;}
ul.makeMenu li:hover > a { color: #000;  border-bottom: solid 2px #ffffff;} /* supports links in branch headings - should not be display: block; */
