@CHARSET "ISO-8859-1";

.controle{
	display: block;
	margin: 20px auto;	
	min-height: 36px;
	float: left;
}

.controle-centro{
	display: block;
	margin: 20px auto;	
	min-height: 36px;
}

.controle-trim{
	display: block;
	margin: 5px;	
	min-height: 36px;
	float: left;
}

label{
	font-family: "Trebuchet MS";
	font-size: 14px;
    color: #333;	
	text-align: right;
	width: 100px;
	height: 26px;
	display: block;
	float: left;
	padding: 10px 4px 0 0;
}

.texto, .senha, .combo, .area-texto{
	font-family: "Trebuchet MS";
	font-size: 14px;
    color: #333;
    height: 36px;
    padding: 0 5px;
    border-radius: 3px;
    border: 1px solid #999;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2) inset, 0 -1px 0 rgba(0,0,0,0.05) inset;
    background: linear-gradient(to bottom, #f7f7f8 0%,#ffffff 100%);
    transition: all 0.2s linear;
    display: block;
    float: left;
}

.texto:focus, .senha:focus, .combo:focus, .check:focus, .area-texto:focus{
	border: 1px solid #999;
	box-shadow: 0 1px 0 #2392F3 inset, 0 -1px 0 #2392F3 inset, 1px 0 0 #2392F3 inset, -1px 0 0 #2392F3 inset, 0 0 4px rgba(35,146,243,0.5);
    outline: none;
}

.check{
	padding: 0 5px;
	transition: all 0.2s linear;
    display: block;
    float: left;
    margin-top: 15px;
    width: 100px;
    text-align: right;
}

.area-texto{
	width: 850px;
	height: 150px;	
	padding: 3px;
	font-family: "Trebuchet MS";
	font-size: 14px;
	color: #333;
}

.erro{
	color: #f00;
	font-weight: bold;
}

/*** BOTÃO ***/

.botao{
	font-family: "Trebuchet MS";
	font-size: 16px;
	color: #fff;
	background: #1568db;
	border-radius: 8px;
	padding: 9px 50px;
	cursor: pointer;
	margin: 0 auto;
	display: inline-block;
}

.botao:hover{
	text-decoration: none;
	color: #fff;
}

.botao:active, botao-voltar:active, botao-novo:active, botao-cancelar:active{
	position: relative;
	top: 2px;	
}

.botao-voltar{
	border-radius: 25px;
	padding: 10px 10px;
	float: left;
	margin-left: 15px;
	margin-top: 10px;
	color: #fff;
}

.botao-novo{
	width: 90px;
	padding: 9px 0;
	background-color: #197D19;
	text-align: center;
}

.botao-cancelar{
	width: 90px;
	padding: 9px 0;
	background-color: #f00;
	text-align: center;
}

/*** TAMANHOS ***/

.t40{
	width: 40px;
}

.t80{
	width: 80px;
}

.t100{
	width: 100px;
}

.t110{
	width: 110px;
}

.t150{
	width: 150px;
}

.t196{
	width: 196px;
}

.t200{
	width: 200px;
}

.t300{
	width: 300px;
}

.t524{
	width: 524px;
}

.t528{
	width: 528px;
}

/*** MARGEM ***/

.mt10{
	margin-top: 10px;
}

.m5{
	margin: 4px;
}

/*** ALINHAMENTO ***/

.aDireita{
	text-align: right;
}

.aEsquerda{
	text-align: left;
}

/*** ORIENTAÇÃO ***/

.direita{
	float: right;
}

.esquerda{
	float: left;
}