1body {
2  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
3  font-size: 12px;
4  background-image:url(images/background.png);
5  background-position:center top;
6  background-repeat:no-repeat;
7}
8
9/* common elements */
10
11* {
12  margin:0;
13  padding:0;
14}
15
16a img {
17  border: 0px;
18}
19
20a { color: __extern__; text-decoration: none; }
21a:hover	{ text-decoration: underline; }
22a:active { text-decoration: underline; }
23
24ol, ul {
25  line-height: 1.5em;
26  margin: .5em .5em .5em 2.5em;
27  padding: 0;
28}
29
30ul {
31  list-style-type: square;
32}
33
34span.nowrap label {
35  margin-left: 5px;
36}
37
38/* forms */
39
40div#content label.block {
41  display: block;
42  text-align: right;
43  font-weight: bold;
44}
45
46div#content label.simple {
47  display: block;
48  text-align: left;
49  font-weight: normal;
50}
51
52div#content label.block input.edit {
53  width: 50%;
54}
55
56input.button, textarea, button {
57  font-size: 13px;
58  border: 1px solid __border__;
59  background-color: __background_other__;
60  padding: 1px 3px;
61  margin: 2px;
62
63  /* fix IEs long buttons */
64  overflow:visible;
65}
66
67input.button:hover, button.toolbutton:hover {
68	border-color: black;
69	background-color: __highlight__;
70}
71
72input.edit {
73  font-weight: normal;
74  background-color: white;
75  border: 1px solid __border__;
76  margin: 2px;
77  padding: 1px 3px;
78}
79
80input.edit:hover {
81  border-color: black;
82}
83
84/* site elements */
85
86div.dokuwiki {
87  text-align:left;
88  width:770px;
89  margin:0 auto;
90}
91
92div#corpus {
93}
94
95div.page {
96  padding:15px 30px;
97  background-image: url(images/content_background.png);
98  background-repeat: repeat-y;
99}
100
101div#breadcrumbs {
102	background: url(images/content_background_top.png) no-repeat scroll top;
103	color: black;
104	padding: 12px 15px 3px 15px;
105}
106
107/* top bar */
108
109div#header {
110  position:relative;
111  height:110px;
112  padding: 0 9px 0 9px;
113}
114
115img#logo {
116  position:absolute;
117  right:0;
118  bottom:-27px;
119}
120
121div#navigation ul {
122  position:absolute;
123  bottom: 4px;
124  margin: 0 0 -8px 0;
125  padding: 4px 0;
126  list-style-type: none;
127}
128
129div#navigation li {
130  display: inline;
131  padding: 4px 0px;
132}
133
134div#navigation ul li a {
135  font-weight:bold;
136  text-decoration:none;
137  margin: 0px;
138  padding: 3px 8px;
139  color: black;
140  border: 1px solid transparent;
141}
142
143div#navigation ul li a:hover {
144  color: black;
145  background-color: __highlight__;
146  border-color: black;
147}
148
149/* wiki page */
150
151textarea#wiki__text
152{
153  margin-top: 0;
154  padding-right: 1px;
155  width: 695px;
156  background-color: white;
157}
158
159/* pageinfo */
160
161div#pageinfo {
162  padding: 10px 0px 0px 0px;
163  font-size: 85%;
164}
165
166div#pageinfo div#doc {
167  text-align: right;
168}
169
170div#pageinfo div#user {
171  float: left;
172}
173
174div#pageinfo a {
175  color: __text__;
176}
177
178/* footer */
179
180div#footer {
181  background: url(images/content_background_bottom.png) no-repeat scroll bottom;
182  color: black;
183  padding: 10px 27px 20px 27px;
184  overflow:visible;
185  height: auto;
186
187  /* fix ie7 invisibility bug */
188  border: 1px solid transparent;
189}
190
191div#footer div#footer_left {
192  float: left;
193  width:27.5%;
194}
195
196div#footer div#footer_center {
197  float: left;
198  text-align: center;
199  width: 45%;
200}
201
202div#footer div#footer_right {
203  text-align: right;
204}
205
206div#footer input.edit {
207  margin-right: 5px;
208  width: 100px;
209}
210
211div#footer form.button {
212  display: inline;
213}
214
215/* discussion plugin */
216
217div.page div.comment_wrapper {
218  background: none;
219  margin: 0 0;
220  padding: 0 0;
221}
222
223div.page div.comment_wrapper div.comment_body {
224  border: none;
225}
226
227div.page div.comment_wrapper div.comment_text {
228  margin-top: 10px;
229}
230
231div.page div.comment_wrapper div.hentry {
232  background-color: __background_other__;
233  margin-bottom: 20px;
234}
235
236div.page div.comment_buttons
237{
238  margin-right: 4px;
239  margin-top: -12px;
240  padding-bottom: 3px;
241}
242
243div.page div.comment_text textarea.edit {
244  width: 98.4%;
245}
246
247div.page div.comment_buttons input.button
248{
249  font-size: 95%;
250}
251
252div.page div.comment_buttons input.button:hover {
253	border-color: black;
254	background-color: __highlight__;
255}
256
257/* toc */
258
259div.toc {
260  display: __display_toc__;
261}
262