@media print
{
	#navBar
	{
		display: none;
	}
}
@media screen
{
	#navBar,
	#navBar ul,
	#navBar ul li
	{
		margin: 0px;
		padding: 0px;
		height: 20px;
	}
	#navBar ul li a
	{
		display: block;
		height: 20px;
	}
	#navBar
	{
		position: absolute;
		bottom: 0px;
		left: 0px;
		height: 30px;
		width: 983px;
		overflow: hidden;
		cursor: default;
		background: black url(images/menubg.png) repeat-x;
		border: solid 1px black;
		border-bottom-width: 0px;
		overflow: hidden;
	}
	#navBar ul li
	{
		float: left;
		list-style: none;
	}
	#navBar ul li a
	{
		color: white;
		padding: 5px;
		margin: 4px;
		cursor: pointer;
		font-weight: bold;
		font-size: 9pt;
		border: 1px solid transparent;
		text-decoration: none;
	}
	
	#navBar ul li a.selected,
	#navBar a:link:active,
	#navBar a:link:hover,
	#navBar a:visited:active,
	#navBar a:visited:hover
	{
		color: black;
		background-color: white;
		border: 1px solid black;
		border-bottom-width: 0px;
	}
}