/* Final CSS Vertical Menu! */ 
#menuv_nl ul { 
    margin: 0; 
    padding: 0; 
    list-style: none; 
    width: 200px; /* Width of Menu Items */ 
    height: 37px; 
    color: white; 
} 
#menuv_nl ul li { 
    position: relative; 
    height: 37px; 
} 
#menuv_nl li ul { 
    position: relative; 
    left: 0px; /*Set 1px less than menu width */ 
    top: 0px; 
    display: none; 
    height: 37px; 
} 
#menuv_nl li ul:hover { 
    display: block; 
} 
#menuv_nl li:hover ul { 
    visibility:visible; 
} 
#menuv_nl li:hover>ul { 
    visibility:visible; 
} 
#menuv_nl ul ul { 
    visibility:hidden; 
} 
/* Fix IE. Hide from IE Mac */ 
* html #menuv_nl ul li { float: left; height: 1%; } 
* html #menuv_nl ul li a { height: 1%; } 
/* End */ 
/* Make-up syles */ 
#menuv_nl ul, li { 
    margin: 0 0 0 0; 
} 
/* Styles for Menu Items */ 
#menuv_nl ul a { 
    font-family: Verdana, Arial, Helvetica, sans-serif; 
     font-weight: bold; 
    font-size: 11px; 
    display: block; 
    text-decoration: none; 
    color: white; 
    font-size: 11px; 
    padding: 10px; 
    padding-bottom: 14px; 
    padding-left: 30px; 
    background-image: url('/images_up/customcraftworks.nl/design/nav_normal.jpg'); 
    border-bottom: 0; 
} 
/* Hover Styles */ 
#menuv_nl ul a:hover { 
    font-family: Verdana, Arial, Helvetica, sans-serif; 
    font-weight: bold; 
    font-size: 11px;     
    color: white; 
    background-image: url('/images_up/customcraftworks.nl/design/nav_hover.jpg'); 
} 
/* Sub Menu Styles */ 
#menuv_nl li ul a { 
    text-decoration: none; 
    color: #77F; 
    background: #90C84B; /* IE6 Bug */ 
    padding: 5px; 
    border-bottom: 0; 
} 
/* Sub Menu Hover Styles */ 
#menuv_nl li ul a:hover { 
    color: #E2144A; 
    background: #FFCC2A; 
} 
