@charset "utf-8";
/*Form styling*/

input{
	color: #345566;
	background: #FFF;
}

input.formInputText  {
    font-size: .8em;
    color: #666;
    background-color: #fee;
    padding: 2px;
    border: solid 1px #f66;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 15px;
    }
input.formInputText:hover {
	background-color: #FFF;
	border: solid 1px #006600;
	color: #000;
	cursor: pointer;
    }
input.formInputText:focus {
    color: #000;
    background-color: #ffffff;
    border: solid 1px #006600; 
    cursor: text;
    }
.submit input{
	color: #000;
	background: #ffa20f;
	border: 2px outset #696;
}

fieldset{







	width: 20em
	font: 0.8em "Helvetica Neue", helvetica, arial, sans-serif;
	color: #FFF;
	background-color: #BFDEFB;
	padding: 2px;
}

legend{
	color: #3E5E8D;
	background: #ffa20c;
	border: 1px solid #696;
	padding: 2px 6px;
	font-size:16px;
	font-weight:bold;
} 

label  {
	font-weight: bold;
	line-height: normal;
	text-align: right;
	margin-right: 10px;
	position: relative;
	display: block;
	float: left;
	width: 220px;
    }
	
label.fieldLabel  {
	display: inline;
	width: 75px;/*Adust width for your text options length */
	text-align:left;
	
    }
	
