/*FUENTES*/
@font-face {
    font-family: "Nevis";
    src: url("/05_Proyecto_Completo/css/fonts/nevis.eot");
    src: url("/05_Proyecto_Completo/css/fonts/nevis.eot?#iefix") format("embedded-opentype"),
        url("/05_Proyecto_Completo/css/fonts/nevis.woff") format("woff"),
        url("/05_Proyecto_Completo/css/fonts/nevis.ttf") format("truetype"),
        url("/05_Proyecto_Completo/css/fonts/nevis.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Fajala";
    src: url("/05_Proyecto_Completo/css/fonts/FjallaOne-Regular.ttf");
    src: url("/05_Proyecto_Completo/css/fonts/FjallaOne-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Icons";
    src: url("/05_Proyecto_Completo/css/fonts/websymbols-regular-webfont.svg#WebSymbolsRegular") format("svg"),
        url("/05_Proyecto_Completo/css/fonts/websymbols-regular-webfont.eot");
    src: url("/05_Proyecto_Completo/css/fonts/websymbols-regular-webfont.eot?#iefix") format("embedded-opentype") url("/05_Proyecto_Completo/css/fonts/websymbols-regular-webfont.woff")format ("woff"),
        url("/05_Proyecto_Completo/css/fonts/websymbols-regular-webfont.ttf")format("truetype");
    font-weight: normal;
    font-style: normal;
}

/*ESTILOS GENERALES*/
* {
    padding: 0px;
    margin: 0px;
}

body {
    background-image: url("/05_Proyecto_Completo/img/paven.png");
}

a {
    color: #68a132;
    text-decoration: none;
    text-align: left;
}

a:hover {
    color: #335811;
}

a:focus {
    color: #a6e66b;
}

a:visited {
    color: #68a132;
}

.icon {
    font-family: "Icons";
    float: left;
    margin-right: 5px;
    margin-top: -2px;
}

.clearfix {
    float: none;
    clear: both;
}

/*FORMULARIOS*/

input[type="text"],
input[type="email"],
input[type="password"],
select {
    border: 1px solid #c9c9c9;
    box-shadow: 0px 0px 2px #ccc inset;
    padding: 1px;
    padding-top: 2px;
    padding-bottom: 2px;
    color: gray;
    transition: all 1000ms;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    border: 1px solid #70b231;
    color: black;

}

input[type="button"],
input[type="submit"],
input[type="reset"],
button {
    display: block;
    border-radius: 2px;
    width: 60px;
    padding: 3px;
    color: rgb(244, 248, 245);
    background-color: #70b231;
    border: 1px solid green;
    cursor: pointer;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
    box-shadow: inset green 0px 0px 5px;
}

input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
    box-shadow: inset rgb(156, 156, 156) 0px 0px 15px;
    text-shadow: 0px 0px 3px #ccc;
}



/*CABECERA*/

#header {
    min-width: 1024px;
    width: 100%;
    height: 250px;
    margin: 0px auto;
}

#header a {
    text-decoration: none;
}

#header #logotipo {
    width: 770px;
    margin: 0 auto;
    padding-top: 20px;
}

#header #logotipo img {
    display: block;
    text-align: center;
    margin: 0px auto;
    width: 140px;
}

#header h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    font-size: 40px;
    letter-spacing: 4px;
    margin-top: 10px;
    text-shadow: 0px 2px 3px #333333;
}

#header h1:hover {
    text-shadow: 0px 2px 1px #333333, 0px 0px 4px #70b231;
}

#header h1 a {
    color: #70b231;
}

/*BARRA DE NAVEGACIÓN*/

#nav {

    width: 100%;
    background-color: #333333;
    height: 40px;
    font-family: sans-serif, Helvetica, Arial;
    font-size: 14px;
    box-shadow: 0px 0px 2px gray;
}

#nav ul {
    list-style: none;
    margin: 0px auto;
    width: 1090px;
    text-decoration: none;
}

#nav>ul>li {
    line-height: 40px;
    float: left;
    border-right: 1px solid gray;
    transition: all 500ms;
}

#nav>ul>li>a {
    text-decoration: none;
    color: aliceblue;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}

