*{
    margin: 0px;
    padding: 0px;

}

.clearfix{
    float: none;
    clear: both;/*Propiedad para limpiar los flotados*/
}
    

#global{
    width: 65%;
    margin: 0px auto;
    margin-top: 30px;
    padding: 25px;
    background: white;
    box-shadow: 0px 0px 2px gray;

}

#logo{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 28px;
    letter-spacing: 4px;/*Propiedad para que las letras se separen entre si*/
    line-height: 75px;
    color: white;
    text-align: center;
    width: 385px;
    height: 80px;
    margin-bottom: 20px;
    text-transform: uppercase;

    float: left;
}

#menu{
    font-family: Helvetica, Arial, sans-serif;
    background: #333;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: 20px;

}

#menu ul{
    line-height: 46px;
    list-style: none;/*Propiedad para que no nos muestre los puntos de la lista*/
    
}

#menu ul li{
    height: 46px;
    display: inline-block;
    transition: all 300ms;
}



#menu a{
    display: block;
    color: white;
    text-decoration: none;/*Propiedad para que no me muestre el subrayado de los links*/
    padding-left: 30px;
    padding-right: 30px;
}

#posts{
    width: 60%;
    float: left;
    font-family: Helvetica, Arial, sans-serif;
}

.post{
    padding: 7px;

}

h2{
    font-size: 30px;
    color: #333;
    font-family: Helvetica, Arial, sans-serif;


}

.post .date{
    display: block;
    color: gray;
    margin-top: 5px;
    
}

.post p{
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 22px;/*Propiedad, espaciado entre las lineas del párrafo*/
    text-align: justify; /*Para justificar el parrafo*/

}

.button-more{
    display: block;
    font-size: 14px;
    text-align: center;
    padding: 15px;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    width: 70px;
    margin-bottom: 20px;
}

#sidebar{
    font-family: Helvetica, Arial, sans-serif;
    width: 31%;
    float: right;

}

#sidebar h4{
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 10px;
    color: #333;
    background: url(../img/lines.png) repeat-x;
}
#sidebar h4 span{
    background: white;
    padding: 5px;
}

#sidebar img{
    width: 100%;
}

#sidebar p{
    font-size: 15px;
    text-align: justify;
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type='number'],
select{
    padding: 5px;
    border-radius: 2px;
    border: 1px solid #ccc;
    width: 80%;
    margin-bottom: 10px;
    margin-top: 5px;
}

form input[type="submit"]{
    background: #eee;
    padding: 10px;
    border: 1px solid #ccc;
    color: #333;
    cursor: pointer;
}

footer{
    font-family: Helvetica, Arial, sans-serif;
    color: white;
    height: 47px;
    background: rgb(51, 51, 51, 0.70);
    margin: 0px auto;
    width: 65%;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 50px;
    line-height: 47px;
}

.bx-wrapper, .bx-viewport{
    height: 250px!important; 
}

#selector-theme{
    position: fixed;
    top: 40%;/*PROPIEDAD PARA QUE ESTÉ A 40% DEL TOPY GRACIAS AL FIXED NO SE MUEVE*/
    background: rgb(51, 51, 51, 0.5);
    width: 50px;
    height: 154px;
}

#to-green, #to-red,#to-blue, #to-black{
    width: 30px;
    height: 30px;
    border: 1px solid white;
    display: block;
    margin: 0px auto;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
}

#to-green{
    background: #235E3D;
}

#to-red{
    background: #ca3413;
}

#to-blue{
    background: #1f87c4;

}

#to-black{
    background: black;

}

.subir{
    color: white;
    text-decoration: none;
    display: block;
    float: right;
}

#box{
    width: 60%;
    float: left;
    margin-top: 40px;
}

#acordeon{
    margin-top: 20px;
}

#reloj{
    font-size: 30px;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
    color: #333;
    border: 5px solid #333;
    width: 174px;
    height: 30px;
    padding: 20px;
    margin: 0 auto;
}

#form_contact{
    width: 50%;
    margin-top: 15px;
    font-family: Helvetica, Arial, sans-serif
}

#form_contact label{
    display: block;
    width: 100%;
    margin-top: 5px;
}

.form-error{
    font-family: Helvetica, Arial, sans-serif;
    float: right;
    font-size: 11px;
    color: red;
    padding: 10px;
    width: 65%;
}