summaryrefslogtreecommitdiff
path: root/default.css
blob: 42bbdef12c8cf9e1dd31ba2cd23bdd0c38b50d05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
body {
    background-color: #eeeeee;
    margin: 0px;
    font-family: sans-serif;
}

a {
    text-decoration: none;
    color: rgb(100,10,10);
}

a:visited {
    color: rgb(60,0,0);
}

a:hover {
    text-decoration: underline;
}

hr {
    border-style: none;
    height: 1px;
    background-color: silver;
    color: silver;
}

body, div, p, td, li, h1, h2, h3, h4 {
    font-family: sans-serif;
    font-size: 10pt;
}

h1 {
    background-image: url(images/header.png);
    background-repeat: no-repeat;
    position: absolute;
    width: 543px;
    height: 210px;
    margin: 0px;
    top: 0px;
    border: 0px solid green;
}

#page {
    margin-right: 10%;
    min-width: 650px;
}

#page h1 span {
    display: none;
}

#irc_info {
    font-size: 8pt;
    text-align: right;
    height: 45px;
    margin-top: 120px;
    margin-right: 4px;
}

#main_topleft {
    border: 0px dashed green;
    background-image: url(images/main_topleft.png);
    background-position: top left;
    background-repeat: no-repeat;
}

#main_rightrepeat {
    margin-left: 98px;
    background-image: url(images/main_rightrepeat.png);
    background-position: right;
    background-repeat: repeat-y;

    /* A one pixel padding to make IE render correctly
    (the underscore is a hack to make only IE 5-6 see it) */
    _padding-bottom: 1px;
}

#main_topright {
    background-image: url(images/main_topright.png);
    background-position: top right;
    background-repeat: no-repeat;
}

#main_bottomright {
    background-image: url(images/main_bottomright.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}

#main {
    border: 0px dashed purple;
    padding: 0px 4px 0px 0px;
}

#main .main_title_topright {
    background-image: url(images/main_title_topright.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-color: #f2ebe7;
    margin: 0px 0px 20px -9px;
}

#main .main_title_bottomright {
    background-image: url(images/main_title_bottomright.png);
    background-position: bottom right;
    background-repeat: no-repeat;

    /* A one pixel padding to make IE render correctly
    (the underscore is a hack to make only IE 5-6 see it) */
    _padding-bottom: 1px;
}

#main .main_title_topleft {
    background-image: url(images/main_title_topleft.png);
    background-repeat: no-repeat;
}

#main h2 {
    padding: 7px 7px 7px 107px;
    margin: 0px;
    color: #57565c;
    font-size: 16pt;
}

#main h3 {
    margin: 20px 0px 0px 0px;
    font-weight: bold;
    color: #3c3c3c;
    border-bottom: 1px solid #9f9894;
    /*
    border-right: 1px solid #9f9894;
    border-top: 1px solid #f2e6df;
    border-left: 1px solid #f2e6df;
    */
    font-size: 12pt;
    /*
    background-color: #d1c7c0;
    padding: 2px 5px 2px 5px;
    */
}

#sidebar {
    border: 0px dashed red;
    float: right;
    width: 170px;
    padding-top: 2px;
}

#sidebar .section {
    padding: 7px;
}

#sidebar .section h3 {
    text-align: center;
    font-weight: bold;
    font-size: 8pt;
    margin: 0px 0px 50px 0px;
    padding: 0px;
    border-width: 0px;
    color: #2f2e32;
}

#sidebar .section_topleft {
    margin: 10px;
    background-image: url(images/section_topleft.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-color: #cba083;

    /* A one pixel padding to make IE render correctly
    (the underscore is a hack to make only IE 5-6 see it) */
    _padding-bottom: 1px;
}

#sidebar .section_bottomleft {
    background-image: url(images/section_bottomleft.png);
    background-position: bottom left;
    background-repeat: no-repeat;
}

