/*	FONT RELATED
--------------------------------------------------------------------------------------------------*/

/*	This will make something bold and a little bigger than the rest of the font around. No color change */
.big {
	font-weight:bold;
	font-size:18px;
	}
	
/* This is for any time we use the term R.A.I.S.E. so it is bold and orange */
.raise {
	color:#FF3300;
	font-weight: bold;
	}
	
/* This is for the first letter of any paragraph to be bold a little bigger and orange */
.first {
	color:#FF3300;
	font-weight: bold;
	font-size:x-large;
	}

/*	This is to make the writing at the copyright items the right color */
.mine {
	color:#FFFFFF;
	font-weight: bold;
	font-size:11px;
	}

/* LINKS:
------------------------------------------------------------------------------------- */

/* 	NAME: NAV
	PURPOSE: This is for the links at the bottom of each page 
			to navigate to various pages on the site. */
a.nav:link { 
	color: #000099;
	text-decoration: none;
	}
a.nav:visited { 
	color: #000099;
	text-decoration: none;
	}
a.nav:hover { 
	color: #FF3300;
	}
a.nav:active { 
	color: #000099;
	text-decoration: none;
	}

/* 	NAME: ME
	PURPOSE: This is for the links at the bottom of each page 
			to contact me, the webmaster. */

a.me:link { 
	color: #FFFFFF;
	}
a.me:visited { 
	color: #666666;
	text-decoration: none;
	}
a.me:hover { 
	color: #000000;
	}
a.me:active { 
	color: #333333;
	text-decoration: none;
	}
	
/*	SITE FOUNDATION:
------------------------------------------------------------------------------------- */

/*	PURPOSE: This is to set the main background color for the page a med grey color */

body
{
background-color: #999999;
}

/*	NAME: MAIN
	PURPOSE: This sets the background image for the table that frames the site. */

.main 
{ 
background-image: url('bg-center.gif')
}


	
/* Some Sample Syntax

body {background-color: tan}
h1 {color:maroon; font-size:20pt}
hr {color:navy}
p {font-size:11pt; margin-left: 15px}
a:link     {color:green}
a:visited  {color:yellow}
a:hover    {color:black}  this is handy
a:active   {color:blue}

*/
