/* --- Peach digital.com --- */
/* 2007 - edward.verzosa@peachdigital.com */

html, body {
	background-image: url(/media/image/content/jamesba/body_bg.jpg);
	background-repeat: repeat-x;
	background-color: #D5DBED;
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	font-weight: normal;
	color: #666666;

}
#MainWrapper {
	padding: 3px;
	height: auto;
	width: 944px;
	margin-right: auto;
	margin-left: auto;
	background-color: #FFFFFF;
	position: relative;
	text-align: left;
}
#Footer {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 100px;
	width: 944px;
	position: relative;
	background-image: url(/media/image/content/jamesba/footer_bg_11.gif);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #919CC5;
}
.ClearBoth {
	clear: both;
}
#HeadWrapper {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 347px;
	width: 944px;
	position: relative;
	background-image: url(/media/image/content/jamesba/Header_bg_05.gif);
	background-repeat: repeat-x;
}

.TrWrapper {
	margin: 0px;
	padding: 0px;
	float: right;
	height: 347px;
	width: 730px;
	position: relative;
}
.TlLogoBlock {
	margin: 0px;
	padding: 0px;
	float: left;
	height: 347px;
	width: 214px;
	position: relative;
}
.TrRegisterBlock {
	margin: 0px;
	padding: 0px;
	float: right;
	height: 155px;
	width: 278px;
	position: relative;
}
.TrBlock {
	margin: 0px;
	padding: 0px;
	float: right;
	height: 155px;
	width: 730px;
	position: relative;
}
.TrBlock img {
	float: left;
}
.TrBBlock {
	margin: 0px;
	padding: 10px 10px 10px 20px;
	float: right;
	height: 172px;
	width: 700px;
	position: relative;
}
.TrBBlock h1 {
	font-size: 150%;
	font-weight: bold;
	color: #FFFFFF;
	margin: 0px;
	padding: 40px 0px 0px;
}
.FormLBWrapper {
	margin: 0px;
	padding: 0px;
	float: left;
	height: auto;
	width: 214px;
	position: relative;
}
.FormTpHeader {
	margin: 0px;
	padding: 0px;
	float: right;
	height: 155px;
	width: 730px;
	position: relative;
}
.FormTempTitleBlock {
	background-color: #0054A3;
	margin: 0px;
	padding: 5px 0px 0px 10px;
	float: right;
	height: 21px;
	width: 718px;
	color: #FFFFFF;
	font-size: 130%;
	font-weight: bold;
	border-top: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	border-left: 2px solid #FFFFFF;
}
.FormTempTitleBlock2 {
	background-color: #B7C0E0;
	margin: 0px;
	padding: 5px 0px 0px 10px;
	float: right;
	height: 21px;
	width: 718px;
	color: #FFFFFF;
	font-size: 130%;
	font-weight: bold;
	border-top: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	border-left: 2px solid #FFFFFF;
	text-align: center;
}
/*-------- Form style <-----------*/
.form label { 
	width: 200px; /* label width *//* label margin = (input left margin) - (label width) */
	margin-right: 10px; /* label margin */
}
.form label.long, .form p.label {
	margin-left: 120px; /* subjective */
	width: 390px; /* (textarea width) + (label width) + (label margin) - (left margin) */
}
.form label span {
	color: #900; /* color of required asterisk */
}
.form input, .form textarea, .form select,
.form .checks input, .form.checks input {
	margin-left: 210px; /* (label width) + (label margin) */
	width: 400px; /* subjective, only applies to non-checkbox or radio inputs */
}
.form textarea {
	width: 400px; /* subjective, recommend: (3/2)(input width) */
}
.form p.desc {
	margin-left: 210px; /* (label width) + (label margin) **recommended */
}
.form .checks label, .form.checks label {
	margin-left: 220px; /* (label width) + 2(label margin) */
}

/*
	The following makes Internet Explorer 6.x play nicely. 
	These fix the double float margin bug.
*/
* html .form .checks input, * html .form.checks input { 
	margin-left: 105px;  /* (1/2)((label width) + (label margin)) */
}
* html .form .checks label, * html .form.checks label { 
	margin-left: 210px; /* (label width) + (label margin) */
	height: 1em; 
}


/*********************************************************************************
	DO NOT EDIT BELOW THIS LINE
*********************************************************************************/


.form {
	margin: 0 0 1em;
}

.form 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: left;
	padding-top: 0.2em;
	font-weight: normal;
	font-size: 1em;
	padding-left: 1em;
}

.form label:after { 
	/* 
		Creates a ":" after LABELs. This only works in some browsers 
	*/
	content: ":"; 
}

.form 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 label.long:after {
	content: "";
}

.form input, .form textarea, .form 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;
	color: #666666;
}
.form 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 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 input[type="radio"], .form input[type="checkbox"], 
.form 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 input[type="hidden"] {
	/*
		Firefox doesn't want to make them actually hidden, so I'll force it.
	*/
	display: none;
}

.form 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;
	position: relative;
	top: -1em;
	margin-bottom: 0em;
	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 .checks label, .form.checks label {
	/*
		Overrides for previously defined stuff and changes.
		Left margin must be 10pixels more than ".form input, .form select" etc.
	*/
	float: none;
	width: auto;
	clear: none;
	display: block;
	text-align: left;
	height: 1.4em;
	padding-top: 0;
	margin-bottom: 0;
}

.form .checks label:after, .form.checks label:after, .checks label:after  { 
	/* 
		Makes the ":" not generated after the LABEL. 
	*/
	content: ""; 
} 

.form .checks input, .form.checks input {
	/*
		Left margin is the same value as ".form input, .form select" etc.
	*/
	float: left;
	text-align: right;
	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."

.form input, .form textarea, .form select,
.form .checks input, .form .checks label,
.form.checks input, .form.checks label {
	margin-top: 0;
	margin-bottom: 0;
}
*/
* html .form br {
	/*
		Hooray! We have a fix!
		For some crazy reason, IE lets me style its BR tag.
	*/
	line-height: 1em;
	font-size: 0.5em;
}
.form h1 {
	background-color: #B7C0E0;
	margin: 10px 0px;
	padding: 7px 0px 0px 10px;
	height: 23px;
	width: 690px;
	color: #FFFFFF;
	font-size: 130%;
	float: right;
	border: 2px solid #FFFFFF;
	text-align: center;
	clear: right;
	display: block;
}
.form h2 {
	margin: 0px 0px 0px 4px;
	padding: 2px 2px 0px;
	float: left;
	height: 20px;
	width: 350px;
	border: 1px solid #B7C0E0;
	font-weight: normal;
	font-size: 120%;
	color: #0054A3;
	text-align: left;
	clear: right;
	display: block;
}
