@charset "iso-8859-1";
/*
*********************
STYLESHEET.CSS
*********************
Used by Tom Hince's Wild Rose B&B website
*/

/* Use Arial font, Black text on White background, with BCKGD.JPG as the background image */
BODY
	{
	background-color: #FFFFFF;
	color: #000000;
	font-family: arial,helvetica,geneva,sans-serif;
	background-image:url(bckgd.jpg) 
	}

	
/* Use arial, or something similar for all the following tags */
P,H1,H2,H3,H4,H5,TD,TH,LI
	{font-family: arial,helvetica,geneva,sans-serif}


/* **********************************************************************************
These are user-defined styles, to make formatting easier and customized
EXAMPLES:
	The following will center and indent text a lot more efficiently than a bunch of <blockquote> tags
			<P Class="indent_center">some text ...</P>
	The following creates a purplish-blue header. It is used in WEBDOC11.HTM		
			<h2 class="darkblue">Speaking Engagements</h2>
*/

.indent_center	{margin-left:4%; margin-right:4%}
.indent_big		{margin-left:5%}
.indent_small	{margin-left:0.8em}
.darkblue {color:#000080}
/* ********************************************************************************** */

/* These commands control the colors for hyperlinks */
A:link
	{color: #000080; text-decoration: underline}
A:visited
	{color: #000080; text-decoration: underline}
A:active
	{color: #000080; text-decoration: underline}
A:hover
	{color: #FFFF99; background-color: #000080; text-decoration: underline}
	
	
