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