<style type="text/css">
.ourmenu{
list-style-type: none;
margin: 0;
padding: 0;
width: 100px;
}

.ourmenu li a{
display: block;
width: 100%;
padding: 1px 5px;
text-decoration: none;
font-weight: bold;
font-size: 10px;
background-color: pale red;
border: 2px solid #993300;
text-decoration:none;
}

.ourmenu li a:hover{
color: black;
background-color: silver;
border-style: outset;
}

html>body .ourmenu li a:active{ /* Apply mousedown effect (non IE browsers only) */
border-style: inset;
}

</style>