
/** search form **/

/**************************************************************************************
/* update the following classes to change the appearance of the search form designer control
/*************************************************************************************/

/* this is the class used on the outside container element for the search form */
/* html example: <div class="Search_Form_Wrapper"> */
/* this element is used to avoid the broken box model object in ie6 */
.Search_Form_Wrapper {
	display: block;
	height: 20px;
}

/* this is the class used on the inside container element for the document list */
/* html example: <div class="Search_Form_Wrapper"><div class="Search_Form"> */
.Search_Form {
	display: inline;
}

/* this is the class used on the container element for the question */
/* html example: <div class="Label">Keyword(s):</div> */
.Search_Form .Label {
	display: inline;
	font: bold 12px arial, sans-serif;
	color: #fff;
}

/* this is the class used on the container element for the keyword label */
/* html example: <div class="Label SearchLabel">Keyword(s):</div> */
/** overrides .Label **/
.Search_Form .SearchLabel {}

/* this is the class used on the container element for the form field */
/* html example: <div class="Field"> */
.Search_Form .Field {
	float: left; width: 105px;
}

/* the form field element */
/* html example: <div class="Field"><input type="text" ... /></div> */
.Search_Form .Field input {
	font: 11px verdana,tahoma, sans-serif;
	color: #864321;
	background-color: #F2DBB2;
	border: solid 1px #461B11;
	width:105px;	
	height:16px;
}

/* this is the class used on the container element for the keyword form field */
/* html example: <div class="Field SearchField"> */
/** overrides .Field **/
.Search_Form .SearchField {}

/* the keyword form field element */
/* html example: <div class="Field SearchField"><input type="text" ... /></div>  */
/** overrides .Field input **/
.Search_Form .SearchField input {}

/* this is the class used on the spacer element that exists after the form field */
/* html example: <div class="Spacer"><img src="/images/shim.gif" width="1" height="1" border="0" alt="" /></div> */
.Search_Form .Spacer {
	display:none;
}

/* this is the class used on the container element for the buttons */
/* html example: <div class="Buttons">...</div> */
.Search_Form .Buttons {
	float: left; width: 30px; margin: 0 0 0 2px;
}

/* this is the class used on the container element for the submit image */
/* html example: <div class="SubmitImage"> */
/** 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 */
/* html example: <div class="SubmitImage"><input type="image" src="/images/shim.gif" alt="" border="0" /></div> */
/** should be same size as .SubmitImage **/
.Search_Form .SubmitImage input {}

/* this is the class used on the container element for the submit button */
/* html example: <div class="SubmitButton">...</div> */
/** use only .SubmitButton or .SubmitImage **/
.Search_Form .SubmitButton {
	display: inline;
	padding: 0;
	margin: 0;
	margin-left: 2px;
}

/* the submit button form element */
/* html example: <div class="SubmitButton"><input type="submit" value="Send Feedback" /></div> */
.Search_Form .SubmitButton input {
	background-color: #F2DBB2;
	color: #864321;
	border: solid 1px #461B11;
	font: bold 10px verdana, sans-serif;
	margin: 0;
	text-decoration: none;
	padding: 2px 5px;
}

