#category ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 150px; /* Width of Menu Items */
    border-bottom: 1px solid #fff;
    }

#category ul li {
    position: relative;
	bottom: auto;
	width: 150px; /* Width of Menu Items */
    }
    
#category li ul {
    position: relative;
    left: 0px; /* Set 1px less than menu width */
    top: 0;
    display: none;
    }

/* Styles for Menu Items */
#category ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    background: #19476D; /* IE6 Bug */
	font-weight:bold;
	border-bottom:#fff solid 1px;
	padding:5px 7px 5px 7px;
    }
#category ul li a img { border:none; padding-right:5px; }
/* Fix IE. Hide from IE Mac \*/
* #category ul li { float: left; height: 1%; }
* #category ul li a { height: 1%; }
/* End */

#category ul li a:hover { color: #00BFF3; } /* Hover Styles */
        
#category li ul li a { background:#8CA4B6; padding-left:22px; } /* Sub Menu Styles */
#category li ul li a:hover { color:#273740; } 

/*  #category li:hover ul,#category li.over ul { display: block; }  */
#category li.over ul { display: block; } /* The magic */

#category .no_sub_menu a { padding-left:22px; }

#category ul li ul li.select a { color:#273740; }
