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: __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
60div#sidebarActionTableId {
61  margin-right: 30px;
62}
63
64/* ---------------- shadows under the main content ------------------------ */
65
66div.dokuwiki .page_lower_dark {
67  background-color: __rg_bread_lower_dark__ ;
68  height: 1px;
69  overflow: hidden;
70  clear: right;
71}
72
73div.dokuwiki .page_lower_medium {
74  background-color: __rg_bread_lower_medium__ ;
75  height: 1px;
76  overflow: hidden;
77}
78
79div.dokuwiki .page_lower_light {
80  background-color: __rg_bread_lower_light__ ;
81  height: 1px;
82  overflow: hidden;
83}
84
85/* ---------------- action links ------------------------ */
86
87div.smallpadding {
88  margin: 5px 0px 10px 2px ;
89}
90
91a.recent {
92  padding: 10px 1px 10px 30px ;
93  background: transparent __rg_recent_action__ no-repeat;
94  background-position: center left;
95  font-variant:small-caps;
96}
97
98a.index {
99  padding: 10px 1px 10px 30px ;
100  background: transparent __rg_index_action__ no-repeat;
101  background-position: center left;
102  font-variant:small-caps;
103}
104
105a.edit {
106  padding: 10px 1px 10px 30px ;
107  background: transparent __rg_edit_action__ no-repeat;
108  background-position: center left;
109  font-variant:small-caps;
110}
111
112a.create {
113  padding: 10px 1px 10px 30px ;
114  background: transparent __rg_create_action__ no-repeat;
115  background-position: center left;
116  font-variant:small-caps;
117}
118
119a.revisions {
120  padding: 10px 1px 10px 30px ;
121  background: transparent __rg_revision_action__ no-repeat;
122  background-position: center left;
123  font-variant:small-caps;
124}
125
126a.backlink {
127  padding: 10px 1px 10px 30px ;
128  background: transparent __rg_backlink_action__ no-repeat;
129  background-position: center left;
130  font-variant:small-caps;
131}
132
133a.login, a.logout {
134  padding: 10px 1px 10px 30px ;
135  background: transparent __rg_login_action__ no-repeat;
136  background-position: center left;
137  font-variant:small-caps;
138}
139
140a.subscribe {
141  padding: 10px 1px 10px 30px ;
142  background: transparent __rg_subscribe_action__ no-repeat;
143  background-position: center left;
144  font-variant:small-caps;
145}
146
147a.unsubscribe {
148  padding: 10px 1px 10px 30px ;
149  background: transparent __rg_unsubscribe_action__ no-repeat;
150  background-position: center left;
151  font-variant:small-caps;
152}
153
154a.profile {
155  padding: 10px 1px 10px 30px ;
156  background: transparent __rg_profile_action__ no-repeat;
157  background-position: center left;
158  font-variant:small-caps;
159}
160
161a.admin {
162  padding: 10px 1px 10px 30px ;
163  background: transparent __rg_admin_action__ no-repeat;
164  background-position: center left;
165  font-variant:small-caps;
166}
167
168a.show, a.source {
169  padding: 10px 1px 10px 30px ;
170  background: transparent __rg_show_action__ no-repeat;
171  background-position: center left;
172  font-variant:small-caps;
173}
174
175a.previous {
176  padding: 10px 1px 10px 30px ;
177  background: transparent __rg_previous_action__ no-repeat;
178  background-position: center left;
179  font-variant:small-caps;
180}
181
182a.top {
183  padding: 10px 24px 10px 1px;
184  /* background: transparent __rg_top_action__ no-repeat; */
185  background-position: center right;
186  font-variant:small-caps;
187}
188
189a.digg {
190  padding: 10px 1px 10px 24px ;
191  background: transparent __rg_digg_action__ no-repeat;
192  background-position: center left;
193  font-variant:small-caps;
194}
195
196a.delicious {
197  padding: 10px 1px 10px 24px ;
198  background: transparent __rg_delicious_action__ no-repeat;
199  background-position: center left;
200  font-variant:small-caps;
201}
202
203a.googlebookmark {
204  padding: 10px 1px 10px 24px ;
205  background: transparent __rg_google_action__ no-repeat;
206  background-position: center left;
207  font-variant:small-caps;
208}
209
210/* ---------------- alignments  ------------------------ */
211
212div.dokuwiki .leftalign { text-align: left; }
213
214div.dokuwiki .centeralign { text-align: center; }
215
216div.dokuwiki .rightalign { text-align: right; }
217
218/* ---------------- forms ------------------------ */
219
220div.dokuwiki form {
221  border: none;
222  display: inline;
223}
224
225div.dokuwiki label.block {
226  display: block;
227  text-align: right;
228  font-weight: bold;
229}
230
231div.dokuwiki label.simple {
232  display: block;
233  text-align: left;
234  font-weight: normal;
235}
236
237div.dokuwiki label.block input.edit {
238  width: 50%;
239}
240
241input.edit {
242  width: 40%;
243}
244
245div.dokuwiki fieldset {
246  width: 300px;
247  text-align: center;
248  border: 1px solid __border__;
249  padding: 0.5em;
250  margin: auto;
251}
252
253div.dokuwiki textarea.edit {
254  font-family: monospace;
255  font-size: 14pt;
256  color: __text__;
257  background-color: __background__;
258  border: 1px solid __border__;
259  padding: 0.3em 0 0 0.3em;
260  width: 100%;
261}
262
263/* nice alphatransparency background except for IE <7 */
264html>body div.dokuwiki textarea.edit {
265  background:  __background__ url(images/inputshadow.png) repeat-x top;
266}
267
268div.dokuwiki input.edit,
269div.dokuwiki select.edit {
270  font-size: 100%;
271  border: 1px solid __border__;
272  color: __text__;
273  background-color: __background__;
274  vertical-align: middle;
275  margin: 1px;
276  padding: 0.20em 0.3em;
277  display: inline;
278}
279
280/* nice alphatransparency background except for IE <7 */
281html>body div.dokuwiki input.edit,
282html>body div.dokuwiki select.edit {
283  background:  __background__ url(images/inputshadow.png) repeat-x top;
284}
285
286div.dokuwiki select.edit {
287  padding: 0.1em 0;
288}
289
290div.dokuwiki input.missing {
291  font-size: 100%;
292  border: 1px solid __border__;
293  color: __text__;
294  background-color: #ffcccc;
295  vertical-align: middle;
296  margin: 1px;
297  padding: 0.20em 0.3em;
298  display: inline;
299}
300
301/* edit form */
302div.dokuwiki div.toolbar,
303div.dokuwiki div#wiki__editbar {
304   margin: 2px 0;
305   text-align: left;
306}
307div.dokuwiki div#size__ctl {
308   float: right;
309   width: 60px;
310   height: 2.7em;
311}
312div.dokuwiki #size__ctl img {
313   cursor: pointer;
314}
315div.dokuwiki div#wiki__editbar div.editButtons {
316   float: left;
317   padding: 0 1.0em 0.7em 0;
318}
319div.dokuwiki div#wiki__editbar div.summary {
320   float: left;
321}
322div.dokuwiki .nowrap {
323   white-space: nowrap;
324}
325div.dokuwiki div#draft__status {
326  float: right;
327  color: __text_alt__;
328}
329
330/* --------- buttons ------------------- */
331
332
333div.dokuwiki input.button,
334div.dokuwiki button.button {
335  border: 1px solid __border__;
336  color: __text__;
337  background-color: __rg_button_background__;
338  vertical-align: middle;
339  text-decoration: none;
340  font-size: 100%;
341  cursor: pointer;
342  margin: 1px;
343  padding: 0.125em 0.4em;
344}
345
346/* nice alphatransparency background except for IE <7 */
347html>body div.dokuwiki input.button,
348html>body div.dokuwiki button.button {
349  background:  __rg_button_background__ url(images/buttonshadow.png) repeat-x bottom;
350}
351
352div.dokuwiki input.button:hover, button.button:hover {
353  border: 1px solid __border__;
354  background-color: __rg_button_prelight__;
355}
356
357* html div.dokuwiki input.button,
358* html div.dokuwiki button.button {
359  height: 1.8em;
360}
361
362div.dokuwiki div.secedit input.button {
363  border: 1px solid __border__;
364  color: __text__;
365  background-color: __rg_button_background__;
366  vertical-align: middle;
367  text-decoration: none;
368  margin: 0;
369  padding: 0;
370  font-size: 10px;
371  cursor: pointer;
372  float: right;
373  display: inline;
374}
375
376div.dokuwiki div.secedit input.button:hover {
377  border: 1px solid __border__;
378  background-color: __rg_button_prelight__;
379}
380
381/* ----------- page navigator ------------- */
382
383div.dokuwiki div.pagenav {
384    margin: 1em 0 0 0;
385}
386
387div.dokuwiki div.pagenav-prev {
388    text-align: right;
389    float: left;
390    width: 49%
391}
392
393div.dokuwiki div.pagenav-next {
394    text-align: left;
395    float: right;
396    width: 49%
397}
398
399/* --------------- Links ------------------ */
400
401div.dokuwiki a:link,
402div.dokuwiki a:visited {
403  color: __extern__;
404  text-decoration:underline;
405}
406div.dokuwiki a:hover,
407div.dokuwiki a:active {
408  color:__hover__;
409  text-decoration:underline;
410}
411
412div.dokuwiki h1 a,
413div.dokuwiki h2 a,
414div.dokuwiki h3 a,
415div.dokuwiki h4 a,
416div.dokuwiki h5 a,
417div.dokuwiki h1 a:hover,
418div.dokuwiki h2 a:hover,
419div.dokuwiki h3 a:hover,
420div.dokuwiki h4 a:hover,
421div.dokuwiki h5 a:hover {
422  color:__text__;
423  text-decoration:none;
424}
425
426/* external link */
427div.dokuwiki a.urlextern {
428    background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
429    padding: 1px 0px 1px 16px;
430    color:__extern__;
431    text-decoration:underline;
432}
433div.dokuwiki a.urlextern:visited {
434  color: __visited__  ;
435}
436div.dokuwiki a.urlextern:hover {
437  color:__hover__ ;
438  text-decoration:underline;
439}
440
441/* windows share */
442div.dokuwiki a.windows {
443    background: transparent url(images/windows.gif) 0px 1px no-repeat;
444    padding: 1px 0px 1px 16px;
445    color:__extern__;
446    text-decoration:underline;
447}
448div.dokuwiki a.windows:visited {
449  color:__visited__ ;
450}
451div.dokuwiki a.windows:hover {
452  color:__hover__;
453  text-decoration:underline;
454}
455
456/* interwiki link (icon are set by dokuwiki) */
457div.dokuwiki a.interwiki {
458    color:__extern__;
459    text-decoration:underline;
460}
461div.dokuwiki a.interwiki:visited {
462  color:__visited__ ;
463}
464div.dokuwiki a.interwiki:hover {
465  color:__hover__ ;
466  text-decoration:underline;
467}
468
469/* link to some embedded media */
470div.dokuwiki a.media {
471  color:__extern__;
472  text-decoration:underline;
473}
474div.dokuwiki a.media:hover {
475  color:__hover__;
476  text-decoration:underline
477}
478
479/* email link */
480div.dokuwiki a.mail {
481  background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
482  padding: 1px 0px 1px 16px;
483  color:__extern__;
484  text-decoration:underline;
485}
486div.dokuwiki a.mail:hover {
487  color:__hover__ ;
488  text-decoration:underline;
489}
490
491/* existing wikipage */
492div.dokuwiki a.wikilink1:link    { color:__existing__; text-decoration:underline }
493div.dokuwiki a.wikilink1:visited { color:__visited__; text-decoration:underline }
494div.dokuwiki a.wikilink1:hover   { color:__hover__; text-decoration:underline }
495
496/* not existing wikipage */
497div.dokuwiki a.wikilink2:link    { color:__missing__; text-decoration:underline }
498div.dokuwiki a.wikilink2:visited { color:__missing__; text-decoration:underline }
499div.dokuwiki a.wikilink2:hover   { color:__missing__; text-decoration:underline }
500
501
502/* ------------- Page elements ----------------- */
503
504div.dokuwiki div.preview {
505  background-color: __background_neu__;
506  margin: 0 0 0 2em;
507  padding: 4px;
508  border: 1px dashed __text__;
509}
510
511/* ------------- Breadcrumbs ----------------- */
512
513div.dokuwiki div.breadcrumbs {
514  color: __text_neu__;
515  font-size: 80%;
516  padding: 10px 0 10px 4px;
517  vertical-align:middle;
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 li.open  ul {
670    margin-left: 1.1em !important;
671}
672
673div.dokuwiki li.open  li strong {
674    font-weight: normal;
675}
676
677div.dokuwiki li.open  ul {
678    margin-left: 1.1em !important;
679}
680
681div.dokuwiki li.open  li strong {
682    font-weight: normal;
683}
684
685div.dokuwiki blockquote {
686  border-left: 2px solid __border__;
687  padding-left: 3px;
688}
689
690div.dokuwiki pre {
691  font-size: 120%;
692  padding: 0.5em;
693  border: 1px dashed #8CACBB; /*__rg_code_border__;*/
694  color: __text__;
695  overflow: auto;
696}
697
698/* code blocks by indention */
699div.dokuwiki pre.pre {
700  background-color: __rg_code__ ;
701}
702
703/* code blocks by code tag */
704div.dokuwiki pre.code {
705  background-color: __rg_code__ ;
706}
707
708/* inline code words */
709div.dokuwiki code {
710  font-size: 120%;
711}
712
713/* code blocks by file tag */
714div.dokuwiki pre.file {
715  font-size: 120%;
716  padding: 0.5em;
717  border: 1px dotted __rg_file_border__ ;
718  color: Black;
719  background-color: __rg_file__ ;
720  overflow: auto;
721}
722
723/* Highlights the current page in the index */
724.curid {
725  font-weight: bold;
726}
727
728/* inline tables */
729div.dokuwiki table.inline {
730  border-style: none;
731  background-color: __background__;
732/*  border-spacing: 0px; */
733/*  border-collapse: collapse; */
734}
735
736div.dokuwiki table.inline th {
737  padding: 3px;
738  border: 1px solid __border__;
739  background-color: __background_alt__;
740}
741
742div.dokuwiki table.inline td {
743  padding: 3px;
744  border: 1px solid __border__;
745}
746
747/* ---------- table of contents ------------------- */
748
749div.dokuwiki div.toc {
750  background : __rg_toc_background__;
751  margin: 1.2em 0 0 2em;
752  float: right;
753  width: 200px;
754  font-size: 80%;
755  clear: both;
756}
757
758div.dokuwiki div.sidebar div.toc {
759  display: none;
760}
761
762div.dokuwiki div.tocheader {
763  text-align: left;
764  font-weight: bold;
765  padding: 3px;
766  margin-bottom: 2px;
767  margin-left : 15px;
768}
769
770div.dokuwiki div.tocheader img {
771  width: 0.8em;
772  height: 0.8em;
773  float: right;
774  margin: 0.3em 3px 0 0;
775  cursor: pointer;
776}
777
778div.dokuwiki #toc__inside {
779/*  border: 1px solid __border__;*/
780/*  background-color: __background__;*/
781  text-align: left;
782  padding: 0.5em 0 0.7em 0;
783  margin-left : 5px;
784}
785
786div.dokuwiki ul.toc {
787  list-style-type: none;
788  list-style-image: none;
789  line-height: 1.2em;
790  padding-left: 1em;
791  margin: 0;
792}
793
794div.dokuwiki ul.toc li {
795  background: transparent url(images/tocdot2.gif) 0 0.6em no-repeat;
796  padding-left: 0.4em;
797}
798
799div.dokuwiki ul.toc li.clear {
800  background-image: none;
801  padding-left: 0.4em;
802}
803
804div.dokuwiki a.toc:link,
805div.dokuwiki a.toc:visited {
806  color: __text__ ;
807  text-decoration:none;
808}
809
810div.dokuwiki a.toc:hover,
811div.dokuwiki a.toc:active {
812  color: __text__;
813  text-decoration:underline;
814}
815
816/* ---------------------------- Diff rendering --------------------------*/
817div.dokuwiki table.diff {
818  background-color: __background__;
819  width: 100%;
820}
821div.dokuwiki td.diff-blockheader {
822  font-weight: bold;
823}
824div.dokuwiki table.diff th {
825  border-bottom: 1px solid __border__;
826  font-size: 120%;
827  width: 50%;
828  font-weight: normal;
829  text-align: left;
830}
831div.dokuwiki table.diff td {
832  font-family: monospace;
833  font-size: 100%;
834}
835div.dokuwiki td.diff-addedline {
836  background-color: #ddffdd;
837}
838div.dokuwiki td.diff-deletedline {
839    background-color: #ffffbb;
840}
841div.dokuwiki td.diff-context {
842    background-color: __background_neu__;
843}
844div.dokuwiki span.diffchange {
845  color: red;
846}
847
848/* --------------------- footnotes -------------------------------- */
849
850div.dokuwiki div.footnotes {
851  clear: both;
852  border-top: 1px solid __border__;
853  padding-left: 1em;
854  margin-top: 1em;
855}
856
857div.dokuwiki div.fn {
858  font-size: 90%;
859}
860
861div.dokuwiki a.fn_top {
862  vertical-align: super;
863  font-size: 80%;
864}
865
866div.dokuwiki a.fn_bot {
867  vertical-align: super;
868  font-size: 80%;
869  font-weight: bold;
870}
871
872/* insitu-footnotes */
873div.insitu-footnote {
874  font-size: 80%;
875  line-height: 1.2em;
876  border: 1px solid __border__;
877  background-color: __background_other__;
878  text-align: left;
879  padding: 4px;
880  max-width: 40%;    /* IE's width is handled in javascript */
881}
882
883/* overcome IE issue with one line code or file boxes which require h. scrolling */
884* html .insitu-footnote pre.code,
885* html .insitu-footnote pre.file {
886  padding-bottom: 18px;
887}
888
889/* --------------- search result formating --------------- */
890div.dokuwiki .search_result {
891  margin-bottom: 6px;
892  padding: 0 10px 0 30px;
893}
894
895div.dokuwiki .search_snippet {
896  color: __text_other__;
897  font-size: 12px;
898  margin-left: 20px;
899}
900
901div.dokuwiki .search_sep {
902  color: __text__;
903}
904
905div.dokuwiki .search_hit {
906  color: __text__;
907  background-color: __highlight__;
908}
909
910div.dokuwiki div.search_quickresult {
911  margin: 0 0 15px 30px;
912  padding: 0 10px 10px 0;
913  border-bottom: 1px dashed __border__;
914}
915div.dokuwiki div.search_quickresult h3 {
916  margin: 0 0 1.0em 0;
917  font-size: 1em;
918  font-weight: bold;
919}
920
921div.dokuwiki ul.search_quickhits {
922  margin: 0 0 0.5em 1.0em;
923}
924
925div.dokuwiki ul.search_quickhits li {
926  margin: 0 1.0em 0 1.0em;
927  float:left;
928  width: 30%;
929}
930
931/* ------------------ Additional ---------------------- */
932
933div.footerinc {
934    margin-top : 18px;
935    text-align: center;
936}
937.footerinc a img {
938    opacity: 0.5;
939    border: 0;
940}
941
942.footerinc a:hover img {
943    opacity: 1;
944}
945
946/* ---------- AJAX quicksearch ----------- */
947
948div.dokuwiki div.ajax_qsearch {
949  position: absolute;
950  right: 237px;;
951  width: 200px;
952  opacity: 0.9;
953  display: none;
954  font-size: 80%;
955  line-height: 1.2em;
956  border: 1px solid __border__;
957  background-color: __background_other__;
958  text-align: left;
959  padding: 4px;
960}
961
962/* --------- Toolbar -------------------- */
963button.toolbutton {
964  background-color: __background__;
965  padding: 0px;
966  margin: 0 1px 0 0;
967  border: 1px solid __border__;
968  cursor: pointer;
969}
970
971/* nice alphatransparency background except for IE <7 */
972html>body button.toolbutton {
973  background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
974}
975
976div.picker {
977  width: 250px;
978  border: 1px solid __border__;
979  background-color: __background_alt__;
980}
981
982button.pickerbutton {
983  padding: 0px;
984  margin: 0 1px 1px 0;
985  border: 0;
986  background-color: transparent;
987  font-size: 80%;
988  cursor: pointer;
989}
990
991/* ---------- Spellchecking ------------- */
992
993div.dokuwiki a.spell_error {
994  color: #f00;
995  text-decoration: underline;
996}
997
998div.dokuwiki div#spell__suggest {
999  background-color: __background__;
1000  padding: 2px;
1001  border: 1px solid __text__;
1002  font-size: 80%;
1003  display: none;
1004}
1005
1006div.dokuwiki div#spell__result {
1007  border: 1px solid __border__;
1008  color: __text__;
1009  font-size: 14px;
1010  padding: 3px;
1011  background-color: __background_other__;
1012  display: none;
1013}
1014
1015div.dokuwiki span.spell_noerr {
1016  color: #093;
1017}
1018
1019div.dokuwiki span.spell_wait {
1020  color: #06c;
1021}
1022
1023/* ---------------  Image Details  ----------------- */
1024
1025div.dokuwiki div.img_big {
1026  float: left;
1027  margin-right: 0.5em;
1028}
1029
1030div.dokuwiki dl.img_tags dt {
1031  font-weight: bold;
1032  background-color: __background_alt__;
1033}
1034div.dokuwiki dl.img_tags dd {
1035  background-color: __background_neu__;
1036}
1037
1038div.dokuwiki div.imagemeta {
1039  color: __text_neu__;
1040  font-size: 70%;
1041  line-height: 95%;
1042}
1043
1044div.dokuwiki div.imagemeta img.thumb {
1045  float:left;
1046  margin-right: 0.1em;
1047}
1048