/* 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;
}

input, textarea{
	border: 1px solid #8EAEBB;
    color: #333333;
	background: #DBE6EA url(bg-input.png) repeat-x top;
	padding: 8px;
	width: 400px;
	-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: #ACC8D0;
	border: 1px solid #638EA0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
    height: 30px;
    overflow: visible;
    padding: 6px;
	float: right;
	width: auto;
	text-shadow: 1px 1px 1px #333333;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
}

select{
	background: #ECF2F4 url(bg-input.png) repeat-x top;
	border: 1px solid #C6C4B1;
	line-height: 1em;
	padding: 6px 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: #ECF2F4;
	outline:none;
	border-color: #8EAEBB;
}