@charset "utf-8";
/* CSS Document */
/*@font-face {
	font-family: 'Gabriola';
	src: url("../fuentes/Gabriola.eot");
	src: local('☺'), url('../fuentes/Gabriola.ttf') format('truetype');
	font-weight: normal; 
}*/

@font-face {
	font-family: 'Gabriola';
	src: url('../fuentes/Gabriola.eot');
	src: url('../fuentes/Gabriola.eot?#iefix') format('embedded-opentype'), 
		 url('../fuentes/Gabriola.woff') format('woff'), 
		 url('../fuentes/Gabriola.ttf') format('truetype'), 
		 url('../fuentes/Gabriola.svg#CrimsonRoman') format('svg'); 
	font-weight: normal;
	font-style: normal; 
} 

/* QUITAMOS MARGENES DEL NAVEGADOR */
*{
	padding:0;
	margin:0;
	outline:none;
	font-family:Arial, Helvetica, sans-serif;
}
/* OCULTAMOS LOS ENCABEZADOS DE LA PAGINA */ 
h1, h2{
	display:none;
}
/* QUITAMOS EL BORDE QUE METEN POR DEFECTO A LAS IMAGENES */
img{
	border:none;
	border:0;
}
/* ELIMINAMOS EL SUBRAYADO DE LOS ENLACES */
a{
	text-decoration:none;
}
/* CLASES PARA COMBINAR Y DAR ESTILOS A TEXTOS Y MÁS */
/* 07em tamaño para el texto*/
.em07{
	font-size:0.7em;
}
/* 08em tamaño para el texto*/
.em08{
	font-size:0.8em;
}
/* 09em tamaño para el texto*/
.em09{
	font-size:0.9em;
}
/* 1em tamaño para el texto*/
.em1{
	font-size:1em;
}
.em16{
font-size:1.6em;
}
/* hacer un elemento inline a bloque*/
.bloque{
	display:block;
}
/* flotar elemento a izquierda */
.flotadoIzquierda{
	float:left;
	padding:4px;
}
/* flotar elemento a derecha*/
.flotadoDerecha{
	float:right;
}
/* no flotar elemento */
.noFlotar{
	float:none;
	clear:both;	
}
/* alineacion para textos */
.izquierda{
	text-align:left;
}
.derecha{
	text-align:right;	
}
.justificado{
	text-align:justify;
}
.centrado{
	text-align:center;
}
.clearfix{
clear:both;
}
.colorPrincipal{
color:#996666;
}
.gabriola{
font-family: 'Gabriola';
}