/*this is used for menu bars that don't have dropdowns*/

div#navcontainer{
	padding:0;
	margin:0;
}

#navcontainer ul{
	padding-top:.5em;
	padding-bottom:.5em;
	padding-left:0;
	padding-right:0;
	margin: 0;
	text-indent:0;
	background-color: #990000;
	color: #FFF;
	width: 100%;
	font-family: Verdana, helvetica, sans-serif;
	text-align: center;
}

#navcontainer li{
	text-indent:0;
	padding:0;
	margin:0;
	display: inline;
}
/*why is there no float here? float left makes it not be centered*/

#navcontainer ul a{
	text-decoration: none;
	background-color: #990000;
	color: #fff;
	padding-top:.2em;
	padding-bottom:.2em;
	padding-left:1em;
	padding-right:1em;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff; /* the borders have the same size */
	margin-right: -1px; /* the value has to be like the above but negative */
	font-weight:bold;
	font-size:.6em;
}

#navcontainer ul a:hover{
	background-color: #fff;
	color: #990000;
}

.logo{
	float:left;
	display:block;
	width:200px;
	height:2.4em;
/*	background-image: url('../images/arhs.jpg');
	background-position:top left;
	background-repeat: no-repeat;*/
	padding:0;
	color:#990000;
	text-decoration:none;
}

.logo img{
	border:0;
}

