1/* ================================ GENERAL ================================= */
2html, body
3{
4	margin: 0;
5	padding: 0;
6	min-height: 100%;
7}
8
9*
10{
11	font-family: Trebuchet MS, Verdana, Geneva, Arial, Helvetica, sans-serif;
12	font-size: 12px;
13}
14
15body
16{
17	margin: 20px 0 20px 0;
18}
19
20a { color: __existing__;}
21a:hover {color: #000;}
22.wikilink1 {color: __existing__;}
23.wikilink2 {color: __missing__;}
24
25a img { border: none; }
26
27ol
28{
29	line-height: 1.5em;
30	margin: 0 0 .5em 2.0em;
31	padding: 0;
32}
33
34ul
35{
36	aline-height: 1.5em;
37	list-style-type: square;
38	margin: 0 0 2.0em 2.0em;
39	padding: 0;
40	list-style-image: url(images/bullet.gif);
41}
42
43html> body> #dokuwiki
44{
45	width: 750px;
46	margin: 0px auto;
47	background: #fff url(images/fnd_doku3.jpg) repeat-y top left;
48}
49
50/* ================================ HEADER ================================== */
51#header
52{
53	text-align: center;
54	height: 212px;
55	width: 750px;
56	margin: 0px auto;
57	background-color: #fff;
58	background: url(images/fnd_header.png) repeat-x top center;
59}
60#header a {margin: 0px; padding: 0px; border: none}
61#logo {margin-top: 65px; border: 2px solid #fff;}
62
63/* ================================= MENU =================================== */
64.menu
65{
66	text-align: center;
67	height: 20px;
68	width: 710px;
69	margin-top: 0px;
70	margin: 0px auto;
71	padding: 5px 0 0 0;
72	background: #fff url(images/fnd_menu.jpg) repeat-x 1px 0px;
73	border: 2px solid #fff;
74	text-transform:uppercase;
75}
76.menu ul
77{
78	margin: 0;
79	padding: 0;
80	display: inline;
81}
82.menu ul li {display: inline;}
83.menu ul li a
84{
85	padding: 0 1em 0 1em;
86	color: #fff;
87	text-decoration: none;
88	font-size: 10px;
89}
90.menu ul li a:hover {text-decoration: underline;}
91.menu .level1, .menu .li {display: inline}
92
93
94/* ================================== SIDE ================================== */
95.sidebar
96{
97	width: 165px;
98	float: left;
99	padding: 5px;
100	margin: 0px;
101	text-align: right;
102	margin-left: 15px;
103	color: __text_sidebar__;
104}
105
106.sidebar h1
107{
108	text-align: left;
109	font-size: 11px;
110}
111.sidebar .buscar {padding: 5px;}
112.buscar input {width: 70px}
113.sidebar ul {margin: 0px; padding: 0px; margin-bottom:10px;}
114.sidebar li {list-style:none;}
115
116.search
117{
118	width: 170px;
119}
120.search input {width: 110px;}
121.search .button {width: 50px; margin-left:4px}
122.search form
123{
124	border: none;
125	padding-top: 10px;
126	padding-bottom: 10px;
127	text-align: center;
128}
129.actions
130{
131	border: 1px solid __existing__;
132	background-color: __actions_bg__;
133	margin: 0 0 0 2px;
134	width: 155px;
135	text-align: center;
136	padding: 5px;
137	margin-bottom: 15px;
138}
139
140
141/* ================================= CONTENT ================================ */
142#Content
143{
144	margin-left: 200px;
145	margin-right: 18px;
146	margin-top: 10px;
147	padding: 15px;
148	color: __text__;
149	line-height: 20px;
150	border: 2px solid #dedede;
151	background-color: #fff;
152}
153
154#Content a {text-decoration: none}
155#Content a:hover {text-decoration: underline}
156
157/* ================================== BODY ================================== */
158#body
159{
160	margin: 0px auto;
161	background-color: transparent;
162	color: #000;
163	width: 750px;
164	margin: 0 auto 0 auto;
165	padding: 0px;
166}
167
168#body_top, #body_bottom
169{
170	height: 0px;
171	background-color: transparent;
172	color: #000;
173}
174
175#body h1, #body h2, #body h3, #body h4, #body h5
176{
177	margin: .5em 0 0 0;
178	font-family: Georgia, "Times New Roman", serif;
179	font-weight: bold;
180}
181#body h1 a, #body h2 a, #body h3 a, #body h4 a, #body h5 a
182{
183	font-size: 1em;
184	font-family: inherit;
185	color: __h_color__;
186	background-color: inherit;
187}
188
189#body h1 {font-size: 1.3em;}
190#body h2 {font-size: 1.1em;}
191#body h3 {font-size: 1em;}
192#body h4, #body h5 {font-size: 1em;}
193#body input {border: solid 1px #8cacbb;}
194#body input:hover {border: solid 1px #000;}
195
196#body .sidebar h2{border-bottom: none; font-size: 1em;}
197
198
199.code, .file
200{
201	border: 1px dashed __code_border__;
202	background-color: __code__;
203	padding: 5px;
204	overflow: auto;
205}
206.code, .code *
207{
208	font-size: 1em;
209	font-family: "Courier New",Courier,monospace;
210}
211
212/* ============================= DOKUWIKI LEVELS ============================ */
213#body h1 { margin-left: 0em; }
214div.level1 { margin: 1em 0 0 0; }
215#body h2 { margin-left: 1em; }
216div.level2 { margin: 1em 0 0 2em; }
217#body h3 { margin-left: 2em; }
218div.level3 { margin: 1em 0 0 3em; }
219#body h4 { margin-left: 3em; }
220div.level4 { margin: 1em 0 0 4em; }
221#body h5 { margin-left: 4em; }
222div.level5 { margin: 1em 0 0 5em; }
223
224
225/* ================================== TABLE ================================== */
226#body table
227{
228	border: solid 1px #999;
229	margin: 5px 0 5px 0;
230	border-collapse: collapse;
231}
232#body table th
233{
234	border: solid 1px #999; background-color: #eee;
235	padding: 2px 5px 2px 5px;
236}
237
238#body table td
239{
240	border: solid 1px #ccc; background-color: #fff;
241	padding: 2px 5px 2px 5px;
242}
243
244#body table tr:hover { background-color: #ffffe5; }
245#body table td.rightalign { text-align: right; }
246#body table td.centeralign { text-align: center; }
247#body table td.leftalign { text-align: left; }
248
249.gallery, .gallery tr, .gallery td { border: 5px solid #fff }
250#body .gallery td { border: 1px solid #fff }
251
252/* ================================= FOOTER ================================= */
253#footer
254{
255	clear: both;
256	text-align: center;
257	height: 70px;
258	width: 750px;
259	margin: 0px auto;
260	background: #fff url(images/fnd_footer.png) no-repeat top left;
261	padding-top: 15px;
262}
263
264#footer li { display: inline;}
265#footer ul { padding: 0;margin-top: 15px;}
266
267#footer li a
268{
269	border: solid 1px #8cacbb;
270	background-color: #efebe7;
271	color: #000;
272	text-decoration: none;
273	white-space: nowrap;
274	padding: 2px 10px 2px 10px;
275}
276#footer li a:hover
277{
278	border: solid 1px #000;
279	background-color: #efebe7;
280	color: #000;
281}
282#footer .links li a
283{
284	padding: 0px; margin: 0px;
285	background-color: transparent;
286	border: none;
287}
288#footer .links li a:hover
289{
290	background-color: transparent;
291	border: none;
292}
293
294#footer input
295{
296	border: solid 1px #8cacbb;
297	margin-left: 2px;
298}
299#footer input:hover {border: solid 1px #000;}
300#footer form {float: right;}
301#footer p {margin: 0;}
302
303/* ==================================== RSK  =================================== */
304/* ================================== BUTTONS ================================== */
305.button .no{float: right; margin-bottom:3px}
306.button
307{
308  background:  #fff url(images/buttonshadow.png) repeat-x bottom;
309  border: none;
310}
311
312/* ================================== TOC ================================== */
313/* TOC control */
314#dokuwiki div.toc {float: left;}
315#dokuwiki div.tocheader {text-align: right;}
316#dokuwiki #toc__inside {text-align: right;}
317
318#dokuwiki ul.toc
319{
320  padding: 0;
321  padding-right: 1em;
322}
323
324#dokuwiki ul.toc li
325{
326  background-position: right 0.6em;
327  padding-right:0.4em;
328  direction: rtl;
329}
330
331#dokuwiki ul.toc li.clear{padding-right:0.4em;}
332#dokuwiki pre {text-align: left;}
333
334#dokuwiki div.toc
335{
336  margin: 1.2em 0 0 2em;
337  float: right;
338  width: 200px;
339  font-size: 80%;
340  clear: both;
341}
342
343#dokuwiki div.tocheader
344{
345  border: 1px solid __border__;
346  background-color: __background_alt__;
347  text-align: left;
348  font-weight: bold;
349  padding: 3px;
350  margin-bottom: 2px;
351}
352
353#dokuwiki span.toc_open,
354#dokuwiki span.toc_close
355{
356    border: 0.4em solid __background_alt__;
357    float: right;
358    display: block;
359    margin: 0.4em 3px 0 0;
360}
361
362#dokuwiki span.toc_open span, #dokuwiki span.toc_close span{display: none;}
363
364#dokuwiki span.toc_open
365{
366    margin-top: 0.4em;
367    border-top: 0.4em solid __text__;
368}
369
370#dokuwiki span.toc_close
371{
372    margin-top: 0;
373    border-bottom: 0.4em solid __text__;
374}
375
376#dokuwiki #toc__inside
377{
378  border: 1px solid __border__;
379  background-color: __background__;
380  text-align: left;
381  padding: 0.5em 0 0.7em 0;
382}
383
384#dokuwiki ul.toc
385{
386  list-style-type: none;
387  list-style-image: none;
388  line-height: 1.2em;
389  padding-left: 1em;
390  margin: 0;
391}
392
393#dokuwiki ul.toc li
394{
395  background: transparent url(images/tocdot2.gif) 0 0.6em no-repeat;
396  padding-left: 0.4em;
397}
398
399#dokuwiki ul.toc li.clear
400{
401  background-image: none;
402  padding-left: 0.4em;
403}
404
405#dokuwiki a.toc:link, #dokuwiki a.toc:visited {color: __existing__;}
406
407#dokuwiki a.toc:hover, #dokuwiki a.toc:active {color: __text__;}
408
409
410
411/* ================================== TOOLBAR ================================== */
412button.toolbutton
413{
414  background-color: __background__;
415  padding: 0px;
416  margin: 0 1px 0 0;
417  border: 1px solid __border__;
418  cursor: pointer;
419}
420
421/* nice alphatransparency background except for IE <7 */
422html>body button.toolbutton
423{
424  background:  #fff url(images/buttonshadow.png) repeat-x bottom;
425  border: 1px solid #dedede;
426}
427
428div.picker
429{
430  width: 250px;
431  border: 1px solid __border__;
432  background-color: __background_alt__;
433}
434
435button.pickerbutton
436{
437  padding: 0px;
438  margin: 0 1px 1px 0;
439  border: 0;
440  background-color: transparent;
441  font-size: 80%;
442  cursor: pointer;
443}
444
445textarea
446{
447	border: 1px solid #dedede;
448	background-color: #fafafa;
449	width: 500px;
450	font-size: 90%;
451}
452/* =================================== BLOG ==================================== */
453#dokuwiki div.inclmeta
454{
455	width: 450px;
456	padding-left: 20px;
457	padding-right: 10px;
458	border-left: 1px dotted #808080;
459	border-right: 1px dotted #808080;
460	background-color: #FAFAFA;
461	margin-bottom: 40px;
462	margin: 0px auto;
463	text-align: left;
464}
465#dokuwiki div.inclmeta a {font-size:10px}
466
467#Content .hentry
468{
469	background: url(images/tribal.gif) no-repeat bottom center;
470	padding-bottom: 60px;
471	margin-bottom: 20px;
472}
473
474#dokuwiki div.inclmeta span.comment
475{
476  background: transparent url(images/ico/comment.png) 0px 1px no-repeat;
477  padding: 0px 0px 1px 20px;
478}
479#dokuwiki div.inclmeta abbr.published
480{
481  background: transparent url(images/ico/clock.png) 0px 1px no-repeat;
482  padding: 1px 0px 1px 20px;
483  border-bottom: 0;
484}
485#dokuwiki div.inclmeta span.author
486{
487  background: transparent url(images/ico/user.png) 0px 1px no-repeat;
488  padding: 1px 0px 1px 20px;
489}
490#dokuwiki div.tags {display: inline;float: right;}
491#dokuwiki div.tags span
492{
493  background: transparent url(images/ico/tag.png) 0px 1px no-repeat;
494  padding: 1px 0px 1px 20px;
495  display: inline;
496}
497#dokuwiki div.inclmeta a.permalink
498{
499  background: transparent url(images/ico/permalink.png) 0px 1px no-repeat;
500  padding: 1px 0px 1px 20px;
501}
502
503
504/* ================================== DISCUSSION ==================================== */
505#Content .comment_wrapper {padding-top: 20px; margin-top: 50px; background: url(images/tribal.gif) no-repeat top center;}
506#discussion__comment_text {width: 475px}
507
508#Content .comment_wrapper .comment_head
509{
510	background-color: #fff;
511	background: #fff url(images/comment-head.gif) no-repeat bottom left;
512	height: 60px;
513	margin: 0px;
514	width: 450px;
515}
516#Content .comment_wrapper .entry_content {padding: 0px; margin: 0px}
517
518#Content .comment_wrapper .comment_body
519{
520	text-align: left;
521	margin: 0px; padding: 0px;
522	background-color: #fafafa;
523	border-bottom: 1px solid #d1d1d1;
524	border-left: 1px solid #d1d1d1;
525	border-right: 1px solid #d1d1d1;
526	border-top: 1px solid #fafafa;
527	width: 450px;
528}
529#Content .comment_wrapper .comment_body p {padding: 10px; color: #6D6D6D}
530#Content .comment_wrapper .comment_form
531{
532	margin-top: 50px;
533	text-align: right;
534}
535
536/* ================================== GALERIA ==================================== */
537.migaleria {text-align: left}
538.migaleria img
539{
540	border: 1px solid #d1d1d1;
541	margin: 6px;
542	padding: 5px;
543}
544.migaleria p {padding: 10px;}
545
546
547/* ================================== OTHER ==================================== */
548.medialeft
549{
550	padding: 8px;
551}
552
553.breadcrumbs
554{
555	font-family: Verdana;
556	font-size: 10px;
557	margin-bottom: 15px;
558	text-align: right;
559}
560.center
561{
562	text-align: center;
563	margin: 0px auto;
564}
565.buttons ul {padding: 0px; margin: 0px; list-style: none; margin-top: 20px}
566.buttons li{display: inline; padding: 0px; margin: 0px;}
567.buttons li .li {display: inline}
568