
.treeview { /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
background-color: transparent;
background:url(../images/left02.gif) repeat-y; 
margin: 0; padding: 0;
}
.treeview a:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
background:url(../images/menuli.gif) no-repeat; 
}
.treeview ul { /*CSS for Simple Tree Menu*/
margin: 0;
padding: 0;
 padding-left:10px;
}
.treeview a:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/

}


.treeview li{ /*Style for LI elements in general (excludes an LI that contains sub lists)第一層的選單*/
list-style-type: none;
padding-left: 10px;
background-color: transparent;
border-Bottom:1px dashed #f5dcbb;
	
}
.treeview li A{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
font-size: 15px;
line-height: 30px;
text-align:left;
text-decoration:none;

color:#3d2410;
 font-weight:bold;
}
.treeview li a:hover{ /*Style for LI elements in general (excludes an LI that contains sub lists)*/
color:#be5324;

}




.treeview li.submenu ul{ /*Style for ULs that are children of LIs (submenu) */
display: none; /*Hide them by default. Don't delete. */
text-align:left;
background-color: transparent;
 padding-left:10px;
}

.treeview li.submenu ul A{ /*Style for ULs that are children of LIs (submenu) 第二層的選單*/
font-size: 15px;
font-weight: normal;

line-height: 30px;
color:#6e3100;
}
.treeview li.submenu ul  a:hover{ /*Style for ULs that are children of LIs (submenu) 第二層的選單*/

}