/* common styling 
.flyout {font-family: arial, sans-serif; width:162px; height:210px; position:relative; margin:0 0 0 2px; font-size:11px; padding:0;}
.flyout ul li a, .flyout ul li a:visited {display:block; text-decoration:none; color:#FFF; width:157px; height:23px; text-align:left; padding-left:5px; border:1px solid #fff; border-width:1px 0 0 0; background:#993f99; line-height:22px; font-size:11px;}
.flyout ul {padding:0; margin:0;list-style-type: none;}
.flyout ul li {float:left; margin-right:1px; position:relative;}
.flyout ul li ul {display: none;}

/* specific to non IE browsers 
.flyout ul li:hover a {color:#993f99; background:#d4b1d4;}
.flyout ul li:hover ul {display:block; position:absolute; top:0; left:161px; width:162px;}
.flyout ul li:hover ul li a.hide {background:#d4b1d4; color:#993f99;}
.flyout ul li:hover ul li:hover a.hide {width:162px;}

.flyout ul li:hover ul li ul {display: none;}
.flyout ul li:hover ul li a {display:block; background:#993f99; color:#FFF; width:157px; padding-left:5px;}
.flyout ul li:hover ul li a:hover {background:#d4b1d4; color:#993f99;}

.flyout ul li:hover ul li:hover ul {display:block; position:absolute; left:162px; top:0; color:#FFF;}
.flyout ul li:hover ul li:hover ul li a {display:block; width:162px; background:#993f99; color:#FFF;}
.flyout ul li:hover ul li:hover ul li a:hover {background:#d4b1d4; color:#993f99;}

.flyout ul li:hover ul li:hover ul li:hover ul {display:block; position:absolute; left:162px; top:0; color:#FFF;}
.flyout ul li:hover ul li:hover ul li:hover ul li a {display:block; width:162px; background:#993f99; color:#FFF;}
.flyout ul li:hover ul li:hover ul li:hover ul li a:hover {background:#d4b1d4; color:#993f99;}

*/

.flyout {
z-index:1000;
font-size:90%;
margin:0 0 0 2px; /* this page only */
width:162px;
}

/* remove all the bullets, borders and padding from the default list styling */
.flyout ul {
padding:0;
margin:0;
list-style-type:none;
width:162px;
}
/* hack for IE5.5
* html .flyout ul {margin-left:-16px; ma\rgin-left:0;} */

/* position relative so that you can position the sub levels */
.flyout li {
position:relative;
background:#993f99;
height:23px;
border-bottom:1px solid #FFF;
}

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

/* style the links */
.flyout a, .flyout a:visited {
display:block; 
text-decoration:none;
height:23px;
line-height:23px;
width:161px;
color:#FFF;
text-indent:5px;
}
/* hack for IE5.5
* html .flyout a, * html .flyout a:visited {background:#d4d8bd; width:162px; w\idth:161px;} */

/* style the link hover */
* html .flyout a:hover {color:#993f99; background:#d4b1d4;}

.flyout :hover > a {
color:#993f99; 
background:#d4b1d4;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.flyout ul ul {
visibility:hidden;
position:absolute;
top:0;
left:162px; 
}
/* make the second level visible when hover on first level list OR link */
.flyout ul li:hover ul,
.flyout ul a:hover ul {
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.flyout ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.flyout ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.flyout ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.flyout ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

