/* Make all body text beige 12-point palatino linotype.  */

body { background-color: #FFFFCC;
	  
		 font-size: 12pt;
		 font-family: palatino linotype;
		 color: #990033;		 
		 
		 }
		 
	 
/* Make headings Verdana bold. If user doesn't have Verdana, use Arial then Sans Serif*/
h1 {
	 font: 44pt palatino linotype;
	 font-weight: bold;
	 }
	 
h2 {
	 font: 24pt palatino linotype;
	 font-weight: bold;
	 }
	 
	h3 {
	 font: 18pt palatino linotype;
	 font-weight: bold;
	 }

	h4 {
	 font: 14pt palatino linotype;
	 font-weight: bold;
	 }

	
/*Don't underline links etc.*/

/* Don't underline links, and make all links Blue. Make links flash red when activated.  
Make visited links maroon*/

a	{text-decoration: none;}
a:link {color: Blue;}





a:visited { color: #000066; }
a:hover { color: #FF0000; }


