/* FORMULARIOS */
/* ----------------------------------------- */
label{
	display: inline-block;
	font-weight: bold;
	padding-bottom: 5px;
}
label + input, label + textarea, label + select{
	display: block;
}
label + input[type="radio"], label + input[type="checkbox"]{
	display: inline-block;
}

label.error{clear:both !important; display: block !important; height: 0px !important; overflow:hidden !important;}
input, textarea, select, button, option {font-size: 100%; font-family: Arial, Helvetica, sans-serif;}
input.error, textarea.error, select.error{border: 1px solid #fcc7c7; background: #ffebeb url(../images/bg-input.png) repeat-x top;}

input, textarea{
	border: 1px solid;
	border-color: #bbb #ddd #ddd #bbb;
	background: #FFF url(../images/bg-input.png) repeat-x top;
	padding: 8px;
	width: 280px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	-khtml-border-radius: 1px;
	border-radius: 1px;
}
input[type="radio"], input[type="checkbox"]{
	background: none;
	border: none;
	padding: 0;
	width: auto;
}
input.submit, input[type="submit"]{
	background: #026135;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	height: 30px;
	overflow: visible;
	padding: 6px 10px;
	width: auto;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-khtml-border-radius: 2px;
	border-radius: 2px;
}

input.submit:hover, input[type="submit"]:hover{background: #19a966;}

select{
	background: #FFF url(../images/bg-input.png) repeat-x top;
	border: 1px solid;
	border-color: #bbb #ddd #ddd #bbb;
	line-height: 1em;
	padding: 7px 8px;
	width: 298px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	-khtml-border-radius: 1px;
	border-radius: 1px;
}
option{
	padding: 2px 8px 0;
}

button {
	overflow: visible;
	padding: 0 5px;
}

/*FOCUS*/
.focus,
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus{
	background-color: #fcfcfc;
	outline:none;
	border-color: #aaa;
}