
/** newsletter **/

/**************************************************************************************
/* update the following classes to change the appearance of the newsletter subscribe 
/* and unsubscribe page
/*************************************************************************************/

/* this is the class used on the outside container element for the newsletter */
/* html example: <div class="Newsletter_Wrapper"> */
/* this element is used to avoid the broken box model object in ie6 */
.Newsletter_Wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the outside container element for the newsletter subscribe */
/* html example: <div class="Newsletter_Wrapper NewsletterSubscribe"> */
/* overrides .Newsletter_Wrapper */
.NewsletterSubscribe {}

/* this is the class used on the outside container element for the newsletter unsubscribe */
/* html example: <div class="Newsletter_Wrapper NewsletterUnSubscribe"> */
/* overrides .Newsletter_Wrapper */
.NewsletterUnSubscribe {}

/* this is the class used on the inside container element for the newsletter */
/* html example: <div class="Newsletter_Wrapper"><div class="Newsletter"> */
.Newsletter {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the container element for the newsletter loading image */
/* html example: <div class="LoadingImage">...</div> */
.Newsletter .LoadingImage {
	background: transparent url(/RadControls/Ajax/Skins/Default/Loading4.gif) no-repeat bottom center;
	height: 40px;
}

/* this is the class used on each row in the newsletter form */
/* html example: <div class="Row"> */
/* each row contains .RequiredStar, .Label (question), .Value (answer) and .Spacer */
.Newsletter .Row {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on each container element for the required * (asterix) symbol displayed for required questions */
/* html example: <span class="RequiredStar">*</span> */
.Newsletter .RequiredStar {
	display: block;
	float: left;
	width: 3%;
	margin: 0;
	padding: 0;
	color: #f00;
}

/* this class changes formatting of .RequiredStar for non-required question */
/* html example: <span class="RequiredStar NotRequiredStar">&nbsp;</span> */
/** overrides .RequiredStar **/
.Newsletter .NotRequiredStar {}

/* this class is used on the container element for the question */
/* html example: <label for="Email" class="Label">Email: </label> */
.Newsletter .Label {
	display: block;
	float: left;
	width: 30%;
	margin: 0;
	padding: 2px 0;
	font-weight: bold;
}

/* this class is used to change formatting of .Label to a required question */
/* html example: <label for="Email" class="Label RequiredLabel">Email: </label> */
/**overrides .Label **/
.Newsletter .RequiredLabel {}

/* this class is used on the container element for the answer (typically a html form element) */
/* html example: <span class="Value"><input name="Email" type="text" ... ></span> */
.Newsletter .Value {
	display: block;
	float: left;
	width: 67%;
	margin: 0;
	padding: 0;
}

/* the form field for the answer */
/* html example: <span class="Value"><input name="Email" type="text" ... ></span> */
.Newsletter .Value input {
	width: 90%;
}

/* this class is used on the spacer element that exists after each answer */
/* html example: <div class="Spacer"><img src="/SiteCM3/i/shim.gif" width="1" height="1" border="0" alt="" /></div> */
/* this is the last item in a row, used to resolve the float issues in multiple browsers */
.Newsletter .Spacer {
	float: none;
	clear: both;
}

/* this class is used on the container element for the buttons */
/* html example: <div class="Buttons"> */
.Newsletter .Buttons {
	clear: both;
}

/* this class is 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 .SubmitImage {
	display: none;
}

/* the image form element */
/* html example: <div class="SubmitImage"><input type="image" src="/SiteCM3/i/shim.gif" alt="" border="0" /></div> */
/** should be same size as .SubmitImage **/
.Newsletter .SubmitImage input {}

/* this class is used on the container element for the submit button */
/* html example: <div class="SubmitButton"> */
/** use only .SubmitButton or .SubmitImage **/
.Newsletter .SubmitButton {
	margin-left: 33%;
	padding: 10px 0;
}

/* the submit button form element */
/* html example: <div class="SubmitButton"><input type="submit" value="Send" /></div> */
.Newsletter .SubmitButton input {}

/* this is the class used on the message that is display when an error occurs after submitting a form */
/* html example: <div class="ErrorMessages">...</div> */
.Newsletter .ErrorMessages {
	color: #f00;
	background-color: #ffc;
	border: dashed 1px #333;
	padding: 5px;
	margin: 10px 0;
}

/* the following classes allow you to customize individuals rows in the form */
/* html example: <div class="Row Row1"> */
/** row number starts at 1  */
.Newsletter .Row1 {}
.Newsletter .Row1 .RequiredStar {} /* used if row is a required question */
.Newsletter .Row1 .Label {}
.Newsletter .Row1 .RequiredLabel {}
.Newsletter .Row1 .Value {}
.Newsletter .Row1 .Spacer {}
