/* selectores de elemento HTML */
H1{
	font-family: Times New Roman; 
	font-size: 35pt; 
	color: blue; 
	text-align: center;
	font-weight: bold;
	background-color: black;
}

H2{
	font-family: Comic Sans MS; 
	font-size: 14pt; 
	color: green;
	text-align: center;
	font-weight: normal;
	text-decoration: underline;
}

P{
	font-family: Times New Roman; 
	font-size: 12pt; 
	color: black;
	text-indent: 4em;
	text-align: justify;
	font-weight: normal;

}

/* clases como selectores  */

.fecha{
	font-family: Arial; 
	font-size: 10pt; 
	color: black;
	text-align: left;
	font-weight: normal;
}

.autor{
	font-family: Arial; 
	font-size: 10pt; 
	color: black;
	text-indent: 2em;
	text-align: left;
	font-style: italic;
}

.imagen{	
	/* propiedades de clasificación */
	display: block;

	/* propiedades de color y fondo*/
	background-color:  transparent;
	background-image: url(http://www.uv.es/hipertxtteol/img/imgcabecera1.jpg);
	background-repeat: no-repeat;
	background-position: right;
	height: 70px;

	/* propiedades de la caja*/
	border-top-width: thin; 
	border-top-style: solid; 
	border-top-color: orange; 
	border-right-width: thick; 
	border-right-style: double; 
	border-right-color: orange; 
}
.imgvalidador{
	border: 0px;
}


