.custom-menu {
            /* structural css */
            display: none;
            z-index: 1000;
            position: absolute;
            overflow: hidden;
        }

.custom-style{
            /* stylistical css */
            white-space: nowrap;
            font-family: verdana;
            font-size:13px;
            color: #333;
            border-radius: 2px;
            
            border: solid 1px #ddd;        
            background-color: #FFF;            
            padding: 0;            
            margin: 0;
            -webkit-box-shadow: 10px 10px 20px 0px rgba(119,119,119,1);
            -moz-box-shadow: 10px 10px 20px 0px rgba(119,119,119,1);
            box-shadow: 10px 10px 20px 0px rgba(119,119,119,1);            
        }

.custom-style li {
            padding: 3px 15px 5px 15px;
            cursor: pointer;
            list-style-type: none;
        }

.custom-style li:hover {
            background-color: #EEE; /* DEF */
        }
        
.custom-style li.image{
            background-repeat: no-repeat;
            background-position: 8px 5px;
        }    