﻿@charset "utf-8";
/* ----------
	Padronizacao de CSSs para Navegadores
---------- */
* {margin:0px; padding:0px;}
html {min-height:100%;}
body {width:100%; height:100%; position:absolute; top:0px; left:0px; z-index:1; text-align:center;}

a		{text-decoration:none;}
a:hover	{text-decoration:underline;}

br {display:inline;}
hr	{position:absolute;}
img	{float:left; border:none;}
table {border-collapse:collapse;}
ul, li {list-style:none;}

form.formPrincipal {height:100%;}
fieldset {border:none;}
/* ----------
	EM UMA TEXTAREA: Use "scroll:none;" para apresentar rolagem 
	apenas quando sua area basica estiver cheia.
---------- */
input, select {float:left;}
textarea {float:left; overflow:auto; width:150px; height:60px;}

/* ----------
	O ID #scroll cria uma rolagem vertical fazendo aparecer a barra 
	de rolagem em navegadores que não a apresenta normalmente.
---------- */
#scroll {position:absolute; top:0px; left:1px; bottom:-1px; width:1px; z-index:1;}

/* Safari Ajustes */
input:focus, textarea:focus, select:focus  {outline:none;}




/* ----------
	Classes Básicas para Construção de Estruturas Secundárias
---------- */
.flL {float:left;}
.flR {float:right;}

.boxL {float:left; width:100%;}
.boxR {float:right; width:100%;}

.boxContainer {}
.boxAtCenter {margin:0px auto;}

.bgrLeft {}
.bgrRight {}
.bgrCenter {}







/* ----------
	Definições Básicas e Exemplos
---------- /
			Atribuição de z-index 
	11	->	Modal ou Elementos Acima do Shadow
	10	->	Shadow
	3-9	->	Outros elementos visuais
	2	->	boxPrincipal
	1	->	BackGrounds do Site
*/