﻿/* ================================================================ 
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.
=================================================================== */
body {
	behavior:url("/csshover3.htc");
}

#nav-tabs {
	background-color:#000;
	font-size:12px;
	position:relative;
	width:800px; 
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
#nav-tabs ul {
	background-color:#000;
	list-style-type:none;
	margin:0 auto;
	padding:0 0 0 30px;
	text-align:center;
}
#nav-tabs ul ul {
	width:120px;
	text-align:left;
	margin:0 0 0 3px;
	padding:0
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#nav-tabs li {
	display:inline;	
	float:left;
	position:relative;
	padding-left:0;
	margin-left:0;
}

#nav-tabs li li {
	border:1px solid #b18c3c;

}

/* style the links for the top level */
#nav-tabs a, #nav-tabs a:visited {
	display:block;
	text-decoration:none; 
	color:#fff; 
}

#nav-tabs li a, #nav-tabs li a:visited {
cursor:default;
}

#nav-tabs li li a, #nav-tabs li li a:visited 
{
border:0;     
cursor:pointer;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html #nav-tabs a, * html #nav-tabs a:visited {
width:120px;
w\idth:92px;
}

/* style the second level background */
#nav-tabs ul ul a.drop, #nav-tabs ul ul a.drop:visited {
background:#b4a69b;

}
/* style the second level hover */
#nav-tabs ul ul a.drop:hover{
background:#d7cdc4;
}
#nav-tabs ul ul :hover > a.drop {
background:#d7cdc4;
}
/* style the third level background */
#nav-tabs ul ul ul a, #nav-tabs ul ul ul a:visited {
background:#b4a69b;
}
/* style the third level hover */
#nav-tabs ul ul ul a:hover {
background:#d7cdc4;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#nav-tabs ul ul {
visibility:hidden;
position:absolute;
height:0;
top:26px;
left:0; 
}
/* another hack for IE5.5 */
* html #nav-tabs ul ul {
top:26px;
t\op:27px;
}

/* position the third level flyout menu */
#nav-tabs ul ul ul{
left:158px; 
top:0;
width:150px;
}
/* position the third level flyout menu for a left flyout */
#nav-tabs ul ul ul.left {
left:-158px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#nav-tabs table {position:absolute; top:0; left:0;}

/* style the second level links */
#nav-tabs ul ul a, #nav-tabs ul ul a:visited {
background:#b4a69b; 
font-size:11px;
color:#fff; 
height:auto; 
line-height:1em; 
padding:5px 10px 5px 20px; 
width:139px;
text-indent:-10px;	
	
border-right:1px solid #d7cdc4;
/* yet another hack for IE5.5 */
}
* html #nav-tabs ul ul a{
width:150px;
w\idth:139px;
}


/* style the top level hover */
#nav-tabs a:hover{
color:#fff; 
background:#d7cdc4;
}
#nav-tabs :hover > a {
color:#fff;
background:#d7cdc4;
}

/* style the second level hover */
#nav-tabs ul ul a:hover{
color:#6c6054; 
background:#d7cdc4;
}
#nav-tabs ul ul :hover > a {
color:#6c6054;
background:#d7cdc4;
}

/* make the second level visible when hover on first level list OR link */

#nav-tabs ul li:hover ul,
#nav-tabs ul a:hover ul{
visibility:visible; 
}

/* keep the third level hidden when you hover on first level list OR link */
#nav-tabs ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#nav-tabs ul :hover ul :hover ul{ 
visibility:visible;
}

/* keep the FOURTH level hidden when you hover on SECOND level list OR link */
#nav-tabs ul :hover ul :hover ul ul{
visibility:hidden;
}

/* make the FOURTH level visible when you hover over THIRD level list OR link */
#nav-tabs ul :hover ul :hover ul :hover ul{ 
visibility:visible;
}

