/* Navigation Menu */ .nav ul{ font: bold 13px arial; padding-left: 0; margin-left: 0; height: 20px; } .nav ul li{ list-style: none; display: inline; } .nav ul li a{ padding: 2px 0.5em; text-decoration: none; //float: left; color: black; background-color: #dddddd; border: 1px solid black; width: 80px; text-align:center; } .nav ul li a:hover{ background-color: #444444; text-decoration: none; color: white; border-style: outset; } html>body .nav ul li a:active{ /* Mousedown effect only on NON IE browsers */ border-style: inset; } 
