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

#info {height:400px;}
/* ================================================================ 
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/menudrops/final_pullup.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
#info h3 {margin-bottom:200px;}
/* style the outer div to give it width */
.menudrop {
width:974px;
height:34px;
font-size:18px;
}

.menudropie6 {
width:974px;
height:34px;
font-size:18px;
}

.menudropie6 a, .menudropie6 a:visited {
font-size:11px;
text-decoration:none; 
color:#fff; 
padding-left:23px; 
line-height:33px;
padding-right:23px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menudrop ul {
padding:0;
margin:0;
list-style-type:none;
text-align:left;
}
.menudrop ul ul {
/* width:150px; */
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menudrop positon */
.menudrop li {
float:left;
/* width:150px; */
position:relative;
}
/* style the links for the top level */
.menudrop a, .menudrop a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#fff; 
/* width:139px; */
height:34px; 
border-width:0; 
padding-left:28px; 
line-height:33px;
padding-right:28px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menudrop a, * html .menudrop a:visited {
/* width:150px;
w\idth:139px; */
}

/* style the second level background */
.menudrop ul ul a.drop, .menudrop ul ul a.drop:visited {
background:#949e7c;
}
/* style the second level hover */
.menudrop ul ul a.drop:hover {
background:#c9ba65;
}
.menudrop ul ul :hover > a.drop {
background:#c9ba65;
}
/* style the third level background */
.menudrop ul ul ul a, .menudrop ul ul ul a:visited {
background:#e2dfa8;
}
/* style the third level hover */
.menudrop ul ul ul a:hover{
background:#b2ab9b;
}
.menudrop ul ul ul :hover > a {
background:#b2ab9b;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menudrop table {border-collapse:collapse; border:0; position:absolute; left:0; bottom:-1px;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menudrop ul ul {
visibility:hidden;
position:absolute;
bottom:34px;
left:0; 
/* width:150px; */
}
* html .menudrop ul ul {
bottom:30px;
}
/* position the third level flyout menudrop */
.menudrop ul ul ul{
left:150px; 
bottom:0;
width:150px;
}
/* position the third level flyout menudrop for a left flyout */
.menudrop ul ul ul.left {
left:-150px;
}


/* style the second level links */
.menudrop ul ul a, .menudrop ul ul a:visited {
background-image:url(images/submenu_BG.png);
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px;
width:200px;
/* width:129px 
/* yet another hack for IE5.5 */
}
* html .menudrop ul ul a{
/* width:150px;
w\idth:129px; */
}


/* style the top level hover */
.menudrop a:hover, .menudrop ul ul a:hover{
color:#fff; 
}
.menudrop :hover > a, .menudrop ul ul :hover > a {
color:#fff;
/* background kleur top */
background-color:#2c326d; 
}

.menudrop2{
background-color:#2c326d; 
}

/* make the second level visible when hover on first level list OR link */
.menudrop ul li:hover ul,
.menudrop ul a:hover ul{
visibility:visible;
height:auto;
}
/* keep the third level hidden when you hover on first level list OR link */
.menudrop ul :hover ul ul{
display:none;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menudrop ul :hover ul :hover ul ul{
display:none;
}
/* make the third level visible when you hover over second level list OR link */
.menudrop ul :hover ul :hover ul{ 
display:block;
bottom:0;
}
/* make the fourth level visible when you hover over third level list OR link */
.menudrop ul :hover ul :hover ul :hover ul { 
display:block;
bottom:0;
}