/*
	Formulários
*/
.form-ui label {
	display: block;
	float:left;
	height:25px;
	width:85px;
	padding-right:5px;
	line-height:16px;
	font-size:80%;	
}
.form-ui label span, .form-ui span.obrigatorio {color:#FF0000;font-size:18px;}

.form-ui input[type="text"], .form-ui input[type="password"] {
	width:300px;
	height:18px;
	padding:2px;
	border:1px solid #777;
	font-size:90%;
	margin-bottom:10px;
	font-weight:bold;
	background:#FFF url(../img/bg_campos.gif) no-repeat;
}
.form-ui input[type="text"], .form-ui input[type="password"], .form-ui select, .form-ui textarea {
	/* so em firefox e browsers descentes */

	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	-webkit-border-radius:5px;
}
.form-ui input[type="text"]:hover, .form-ui input[type="password"]:hover, .form-ui select:hover, .form-ui textarea:hover {
	border:1px solid #333;
}
.form-ui input[type="text"]:focus, .form-ui input[type="password"]:focus, .form-ui select:focus, textarea:focus {
	border:1px solid #000;
	background:#FFC;/* so em firefox */

}
.form-ui input[type="file"] {font-size:15px;}

.form-ui textarea{width:300px; height:100px; margin-bottom:10px;border:1px solid #666;background:#fff url(../img/bg_campos.gif) no-repeat;}