/* ================================================================ 
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 {
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:105px; 
height:25px; 
border:0px solid #000;
border-width:1px 1px 0 0;
border:0;
background:#FFF; 
padding-left:10px; 
line-height:29px;
font-weight:normal;
}
.nav ul li a span {display:none;}
.nav a#home {
	background: #FFF url('/img/menu_home.gif') 0 0 no-repeat;
	width:50px;
	}
.nav a#home:hover {background-position: 0 -25px;}
.nav a#event {
	width:55px;
	background: #FFF url('/img/menu_event.gif') 0 0 no-repeat;
	}
.nav a#event:hover {background-position: 0 -25px;}
.nav a#newquay {
	width:75px;
	background: #FFF url('/img/menu_newquay.gif') 0 0 no-repeat;
	}
.nav a#newquay:hover {background-position: 0 -25px;}
.nav a#packages {
	background: #FFF url('/img/menu_packages.gif') 0 0 no-repeat;
	width:80px;
	}
.nav a#packages:hover {background-position: 0 -25px;}
.nav a#forum {
	background: #FFF url('/img/menu_forum.gif') 0 0 no-repeat;
	width:55px;
	}
.nav a#forum:hover {background-position: 0 -25px;}
.nav a#extras {
	background: #FFF url('/img/menu_extras.gif') 0 0 no-repeat;
	width:50px;
	}
.nav a#extras:hover {background-position: 0 -25px;}

/* a hack so that IE5.5 faulty box model is corrected */
* html .nav a, * html .nav a:visited {
width:105px;
w\idth:105px;
}

/* 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:25px;
left:0; 
width:105px;
}
/* another hack for IE5.5 */
* html .nav ul ul {
top:25px;
t\op:25px;
}

/* 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:#FFF;
color:#2BA5ED; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:105px;
font-weight:normal;
/* yet another hack for IE5.5 */
}
* html .nav ul ul a{
width:105px;
w\idth:105px;
}


/* style the top level hover */
.nav a:hover, .nav ul ul a:hover {
color:#000; 
background:#FFF;
}
.nav :hover > a, .nav ul ul :hover > a {
color:#000;
background:#FFF;
}

/* 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; 
}
