body {
	background-color: #000000;
	margin: 0px;
	padding: 0px;
	background-image: url('http://www.janmulder.us/catalog/images/stars_bg.jpg');
	background-repeat: repeat;
}

table {border:0px;}

form{margin:0px; padding:0px;}

.content {
font-family: Calibri;
	font-size: 13px;
	font-style: normal;
	line-height: 18px;
	font-weight: normal;
	font-variant: normal;
	color: #ffffff;
	padding-right: 0px;
	padding-left: 0px;
}

.content2 {
font-family: Calibri;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
	font-weight: bold;
	font-variant: normal;
	color: #007EA7;
	padding-right: 0px;
	padding-left: 0px;
}


.middle{vertical-align:middle;}

a {color:#C1C1C1;}
a:hover {text-decoration:none;}	



a.triad:link {

	font-family:Calibri;
	font-weight:normal;
	color:#9C9C9C;
	font-size: 11px;
	line-height: 17px; text-decoration:none;
}
a.triad:active {

	font-family:Calibri;
	font-weight:normal;
	color:#9C9C9C;
	font-size: 11px;
	line-height: 17px; text-decoration:none;
}
a.triad:visited {

	font-family:Calibri;
	font-weight:normal;
	color:#9C9C9C;
	font-size: 11px;
	line-height: 17px; text-decoration:none;
}
a.triad:hover {

	font-family:Calibri;
	font-weight:normal;
	color:#ffffff;
	font-size: 11px;
	line-height: 17px; text-decoration:none;
}

.copyright {

	font-family:Calibri;
	color:#9C9C9C;
	font-size: 16px;
	line-height: 17px;
}
.title {
font-family: Calibri;
	font-size:16px;
	color:#AE0000;
	line-height:20px;
	vertical-align:top;
	font-weight: bold;
}
.text_1 {
	font-family: Calibri;
	font-size: 12px;
	text-decoration: none;
	color: #6B58A7;
}
.text_2 {
	font-family: Calibri;
	font-size: 14px;
	text-decoration: none;
	color: #6B58A7;
}
a.link_1:link{font-family: Calibri;
	font-size: 12px;
	color: #2f2559;
	text-decoration: underline;
	}
	a.link_1:active{font-family: Calibri;
	font-size: 12px;
	color: #D02B54;
	text-decoration: underline;
	}
	a.link_1:visited{font-family: Calibri;
	font-size: 12px;
	color: #D02B54;
	text-decoration: underline;
	}
	a.link_1:hover{font-family: Calibri;
	font-size: 12px;
		text-decoration: underline;
	color: #7193D2;
	}
	
.td_1{ background-image:url(images/bg.jpg); background-position:left top; background-repeat:repeat-y;}


a.mail:link {

	font-family:Calibri;
	font-weight:normal;
	color:#F6A00B;
	font-size: 11px;
	line-height: 17px; text-decoration:underline;
}
a.mail:active {

	font-family:Calibri;
	font-weight:normal;
	color:#F6A00B;
	font-size: 11px;
	line-height: 17px; text-decoration:underline;
}
a.mail:visited {

	font-family:Calibri;
	font-weight:normal;
	color:#F6A00B;
	font-size: 11px;
	line-height: 17px; text-decoration:underline;
}
a.mail:hover {

	font-family:Calibri;
	font-weight:normal;
	color:#F6A00B;
	font-size: 11px;
	line-height: 17px; text-decoration:none;
}
/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline;
	color: #CC3333;
	border: 1px solid #CC3333;
}



/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required / invalid / minValue / maxValue / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.textfieldValidState input, input.textfieldValidState {
	background-color: #B8F5B1;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.textfieldRequiredState, .textfieldRequiredState input, 
input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, 
input.textfieldMinValueState, .textfieldMinValueState input, 
input.textfieldMaxValueState, .textfieldMaxValueState input, 
input.textfieldMinCharsState, .textfieldMinCharsState input, 
input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #FF9F9F;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
}

/* This class applies only for a short period of time and changes the way the text in the textbox looks like.
 * It applies only when the widget has character masking enabled and the user tries to type in an invalid character.
 */
.textfieldFlashText input, input.textfieldFlashText{
	color: red !important;
}
