@charset "UTF-8";

.form {border-top:dotter 1px #666; border-bottom:dotter 1px #666;}

.form-label{
	display: block;
	float:left;
	width:100%;
	font-size:12px;
	line-height:100%;
	color:#808080;
	font-weight:bold;
	text-transform:uppercase;
	padding:10px 0;
}

.formItem{
	display:block;
	float:left;
	width:100%;
}
.formItem.bottom{margin-bottom:0;}

.form-select,
.form-textbox,
.form-textarea
{
	display:block;
	float:left;
	width:100%;
	color:#333;
	padding:10px 0;
	margin:0;
	font-size:12px;
	line-height:100%;
	border: solid 1px #D3D3D3;
	background-color:#ECECEC;
	-webkit-appearance:none;
	-moz-appearance:none;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-ms-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.form-select:hover,
.form-textbox:hover,
.form-textarea:hover,
.form-select:focus,
.form-textbox:focus,
.form-textarea:focus
{
	outline:none;
	box-shadow:none;
	color:#333;
	border: solid 1px #808080;
}
.form-select:focus,
.form-textbox:focus,
.form-textarea:focus
{
	background-color:#EFEFEF;
}
.form-textarea.error,
.form-textbox.error,
.form-select.error{
	border:solid 1px #F00;
}

.form-select{
	padding:5px 10px;
	height:27px;
	*height:20px;
	*margin-top:7px;
	vertical-align:middle;
}
.form-textbox{
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	padding:5px 10px;
	*padding:5px 0;
	*text-indent:10px;
}
.form-textarea{
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	padding:10px;
	*padding:10px 0;
	height:140px;
	*height:120px;
	resize: none;
	line-height:14px;
}

.form-button{
	display:block;
	width:100%;
	bottom:0;
	height:27px;
	padding:7px 0;
	margin: 0;
	font-size:12px;
	font-weight:bold;
	line-height:100%;
	letter-spacing:1px;
	text-transform:uppercase;
	text-align:center;
	color:#F0F0F0;
	border: none;
	background-color:#333;
	-webkit-appearance: none;
	-moz-appearance:none;
	border-radius:0px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	-ms-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	box-shadow:none;
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
	outline:none;
}
.form-button:hover{
	color:#F0F0F0;
	background-color:#444;
	cursor:pointer;
}

@media only screen
and (max-width : 460px) {
	
	.form-button {height:41px; padding:14px;}
	
}