/* CSS Document */
.formStyle{
	font-family:Verdana, Geneva, sans-serif;
	margin: 2%;
}
.formStyle label{
	font-size:80%;
	margin:.5% 0;
	display:block;
	text-align:left;
}

.formStyle input{
	padding:5px 3px;
	border:1px solid #e1e1e1;
}

.formStyle input.smallInput{
	width:25%;
}
.formStyle input.mediumInput{
	width:50%;
}
.formStyle input.largeInput{
	width:90%;
}


.formStyle textarea{
	width:90%;
	height:200px;
	border:1px solid #e1e1e1;
	font-family:Verdana, Geneva, sans-serif;
	resize:none;
}

.buttonSubmit{
	float:right;
}

.formStyle .submitBtn{
	background: url("../images/submit-bg.png") no-repeat scroll center center transparent;
    color: #000;
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
    padding-top: 6px;
    height:28px;
    text-align: center;
    text-transform: uppercase;
    width: 102px;
    border:none;
    margin:0 5px;
    cursor:pointer;
}
.formStyle .submitBtn-active{
	background: url("../images/submit-active.png") no-repeat scroll center center transparent;
    color: #fff;
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
    padding-top: 6px;
    height:28px;
    text-align: center;
    text-transform: uppercase;
    width: 102px;
    border:none;
    margin:0 5px;
    cursor:pointer;
}

.valid_box{
	width:85%;
	clear:both;
	background:url(../images/valid.png) no-repeat left #edfce9;
	border:1px #cceac4 solid;
	background-position:15px 10px;
	padding:15px;
	padding-left:50px;
	margin:5px;
	color:#333333;
	}

.error_box{
	width:85%;
	clear:both;
	background:url(../images/error.png) no-repeat left #fce9e9;
	border:1px #eac7c7 solid;
	background-position:15px 10px;
	padding:15px;
	padding-left:50px;
	margin:5px;
	color:#333333;
}