@charset "utf-8";
/* CSS Document */
img
{
  border:0;
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-family: "Century Gothic";
	color:#777
}
.justifyText{
	font-family: "Century Gothic";
	text-align : justify;
	font-size: 14px;
	line-height: 1.5;
}
.justifyTextLabel{
	font-family: "Century Gothic";
	text-align : justify;
	font-weight: bold;
	font-size:14px;
	line-height: 1.5;
	color:#f49813;
}
.justifyTextLabelCenter{
	font-family: "Century Gothic";
	text-align : center;
	font-size:14px;
	line-height: 1.5;
	color:#f49813;
}
.justifyTextTitle{
	font-family: "Century Gothic";
	text-align : justify;
	font-size:16px;
	font-weight: bold;
	line-height: 1.5;
	color:#f49813;
}
.justifyTextFooter{
	font-family: "Century Gothic";
	text-align : center;
	font-size:14px;
	font-weight: bold;
	line-height: 1.5;
	color:#fff;
}
.justifyTextLeyenda{
	font-family: "Century Gothic";
	text-align : center;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.5;
	padding-left: 30px;
	padding-right: 30px;
	
}

  /* el menú en si mismo */
  .mi-menu  {
    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: 520px;
    /* el color de fondo */
    background: #fff;
    background: -moz-linear-gradient(#fff,#fff);
    background: -webkit-linear-gradient(#fff,#fff);
    background: -o-linear-gradient(#fff,#fff);
    background: -ms-linear-gradient(#fff,#fff);
    background: linear-gradient(#fff,#fff);
  }

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

  /* cada item del menu */
  .mi-menu  li {
	display: block;
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
  }
  .mi-menu li a {
    border-left: 1px solid #f49813;
    border-right: 1px solid #f49813;
    color: #777;
    display: block;
    font-family: Tahoma;
    font-size: 13px;
    font-weight: bold;
    line-height: 28px;
    padding: 0 14px;
    margin: 6px 0;
    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 */
  .mi-menu li:first-child a { border-left: none; }
  .mi-menu li:last-child a{ border-right: none; }
  /* efecto hover cambia el color */
  .mi-menu li:hover > a { color: #f49813; }

  /* los submenús */
  .mi-menu ul {
	  text-align:left;
	  padding: 0;
    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 */
    /* el color de fondo */
    background: #ffffff;
    background: -moz-linear-gradient(#fff,#fff);
    background: -webkit-linear-gradient(#fff,#fff);
    background: -o-linear-gradient(#fff,#fff);
    background: -ms-linear-gradient(#fff,#fff);
    background: linear-gradient(#fff,#fff);
    /* 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;
  }
  /* son visibes al poner el cursor encima */
  .mi-menu li:hover > ul { opacity: 1; }

   /* cada un ode los items de los submenús */
  .mi-menu 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;
  }
  .mi-menu li:hover > ul li {
    height: 36px; /* los mostramos */
    overflow: visible;
    padding: 0;
  }
  .mi-menu ul li a {
    border: none;
    border-bottom: 1px solid #f49813;
    margin: 0;
    /* el ancho dependerá de los textos a utilizar */
    padding: 5px 10px;
    width: 330px;
  }
  /* el último n otiene un borde */
  .mi-menu ul li:last-child a { border: none; }