#sidebar .section_topright {
    background-image: url(images/section_topright.png);
    background-position: top right;
    background-repeat: no-repeat;
}

#sidebar .section_bottomright {
    background-image: url(images/section_bottomright.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}

#sidebar .section ul {
    margin: 0px;
    padding: 0px;
}

#sidebar .section li {
    list-style: none;
    margin: 0px;
}

#sidebar .section li a {
    font-size: 12px;
    display: block;
    margin: 0px;
    width: auto;
    border: 1px solid #cba083;
    text-decoration: none;
    padding: 5px 5px 5px 20px;
    margin: 0px;
    color: black;
    font-style: normal;
    font-weight: bold;
    color: #2f2e32;

    /* Setting a background color fixes a strange hover issue with IE 7 */
    background-color: #cba083;
}

#sidebar .section li a:hover {
    border: 1px solid #78584c;
    background-color: #dbbba4;
}

#sidebar .banners {
    text-align: center;
    padding: 13px 7px 8px 7px;
}

#sidebar .banners img {
    border-width: 0px;
    margin-bottom: 5px;
    vertical-align: text-bottom;
}

#contents_leftrepeat {
    background-image: url(images/contents_leftrepeat.png);
    background-repeat: repeat-y;
    background-color: #e1d6cf;
    margin: 0px 170px 0px 0px;
}

#contents_topleft {
    background-image: url(images/contents_topleft.png);
    background-repeat: no-repeat;
    border: 0px dashed red;
}

#contents_bottomleft {
    background-image: url(images/contents_bottomleft.png);
    background-position: bottom left;
    background-repeat: no-repeat;
}

#contents_rightrepeat {
    background-image: url(images/contents_rightrepeat.png);
    background-position: right;
    background-repeat: repeat-y;
}

#contents_topright {
    background-image: url(images/contents_topright.png);
    background-position: top right;
    background-repeat: no-repeat;
}

#contents_bottomright {
    background-image: url(images/contents_bottomright.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}

#contents {
    padding: 12px 8px 175px 21px;
    border: 0px solid blue;
    line-height: 150%;
}

#contents p, table, pre {
    margin: 0px 40px 5px 30px;
}

#contents h4 {
    margin-left: 30px;
    margin-bottom: 0px;
}

#contents ul {
    margin: 0px 40px 0px 20px;
}

#contents table {
    border-top: 1px solid #9f9894;
    border-bottom: 1px solid #9f9894;
}

#contents td {
    border-bottom: 1px dotted #9f9894;
    padding: 3px 10px 3px 3px;
}

#contents tr.last td {
    border-width: 0px;
}

#footer {
    font-size: 8pt;
    text-align: right;
    padding: 5px;
}

.news {
    margin-bottom: 30px;
}

.news_body {
}

.news_date {
    font-style: italic;
    float: right;
    color: #57565c;
    font-size: 8pt;
}

.news_author {
    font-size: 8pt;
    color: #57565c;
    border-bottom: 1px solid #9f9894;
}

.releases {
    margin: 15px 40px 15px 30px;
}

.release {
    background-color: #ede2da;
    margin: 5px;
    padding: 5px 5px 5px 15px;
    white-space: nowrap;
    border-radius: 10px;
}

.releases img {
    vertical-align: middle;
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

div.read-more {
    text-align:right;
}

a.more {
    display: block;
    margin: 0px;
    width: auto;
    padding: 5px 5px 5px 20px;
    margin: 0px;
    color: black;
    font-style: normal;
    font-weight: bold;
    color: #2f2e32;
}

/* Gallery style */
#pagenumbers {
    text-align: center;
    margin: 0px 1em 0px 1em;
}

#pictures a img {
    border: 1px solid #c7b1a3;
    border-bottom-width: 2px;
    border-right-width: 2px;
    margin: 5px;
}

#pictures a:hover img {
    border-color: #a88976;
}