/* CSS */

body {
   background-image: url('../img/fondo_inicio_1280.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center 80px;
	background-attachment: fixed;
	//min-height: 100%;
}

/**====================================================**/
/** INICIO **/

#cuadro_foto_inicio {
   position: relative;
   margin: 0;
   border-top: 1px solid #DBDBDB;
   //height: 800px;
   height: 100%;
   bottom: 0;
	//background-color: #fff;
}

#subtitulo_principal {
   position: absolute;
   font-family: 'BariolRegular','Myriad Pro Condensed';
   font-size: 0.6em;
   color: #808080;
   margin-left: 1px;
   margin-top: 0px;
   text-transform: uppercase;
   letter-spacing: 4.5px;
}

/**=================**/
/** MAX WIDTH 980px **/
@media (max-width: 980px) {
	
	body {
		background-image: url('../img/fondo_inicio_980.jpg');
		//height: 650px;
	}
	
}
/**=================**/
/** MAX WIDTH 550px **/
@media (max-width: 550px) {

	body {
		background-image: url('../img/fondo_inicio_550.jpg');
		background-position: center 150px;
	}
	
}

/** END **/