<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* `Tree Expander
 ----------------------------------------------------------------------------------------------------*/

/* Padding: top right bottom left*/

.tree_controls {
    background: #ccc url(/img/gradient.gif) repeat-x;
    border: 1px solid #ddd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    color: #999;
    margin: 0;
    overflow: hidden;
    padding: 5px 0;
    text-align: center;
    width: 200px;
}

.tree_controls a {
    color: #333;
    text-decoration: none;
    font-size: 7pt;
}

.tree_controls a:hover {
    text-decoration: underline;
}

.tree {
    clear: both;
    margin: 0 0 20px;
    padding: 5px 0 0;
}

.tree,
.tree ul {
    background: url(/img/grey_line.gif) repeat-y;
}

.tree ul {
    margin: -4px 0 0 4px;
    padding: 5px 0 0;
}

.tree li {
    background: url(/img/tree_li.gif) no-repeat 0 14px;
    clear: both;
    list-style: none;
    padding: 6px 0 0 10px;
    width: 600px;
    font-size: 7pt;
    letter-spacing: 0.1px;
}

.tree li.last,
.tree li:last-child {
    background: url(/img/tree_li_last.gif) no-repeat 0 -481px;
}

.tree .tree_trigger,
.tree .tree_slug {
    background: url(/img/tree_icons.gif) no-repeat;
    display: inline;
    float: left;
    font-size: 0;
    margin: 3px 5px 0 0;
    overflow: hidden;
    text-decoration: none;
    width: 9px;
    height: 12px;
}

.tree .tree_trigger_expanded {
    background-position: -9px 0;
}

.tree .tree_slug {
    background-position: -18px 0;
}

.cls_1,
.cls_2,
.cls_3,
.cls_4,
.cls_5,
.cls_6,
.cls_7,
.cls_8,
.cms {
    font-size: 7pt;
    padding: 3px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #000;
    vertical-align: middle;
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    text-align: center;
}
.cls_1:hover,
.cls_2:hover,
.cls_3:hover,
.cls_4:hover,
.cls_5:hover,
.cls_6:hover,
.cls_7:hover,
.cls_8:hover,
.cms:hover {
    background-color: #fff;
    color: #000;
}

.item_selected {
    border: 2px solid #000;
    padding-left: 100px;
}
.cls_1 {
    background-color: brown;
    color: yellow;
}

.cls_2 {
    background-color: lightgreen;
    color: #333;
}

.cls_3 {
    background-color: yellow;
    color: blue;
}
.cls_4 {
    background-color: blue;
    color: #fff;
}
.cls_5 {
    background-color: lightblue;
    color: #333;
}
.cls_6 {
    background-color: green;
    color: #fff;
}
.cls_7 {
    background-color: lightyellow;
    color: #333;
}
.cls_8 {
    background-color: #ccc;
    color: #000;
}
.cms {
    background-color: #006699;
    color: #fff;
}

._ref {
    width: 160px;
    position: fixed;
    top: 90px;
    right: 4px;
}
._ref_table {
    border: 0;
    width: 100%;
}
._ref_table tr td {
    padding: 6px;
    vertical-align: middle;
}
</pre></body></html>