
.menu, .menu li ul {
    list-style-type: none;
    margin: 0;
    padding: 0px;
    border: 0;
    width: 130px;
}

.menu li{
    position: relative;
}

.menu li ul { /*SUB MENU STYLE*/
    position: absolute;
    width: 250px; /*WIDTH OF SUB MENU ITEMS*/
    left: 0;
    top: 0;
    display: none;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
}

.menu li a {
    background: blue repeat-x bottom left;
    font: bold 12px Verdana, Helvetica, sans-serif;
    color: white;
    display: block;
    width: auto;
    padding: 5px;
    text-decoration: none;
    border: 0;
    border-bottom: 2px solid white;
    text-decoration: none;
}

.menu li a:visited, .menu li a:active {
    color: white;
    text-decoration: none;
}

.menu li a:hover {
    background: red repeat-x bottom left;
    text-decoration: none;
    color: white;
}

/* Holly Hack for IE \*/
* html .menu li { float: left; height: 1%; }
* html .menu li a { height: 1%; }
/* End */


