/*-----------------------------------------------------------------------------------*/
/*	FORMS
/*-----------------------------------------------------------------------------------*/

.form-container
{
	position: relative;
	width: 700px;
}
.form-container .loading
{
	position: absolute;
	top: 0;
	left: 0;
	width: 400px;
	height: 400px;
}
.form-container .loading span
{
}
.form-container .response
{
	display: none;
	margin: 15px 0 0 80px;
	background:#d1f7b6;
	border:1px solid #8bca61;
	color:#5e9537;
	clear:both;
	text-shadow: none;
	padding: 15px 15px 13px 15px;
	line-height: 17px;
	width: 370px;
}
.forms
{
}
.forms fieldset
{

}
.forms ol
{
	list-style: none;
}
/* form rows */
.forms li.form-row
{
	margin-bottom: 20px;
}
.forms li.text-input-row
{
}
.forms li.text-area-row
{
}
.forms li.checkbox-row
{
}
.forms li.radio-row
{
}
.forms li.select-row
{
}
.forms li.button-row
{
}
.forms li.hidden-row
{
	display: none;
}
/* form input fields */

.forms fieldset .text-input
{
	background-color: #fff;
	border:1px solid #dedede;
	width: 380px;
	height: 30px;
	padding: 0 10px;
	color: #4d4d4d;

	display: inline;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.forms fieldset .password
{
}
.forms fieldset .text-area
{
	background-color: #fff;
	border:1px solid #dedede;
	width: 380px;
	height: 140px;
	resize: none;
	color: #4d4d4d;

	padding: 5px 10px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.forms fieldset .radio
{
}
.forms fieldset .checkbox
{
}
.forms fieldset .select
{
}
.forms fieldset .btn-submit
{
	background: #5499c3 url(style/images/button.png) repeat-x;
	border: none;
	height: 27px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #e2e2e2;

	padding: 0 20px 1px 20px;
	cursor: pointer;
	margin-left: 80px;
}
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
.forms fieldset .btn-submit
{
	padding: 0 20px 2px 20px;
}
}
.forms li.error input, .forms li.error textarea
{
	border: 1px #c43131 solid;
}
.forms span.error
{
	display: none;
}
.forms .button-row span.error
{
	padding: 0;
	display: none;
}
.forms li.focus
{
}
.forms label
{
	display: block;
	float: left;
	width: 80px;
	padding-top: 5px;

}
