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

<style type="text/css">
  /* el menú en si mismo */
  #botonera  {
    border-radius: 5px;
    list-style-type: none;
    margin: 0 auto; /* si queremos centrarlo */
    padding: 0;
    /* la altura y su ancho dependerán de los textos */
    height: 40px; 
    width: 530px;
    /* el color de fondo */
    background: #555;
    background: -moz-linear-gradient(#555,#222);
    background: -webkit-linear-gradient(#555,#222);
    background: -o-linear-gradient(#555,#222);
    background: -ms-linear-gradient(#555,#222);
    background: linear-gradient(#555,#222);
  }

  /* si es necesario, evitamos que Blogger de problemas con los saltos de línea cuando escribimos el HTML */
  #botonera  br { display:none; }

  /* cada item del menu */
  #botonera  li {
    display: block;
    float: left; /* la lista se ve horizontal */
    height: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }
  #botonera li a {
    border-right: 1px solid #ffffff;
    color: #ffffff;
    display: block;
    font-family: Georgia;
    font-size: 15px;
    font-weight: bold;
    line-height: 28px;
    padding: 0 7px;
    margin: -5px 3px;
    text-decoration: none;
    /* animamos el cambio de color de los textos */
   
  }
  /* eliminamos los bordes del primer y el último */
  #botonera li:first-child a { border-left: none; }
  #botonera li:last-child a{ border-right: none; }
  /* efecto hover cambia el color */
  #botonera li:hover > a { color:#E8F6F9;
  text-decoration:underline; }

  /* los submenús */
  #botonera ul {
    border-radius: 0 0 5px 5px;
    left: 0;
    margin: 0;
    opacity: 0; /* no son visibles */
    position: absolute;
    top: 40px; /* se ubican debajo del enlace principal */
	background-color: #75705A;
	
	
  }
  /* son visibes al poner el cursor encima */
  #botonera li:hover > ul { opacity: 1; }

   /* cada un ode los items de los submenús */
  #botonera ul li {
    height: 0; /* no son visibles */
    overflow: hidden;
    padding: 0;
    /* 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;
  }
  #botonera li:hover > ul li {
    height: 33px; /* los mostramos */
    overflow: visible;
    padding: 0;
  }
  #botonera ul li a {
    border: none;
    border-bottom: 1px solid #111;
    margin: 0;
	color:#FFFFFF;
    /* el ancho dependerá de los textos a utilizar */
    padding: 5px 15px;
    width: 180px;
  }
  /* el último n otiene un borde */
  #botonera ul li:last-child a { border: none; }
  

</style>