

<! DOCTYPE html PUBLIC "-//w3c/ /dtd XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta http-equiv="Content-Type" content="text/html;
		charset=UTF-8" />
	<title>Styles</title>

<link rel="stylesheet" type="text/css" href="Styles.css"> 
<style type="text/css">
	

</head>

<!--  <BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#800080"> -->

<!--  This will be the Style Css page  -->

/* The entire page/ general directions */

			
/*This is the Nav Bar boxes */
#sidebar a	{
				display: block;
				padding: 3px 3px 3px 3px;  /* top, right, bottom, left */
				background-color: #4B0082;   /* Navy Box #000080*/
				color: #FFFFFF;             /* color of text - White */
				font-size: 10pt;            /* size of text in box */
				font-family: Tahoma, Arial, Veranda, sans-serif;
				font-style: normal;
				font-weight: bold;
				list-style-type: none;
				text-decoration: none;
				border-bottom: 1px #FFFFFF solid;     /* color is white */
			}


/* this is the link hover */
#sidebar a:hover	{
						background-color: #EBEBEB;      /* color light gray */
						color: #4B0082; 				/* text color #6495ED*/
						border-right: 3px #9999 solid;
						border-bottom: 3px #8A2BE2 solid;  /* Light Blue #6495ED */
						padding-bottom: 3px;
						list-style-type: none;
						type-style:bold;
					}


/* Code for no bullets in Nav Bar */
#sidebar ul 	{
					margin: 0;
					padding: 0;
					list-style-type: none;
				}



/* body - text attributes */
#mainContent	{
					background-color: #FFFFFF;   /* color is white */
					margin-left: 3em;
					padding: 5px 5px 2px 5px;
					border: 0;
					

					font-family: Tahoma, Arial, Veranda, sans-serif;
					font-color: #0000FF;		/* body text color - Blue */
					font-size: 12pt;
				/* this is for the sidebar */	
					background-color: #FFFFFF;
					margin-left: 2em;
					padding: 1px 1px 0px 1em;
		
				}

h1, h2, h3	{
				font-family: Tahoma, Arial, Veranda, sans-serif;
				font-color: #808000;            /* Green - text color  */
				font-weight: bold;
				font-style: italic;
			}



/* The footer on the bottom */
#footer	{
			Width: 80%;
			margin: 1;
			padding: 10px 0;
			background-color; #FFFFFF; 				/* color is white */
			text-align: left;
			font-family: Tahoma, Arial, Veranda, sans-serif;
			font-color: #00008B;					/* color is Dark Blue */
			font-style: normal;
			font-size: .8em;
		}

/* The footer is in this spot */
.clearfloat	{
				clear: both;
				height: 0;
				font-size: 1px;
			}






</BODY>
</HTML>

