/* ================================================================ 
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.
=================================================================== */

.dropmenu {
width:730px; 
font-size:0.85em;
float:left;
margin-left: 15px;
position:relative;
z-index:100;
	border-color: #000;
	border-width: 1px;
}
/* remove all the bullets, borders and padding from the default list styling */
.dropmenu ul {
padding:0;
margin:0;
list-style-type:none;
}
.dropmenu ul ul {

}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropmenu li {
float:left;
margin-right: 20px;
position:relative;
}
.dropmenu li ul li {
 float:none;
 margin-right: auto;
}

.dropmenu li ul.booking li {
 float:none;
 margin-right: auto;
 padding-right: 10px;
}

/* style the links for the top level */
.dropmenu a, .dropmenu a:visited {
display:block;
font-size:14px;
font-weight:bold;
text-decoration:none; 
color:#c00; 
width:100%;
height:30px; 
background:#fff; 
padding-left:5px; 
padding-right:5px; 
line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .dropmenu a, * html .dropmenu a:visited {
width:100%;
w\idth:100px;
}

/* style the second level background */
.dropmenu ul ul a.drop, .dropmenu ul ul a.drop:visited {
background:#00ff00;
	border-color: #000;
	border-width: 1px;

}
/* style the second level hover */
.dropmenu ul ul a.drop:hover{
background:#c9ba65 url(../../graphics/drop.gif) bottom right no-repeat;
}
.dropmenu ul ul :hover > a.drop {
background:#0000ff url(../../graphics/drop.gif) bottom right no-repeat;
}
/* style the third level background */
.dropmenu ul ul ul a, .dropmenu ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.dropmenu ul ul ul a:hover {
background:#b2ab9b;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.dropmenu ul ul {
background-color: #E6E6E6;
visibility:hidden;
position:absolute;
height:0;
top:30px;
left:0; 
min-width: 100%;
border-top: 0;
border-right: 1px solid #000;
border-bottom: 1px solid #000;
border-left: 1px solid #000;

}

/* another hack for IE5.5 */
* html .dropmenu ul ul {
top:29px;
t\op:30px;
}

/* position the third level flyout menu */
.dropmenu ul ul ul{
left:100px; 
top:0;
width:100px;
}
/* position the third level flyout menu for a left flyout */
.dropmenu ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.dropmenu table {position:absolute; top:0; left:0;}

/* style the second level links */
.dropmenu ul ul a, .dropmenu ul ul a:visited
{
	background: #E6E6E6;
	color: #000;
	height: auto;
	line-height: 1em;
	padding: 5px 10px;
	/* yet another hack for IE5.5 */
	width: 100%;
}
* html .dropmenu ul ul a{
min-width:100%;
w\idth:89px;
}


/* style the top level hover */
.dropmenu a:hover, .dropmenu ul ul a:hover{
color:#fff; 
background:#c00;
}
.dropmenu :hover > a, .dropmenu ul ul :hover > a {
color:#fff;
background:#c00;
}

/* make the second level visible when hover on first level list OR link */
.dropmenu ul li:hover ul,
.dropmenu ul a:hover ul{
visibility:visible; 
display: block;

}
/* keep the third level hidden when you hover on first level list OR link */
.dropmenu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.dropmenu ul :hover ul :hover ul{ 
visibility:visible;
}
