/* === Remove input autofocus webkit === */
*:focus {outline: none;}

.form_hint {font-size: 11px;}


/* === List Styles === */
.user_form ul {
    width:750px;
	list-style-type:none;
	list-style-position:outside;
	margin:0px;
	padding:0px;
	xborder: 1px solid #eee;
}
.user_form li{
	padding:12px; 
	position:relative;
} 

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

/* === Form Elements === */
.user_form label {
	width: 100px;
	margin-top: 3px;
	display:inline-block;
	float:left;
	font-size: 20px;	
}
.user_form input {
	height:20px; 
	width:220px; 
	padding:5px 8px;
}

/* form element visual styles */
.user_form input { 
	border:1px solid #aaa;
	box-shadow: 0px 0px 3px #ccc, 0 10px 15px #eee inset;
	border-radius:2px;
	padding-right:30px;
	-moz-transition: padding .25s; 
	-webkit-transition: padding .25s; 
	-o-transition: padding .25s;
	transition: padding .25s;
	margin-top: 2px;
}
.user_form input:focus {
	background: #fff; 
	border:1px solid #555; 
	box-shadow: 0 0 3px #aaa; 
	padding-right:70px;
}

/* remove the clear x in IE */
.user_form input::-ms-clear {
    display: none;
	width : 0;
	height: 0;
}

/* === HTML5 validation styles === */	
.user_form input:required {
	background: #fff url("../images/privacy/red_asterisk.png") no-repeat 98% center;
}
.user_form input:required:valid {
	background: #fff url("../images/privacy/valid.png") no-repeat 98% center;
	box-shadow: 0 0 5px #5cd053;
	border-color: #28921f;
}
.user_form input:focus:invalid {
	background: #fff url("../images/privacy/invalid.png") no-repeat 98% center;
	box-shadow: 0 0 5px #d45252;
	border-color: #b03535
}

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

.form_hint::before {
	content: "\25C0";
	color:#d45252;
	position: absolute;
	top:1px;
	left:-6px;
}
.user_form input:focus + .form_hint {display: inline;}

.user_form input:required:valid + .form_hint {background: #28921f;}
.user_form input:required:valid + .form_hint::before {color:#28921f;}

/* === Button Style === */

.user_form button {margin-left:98px;}

