/* 	This style sheet is very basic. 
   	These four lines are a comment. 
   	Comments in a CSS file must have these asterisk-slash marks 
   	at the beginning (slash-asterisk) and end (asterisk-slash). 
   	*/

body { 
	margin: 10px; 
	background: #666666; 
	font-family: georgia, palantino, times new roman, serif; 
	color: #FFFFFF;  
	} 

/*  	Below are the four link styles.  */

a:link 	{ 
	color: #FF0000; 
	text-decoration: underline; 
	}
a:visited { 
	color: #CCCCCC; 
	text-decoration: underline; 
	}
a:hover { 
	color: #FFFFFF; 
	text-decoration: none; 
	background: #000000; 
	}
a:active {
	color: #CCCCCC; 
	text-decoration: underline; 
	background: transparent; 
	}

/*  	Below, we assign a different font-family to headings.  */

h1,h2,h3 { 
	font-family: verdana, geneva, arial, sans-serif; 
	}

/*  	Below, we create one custom class or style, called "column."  */

.column { 
	background: #FFFFFF; 
	font-family: georgia, palantino, times new roman, serif; 
	color: #000000;  
	} 



/* 	This is the end. A CSS style sheet is just  
   	a plain-text file, saved with the file extension .css  
*/
