/* pageName - style.css */ 
<style type="text/css">
table { background-color: #000000 }

/* This is setting the background color of your entire page - change 'black' to new color*/
body {background-color: white }

/* This is the style applied to all text display fields - change '#fd9b2c;' to relevant color */
.text {	font-family: Tahoma, Arial, Helvetica, Geneva, sans-serif;
		font-weight: normal; 
		font-size: x-small;
		white-space:normal; 
		color : #223c79;}

/* This change the color of the font that you type in the input fields - change '#000000' to relevant color */ 
input[type="text"] {font-family: Tahoma, Arial, Helvetica, Geneva, sans-serif;
					font-weight: normal; 
					font-size: x-small;
					white-space:normal; 
					color : #000000;}
					
/* This change the color of the font that you type in the password input fields - change '#000000' to relevant color */ 
input[type="password"] {font-family: Tahoma, Arial, Helvetica, Geneva, sans-serif;
					font-weight: normal; 
					font-size: x-small;
					white-space:normal; 
					color : #000000;}					

/* This change the color of the font on the buttons - change '#fd9b2c;' to relevant color */ 
input[type="submit"] {font-family: Tahoma, Arial, Helvetica, Geneva, sans-serif;
					font-weight: bold; 
					font-size: x-small;
					white-space:normal; 
					color : #223c79;}

/* This change the color of the font in the dropdown boxes - change '#000000;' to relevant color */ 
select {font-family: Tahoma, Arial, Helvetica, Geneva, sans-serif;
		font-weight: normal; 
		font-size: x-small;
		white-space:normal; 
		color : #000000;}

/* This change the color of the hyperlinks - change '#fd9b2c;' to relevant color */ 
a {	color : #223c79;
	font-weight: bold;
	font-size : x-small;
    font-family : Tahoma, Arial, Helvetica, Geneva, sans-serif}

/* This change the color of the horizontal line - change '#fd9b2c;' to relevant color */ 
hr {color	: #223c79;	
	background-color:  #223c79;}

ul.outside { padding-left: 10px }
