.form_hint, .required_notification {
	font-size: 12px;
	font-weight: 400;
}

/* === List Styles === */
.contact_form ul {
	width: 100%;
	list-style-type: none;
	list-style-position: outside;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.contact_form li {
	position: relative;
	padding: 8px;
}

    .contact_form li:first-child, .contact_form li:last-child {

    }

/* === Form Header === */
.contact_form h2 {
    margin: 0;
    display: inline;
}

.required_notification {
	color: #666666;
	display: inline;
	float: right;
	margin-top: 0px;
	margin-right: 19px;
	margin-bottom: 5px;
	margin-left: 0;
	font-style: normal;
	font-weight: 400;
	padding-top: 4px;
	padding-right: 10px;
	text-decoration: none;
	background-color: #E0E0E0;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	padding-bottom: 4px;
	padding-left: 10px;
}

/* === Form Elements === */
.contact_form label {
	display: inline-block;
	float: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
	letter-spacing: 0px;
	word-spacing: 0em;
	font-family: "Roboto Bold";
}

.contact_form input {
	height: 33px;
	width: 220px;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	color: rgba(0,0,0,1);
	background-color: rgba(47,43,23,1);
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
	font-size: 80%;
	font-weight: 400;
}

.contact_form textarea {
    padding: 8px;
    width: 300px;
}

.contact_form button {
	margin-left: 156px;
}

/* form element visual styles */
.contact_form input, .contact_form textarea {
	border: 1px solid #aaa;
	border-radius: 2px;
	-moz-transition: padding .25s;
	-webkit-transition: padding .25s;
	-o-transition: padding .25s;
	transition: padding .25s;
	padding-left: 20px;
	width: 100%;
	height: auto;
	background-color: rgba(255,255,255,1);
	color: rgba(102,102,102,1);
	font-family: 'Lato', Calibri, Arial, sans-serif;
}
#Apellidos {
	background-color: rgba(255,255,255,1);
}
#Nombre {
	background-color: rgba(255,255,255,1);
}
#E-mail {
	background-color: rgba(255,255,255,1);
}




    .contact_form input:focus, .contact_form textarea:focus {
	border: 1px solid #CC9;
	padding-left: 25px;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	color: rgba(102,102,102,1);
	background-color: rgba(255,255,255,1);
    }

    /* === HTML5 validation styles === */
    .contact_form input:required, .contact_form textarea:required {
        background: #fff url(images/red_asterisk.png) no-repeat 98% center;
    }

        .contact_form input:required:valid, .contact_form textarea:required:valid {
            background: #fff url(images/valid.png) no-repeat 98% center;
            box-shadow: 0 0 5px #3399CC;
            border-color: #3399CC;
        }

    .contact_form input:focus:invalid, .contact_form textarea:focus:invalid {
        background: #fff url(images/invalid.png) no-repeat 98% center;
        box-shadow: 0 0 5px #3399CC;
        border-color: #3399CC;
    }

/* === Form hints === */
.form_hint {
	border-radius: 3px 3px 3px 3px;
	color: white;
	margin-left: 8px;
	z-index: 999; /* hints stay above all other elements */
	position: absolute; /* allows proper formatting if hint is two lines */
	display: none;
	background-color: rgba(0,0,0,1);
	padding-top: 2px;
	padding-right: 6px;
	padding-bottom: 2px;
	padding-left: 6px;
}

    .form_hint::before {
	content: "\25C0";
	color: rgba(0,0,0,1);
	position: absolute;
	top: 1px;
	left: -6px;
    }

.contact_form input:focus + .form_hint {
	display: inline;
	padding-top: 9px;
	padding-bottom: 9px;
	padding-right: 5px;
	padding-left: 5px;
}

.contact_form input:required:valid + .form_hint {
    background: #3399CC;
}

    .contact_form input:required:valid + .form_hint::before {
        color: #3399CC;
    }

/* === Button Style === */
button.submit {
	background-color: #999966;
	background: -webkit-gradient(linear, left top, left bottom, from(#999966), to(#383825));
	background: rgba(0,0,0,1);
	background: rgba(0,0,0,1);
	background: rgba(0,0,0,1);
	background: rgba(0,0,0,1);
	background: rgba(0,0,0,1);
	-ms-box-shadow: 0 1px 0 0 #999966 inset;
	-o-box-shadow: 0 1px 0 0 #999966 inset;
	color: white;
	font-weight: 300;
	text-align: center;
	text-shadow: 0px -1px 0px #000000;
	padding-top: 6px;
	padding-right: 38px;
	padding-bottom: 6px;
	padding-left: 38px;
	float: right;
	font-family: "Roboto Bold";
	border: 1px solid rgba(145,145,145,1);
	margin-right: 23px;
	margin-top: 10px;
}

    button.submit:hover {
        opacity: .85;
        cursor: pointer;
    }

    button.submit:active {
	border: 1px solid #999966;
	box-shadow: inset 0px 0px 10px 5px #383825;
	-webkit-box-shadow: 0 0 10px 5px #383825 inset;
	-moz-box-shadow: 0 0 10px 5px #383825 inset;
	-ms-box-shadow: 0 0 10px 5px #383825 inset;
	-o-box-shadow: 0 0 10px 5px #383825 inset;
    }
