
/** search form **/

/* outside container element */
/** used to avoid the broken box model object in ie6 **/
.Search_Form_Wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* inside container element */
.Search_Form {
	width: 100%;
	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/back_search_input.gif);
	background-position: left top;
	background-repeat: repeat-x;
	width: 115px;
}

/* 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: 4px;
	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 {
	background: transparent url(/images/btn_go.gif) no-repeat top left;
	width: 33px;
	height: 21px;
}

/* the image form element */
/** should be same size as .SubmitImage **/
.Search_Form .SubmitImage input {
	width: 33px;
	height: 21px;
}

/* the container element for the submit button */
/** use only .SubmitButton or .SubmitImage **/
.Search_Form .SubmitButton {
	display: none;
}

/* the submit button form element */
.Search_Form .SubmitButton input {}