@charset "gb2312";
/* CSS Document */

.flyoutmenu {
z-index:1000;
font-size:12px;
margin:0 0 0 1px; /* this page only */
}

/* remove all the bullets, borders and padding from the default list styling */
.flyoutmenu ul {
padding:0;
margin:0;
list-style-type:none;
width:198px;
}
/* hack for IE5.5 */
* html .flyoutmenu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.flyoutmenu li {
position:relative;
background:#f8f8f8;
height:28px;
border-right:1px solid #e0e0e0;
border-bottom:1px solid #e0e0e0;
}

/* get rid of the table */
.flyoutmenu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.flyoutmenu a{
display:block; 
text-decoration:none;
height:28px;
line-height:28px;
width:198px;
color:#000;
text-indent:5px;

}
.flyoutmenu li a.dirs,
* html .flyoutmenu li a.dirs{ background:#f8f8f8 url(../images/113.gif) no-repeat 95% 50%}
/* hack for IE5.5 */
* html .flyoutmenu a {background:#f8f8f8; width:198px; w\idth:198px;}

/* style the link hover */
* html .flyoutmenu a:hover {color:#fff; background:#0069B7;}

.flyoutmenu :hover > a {color:#fff; background:#0069B7;}
.flyoutmenu li:hover > a {color:#fff; background:#0069B7;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.flyoutmenu ul ul {
visibility:hidden;
position:absolute;
top:0;
left:198px; 
}
/* make the second level visible when hover on first level list OR link */
.flyoutmenu ul li:hover ul,
.flyoutmenu ul a:hover ul {
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.flyoutmenu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.flyoutmenu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.flyoutmenu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.flyoutmenu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}
