/* http://www.cssplay.co.uk/menus/final_drop.html */
/*26130d*/
.menu {width:703px; height:51px; position:relative; z-index:100; font-family:Verdana, sans-serif;
  background: url('/img/bg_leather.jpg') no-repeat;
  text-align: center; 
}
/* hack to correct IE5.5 faulty box model */
* html .menu {width:703px; w\idth:703px;}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:200px;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;width:200px;position:relative;
text-align: center;}

    /* width of mainnav elements */
   .menu ul li#nav-home { width: 100px; /*64px;*/ }
   .menu ul li#nav-about { width: 115px; /*105px;*/ }
   .menu ul li#nav-concierge { width: 205px; /*190px;*/ }
   .menu ul li#nav-destinations { width: 145px; /*130px;*/ }
   /*.menu ul li#nav-catalog { width: 100px; } -- replace other menu widths with commented out ones */
   .menu ul li#nav-contact { width: 115px; /*100px;*/ }

.menu ul ul li { width: 200px; }

/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:13px;text-decoration:none; color:#ffebbb;/* width:138px;*/ /*height:36px;*/
/*  border:1px solid #000; border-width:1px 0 1px 1px; background:#09c;
 padding-left:10px; 
*/ 
 padding-top: 0px;
 height: 51px; line-height:51px;}
  .menu ul ul a, .menu ul ul a:visited { width: 200px; }
  
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu ul ul a, * html .menu ul ul a:visited {
 width:250px; w\idth:200px;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {background:#26130d;}
/* style the second level hover */
.menu ul ul a.drop:hover{background:#26130d;}
.menu ul ul :hover > a.drop {background:#26130d;}
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#26130d;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#26130d;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:51px;left:0; width:200px;border-top:1px solid #000;}
/* another hack for IE5.5 */
* html .menu ul ul {top:50px;t\op:51px;}

/* position the third level flyout menu */
.menu ul ul ul{ left: 200px; top:-1px; width:200px;}

   /* custom to move destination sub-menu further left */
   .menu ul li#nav-destinations ul ul {
     left: -200px;
   }


/* position the third level flyout menu for a left flyout */

.menu ul ul ul.left {left:-200px;
}

/* 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:#26130d; color:#ffebbb; height:auto; line-height:1em; padding:5px 0px 5px 0px; width:200px;border-width:0 1px 1px 1px;}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {width:201px;w\idth:200px;}

/* 
 style the top level hover
 NOTE: Without styling the a:hover, IE6 won't show a drop menu 
*/
.menu a:hover { color:#ffebbb;
 text-decoration: underline; /*background-color: #b7d186;*/
 background: url(/img/spacer.gif);}
.menu :hover > a { color:#ffebbb;
 text-decoration: underline;  /*background:#b7d186;*/
 background: url(/img/spacer.gif);}

	.menu ul ul a:hover{
	 color:#ffebbb;
	 text-decoration: underline;
	 background-color: #26130d;
	}
	.menu ul ul :hover > a {
	 color:#ffebbb;
	 text-decoration: underline; 
	 background:#26130d;
	}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}
