@charset "iso-8859-1";

/*******************************************************************************
*  visual_consistencies.css : 2005.09.07 : Ruthsarian Layouts
* -----------------------------------------------------------------------------
*  Font sizes on heading elements and the margin/padding applied to these
*  same elements will vary from browser to browser. This is an attempt to pull
*  the font sizes and spacing together for a consistent look across all
*  browsers. 
*
*  There are other rules included in this stylesheet (with comments on each)
*  to handle other visual consistency issues. You do not need to use this
*  stylesheet, nor do you need to follow it exactly. You can make changes
*  anywhere you want to make things look the way you want to. Nothing here
*  _should_ break a layout if modified.
*******************************************************************************/

ul, ol, dl
{
	/* pixels are used here, rather than ems, because I want a consistent 
	 * margin on the different headings. if I use ems, 1em for an h1 element 
	 * is much larger than 1em on an h6 element. I don't want this.
	 */
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
ul ul, ul ol, ol ul, ol ol
{
	/* kill margins on sub-lists
	 */
	margin-top: 0;
	margin-bottom: 0;
}

h1 {font-size: medium;
	margin: 0px 0px 0px 0px;
	color: #435C22;
}
h2 {font-size: small;
	margin: 0px 0px 10px 0px;
	color: #95945b;
}
h3 {font-size: x-small;
	margin: 5px 0px 5px 0px;
}
p {	margin: 5px 0px 5px 0px;}

a:link{
	color:#666666;
	text-decoration: underline;}
a:visited{
	color:#666666;
	text-decoration: underline;}
a:hover{
	text-decoration: none;
	color:#333333;
	background-color:#CCCCCC;}
links_imagens a:link{
	color:#FFFFFF;
	text-decoration: none;}
links_imagens a:visited{
	color:#FFFFFF;
	text-decoration: none;}
links_imagens a:hover{
	color:#FFFFFF;
	text-decoration: none;}

/******************************************************************************/
