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


/* SOLO TEXTOS */

h1, h2  {
	font-family: Helvetica, "Trebuchet MS", Arial, serif;
	margin-bottom: 2em;
	margin-top: 2em;
	color: darkslateblue;
	font-size: 1.4em;
	display: block;
}

h3, h4 {
	font-family: Lucida Grande,"Trebuchet MS", Arial, serif;
	font-style:normal;
	display: block;
	margin-top: 2.5em;
	margin-bottom: 2em;
	color: darkslateblue;
}

h4 {
	margin-bottom: 1em;
	margin-top: 1em;
	text-align: center;
}



.placauno {
	display: block;
	position: relative;
	width: 100%;
	background-color: orange;
	border: 2px solid blue;
	overflow: hidden;
	height: auto;
}
.placauno img {
	width: 50%;
	display: block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

.textos {
	position: relative; /*antes relative*/
	padding: 20px;
	background-color: azure; /*whitesmoke*/
	overflow: visible;
	/*border-left: 1px solid gray;
	border-right: 1px solid gray;*/
	box-shadow: 0px 2px 7px gray;
	top: 0px;	/*overflow: hidden;*/
	width: 65%;
	margin: auto;
}
.versalita {
	font-variant-caps: small-caps;
}

.textos > p, .prefacio > p {
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	word-wrap: normal;
	text-indent: auto; /*antes de octubre era 0 em*/
	text-align: left;
	line-height: 1.7;
	font-family:  "Roboto Slab", Lucida Grande,  Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "sans-serif";
	clear: left;
	margin-bottom: .5em;
	color: teal;
}
.referencia {
	border-bottom: 1px solid lightsteelblue;
	margin-left: 2em;
	text-indent: -2em;
}
.prefacio {
	position: relative;
	display: block;
	background-color: transparent;
	height: 70px;
	overflow: hidden;
	transition: all 1s;
}
.prefacioOver {
	position: absolute;
	background-image: linear-gradient(rgba(240,255,255,0), rgba(240,255,255,1));
	display: block;
	width: 100%;
	height: 100%;
	/*border: 5px solid black;*/
}

.botonTexto {display: block; margin: auto; clear: both; width: 100px; height: 35px; padding-top: 5px; font-size: 2em;  margin-bottom: 2em; background-color: mediumseagreen; border-style:inset;}
.botonTexto p { color: white; transform: rotate(90deg);}

.abajo {
	transform: rotate(90deg);
}

.prefacioDegra {
	position: relative;
	top: 0;
	display: block;
	background-color: black;
	height: 40px;
	width: 100%;
	clear: both;
}

.textos ul {
	list-style-type: square;
	list-style-position: outside;
	margin-left: 1em;
	font-family:  "Roboto Slab", Lucida Grande,  Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "sans-serif";
	color: teal;
	margin-bottom: 1em;
}
.textos ul li {
	margin-bottom: .5em;
}

.textos ul li ul {
	list-style-type: none;
	margin: .5em 0 1em 0em;
	border-left: solid 1px seagreen;
	padding: .5em;
	font-size: .9em;
}
.fontgrande {
	font-size: 1.1em;
}
.fontgrandeenchico {
	font-size: 1em;
}

.textos ol {
	font-family:  Lucida Grande, "Roboto Slab",  Arial, "Gill Sans", "Gill Sans MT", "Myriad Pro", "sans-serif";
	line-height: 1.7em;
	margin-bottom: .5em;
	margin-left: 0em;
	list-style-position: outside;/* antes inside*/
}
.textos ol.olPARR {
	list-style-position: outside;
	margin-left: 0em;
	margin-top: 1em;
	color: dimgray;
	border-left: 2px solid cornflowerblue;
	padding-left: 2em;
}
.textos ol.olPARR li {
	margin-bottom: 1em;
}
.textos ol.olPARR li ul {
	line-height: 1.2em;
	margin-top: 1em;
	margin-left: 1em;
	list-style-type: none;
}

.textos ol.olPARR li ul li {margin-bottom: .5em;}

strong {
	color: darkslateblue;
}
li strong {
	color: navy;
	font-weight: bold;
}
td strong {
	font-weight: normal;
}

.textos u {
	color: seagreen;
}
.textos p.primero {
	text-indent: 0em;
}
.textos p.parrlista {
	margin-left: 1.5em;
	text-indent: 0em;
	margin-bottom: 1.5em;
}

.notas {
	position: relative;
	width: 100%;
	margin-top: 3em;
	font-size: .8em;
	
	hyphens: none;
	-webkit-hyphens: none;
	-ms-hyphens: none;
}
.notas ol {
	border-top: 1px solid gray;
	list-style-type: decimal;
	list-style-position: outside;
}
.notas ol li {
	margin-bottom: .5em;
}
.notas ol li:target {
	background-color: greenyellow;
}

.txt-centrado { text-align: center;}

/*FIN texto*/

.raya-separado {
	position: relative;
	display: block;
	width: 100%;
	height: 1px;
	background-color: darkslateblue;
	margin-top: 5em;
}

.h1envolvente {
	display: block;
	border-top: 1px solid transparent;
	height: auto;
	overflow: visible;
	margin-bottom: 2em;
	padding: 50px 0 0 0px;
	
	clear: both; /*debido a que el elemento predecesor es un fichero floar right*/
}
.h1sinpadding {
	padding-top: 0px;
	margin-bottom: 0em;
}


@media (max-width: 550px) {
	div.textos {
		width: auto;
	}
}

