.menu_shop {width:830px; height:30px; font-size:13px; position:relative; z-index:100;}
/* hack to correct IE5.5 faulty box model */
* html .menu_shop {width:831px; w\idth:830px;}
/* remove all the bullets, borders and padding from the default list styling */
.menu_shop ul {padding:0;margin:0;list-style-type:none;}
.menu_shop ul ul {width:100px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu_shop li {height:30px;position:relative; text-align:center; float:left;}
/* style the links for the top level */
.menu_shop a, .menu_shop a:visited {
	display:block;
	font-size:12px;
	text-decoration:none; 
	color:#fff; 
	padding:0px 10px;
	height:30px; 
	border:0px solid #FFFFFF; 
	line-height:30px;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu_shop a, * html .menu_shop a:visited {width:100px; w\idth:60px;white-space: nowrap}

/* style the second level background */
.menu_shop ul ul a.drop, .menu_shop ul ul a.drop:visited {background:#d4d8bd;}
/* style the second level hover */
.menu_shop ul ul a.drop:hover{background:#d66eb4;}
.menu_shop ul ul :hover > a.drop {background:#d66eb4;}
/* style the third level background */
.menu_shop ul ul ul a, .menu_shop ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover */
.menu_shop ul ul ul a:hover {background:#b2ab9b;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu_shop ul ul {visibility:hidden;position:absolute;height:0;top:30px;left:0; width:149px;border-top:1px solid #FFF;}
/* another hack for IE5.5 */
* html .menu_shop ul ul {top:22px;t\op:23px;}

/* position the third level flyout menu */
.menu_shop ul ul ul{left:149px; top:-1px; width:149px;}

/* position the third level flyout menu for a left flyout */
.menu_shop ul ul ul.left {left:-149px;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu_shop table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level links */
/*.menu_shop ul ul a, .menu_shop ul ul a:visited {background:#a7a7a7; color:#000; height:auto; line-height:1em; padding:5px 10px; width:128px;border-width:0 1px 1px 1px;}*/
.menu_shop ul ul a, .menu_shop ul ul a:visited {background:#a7a7a7; color:#000; height:auto; line-height:1em; padding:8px 10px; width:128px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .menu_shop ul ul a, * html .menu_shop ul ul a:visited {width:150px;w\idth:128px;}

/* style the top level hover */
.menu_shop a:hover, .menu_shop ul ul a:hover{color:#fff; background:#ac69cb;}
.menu_shop :hover > a, .menu_shop ul ul :hover > a {color:#fff;background:#ac69cb;}

/* make the second level visible when hover on first level list OR link */
.menu_shop ul li:hover ul,
.menu_shop ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu_shop ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu_shop ul :hover ul :hover ul{ visibility:visible;}