1/*
2Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6body
7{
8    font: normal 87.5%/1.4 Arial, sans-serif;
9    /* default font size: 100% => 16px; 93.75% => 15px; 87.5% => 14px; 81.25% => 13px; 75% => 12px */
10            -webkit-text-size-adjust: 100%;
11
12	/* Text color */
13	color: #222;
14
15	/* Remove the background color to make it transparent */
16	background-color: #fff;
17}
18
19ol,ul,dl
20{
21	margin-right:0px;
22	/* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/
23    padding:0 40px;
24}
25
26
27table {
28    border-collapse: collapse;
29    empty-cells: show;
30    border-spacing: 0;
31    border: 1px solid #ccc;
32     min-width: 40%;
33}
34
35th, .tblheader {
36  padding: 3px;
37  border: 1px solid #8cacbb !important;
38  background-color: #dee7ec;
39  font-weight: bold;
40}
41caption {
42    caption-side: top;
43    text-align: left;
44}
45[dir=rtl] caption {
46    text-align: right;
47}
48
49th,
50td {
51    padding: .3em .5em;
52    margin: 0;
53    vertical-align: top;
54    border: 1px solid #ccc;
55}
56
57th {
58    font-weight: bold;
59    background-color: #eee;
60    text-align: left;
61}
62
63a[href]
64{
65/*	color: -moz-hyperlinktext !important;	*/	/* For Firefox... mark as important, otherwise it becomes black */
66/*	text-decoration: -moz-anchor-decoration; */	/* For Firefox 3, otherwise no underline will be used */
67}
68
69/*
70	Just uncomment the following block if you want to avoid spaces between
71	paragraphs. Remember to apply the same style in your output front end page.
72*/
73
74/*
75p, ul, li
76{
77	margin-top: 0px;
78	margin-bottom: 0px;
79}
80*/
81
82/*
83    The following are some sample styles used in the "Styles" toolbar command.
84    You should instead remove them, and include the styles used by the site
85    you are using the editor in.
86*/
87
88.Bold
89{
90	font-weight: bold;
91}
92
93.Title
94{
95	font-weight: bold;
96	font-size: 18px;
97	color: #cc3300;
98}
99
100pre,
101tt,
102code,
103samp,
104kbd {
105 font-family: Consolas, "Andale Mono WT", "Andale Mono", "Bitstream Vera Sans Mono", "Nimbus Mono L", Monaco, "Courier New", monospace;
106    /* same font stack should be used for ".dokuwiki table.diff td" in _diff.css */
107    font-size: 1em;
108    direction: ltr;
109    text-align: left;
110    background-color: #fbfaf9;
111    color: #333;
112    box-shadow: inset 0 0 .3em #ccc;
113    border-radius: 2px;
114}
115/* fix if background-color hides underlining */
116em.u code {
117    text-decoration: underline;
118}
119
120/*code new tmpl  start*/
121pre {
122    border: 1px solid #ccc;
123    padding: .75em 1em;
124
125}
126
127/* for code in <file> */
128
129/* filenames for downloadable file and code blocks */
130dl.code,
131dl.file {
132}
133pre {
134    overflow: auto;
135    word-wrap: normal;
136    border: 1px solid #ccc;
137    border-radius: 2px;
138    box-shadow: inset 0 0 .5em #ccc;
139    padding: .7em 1em;
140   background-color: #fbfaf9 !important;
141}
142
143 dl.code dt a,
144 dl.file dt a {
145    background-color: transparent;
146    font-size: 0.875em;
147    font-weight: normal;
148    display: block;
149    min-height: 16px;
150    color: #2b73b7 !important;
151}
152
153dl.code dt,
154dl.file dt {
155    background-color: #fbfaf9;
156    color: inherit;
157    border: 1px solid #ccc;
158    border-bottom-color: #fbfaf9;
159    border-top-left-radius: .3em;
160    border-top-right-radius: .3em;
161    padding: .3em .6em .1em;
162    padding-bottom: 1px;
163    margin-bottom: -1px;
164    margin-left:0px;
165    float: left;
166}
167
168dl.code dd,
169dl.file dd {
170    margin: 0;
171    clear: left;
172     background-color: #fbfaf9;
173}
174/* Code new tmpl ends */
175
176
177h1,
178h2,
179h3,
180h4,
181h5,
182h6,
183caption,
184legend {
185    font-family: Arial, sans-serif;
186    font-weight: bold;
187    background-color: inherit;
188    padding: 0;
189    line-height: 1.2;
190    clear: left; /* ideally 'both', but problems with toc */
191}
192
193img.baseline {
194  vertical-align:bottom;
195  text-align:left;
196  display:block;
197  border: 0;
198  margin: 3px;
199}
200
201/* image alignment */
202.medialeft {
203    float: left;
204}
205.mediaright {
206    float: right;
207}
208.mediacenter {
209    display: block;
210    margin-left: auto;
211    margin-right: auto;
212}
213img.media {
214    margin: .2em 0;
215}
216img.medialeft {
217    margin: .2em 1em .2em 0;
218}
219img.mediaright {
220    margin: .2em 0 .2em 1em;
221}
222img.mediacenter {
223    margin: .2em auto;
224}
225
226
227.leftalign {text-align: left;}
228.centeralign {text-align: center;}
229.rightalign {text-align: right;}
230
231
232div.footnotes {
233  clear: both;
234  border-top: 1px solid black;
235  padding-left: 1em;
236  margin-top: 1em;
237}
238
239div.fn {
240  font-size: 90%;
241}
242
243a.fn_bot {
244 font-weight: bold;
245}
246
247/*____________ lists ____________*/
248
249ul,
250ol {
251    padding: 0 0 0 1.5em;
252}
253li,
254dd {
255    padding: 0;
256    margin: 0 0 0 1.5em;
257}
258dt {
259    font-weight: bold;
260    margin: 0;
261    padding: 0;
262}
263
264li ul,
265li ol,
266li dl,
267dl ul,
268dl ol,
269dl dl {
270    margin-bottom: 0;
271    padding: 0;
272}
273li li {
274    font-size: 100%;
275}
276
277ul             { list-style: square outside; }
278ol             { list-style: decimal outside; }
279ol ol          { list-style-type: lower-alpha; }
280ol ol ol       { list-style-type: upper-roman; }
281ol ol ol ol    { list-style-type: upper-alpha; }
282ol ol ol ol ol { list-style-type: lower-roman; }
283
284
285a.urlextern,
286a.windows,
287a.mail,
288a.mediafile,
289a.interwiki {
290    background-repeat: no-repeat;
291    background-position: 0 center;
292    padding: 0 0 0 20px;
293    color: #1c86ff !important;
294}
295
296a.windows {
297  background: transparent url(images/unc.png) 0px 1px no-repeat;
298  padding: 1px 0px 1px 16px;
299  color: #436976 !important;
300  text-decoration: none !important;
301}
302
303a.urlextern {
304 background: transparent url(images/external-link.png) 0px 1px no-repeat;
305 padding: 1px 0px 1px 16px;
306 color: #436976 !important;
307 text-decoration: none !important;
308}
309
310
311a.wikilink2:link,
312a.wikilink2:visited {
313    border-bottom: 1px dashed;
314}
315a.wikilink2:hover,
316a.wikilink2:active,
317a.wikilink2:focus {
318    border-bottom-width: 0;
319}
320
321
322
323a.wikilink2 {
324  color: red !important;
325  text-decoration: none !important;
326}
327
328
329a.wikilink1 {
330  color: green !important;
331  text-decoration: none !important;
332}
333
334span.np_break {
335  line-height: 50%;
336  border:0px;
337  padding:0px;
338  margin:0px;
339}
340
341
342/* syntax highlighting code */
343.code .br0  { color: #66cc66; }
344.code .co0  { color: #808080; font-style: italic; }
345.code .co1  { color: #808080; font-style: italic; }
346.code .co2  { color: #808080; font-style: italic; }
347.code .co3  { color: #808080; }
348.code .coMULTI  { color: #808080; font-style: italic; }
349.code .es0  { color: #000099; font-weight: bold; }
350.code .kw1  { color: #b1b100; }
351.code .kw2  { color: #000000; font-weight: bold; }
352.code .kw3  { color: #000066; }
353.code .kw4  { color: #993333; }
354.code .kw5  { color: #0000ff; }
355.code .me1  { color: #006600; }
356.code .me2  { color: #006600; }
357.code .nu0  { color: #cc66cc; }
358.code .re0  { color: #0000ff; }
359.code .re1  { color: #0000ff; }
360.code .re2  { color: #0000ff; }
361.code .re3  { color: #ff3333; font-weight:bold; }
362.code .re4  { color: #009999; }
363.code .st0  { color: #ff0000; }
364.code .sy0  { color: #66cc66; }
365
366a.mediafile {
367    background: url(images/fileicons/file.png) no-repeat scroll 0 1px transparent;
368    padding-bottom: 1px;
369    padding-left: 18px;
370    color: #436976 !important;
371    text-decoration: none !important;
372}
373
374/* email link */
375a.mail {
376  background: transparent url(images/mail_icon.gif) 0px 1px no-repeat;
377  padding: 1px 0px 1px 16px;
378  color: #436976 !important;
379  text-decoration: none !important;
380}
381
382a.mf_gz {
383    background-image: url(images/fileicons/gz.png);
384}
385a.mf_csv {
386    background-image: url(images/fileicons/csv.png);
387}
388a.mf_gif {
389    background-image: url(images/fileicons/gif.png);
390}
391
392a.mf_png {
393    background-image: url(images/fileicons/png.png);
394}
395
396a.mf_txt {
397    background-image: url(images/fileicons/txt.png);
398}
399a.mf_tar {
400    background-image: url(images/fileicons/tar.png);
401}
402a.mf_jpg {
403    background-image: url(images/fileicons/jpg.png);
404}
405
406a.mf_xml {
407    background-image: url(images/fileicons/xml.png);
408}
409a.mf_c {
410    background-image: url(images/fileicons/c.png);
411}
412a.mf_ppt {
413    background-image: url(images/fileicons/ppt.png);
414}
415a.mf_conf {
416    background-image: url(images/fileicons/conf.png);
417}
418
419a.mf_xls {
420    background-image: url(images/fileicons/xls.png);
421}
422a.mf_doc {
423    background-image: url(images/fileicons/doc.png);
424}
425
426a.mf_php {
427    background-image: url(images/fileicons/php.png);
428}
429a.mf_cs {
430    background-image: url(images/fileicons/cs.png);
431}
432a.mf_pdf {
433    background-image: url(images/fileicons/pdf.png);
434}
435
436a.mf_odc {
437    background-image: url(images/fileicons/odg.png);
438}
439a.mf_cpp {
440    background-image: url(images/fileicons/cpp.png);
441}
442a.mf_sql {
443    background-image: url(images/fileicons/sql.png);
444}
445
446a.mf_bz2 {
447    background-image: url(images/fileicons/bz2.png);
448}
449
450a.mf_zip {
451    background-image: url(images/fileicons/zip.png);
452}
453a.mf_deb {
454    background-image: url(images/fileicons/deb.png);
455}
456a.mf_jpeg {
457    background-image: url(images/fileicons/jpeg.png);
458}
459a.mf_odg {
460    background-image: url(images/fileicons/odg.png);
461}
462a.mf_py {
463    background-image: url(images/fileicons/py.png);
464}
465a.mf_js {
466    background-image: url(images/fileicons/js.png);
467}
468a.mf_java {
469    background-image: url(images/fileicons/java.png);
470}
471a.mf_htm {
472    background-image: url(images/fileicons/htm.png);
473}
474
475a.mf_odt {
476    background-image: url(images/fileicons/odt.png);
477}
478a.mf_rtf {
479    background-image: url(images/fileicons/rtf.png);
480}
481a.mf_odf {
482    background-image: url(images/fileicons/odg.png);
483}
484a.mf_css {
485    background-image: url(images/fileicons/css.png);
486}
487a.mf_docx {
488    background-image: url(images/fileicons/docx.png);
489}
490a.mf_xlsx {
491    background-image: url(images/fileicons/xlsx.png);
492}
493a.mf_odp {
494    background-image: url(images/fileicons/odg.png);
495}
496a.mf_rar {
497    background-image: url(images/fileicons/rar.png);
498}
499a.mf_tgz {
500    background-image: url(images/fileicons/tgz.png);
501}
502a.mf_7z {
503    background-image: url(images/fileicons/7z.png);
504}
505a.mf_html {
506    background-image: url(images/fileicons/html.png);
507}
508a.mf_pl {
509    background-image: url(images/fileicons/pl.png);
510}
511a.mf_rpm {
512    background-image: url(images/fileicons/rpm.png);
513}
514a.mf_ps {
515    background-image: url(images/fileicons/ps.png);
516}
517
518a.mf_swf {
519    background-image: url(images/fileicons/swf.png);
520}
521
522a.mf_epub {
523    background-image: url(images/fileicons/epub.png);
524}
525
526a.interwiki {
527    background: url(images/fileicons/wp.gif) no-repeat scroll 0 1px transparent;
528    padding-bottom: 1px;
529    padding-left: 18px;
530    color: #436976 !important;
531    text-decoration: none !important;
532}
533
534
535 dl.code dd,
536 dl.file dd {
537    margin: 0;
538    clear: left;
539    min-height: 1px; /* for IE7 */
540}
541
542[dir=rtl] .dokuwiki dl.code dd,
543[dir=rtl] .dokuwiki dl.file dd {
544    clear: right;
545}
546
547span.multi_p_open
548{
549    display: block;
550}
551
552a.urlextern,
553a.windows,
554a.mail,
555a.mediafile,
556a.interwiki,
557a.urlextern:visited,
558a.windows:visited,
559a.mail:visited,
560a.mediafile:visited,
561a.interwiki:visited
562 {
563    color: #1c86ff !important;
564    text-decoration:none;
565}
566
567
568
569
570