@charset "utf-8";
/* CSS Document */

label, input, select {
	padding: 0;
	margin: 0;
}
#myform {
	padding: 5%;
	padding-bottom: 0;
}
#myform .line {
	display: block;
	height: 40px;
	clear: both;
}
#myform .autoheight {
	height: auto;
	margin-bottom: 18px;
}
#myform .form_left {
	float:left;
	width: 50%;
	text-align: right;
}
#myform .form_right {
	float:left;
	width: 50%;
	text-align: left;
}
#myform label {
	display:block;
	padding-right: 5px;
}
#myform em {
	color: #F00;	
	font-weight: bold;
}
#myform input, #myform select, #myform textarea {
	border: 1px solid #0099FF;
	width: 100%;
}
#myform input, #myform textarea {
	width: 99%;
}
#myform .options input {
	clear: left;
	width: 10%;
}
#myform .options span {
	display: block;
	width: 100%;
	line-height: 22px;
}
#myform .button .glossy {
	width: 200px;
}

#myform .hidden {
	display:none;
}
.validationErrorMsg {
	display: none;
}

.validationErrorMsg.show {
	display: inline;
	color: #CC3333;
	border: 1px solid #CC3333;
}
	
.invalidState {
	background-color: #FF9F9F;
}

.validState {
	background-color: #B8F5B1;
}

.focusState {
	background-color: #FFFFCC;
}

