
/** member login **/

/**************************************************************************************
/* update the following classes to change the appearance of the member login form page
/*************************************************************************************/

/* this is the class used on the outside container element for the member login */
/* html example: <div class="MemberLogin_Wrapper"> */
/* this element is used to avoid the broken box model object in ie6 */
.MemberLogin_Wrapper {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the inside container element for the member login */
/* html example: <div class="MemberLogin_Wrapper"><div class="MemberLogin"> */
.MemberLogin {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on the container element for the member login loading image */
/* html example: <div class="LoadingImage">...</div> */
.MemberLogin .LoadingImage {
	background: transparent url(/RadControls/Ajax/Skins/Default/Loading4.gif) no-repeat bottom center;
	height: 40px;
}

/* this is the class used on the page heading the member login */
/* html example: <h1>...</h1> */
.MemberLogin h1 {}

/* this is the class used on each row in the member login form */
/* html example: <div class="Row"> */
/* each row contains .RequiredStar, .Label (question), .Value (answer) and .Spacer */
.MemberLogin .Row {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

/* this is the class used on each alternating row in the member login form */
/* html example: <div class="Row AlternateRow"> */
/* changes formatting of .Row for each alternating row */
/* overrides .Row */
.MemberLogin .AlternateRow {}

/* this is the class used on each container element for the required * (asterix) symbol displayed for required questions */
/* html example: <span class="RequiredStar">*</span> */
.MemberLogin .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 **/
.MemberLogin .NotRequiredStar {}

/* this class is used on the container element for the question */
/* html example: <label for="Email" class="Label">Email: </label> */
.MemberLogin .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 **/
.MemberLogin .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> */
.MemberLogin .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> */
.MemberLogin .Value input {
	width: 90%;
}

/* this class is used on the spacer element that exists after each answer */
/* html example: <div class="Spacer"><img src="/images/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 */
.MemberLogin .Spacer {
	float: none;
	clear: both;
}

/* this class is used on the container element for the buttons */
/* html example: <div class="Buttons"> */
.MemberLogin .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 **/
.MemberLogin .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 **/
.MemberLogin .SubmitImage input {}

/* this class is used on the container element for the submit button */
/* html example: <div class="SubmitButton"> */
/** use only .SubmitButton or .SubmitImage **/
.MemberLogin .SubmitButton {
	margin-left: 33%;
	padding: 10px 0;
}

/* the submit button form element */
/* html example: <div class="SubmitButton"><input type="submit" value="Send" /></div> */
.MemberLogin .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> */
.MemberLogin .ErrorMessages {
	color: #f00;
	background-color: #ffc;
	border: dashed 1px #333;
	padding: 5px;
	margin: 10px 0;
}

/* this is the class used on the message that is display when an error occurs after submitting a form */
/* html example: <div class="ForgotPassword">...</div> */
.MemberLogin .ForgotPassword {
	margin-left: 33%;
}

/* the Forgot Password link element */
/* html example: <a href="...">Forgot your password?</a> */
.PhotoGallery .ForgotPassword a:link, a:active, a:visited {}
.PhotoGallery .ForgotPassword a:hover {}

/* the following classes allow you to customize individuals rows in the login form */
/* html example: <div class="Row Row1"> */
/** row number starts at 1  */
.MemberLogin .Row1 {}
.MemberLogin .Row1 .RequiredStar {} /* used if row is a required question */
.MemberLogin .Row1 .Label {}
.MemberLogin .Row1 .RequiredLabel {}
.MemberLogin .Row1 .Value {}
.MemberLogin .Row1 .Spacer {}
