@charset "UTF-8";
/* CSS Document */



/* ---------------CLASSES----------------
classes define how all ocurances of a particular tag will look. note that there is not a . at the begining of these definitions. This is how HTML knows to place this style on anything with the listed tag.

the body class applies to your entire document*/
body {
	font-family:Verdana, Arial, Helvetica, sans-serif; /* font family would determine the font that is used for all text on your site*/
	background-color:#999999; /*this will set the background color of your website to medium grey*/
	}


/* the a class applies to all links*/
a {
	color:#FF0000; /* this would make all the links on your site Red change this number to get different colors*/
	text-decoration:none; /*this removes the underline that will default for all links*/
	}

/* a:hover class applies to what your links look like when a user scrolls over them. the following code would make your links bold and dark red when they were rolled over*/
a:hover {
	font-weight:bold; /* this sets your text to bold */
	color:#990000;
	}

/* a:visited is similar to to a:hover but this is what your links will look ike after being visited once. */	
a:visited {
	color:#990000;
	}
	
	
/* other classes include but are not limited to
	-img (for all images)
	-td (all table cells)
	-p (all paragraphs of text)

you can asign a style to any tag that is used on your website
*/

