

.menu{
list-style-type: none;
margin: 0;
padding: 0;
width: 250px;
}

.menu li a{
display: block;
color: white;
width: 100%;
padding: 2px 4px;
text-decoration: none;
font-weight: bold;
background-color: #78BF45;
border: 1px solid #78BF45;
text-decoration:none;
}

.menu li a:hover{
color: black;
background-color: #669900;
border-style: outset;
}

html>body .menu li a:active{ /* Apply mousedown effect (non IE browsers only) */
border-style: inset;
}
