@charset "utf-8";
/* CSS Document */
/* Multi-level drop-down menu style*/

.menu {
	width:714px; /* Width of the individual coloumns x number-of-columns used to be 595*/
	height:24px; /* height of the display block plus 2px */
	font-size:0.95em;
	color:#FFFFFF; 
	position:relative; 
	z-index:100; /* keeps display above other items */
	border-right:1px solid #000;
	}
	
* html .menu {width:746px; w\idth:745px;}/* hack to correct IE5.5 faulty box model */

.menu ul {padding:0;margin:0;list-style-type:none;}/* remove all the bullets, borders and padding from the default list styling */

.menu ul ul {width:119px;} /* Can't see what this width statement does */

.menu li {/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
	float:left;
	width:119px;	/* Width of the first 4 top-level boxes, but not the fifth? */
	position:relative;
	}
	
.menu a, .menu a:visited {/* style the links for the top level */
	display:block;
	font-size:11px;
	text-decoration:none; 
	color:#fff; /* Text colour white */
	width:108px; /* width of the origonal block - left padding*/
	height:22px; 	/* Height of the display block */
	border:1px solid #000; 
	border-width:1px 0 1px 1px; 
	background:#0085c2; /* Same colour as the lighter blue in the grosvenor tropicals logo */
	padding-left:10px; 
	line-height:21px;	/* Height of the display block above -1px */
	}

* html .menu a, * html .menu a:visited {width:149px; w\idth:138px;}/* a hack so that IE5.5 faulty box model is corrected */

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#b1c3d9;
	}
	
/* style the second level hover */
.menu ul ul a.drop:hover{
	background:#999;
	}
	
.menu ul ul :hover > a.drop {
	background:#999;
	}
	
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#e2dfa8;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#b2ab9b;}


.menu ul ul {/* hide the sub levels and give them a positon absolute so that they take up no room */
	visibility:hidden;
	position:absolute;
	height:0;
	top:23px; /* vertical spacing of 2nd level items below 1st level display blocks */
	left:0; 
	width:119px; /* cant see what this effects yet */
	border-top:1px solid #000;
	}
	
* html .menu ul ul {top:30px;t\op:31px;}/* another hack for IE5.5 */

/* position the third level flyout menu */
.menu ul ul ul{
	left:119px; 
	top:-1px; 
	width:120px; /* width of the top border on the 3rd level items */
	}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-119px; /* negative offset for 3level flyout to the left */
	}

/* 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;}


.menu ul ul a, .menu ul ul a:visited {/* style the second level links */
	background:#b1c3d9; /* Background colour of first column dropdown items */
	color:#000; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:98px;	/* width of the 2nd level items */
	border-width:0 1px 1px 1px;
	}

* html .menu ul ul a, * html .menu ul ul a:visited {width:150px;w\idth:128px;}/* yet another hack for IE5.5 */


.menu a:hover, .menu ul ul a:hover{/* style the top level hover */
	color:#fff; 
	background:#949e7c;
	}
	
.menu :hover > a, .menu ul ul :hover > a {
	color:#fff;
	background:#999;
	}

/* 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;}


