/* define the needed css properties for menu bar across each page */

#navbarmenu {
    background-color:#B57F6D;
	border-top:   1px solid #550000;
	border-left:  1px solid #000000;
	border-right: 1px solid #000000;
}

ul#horiznav, #horiznav ul { /*remove the bullets from the dropdown ul*/
margin:0;
padding: 0px 5px 0px 5px;
list-style-type:none;
height:30px;
}

#horiznav li {
float:left;
width: 100%;
position:relative;  /*set position:relative as the start point for absolutely positioning the dropdown*/
}

#horiznav li a {
display:block;
width: 100%;
line-height:30px;
text-align:center;
color:white;
font-size:14px;
font-weight: bold;
text-decoration:none;
background-color:#B57F6D;
border:0px;
}

#horiznav li a:hover {
color:white;
background-color:#770000;
}
