*
{
margin:0;
padding: 0;
}

.menudiv
{
background: rgb(100,50,0); /* background color */
position: absolute;		 /* left and right edge will be 
						20% of containing div's position ie BAR centered */
left: 20%;
right: 20%;
height: 1.4em;
padding-top:0.2em;
text-align: center;	 /* links WITHIN the bar centered */
}

.menudiv a /* style links in a menudiv class ONLY */
{
font-family:  Verdana, Geneva, sans-serif;
color: rgb(255,200,50);
text-decoration: none;  /* remove normal underlining */
border: 1px red solid; /* border size, color and line type */

}

.menudiv a:hover
{
color: rgb(255,200,255);
}
