
@import url('sesion.css');
@import url('botones.css');
@import url('dentro.css');
@import url('tablaresponsive.css');

@font-face {
   font-family: 'Raleway';
   font-style: normal;
   font-weight: normal;
   src: url(Raleway/Raleway-Medium.ttf);
}

@font-face {
   font-family: 'Open_Sans';
   font-style: normal;
   font-weight: normal;
   src: url(Open_Sans/OpenSans-Regular.ttf);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family:'Open_Sans';
}

header {
    width: 100%;
    height: 70px;
    background: #c1bcbc;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}

header .contenedor{
    display: table;
    max-width: 1000px;
}

header img{
    padding: 8px;
}

header #image{
    width: 50%;
    max-width: 500px;
    text-align: left;
    float: left;
    padding-top: 3px;
}

header h1{
    color: #000;
    font-size: 20px;
    text-align: right;
    width: 50%;
    max-width: 500px;
    float: left;
    padding-top: 20px;
}

header h3{
    position: absolute;
    left: 0px;
    top: 70px;
    width: 100%;
    color: #fff;
    padding: 5px;
    background: #000;
    font-size: 13px;
    text-align: center;
}

header .lagout{
    text-decoration: none;
    color: white;
    background: #207107;
    padding: 2px 4px 2px 7px;
    border-radius: 5px;
}

header .lagout:hover{
    background: rgba(0,0,0,0.5);
}

footer{ 
    background: #000;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 8px;
    position:fixed;
    bottom: 0px;
    width: 100%;
}

section {
    width: 98%;
    margin-bottom: 10px;
}

/* Estilos con div horizontal para mostrar detalles */

.row{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.block{
    float: left;
    text-align:center;
    border: 1px solid #eee;
}

.tt{
    background-color: #ccc;
    height: 35px;
    vertical-align: middle;
    text-align: center;
    margin: auto;
    padding: 2px 7px 2px 7px;
}

.ctddo{
    padding: 2px 7px 2px 7px;
}




@media screen and (max-width: 480px){
    header img{
        width: 90%;
    }
    
    header h1{
        font-size: 15px;
    }
    
    .block{
        float: none;
    }
    
    header{
        display: none;
    }
}