* {
	margin: 0;
	padding: 0;

	background-repeat: no-repeat;

	font-family: verdana, sans-serif;
}

html {
	height: 100%;

	background-color: #011b3b;
	background-image: url(../imagens/estrutura/estrutura/fundo.png);
	background-repeat: repeat-x;
}

body {
	position: relative; /* Para evitar problemas no redimensionamento das janelas do IE */

	width: 780px; /* Máx. no IE6 */
	min-height: 100%;

	margin-left: auto;
	margin-right: auto;

	font-size: 0.8em;
}

* html body {
	height: 100%;	
}

img {
	display: block;

	border: none;
}

/* Permite usar imagens PNG transparentes no IE, mas não como fundo em CSS */
/* Ao imprimir, o PNG perde a transparência */

* html img {
	filter:expression(
		this.napalmLoaded
		? "" :
		(
			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.napalmLoaded=true).substr(0,0)+
					(this.src="imagens/estrutura/vazio.png").substr(0,0)
			)
			:
			this.runtimeStyle.filter=""
		)
	);
}

a {
	overflow: hidden; /* Para o Mozilla não colocar uma caixa de seleção enorme por causa do texto escondido com 'text-indent: -9999px' */

	text-decoration: none;
}

li {
	list-style-type: none;
}

h1, h2, h3 {
	font-size: 100%;
	text-indent: -9999px;
}

#conteudo {
	overflow: auto;
}

#flash {
	float: left;

	width: 387px;	
}

p.canto_direita {
	position: absolute;
}

.centro {
	margin-left: auto;
	margin-right: auto;

	text-align: center;
}

.direita {
	text-align: right;
}

.impar {
	background-color: #fff;
}

.par {
	background-color: #f5f5f5;
}