/* just an important note, you will need to remove all <font> </font> and the values you've given them from your code, in order for 
the CSS to affect the text in your code you'll see the changes to the links but not the normal text*/
/* this part os for the body of your page ( remember that the body is different than tables, these properties will effect
everything that you place on your page which are not in tables... since all your pages are in tables, the changes you want
to make should be within the td, th section.. which is further down. This section is only important cause it sets your background
color. */
body {
	
	
	background-color: 003366;
	
	/* place any font name you want below, the one below is a font family, however you can replace all that with a single 
	   font name of your choice*/
	font-family: Geneva, Arial, Helvetica, sans-serif;
	
	/* this color refers to the font color  */
	color: #000000;
	
	/* and of course font size */
	font-size: 12px;
	
	/* leave this normal... the other choices are oblique and italic*/
	font-style: normal;
	
	/* you can give the line a value to change the height vetween the lines of your text, leave it as normal or if you want
	to change it by typing  14px for example */
	line-height: normal;
	
	/* leave this field alone, it underlines or stikes through all the text.. let me know if you want to do any of that
	but since it applies it to the whole text in the body.. I don't think you'll have a use for it */
	text-decoration: none;
    
	
	/*  background-image: url(photo.gif);  I commented this whole section out since you don't need a background image right now
	but if you ever have to need to add one, you do it here */  
}
 /* these floowing sections I just included of you ever need to add headline text, so whereever you add h1 in you html code
 the changes you make under h1 will apply to it... and so on*/
h1 {
	color: #000000;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;

}

h2 {
	color: #FF99CC;
}

h3, h4 {
	color: #CC9999;
}

h5, h6 {
	color: #000000;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	text-decoration: none;

}


h7 {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: 17px;
	color: #ff0000;
	
	/* this section is for the weight of the fond, if you want to make it bold...  the values you can give it are
	bold , bolder, lighter , normal , 100 , 200 , 300, 400, 500, 600, 700, 800, 900 */
	font-weight: normal;
}

/* this is for the links.. in their original state ..... you can add atributes to it from the other sections such as
font family, font weight, font size... etc if you want it to be different than the rest of the text on you page */
a {
	color: #0066FF;
	text-decoration: none;

/* this is for the links.. in once they've been visited ..... you can add atributes to it from the other sections such as
font family, font weight, font size... etc if you want it to be different than the rest of the text on you page */
}
a:visited {
	color: #990099;

/* this is for the links.. on mouseover state ..... you can add atributes to it from the other sections such as
font family, font weight, font size... etc if you want it to be different than the rest of the text on you page */
}
a:hover {
	color: #99CC33;

/* this is for the links.. in their active state.. you should leave this the same as "a" otherwise you'll confuse your visitors
 ..... you can add atributes to it from the other sections such as
font family, font weight, font size... etc if you want it to be different than the rest of the text on you page */
}
a:active {
	color: #0066FF;
}

/* This is the tables section...... the part you're most cocerned with.. again, I've explained the attributes in the above sections
 */
td, th {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 11.5px;
	font-style: normal;
	line-height: 17px;
	color: #000000;
	
	/* this section is for the weight of the fond, if you want to make it bold...  the values you can give it are
	bold , bolder, lighter , normal , 100 , 200 , 300, 400, 500, 600, 700, 800, 900 */
	font-weight: normal;
}

/* beleive it or not that's all there's to CSS, Now you don't ever have to pay anyone to do it for you :D, there are a bunch of 
you can do to set tables and stuff too, but you'd have to redesign your whole site, so it's not worth it... personally I hate using
CSS to define tables.... */
