• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*---------------- Search Box */
2
3#FSearchBox {
4    float: left;
5}
6
7#MSearchBox {
8    white-space : nowrap;
9    float: none;
10    margin-top: 0px;
11    right: 0px;
12    width: 170px;
13    height: 24px;
14    z-index: 102;
15    display: inline;
16    position: absolute;
17}
18
19#MSearchBox .left
20{
21    display:block;
22    position:absolute;
23    left:10px;
24    width:20px;
25    height:19px;
26    background:url('search_l.png') no-repeat;
27    background-position:right;
28}
29
30#MSearchSelect {
31    display:block;
32    position:absolute;
33    width:20px;
34    height:19px;
35}
36
37.left #MSearchSelect {
38    left:4px;
39}
40
41.right #MSearchSelect {
42    right:5px;
43}
44
45#MSearchField {
46    display:block;
47    position:absolute;
48    height:19px;
49    background:url('search_m.png') repeat-x;
50    border:none;
51    width:111px;
52    margin-left:20px;
53    padding-left:4px;
54    color: #909090;
55    outline: none;
56    font: 9pt Arial, Verdana, sans-serif;
57    -webkit-border-radius: 0px;
58}
59
60#FSearchBox #MSearchField {
61    margin-left:15px;
62}
63
64#MSearchBox .right {
65    display:block;
66    position:absolute;
67    right:10px;
68    top:0px;
69    width:20px;
70    height:19px;
71    background:url('search_r.png') no-repeat;
72    background-position:left;
73}
74
75#MSearchClose {
76    display: none;
77    position: absolute;
78    top: 4px;
79    background : none;
80    border: none;
81    margin: 0px 4px 0px 0px;
82    padding: 0px 0px;
83    outline: none;
84}
85
86.left #MSearchClose {
87    left: 6px;
88}
89
90.right #MSearchClose {
91    right: 2px;
92}
93
94.MSearchBoxActive #MSearchField {
95    color: #000000;
96}
97
98/*---------------- Search filter selection */
99
100#MSearchSelectWindow {
101    display: none;
102    position: absolute;
103    left: 0; top: 0;
104    border: 1px solid #BFCE90;
105    background-color: #FBFCF9;
106    z-index: 10001;
107    padding-top: 4px;
108    padding-bottom: 4px;
109    -moz-border-radius: 4px;
110    -webkit-border-top-left-radius: 4px;
111    -webkit-border-top-right-radius: 4px;
112    -webkit-border-bottom-left-radius: 4px;
113    -webkit-border-bottom-right-radius: 4px;
114    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
115}
116
117.SelectItem {
118    font: 8pt Arial, Verdana, sans-serif;
119    padding-left:  2px;
120    padding-right: 12px;
121    border: 0px;
122}
123
124span.SelectionMark {
125    margin-right: 4px;
126    font-family: monospace;
127    outline-style: none;
128    text-decoration: none;
129}
130
131a.SelectItem {
132    display: block;
133    outline-style: none;
134    color: #000000;
135    text-decoration: none;
136    padding-left:   6px;
137    padding-right: 12px;
138}
139
140a.SelectItem:focus,
141a.SelectItem:active {
142    color: #000000;
143    outline-style: none;
144    text-decoration: none;
145}
146
147a.SelectItem:hover {
148    color: #FFFFFF;
149    background-color: #788C3D;
150    outline-style: none;
151    text-decoration: none;
152    cursor: pointer;
153    display: block;
154}
155
156/*---------------- Search results window */
157
158iframe#MSearchResults {
159    width: 60ex;
160    height: 15em;
161}
162
163#MSearchResultsWindow {
164    display: none;
165    position: absolute;
166    left: 0; top: 0;
167    border: 1px solid #000;
168    background-color: #F5F7EE;
169    z-index:10000;
170}
171
172/* ----------------------------------- */
173
174
175#SRIndex {
176    clear:both;
177    padding-bottom: 15px;
178}
179
180.SREntry {
181    font-size: 10pt;
182    padding-left: 1ex;
183}
184
185.SRPage .SREntry {
186    font-size: 8pt;
187    padding: 1px 5px;
188}
189
190body.SRPage {
191    margin: 5px 2px;
192}
193
194.SRChildren {
195    padding-left: 3ex; padding-bottom: .5em
196}
197
198.SRPage .SRChildren {
199    display: none;
200}
201
202.SRSymbol {
203    font-weight: bold;
204    color: #829742;
205    font-family: Arial, Verdana, sans-serif;
206    text-decoration: none;
207    outline: none;
208}
209
210a.SRScope {
211    display: block;
212    color: #829742;
213    font-family: Arial, Verdana, sans-serif;
214    text-decoration: none;
215    outline: none;
216}
217
218a.SRSymbol:focus, a.SRSymbol:active,
219a.SRScope:focus, a.SRScope:active {
220    text-decoration: underline;
221}
222
223span.SRScope {
224    padding-left: 4px;
225}
226
227.SRPage .SRStatus {
228    padding: 2px 5px;
229    font-size: 8pt;
230    font-style: italic;
231}
232
233.SRResult {
234    display: none;
235}
236
237DIV.searchresults {
238    margin-left: 10px;
239    margin-right: 10px;
240}
241
242/*---------------- External search page results */
243
244.searchresult {
245    background-color: #F6F8F0;
246}
247
248.pages b {
249   color: white;
250   padding: 5px 5px 3px 5px;
251   background-image: url("../tab_a.png");
252   background-repeat: repeat-x;
253   text-shadow: 0 1px 1px #000000;
254}
255
256.pages {
257    line-height: 17px;
258    margin-left: 4px;
259    text-decoration: none;
260}
261
262.hl {
263    font-weight: bold;
264}
265
266#searchresults {
267    margin-bottom: 20px;
268}
269
270.searchpages {
271    margin-top: 10px;
272}
273
274