/****

Formatando o corpo da página

****/

body {
	color: white;
}
	
/*******

Formatando o texto

*******/

p.titulo {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	font-weight : bold;
	color : Black;
	text-align: left;
}

p.sub-titulo {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	color : Black;
	text-align: left;
	font-style: italic
}

p.autor {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	color : Black;
	text-align: left;
	font-style: italic
}

p.texto {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	color : Black;
	text-align: left;
}

p.atualizacao {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	font-weight : bold;
	color : Black;
	text-align: center;
}

p.rodape {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 9pt;	
	color : Black;
	text-align: center;
}

p.barra_lateral {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	color : rgb(153,0,0);
	text-align: left;
}

div {
	font-family : Verdana, Arial, Helvetica, sans-serif;
	font-size : 10pt;
	color : Black;
	text-align: left;
}


/***

Formatando as tabelas

***/

/*** width="640" border="1" bordercolor="#993333" cellspacing="0" align="center" ***/

table.main{
	border-color : rgb(153, 51, 51);
	width : 640px;
	border : 0px solid rgb(153, 51, 51);	
	text-align: center;
	vertical-align: top;
}

	
td.barra_lateral {
	width: 124px;
	background: url(../../img_res/resenhaseleitor.jpg);
	background-repeat: repeat-y;
	background-color: #ffffff;
	vertical-align: top;
	border-top: 2px solid #990000;
	border-right: 2px solid #990000;
	border-bottom: 2px solid #990000;
	border-left: 2px solid #990000;
}


td.texto {
	border-top: 0px none #990000;
	border-right: 2px solid #990000;
	border-bottom: 2px solid #990000;
	border-left: 2px solid #990000;
}

td.borda_tudo {
	border-top: 2px solid #990000;
	border-right: 2px solid #990000;
	border-bottom: 2px solid #990000;
	border-left: 2px solid #990000;
}


td.banner{
	text-align : center;
	border-top: 2px solid #990000;
	border-right: 2px solid #990000;
	border-bottom: 0px none #990000;
	border-left: 2px solid #990000;
}

/*******

Formatando a links



/** link = link nao visitado 
A:link {
	color : blue; 
	text-decoration: none
}
/** visited = link visitado 
A:visited {
	color : red;
	text-decoration: none
}
/** active = link com foco 
A:active {
	color : black;
	text-decoration: none}
/** hover = mouse over link 
A:hover {
	font-weight:bold;
	color: red;
}
**/