@charset "utf-8";
/* CSS Document */


/* ================================================================ 
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-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.menu {
	height:63px;
	position:relative;
	z-index:100;
	margin-left:0px;
}

/* hack to correct IE5.5 faulty box model */

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



/* 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:166px;
position:relative;
	padding:0px;
	margin:0px;
}


/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#ffffff;
	width:166px;
height:35px;
	border:none;
	padding:18px 0px 0px 0px;
	letter-spacing:0px;
	text-align:center;
	text-transform:uppercase;
	
}

.menu a.active {
}


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

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:url(../images/nav-trans-arrow.png) ;

	color:#ffffff;
}
	
	
/* style the second level hover */
.menu ul ul a.drop:hover{
	background:url(../images/nav-trans-arrow-hover.png) ;
	color:#ffffff;
}

.menu ul ul :hover > a.drop {
	background:url(../images/nav-trans-arrow-hover.png)top ;
	color:#ffffff;
}




/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:53px;
	left:0; 
	width:166px;

	
}

/* another hack for IE5.5 *  -- fix the top of the bottom drop out here for IE6*/
* html .menu ul ul {
	top:53px;
	t\op:53px;
}

/* position the third level flyout menu */
.menu ul ul ul{
	left:166px;
	top:0px;
	width:166px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left:-166px;
}

/* style the table so that it takes no part 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:url(../images/trans.png) repeat;
	color:#ffffff; 
	padding:15px 0px 15px 10px;
	width:156px;
	border-top:solid 1px #162433;
	text-align:left;
	font-size:11px;
	height:15px;
}

/* yet another hack for IE5.5   - fix the width here for IE6 - should be minus the padding from above*/
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:166px;
	w\idth:166px;
}



/* style the top level hover */

/*TOP LEVEL HOVER*/
.menu a:hover{
	color:#f6f5b7;
	background:url(../images/nav-hover.png) repeat-x top;
}

/*SECOND LEVEL HOVER*/
.menu ul ul a:hover{
	color:#f6f5b7;
	border-top:solid 1px #A29060;
			background:url(../images/2nd-level.png) repeat-x top;

}

/*TOP LEVEL for FF IE7 browsers*/
.menu :hover > a {
	color:#f6f5b7;
}

/*2ND LEVEL TOP LINKS*/
.menu ul ul :hover > a{
	color:#f6f5b7;
		background:url(../images/2nd-level.png) repeat-x top;

}
	

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






