

/* dropdown */


ul {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100px;
        background: #624D48;
        filter:alpha(opacity=80);
        opacity: 0.8;
        -moz-opacity:0.8;
        }

ul li {
        position: relative;
        }

li ul {
        position: absolute;
        left: 0px;
        top: 21px;
        display: none;
        }
ul li a {
        display: block;
        text-decoration: none;
		font-size:11px;
        color: #FFF;
        padding: 5px;
        border-bottom: 0;

        }
ul li a:hover {
        color: #CCC;
        }

ul {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100px;
        }
li:hover ul, li.over ul { 
        display: block; }
/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */



