@charset "UTF-8";
/* CSS Document */

/*--------------ESTILOS GENERALES -------------------*/


body {
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 10px;
	float:center;
}

abbr,acronym {
	/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
} 
em {
	/*bringing italics back to the em element*/
	font-style:italic;
}
blockquote,ul,ol,dl {
	/*giving blockquotes and lists room to breath*/
	margin:1em;
}
ol,ul,dl {
	/*bringing lists on to the page with breathing room */
	margin-left:2em;
}
ol li {
	/*giving OL's LIs generated numbers*/
	list-style: decimal outside;	
}
ul li {
	/*giving UL's LIs generated disc markers*/
	list-style: disc outside;
}
dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:1em;
}
th,td {
	/*borders and padding to make the table readable*/
	padding:0.77em;
}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated marking to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
fieldset,table {
	/*so things don't run into each other*/
	margin-bottom:1em;
}
 
p {
	margin-top: 0px;
	padding-top: 0px;
	text-align: justify;
	line-height: 1.5em;
}
ul {
	line-height: 1.5em;
	padding: 1em 2em 1em 0em;
	list-style: disc;
}
ol {
	line-height: 1.4em;
	padding: 1em 2em 1em 0em;
}
/* ENCABEZADOS */

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	margin: 0px 0px 0.3em;
	padding-bottom: 0.3em;
	padding-top: 0.35em;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
}
h1 {
	font-size: 3.5em;
}
h2 {
	font-size: 2.6em;
	font-weight: 400;
	color: #B2B3C7;
	border-bottom: 1px dotted #CCCCCC;
	font-style: normal;
	padding: 0px;
	margin: 0px 0px 0.2em;
}
h3 {
	font-size: 1.5em;
	color: #F6957E;
	padding: 0px 0px 8px;
	margin: 0px;
	text-align: left;
}
h4 {
	font-size: 2em;
}
h5 {
	font-family: 'Playfair Display', serif;
	font-size: 1.6em;
	margin: 0px;
	padding: 0px 0px 5px;
	border-bottom: 1px dotted #CCCCCC;
}

/* --------------- LINKS --------------- */
a { text-decoration: none; 	
}
a:hover, a:active, a:focus {
	text-decoration: underline;
}
blockquote {
	background: #D3D3D3;
	padding: 1.5em;
	margin: 2em;
}



/*--------------ALINEACION Y FLOAT -------------------*/
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}
.boldItalic {
	font-style: italic;
	font-weight: bold;
}
.underLine {
	text-decoration: underline;
}
.alignLeft {
	text-align: left;
}
.alignRight {
	text-align: right;
}
.alignCenter {
	text-align: center;
}
.clearFloat {
	font-size: 1px;
	line-height: 0px;
	margin: 0px;
	padding: 0px;
	clear: both;
	height: 0px;
}
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
.imgFloatRight {
	float: right;
	margin-bottom: 1em;
	margin-left: 1.5em;
}
.imgFloatLeft {
	float: left;
	margin-bottom: 1em;
	margin-right: 1.5em;
}
