

/* Estilos generales */

*
{
    margin: 0;
    padding: 0;
}

body
{
    background-color: rgba(0,30,96,1);
}

header
{
    width: 100%;
}

#subheader
{
    width: 100%;
    height: 100px;
    background-color: #fff;
    padding-top: 20px;
}

#subheader h1
{
    text-align: center;
    font-size: 40px;
    font-family: sans-serif;
}

#subheader p
{
    text-align: center;
    font-family: sans-serif;
    font-size:  15px;
    margin-top: 30px;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/


/* Estilos para el menú desplegable */


/* Primera parte */
nav
{
    margin: auto;
    width: 960px;
    text-align: center;
}

.nav li
{
    position: relative;
    text-decoration: none;
    border-radius: 2px;
    padding: 10px 15px;
    cursor: pointer;
    display: block;
    width: 130px;
}

.nav > li
{
    float: left;
}

/* Segunda parte */
.nav li ul
{
    display: none;
    position: absolute;
    min-width: 130px;
    top: 40px;
    left: 0;
}

.nav li:hover > ul
{
    display: block;
}


/* Tercera parte */
nav li ul li
{
    position: relative;
}

.nav li ul li ul
{
    left: 160px;
    top: 0;
}


/* COLORES Y EFECTOS */

.nav li
{
   background-color: rgba(0,30,96,1);
   box-shadow: 0px 0px 1px #fff inset; /* Con esta sombra creamos un pequeño borde para diferenciar los "ul" y "li" del menú */
   transition: 0.5s;
}

.nav li a
{
    text-decoration: none;
    color: #fff;
}

.nav li:hover
{
    box-shadow: 0px 0px 15px #fff inset;
}


/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/


/* Estilos de los artículos */

article
{
    width: 960px;
    margin: 150px auto;
}

article .articulo
{
    visibility : hidden;
    padding: 10px 15px;
    margin-bottom: 20px;
    background-color: rgba(49,100,188,1);
    border-radius: 10px;
    box-shadow: 0 0 2px #fff inset , 3px 3px 5px #000;
}

article .articulo .titulo
{
    font-family: sans-serif;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #fff;
}

article .articulo p
{
    text-align: justify;
    font-family: sans-serif;
    margin-bottom: 5px;
}

