/*	File: styles03.css
	Location: C:\Documents and Settings\Jeff Bangert.D430\My Documents\My Web Sites 2\fromhere02
	Purpose: CSS styles for fromhere.
	Created: 06/28/04. Last change: 07/05/04. Status: UC.
	Author: Jeff Bangert  jeff@ku.edu  fromheretofaraway.com
	
	Goals:
	  01. Understand all colors. OK
	  02. All a: OK
	  03. Remove link underline. OK
	  		text-decoration: none
	  04. Choose p color. OK
	  05. Visited color not right. Check other sites. OK
	  		Visited same as link.
      06. Remove unused styles.
*/

a:link { 
	color: #cc0000;
	text-decoration: none;
}

a:visited { 
	color: #cc0000;
	text-decoration: none;
}

p { 
	color: #666666;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 13px;
}

.title {
	color: #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: italic;
}
