#videos li:hover, #videos li.hover  {   
    visibility: visible;  
}  

#videos li { /* all list items */
	position: absolute;   
	list-style: none;
	background-repeat:no-repeat;
	background-color:transparent;
	/*	border:solid red 1px;	*/
	z-index:100;
}

li.videos-root{
	margin: 0px 0px;
	width:46px;
	height:10px;
}
li.videos-menu{  
	width:150px;
	height:49px;
	margin: 10px -66px;
	background-image:url('../../imgs/videos-menu.gif');
	background-position:0 0;
}


li ul { /* second-level lists */
	display: none;
	position:absolute;
	height:0px;
	left: 0px;
	width:0;
	/*	border:solid blue 1px;		*/
}
li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;

}
li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
