/* ================================================================ 
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_drop2.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.
=================================================================== */
/* style the outer div to give it width */
.menu 
{
float: left;
width:970px;
font-size:100%;
margin-top: 22px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
margin-left: 120px;
list-style-type:none;
list-style-image: none;
float: left;
position: relative;
z-index: 50;
display: inline;
}

.menu ul ul {
width:150px;
margin-top: 0px;
margin-left: 0px;
font-size: 90%;
}

.menu ul ul ul
{
    font-size: 100%;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
position:relative;
}
/* style the links for the top level */
.menu a, .menu a.extra, .menu a:visited {
display:block;
text-decoration:none; 
color:#dadadc;  
height:32px; 
border:1px solid transparent; 
border-width:0px 0px 0 0;  
padding:0px; 
line-height:29px;
margin: 0 5px;
}
.menu a.extra, .menu a.extra:visited
{
    color: #d398d6;
    margin: 0 5px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited 
{
width:30px;
width:30px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:0px;
left:120px; 
width:150px;
}
.menu ul ul.test{width: 180px;}
/* another hack for IE5.5 */
* html .menu ul ul {
top:32px;
top:32px;
}

/* 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;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited, .menu ul ul ul a, .menu ul ul ul a:visited{
background:#c5c5c5; 
color:#fff; 
height:auto; 
line-height:1em; 
padding:7px 10px; 
width:129px;
border:1px solid #c5c5c5; 
border-width:1px 1px 0 0;
font-weight: bold;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:129px;
w\idth:129px;
}

.menu ul ul.test li a{width: 180px;}
.menu ul ul.test a, .menu ul ul.test a:visited{width: 180px;}

/* style the top level hover */
.menu a:hover{
color:#d398d6; 
background:transparent;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#d398d6;
background:transparent;
}
.menu ul ul :hover > a
{
    background: #efc3ef;
    color: #fff;
}

.menu ul ul a:hover, * html .menu ul ul a:hover
{
    color: #fff;
    background-color:#efc3ef;
}

/* 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; 
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#c5c5c5; border-left: solid 1px #fff;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#efc3ef;}

/* style the fourth level background */
.menu ul ul ul ul a, .menu ul ul ul ul a:visited {background:#c5c5c5; border-left: solid 1px #fff;}
/* style the fourth level hover */
.menu ul ul ul ul a:hover {background:#efc3ef;}
.menu ul ul ul ul{margin-left: 1px;}

/* position the third level flyout menu */
.menu ul ul ul{left:150px; top:0px; width:149px;}

/* 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;}

/* 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;}

/* keep the fourth level hidden when you hover on first level list OR link */
.menu ul :hover ul :hover ul ul{visibility:hidden;}
/* make the fourth level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul :hover ul{visibility:visible;}

/*
.menu ul ul a.dropArrow
{
    background-image: url(/_images/drop-arrow.gif);
    background-position: center right;
    background-repeat: no-repeat;
    }
*/