
/* Left & Right alignment */

.left {
    float: left
}

.right {
    float: right
}

.wrapper {
    width: 100%;
    overflow: hidden
}


/* Global properties */

.acordeon .etiqueta::before {
    content: '+';
    color: rgb(65, 238, 79);
    position: absolute;
    margin-top: 22px;
    left: 590px;
    font-size: 30px;
    transform: translateY(-50%);
  }
  
  /* Oculta el contenido (altura: 0), disminuye el tamaño de la fuente, justifica el texto y añade la transición */
  
  .acordeon .contenido {
    position: relative;
    background: #141414;
    height: 0;
    font-size: 20px;
    text-align: justify;
    width: auto;
    overflow: hidden;
    transition: 0.5s;
  }
  
  /* Añade una línea horizontal entre los contenidos */
  
  .acordeon hr {
    width: 100;
    margin-left: 0;
    border: 1px solid rgb(20, 176, 204);
  }

  hr {
    border: 1px solid rgb(20, 176, 204);
  }
  /* Muestra la parte de contenido cuando está activa. Establece la altura */

.acordeon .contenedor.activa .contenido {
  height: auto;
}

/* Cambia de signo positivo a negativo una vez activado */

.acordeon .contenedor.activa .etiqueta::before {
  content: '-';
  font-size: 35px;
}

body {
    background: url(../images/bg_top2.jpg) top repeat-x #fff;
    border: 0;
    font: 14px Tahoma, Geneva, sans-serif;
    color: #ffffff;
    line-height: 40px;
    padding-bottom: 20px;
    min-width:980px;
}

/* Global Structure */

.main {
    margin: 0 auto;
    width: 980px;
}


/* main layout */

a:hover {
    text-decoration: none;
}

h1 {
    padding: 30px 0 0 39px;
}

h2 {
    padding: 30px 0 5px 0;
    letter-spacing: -3px
}

p {
    padding-bottom: 10px
}


/* header */

header {
    height: 376px;
    width: 100%;
    overflow: hidden
}

#logo {
    display: block;
    background: url(../images/logo.png) no-repeat;
    width: 273px;
    height: 84px;
    text-indent: -9999px
}

#menu {
    padding: 5px 0 0 39px
}

#menu li {
    float: left;
    padding-right: 20px;
    background: url(../images/menu_line.jpg) right 0 no-repeat;
    margin-right: 15px
}

#menu li a {
    font-size: 40px;
    color: #2fdba2;
    line-height: 40px;
    text-transform: uppercase;
    text-decoration: none;
    height: 40px
}

#menu li a:hover,
#menu #menu_active a {
    color: #44fbfe
}

#icon {
    float: right;
    padding: 16px 40px 0 0
}

#icon li {
    float: left;
    padding-left: 30px
}

#slogan {
    background: url(../images/top_line2.gif) 0 0 no-repeat;
    font-size: 46px;
    font-style: italic;
    font-weight: bold;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color:#38B6FF;
    line-height: 1.2em;
    margin: 25px 0 0 39px;
    padding-top: 18px;

}

/* content */

#content {
    width: 100%;
    overflow: hidden;
    padding-bottom: 30px
}

.pad1 {
    padding: 0 34px
}

.pad_left1 {
    padding-left: 5px;
}

.pad_left2 {
    padding-left: 42px;
}

.col_4 {
    font-size: 22px;
    width: auto;
}

.pad_top1 {
    padding-top: 33px
}

.pad_top2 {
    padding-top: 7px
}

.pad_bot1 {
    padding-bottom: 10px
}

.pad_bot2 {
    padding-bottom: 18px
}

.marg_right1 {
    margin-right: 21px
}

.marg_top1 {
    margin-top: -10px
}

.marg_left1 {
    margin-left: -5px
}


.wrapper li {
    font-size: 25px;
    font-style:italic;
    font-family: 'Times New Roman', Times, serif;
}

.wrapper ol {
    font-size: 18px;
}

.pad_bot1 {
    padding-bottom: 5px
}

.font2 {
    text-align: center;
    font-size: 37px;
    line-height: 1.2em;
    color: #6abcd7;
    padding: 0 0 20px 0;
    letter-spacing: -1px;
    margin-top: -3px;
}

.box1 {
    padding: 0 34px;
    background: #141414;
    padding-bottom: 45px;
}

.box1 h2 {
    font-size: 50px;
      color: #38B6FF;
    text-align: center;
}

.date {
    float: left;
    width: 72px;
    height: 50px;
    background: url(../images/date.gif) 0 0 no-repeat;
    margin-right: 14px;
    font-size: 34px;
    border-radius: 20px;
    line-height: 1.2em;
    padding-top: 22px;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* footer */

footer {
    font: 12px Arial, Helvetica, sans-serif;
    width: 100%;
    overflow: hidden;
    padding-bottom: 52px;
    line-height: 20px
}

footer a {
    color: #2683da
}


