.formStyle
{
	background: #DFD1B5;
	width: 650px;
	text-align: center;
	padding: 5px 0 15px 60px;
	margin-left: auto; 
	margin-right: auto;
}

form.atlasTalesFormStyle label { 
	width: 170px; /* label width *//* label margin = (input left margin) - (label width) */
	margin-right: 10px; /* label margin */
}
form.atlasTalesFormStyle label.long, form.atlasTalesFormStyle p.label {
	margin-left: 90px; /* subjective */
	width: 290px; /* (textarea width) + (label width) + (label margin) - (left margin) */
}
form.atlasTalesFormStyle label span {
	color: #900; /* color of required asterisk */
}
form.atlasTalesFormStyle input, form.atlasTalesFormStyle textarea, form.atlasTalesFormStyle select {
	margin-left: 180px; /* (label width) + (label margin) */
	margin-right: auto;
	width: 200px; /* subjective */
	font-family: Tahoma, verdana, sans-serif;
}
form.atlasTalesFormStyle textarea { 
	width: 300px; /* subjective, recommend: (3/2)(input width) */
}
form.atlasTalesFormStyle p.desc {
	margin-left: 5px; /* (label width) + (label margin) */
}
form.atlasTalesFormStyle .checks label {
	margin-left: 190px; /* (label width) + 2(label margin) */
}
form.atlasTalesFormStyle .checks input {
	margin-left: 180px; /* (label width) + (label margin) */
}

/*
	The following makes Internet Explorer 6.x play nicely. 
	These fix the double float margin bug.
*/
* html form.atlasTalesFormStyle .checks input { 
	margin-left: 105px;  /* (1/2)((label width) + (label margin)) */
}
* html form.atlasTalesFormStyle .checks label { 
	margin-left: 180px; /* (label width) + (label margin) */
	height: 1em; 
}


/*********************************************************************************
	Added by Greg
*********************************************************************************/
input.button
{
	color:#36393D;
	font-size:11px;
	background-color:#cfcfcf;
	border:1px solid;
	border-top-color:#36393D;
	border-left-color:#36393D;
	border-right-color:#36393D;
	border-bottom-color:#36393D;
}

/*********************************************************************************
	DO NOT EDIT BELOW THIS LINE
*********************************************************************************/


form.atlasTalesFormStyle {
	margin: 0 0 1em;
}

form.atlasTalesFormStyle label {
	/* 
		A label must precede the form element in the HTML
		You must keep the top padding for some browsers to keep the label and the form element looking on the same line
	*/
	float: left;
	text-align: right;
	padding-top: 0.2em;
	font-weight: bold;
	font-size: 1em;
}

form.atlasTalesFormStyle label:after { 
	/* 
		Creates a ":" after LABELs. This only works in some browsers 
	*/
	content: ":"; 
}

form.atlasTalesFormStyle label.long {
	/*
		If your label text does not fit in the left-hand side, consider this class
	*/
	float: none;
	display: block;
	text-align: left;
}

form.atlasTalesFormStyle label.long:after {
	content: "";
}

form.atlasTalesFormStyle input, form.atlasTalesFormStyle textarea, form.atlasTalesFormStyle select {
	/*
		These items must immediately follow the LABEL item associated with it and followed by a BR (see below).
		The following width must be 10pixels wider than the width of the LABEL.
	*/
	display: block;
	margin-bottom: -0.5em;
}
form.atlasTalesFormStyle select[multiple="multiple"] {
	/*
		Mozilla has some weird concept of how to display multiple select boxes.
		For some reason, display: block; does not affect it.
		For more information, see https://bugzilla.mozilla.org/show_bug.cgi?id=342531
		This fixes that problem. DON'T FORGET YOUR BR TAG AFTER SELECT!
	*/
	margin-left: 0px;
}
form.atlasTalesFormStyle br { 
	/* 
		Always include a BR tag at the end of a line of items -- generally immediately following one of an INPUT, SELECT or TEXTAREA.
		Within div.checks, include the BR after the LABEL
	*/
	clear: left;
} 

form.atlasTalesFormStyle input[type="radio"], form.atlasTalesFormStyle input[type="checkbox"], 
form.atlasTalesFormStyle input[type="hidden"] { 
	/* 
		Keeps Mozilla browsers (and others) from making the RADIO and CHECKBOXES too wide and/or tall.
		Also removes unnecessary borders from these browsers (They don't respond as expected) 
	*/
	width: auto; 
	height: 0.8em; 
	border: 0;
}

form.atlasTalesFormStyle input[type="hidden"] {
	/*
		Firefox doesn't want to make them actually hidden, so I'll force it.
	*/
	display: none;
}

form.atlasTalesFormStyle p.desc {
	/*
		Use this immediately following an item that needs a longer description than can be handled by the LABEL.
		The left margin should be the same as INPUT, TEXTAREA and SELECT objects.
	*/
	display: block;
	margin-top: -0.4em;
	margin-bottom: 1em;
	font-style: italic;
	font-size: 0.9em;
}


/* 
	The following section is for reversing the display of CHECKBOX and RADIO INPUTs.
	Surround the section of items with <fieldset class="checks"></fieldset> or <div class="checks"></div>.
	It is highly recommended to use FIELDSET over DIV when there are multiple items.
	In the section, the INPUT precedes the LABEL and the BR comes last (after the label).
*/
form.atlasTalesFormStyle .checks label {
	/*
		Overrides for previously defined stuff and changes.
		Left margin must be 10pixels more than "form.atlasTalesFormStyle input, form.atlasTalesFormStyle select" etc.
	*/
	float: none;
	width: auto;
	clear: none;
	display: block;
	text-align: left;
	height: 2em;
	padding-top: 0;
	margin-bottom: -1em;
}

form.atlasTalesFormStyle .checks label:after { 
	/* 
		Makes the ":" not generated after the LABEL. 
	*/
	content: ""; 
} 

form.atlasTalesFormStyle .checks input {
	/*
		Left margin is the same value as "form.atlasTalesFormStyle input, form.atlasTalesFormStyle select" etc.
	*/
	float: left;
	text-align: right;
	margin-bottom: 0.5em;
	width: auto;
}

/* 
	End reverse checks/radios section
*/


/*
	I found my own IE CSS display bug. I call it the "IE sucks, so it redraws the top border all over the fieldset like a jerk bug."
*/
* html form.atlasTalesFormStyle fieldset p.desc, * html form.atlasTalesFormStyle .checks p.desc { margin-top: 0; }
* html form.atlasTalesFormStyle p.desc { margin-top: -1em; }
* html form.atlasTalesFormStyle input, * html form.atlasTalesFormStyle textarea, * html form.atlasTalesFormStyle select,
* html form.atlasTalesFormStyle .checks input, * html form.atlasTalesFormStyle .checks label {
	margin-top: 0;
	margin-bottom: 0;
}
* html form.atlasTalesFormStyle fieldset br {
	/*
		Hooray! We have a fix!
		For some crazy reason, IE lets me style its BR tag.
	*/
	line-height: 0.5em;
	font-size: 0.5em;
}

