/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu {
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;	
	margin:0;
	list-style-type:none;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {	
	width:235px;
	position:relative;	
}
/* style the links for the top level */
.menu a, .menu ul a:visited {
	display:block;
	text-decoration:none;
	color:#000;	
	/*background:#FFF;*/	
}
/* a hack so that IE5.5 faulty box model is corrected */
.menu ul a, .menu ul a:visited {
	width:235px;
}
/* style the third level background */
/*.menu ul ul ul a, .menu ul ul ul a:visited {
	background:#FFF
}*/
/* style the third level hover */
.menu ul ul ul a:hover {
	background:#ccc;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	display: none;
	position:absolute;
	left:235px;
}
/* position the third level flyout menu */
.menu ul ul ul{	
	left:215px;
	top:0px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul.left {
	left:-235px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	/*position:absolute; */
	top:0; 
	left:0;
	border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	/*background:#FFF;*/
	/*color:#000;*/
	height:auto;
}
/* style the top level hover */
.menu ul a:hover, .menu ul ul a:hover{
	/*color:#000;*/ background:#ddd;
}

/* make the second level visible when hover on first level list OR link*/
.menu ul li:hover ul, .menu ul a:hover ul{
	display: block;
}
/**/
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	display: none;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{
	display: block;
}
/**/
/*start my*/

.menu ul:hover ul:hover ul ul{
	display: none;
}
.menu ul:hover ul:hover ul:hover li:hover ul{
	display: block;
}