/* ********************************************************************************************/
/*                             >>> DOCUMENTO DE ESTILO INPUTS <<<                             */
/* ********************************************************************************************/
/*-Data da Criação: 29/10/2015                                                                */
/*-Responsável: André Monteiro                                                                */
/*-Observação: Definição dos estilo dos inputs: 									   		  */   
/*============================================================================================*/
input{
	float:left; 
	margin-right:20px; 
	height:33px; 
	border:1px solid #dbd9d5; 
	padding:0px 10px 0px 10px !important;
	}
input[type="text"] {
	width:100%; 
	background-color:#FFF; 
	border:#dbd9d5 solid 1px; 
	border-radius:5px; 
	height:35px; 
	line-height:35px;
	outline:none;
	
	}
input[type="password"] {
	width:100%; 
	background-color:#FFF; 
	border:#dbd9d5 solid 1px; 
	border-radius:10px; 
	height:35px; 
	line-height:35px; 
	text-indent:10px; 
	outline:none;
	}
	
	input[type="number"] {
	width:100%; 
	background-color:#FFF; 
	border:#dbd9d5 solid 1px; 
	border-radius:5px; 
	height:35px; 
	line-height:35px;
	outline:none;
	padding: 0px;
	text-align: center;
	}
	
	input[type="checkbox"] {
	border-radius:5px; 
	height:13px; 
	line-height:35px;	
	outline:none !important;
	padding: 0px;
	text-align: center;
	cursor: pointer;
	}
	
	
	input[type="date"] {
	width: 140px;
    padding: 6px 0px 5px 5px;
    margin: 0;
    outline: none;
	border-radius:5px;
	height: 35px;
	}
	
	
.divInputRadio{
	width: 100%;
	padding-top: 8px;
    text-align: center;
}	

.divInputRadio span{
	
	font-weight: bold;
}
input[type="radio"] {
	width:15px;  
	height:auto; 
	text-indent:10px; 
	outline:none; 
	}
	
	.divContornoRadio{
		
		border: 1px solid #cccccc;
		border-radius: 10px;
		height: 40px;
		margin-top: 17px;
		
	}
	
	
	/*Utilizado nas validações dos campos*/
	errorValidation {
    border:#ed948c solid 1px; background-color: #fff0f0; 
    background-image: url(../images/ico-form-error.png); 
    background-repeat: no-repeat; 
    background-position: right center;}
	
/*-------------------------------------------------------------------------------------------*/