﻿/* Some formatting for the menu UL tags themselves; remove margins */
ul.checktree, ul.checktree ul {
 list-style-type: none;
 padding: 0;
 margin: 0;
 font: 14px "宋体", "新宋体", "幼圆";
 color:#006699;
}
/*
LI tags have a different background depending if they're the last node, and padding
The script will automatically assign these CSS classes to LI tags depending on their
expanded state, so we style them appropriately here.
*/
ul.checktree li {
 background: url(../images/node.gif) no-repeat;
 margin: 0 0 0 10px;
 padding: 0px 25px 5px 25px;
 cursor: default;
 width:100%;
}
ul.checktree li.last {
 background-image: url(../images/node-last.gif);
}
ul.checktree li.plus {
 background-image: url(../images/plus.gif);
}
ul.checktree li.plus-last {
 background-image: url(../images/plus-last.gif);
}
ul.checktree li.minus {
 background-image: url(../images/minus.gif);
}
ul.checktree li.minus-last {
 background-image: url(../images/minus-last.gif);
}


/* The check-count SPANs. */
ul.checktree span.count {
 text-indent: 5pt;
 color: #999;
 font-style: italic;
}
