@charset "utf-8";
.suckerdiv ul{
margin: 0px;
padding: 0px;
list-style-type: none;
width: 150px; /* Width of Menu Items */
border-bottom: 1px solid #99b2c4;
background-color:#bdcedc;
}
	
.suckerdiv ul li{
position: relative;
}
	
/*1st level sub menu style */
.suckerdiv ul li ul{
left: 150px; /* Parent menu width - 1*/
position: absolute;
width: 230px; /*sub menu width*/
top: 0px;
display: none;
}

/*All subsequent sub menu levels offset */
.suckerdiv ul li ul li ul{ 
left: 230px; /* Parent menu width - 1*/
}

/* menu links style */
.suckerdiv ul li a{
display: block;
padding-left:20px;
color: #293d6b;
text-decoration: none;
font:12px '宋体';
height:24px;
line-height:24px;
border-left:1px #99b2c4 solid;
border-right:1px #99b2c4 solid;
border-bottom: 0px;
background-color:#bdcedc;
}

.suckerdiv ul li a:visited{
color: #293d6b;
}

.suckerdiv ul li a:hover{
color: #293d6b;
background-color: #98b1c4;
}

.suckerdiv .subfolderstyle{
background: url(../images/arrow-list.gif) no-repeat center right;
}

	
/* Holly Hack for IE \*/
* html .suckerdiv ul li { float: left; height: 1%; }
* html .suckerdiv ul li a { height: 1%; }
/* End */



