/* CSS Document */
/* forms.css */

/* Highlight active field */
textarea:focus,
input:focus {
	border: 2px solid #0099FF;
	}

form.formstyle {
	width: 475px;
	background-color:#FFFFFF;
	color: #333333;
	border: solid 1px #333333;
	font-family:Arial, Helvetica, sans-serif;
	}
	
form.formstyle fieldset {
	padding: 10px;
	border: none;
	background: url(../images/formfieldset.gif) left top repeat-x;
	}
	
form.formstyle fieldset fieldset {
	background: none;
	padding: 0px;
	}
	
form.formstyle label {
	width: 120px; /* Width of labels */
	}

form.formstyle label.ckbxlbl {
	width: 300px; /* Width of checkbox labels */
	}

form.formstyle fieldset fieldset label {
	margin-left: 123px; /* Width of the labels plus 3 (html space) */
	}

form.formstyle input,
form.formstyle textarea {
	width: 300px;
	}

form.formstyle input.ckbxinput {
	width: 20px;
	}

form.formstyle input.submitbtn {
	width: 200px;
	margin-left: 135px;
	}

form.formstyle fieldset li {
	padding: 5px 10px 7px;
	background: url(../images/formdivider.gif) left bottom repeat-x;
	}
	
form.formstyle legend {
	font-weight: bold;
	}

form.formstyle label {
	display: inline-block;
	vertical-align: top;
	}
	
form.formstyle fieldset ol {
	margin: 0;
	padding: 0;
	}

form.formstyle fieldset li {
	list-style: none;
	padding: 5px;
	margin: 0;
	}
	
form.formstyle fieldset fieldset {
	border: none;
	}
	
form.formstyle fieldset fieldset legend {
	font-weight: normal;
	}
	
form.formstyle fieldset fieldset label {
	display: block;
	width: auto;
	}
	
/* use for asterisk to indicate required fields */
form.formstyle em {
	font-weight: bold;
	font-style: normal;
	color: #f00;
	}


