blob: a102c430902862f28e792cfb20d7b8f05b59cc3f (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
html.js #finderparent
{
position:relative;
z-index: 4;
}
html.js #finder
{
position:absolute;
top:1em;
}
html.js ul#finder,
html.js ul#finder li,
html.js ul#finder ul {
list-style-type: none;
margin: 0;
padding: 0;
}
html.js ul#finder li {
overflow: visible !important;
}
html.js ul#finder ul.hidden
{
display: none;
position: absolute;
}
html.js ul#finder ul.shown {
top:0px;
left:150px;
display:inline;
position:absolute;
}
html.js #finder .li-open,
html.js #finder li:hover {
filter:alpha(opacity=100) !important;
-moz-opacity:1 !important;
-khtml-opacity:1 !important;
opacity:1 !important;
}
html.js #finder a.open {
background:#fff;
padding-right:16px;
padding-left:0px;
display:block;
}
html.js #finder a.parent
{
background:#fff;
padding-right:16px;
padding-left:0px;
}
html.js ul#finder li a {
background-color: #ffffff;
color: #000;
display: block;
text-decoration:none;
}
html.js ul#finder {
background: transparent;
border: none;
width: 230px;
}
html.js ul#finder li {
background: #ffffff;
border: 1px solid #eeeeee;
height: 20px;
overflow: hidden;
margin-bottom: 2px;
width: 230px;
}
html.js ul#finder li a,
html.js ul#finder li a.parent,
html.js ul#finder li a.open {
padding-left: 60px;
}
html.js ul#finder ul.shown {
background: transparent;
border: none;
display: inline;
left: 234px;
margin-top: -1px;
position: absolute;
top: 0px;
}
html.js ul#finder ul.shown ul.shown {
left: 174px;
}
html.js ul#finder ul.shown li {
left: 234px;
padding-bottom: 0;
width: 170px;
}
html.js ul#finder ul.shown li a {
padding-left: 2px;
}
html.js ul#finder a {
display: block;
}
#finder ul ul ul {
height: 300px;
width: 192px !important;
}
#finder .jspPane li,
#finder ul ul ul ul li,
#finder #hzoom-59-ul-1 li,
#finder #hzoom-60-ul-1 li,
#finder #hzoom-66-ul-1 li,
#finder #hzoom-67-ul-1 li {
height: auto !important;
overflow: auto !important;
}
|