html {
	background-color: #000000;
}
body, td {
  	/* font-family: verdana,arial,sans-serif; */
  	font-family: verdana,arial,sans-serif;
	font-size: 10px;
	color: #A5A5A5;
}

h1 {
	font-size: 22px;
}

h2 {
	font-size: 13px;
}

table {
	border: 0px solid #666666; 
	border-collapse: collapse;
}

td { 
	/* border: 1px solid #666666; */
	padding: 4px;
}

th { 
	/* border: 1px solid #666666; */
	padding: 4px;
	font-weight: bold;
}

input, textarea {
	font-family: verdana,arial,sans-serif;
	font-size: 11px;
	border: 1px solid #666666; 
}

textarea {
	height: 100px;	
}

checkbox, radiobutton, button {
	border: none; 
}

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	margin: 0;
	padding: 0;
	min-width: 500px;
	max-width: 600px;
	width: 560px; 
}

form fieldset {
	/* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
	border-color: #000;
	border-width: 1px;
	border-style: solid;
	margin: 2px;
}

form legend {
	margin: 0px;
		
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	 /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

a:link { 
	text-decoration: none; 
	color: #0B2758; 
}

a:visited {
	text-decoration: none;
	color: #0B2758; 
}

a:active {
	text-decoration: none;
	color: #0B2758; 
}

a:hover {
	text-decoration: underline; 
	color: #007DD1; 
}

.grey {
	color: #A5A5A5;
}

.white {
	color: #FFFFFF;	
}

.green {
	color: #32AF09;	
}

