/* Remove todas bordas das imagens */
img {
	border: 0;
}
a, a:visited, a:active {
	color: #1925C3;
	text-decoration: none;
	font-weight: bold;	
}
a:hover {
	color: #1925C3;
	text-decoration: underline;
}

/* TABELAS */

.table{
}

/* Cabeçalho da tabela */
thead tr{
	background: #CCCCCC;
	font-weight: bold;	
}

/* Corpo da tabela - Zebra nas linhas*/
.zebra_0{
	/*background: #DDDDDD;*/
	background: #E3E3E3;
}
.zebra_1{
	/*background: #EEEEEE;*/
	background: #F1F1F1;
}

/* Legenda da tabela */
div.legenda{
	/* alinha verticalmente para ficar em baixo*/
	background: #F1F1F1;
}
div.legenda h1{
	font-size: 12px;
}


/* DIV de LOADING */
.load{
	font-size: 18px;
	text-align: center;
	font-weight: bold;
}


/* Classe que esconde o elemento */
.hide{
	display: none;
}
/* Classe que exibe o elemento */
.show{
	display: block;
}

.submenu{
	margin: 10px 0px 10px 0px;
}

/* Caixas de Comunicação */

	/* Erro - Vermelho*/
	.boxErro{
		font-size: 12px;
		color: #000;
		font-weight: bold;			
		text-transform: uppercase;

		_height: 32px;
		min-height: 32px;

		background: url(../imgSys/ico_erro.gif) no-repeat 10px 5px #FFE8E8;
		border-top: 1px solid #FF0000;
		border-bottom: 1px solid #FF0000;
		
		padding: 5px 0px 5px 52px;
		margin: 10px 0px 10px 0px;
	}
	
	/* OK - Verde */
	.boxOk{
		font-size: 12px;
		color: #000;
		font-weight: bold;			
		text-transform: uppercase;
		
		_height: 32px;
		min-height: 32px;

		background: url(../imgSys/ico_ok.gif) no-repeat 10px 5px #D1F6D1;
		border-top: 1px solid #006600;
		border-bottom: 1px solid #006600;
		
		padding: 5px 0px 5px 52px;
		margin: 10px 0px 10px 0px;
	}
	
	/* Alerta - Amarelo */
	.boxAlert{
		font-size: 12px;
		color: #000;
		font-weight: bold;			
		text-transform: uppercase;

		_height: 32px;
		min-height: 32px;

		background: url(../imgSys/ico_alert.gif) no-repeat 10px 5px #FFFFE8;
		border-top: 1px solid #FFEC00;
		border-bottom: 1px solid #FFEC00;
		
		padding: 5px 0px 5px 52px;
		margin: 10px 0px 10px 0px;
	}
	
	/* Info - Azul */
	.boxInfo{
		font-size: 12px;
		color: #000;
		font-weight: bold;			
		text-transform: uppercase;

		_height: 32px;
		min-height: 32px;

		background: url(../imgSys/ico_info.gif) no-repeat 10px 5px #E8E8FF;
		border-top: 1px solid #0000C7;
		border-bottom: 1px solid #0000C7;
		
		padding: 5px 0px 5px 52px;
		margin: 10px 0px 10px 0px;
	}
	
	/* Texto explicativo */
	.boxErro .texto, 
	.boxOk .texto, 
	.boxAlert .texto, 
	.boxInfo .texto {
		font-size: 11px;
		font-weight: normal;
		text-transform: none;
	}	