#menu {
width: 8em; /* set width of menu */
height:2em;
background: #cfcfcf;
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: solid;
border-color: #ccc #888 #555 #bbb;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
color: #064a3d;
background: #e5eeec;
text-decoration: none;
}

#menu a:hover {
color: #e5eeec;
background-color: #064a3d;
}