@charset "UTF-8";

h1 {
	color: black;
	background: #EBF5FC;
	font-style: bold;
}


h3 {
	color: black;
	background: #5BBAD5;
	font-style: bold;
	
	/* background: #D4ECFB; */
}

img{
	border: 0.1px solid blue;
}


<p>{
	color: green;
	font-style: italic;	
}


address {
		color: blue;
		font-style: bold;
	}	
	
	
	

/*    Print Style Sheet  */
@media print {
	img {
		/*   display: none;     Este comando retira as imagens da impressão*/
	}
	
	p {
		color: black;
	}	
	
	address {
		color: blue;
		font-style: bold;
	}	
		
}