/* must be in this order: a:link, a:visited, a:hover, a:active */


a:link {
	color: #585858; 
	text-decoration: none;
	/* All unvisited links will be colored gray */ 
}

a:visited {
	color: ##848484; 
	text-decoration: none;
	/* All visited links will be colored light gray */ 
}

a:hover {
	color: #0000FF; 
	background: rgb(117,255,120); 
	text-decoration: underline;

}

a:active {
	color: #FF0000; 
	/* All active links will be colored red */
}

/* must be in this order: a:link, a:visited, a:hover, a:active */



body {
	font-family: Georgia, Arial, sans-serif;
	font-size: 14px;
	color: rgb(30,30,65);
	line-height: 1.15;
	width: 780px;
	background-color: rgb(0,0,0);
	margin: auto;
	text-align: center;
}




#content {
	width: 780px;
	text-align: left;
	margin: 0 auto;	
}

