
/** newsletter form **/

/**************************************************************************************
/* update the following classes to change the appearance of the newsletter form 
/* designer control
/*************************************************************************************/

/* this is the class used on the outside container element for the newsletter form */
/* html example: <div class="Newsletter_Form_Wrapper"> */
/* this element is used to avoid the broken box model object in ie6 */
.ui_is_home .Newsletter_Form_Wrapper {
	width: 100%;
	margin: 0;
	padding: 5px 0;
}

.Newsletter_Form_Wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the inside container element for the newsletter form */
/* html example: <div class="Newsletter_Form_Wrapper"><div class="Newsletter_Form"> */
.Newsletter_Form {
	width: 100%;
	margin: 0;
	text-align: left;
}

/* this is the class used on the container element for the question */
/* html example: <div class="Label">Keyword(s):</div> */
.Newsletter_Form .Label {
	color: #fff;
	font-weight: bold;
	float: left;
}

/* this is the class used on the container element for the keyword label */
/* html example: <div class="Label SearchLabel">Keyword(s):</div> */
/** overrides .Label **/
.Newsletter_Form .SearchLabel {

}

/* this is the class used on the container element for the form field */
/* html example: <div class="Field"> */
.ui_is_home .Newsletter_Form .Field {
	padding: 0 0 10px 0;
}

.Newsletter_Form .Field {
	padding: 0;
	float: left;
}

/* the form field element */
/* html example: <div class="Field"><input type="text" ... /></div> */
.Newsletter_Form .Field input {
	font-size: 12px;
	color: #515151;
	width: 200px;
	border: 1px solid #999;
	padding: 3px;
}

/* this is the class used on the container element for the keyword form field */
/* html example: <div class="Field SearchField"> */
/** overrides .Field **/
.Newsletter_Form .SearchField {
 padding: 2px 10px 0 0;
}

/* the keyword form field element */
/* html example: <div class="Field SearchField"><input type="text" ... /></div>  */
/** overrides .Field input **/
.Newsletter_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> */
.Newsletter_Form .Spacer { }

/* this is the class used on the container element for the buttons */
/* html example: <div class="Buttons">...</div> */
.Newsletter_Form .Buttons {}

/* 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 **/
.Newsletter_Form .SubmitImage {
	
}

/* 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 **/
.Newsletter_Form .SubmitImage input {
	background: transparent url(/images/BTN_signupnow.jpg) no-repeat top left;
	width: 90px;
	height: 22px;
}

/* this is the class used on the container element for the submit button */
/* html example: <div class="SubmitButton">...</div> */
/** use only .SubmitButton or .SubmitImage **/
.Newsletter_Form .SubmitButton {
	display: none;
}


/* the submit button form element */
/* html example: <div class="SubmitButton"><input type="submit" value="Send Feedback" /></div> */


.Newsletter_Form .SubmitButton input {
	background: #000; 
	font-weight: bold; 
	color: #fff;
	border: 0;
	padding: 3px;
	font-size: 13px;
}


/* Inline Newsletter Form - Replace the above class with these classes to create an inline Newsletter Form */
/** newsletter form **/

/*
.Newsletter_Form_Wrapper { display: inline; }
.Newsletter_Form { 	display: inline; }
.Newsletter_Form .Label { display: inline; font: bold 12px arial, sans-serif; color: #fff; }
.Newsletter_Form .SearchLabel {}
.Newsletter_Form .Field { display: inline; }
.Newsletter_Form .Field input { font-size: 11px; width: 80px; margin: 0px; border: solid 1px #A5ACB2; }
.Newsletter_Form .SearchField {}
.Newsletter_Form .SearchField input {}
.Newsletter_Form .Spacer { display:inline; }
.Newsletter_Form .Buttons { display: inline; }
.Newsletter_Form .SubmitImage { display: none; }
.Newsletter_Form .SubmitImage input {}
.Newsletter_Form .SubmitButton { display: inline; padding: 0; margin: 0; }
.Newsletter_Form .SubmitButton input { background-color: Transparent; color: #fff; border: none; font-weight: bold;	font-size: 12px; padding: 0; margin: 0;	padding-right: 5px; }
*/
