1/**
2 * Design elements for default Template
3 *
4 * @author Andreas Gohr <andi@splitbrain.org>
5 * @author Anika Henke <henke@cosmocode.de>
6 * @author Riccardo Govoni <battlehorse@gmail.com>
7 */
8
9/* -------------- general elements --------------- */
10
11* { padding: 0; margin: 0; }
12
13body {
14  font: 80% "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
15  background-color: __rg_background__ ;
16  color: __text__;
17  background-image: url(__rg_background_gradient__);
18  background-repeat: repeat-x;
19  background-position: 0% 0%;
20}
21
22div.dokuwiki {
23  width: 92% ;
24  margin-left: auto;
25  margin-right: auto;
26}
27
28div.dokuwiki table {
29  font-size: 100%;
30}
31
32div.dokuwiki tr,
33div.dokuwiki td,
34div.dokuwiki th {
35}
36
37div.dokuwiki img {
38  border: 0;
39}
40
41div.dokuwiki p,
42div.dokuwiki blockquote,
43div.dokuwiki table,
44div.dokuwiki pre {
45  margin: 0 0 1.0em 0;
46}
47
48div.dokuwiki hr {
49  border: 0px;
50  border-top: 1px solid __border__;
51  text-align: center;
52  height: 0px;
53}
54
55div.dokuwiki div.nothing {
56  text-align: center;
57  margin: 2em;
58}
59
60/* ---------------- shadows under the main content ------------------------ */
61
62div.dokuwiki .page_lower_dark {
63  background-color: __rg_bread_lower_dark__ ;
64  height: 1px;
65  overflow: hidden;
66  clear: right;
67}
68
69div.dokuwiki .page_lower_medium {
70  background-color: __rg_bread_lower_medium__ ;
71  height: 1px;
72  overflow: hidden;
73}
74
75div.dokuwiki .page_lower_light {
76  background-color: __rg_bread_lower_light__ ;
77  height: 1px;
78  overflow: hidden;
79}
80
81/* ---------------- action links ------------------------ */
82
83div.smallpadding {
84  margin: 5px 0px 5px 2px ;
85}
86
87a.recent {
88  padding: 10px 1px 10px 24px ;
89  background: transparent url(__rg_recent_action__) no-repeat;
90  background-position: center left;
91  font-variant:small-caps;
92}
93
94a.index {
95  padding: 10px 1px 10px 24px ;
96  background: transparent url(__rg_index_action__) no-repeat;
97  background-position: center left;
98  font-variant:small-caps;
99}
100
101a.edit {
102  padding: 10px 1px 10px 24px ;
103  background: transparent url(__rg_edit_action__) no-repeat;
104  background-position: center left;
105  font-variant:small-caps;
106}
107
108a.create {
109  padding: 10px 1px 10px 24px ;
110  background: transparent url(__rg_create_action__) no-repeat;
111  background-position: center left;
112  font-variant:small-caps;
113}
114
115a.revisions {
116  padding: 10px 1px 10px 24px ;
117  background: transparent url(__rg_revision_action__) no-repeat;
118  background-position: center left;
119  font-variant:small-caps;
120}
121
122a.backlink {
123  padding: 10px 1px 10px 24px ;
124  background: transparent url(__rg_backlink_action__) no-repeat;
125  background-position: center left;
126  font-variant:small-caps;
127}
128
129a.login, a.logout {
130  padding: 10px 1px 10px 24px ;
131  background: transparent url(__rg_login_action__) no-repeat;
132  background-position: center left;
133  font-variant:small-caps;
134}
135
136a.subscribe {
137  padding: 10px 1px 10px 24px ;
138  background: transparent url(__rg_subscribe_action__) no-repeat;
139  background-position: center left;
140  font-variant:small-caps;
141}
142
143a.unsubscribe {
144  padding: 10px 1px 10px 24px ;
145  background: transparent url(__rg_unsubscribe_action__) no-repeat;
146  background-position: center left;
147  font-variant:small-caps;
148}
149
150a.profile {
151  padding: 10px 1px 10px 24px ;
152  background: transparent url(__rg_profile_action__) no-repeat;
153  background-position: center left;
154  font-variant:small-caps;
155}
156
157a.admin {
158  padding: 10px 1px 10px 24px ;
159  background: transparent url(__rg_admin_action__) no-repeat;
160  background-position: center left;
161  font-variant:small-caps;
162}
163
164a.show, a.source {
165  padding: 10px 1px 10px 24px ;
166  background: transparent url(__rg_show_action__) no-repeat;
167  background-position: center left;
168  font-variant:small-caps;
169}
170
171a.previous {
172  padding: 10px 1px 10px 24px ;
173  background: transparent url(__rg_previous_action__) no-repeat;
174  background-position: center left;
175  font-variant:small-caps;
176}
177
178a.top {
179  padding: 10px 24px 10px 1px;
180  background: transparent url(__rg_top_action__) no-repeat;
181  background-position: center right;
182  font-variant:small-caps;
183}
184
185a.digg {
186  padding: 10px 1px 10px 24px ;
187  background: transparent url(__rg_digg_action__) no-repeat;
188  background-position: center left;
189  font-variant:small-caps;
190}
191
192a.delicious {
193  padding: 10px 1px 10px 24px ;
194  background: transparent url(__rg_delicious_action__) no-repeat;
195  background-position: center left;
196  font-variant:small-caps;
197}
198
199a.googlebookmark {
200  padding: 10px 1px 10px 24px ;
201  background: transparent url(__rg_google_action__) no-repeat;
202  background-position: center left;
203  font-variant:small-caps;
204}
205
206/* ---------------- alignments  ------------------------ */
207
208div.dokuwiki .leftalign { text-align: left; }
209
210div.dokuwiki .centeralign { text-align: center; }
211
212div.dokuwiki .rightalign { text-align: right; }
213
214/* ---------------- forms ------------------------ */
215
216div.dokuwiki form {
217  border: none;
218  display: inline;
219}
220
221div.dokuwiki label.block {
222  display: block;
223  text-align: right;
224  font-weight: bold;
225}
226
227div.dokuwiki label.simple {
228  display: block;
229  text-align: left;
230  font-weight: normal;
231}
232
233div.dokuwiki label.block input.edit {
234  width: 50%;
235}
236
237input.edit {
238  width: 40%;
239}
240
241div.dokuwiki fieldset {
242  width: 300px;
243  text-align: center;
244  border: 1px solid __border__;
245  padding: 0.5em;
246  margin: auto;
247}
248
249div.dokuwiki textarea.edit {
250  font-family: 14pt monospace;
251  color: __text__;
252  background-color: __background__;
253  border: 1px solid __border__;
254  padding: 0.3em 0 0 0.3em;
255  width: 100%;
256}
257
258/* nice alphatransparency background except for IE <7 */
259html>body div.dokuwiki textarea.edit {
260  background:  __background__ url(images/inputshadow.png) repeat-x top;
261}
262
263div.dokuwiki input.edit,
264div.dokuwiki select.edit {
265  font-size: 100%;
266  border: 1px solid __border__;
267  color: __text__;
268  background-color: __background__;
269  vertical-align: middle;
270  margin: 1px;
271  padding: 0.20em 0.3em;
272  display: inline;
273}
274
275/* nice alphatransparency background except for IE <7 */
276html>body div.dokuwiki input.edit,
277html>body div.dokuwiki select.edit {
278  background:  __background__ url(images/inputshadow.png) repeat-x top;
279}
280
281div.dokuwiki select.edit {
282  padding: 0.1em 0;
283}
284
285div.dokuwiki input.missing {
286  font-size: 100%;
287  border: 1px solid __border__;
288  color: __text__;
289  background-color: #ffcccc;
290  vertical-align: middle;
291  margin: 1px;
292  padding: 0.20em 0.3em;
293  display: inline;
294}
295
296/* edit form */
297div.dokuwiki div.toolbar,
298div.dokuwiki div#wiki__editbar {
299   margin: 2px 0;
300   text-align: left;
301}
302div.dokuwiki div#size__ctl {
303   float: right;
304   width: 60px;
305   height: 2.7em;
306}
307div.dokuwiki #size__ctl img {
308   cursor: pointer;
309}
310div.dokuwiki div#wiki__editbar div.editButtons {
311   float: left;
312   padding: 0 1.0em 0.7em 0;
313}
314div.dokuwiki div#wiki__editbar div.summary {
315   float: left;
316}
317div.dokuwiki .nowrap {
318   white-space: nowrap;
319}
320div.dokuwiki div#draft__status {
321  float: right;
322  color: __text_alt__;
323}
324
325/* --------- buttons ------------------- */
326
327
328div.dokuwiki input.button,
329div.dokuwiki button.button {
330  border: 1px solid __border__;
331  color: __text__;
332  background-color: __rg_button_background__;
333  vertical-align: middle;
334  text-decoration: none;
335  font-size: 100%;
336  cursor: pointer;
337  margin: 1px;
338  padding: 0.125em 0.4em;
339}
340
341/* nice alphatransparency background except for IE <7 */
342html>body div.dokuwiki input.button,
343html>body div.dokuwiki button.button {
344  background:  __rg_button_background__ url(images/buttonshadow.png) repeat-x bottom;
345}
346
347div.dokuwiki input.button:hover, button.button:hover {
348  border: 1px solid __border__;
349  background-color: __rg_button_prelight__;
350}
351
352* html div.dokuwiki input.button,
353* html div.dokuwiki button.button {
354  height: 1.8em;
355}
356
357div.dokuwiki div.secedit input.button {
358  border: 1px solid __border__;
359  color: __text__;
360  background-color: __rg_button_background__;
361  vertical-align: middle;
362  text-decoration: none;
363  margin: 0;
364  padding: 0;
365  font-size: 10px;
366  cursor: pointer;
367  float: right;
368  display: inline;
369}
370
371div.dokuwiki div.secedit input.button:hover {
372  border: 1px solid __border__;
373  background-color: __rg_button_prelight__;
374}
375
376/* ----------- page navigator ------------- */
377
378div.dokuwiki div.pagenav {
379    margin: 1em 0 0 0;
380}
381
382div.dokuwiki div.pagenav-prev {
383    text-align: right;
384    float: left;
385    width: 49%
386}
387
388div.dokuwiki div.pagenav-next {
389    text-align: left;
390    float: right;
391    width: 49%
392}
393
394/* --------------- Links ------------------ */
395
396div.dokuwiki a:link,
397div.dokuwiki a:visited {
398  color: __extern__;
399  text-decoration:underline;
400}
401div.dokuwiki a:hover,
402div.dokuwiki a:active {
403  color:__hover__;
404  text-decoration:underline;
405}
406
407div.dokuwiki h1 a,
408div.dokuwiki h2 a,
409div.dokuwiki h3 a,
410div.dokuwiki h4 a,
411div.dokuwiki h5 a,
412div.dokuwiki h1 a:hover,
413div.dokuwiki h2 a:hover,
414div.dokuwiki h3 a:hover,
415div.dokuwiki h4 a:hover,
416div.dokuwiki h5 a:hover {
417  color:__text__;
418  text-decoration:none;
419}
420
421/* external link */
422div.dokuwiki a.urlextern {
423    background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
424    padding: 1px 0px 1px 16px;
425    color:__extern__;
426    text-decoration:underline;
427}
428div.dokuwiki a.urlextern:visited {
429  color: __visited__  ;
430}
431div.dokuwiki a.urlextern:hover {
432  color:__hover__ ;
433  text-decoration:underline;
434}
435
436/* windows share */
437div.dokuwiki a.windows {
438    background: transparent url(images/windows.gif) 0px 1px no-repeat;
439    padding: 1px 0px 1px 16px;
440    color:__extern__;
441    text-decoration:underline;
442}
443div.dokuwiki a.windows:visited {
444  color:__visited__ ;
445}
446div.dokuwiki a.windows:hover {
447  color:__hover__;
448  text-decoration:underline;
449}
450
451/* interwiki link (icon are set by dokuwiki) */
452div.dokuwiki a.interwiki {
453    color:__extern__;
454    text-decoration:underline;
455}
456div.dokuwiki a.interwiki:visited {
457  color:__visited__ ;
458}
459div.dokuwiki a.interwiki:hover {
460  color:__hover__ ;
461  text-decoration:underline;
462}
463
464/* link to some embedded media */
465div.dokuwiki a.media {
466  color:__extern__;
467  text-decoration:underline;
468}
469div.dokuwiki a.media:hover {
470  color:__hover__;
471  text-decoration:underline
472}
473
474/* email link */
475div.dokuwiki a.mail {
476  background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
477  padding: 1px 0px 1px 16px;
478  color:__extern__;
479  text-decoration:underline;
480}
481div.dokuwiki a.mail:hover {
482  color:__hover__ ;
483  text-decoration:underline;
484}
485
486/* existing wikipage */
487div.dokuwiki a.wikilink1:link    { color:__existing__; text-decoration:underline }
488div.dokuwiki a.wikilink1:visited { color:__visited__; text-decoration:underline }
489div.dokuwiki a.wikilink1:hover   { color:__hover__; text-decoration:underline }
490
491/* not existing wikipage */
492div.dokuwiki a.wikilink2:link    { color:__missing__; text-decoration:underline }
493div.dokuwiki a.wikilink2:visited { color:__missing__; text-decoration:underline }
494div.dokuwiki a.wikilink2:hover   { color:__missing__; text-decoration:underline }
495
496
497/* ------------- Page elements ----------------- */
498
499div.dokuwiki div.preview {
500  background-color: __background_neu__;
501  margin: 0 0 0 2em;
502  padding: 4px;
503  border: 1px dashed __text__;
504}
505
506/* ------------- Breadcrumbs ----------------- */
507
508div.dokuwiki div.breadcrumbs {
509  background-color: __background_neu__;
510  color: __text_neu__;
511  font-size: 80%;
512  padding: 0 0 0 4px;
513  vertical-align:middle;
514  border-style : solid;
515  border-width: 1px 1px 1px 1px;
516  border-color: __rg_bread_border__ ;
517  background-image: url(__rg_breadcrumbs_gradient__);
518  background-repeat: repeat-x;
519  height: 17px;
520}
521
522/* ------------- Breadcrumbs shadows ----------------- */
523
524div.dokuwiki div.bread_upper_dark {
525  background-color: __rg_bread_upper_dark__ ;
526  height: 1px;
527  overflow: hidden;
528}
529
530div.dokuwiki div.bread_lower_dark {
531  background-color: __rg_bread_lower_dark__ ;
532  height: 1px;
533  overflow: hidden;
534}
535
536div.dokuwiki div.bread_lower_medium {
537  background-color: __rg_bread_lower_medium__ ;
538  height: 1px;
539  overflow: hidden;
540}
541
542div.dokuwiki div.bread_lower_light {
543  background-color: __rg_bread_lower_light__ ;
544  height: 1px;
545  overflow: hidden;
546}
547
548
549div.dokuwiki span.user {
550  color: __text_other__;
551  font-size: 90%;
552}
553
554div.dokuwiki li.minor {
555  color: __text_neu__;
556  font-style: italic;
557}
558
559/* embedded images */
560div.dokuwiki img.media {
561  margin: 3px;
562}
563
564div.dokuwiki img.medialeft {
565  border: 0;
566  float: left;
567  margin: 0 1.5em 0 0;
568}
569
570div.dokuwiki img.mediaright {
571  border: 0;
572  float: right;
573  margin: 0 0 0 1.5em;
574}
575
576div.dokuwiki img.mediacenter {
577  border: 0;
578  display: block;
579  margin: 0 auto;
580}
581
582/* smileys */
583div.dokuwiki img.middle {
584  vertical-align: middle;
585}
586
587div.dokuwiki acronym {
588  cursor: help;
589  border-bottom: 1px dotted __text__;
590}
591
592/* general headline setup */
593div.dokuwiki h1,
594div.dokuwiki h2,
595div.dokuwiki h3,
596div.dokuwiki h4,
597div.dokuwiki h5 {
598    color: __text__;
599    background-color: transparent;
600    font-family: "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
601    font-size: 100%;
602    font-weight: normal;
603    margin: 0 0 1em 0;
604    padding: 0.5em 0 0 0;
605    border-bottom: 1px solid __border__;
606    clear: left;
607}
608
609/* special headlines */
610div.dokuwiki h1 {font-size: 160%; margin-left: 0px; font-weight: bold;}
611div.dokuwiki h2 {font-size: 150%; margin-left: 3px;  border-bottom: 1px dotted __border__ }
612div.dokuwiki h3 {font-size: 140%; margin-left: 6px;  border-bottom: 1px dotted __border__ ; font-weight: bold;}
613div.dokuwiki h4 {font-size: 120%; margin-left: 9px;  border-bottom: none ; font-weight: bold;}
614div.dokuwiki h5 {font-size: 100%; margin-left: 12px; border-bottom: none ; font-weight: bold;}
615
616/* special headlines for sidebar */
617div.dokuwiki div.sidebar h1 { clear: none; font-size: 120%; text-transform: uppercase; letter-spacing: 0.2em; text-align: center; margin-bottom: 5px;}
618div.dokuwiki div.sidebar h2 { clear: none; font-size: 120%; text-transform: uppercase; letter-spacing: 0.2em; text-align: center; margin-bottom: 5px;}
619div.dokuwiki div.sidebar h3 { clear: none; margin-bottom: 2px;}
620div.dokuwiki div.sidebar h4 { clear: none; margin-bottom: 2px;}
621div.dokuwiki div.sidebar h5 { clear: none; margin-bottom: 2px;}
622
623/* indent different sections */
624div.dokuwiki div.level1 {margin-left: 3px;}
625div.dokuwiki div.level2 {margin-left: 6px;}
626div.dokuwiki div.level3 {margin-left: 9px;}
627div.dokuwiki div.level4 {margin-left: 12px;}
628div.dokuwiki div.level5 {margin-left: 15px;}
629
630/* unordered lists */
631div.dokuwiki ul {
632  line-height: 1.5em;
633  list-style-type: square;
634  list-style-image: none;
635  margin: 0 0 0.5em 1.5em;
636  color: __text_alt__;
637}
638
639/* ordered lists */
640div.dokuwiki ol {
641  line-height: 1.5em;
642  list-style-image: none;
643  margin: 0 0 0.5em 1.5em;
644  color: __text_alt__;
645  font-weight: bold;
646}
647
648/* the list items overriding the ul/ol definition */
649div.dokuwiki .li {
650  color: __text__;
651  font-weight: normal;
652}
653
654div.dokuwiki ol {list-style-type: decimal}
655div.dokuwiki ol ol {list-style-type: upper-roman}
656div.dokuwiki ol ol ol {list-style-type: lower-alpha}
657div.dokuwiki ol ol ol ol {list-style-type: lower-greek}
658
659div.dokuwiki li.open {
660  list-style-image: url(images/open.gif);
661    /*list-style-type: circle;*/
662}
663
664div.dokuwiki li.closed {
665  list-style-image: url(images/closed.gif);
666    /*list-style-type: disc;*/
667}
668
669div.dokuwiki blockquote {
670  border-left: 2px solid __border__;
671  padding-left: 3px;
672}
673
674div.dokuwiki pre {
675  font-size: 120%;
676  padding: 0.5em;
677  border: 1px dashed __rg_code_border__;
678  color: __text__;
679  overflow: auto;
680}
681
682/* code blocks by indention */
683div.dokuwiki pre.pre {
684  background-color: __rg_code__ ;
685}
686
687/* code blocks by code tag */
688div.dokuwiki pre.code {
689  background-color: __rg_code__ ;
690}
691
692/* inline code words */
693div.dokuwiki code {
694  font-size: 120%;
695}
696
697/* code blocks by file tag */
698div.dokuwiki pre.file {
699  font-size: 120%;
700  padding: 0.5em;
701  border: 1px dotted __rg_file_border__ ;
702  color: Black;
703  background-color: __rg_file__ ;
704  overflow: auto;
705}
706
707/* Highlights the current page in the index */
708.curid {
709  font-weight: bold;
710}
711
712/* inline tables */
713div.dokuwiki table.inline {
714  border-style: none;
715  background-color: __background__;
716/*  border-spacing: 0px; */
717/*  border-collapse: collapse; */
718}
719
720div.dokuwiki table.inline th {
721  padding: 3px;
722  border: 1px solid __border__;
723  background-color: __background_alt__;
724}
725
726div.dokuwiki table.inline td {
727  padding: 3px;
728  border: 1px solid __border__;
729}
730
731/* ---------- table of contents ------------------- */
732
733div.dokuwiki div.toc {
734  margin: 1.2em 0 0 2em;
735  float: right;
736  width: 200px;
737  font-size: 80%;
738  clear: both;
739}
740
741div.dokuwiki div.sidebar div.toc {
742  display: none;
743}
744
745div.dokuwiki div.tocheader {
746  border: 1px solid __border__;
747  background-color: __background_alt__;
748  text-align: left;
749  font-weight: bold;
750  padding: 3px;
751  margin-bottom: 2px;
752}
753
754div.dokuwiki div.tocheader img {
755  width: 0.8em;
756  height: 0.8em;
757  float: right;
758  margin: 0.3em 3px 0 0;
759  cursor: pointer;
760}
761
762div.dokuwiki #toc__inside {
763  border: 1px solid __border__;
764  background-color: __background__;
765  text-align: left;
766  padding: 0.5em 0 0.7em 0;
767}
768
769div.dokuwiki ul.toc {
770  list-style-type: none;
771  list-style-image: none;
772  line-height: 1.2em;
773  padding-left: 1em;
774  margin: 0;
775}
776
777div.dokuwiki ul.toc li {
778  background: transparent url(images/tocdot2.gif) 0 0.6em no-repeat;
779  padding-left: 0.4em;
780}
781
782div.dokuwiki ul.toc li.clear {
783  background-image: none;
784  padding-left: 0.4em;
785}
786
787div.dokuwiki a.toc:link,
788div.dokuwiki a.toc:visited {
789  color: __text__ ;
790  text-decoration:none;
791}
792
793div.dokuwiki a.toc:hover,
794div.dokuwiki a.toc:active {
795  color: __text__;
796  text-decoration:underline;
797}
798
799/* ---------------------------- Diff rendering --------------------------*/
800div.dokuwiki table.diff {
801  background-color: __background__;
802  width: 100%;
803}
804div.dokuwiki td.diff-blockheader {
805  font-weight: bold;
806}
807div.dokuwiki table.diff th {
808  border-bottom: 1px solid __border__;
809  font-size: 120%;
810  width: 50%;
811  font-weight: normal;
812  text-align: left;
813}
814div.dokuwiki table.diff td {
815  font-family: monospace;
816  font-size: 100%;
817}
818div.dokuwiki td.diff-addedline {
819  background-color: #ddffdd;
820}
821div.dokuwiki td.diff-deletedline {
822    background-color: #ffffbb;
823}
824div.dokuwiki td.diff-context {
825    background-color: __background_neu__;
826}
827div.dokuwiki span.diffchange {
828  color: red;
829}
830
831/* --------------------- footnotes -------------------------------- */
832
833div.dokuwiki div.footnotes {
834  clear: both;
835  border-top: 1px solid __border__;
836  padding-left: 1em;
837  margin-top: 1em;
838}
839
840div.dokuwiki div.fn {
841  font-size: 90%;
842}
843
844div.dokuwiki a.fn_top {
845  vertical-align: super;
846  font-size: 80%;
847}
848
849div.dokuwiki a.fn_bot {
850  vertical-align: super;
851  font-size: 80%;
852  font-weight: bold;
853}
854
855/* insitu-footnotes */
856div.insitu-footnote {
857  font-size: 80%;
858  line-height: 1.2em;
859  border: 1px solid __border__;
860  background-color: __background_other__;
861  text-align: left;
862  padding: 4px;
863  max-width: 40%;    /* IE's width is handled in javascript */
864}
865
866/* overcome IE issue with one line code or file boxes which require h. scrolling */
867* html .insitu-footnote pre.code,
868* html .insitu-footnote pre.file {
869  padding-bottom: 18px;
870}
871
872/* --------------- search result formating --------------- */
873div.dokuwiki .search_result {
874  margin-bottom: 6px;
875  padding: 0 10px 0 30px;
876}
877
878div.dokuwiki .search_snippet {
879  color: __text_other__;
880  font-size: 12px;
881  margin-left: 20px;
882}
883
884div.dokuwiki .search_sep {
885  color: __text__;
886}
887
888div.dokuwiki .search_hit {
889  color: __text__;
890  background-color: __highlight__;
891}
892
893div.dokuwiki div.search_quickresult {
894  margin: 0 0 15px 30px;
895  padding: 0 10px 10px 0;
896  border-bottom: 1px dashed __border__;
897}
898div.dokuwiki div.search_quickresult h3 {
899  margin: 0 0 1.0em 0;
900  font-size: 1em;
901  font-weight: bold;
902}
903
904div.dokuwiki ul.search_quickhits {
905  margin: 0 0 0.5em 1.0em;
906}
907
908div.dokuwiki ul.search_quickhits li {
909  margin: 0 1.0em 0 1.0em;
910  float:left;
911  width: 30%;
912}
913
914/* ------------------ Additional ---------------------- */
915
916div.footerinc {
917    text-align: center;
918}
919.footerinc a img {
920    opacity: 0.5;
921    border: 0;
922}
923
924.footerinc a:hover img {
925    opacity: 1;
926}
927
928/* ---------- AJAX quicksearch ----------- */
929
930div.dokuwiki div.ajax_qsearch {
931  position: absolute;
932  right: 237px;;
933  width: 200px;
934  opacity: 0.9;
935  display: none;
936  font-size: 80%;
937  line-height: 1.2em;
938  border: 1px solid __border__;
939  background-color: __background_other__;
940  text-align: left;
941  padding: 4px;
942}
943
944/* --------- Toolbar -------------------- */
945button.toolbutton {
946  background-color: __background__;
947  padding: 0px;
948  margin: 0 1px 0 0;
949  border: 1px solid __border__;
950  cursor: pointer;
951}
952
953/* nice alphatransparency background except for IE <7 */
954html>body button.toolbutton {
955  background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
956}
957
958div.picker {
959  width: 250px;
960  border: 1px solid __border__;
961  background-color: __background_alt__;
962}
963
964button.pickerbutton {
965  padding: 0px;
966  margin: 0 1px 1px 0;
967  border: 0;
968  background-color: transparent;
969  font-size: 80%;
970  cursor: pointer;
971}
972
973/* ---------- Spellchecking ------------- */
974
975div.dokuwiki a.spell_error {
976  color: #f00;
977  text-decoration: underline;
978}
979
980div.dokuwiki div#spell__suggest {
981  background-color: __background__;
982  padding: 2px;
983  border: 1px solid __text__;
984  font-size: 80%;
985  display: none;
986}
987
988div.dokuwiki div#spell__result {
989  border: 1px solid __border__;
990  color: __text__;
991  font-size: 14px;
992  padding: 3px;
993  background-color: __background_other__;
994  display: none;
995}
996
997div.dokuwiki span.spell_noerr {
998  color: #093;
999}
1000
1001div.dokuwiki span.spell_wait {
1002  color: #06c;
1003}
1004
1005/* ---------------  Image Details  ----------------- */
1006
1007div.dokuwiki div.img_big {
1008  float: left;
1009  margin-right: 0.5em;
1010}
1011
1012div.dokuwiki dl.img_tags dt {
1013  font-weight: bold;
1014  background-color: __background_alt__;
1015}
1016div.dokuwiki dl.img_tags dd {
1017  background-color: __background_neu__;
1018}
1019
1020div.dokuwiki div.imagemeta {
1021  color: __text_neu__;
1022  font-size: 70%;
1023  line-height: 95%;
1024}
1025
1026div.dokuwiki div.imagemeta img.thumb {
1027  float:left;
1028  margin-right: 0.1em;
1029}
1030