@import url(styleExp5.css);

#contenedor #contact_form{
	width: 60%;
	margin-right: auto;
	margin-left: auto;
	border: 0.06rem solid #666666;
}

*:focus {outline: none;}

.contact_form ul {
	text-align: left;
	display: block;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 5px;
	padding-left: 5px;

}
:-moz-placeholder {
    color: #CCCCCC;
}
 
::-webkit-input-placeholder {
    color: #CCCCCC;
}

*:focus {outline: none;}

.contact_form li {
	font-family: Arial;
	margin-left:10%;
	list-style-type: none;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 14px;
	color: #003300;
}
.form_hint {
	border-radius: 3px 3px 3px 3px;
	color: #003300;
	z-index: 999; /* hints stay above all other elements */
	position: absolute; /* allows proper formatting if hint is two lines */
	display: none;
	background-color: #99FFCC;
	margin-top: 5px;
	padding-top: 1px;
	padding-right: 6px;
	padding-bottom: 1px;
	padding-left: 6px;
}

.form_hint::before {
    content: "\25C0"; /* left point triangle in escaped unicode */
    color:#99FFCC;
    position: absolute;
    top:1px;
    left:-6px;
}
.contact_form input:focus + .form_hint {display: inline;}
.contact_form input:focus{ /* add this to the already existing style */
    padding-right:50px;
}
.contact_form textarea:focus { /* add this to the already existing style */
    padding-right:5px;
}
.contact_form input, .contact_form textarea { /* add this to the already existing style */
	border: 1px groove #999999;
	outline: 1px solid #339966;
	padding: 5px;
}
/* Button Style */
button.submit {
	background-color: linear-gradient;
	background: -webkit-linear-gradient(top, #68b12f, #50911e);
	background: -moz-linear-gradient(top, #68b12f, #50911e);
	background: -ms-linear-gradient(top, #68b12f, #50911e);
	background: -o-linear-gradient(top, #68b12f, #50911e);
	background: linear-gradient(top, #68b12f, #50911e);
	border: 1px solid #509111;
	border-bottom: 1px solid #5b992b;
	border-radius: 3px;
      -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
	box-shadow: inset 0 1px 0 0 #9fd574;
    -webkit-box-shadow: 0 1px 0 0 #9fd574 inset ;
    -moz-box-shadow: 0 1px 0 0 #9fd574 inset;
    -ms-box-shadow: 0 1px 0 0 #9fd574 inset;
    -o-box-shadow: 0 1px 0 0 #9fd574 inset;
	color: white;
	font-weight: bold;
	text-align: center;
	text-shadow: 0 -1px 0 #396715;
	margin-right: auto;
	margin-left: auto;
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 6px;
	padding-left: 20px;
	background-position: center top;
	display: block;
	margin-top: 15px;
	margin-bottom: 15px;
}
button.submit:hover {
    opacity:.85;
    cursor: pointer; 
}
button.submit:active {
    border: 1px solid #20911e;
    box-shadow: 0 0 10px 5px #356b0b inset; 
    -webkit-box-shadow:0 0 10px 5px #356b0b inset ;
    -moz-box-shadow: 0 0 10px 5px #356b0b inset;
    -ms-box-shadow: 0 0 10px 5px #356b0b inset;
    -o-box-shadow: 0 0 10px 5px #356b0b inset;
     
}