1/**
2 * This file provides the styles for printing.
3 *
4 * @todo: improve and finish
5 */
6
7body {
8    font: normal 87.5%/1.3 Garamond, Baskerville, "Hoefler Text", "Nimbus Roman No9 L", serif;
9    background-color: #fff;
10    color: #000;
11}
12
13/* hide certain sections */
14.a11y,
15audio,
16video,
17#dokuwiki__header .tools,
18#dokuwiki__aside,
19.dokuwiki .breadcrumbs,
20.dokuwiki .pageId,
21#dw__toc,
22h3.toggle,
23#dokuwiki__pagetools{
24    display: none;
25}
26
27h1,
28h2,
29h3,
30h4,
31h5,
32caption,
33legend {
34    clear: both;
35}
36ul {
37    list-style: disc outside;
38}
39ol {
40    list-style: decimal outside;
41}
42ol ol {
43    list-style-type: lower-alpha;
44}
45ol ol ol {
46    list-style-type: upper-roman;
47}
48ol ol ol ol {
49    list-style-type: upper-alpha;
50}
51ol ol ol ol ol {
52    list-style-type: lower-roman;
53}
54
55a:link,
56a:visited {
57    text-decoration: none;
58    border-bottom: 1pt dotted;
59    color: #333;
60    background-color: inherit;
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
80mark {
81    font-weight: bold;
82}
83
84/* images */
85img {
86    border-width: 0;
87    vertical-align: middle;
88}
89img.media {
90    margin: .2em 0;
91}
92img.medialeft {
93    margin: .2em 1em .2em 0;
94}
95img.mediaright {
96    margin: .2em 0 .2em 1em;
97}
98img.mediacenter {
99    margin: .2em auto;
100}
101
102blockquote {
103    padding: 0 10pt;
104    margin: 0;
105    border: solid #ccc;
106    border-width: 0 0 0 2pt;
107}
108[dir=rtl] blockquote {
109    border-width: 0 2pt 0 0;
110}
111
112/* tables */
113table {
114    border-collapse: collapse;
115    empty-cells: show;
116    border-spacing: 0;
117    border: 1pt solid #ccc;
118}
119th,
120td {
121    padding: 3pt 5pt;
122    margin: 0;
123    vertical-align: top;
124    border: 1pt solid #666;
125}
126th {
127    font-weight: bold;
128    text-align: left;
129	background-color: #EEEEEE;
130}
131[dir=rtl] th {
132    text-align: right;
133}
134
135
136/*____________ a bit of layout ____________*/
137
138#dokuwiki__header {
139    border-bottom: 2pt solid #ccc;
140}
141#dokuwiki__header h1 {
142    font-size: 1.5em;
143}
144#dokuwiki__header h1 a {
145    text-decoration: none;
146    border-width: 0;
147}
148#dokuwiki__header h1 img {
149    float: left;
150    margin-right: .5em;
151}
152[dir=rtl] #dokuwiki__header h1 img {
153    float: right;
154    margin-right: 0;
155    margin-left: .5em;
156}
157
158.dokuwiki div.footnotes {
159    clear: both;
160    border-top: 1pt dotted #999;
161    margin-top: 10pt;
162}
163
164.dokuwiki div.docInfo {
165    font-size: 90%;
166    text-align: right;
167    clear: both;
168    padding-top: 2pt;
169    border-top: 1pt solid #999;
170    margin-top: 10pt;
171}
172[dir=rtl] .dokuwiki div.docInfo {
173    text-align: left;
174}
175
176#dokuwiki__footer {
177    font: normal 87.5%/1.3 Garamond, Baskerville, "Hoefler Text", "Nimbus Roman No9 L", serif;     bottom:0px;
178    text-align:center;
179    width:100%;
180}
181
182div.watermark	{
183  color: rgba(97,97,97,0.6);
184  text-align : right;
185  font-size: 14pt;
186  position: fixed;
187  width: 100%;
188  height: 100%;
189  margin: 0;
190  display : block;
191  top : 0px;
192  right:20px;
193  z-index:-2;
194  font-family:Sans-serif;
195}
196div.watermark-confidential	{
197	position: fixed;
198	width: 100%;
199	height: 100%;
200	margin: 0;
201	display : block;
202	top : 200px;
203	left:50px;
204	z-index:0 !important;
205}
206img.media {
207	z-index:-1 !important;
208}
209