1/**
2 * This file provides the styles for printing.
3 */
4
5body {
6    font: normal 87.5%/1.3 Garamond, Baskerville, "Hoefler Text", "Nimbus Roman No9 L", serif;
7    background-color: __background__;
8    color: __text__;
9}
10
11/* hide certain sections */
12audio,
13video,
14#dokuwiki__header .tools,
15#dokuwiki__aside,
16.dokuwiki .breadcrumbs,
17.dokuwiki .toc,
18#dw__toc,
19#dokuwiki__pagetools,
20#dokuwiki__footer {
21    display: none;
22}
23
24h1,
25h2,
26h3,
27h4,
28h5,
29caption,
30legend {
31    clear: both;
32}
33
34ul {
35    list-style: disc outside;
36}
37ol {
38    list-style: decimal outside;
39}
40ol ol {
41    list-style-type: lower-alpha;
42}
43ol ol ol {
44    list-style-type: upper-roman;
45}
46ol ol ol ol {
47    list-style-type: upper-alpha;
48}
49ol ol ol ol ol {
50    list-style-type: lower-roman;
51}
52
53/* undo icons */
54a:link,
55a:visited {
56    text-decoration: none;
57    color: __existing__;
58    background-color: inherit;
59    background-image: none;
60    padding: 0;
61}
62
63/* display href after link */
64a.urlextern:after,
65a.interwiki:after,
66a.mail:after {
67   content: " [" attr(href) "]";
68   font-size: 90%;
69}
70
71/* code blocks */
72pre {
73    font-family: monospace;
74}
75dl.code dt,
76dl.file dt {
77    font-weight: bold;
78}
79
80/* images */
81img {
82    border-width: 0;
83    vertical-align: middle;
84}
85img.media {
86    margin: .2em 0;
87}
88img.medialeft {
89    margin: .2em 1.5em .2em 0;
90}
91img.mediaright {
92    margin: .2em 0 .2em 1.5em;
93}
94img.mediacenter {
95    margin: .2em auto;
96}
97
98mark {
99    font-weight: bold;
100}
101
102blockquote {
103    padding: 0 10pt;
104    margin: 0;
105    border: solid __border__;
106    border-width: 0 0 0 2pt;
107}
108[dir=rtl] blockquote {
109    border-width: 0 2pt 0 0;
110}
111abbr {
112  text-decoration: none;
113  border-bottom: none;
114}
115
116/* tables */
117table {
118    border-collapse: collapse;
119    empty-cells: show;
120    border-spacing: 0;
121    border: 1pt solid __border__;
122}
123th,
124td {
125    padding: 3pt 5pt;
126    margin: 0;
127    vertical-align: top;
128    border: 1pt solid __borderdark__;
129    text-align: left;
130}
131[dir=rtl] th,
132[dir=rtl] td {
133    text-align: right;
134}
135th {
136    font-weight: bold;
137}
138
139
140/*____________ a bit of layout ____________*/
141
142#dokuwiki__header {
143  border-bottom: 2pt solid __border__;
144}
145#dokuwiki__header .headings a {
146	display: block;
147	float: left;
148}
149#dokuwiki__header h1 {
150  float: right;
151  clear: none;
152  margin: 0;
153}
154#dokuwiki__header h1 a {
155  text-decoration: none;
156}
157.dokuwiki div.footnotes {
158  clear: both;
159  border-top: 1pt solid __borderdark__;
160  margin-top: 10pt;
161}
162