/* This we need for the form */

button, input, select, textarea { width: auto; overflow: visible; margin: 0; vertical-align: baseline; outline: none; }

textarea { overflow: auto; vertical-align: text-top; }
	
/* Remove extra padding and inner border in Firefox */
input::-moz-focus-inner,
button::-moz-focus-inner { border: 0; padding: 0; }

/* Hand cursor on clickable input elements */
label[for], input[type="button"], input[type="submit"], input[type="image"], button, .captcha { cursor: pointer; }

label {
	padding: 5px 2px;
	display: block;
}

label span.error {
	color:red;
	font-size: 10px;
	padding-left: 10px;
}

#inform-msg {
	display: none;
}

input[type=text], input[type=password], textarea {
	font-size: 14px;
	padding: 10px;
	width: 300px;
	margin-bottom: 5px;
	border: 1px solid #878686;
	color: #666;
	background: #f0f0f0 url('icon.png') 95% 50% no-repeat;
	display: block;
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
	-webkit-box-shadow: 0px 0px 4px #aaa;
	-moz-box-shadow: 0px 0px 4px #aaa; 
	box-shadow: 0px 0px 4px #aaa;
	 
	/* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */		
	-webkit-transition: background 0.53s linear;
}

textarea {
	height: 100px;
	background: #f0f0f0 url('icon.png') 97% 10% no-repeat;
}

input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus, textarea:hover, textarea:focus {
	-moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.6);
	-webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.6);
	box-shadow: inset 0px 1px 2px rgba(0,0,0,0.6);
}

select {
	font-size: 14px;
	padding: 10px;
	width: 320px;
	margin: 5px 0;
	border: none;
	color: #333;
	background-color: #f0f0f0;
	display: block;
	/* -- CSS3 Shadow - create a shadow around each input element -- */ 
	-webkit-box-shadow: 0px 0px 4px #aaa;
	-moz-box-shadow: 0px 0px 4px #aaa; 
	box-shadow: 0px 0px 4px #aaa;
	 
	/* -- CSS3 Transition - define what the transition will be applied to (i.e. the background) -- */		
	-webkit-transition: background 0.3s linear;
}

input[type=radio] {
	margin-left: 4px;
	margin-bottom: 3px;
}

.required {
	width: 315px;
	background: url('required.png') no-repeat right center;
}

.fc_button, .fc_button:visited, {
	color: #fff;
	font-weight: bold;
	text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
	text-align: center;
	padding: 0 15px;
	display: inline-block;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.3), inset 0px -1px 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3), inset 0px -1px 2px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3), inset 0px -1px 2px rgba(0,0,0,0.3);
	
}
.fc_button:hover {
	-moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
	box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
}
.fc_button {
	font-size: 14px;
	padding-top: 0;
	margin: 10px 0;
	height: 28px;
	line-height: 25px;
	background: url("button_grey.png") repeat-x;
}

/* Captcha */
.captcha { width: 135px;display: block; }
#captcha_refresh {
	position: absolute;
	top: 0;
	left: 160px;
	cursor:pointer;
}
.captcha_wrapper {
	position: relative;
	margin:5px 0px 8px 0;
}

.status-ok {
	font-size: 14px;
	background: url('ok.png') no-repeat 10px center;
	background-color: rgba(231, 247, 211, 0.5);
	border: 1px solid #6c3;
	border-radius: 5px;
	padding: 2px 0 3px 35px;
	margin-bottom: 10px;
	min-width: 300px;
}

.status-failure {
	font-size: 14px;
	background: url('required.png') no-repeat 10px center;
	background-color: rgba(255, 235, 232, 0.5);
	border: 1px solid #C00;
	border-radius: 5px;
	padding: 2px 0 3px 35px;
	margin-bottom: 10px;
	min-width: 300px;
}