* {
	margin: 0;
	padding: 0;

	background-repeat: no-repeat; /* Os <select> no Opera ficam sempre cinzas */

	font-family: verdana, sans-serif;
}

html {
	height: 100%;

	background-color: #fff;
}

body {
	position: relative; /* Para evitar problemas no redimensionamento das janelas do IE */

	background-image: url(../../imagens/estrutura/html_fundo.gif);
	background-repeat: repeat;

	font-size: 0.7em;
}

* html body {
	/* Para colocar fundo sombreado no IE6 */
	/*
	background-image: none;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='scale', src='imagens/estrutura/___fundo.png');
	*/
}

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' */

	color: #0000dd;

	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #0000ff;
}

li {
	list-style-type: none;
}

label {
	cursor: pointer;
}

input,
select,
textarea {
	padding: 2px;

	font-size: 100%;
}

input[type="checkbox"] {
	padding: 0;
}

input,
select {
	border: 1px solid #cecece;
}

textarea {
	border: 1px solid #999; 
}

input:hover,
input:focus,
input:active,
select:hover,
select:focus,
select:active,
textarea:hover,
textarea:focus,
textarea:active {
	background-color: #ffc;
}

input#btnEnviar {
	color: #fff;
	background-color: #9b0000;

	padding: 2px 4px;
}

input#btnEnviar:hover,
input#btnEnviar:focus,
input#btnEnviar:active {
	background-color: #bd2222;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	text-indent: -9999px;
}

dt {
	font-weight: bold;
}

.container {
	overflow: auto;
	overflow: visible !ie;

	height: 1% !ie;
}

.containerB {
	height: 1% !ie;
}

.containerB:after {
    content: ".";

    clear: both;
    display: block;
    visibility: hidden;

    height: 0;
}

.clear {
	clear: both;
}

.centro {
	margin-left: auto;
	margin-right: auto;

	text-align: center;
}

.direita {
	text-align: right;
}

p.canto_direita {
	position: absolute;
}

.impar {
	background-color: #efefef;
}

.par {
	background-color: #f7f7f7;
}

