/* My CSS File  */

/* define body background color & font */

body
{
	font-family: arial,helvetica;
	font-size: 10pt;
	color: #000000;
	background-color: #FFFFFF;
  /*background-image:url(secondarylogo2.gif);
	background-position:center;
	background-repeat:no-repeat; */
	

}




/* Create a class of link named 'normal' 

a.normal
{
	font-family: arial, helvetica;
	font-size: 10pt;
	font-weight: bold;
	text-decoration: underline;
	
}

a.normal:link
{
	color: #8B4513

}

a.normal:visited
{
	color: #8B4513;

}

a.normal:hover
{
	color: #FF0000;

}

a.normal:active
{
	color: #8B4513;
	
}

*/

/* Create a class of link named 'navbar' for Main Navigation links */


a.navbar
		{
			float: center;
			width: 200px;
			padding: 6px;
			border-right: 1px solid white;
			border-bottom-style:ridge
			font-family: arial,helvetica;
			font-size: 10pt;
			font-weight: bold;
			text-decoration: none;
			text-align: center;
		}
		
		a.navbar:link
		{
			color: #009900;
			background-color: #D4D0C8;
		
		}
		
		a.navbar:visited
		{
			color: #009900;
			background-color: #D4D0C8;
			
		}
		
		a.navbar:hover
		{
			color: black;
			background-color: #009900;
		
		}
		
		a.navbar:active
		{
			color: black;
			background-color: #009900;
		
		}
		




