/* 
    Document   : styles
    Created on : 10-sep-2013, 10:00:00
    Author     : Procgal S.L.
    Description:
        CSS 
*/

/** RESPONSIVE DESIGN DIVS CONTENEDORES Y CONTENIDO **/

/* full resolution */
@media (min-width: 1920px) {
    
}

/* medida siguiente al full */
@media (max-width:1919px) and (min-width: 1200px) {
    #contenedor_header {
        background-size:100% 100%;
        height:400px;
    }
    #contenedor_eslogan {
        background-size:100% 100%;
        height:111px;
    }
    #contenedor_mapa {
        background-size:100% 100%;
        height:272px;
        background-color:white;
    }
    
}
@media (max-width:1199px) and (min-width: 1024px) {
    #contenedor_header {
        background-size:100% 100%;
        height:350px;
    }
    #contenedor_eslogan {
        background-size:100% 100%;
        height:195px;
    }
    #contenedor_mapa {
        background-size:100% 100%;
        height:232px;
        background-color:white;
    }
    
}
@media (max-width: 1023px) {
    #contenedor_header {
        background-size:100% 100%;
        height:300px;
    }
    #contenedor_eslogan {
        background-size:100% 100%;
        height:100px;
    }
}



