/* ================================================================ 
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/flyout_4level.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
.menu {
width:225px; 
font-size:12px;
font-family: Verdana, Arial, Helvetica, sans-serif;
margin-top: 0px;
padding: 0;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
position:relative;
z-index:500;
padding:0;
margin:0;
list-style-type:none;
width:225px;
}
/* style the list items */
.menu li {
background: none;
height:30px;
/* for IE7 */
float:left;
}
/* style the first level hover */
.menu ul a.drop:hover{
color: #fff;
}

.menu ul :hover > a.drop {
color: #fff;
}

/* style the second and third level hovers */
.menu ul ul a.drop:hover, .menu ul ul ul a.drop:hover{
}

.menu ul ul :hover > a.drop, .menu ul ul ul :hover > a.drop {
}

/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu a, .menu a:visited {
display:block; 
text-decoration:none;
height:30px;
line-height:29px;
width:205px;
color:#d6caa6;
padding-left:10px;
padding-right: 10px;
border: 0px;
text-align: right;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {width:225px; w\idth:205px;}
/* style the link hover */
* html .menu a:hover {color:#fff; background:none; position:relative;}

.menu li.tall {
	height: 50px;
}
.menu li.tall a, .menu li.tall a:visited, .menu li.tall a:hover {
	padding-top: 6px;
	line-height: 16px;
}

.menu li:hover {position:relative;}

/* For accessibility of the top level menu when tabbing */
.menu a:active, .menu a:focus {color:#fff; background:none;}

/* retain the hover colors for each sublevel IE7 and Firefox etc */
.menu li:hover > a {color:#fff; background:none;}
 
/* hide the sub levels and give them a position absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
top:-30px;
width:200px;
/* set up the overlap (minus the overrun) */
left:195px;
/* set up the overrun area */
padding:30px;
/* this is for IE to make it interpret the overrrun padding */
background:transparent url(../images/transparent.gif);
}

/* style the second level links */

.menu ul ul a, .menu ul ul a:visited {
background:#766b4a; 
line-height:29px; 
padding-left:10px; 
width:190px;
display:block;
text-decoration:none;
text-align: left; 
color:#d6caa6;  
height:30px;
border: 3px solid #3f3f2f; 
}
* html .menu ul ul a, * html .menu ul ul a:visited {
width: 206px;
w\idth: 190px;
}

.menu ul ul.long {
width: 230px;
}

.menu ul ul.long a, .menu ul ul.long a:visited { 
padding-left:10px; 
width:230px;
}
* html .menu ul ul.long a, * html .menu ul ul.long a:visited {
width: 246px;
w\idth: 230px;
}

/* style the top level hover */
.menu a:hover { 
color:#fff; 
}
.menu :hover > a {
color:#fff;
}

/* style the second level hover */
.menu ul ul a:hover {
color:#3f3f2f; 
background:#d6caa6;
}

.menu ul ul :hover > a {
color:#3f3f2f; 
background:#d6caa6;
}


/* for browsers that understand this is all you need for the flyouts */
.menu li:hover > ul {visibility:visible;}


/* for IE5.5 and IE6 you need to style each level hover */

/* keep the third level+ hidden when you hover on first level link */
.menu ul a:hover ul ul{
visibility:hidden;
}
/* keep the fourth level+ hidden when you hover on second level link */
.menu ul a:hover ul a:hover ul ul{
visibility:hidden;
}
/* keep the fifth level hidden when you hover on third level link */
.menu ul a:hover ul a:hover ul a:hover ul ul{
visibility:hidden;
}

/* make the second level visible when hover on first level link */
.menu ul a:hover ul {
visibility:visible;
}
/* make the third level visible when you hover over second level link */
.menu ul a:hover ul a:hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level link */
.menu ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}
/* make the fifth level visible when you hover over fourth level link */
.menu ul a:hover ul a:hover ul a:hover ul a:hover ul { 
visibility:visible;
}