1body {
2font-size: 12px;
3font-family: __font_prototype__;
4color: #333;
5}
6
7
8/*\
9 *	the document
10\*/
11div.dokuwiki div.page {
12	text-align: left;
13	width:100%;
14}
15div.dokuwiki table {
16	font-size: 14px;
17}
18
19div.dokuwiki tr,
20div.dokuwiki td,
21div.dokuwiki th {
22}
23
24div.dokuwiki div.nothing {
25  text-align: center;
26  margin: 20px;
27}
28
29/* ---------------- forms ------------------------ */
30
31div.dokuwiki form {
32	border: none;
33	display: inline;
34}
35
36div.dokuwiki label.block {
37	display: block;
38	text-align: right;
39	font-weight: bold;
40}
41
42div.dokuwiki label.simple {
43	display: block;
44	text-align: left;
45	font-weight: normal;
46}
47
48div.dokuwiki label.block input.edit {
49	width: 50%;
50}
51
52div.dokuwiki fieldset {
53	width: 300px;
54	text-align: center;
55	border: 1px solid #ccc;
56	padding: 10px;
57	margin: auto;
58}
59
60div.dokuwiki textarea.edit {
61  border: 1px solid #000;
62  font-weight: bold;
63  background:#000;
64  color:#fff;
65  font-family: __font_monospace__;
66  /* second generic font fixes problem with font-size, see
67     http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/ */
68  font-size: 14px;
69  padding: 4px 0 0 4px;
70  /* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
71  width: 700px;
72  min-width: 100%;
73  max-width: 100%;
74
75}
76
77/* nice alphatransparency background except for IE <7 */
78html>body div.dokuwiki textarea.edit {
79}
80
81div.dokuwiki input.edit,
82div.dokuwiki select.edit {
83  font-size: 12px;
84  border: 1px solid #000;
85  color: #333;
86  vertical-align: bottom;
87  margin: 0px;
88  padding: 2px;
89  line-height: 17px;
90  display: inline;
91}
92
93/* nice alphatransparency background except for IE <7 */
94html>body div.dokuwiki input.edit,
95html>body div.dokuwiki select.edit {
96  background:  __background__;
97}
98
99div.dokuwiki select.edit {
100  padding: 0.1em 0;
101}
102
103div.dokuwiki input.missing {
104  font-size: 100%;
105  border: 1px solid __border__;
106  color: __text__;
107  background-color: #ffcccc;
108  vertical-align: middle;
109  margin: 1px;
110  padding: 0.20em 0.3em;
111  display: inline;
112}
113
114/* disabled style - not understood by IE */
115div.dokuwiki textarea.edit[disabled],
116div.dokuwiki textarea.edit[readonly],
117div.dokuwiki input.edit[disabled],
118div.dokuwiki input.edit[readonly],
119div.dokuwiki input.button[disabled],
120div.dokuwiki select.edit[disabled] {
121  background-color: __background_neu__!important;
122  color: __text_neu__!important;
123}
124
125/* edit form */
126div.dokuwiki div.toolbar,
127div.dokuwiki div#wiki__editbar {
128   margin: 2px 0;
129   text-align: left;
130   overflow:hidden
131}
132div.dokuwiki div#size__ctl {
133   float: right;
134   width: 60px;
135   height: 2.7em;
136}
137div.dokuwiki #size__ctl img {
138   cursor: pointer;
139}
140div.dokuwiki div#wiki__editbar div.editButtons {
141   float: left;
142   padding: 0 1.0em 0.7em 0;
143}
144div.dokuwiki div#wiki__editbar div.summary {
145   float: left;
146}
147div.dokuwiki .nowrap {
148   white-space: nowrap;
149}
150div.dokuwiki div#draft__status {
151  float: right;
152  color: __text_alt__;
153}
154
155div.dokuwiki div.license {
156	padding: 0px 20px;
157	margin:5px 0;
158	font-size: 10px;
159	text-align: left;
160}
161
162div.dokuwiki form#dw__editform div.license {
163	clear: left;
164	font-size: 10px;
165}
166
167/* --------- buttons ------------------- */
168
169
170
171/*
172div.dokuwiki div.secedit input.button {
173  border: 1px solid #f5f5f5;
174  color: #ff0000;
175  background:#f5f5f5;
176  vertical-align: middle;
177  text-decoration: underline;
178  margin: 0;
179  padding: 0;
180  font-size: 10px;
181  cursor: pointer;
182  float: right;
183  display: inline;
184}
185div.dokuwiki div.bar-left form.btn_edit input.button {
186  background:#f5f5f5;
187  padding:0;
188}
189*/
190
191/* ----------- page navigator ------------- */
192
193div.dokuwiki div.pagenav {
194    margin: 1em 0 0 0;
195}
196
197div.dokuwiki div.pagenav-prev {
198    text-align: right;
199    float: left;
200    width: 49%
201}
202
203div.dokuwiki div.pagenav-next {
204    text-align: left;
205    float: right;
206    width: 49%
207}
208
209/* ----------- type of recent changes select -------- */
210
211div.dokuwiki form#dw__recent select {
212    margin-bottom: 10px;
213}
214
215/* --------------- Links ------------------ */
216
217div.dokuwiki a:link,
218div.dokuwiki a:visited {
219
220}
221div.dokuwiki a:hover,
222div.dokuwiki a:active {
223
224}
225
226div.dokuwiki h1 a,
227div.dokuwiki h2 a,
228div.dokuwiki h3 a,
229div.dokuwiki h4 a,
230div.dokuwiki h5 a,
231div.dokuwiki a.nolink {
232  color: __text__ !important;
233  text-decoration: none !important;
234}
235
236/* external link */
237div.dokuwiki a.urlextern {
238  background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
239  color: #0000ee;
240  padding: 1px 0px 1px 16px;
241}
242
243/* windows share */
244div.dokuwiki a.windows {
245  background: transparent url(images/windows.gif) 0px 1px no-repeat;
246  padding: 1px 0px 1px 16px;
247}
248
249/* interwiki link (icon are set by dokuwiki) */
250div.dokuwiki a.interwiki {
251}
252
253/* link to some embedded media */
254div.dokuwiki a.media {
255}
256
257div.dokuwiki a.urlextern:link,
258div.dokuwiki a.windows:link,
259div.dokuwiki a.interwiki:link {
260  color: #0000ee;
261  text-decoration:underline;
262}
263
264div.dokuwiki a.urlextern:visited,
265div.dokuwiki a.windows:visited,
266div.dokuwiki a.interwiki:visited {
267  color: #0000ee;
268  text-decoration:underline;
269}
270div.dokuwiki a.urlextern:hover,
271div.dokuwiki a.urlextern:active,
272div.dokuwiki a.windows:hover,
273div.dokuwiki a.windows:active,
274div.dokuwiki a.interwiki:hover,
275div.dokuwiki a.interwiki:active {
276  color: #0000ee;
277  text-decoration:underline;
278}
279
280/* email link */
281div.dokuwiki a.mail {
282  background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
283  padding: 1px 0px 1px 16px;
284}
285
286/* existing wikipage */
287div.dokuwiki a.wikilink1 {
288  color: #0000ee !important;
289  text-decoration:underline !important;
290}
291
292/* not existing wikipage */
293div.dokuwiki a.wikilink2 {
294  color: __missing__ !important;
295  text-decoration: none !important;
296  border-bottom: dashed 1px __missing__ !important;
297}
298
299/* ------------- Page elements ----------------- */
300
301div.dokuwiki div.preview {
302	background-color: __background_neu__;
303	margin: 0 0 0 10px;
304	padding: 4px;
305	border: 1px dashed __text__;
306}
307
308div.dokuwiki div.breadcrumbs {
309	font-size: 10px;
310	padding: 0 20px;
311	margin-top: 5px;
312}
313
314div.dokuwiki span.user {
315	color: __text_other__;
316	font-size: 90%;
317}
318
319div.dokuwiki li.minor {
320	color: __text_neu__;
321	font-style: italic;
322}
323
324/* embedded images */
325div.dokuwiki img.media {
326  margin: 3px;
327}
328
329div.dokuwiki img.medialeft {
330  border: 0;
331  float: left;
332  margin: 0 1.5em 0 0;
333}
334
335div.dokuwiki img.mediaright {
336  border: 0;
337  float: right;
338  margin: 0 0 0 1.5em;
339}
340
341div.dokuwiki img.mediacenter {
342  border: 0;
343  display: block;
344  margin: 0 auto;
345}
346
347/* smileys */
348div.dokuwiki img.middle {
349  vertical-align: middle;
350}
351
352div.dokuwiki acronym {
353  cursor: help;
354  border-bottom: 1px dotted __text__;
355}
356
357/* general headline setup */
358div.dokuwiki h1,
359div.dokuwiki h2,
360div.dokuwiki h3,
361div.dokuwiki h4,
362div.dokuwiki h5 {
363	font-family: Georgia,Palatino,serif;
364    color: __text__;
365    background-color: inherit;
366    font-size: 100%;
367    font-weight: normal;
368    margin: 0;
369    padding: 0;
370    clear: left;
371}
372
373/* special headlines */
374div.dokuwiki h1 {font-size: 28px;}
375div.dokuwiki h2 {font-size: 24px;}
376div.dokuwiki h3 {font-size: 22px;}
377div.dokuwiki h4 {font-size: 20px;}
378div.dokuwiki h5 {font-size: 18px;}
379/* indent different sections */
380div.dokuwiki div.level1 { margin: 0 0 0px 0; }
381div.dokuwiki div.level2 { margin: 0 0 0px 0; }
382div.dokuwiki div.level3 { margin: 0 0 0px 0; }
383div.dokuwiki div.level4 { margin: 0 0 0px 0; }
384div.dokuwiki div.level5 { margin: 0 0 0px 0; }
385
386/* unordered lists */
387div.dokuwiki ul {
388  line-height: 1.5em;
389  list-style-type: disc;
390  list-style-image: none;
391  margin: 0 0 1em 3.5em;
392  color: __text__;
393}
394
395/* ordered lists */
396div.dokuwiki ol {
397  line-height: 1.5em;
398  list-style-image: none;
399  margin: 0 0 1em 3.5em;
400  color: __text__;
401  font-weight: bold;
402}
403
404/* no bottom gap in between and smaller left margin for nested lists */
405div.dokuwiki li ul,
406div.dokuwiki li ol {
407  margin: 0 0 0 1.5em;
408}
409
410/* the list items overriding the ul/ol definition */
411div.dokuwiki .li {
412  color: __text__;
413  font-weight: normal;
414}
415
416div.dokuwiki ol { list-style-type: decimal; }
417div.dokuwiki ol ol { list-style-type: upper-roman; }
418div.dokuwiki ol ol ol { list-style-type: lower-alpha; }
419div.dokuwiki ol ol ol ol { list-style-type: lower-greek; }
420
421div.dokuwiki li.open {
422  list-style-image: url(images/open.gif);
423    /*list-style-type: circle;*/
424}
425
426div.dokuwiki li.closed {
427  list-style-image: url(images/closed.gif);
428    /*list-style-type: disc;*/
429}
430
431div.dokuwiki blockquote {
432  border-left: 2px solid __border__;
433  padding-left: 3px;
434}
435
436div.dokuwiki pre,
437div.dokuwiki code {
438  font-family: monospace, serif;
439  /* second generic font fixes problem with font-size, see
440     http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/ */
441  font-size: 100%;
442}
443div.dokuwiki pre {
444  padding: 0.5em;
445  border: 1px dashed __border__;
446  color: __text__;
447  overflow: auto;
448}
449
450/* code blocks by indention */
451div.dokuwiki pre.pre {
452  background-color: __background_other__;
453}
454
455/* code blocks by code tag */
456div.dokuwiki pre.code {
457  background-color: __background_other__;
458}
459
460/* code blocks by file tag */
461div.dokuwiki pre.file {
462  background-color: __background_alt__;
463}
464
465/* filenames for file and code blocks */
466div.dokuwiki dl.file,
467div.dokuwiki dl.code {
468    margin-top: 2em;
469    margin-bottom: 2.5em;
470}
471
472div.dokuwiki dl.file dt,
473div.dokuwiki dl.code dt {
474    border: 1px dashed __border__;
475    display: inline;
476    padding: 0.1em 1em;
477    margin-left: 2em;
478}
479
480div.dokuwiki dl.code dt a,
481div.dokuwiki dl.file dt a {
482    color: __text__;
483}
484
485div.dokuwiki dl.code dt {
486    background-color: __background_other__;
487    border-bottom: 1px solid __background_other__;
488}
489
490div.dokuwiki dl.file dt {
491    background-color: __background_alt__;
492    border-bottom: 1px solid __background_alt__;
493}
494
495
496/* inline tables */
497div.dokuwiki table.inline {
498  background-color: __background__;
499  border-spacing: 0px;
500  border-collapse: collapse;
501}
502
503div.dokuwiki table.inline th {
504  padding: 3px;
505  border: 1px solid __border__;
506  background-color: __background_alt__;
507}
508
509div.dokuwiki table.inline td {
510  padding: 3px;
511  border: 1px solid __border__;
512}
513
514/* ---------- table of contents ------------------- */
515
516div.dokuwiki div#dw__toc {
517float: right;
518width: 300px;
519clear: both;
520border:1px dashed #ddd;
521background: #f9f9f9;
522padding:20px;
523margin:0px 0px 10px 20px;
524}
525
526div.dokuwiki div#dw__toc h3 strong span {
527margin-right:10px;
528}
529
530div.dokuwiki div#dw__toc > div {
531	padding: 20px 0 0 0;
532	border-top:1px dashed #ccc;
533	margin: 20px 0 0 0;
534  float: right;
535  width: 300px;
536  font-size: 12px;
537  clear: both;
538}
539
540div.dokuwiki div.tocheader {
541  border: 1px solid __border__;
542  background-color: __background_alt__;
543  text-align: left;
544  font-weight: bold;
545  padding: 3px;
546  margin-bottom: 2px;
547}
548
549div.dokuwiki span.toc_open,
550div.dokuwiki span.toc_close {
551    border: 0.4em solid __background_alt__;
552    float: right;
553    display: block;
554    margin: 0.4em 3px 0 0;
555}
556
557div.dokuwiki span.toc_open span,
558div.dokuwiki span.toc_close span {
559    display: none;
560}
561
562div.dokuwiki span.toc_open {
563    margin-top: 0.4em;
564    border-top: 0.4em solid __text__;
565}
566
567div.dokuwiki span.toc_close {
568    margin-top: 0;
569    border-bottom: 0.4em solid __text__;
570}
571
572div.dokuwiki #toc__inside {
573  border: 1px solid __border__;
574  background-color: __background__;
575  text-align: left;
576  padding: 0.5em 0 0.7em 0;
577}
578
579div.dokuwiki ul.toc {
580
581  list-style-type: none;
582  list-style-image: none;
583  padding-left: 0;
584  margin: 0;
585}
586
587div.dokuwiki ul.toc li {
588  background: transparent url(images/tocdot2.gif) 0 0.6em no-repeat;
589  padding-left: 0.4em;
590}
591
592div.dokuwiki ul.toc li.clear {
593  background-image: none;
594  padding-left: 0.4em;
595}
596
597div.dokuwiki a.toc:link,
598div.dokuwiki a.toc:visited {
599  color: __extern__;
600}
601
602div.dokuwiki a.toc:hover,
603div.dokuwiki a.toc:active {
604  color: __text__;
605}
606
607/* ---------------------------- Diff rendering --------------------------*/
608div.dokuwiki table.diff {
609  background-color: __background__;
610  width: 100%;
611}
612div.dokuwiki td.diff-blockheader {
613  font-weight: bold;
614}
615div.dokuwiki table.diff th {
616  border-bottom: 1px solid __border__;
617  font-size: 110%;
618  width: 50%;
619  font-weight: normal;
620  text-align: left;
621}
622div.dokuwiki table.diff th a {
623    font-weight: bold;
624}
625div.dokuwiki table.diff th span.user {
626    color: __text__;
627    font-size: 80%;
628}
629div.dokuwiki table.diff th span.sum {
630    font-size: 80%;
631    font-weight: bold;
632}
633div.dokuwiki table.diff th.minor {
634  font-style: italic;
635}
636div.dokuwiki table.diff td {
637  font-family: monospace;
638  font-size: 100%;
639}
640div.dokuwiki td.diff-addedline,
641div.dokuwiki span.diff-addedline {
642  background-color: #ddffdd;
643}
644div.dokuwiki td.diff-deletedline,
645div.dokuwiki span.diff-deletedline {
646    background-color: #ffffbb;
647}
648div.dokuwiki td.diff-context {
649    background-color: __background_neu__;
650}
651div.dokuwiki table.diff td.diff-addedline strong,
652div.dokuwiki table.diff td.diff-deletedline strong {
653    color: red;
654}
655
656/* --------------------- footnotes -------------------------------- */
657
658div.dokuwiki div.footnotes {
659  clear: both;
660  border-top: 1px solid __border__;
661  padding-left: 10px;
662  margin-top: 10px;
663}
664
665div.dokuwiki div.fn {
666  font-size: 14px;
667}
668
669div.dokuwiki a.fn_bot {
670  font-weight: bold;
671}
672
673/* insitu-footnotes */
674div.insitu-footnote {
675  font-size: 80%;
676  line-height: 1.2em;
677  border: 1px solid __border__;
678  background-color: __background_other__;
679  text-align: left;
680  padding: 4px;
681  max-width: 40%;    /* IE's width is handled in javascript */
682  min-width: 5em;
683}
684
685/* overcome IE issue with one line code or file boxes which require h. scrolling */
686* html .insitu-footnote pre.code,
687* html .insitu-footnote pre.file {
688  padding-bottom: 18px;
689}
690
691/* --------------- search result formating --------------- */
692div.dokuwiki .search_result {
693  margin-bottom: 6px;
694  padding: 0 10px 0 30px;
695}
696
697div.dokuwiki .search_snippet {
698  color: __text_other__;
699  font-size: 12px;
700  margin-left: 20px;
701}
702
703div.dokuwiki .search_sep {
704  color: __text__;
705}
706
707div.dokuwiki .search_hit {
708  color: __text__;
709  background-color: __highlight__;
710}
711div.dokuwiki strong.search_hit {
712  font-weight: normal;
713}
714
715div.dokuwiki div.search_quickresult {
716  margin: 0 0 15px 30px;
717  padding: 0 10px 10px 0;
718  border-bottom: 1px dashed __border__;
719}
720div.dokuwiki div.search_quickresult h3 {
721  margin: 0 0 1.0em 0;
722  font-size: 1em;
723  font-weight: bold;
724}
725
726div.dokuwiki ul.search_quickhits {
727  margin: 0 0 0.5em 1.0em;
728}
729
730div.dokuwiki ul.search_quickhits li {
731  margin: 0 1.0em 0 1.0em;
732  float: left;
733  width: 30%;
734}
735
736
737/* ------------------ Additional ---------------------- */
738
739div.footerinc {
740    text-align: center;
741}
742.footerinc a img {
743    opacity: 0.5;
744    border: 0;
745}
746
747.footerinc a:hover img {
748    opacity: 1;
749}
750
751/* ---------- AJAX quicksearch ----------- */
752
753div.dokuwiki div.ajax_qsearch {
754  position: absolute;
755  right: 237px;;
756  width: 200px;
757  opacity: 0.9;
758  display: none;
759  font-size: 80%;
760  line-height: 1.2em;
761  border: 1px solid __border__;
762  background-color: __background_other__;
763  text-align: left;
764  padding: 4px;
765}
766
767/* --------- Toolbar -------------------- */
768button.toolbutton {
769  background-color: __background__;
770  padding: 0px;
771  margin: 0 1px 0 0;
772  border: 1px solid __border__;
773  cursor: pointer;
774}
775
776/* nice alphatransparency background except for IE <7 */
777html>body button.toolbutton {
778  background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
779}
780
781div.picker {
782  width: 250px;
783  border: 1px solid __border__;
784  background-color: __background_alt__;
785}
786
787div.pk_hl {
788  width: 125px;
789}
790
791button.pickerbutton {
792  padding: 0px;
793  margin: 0 1px 1px 0;
794  border: 0;
795  background-color: transparent;
796  font-size: 80%;
797  cursor: pointer;
798}
799
800/* ---------------  Image Details  ----------------- */
801
802div.dokuwiki div.img_big {
803  float: left;
804  margin-right: 0.5em;
805}
806
807div.dokuwiki dl.img_tags dt {
808  font-weight: bold;
809  background-color: __background_alt__;
810}
811div.dokuwiki dl.img_tags dd {
812  background-color: __background_neu__;
813}
814
815div.dokuwiki div.imagemeta {
816  color: __text_neu__;
817  font-size: 70%;
818  line-height: 95%;
819}
820
821div.dokuwiki div.imagemeta img.thumb {
822  float: left;
823  margin-right: 0.1em;
824}
825
826