@charset "utf-8";
/* CSS Document */
#form{
	marging-top:10px;
	margin-bottom:15px;
	width:600px;
}

#form fieldset{
	border-top:1px solid #999999;
	padding:0;
	margin-bottom:10px;
}

#form legend{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color:#FF6600;
	font-weight:bold;
	font-style:italic; 
	padding: 5px 0 10px 0;
}

#form label{
	color:#333;
	font-size:13px;
	font-weight:bold;
}

input,textarea,select{
	width: 300px;
}

.checkbox{
	width:15px;
}
.small_input{
	width: 50px;
}

.frmInstructions{
	font-size: 11px;
	color:#666;
	font-family:Arial, Helvetica, sans-serif;
}

.form_text{
	padding:0;
	font-size:12px; 
	font-weight:bold; 
	color:#666; 
	border-bottom:1px solid #666;
	padding-bottom:5px;
}

/* the suggestion box */

.suggestionsBox {
	position: absolute;
	width: 300px;
	background-color: #212427;
	border: 2px solid #000;
	color: #fff;
	padding: 5px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

.suggestionList {
	margin: 0px;
	padding: 0px;
}


/*  Individual Search Results  */
.suggestionList li {
	margin: 0px 0px 2px 0px;
	padding: 7px;
	cursor: pointer;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	list-style-type: none;
}

/*  Hover effect  */
.suggestionList li:hover {
background-color: #009900;
font-weight: bold;
}

