
/** search form **/

/* outside container element */
/** used to avoid the broken box model object in ie6 **/
.Search_Form_Wrapper {
	width: 180px;
	margin: 0;
	padding: 0;
	padding-top: 100px;
	padding-right: 8px;
	float: right;
}

/* inside container element */
.Search_Form {
	width: 180px;
	margin: 0;
	padding: 0;
}

/* the container element for the label */
.Search_Form .Label {
	display: none;
}

/* the container element for the keyword label */
/** overrides .Label **/
.Search_Form .SearchLabel {}

/* the container element for the form field */
.Search_Form .Field {
	width: 140px;
	float: left;
	text-align:right;
	height: 24px;
}

/* the form field element */
.Search_Form .Field input {
  font: 11px Arial, Helvetica, sans-serif;
	color: #000;
	border: solid 1px #475D00;
  background: url(/images/structure/bgrd_section.gif);
	background-position: left top;
	background-repeat: repeat-x;
	width: 120px;
}

/* the container element for the keyword form field */
/** overrides .Field **/
.Search_Form .SearchField {}

/* the keyword form field element */
/** overrides .Field input **/
.Search_Form .SearchField input {}

/* a spacer element that exists after the form field */
.Search_Form .Spacer {
	float: left;
	width: 1px;
	height: 24px;
}

/* the container element for the buttons */
.Search_Form .Buttons {
	float: left;
	width: 33px;
	height: 24px;
}

/* the container element for the submit image */
/** sets size and background image for button **/
/** use only .SubmitImage or .SubmitButton, add display: none; to other **/
.Search_Form .SubmitImage {
	display: none;
}

/* the image form element */
/** should be same size as .SubmitImage **/
.Search_Form .SubmitImage input {
}

/* the container element for the submit button */
/** use only .SubmitButton or .SubmitImage **/
.Search_Form .SubmitButton {
	width: 25px;
	height: 17px;
	background-image: url(/images/structure/bgrd_section2.gif);
	background-color: #73704E;
	border: 1px solid #000000;
	overflow: hidden;
}

/* the submit button form element */
.Search_Form .SubmitButton input {
	width: 25px;
	height: 17px;
	padding: 0;
	margin: 0;
	border: none;
	color: #fff;
	background-color: transparent;
}