/*This style sheet is to format the site's main Navbar*/
p.navbar
	{/*This puts the basic navbar background in place for the links to build upon*/
		margin-left:50px;
		margin-bottom: 20px;
		margin-top: 0px;
		border: none;
		width: 590px;
		background-color:inherit;
		background-image: url(../images/navbar.gif);
		text-align: center;
		font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
		font-weight:bold;
		color:black;
	}
/*This next sequence of contextual selector sets the display format for the links*/
p.navbar a:link
	{
		color: black;
		background-color:inherit;
		text-decoration: none;
		margin: 0px 20px 0px 20px;
		font-weight: inherit;
		font-family:inherit;
		background-image: url(../images/navbar.gif);
	}
p.navbar a:visited
	{
		color: black;
		background-color:inherit;
		text-decoration: none;
		margin: 0px 20px 0px 20px;
		font-weight: inherit;
		font-family:inherit;
		background-image: url(../images/navbar.gif);
	}
p.navbar a:active
	{
		color: black;
		text-decoration: none;
		margin: 0px 20px 0px 20px;
		font-weight: inherit;
		font-family:inherit;
	}
p.navbar a:hover
	{/*The hover format is the same as the above selectors except the background graphic is different.*/
		color: black;
		background-color:inherit;
		text-decoration: none;
		margin: 0px 20px 0px 20px;
		font-family: inherit;
		font-weight: inherit;
		background-image: url(../images/navbarhover.gif);
	}
#idnavlink
	{/*This ID is used to put a silver background on the link for the current page*/
		background-image:none;
		background-color: silver;
	}
a:hover#idnavlink
	{/*This ID is used to make the current page link still display consistentantly with the other links on the Navbar when the mouse is hovered instead of keeping the fixed background*/
		background-image:url(../images/navbarhover.gif);
	}
a.hidden
	{/*This is a class to hide links temporarily when they are not wanted*/
		visibility:hidden;
	}
