1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
p{
font-family:arial;
}
a{
color:#000;
font-family:arial;
font-size:0.8em;
}
.dhtmlgoodies_tree{
margin:0px;
padding:0px;
}
.dhtmlgoodies_tree ul{ /* Sub menu groups */
margin-left:20px; /* Left spacing */
padding-left:0px;
display:none; /* Initially hide sub nodes */
}
.dhtmlgoodies_tree li{ /* Nodes */
list-style-type:none;
vertical-align:middle;
}
.dhtmlgoodies_tree li a{ /* Node links */
color:#000;
text-decoration:none;
font-family:arial;
font-size:0.8em;
padding-left:2px;
}
|