@charset "utf-8";
/* --------------------
	FORMS
----------------------- */
form input, form textarea, form select {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;	
}
form {
	position: relative;
}
form fieldset {
	margin: 0;
}
form legend {
	display: none;
}
form p {
	margin-bottom: 15px;
}
form label {
	position: relative;
	display: block;
	width: 100%;
	color: #888;
}
form label small {
	position: absolute;
	top: 4px;
	right: 0;
	color: #AAA;
	font: normal 10px/14px Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
form input,
form textarea {
	width: 100%;
	padding: 5px 10px;
	font: normal 12px/18px "OpenSansRegular", Arial, Helvetica, sans-serif;
	color: #222;
	border: 1px solid #DDD;
	background: #EFEFEF;
	outline: none;
	vertical-align: baseline;
	*vertical-align: middle;
	/**/
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
form textarea {
	height: 225px;
	min-height: 225px;
	max-height: 425px;
	resize: vertical;
	overflow: auto;
	vertical-align: top;
	line-height: 18px;
}
form input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button;
	*overflow: visible;
}
form input:hover,
form textarea:hover {
	border-color: #AAA;
}
form input:focus,
form textarea:focus {
	border-color: #155788;
	background: #FFF;
}

/* --------------------
	FORM > BOTONES
----------------------- */
.btn__submit {
	cursor: pointer;
	padding: 6px 10px;
	max-width: 120px;
	outline: none;
	border: none;
	background: #155788;
	color: #FFF;
	/**/
	font: normal 16px/20px "OpenSansSemibold", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	/**/
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.btn__submit:hover {
	color: #FFF;
	background: #333;
	border-color: #333;
	/**/
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
.btn__submit:active,
.btn__submit:focus {
	background: #111;
	border-color: #111;
}

/* --------------------
	FORM > MENSAJES
----------------------- */
.form__message {
	padding: 20px;
	background: #FFC;
}
.form__message h3 {
	margin-bottom: 12px;
}
.form__message a {
	border-bottom: 1px dotted;
}
