/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.nav {
width:348px;
font-size:0.85em;
font-family: verdana,helvetica,arial,sans-serif;
position:relative;
z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.nav ul {
padding:0;
margin:0;
list-style-type:none;
}
.nav ul ul {
width:105px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.nav li {
float:left;
position:relative;
}
/* style the links for the top level */
.nav a, .nav a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#2BA5ED;
width:60px;
height:17px; 
border:0;
line-height:29px;
font-weight:normal;
}
.nav ul li a span {display:none;}
.nav a#nav-home { width:42px; background-image: url(/img/menu_home.gif); }
.nav a#nav-attractions { width:88px; background-image: url(/img/menu_attractions.gif); }
.nav a#nav-location { width:71px; background-image: url(/img/menu_location.gif); }
.nav a#nav-howtobook { width:97px; background-image: url(/img/menu_howtobook.gif); }
.nav a#nav-extras { width:50px; background-image: url(/img/menu_extras.gif); }

/* a hack so that IE5.5 faulty box model is corrected */
* html .nav a, * html .nav a:visited {
width:60px;
w\idth:60px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.nav ul ul {
visibility:hidden;
position:absolute;
height:0;
top:16px;
left:0;
width:105px;
}
.nav ul ul.last { left: -46px; } /* hack to move final menu column inline with page */
/* another hack for IE5.5 */
* html .nav ul ul {
top:21px;
t\op:21px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.nav table {position:absolute; top:0; left:0;}

/* style the second level links */
.nav ul ul a, .nav ul ul a:visited {
background:#d9d9d9;
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:105px;
font-weight:normal;
border-width:0 1px 0 1px;
border-style:solid;
border-color:#000;
/* yet another hack for IE5.5 */
}
.nav ul ul a.lastlink { border-bottom-width:1px; }
* html .nav ul ul a{
width:105px;
w\idth:105px;
}


/* style the top level hover */
.nav a:hover, .nav ul ul a:hover {
color:#fff; 
background:#ff0393;
}
.nav :hover > a, .nav ul ul :hover > a {
color:#fff; 
background:#ff0393;
}

/* make the second level visible when hover on first level list OR link */
.nav ul li:hover ul,
.nav ul a:hover ul {
visibility:visible; 
}
