@charset "utf-8";
/* CSS Document */

form {
	border: 0px;
	padding: 0px;
	margin: 0px;
}
label {
	font-weight: bold;
	color: #666;
	padding-right: 3px;
}

.labelTextoForms
{
	font-size: 18px;
	font-weight: bolder;
	color: #333;
	background-color: #EBEBEB;
	padding-right: 5px;
	padding-left: 5px;
}

input[type=text] {
	background-color: #FFF;
	height: 30px;
	border: 2px solid #666;
	font-size: 14px;
	font-weight: bold;
	color: #333;	
}

input[type=password] {
	background-color: #FFF;
	height: 30px;
	border: 2px solid #666;
	font-size: 14px;
	font-weight: bold;
	color: #333;	
}


.select {
	background-color: #FFF;
	height: 30px;
	border: 2px solid #666;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}
.inputError {
	background-color: #F88;
	height: 30px;
	border: 2px solid #F30;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
}
.buttonEnviar
{
	background-color: #FFF;
	height: 45px;
	border: 2px solid #333;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}
.selectPagLink {
	border: 1px solid #333333;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	color: #333333;
	text-decoration: none;
	font-size: 10px;
	font-weight: normal;
}

input[type=file] {
  color: transparent;
}
input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
}
input[type=file]::before {
	content: 'Selecionar Arquivo';
	color: black;
	display: inline-block;
	background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
	border: 1px solid #999;
	border-radius: 3px;
	padding: 5px 8px;
	outline: none;
	white-space: nowrap;
	-webkit-user-select: none;
	cursor: pointer;
	text-shadow: 1px 1px #fff;
	font-size: 10pt;
}
input[type=file]:hover::before {
  border-color: black;
}
input[type=file]:active {
  outline: 0;
}
input[type=file]:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9); 
}