1/** Site **/
2
3html, body {
4
5    background: #efefef;
6
7}
8
9body {
10    font-family:Arial, Helvetica, sans-serif;
11    font-size: 9pt;
12    color: #000000;
13    padding:0 0 0 0;
14}
15
16#dokuwiki__top {
17
18    border:1px solid #9EB874;
19
20}
21
22/** Header **/
23
24#header {
25
26    position:relative;
27    margin:0 auto;
28    padding:0 0 0 0;
29    text-align:left;
30    background: #ffffff url(images/header.jpg) no-repeat;
31
32}
33
34#header #logo {
35    position:relative;
36    clear:none;
37    height:125px;
38    margin:0;
39    padding:0;
40    background:transparent;
41    color:#ffffff;
42    text-align:right;
43}
44
45#header #logo strong {
46
47    position: absolute;
48    bottom: 0;
49    right: 0;
50
51    font-family:Verdana, Arial, Helvetica, sans-serif;
52    color:#ffffff;
53    font-size:13pt;
54    letter-spacing:.7em;
55    font-weight: normal;
56
57}
58
59#header #nav {
60    position:relative;
61    clear:both;
62    height:21px;
63    margin:0 0 0 0;
64    padding:0 0 0 0;
65    background:#cccccc;
66    font-size:8pt;
67}
68
69#nav ul{
70    padding:0 0 0 0;
71    margin:0 0 0 0;
72    white-space: nowrap;
73    font-size:8pt;
74    color:#ffffff;
75    float:left;
76    background:#ffffff url(images/topnav_bg_grey.png);
77    list-style:none;
78    width: 100%;
79}
80
81#nav ul li{
82    list-style:none;
83}
84
85#nav ul li a {
86    margin: 0 0 0 0;
87    padding: .25em 2em .3em 2em;
88    background:#ffffff url(images/topnav_bg_grey.png);
89    color: #000000;
90    text-decoration:none;
91    float: left;
92    border-right:1px solid #cccccc;
93}
94
95#nav ul li a:hover {
96    background: #8DA8D5 url(images/topnav_bg_green.png);
97    color: #ffffff;
98    text-decoration:none;
99    border-right:1px solid #cccccc;
100}
101
102/** Content **/
103
104#dokuwiki__site .wrapper {
105    position:relative;
106    clear:both;
107    padding: 1em;
108    background:#ffffff;
109    color:#000000;
110    text-align:left;
111    margin: 0;
112}
113
114h1, h2, h3, h4, h5 {
115    font-family:Arial, Helvetica, sans-serif;
116    color:#697D55 !important;
117}
118
119h1 {
120
121    font-size: 200%;
122
123}
124
125h2 {
126
127    font-size: 150%;
128
129}
130
131h3 {
132
133    font-size: 120%;
134    font-weight: bold;
135
136}
137
138/** Footer **/
139
140#dokuwiki__footer {
141
142    display:none
143
144}
145
146#footer {
147
148    margin: 0;
149    position:relative;
150    clear:both;
151    padding:4px 0 4px 0;
152    background:#ffffff;
153    font-size:8pt;
154    text-align:center;
155    border-top:1px solid #9EB874;
156}
157
158