/* CSS Document */


body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-image: url(images/bg.gif);
}

body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.style1 {
	color: #000099;
	font-weight: bold;
}
a:link {
	text-decoration: none;
	color: #FF6F36;
}
a:visited {
	text-decoration: none;
	color: #FF6F36;
}
a:hover {
	text-decoration: none;
	color: #FF6F36;
}
a:active {
	text-decoration: none;
	color: #FF6F36;
}




/*
Alpha PNG support for IE
------------------------------
Aviso, este código abaixo funciona apenas para visualização na tela. Quando este documento for impresso, o bug voltará.
O Hack Abaixo faz o código rodar apenas no IE. Sendo que os outros browsers como, Firefox, Opera e Safari já tem a transparencia de PNG nativo.
\*/
img/**/ {
filter:expression(
this.alphaxLoaded ? "" :
(
   this.src.substr(this.src.length-4)==".png"
   ?
   (
 (!this.complete)
 ? "" :
	 this.runtimeStyle.filter=
	 ("progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+this.src+"')")+
	 (this.onbeforeprint="this.runtimeStyle.filter='';this.src='"+this.src+"'").substr(0,0)+
	 String(this.alphaxLoaded=true).substr(0,0)+
	 (this.src="images/blank.png").substr(0,0)
   )
   :
   this.runtimeStyle.filter=""
)
 );
}