	body, table, td, div, textarea, text {
	#background color of the page, in HTML code
	background-color: black;
	
	#font face, generally best to use three seperated by commas
	font-family: sans-serif;
	
	#font size in pixels
	font-size: 20px;
	
	#font color
	font-color: white;
	
	#the "weight" or how bold or light basic text should be (regular is good)
	font-weight: regular;

	#the spacing of the lines on the page - set equal to font-sizw
	line-height: 11px;
	
	#these are the colors that you want the scrollbars to be.
	#experiement with each one to determine which is which
	scrollbar-face-color: black;
	scrollbar-shadow-color: #000000; 
	scrollbar-highlight-color: #000000;
	scrollbar-3dlight-color: black; 
	scrollbar-darkshadow-color: black;
	scrollbar-track-color: black; 
	scrollbar-arrow-color:#000000;}

	A:link {
	#what color and style you want links to appear on your page
	
	font-family: sans-serif;
	font-size: 20px;
	font-weight: regular;
	color: #FFFFFF;
	text-decoration: none;}

	A:visited {
	#what color and style you want links people have already been to on your page
	
	font-family: sans-serif;
	font-size: 20px;
	font-weight: regular;
	color: #FFFFFF;
	text-decoration: none;}

	A:active {
	#active links - dont really know what it is, i generally set this equal to the A:link
	
	font-family: sans-serif;
	font-size: 20px;
	font-weight: regular;
	color: #000000;
	text-decoration: none;}

	A:hover {
	#what color and style you want links to turn when the mouse is above them	
	
	font-family: sans-serif;
	font-size: 20px;
	font-weight: regular;
	color: #999999;
	text-decoration: none;}