#menu5 {
	display: none;
}

#sbshadow2 {
	display: none;
}

/* Child - Level 1 */

#menu ul ul li .hover {   
/* must be postion absolute     */  
	position:absolute;    
/*  width, height, left and top to fill the whole LI item   */    
	left:0;   
	top:0;    
/* display under the Anchor tag */  
	z-index:10;        
        /* hide it by default   */  
	display:none;
} 

#menu ul ul li a{  
/* z-index must be higher than .hover class */  
    z-index:20;               
/* display as block and set the height according to the height of the menu to make the whole LI clickable   */
    position:relative;  
    display: block;
   	padding: 5px 5px 1px 10px;
	text-decoration: none;
}  

#menu ul li {
	position: relative;
}     

#menu ul ul a {
   	padding: 5px 5px 1px 10px; 
	text-indent: 21px;
}

#menu ul ul a:hover{
	 padding: 5px 5px 1px 10px;
}

#menu ul ul ul a{
	text-indent: 31px;
}

#menu ul ul ul ul a{
	text-indent: 41px;
}

#menu ul ul ul ul ul a{
	text-indent: 51px;
}

#menu ul ul ul ul ul ul a{
	text-indent: 50px;
}

#menu ul ul li {
	display: block;
}

#menu ul ul a:hover {
	display: block;
}

#menu li:hover ul, #menu li.over ul { 
	display: block;
}

/* @end */