/* --------------------------------------------------------------------
File name: form.css
Title: Form CSS file - Style 27 blue
---------------------------------------------------------------------- */
#myform {
	width:500px;
	padding:0;
	margin:0;
	text-align: center;
   }

#myform fieldset {
	width:480px;
	display:block;
	background:#fff;
	border:1px solid #E5E5E5;
	padding: 10px;
	font-family:verdana, sans-serif;
	text-align: left;
	margin: 10px 0;
	line-height:1.5em;
	}

#myform legend {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1.1em;
	font-weight:bold;
	text-transform: uppercase;
	margin:5px;
	padding:3px;
	}

#myform label {
	clear:left; 
	float:left; 
	width:200px; 
	text-align:right;
	padding-right:10px; 
	color:#333333; 
}


#myform .textbox {
	border:1px solid #BFBFBF; 
	background:#E8E8E8; 
	padding-left:0.5em; 
	margin-bottom:5px;
	}


#myform select {
	margin-left:0.5em;
	}

#myform textarea {
	width:440px; 
	height:10em; 
	padding:5px; 
	overflow:auto; 
	border:1px solid #BFBFBF; 
	background:#E8E8E8; 
	}


#myform #submit {
	color:#990000;
	cursor:pointer;
	width:105px;
	font-weight: bold;
	text-align: center;
	}

#myform #submit:hover {
	color:#000;
	}

#myform .required-marker {
    color:#CC0000;
	font-weight: bold;
}


/**** form validation ****/

#myform label.error {
	float: none;
	color: #CC0000;
	padding-left: 0.5em;
	vertical-align: top;
	font-size: .75em;
	font-weight: bold;
}

#myform input.error {
	border:1px solid #CC0000;
}



