/* Basic code - don't modify */
 
 #nav { display: block; margin: 0; padding: 0; position: relative; }
  #nav li { display: block; list-style: none; margin: 0; padding: 0; float: left; position: relative;}
  #nav a { display: block; }
  #nav ul { display: none; position: absolute; left: 0; margin: 0; padding: 0; }
  * html #nav ul { line-height: 0; } /* IE6 "fix" */
  	#nav ul a { zoom: 1; } /* IE6/7 fix */
    #nav ul li { float: left; position:relative; }
    #nav ul ul { top: 0; }
	
	#nav ul li ul { 
		float: none; 
		position:absolute; /* Esta posición es relativa al <li> que contiene a este <ul> */
   		left:128px; /* Para que no monte sobre el <li> */
	   	/*top:-1px;*/
   		display:none;
	   	list-style:none;
   }
    
/* Essentials - configure this */

#nav ul { width: 130px; }
#nav ul ul { left: 131px; }

/* Everything else is theming */
 
/*Color de fondo y alto del Menú */
#nav { background-color: #696766; height: 25px; }
#nav *:hover { background-color: none; color: #FFFFFF;}

/*Color de la letra del hipervinculo*/
#nav a { border-right: 0px solid white; color: #C1C0BF; font: 10px/1.4 Arial; font-weight: bold; padding: 6px; line-height: 1;text-decoration:none; width: 114px; text-align: center; }

  /*Color del menu*/
    #nav li.hover a { background-color: #605D5C;  }
	#nav li:hover a { background-color: #605D5C;  }
	
    #nav ul { top: 25px; }
  /*Color del item del menu cuando pierde el foco*/
    #nav ul li a {	background-color: #605D5C; 	}
	
	/*Color del item del menu cuando le estoy pasando por arriba*/
    #nav ul a.hover {background-color: #E1DEDC; color: #696766; } /*Mozilla*/
	#nav ul a:hover {background-color: #E1DEDC; color: #696766; } /*Explorer*/

   #nav ul a { float: left; border-bottom: 1px solid white; border-top : 1px solid white; border-right: 1px solid white; opacity: 0.9; filter: alpha(opacity=90); border-left: 1px solid white; text-align: left; }
   



