1
2body {
3  font: 10pt "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
4  background-color: White;
5  color: Black;
6}
7
8table {
9  font-size: 100%;
10  padding: 0;
11  margin: 0;
12}
13
14tr,td,th { padding: 0; margin: 0; }
15
16img { border: 0; }
17
18a {
19  color: #000000;
20  text-decoration: none;
21  background: none !important;
22}
23
24a.interwiki {
25  padding-left: 0px !important;
26}
27
28
29div.meta {
30  clear: both;
31  margin-top: 1em;
32  font-size: 70%;
33  text-align: right;
34}
35
36
37div.notify,
38div.info,
39div.success,
40div.error,
41div.breadcrumbs,
42div.secedit {
43  display: none;
44}
45
46/* --------------------- Text formating -------------------------------- */
47
48/* external link */
49a.urlextern:after {
50   content: " [" attr(href) "]";
51   font-size: 90%;
52}
53
54/* interwiki link */
55a.interwiki:after {
56   content: " [" attr(href) "]";
57   font-size: 90%;
58}
59
60/* email link */
61a.mail:after {
62   content: " [" attr(href) "]";
63   font-size: 90%;
64}
65
66/* existing wikilink */
67a.wikilink1    { text-decoration: underline; }
68
69/* the document */
70div.page {
71  text-align: justify;
72}
73
74/* general headline setup */
75h1, h2, h3, h4, h5 {
76    color: Black;
77    background-color: transparent;
78    font-family: "Lucida Grande", Verdana, Lucida, Helvetica, Arial, sans-serif;
79    font-size: 100%;
80    font-weight: normal;
81    margin-left:    0;
82    margin-right:   0;
83    margin-top:     0;
84    margin-bottom:  1em;
85    padding-left:   0;
86    padding-right:  0;
87    padding-top:    0.5em;
88    padding-bottom: 0;
89    border-bottom: 1px solid #000000;
90    clear: left;
91}
92
93/* special headlines */
94h1 { font-size: 160%; font-weight: bold; }
95h2 { font-size: 150%; }
96h3 { font-size: 140%; border-bottom: none; }
97h4 { font-size: 120%; border-bottom: none; }
98h5 { font-size: 100%; border-bottom: none; }
99
100/* embedded images */
101img.media {
102  margin: 3px;
103}
104
105img.medialeft {
106  border: 0;
107  float: left;
108  margin: 0 1.5em 0 0;
109}
110
111img.mediaright {
112  border: 0;
113  float: right;
114  margin: 0 0 0 1.5em;
115}
116
117/* unordered lists */
118ul {
119    line-height: 1.5em;
120    list-style-type: square;
121    margin: 0 0 1em 3.5em;
122    padding: 0;
123}
124
125/* ordered lists */
126ol {
127    line-height: 1.5em;
128    margin: 0 0 1em 3.5em;
129    padding: 0;
130    font-weight: normal;
131}
132
133div.dokuwiki li ul {
134  margin-bottom: 0;
135}
136div.dokuwiki li ol {
137  margin-bottom: 0;
138}
139
140div.dokuwiki ol { list-style-type: decimal; }
141div.dokuwiki ol ol { list-style-type: upper-roman; }
142div.dokuwiki ol ol ol { list-style-type: lower-alpha; }
143div.dokuwiki ol ol ol ol { list-style-type: lower-greek; }
144
145/* the list items overriding the ol definition */
146span.li {
147    font-weight: normal;
148}
149
150pre {
151  font-family: monospace;
152}
153
154/* code blocks by indention */
155pre.pre {
156  font-size: 8pt;
157  padding: 0.5em;
158  border: 1px dashed #000000;
159  color: Black;
160  overflow: visible;
161}
162
163/* code blocks by code tag */
164pre.code {
165  font-size: 8pt;
166  padding: 0.5em;
167  border: 1px dashed #000000;
168  color: Black;
169  overflow: visible;
170}
171
172/* inline code words */
173code {
174  font-size: 120%;
175}
176
177/* code blocks by file tag */
178pre.file {
179  font-size: 8pt;
180  padding: 0.5em;
181  border: 1px dotted #000000;
182  color: Black;
183  overflow: visible;
184}
185
186/* footnotes */
187div.footnotes {
188  clear: both;
189  border-top: 1px solid #000000;
190  padding-left: 1em;
191  margin-top: 1em;
192}
193
194div.fn {
195  font-size: 90%;
196}
197
198a.fn_top {
199  vertical-align: super;
200  font-size: 80%;
201}
202
203a.fn_bot {
204  vertical-align: super;
205  font-size: 80%;
206  font-weight: bold;
207}
208
209acronym {
210  border: 0;
211}
212
213/* ---------- inline tables ------------------- */
214
215table.inline {
216  font-size: 80%;
217  background-color: #ffffff;
218  border-spacing: 0px;
219  border-collapse: collapse;
220}
221
222table.inline th {
223  padding: 3px;
224  border: 1px solid #000000;
225  border-bottom: 2px solid #000000;
226}
227
228table.inline td {
229  padding: 3px;
230  border: 1px solid #000000;
231}
232
233.leftalign {
234  text-align: left;
235}
236
237.centeralign {
238  text-align: center;
239}
240
241.rightalign {
242  text-align: right;
243}
244
245.toc, .footerinc, .header, .bar, .user { display: none; }
246
247