/*  In the body, use the background "images/bg_wood.jpg"  and make font color maroon */ 

body 	{
			background: url(images/bg_wood.jpg);
			font family: saloon; stagecoach; bliss;
			color: maroon;
			font-weight: bold;

		}
	
/* Don't underline links and make links yellow and all visited and active links white & hover links red. */

a 	{		
			text-decoration: none;
		}
a:link {
			color: yellow
		}
a:visited {
			color: white
		}
a:active {		
			color: white
		}
a:hover  {
			color: red
		}

	


/* unlisted lists bullets use "images/shoe tiny.gif" */

ul { 
			list-style-image: url(images/shoe_tiny.gif) 
		}


/*  Make headings Georgia bold in color #D2691E.  If users don't have Georgia use Times New Roman or Times. */

h1 {
			font: 24 pt Georgia, Times New Roman, Times;
   				font-weight: bold;
    			font-color: #D2691E;
		}

h2  {
			font: 15 pt Georgia, Times New Roman, Times;
				font-weight: bold;
				font-color: orange;
		}

	

/*links for table with tan background. Do not underline, links blue, visited and active links purple & hover links brown*/

span.tanlinks a {
			text-decoration: none; 
			color: blue
		}

span.tanlinks a:link {
			color: blue
		}

span.tanlinks a:visited {
			color: purple
		}

span.tanlinks a:active {
			color: purple
		}
span.tanlinks a:hover {
			color: brown
		}


/*font on on wood background Orange */

span.woodfont {
			color: orange
		}

span.woodfont a:link {
			color: yellow
		}
span.woodfont a:visited {
			color: white
		}
span.woodfont a:active {		
			color: white
		}
span.woodfont a:hover  {
			color: red
		}


