@charset "utf-8";
/* CSS Document */

/* #main_menu	{
	style="height:32px;
	width:100%"
	
}*/

  /* el menú principal en si mismo */
  .menu  {
    /* border-radius: 5px; */
	position:fixed;
	z-index:9999;
	top: 0px;
	left: 0px;
    list-style-type: none;
    margin: 0 auto; /* si queremos centrarlo */
    padding: 0px;
    /* la altura y su ancho dependerán de los textos */
    height: 32px; 
    width: 100%;
	border-bottom:#295300;
	/* el color de fondo 
    background: #360;  */
	background-color:#360;
	background-image: url(/css/images/menu_bkg_green.png);
    background: -moz-linear-gradient( #669900,#336600); 
    background: -webkit-linear-gradient(#669900,#336600);
	background: -o-linear-gradient(#669900,#336600);
    background: -ms-linear-gradient(#669900,#336600);
    background: linear-gradient(#669900,#336600);
	/* Sombra para el menu principal 
	box-shadow: 2px 2px 3px #666666;
	-moz-box-shadow: 2px 2px 3px #666666;
	-webkit-box-shadow: 2px 2px 3px #666666; */
	/* For IE 8 */
	/*-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#666666')"; */
	/* For IE 5.5 - 7 */
	/*filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#666666'); */
  }
  
  /* si es necesario, evitamos que Blogger de problemas con los saltos de línea cuando escribimos el HTML */
  /* .menu  br { display:none; } */

  /* cada item del menu */
  .menu  li {
    display: block;
	text-align:center;
    float: left; /* la lista se ve horizontal */
    height: 32px;
    list-style: none;
    margin: 0px;
    padding: 4px 0px 0px 0px;
    position: relative;
  }
  .menu li a {
	height:32px;
    /* border-left: 1px solid #004000;
    border-right: 1px solid #c0c0c0; */
    color: #FFF;
    display: block;
    font-family: Tahoma;
    font-size: 11px;
    font-weight: bold;
    line-height: 18px;
    padding: 0 14px;
    margin: 2px 0px;
    text-decoration: none;
    /* animamos el cambio de color de los textos */
    -webkit-transition: color .2s ease-in-out;
    -moz-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    -ms-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
  }
  /* eliminamos los bordes del primer y el último */
  .menu li:first-child a { border-left: none; }
  .menu li:last-child a{ border-right: none; }
  /* efecto hover cambia el color */
  
  .menu li:hover {
	height:28px;
  	background-color:#669900;
  }
  .menu li:hover > a {
	color: #FF6;
}

  /* los submenús */
  .menu ul {
	/* border-radius: 0 0 5px 5px; */
	padding-left:0px;
	left: 0px;
	margin: 0px;
	opacity: 0; /* no son visibles */
	position: absolute;
	top: 32px; /* se ubican debajo del enlace principal */
	background-color:#360;
	/* background-image: url(/images/menu_subitem_css.jpg); */
	width:200px;
	/* el color de fondo de los submenu */
    background: #669900;
    background: -moz-linear-gradient(#669900,#336600);
    background: -webkit-linear-gradient(#669900,#336600);
    background: -o-linear-gradient(#669900,#336600);
    background: -ms-linear-gradient(#669900,#336600);
    background: linear-gradient(#669900,#336600); 
    /* animamos su visibildiad */
    -moz-transition: opacity .25s ease .1s;
	-webkit-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
	/*Sombra para los submenus  */
	-moz-box-shadow: 3px 3px 4px #666666;
	-webkit-box-shadow: 3px 3px 4px #666666;
	box-shadow: 3px 3px 4px #666666;
	/* For IE 8 */
	/* -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#666666')"; */
	/* For IE 5.5 - 7 */
	/* filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#666666'); */
  }
  /* son visibes al poner el cursor encima */
  .menu li:hover > ul { opacity: 1; }

   /* cada uno de los items de los submenús */
  .menu ul li {
	text-align:left;
	height: 0px; /* no son visibles */
	overflow: hidden;
	/* animamos su visibildiad */
    -moz-transition: height .25s ease .1s;
	-webkit-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 4px;
  }  
  .menu ul li:hover {
	background-color:#295300;
	width:98%;
	padding-left: 4px;
  }
  .menu li:hover > ul li {
	height: 30px;
	overflow: visible;
	padding-left: 4px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
  }
  .menu ul li a {
	display: block;
	height:26px;
	border: none;
	border-bottom: 1px solid #628903;
	margin: 0px;
	/* el ancho dependerá de los textos a utilizar */
    padding: 4px 0px 0px 0px;
	width: 189px;
  }
  /* el último no tiene un borde */
  .menu ul li:last-child a { border: none; }

 /* Separador entre cada uno de los items del menu principal */
  .menu-divider {
	float:left;
	margin-top:2px;
	background-repeat:no-repeat;
	background-image: url(/images/menu_divider.jpg);
	width:2px;
	height:18px;
	padding-left:0px;
	padding-right:0px;
	background-position:center;
}