/**
 * CSS para os elementos de texto.
 *
 * @author bruno
 */
body
{
	/* Font & Text */
	font-family: Tahoma, Arial, sans-serif;
	font-size: 1em;
	
	/* Color & Background */
	color: #666;
}

p
{
	/* Box */
	margin: 10px 0;

	/* Font & Text */
	text-align: justify;
	font-size: 0.75em;
	line-height: 1.5em;
}

h1
{
	/* Box */
	margin: 20px 0 10px 0;

	/* Font & Text */
	font-size: 1.2em;
	
	/* Color & Background */
	color: #333;
}

h2
{
	/* Box */
	margin: 20px 0 10px 0;

	/* Font & Text */
	font-size: 1em;
	
	/* Color & Background */
	color: #333;
}

address
{
	/* Box */
	margin: 0;
	padding-top: 10px;
	
	/* Font & Text */
	font-style: normal;
	font-size: 0.7em;
	line-height: 2em;
	
	/* Color & Background */
	color: #FFF;
}

.large
{
	font-size: 1.4em;
}