#nav>ul>li>a:first-child {
    border-left: 1px solid gray;
}

#nav>ul>li:hover {
    background-color: #70b231;
    box-shadow: 0px 0px 15px green inset;
}

/*MENU DESPLEGABLE*/

#nav>ul>li>ul {
    display: none;
    position: absolute;
    width: 160px;
    box-shadow: 0px 2px 2px grey;
    z-index: 1;

}

#nav>ul>li:hover>ul {
    display: block;
    position: absolute;
}

#nav>ul>li:hover>ul>li {
    background-color: #F2F1F0;
    padding: 8px;
    line-height: 25px;
    font-size: 13px;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid gray;
    transition: all 400ms;
}

#nav>ul>li:hover>ul>li a {

    color: #666666;
    text-decoration: none;
}

#nav>ul>li:hover>ul>li:hover {
    background-color: #91d156;
    box-shadow: 0px 0px 4px rgb(228, 228, 228) inset;
}

/*CONTENIDO*/

#content {
    width: 1250px;
    min-width: 1100px;
    margin: 0px auto;
}

/*BARRA LATERAL*/

.aula1 {
    color: #0c73f2 !important;
}

.aula2 {
    color: #9b2422 !important;
}

.orange {
    color: #d69d2a !important;
}

#aside,
#frase {
    width: 200px;
    float: left;
    margin: 30px;
    background-color: rgb(252, 252, 252);
    border: 1px solid #ccc;
    box-shadow: 0px 2px 2px #ccc;
    text-align: center;
    font-family: sans-serif, arial, helvetica;
}

#frase {
    width: 180px;
    padding: 10px;
    font-size: 14px;
    font-family: sans-serif;
    text-align: left;
}

#frase>a {
    display: block;
    text-align: right;
    margin-top: 5px;
}

#aside .widget {
    display: block;
    width: 180px;
    margin: 5px auto;
    padding: 8px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    border-bottom: 1px dashed #8d8d8d;
}

#aside .widget:last-child {
    margin-bottom: 20px;
}

#aside h3 {
    display: block;
    color: #333333;
    width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
    background: rgba(128, 128, 128, 0.384);
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
    margin-bottom: 15px;
}

#aside li {
    margin-top: 8px;
    margin-bottom: 5px;
    margin-left: 20px;
    list-style: square;
}

/*FORMULARIOS LATERAL*/

#aside div label,
#aside div label[type="text"],
#aside div label[type="email"],
#aside div label[type="password"],
#aside div a {
    display: block;
    width: 95%;
    margin-top: 2px;
    margin-bottom: 2px;

}

#aside div input[type="button"],
#aside div input[type="submit"],
#aside div button {
    margin-top: 5px;
    margin-bottom: 10px;
}

#aside input,
#aside label {
    margin: 0px auto;
    text-align: center;
}

/*SECCIONES*/

#sections {
    float: left;
    width: 50%;
    font-family: sans-serif, arial, helvetica;
    margin-right: 20px;

}

#sections .titulo {
    font-size: 25px;
    margin-bottom: 5px;
    margin-top: -20px;
    font-family: "Fajala";
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;

}

#sections section {
    margin-top: 40px;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 4px #c9c9c9;
    color: #333;
    font-size: 16px;
    overflow: hidden;

}

#sections .article {

    margin: 10px;
    margin-top: 20px;
    margin-bottom: 20px;

}

#sections .date {
    color: gray;
    font-size: 12px;

}

#sections .pegatina1,
#sections .pegatina2 {
    position: absolute;
    margin-top: -38px;
    z-index: 0;
}

#sections .pegatina2 {
    position: absolute;
    margin-top: -38px;
    margin-left: 870px;
    z-index: 0;
}

/*FOOTER*/

#historico {
    float: right;
    margin-top: 20px;
    margin-right: 361px;
    font-family: sans-serif;
}

#footer {
    width: 100%;
    margin: 0px auto;
    text-align: center;
    margin-top: 40px;
    background-color: #333;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #c9c9c9;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: 0px 0px 15px gray;

}

#footer a{
 color: #82e02a;

}

#footer a:hover{
    color: #e0dd2a;
   
   }