Gentoo Archives: gentoo-commits

From: Jimi Huotari <chiitoo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/forums:styles/gentoo-20XX commit in: /, theme/, template/, theme/images/
Date: Fri, 18 Jun 2021 11:23:12
Message-Id: 1624015293.71bd625a256e965613b1e95f01b1e820ee2a1cdc.chiitoo@gentoo
1 commit: 71bd625a256e965613b1e95f01b1e820ee2a1cdc
2 Author: Marco Genasci <fedeliallalinea <AT> gmail <DOT> com>
3 AuthorDate: Fri Jun 11 18:42:48 2021 +0000
4 Commit: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 18 11:21:33 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/forums.git/commit/?id=71bd625a
7
8 First release of the theme like gentoo.org style
9
10 Signed-off-by: Marco Genasci <fedeliallalinea <AT> gmail.com>
11 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
12
13 style.cfg | 6 +-
14 template/overall_header.html | 1 +
15 theme/colours.css | 110 ++++++---
16 theme/common.css | 59 +++--
17 theme/content.css | 2 +-
18 theme/forms.css | 2 +-
19 theme/images/site-logo.svg | 555 +++++++++++++++++++++++++++++++++++++++++++
20 theme/stylesheet.css | 3 +-
21 8 files changed, 684 insertions(+), 54 deletions(-)
22
23 diff --git a/style.cfg b/style.cfg
24 index 2a3a1aa15..99ebfe3bf 100644
25 --- a/style.cfg
26 +++ b/style.cfg
27 @@ -20,10 +20,10 @@
28 #
29
30 # General Information about this style
31 -name = Gentoo Light
32 -copyright = © 2020 Gentoo Foundation
33 +name = Gentoo 20XX
34 +copyright = © 2021 Gentoo Foundation
35 style_version = 1.0.0
36 -phpbb_version = 3.2.8
37 +phpbb_version = 3.3.1
38
39 # Defining a different template bitfield
40 # template_bitfield = //g=
41
42 diff --git a/template/overall_header.html b/template/overall_header.html
43 index 412e95298..82752e887 100644
44 --- a/template/overall_header.html
45 +++ b/template/overall_header.html
46 @@ -86,6 +86,7 @@
47
48 <div id="site-description" class="site-description">
49 <a id="logo" class="logo" href="<!-- IF U_SITE_HOME -->{U_SITE_HOME}<!-- ELSE -->{U_INDEX}<!-- ENDIF -->" title="<!-- IF U_SITE_HOME -->{L_SITE_HOME}<!-- ELSE -->{L_INDEX}<!-- ENDIF -->"><span class="site_logo"></span></a>
50 + <span class="site-label">Forums</span>
51 <!--<h1>{SITENAME}</h1>
52 <p>{SITE_DESCRIPTION}</p>-->
53 <p class="skiplink"><a href="#start_here">{L_SKIP}</a></p>
54
55 diff --git a/theme/colours.css b/theme/colours.css
56 index 7135a1dcf..973820065 100644
57 --- a/theme/colours.css
58 +++ b/theme/colours.css
59 @@ -5,7 +5,7 @@ Colours and backgrounds for common.css
60
61 html, body {
62 color: #000000;
63 - background-color: #ffffff;
64 + background-color: #e1e1e1;
65 }
66
67 h1 {
68 @@ -27,13 +27,17 @@ hr {
69 }
70
71 .rightside {
72 - color: #efefef;
73 + color: #444;
74 }
75
76 .responsive-center {
77 color: #333333;
78 }
79
80 +.wrap {
81 + background-color: #fafafa;
82 +}
83 +
84 /*
85 --------------------------------------------------------------
86 Colours and backgrounds for links.css
87 @@ -48,11 +52,11 @@ a:hover {
88 }
89
90 .linklist a {
91 - color: #a0a0d0;
92 + color: #ffffff;
93 }
94
95 .linklist a:hover {
96 - color: #00ff00;
97 + color: #ff6633;
98 }
99
100 .mark-read {
101 @@ -74,7 +78,7 @@ a:hover {
102
103 /* Notification mark read link */
104 .dropdown-extended a.mark_read {
105 - background-color: #FFFFFF;
106 + background-color: #fafafa;
107 }
108
109 /* Post body links */
110 @@ -119,12 +123,29 @@ a:hover {
111 }
112
113 .forumbg, .forabg {
114 - background-color: #46357c;
115 - background-image: url("./images/cellpic3.gif");
116 + background-color: #54487A;
117 + background-image: -webkit-linear-gradient(bottom, #54487A 0%, #493f6a 100%);
118 + background-image: linear-gradient(to bottom, #54487A 0%, #493f6a 100%); /* W3C */
119 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54487A', endColorstr='#493f6a',GradientType=0 ); /* IE6-9 */
120 }
121
122 .navbar {
123 - background-color: #000000;
124 + background-color: #54487A;
125 + background-image: -webkit-linear-gradient(bottom, #54487A 0%, #493f6a 100%);
126 + background-image: linear-gradient(to bottom, #54487A 0%, #493f6a 100%); /* W3C */
127 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54487A', endColorstr='#493f6a',GradientType=0 ); /* IE6-9 */
128 +}
129 +
130 +.navbar li.rightside {
131 + color: #fff;
132 +}
133 +
134 +.nav-breadcrumbs {
135 + background-color: #e1e1e1;
136 +}
137 +
138 +.nav-breadcrumbs a {
139 + color: #333;
140 }
141
142 .forabg, .forumbg, .panel, .post, .responsive {
143 @@ -172,7 +193,13 @@ table.zebra-list tr:nth-child(even) td, ul.zebra-list li:nth-child(even) {
144 }
145
146 .site_logo {
147 - background-image: url("./images/site_logo.png");
148 + background-image: url("./images/site-logo.svg");
149 + background-repeat: no-repeat;
150 +}
151 +
152 +.site-label {
153 + color: #fff;
154 + background-color: #54487A;
155 }
156
157 /* Statistics
158 @@ -184,7 +211,10 @@ table.zebra-list tr:nth-child(even) td, ul.zebra-list li:nth-child(even) {
159 }
160
161 .stats-header h3 {
162 - background-image: url("./images/cellpic3.gif");
163 + background-color: #54487A;
164 + background-image: -webkit-linear-gradient(bottom, #54487A 0%, #493f6a 100%);
165 + background-image: linear-gradient(to bottom, #54487A 0%, #493f6a 100%); /* W3C */
166 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54487A', endColorstr='#493f6a',GradientType=0 ); /* IE6-9 */
167 border-bottom-color: #a9b8c2;
168 color: #efefef;
169 }
170 @@ -335,12 +365,12 @@ dl.details dd a {
171 ---------------------------------------- */
172
173 .copyright {
174 - color: #efefef;
175 - background-color: #000000;
176 + color: #444;
177 + background-color: #E1E1E1;
178 }
179
180 .copyright a {
181 - color: #a0a0d0;
182 + color: #54487A;
183 }
184
185 .error {
186 @@ -377,6 +407,13 @@ ul.forums {
187 background-color: #ececec;
188 }
189
190 +ul.topiclist li.header {
191 + background: #54487A;
192 + background-image: -webkit-linear-gradient(bottom, #54487A 0%, #493f6a 100%);
193 + background-image: linear-gradient(to bottom, #54487A 0%, #493f6a 100%); /* W3C */
194 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54487A', endColorstr='#493f6a',GradientType=0 ); /* IE6-9 */
195 +}
196 +
197 ul.topiclist li {
198 color: #000000;
199 }
200 @@ -419,8 +456,10 @@ li.header dt, li.header dd {
201 ----------------------------------------*/
202
203 #topic-header {
204 - background-color: #46357c;
205 - background-image: url("./images/cellpic3.gif");
206 + background-color: #54487A;
207 + background-image: -webkit-linear-gradient(bottom, #54487A 0%, #493f6a 100%);
208 + background-image: linear-gradient(to bottom, #54487A 0%, #493f6a 100%); /* W3C */
209 + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#54487A', endColorstr='#493f6a',GradientType=0 ); /* IE6-9 */
210 }
211
212 .postprofile.topic-header-author {
213 @@ -843,7 +882,7 @@ ul.cplist {
214 }
215
216 .panel-container .panel li.header dd, .panel-container .panel li.header dt {
217 - color: #000000;
218 + color: #efefef;
219 }
220
221 .panel-container table.table1 thead th {
222 @@ -1036,7 +1075,7 @@ label {
223 }
224
225 .display-options label {
226 - color: #efefef;
227 + color: #333333;
228 }
229
230 option.disabled-option {
231 @@ -1192,6 +1231,7 @@ input.disabled {
232 }
233
234 .dropdown-extended .header, .dropdown-extended .footer {
235 + background-color: #DDDAEC;
236 border-color: #B9B9B9;
237 color: #000000;
238 }
239 @@ -1202,10 +1242,10 @@ input.disabled {
240 }
241
242 .dropdown-extended .header {
243 - background-color: #F1F8FF; /* Old browsers */ /* FF3.6+ */
244 - background-image: -webkit-linear-gradient(top, #F1F8FF 0%, #e5e8ea 100%);
245 - background-image: linear-gradient(to bottom, #F1F8FF 0%, #e5e8ea 100%); /* W3C */
246 - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F1F8FF', endColorstr='#e5e8ea',GradientType=0 ); /* IE6-9 */
247 + background-color: #DDDAEC; /* Old browsers */ /* FF3.6+ */
248 + /*background-image: -webkit-linear-gradient(top, #beb8db 0%, #DDDAEC 20%);*/
249 + /*background-image: linear-gradient(to bottom, #beb8db 0%, #DDDAEC 20%);*/ /* W3C */
250 + /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#beb8db', endColorstr='#DDDAEC',GradientType=0 );*/ /* IE6-9 */
251 }
252
253 .dropdown .pointer {
254 @@ -1213,17 +1253,22 @@ input.disabled {
255 }
256
257 .dropdown .pointer-inner {
258 - border-color: #FFF transparent;
259 + border-color: #e1e1e1 transparent;
260 }
261
262 .dropdown-extended .pointer-inner {
263 - border-color: #F1F8FF transparent;
264 + border-color: #DDDAEC transparent;
265 }
266
267 -.dropdown .dropdown-contents {
268 - background: #000000;
269 +.dropdown .dropdown-contents,
270 +.notification_list.dropdown .dropdown-contents {
271 + background: #e1e1e1;
272 border-color: #B9B9B9;
273 box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
274 + color: #444;
275 +}
276 +.notification_list.dropdown .dropdown-contents {
277 + background: #fafafa;
278 }
279
280 .dropdown-up .dropdown-contents {
281 @@ -1231,15 +1276,15 @@ input.disabled {
282 }
283
284 .dropdown-contents a {
285 - color: #a0a0d0;
286 + color: #444;
287 }
288
289 .dropdown li, .dropdown li li {
290 - border-color: #DCDCDC;
291 + border-color: #444;
292 }
293
294 .dropdown li.separator {
295 - border-color: #DCDCDC;
296 + border-top: 1px dotted #444 !important;
297 }
298
299 /* Notifications
300 @@ -1250,10 +1295,15 @@ input.disabled {
301 }
302
303 li.notification-reported strong, li.notification-disapproved strong {
304 - color: #D31141;
305 + color: #ff6633;
306 }
307
308 .badge {
309 - background-color: #D31141;
310 + background-color: #ff6633;
311 color: #ffffff;
312 }
313 +
314 +.notification_list li.bg2,
315 +.notification_list li.bg2:hover {
316 + background-color: #fafafa;
317 +}
318
319 diff --git a/theme/common.css b/theme/common.css
320 index 357b09563..c01e4207b 100644
321 --- a/theme/common.css
322 +++ b/theme/common.css
323 @@ -7,8 +7,8 @@ html {
324 }
325
326 body {
327 - font-family: Verdana, Helvetica, Arial, sans-serif;
328 - font-size: 10px;
329 + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
330 + font-size: 11px;
331 line-height: normal;
332 margin: 0;
333 padding: 0;
334 @@ -18,7 +18,7 @@ body {
335
336 h1 {
337 /* Forum name */
338 - font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
339 + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
340 margin-right: 200px;
341 margin-top: 15px;
342 font-weight: bold;
343 @@ -27,10 +27,10 @@ h1 {
344
345 h2 {
346 /* Forum header titles */
347 - font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
348 + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
349 font-weight: normal;
350 font-size: 2em;
351 - margin: 0.8em 0 0.2em 0;
352 + padding: 0.8em 0 0.2em 0;
353 }
354
355 h2.solo {
356 @@ -39,7 +39,7 @@ h2.solo {
357
358 h3 {
359 /* Sub-headers (also used as post headers, but defined later) */
360 - font-family: Arial, Helvetica, sans-serif;
361 + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
362 font-weight: bold;
363 text-transform: uppercase;
364 border-bottom: 1px solid transparent;
365 @@ -51,7 +51,7 @@ h3 {
366
367 h4 {
368 /* Forum and topic list titles */
369 - font-family: "Trebuchet MS", Verdana, Helvetica, Arial, Sans-serif;
370 + font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
371 font-size: 1.3em;
372 }
373
374 @@ -144,6 +144,10 @@ a:hover { text-decoration: underline; }
375 padding: 0 10px 10px
376 }
377
378 +#page-header {
379 + background-image: linear-gradient(to bottom, #beb8db 0%, #DDDAEC 20%);
380 +}
381 +
382 .page-body {
383 margin: 4px 0;
384 clear: both;
385 @@ -153,10 +157,6 @@ a:hover { text-decoration: underline; }
386 clear: both;
387 }
388
389 -.page-footer + div {
390 - background-color: #000000;
391 -}
392 -
393 .page-footer h3 {
394 margin-top: 20px;
395 }
396 @@ -174,8 +174,8 @@ a:hover { text-decoration: underline; }
397
398 .site_logo {
399 display: inline-block;
400 - height: 109px;
401 - width: 532px;
402 + height: 63px;
403 + width: 210px;
404 }
405
406 /* Site description and logo */
407 @@ -188,6 +188,19 @@ a:hover { text-decoration: underline; }
408 margin-right: 0;
409 }
410
411 +.site-label {
412 + display: inline;
413 + padding: .2em .6em .3em;
414 + font-size: 1em;
415 + font-weight: 700;
416 + line-height: 63px;
417 + text-align: center;
418 + white-space: nowrap;
419 + vertical-align: baseline;
420 + border-radius: .25em;
421 + cursor: default;
422 +}
423 +
424 /* Boxes and Backgrounds
425 ---------------------------------------- */
426 .headerbar {
427 @@ -196,10 +209,6 @@ a:hover { text-decoration: underline; }
428 padding: 0 0;
429 }
430
431 -.navbar {
432 - padding: 0 5px;
433 -}
434 -
435 .forabg, .forumbg {
436 margin-bottom: 4px;
437 clear: both;
438 @@ -798,7 +807,8 @@ fieldset.fields1 dl.pmlist dd.recipients {
439 ---------------------------------------- */
440 .action-bar {
441 font-size: 11px;
442 - margin: 4px 0;
443 + /*margin: 4px 0;*/
444 + margin: 20px 0 10px;
445 }
446
447 .forabg + .action-bar {
448 @@ -1250,6 +1260,19 @@ ul.linklist:after,
449 display: none;
450 }
451
452 +.navbar {
453 + margin-bottom: -3px;
454 +}
455 +
456 +.navbar .inner ul {
457 + padding: 2px 5px;
458 +}
459 +
460 +.page-footer .navbar {
461 + padding: 0 5px;
462 + margin-bottom: 0;
463 +}
464 +
465 /* Navbar specific list items
466 ----------------------------------------*/
467
468
469 diff --git a/theme/content.css b/theme/content.css
470 index 1e05211de..14d463282 100644
471 --- a/theme/content.css
472 +++ b/theme/content.css
473 @@ -259,7 +259,7 @@ dd.option {
474 }
475
476 .postbody {
477 - padding: 5px;
478 + padding: 5px 5px 5px 20px;
479 line-height: 1.48em;
480 width: 100%;
481 float: left;
482
483 diff --git a/theme/forms.css b/theme/forms.css
484 index 5646a7d6c..d260e2177 100644
485 --- a/theme/forms.css
486 +++ b/theme/forms.css
487 @@ -409,7 +409,7 @@ input.button1:focus, input.button2:focus, input.button3:focus {
488 display: block;
489 float: right;
490 margin-right: 5px;
491 - margin-top: 30px;
492 + margin-top: 22px;
493 }
494
495 .search-header .inputbox { border: 0; }
496
497 diff --git a/theme/images/site-logo.svg b/theme/images/site-logo.svg
498 new file mode 100644
499 index 000000000..fd9cf1449
500 --- /dev/null
501 +++ b/theme/images/site-logo.svg
502 @@ -0,0 +1,555 @@
503 +<?xml version="1.0" encoding="UTF-8" standalone="no"?>
504 +<!-- Created with Inkscape (http://www.inkscape.org/) -->
505 +
506 +<svg
507 + xmlns:dc="http://purl.org/dc/elements/1.1/"
508 + xmlns:cc="http://creativecommons.org/ns#"
509 + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
510 + xmlns:svg="http://www.w3.org/2000/svg"
511 + xmlns="http://www.w3.org/2000/svg"
512 + xmlns:xlink="http://www.w3.org/1999/xlink"
513 + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
514 + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
515 + width="204.72787"
516 + height="59"
517 + viewBox="0 0 204.72787 59"
518 + id="svg5367"
519 + version="1.1"
520 + inkscape:version="0.91 r13725"
521 + sodipodi:docname="site-logo-new.svg">
522 + <defs
523 + id="defs5369">
524 + <linearGradient
525 + id="linearGradient5334">
526 + <stop
527 + id="stop5336"
528 + offset="0"
529 + style="stop-color:#ffffff;stop-opacity:1;" />
530 + <stop
531 + style="stop-color:#ffffff;stop-opacity:1;"
532 + offset="0.34214258"
533 + id="stop5338" />
534 + <stop
535 + style="stop-color:#bebdf3;stop-opacity:1;"
536 + offset="0.51998252"
537 + id="stop5340" />
538 + <stop
539 + id="stop5342"
540 + offset="0.75408828"
541 + style="stop-color:#867fb7;stop-opacity:1" />
542 + <stop
543 + style="stop-color:#9f99c7;stop-opacity:1;"
544 + offset="0.8711412"
545 + id="stop5344" />
546 + <stop
547 + id="stop5346"
548 + offset="1"
549 + style="stop-color:#524c76;stop-opacity:1;" />
550 + </linearGradient>
551 + <linearGradient
552 + id="linearGradient5320">
553 + <stop
554 + id="stop5322"
555 + offset="0"
556 + style="stop-color:#ffffff;stop-opacity:1;" />
557 + <stop
558 + style="stop-color:#ffffff;stop-opacity:1;"
559 + offset="0.34214258"
560 + id="stop5324" />
561 + <stop
562 + style="stop-color:#b9b5d7;stop-opacity:1"
563 + offset="0.51998252"
564 + id="stop5326" />
565 + <stop
566 + id="stop5328"
567 + offset="0.75408828"
568 + style="stop-color:#8681b8;stop-opacity:1" />
569 + <stop
570 + style="stop-color:#9f99c7;stop-opacity:1;"
571 + offset="0.8711412"
572 + id="stop5330" />
573 + <stop
574 + id="stop5332"
575 + offset="1"
576 + style="stop-color:#524c76;stop-opacity:1;" />
577 + </linearGradient>
578 + <linearGradient
579 + id="linearGradient5306">
580 + <stop
581 + id="stop5308"
582 + offset="0"
583 + style="stop-color:#ffffff;stop-opacity:1;" />
584 + <stop
585 + style="stop-color:#ffffff;stop-opacity:1;"
586 + offset="0.34214258"
587 + id="stop5310" />
588 + <stop
589 + style="stop-color:#bebbdb;stop-opacity:1"
590 + offset="0.51998252"
591 + id="stop5312" />
592 + <stop
593 + id="stop5314"
594 + offset="0.75408828"
595 + style="stop-color:#928bbe;stop-opacity:1" />
596 + <stop
597 + style="stop-color:#9f99c7;stop-opacity:1;"
598 + offset="0.8711412"
599 + id="stop5316" />
600 + <stop
601 + id="stop5318"
602 + offset="1"
603 + style="stop-color:#524c76;stop-opacity:1;" />
604 + </linearGradient>
605 + <linearGradient
606 + id="linearGradient2096">
607 + <stop
608 + id="stop2098"
609 + offset="0.0000000"
610 + style="stop-color:#7e3615;stop-opacity:1.0000000;" />
611 + <stop
612 + style="stop-color:#7e3615;stop-opacity:1.0000000;"
613 + offset="0.50000000"
614 + id="stop2100" />
615 + <stop
616 + id="stop2102"
617 + offset="1.0000000"
618 + style="stop-color:#ed5b1a;stop-opacity:1.0000000;" />
619 + </linearGradient>
620 + <linearGradient
621 + id="linearGradient2085">
622 + <stop
623 + id="stop2087"
624 + offset="0.0000000"
625 + style="stop-color:#7f3615;stop-opacity:1.0000000;" />
626 + <stop
627 + style="stop-color:#ef743d;stop-opacity:1.0000000;"
628 + offset="0.50000000"
629 + id="stop2089" />
630 + <stop
631 + id="stop2091"
632 + offset="1.0000000"
633 + style="stop-color:#ef743d;stop-opacity:1.0000000;" />
634 + </linearGradient>
635 + <linearGradient
636 + id="linearGradient2077">
637 + <stop
638 + style="stop-color:#ed5b1a;stop-opacity:1.0000000;"
639 + offset="0.0000000"
640 + id="stop2079" />
641 + <stop
642 + id="stop2083"
643 + offset="0.50000000"
644 + style="stop-color:#ed5b1a;stop-opacity:1.0000000;" />
645 + <stop
646 + style="stop-color:#7e3615;stop-opacity:1.0000000;"
647 + offset="1.0000000"
648 + id="stop2081" />
649 + </linearGradient>
650 + <linearGradient
651 + id="linearGradient3560"
652 + inkscape:collect="always">
653 + <stop
654 + id="stop3562"
655 + offset="0"
656 + style="stop-color:#ffffff;stop-opacity:1;" />
657 + <stop
658 + id="stop3564"
659 + offset="1"
660 + style="stop-color:#ffffff;stop-opacity:0;" />
661 + </linearGradient>
662 + <linearGradient
663 + id="linearGradient3004">
664 + <stop
665 + style="stop-color:#ffffff;stop-opacity:1;"
666 + offset="0"
667 + id="stop3006" />
668 + <stop
669 + id="stop7609"
670 + offset="0.34214258"
671 + style="stop-color:#ffffff;stop-opacity:1;" />
672 + <stop
673 + id="stop7599"
674 + offset="0.51998252"
675 + style="stop-color:#bebdf3;stop-opacity:1;" />
676 + <stop
677 + style="stop-color:#8f82f9;stop-opacity:1;"
678 + offset="0.75408828"
679 + id="stop7611" />
680 + <stop
681 + id="stop7613"
682 + offset="0.8711412"
683 + style="stop-color:#9f99c7;stop-opacity:1;" />
684 + <stop
685 + style="stop-color:#524c76;stop-opacity:1;"
686 + offset="1"
687 + id="stop3008" />
688 + </linearGradient>
689 + <linearGradient
690 + id="linearGradient2988">
691 + <stop
692 + id="stop2990"
693 + offset="0.0000000"
694 + style="stop-color:#c9491c;stop-opacity:1.0000000;" />
695 + <stop
696 + id="stop2992"
697 + offset="1.0000000"
698 + style="stop-color:#6b2e26;stop-opacity:1.0000000;" />
699 + </linearGradient>
700 + <linearGradient
701 + id="linearGradient2980">
702 + <stop
703 + id="stop2982"
704 + offset="0.0000000"
705 + style="stop-color:#e76226;stop-opacity:1.0000000;" />
706 + <stop
707 + id="stop2984"
708 + offset="1.0000000"
709 + style="stop-color:#7e3615;stop-opacity:1.0000000;" />
710 + </linearGradient>
711 + <linearGradient
712 + id="linearGradient2127">
713 + <stop
714 + id="stop2129"
715 + offset="0.0000000"
716 + style="stop-color:#cc0045;stop-opacity:1.0000000;" />
717 + <stop
718 + id="stop2131"
719 + offset="1.0000000"
720 + style="stop-color:#ff794d;stop-opacity:1.0000000;" />
721 + </linearGradient>
722 + <linearGradient
723 + gradientTransform="matrix(1.237124,0,0,1.237124,-161.0905,-377.3414)"
724 + gradientUnits="userSpaceOnUse"
725 + y2="269.70941"
726 + x2="368.62137"
727 + y1="697.43707"
728 + x1="464.01675"
729 + id="linearGradient2986"
730 + xlink:href="#linearGradient5306"
731 + inkscape:collect="always" />
732 + <linearGradient
733 + gradientTransform="matrix(1.237124,0,0,1.237124,-1037.425,-1010.413)"
734 + gradientUnits="userSpaceOnUse"
735 + y2="1340.5599"
736 + x2="1099.6853"
737 + y1="-313.5238"
738 + x1="783.86316"
739 + id="linearGradient2994"
740 + xlink:href="#linearGradient5334"
741 + inkscape:collect="always" />
742 + <linearGradient
743 + y2="560.31262"
744 + x2="305.19791"
745 + y1="560.31262"
746 + x1="142.8909"
747 + gradientUnits="userSpaceOnUse"
748 + id="linearGradient2786"
749 + xlink:href="#linearGradient3004"
750 + inkscape:collect="always" />
751 + <radialGradient
752 + r="218.02184"
753 + fy="512.46417"
754 + fx="298.04648"
755 + cy="512.46417"
756 + cx="298.04648"
757 + gradientTransform="matrix(-0.02182864,-1.020879,1.918033,-0.04101524,-759.031,896.8714)"
758 + gradientUnits="userSpaceOnUse"
759 + id="radialGradient2788"
760 + xlink:href="#linearGradient3004"
761 + inkscape:collect="always" />
762 + <linearGradient
763 + gradientTransform="matrix(0.413051,0,0,0.413051,209.7551,299.5351)"
764 + y2="205.21933"
765 + x2="-32.857155"
766 + y1="185.21933"
767 + x1="34.285702"
768 + gradientUnits="userSpaceOnUse"
769 + id="linearGradient2801"
770 + xlink:href="#linearGradient3004"
771 + inkscape:collect="always" />
772 + <radialGradient
773 + gradientUnits="userSpaceOnUse"
774 + gradientTransform="matrix(-1.335307,0.232165,-0.156016,-0.897333,707.4359,624.6685)"
775 + r="22.023195"
776 + fy="365.99103"
777 + fx="278.19101"
778 + cy="365.99103"
779 + cx="278.19101"
780 + id="radialGradient3553"
781 + xlink:href="#linearGradient3560"
782 + inkscape:collect="always" />
783 + <radialGradient
784 + gradientUnits="userSpaceOnUse"
785 + gradientTransform="matrix(1.586984,0.06491459,-0.00379132,0.906694,-164.0892,16.62349)"
786 + r="30.535715"
787 + fy="374.32648"
788 + fx="281.96429"
789 + cy="374.32648"
790 + cx="281.96429"
791 + id="radialGradient3566"
792 + xlink:href="#linearGradient3560"
793 + inkscape:collect="always" />
794 + <radialGradient
795 + gradientUnits="userSpaceOnUse"
796 + gradientTransform="matrix(-0.784367,2.082605,-1.36893,-0.515577,1619.589,-726.3586)"
797 + r="77.994896"
798 + fy="357.7851"
799 + fx="616.66583"
800 + cy="357.7851"
801 + cx="616.66583"
802 + id="radialGradient2075"
803 + xlink:href="#linearGradient2085"
804 + inkscape:collect="always" />
805 + <radialGradient
806 + r="218.02184"
807 + fy="590.5899"
808 + fx="332.72311"
809 + cy="590.5899"
810 + cx="332.72311"
811 + gradientTransform="matrix(-0.0660395,4.190266,-3.573754,-0.05626827,2168.154,-1171.421)"
812 + gradientUnits="userSpaceOnUse"
813 + id="radialGradient3228"
814 + xlink:href="#linearGradient5306"
815 + inkscape:collect="always" />
816 + <radialGradient
817 + gradientUnits="userSpaceOnUse"
818 + gradientTransform="matrix(3.287367,0,0,2.519654,111.6891,-642.7214)"
819 + r="31.94874"
820 + fy="320.08572"
821 + fx="49.529819"
822 + cy="320.08572"
823 + cx="49.529819"
824 + id="radialGradient5851"
825 + xlink:href="#linearGradient5306"
826 + inkscape:collect="always" />
827 + <filter
828 + style="color-interpolation-filters:sRGB"
829 + inkscape:label="Drop Shadow"
830 + id="filter7852">
831 + <feFlood
832 + flood-opacity="0.58999999999999997"
833 + flood-color="rgb(83,71,121)"
834 + result="flood"
835 + id="feFlood7854" />
836 + <feComposite
837 + in="flood"
838 + in2="SourceGraphic"
839 + operator="in"
840 + result="composite1"
841 + id="feComposite7856"
842 + flood-opacity="0.52000000000000002"
843 + stdDeviation="5.9000000000000004" />
844 + <feGaussianBlur
845 + in="composite1"
846 + stdDeviation="5.9110491803278684"
847 + result="blur"
848 + id="feGaussianBlur7858" />
849 + <feOffset
850 + dx="0"
851 + dy="0"
852 + result="offset"
853 + id="feOffset7860" />
854 + <feComposite
855 + in="SourceGraphic"
856 + in2="offset"
857 + operator="over"
858 + result="composite2"
859 + id="feComposite7862" />
860 + </filter>
861 + <filter
862 + style="color-interpolation-filters:sRGB"
863 + inkscape:label="Drop Shadow"
864 + id="filter8003">
865 + <feFlood
866 + flood-opacity="0.85098"
867 + flood-color="rgb(83,71,121)"
868 + result="flood"
869 + id="feFlood8005" />
870 + <feComposite
871 + in="flood"
872 + in2="SourceGraphic"
873 + operator="in"
874 + result="composite1"
875 + id="feComposite8007" />
876 + <feGaussianBlur
877 + in="composite1"
878 + stdDeviation="38.2979"
879 + result="blur"
880 + id="feGaussianBlur8009" />
881 + <feOffset
882 + dx="0"
883 + dy="0"
884 + result="offset"
885 + id="feOffset8011" />
886 + <feComposite
887 + in="SourceGraphic"
888 + in2="offset"
889 + operator="over"
890 + result="composite2"
891 + id="feComposite8013" />
892 + </filter>
893 + </defs>
894 + <sodipodi:namedview
895 + id="base"
896 + pagecolor="#ffffff"
897 + bordercolor="#666666"
898 + borderopacity="1.0"
899 + inkscape:pageopacity="0.0"
900 + inkscape:pageshadow="2"
901 + inkscape:zoom="1.979899"
902 + inkscape:cx="68.705435"
903 + inkscape:cy="-67.659396"
904 + inkscape:document-units="px"
905 + inkscape:current-layer="layer1"
906 + showgrid="false"
907 + units="px"
908 + inkscape:window-width="1920"
909 + inkscape:window-height="1107"
910 + inkscape:window-x="0"
911 + inkscape:window-y="0"
912 + inkscape:window-maximized="1"
913 + fit-margin-top="7"
914 + fit-margin-left="20"
915 + fit-margin-right="0"
916 + fit-margin-bottom="5" />
917 + <metadata
918 + id="metadata5372">
919 + <rdf:RDF>
920 + <cc:Work
921 + rdf:about="">
922 + <dc:format>image/svg+xml</dc:format>
923 + <dc:type
924 + rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
925 + <dc:title></dc:title>
926 + </cc:Work>
927 + </rdf:RDF>
928 + </metadata>
929 + <g
930 + inkscape:label="logo"
931 + inkscape:groupmode="layer"
932 + id="layer1"
933 + transform="translate(5.4741686,-842.04785)">
934 + <g
935 + id="g5680"
936 + transform="matrix(0.07280016,0,0,0.07280016,14.357472,851.99068)"
937 + style="filter:url(#filter8003)">
938 + <g
939 + transform="translate(-25.69105,-25.5213)"
940 + style="display:inline"
941 + inkscape:label="back"
942 + id="layer2">
943 + <path
944 + inkscape:connector-curvature="0"
945 + sodipodi:nodetypes="cscssssssssssscss"
946 + d="M 25.756851,521.91391 C 25.825031,495.65357 48.148853,458.98977 79.868697,425.68116 101.06675,403.42137 122.59556,383.88231 169.52585,343.86782 137.06358,326.05537 86.575337,304.5643 61.242464,276.41883 51.868932,266.00461 34.879101,242.4107 38.174477,210.88878 44.890902,146.64282 124.18914,49.142619 236.90525,28.529375 c 37.50415,-6.858661 80.56354,-1.907781 116.00271,14.024919 111.18036,49.984243 247.14797,174.162266 263.8771,234.794926 5.88837,21.34165 4.75656,55.36025 -5.39475,74.31982 -12.58141,23.49823 -56.1358,71.22495 -115.72484,120.47315 -93.4994,77.2739 -224.52102,160.24847 -322.35291,174.21052 -31.611,4.51135 -63.90775,-0.19399 -86.572466,-12.98278 C 51.279241,613.36083 39.508186,586.6468 35.370326,578.63961 24.367104,557.34729 25.73287,530.37254 25.756851,521.91391 Z M 288.89937,226.87362 c 1.20738,-14.88942 59.59326,-0.0658 55.90415,11.72547 -3.89197,12.43966 -57.28926,5.35537 -55.90415,-11.72547 z"
947 + style="opacity:1;fill:url(#linearGradient2994);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1"
948 + id="path2973" />
949 + </g>
950 + <g
951 + transform="translate(-25.69105,-25.5213)"
952 + style="display:inline"
953 + inkscape:label="mid"
954 + id="layer4">
955 + <path
956 + inkscape:connector-curvature="0"
957 + sodipodi:nodetypes="csssssssccssss"
958 + d="M 201.12502,319.26488 C 170.40092,345.206 149.97273,362.69737 124.3619,386.10521 62.686019,442.47585 20.779962,485.38384 42.384986,544.03745 67.307886,611.6985 121.94112,608.26771 186.00654,595.69143 351.14346,563.12161 622.59855,354.43165 608.76251,277.34931 597.56708,214.97818 445.90819,90.975251 356.11423,46.84913 328.062,33.063819 295.73224,25.934162 263.30502,27.459889 139.83437,33.287522 43.410732,145.70192 48.3364,206.6102 53.12843,265.866 202.89233,317.49757 201.12502,319.26488 Z M 182.59146,112.40184 c -37.15326,41.33629 -13.39873,121.3113 48.21486,164.90276 72.09526,51.00721 188.8443,60.24272 212.0774,20.90556 43.33515,-73.37278 -3.98029,-150.9555 -74.61054,-185.56335 -69.7954,-34.198724 -162.52227,-26.01189 -185.68172,-0.24497 z"
959 + style="opacity:1;fill:url(#linearGradient2986);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
960 + id="path2975" />
961 + <path
962 + inkscape:connector-curvature="0"
963 + sodipodi:nodetypes="csssscss"
964 + d="m 309.29559,275.57053 c 52.15894,7.24994 97.11719,-13.63858 104.1475,-65.14342 5.35537,-39.2337 -54.68938,-82.09994 -90.78995,-91.98681 -30.14631,-8.25614 -95.59547,2.36034 -100.00778,59.37779 -4.58678,59.27202 56.23678,93.52508 86.65023,97.75244 z m -25.54268,-98.581 c -34.27878,53.10396 49.77027,69.43027 62.63837,59.7456 55.47708,-41.75261 -47.53597,-83.14191 -62.63837,-59.7456 z"
965 + style="display:inline;opacity:1;fill:url(#radialGradient5851);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
966 + id="path4976" />
967 + </g>
968 + <g
969 + transform="translate(-25.69105,-25.5213)"
970 + style="display:inline"
971 + inkscape:label="top"
972 + id="layer5">
973 + <path
974 + inkscape:connector-curvature="0"
975 + sodipodi:nodetypes="cssssssssssscsscsss"
976 + id="path2977"
977 + d="M 253.35285,41.570018 C 192.71898,47.959829 181.10644,55.76371 126.17687,97.322591 107.767,111.25125 73.883463,145.14202 65.201668,185.34831 c -3.306505,15.31275 0.601944,28.53259 11.630184,37.80412 35.312998,29.68796 94.416058,53.77395 142.904478,77.05704 14.20232,6.81964 4.79874,19.18504 -18.10392,39.01252 -57.79173,50.03186 -135.926941,110.93446 -141.3817,157.34203 -2.570415,21.86837 4.916125,51.5832 31.459397,66.7898 31.006723,17.76369 95.372133,6.16955 138.351373,-9.835 62.80599,-23.38762 145.30781,-75.00368 210.80628,-125.74104 68.11013,-52.76042 131.43764,-119.77326 134.57017,-130.70294 3.84668,-13.42147 3.46325,-25.81795 -3.96035,-40.07068 C 559.81983,234.62227 544.23417,217.99109 527.49924,199.37578 482.59667,152.03725 435.087,110.44129 378.2447,78.565883 337.19672,55.547464 301.08129,36.540217 253.35285,41.570018 Z m 89.06787,106.129442 c 43.80514,21.17863 88.78971,76.80693 -0.39035,108.8248 -24.25015,8.70642 -101.15792,-21.38222 -98.80358,-62.4438 3.43316,-6
978 0.65568 45.70723,-72.24041 99.19393,-46.381 z"
979 + style="opacity:1;fill:url(#radialGradient3228);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
980 + </g>
981 + </g>
982 + <g
983 + id="g6781"
984 + transform="matrix(0.25819527,0,0,0.25819527,72.262782,855.73491)"
985 + style="filter:url(#filter7852)">
986 + <path
987 + id="path6783"
988 + d="m 254.9,4.2 c 2.8,0 5.6,0 8.4,0 0,33.7 0,67.3 0,101 -2.8,-0.1 -5.8,0.1 -8.5,-0.1 0,-33.5 0,-67.1 0,-100.6 0,-0.1 0,-0.3 0.1,-0.3 z"
989 + inkscape:connector-curvature="0"
990 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
991 + <path
992 + id="path6785"
993 + d="m 276,4.2 c 3.1,0 6.2,0 9.3,0 0,3.6 0,7.1 0,10.7 -3.1,0 -6.2,0 -9.3,0 0,-3.5 -0.2,-7.3 0,-10.7 z"
994 + inkscape:connector-curvature="0"
995 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
996 + <path
997 + id="path6787"
998 + d="m 136.7,34.8 c 2.1,0 4.3,0 6.4,0 0,2.4 0,4.8 0,7.1 -2.1,0 -4.2,0 -6.3,0 -0.2,15.6 -0.1,33.1 -0.1,49.5 0,2.5 -0.1,5 0.7,6.4 0.9,1.5 3.5,1.7 5.7,1.6 0,2.5 0,4.9 0,7.4 -5.6,0.4 -11,0 -13.1,-3.8 -1.8,-3.5 -1.8,-8.6 -1.8,-13.9 0,-15.6 0,-32 0,-47.1 -1.5,0 -3.1,0 -4.6,0 0,-2.4 0,-4.8 0,-7.1 1.5,0 3.1,0 4.6,0 0,-5.2 0,-10.3 0,-15.5 2.7,-1.1 5.7,-2.4 8.4,-3.4 0.1,6.2 0.1,12.5 0.1,18.8 z"
999 + inkscape:connector-curvature="0"
1000 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1001 + <path
1002 + id="path6789"
1003 + d="m 407.7,16.9 c 2.4,0 4.9,0 7.3,0 0,0.6 0,1.3 0,1.9 -0.9,0 -1.7,0 -2.6,0 -0.2,7.6 0,15.6 -0.1,23.3 -0.7,-0.1 -1.6,0.1 -2.2,-0.1 0,-7.7 0,-15.5 0,-23.2 -0.9,0 -1.7,0 -2.6,0 0.1,-0.6 0,-1.4 0.2,-1.9 z"
1004 + inkscape:connector-curvature="0"
1005 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1006 + <path
1007 + id="path6791"
1008 + d="m 417.4,16.9 c 1.2,0 2.5,0 3.7,0 0.7,7.8 1.6,15.4 2.4,23.2 0.5,-1.8 0.6,-3.7 0.8,-5.6 0.6,-5.8 1.1,-11.8 1.8,-17.5 1.2,0 2.5,0 3.7,0 0,8.4 0,16.8 0,25.2 -0.6,0 -1.5,0.1 -1.9,-0.1 -0.1,-7.7 0.1,-15.7 -0.1,-23.3 -0.4,0.3 -0.3,0.9 -0.4,1.3 -0.7,7.2 -1.6,14.9 -2.4,22 -1,0 -2,0 -3,0 -0.9,-7.8 -1.6,-15.8 -2.6,-23.4 -0.4,7.4 -0.1,15.6 -0.2,23.4 -0.6,0 -1.2,0 -1.9,0 0,-8.3 -0.1,-17 0.1,-25.2 z"
1009 + inkscape:connector-curvature="0"
1010 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1011 + <path
1012 + id="path6793"
1013 + d="m 24.1,39 c 0.3,-1.4 0.4,-2.9 0.7,-4.2 2.6,0 5.2,0 7.8,0 0,24.3 0,49.5 0,74.1 0,6.6 0,12.5 -1.7,16.8 -1.7,4.6 -5.5,6.8 -11.6,7 C 13,132.9 8.5,131.3 6.2,127.2 4.1,123.3 3.8,117.8 3.9,111 c 2.9,0 5.9,0 8.8,0 0.2,4.6 -0.5,9.6 1.2,12.6 1.5,2.6 6.4,2.6 8.2,0.4 2.1,-2.6 1.8,-8.1 1.8,-13.2 0,-4.5 0,-9.1 0,-12.9 -0.8,1 -1.4,2 -2.2,2.8 -4.1,4 -12.9,4.1 -15.8,-0.9 -2,-3.4 -2,-9 -2,-14.6 0,-11.1 0,-22.2 0,-33.3 0,-9.3 0.1,-18 8.4,-18.7 6.1,-0.5 9.5,2.2 11.8,5.8 z M 12.7,54.5 c 0,8.3 0,19.4 0,27.9 0,4.8 -0.2,9.9 1.6,12.3 1.3,1.8 4.7,2.5 6.8,1.3 2.9,-1.6 3,-7.1 3,-12.3 0,-10.5 0,-20 0,-30.8 0,-5 0.1,-10.6 -3.2,-12.3 -0.9,-0.4 -2.7,-0.5 -3.5,-0.4 -5.2,0.8 -4.7,8.4 -4.7,14.3 z"
1014 + inkscape:connector-curvature="0"
1015 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1016 + <path
1017 + id="path6795"
1018 + d="m 73.9,74.1 c -6.6,0 -13.3,0 -19.9,0 0,4.2 0,8.5 0,13 0,4.1 -0.1,9 1.8,11.2 1.7,2 5.9,1.9 7.6,0 2.9,-3.4 1.3,-11.5 1.8,-17.2 2.9,0 5.9,0 8.8,0 -0.2,7.9 0.5,14.8 -2.2,20.2 -1.9,3.7 -6,5.5 -11.1,5.6 -5.2,0.2 -9.9,-1.1 -12.3,-4.4 -2.8,-3.9 -3,-11.1 -3,-18.1 0,-6.9 0,-14.4 0,-21.1 0,-7.6 -0.4,-14.7 0.8,-20.3 1.3,-6.3 4.6,-9.4 11.5,-9.9 7,-0.4 11.7,1.3 13.9,5.5 2.3,4.2 2.4,10.2 2.4,16.6 -0.1,6.2 -0.1,12.8 -0.1,18.9 z M 65,53.1 c 0,-6.2 0.4,-13.4 -6.1,-12.8 -5.1,0.5 -5,6.8 -5,12.5 0,5 0,9.7 0,14 3.5,0.2 7.4,0 11.1,0.1 0,-4.3 0,-8.9 0,-13.8 z"
1019 + inkscape:connector-curvature="0"
1020 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1021 + <path
1022 + id="path6797"
1023 + d="m 115,105.2 c -2.8,0 -5.6,0 -8.4,0 0,-15.6 0,-32.1 0,-48.2 0,-5.1 0.5,-11.4 -1.5,-14.6 -1.7,-2.7 -6.9,-2.8 -8.7,-0.1 -2.1,3.1 -1.6,9.5 -1.6,14.6 0,16.1 0,32.6 0,48.3 -2.8,0 -5.6,0 -8.4,0 0,-23.5 0,-46.9 0,-70.4 2.6,0 5.2,0 7.8,0 0.2,1.4 0.4,2.7 0.5,4.1 2,-2.7 4.6,-5.5 9,-5.8 11.3,-0.9 11.2,8.9 11.2,19.6 0.1,17.3 0.1,36 0.1,52.5 z"
1024 + inkscape:connector-curvature="0"
1025 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1026 + <path
1027 + id="path6799"
1028 + d="m 163.5,33.2 c 5,-0.4 9.7,0.5 12.3,3 5,4.7 4.1,16.5 4.1,26.4 0,5.2 0,10.4 0,15.3 0,10 0.8,21.6 -4.4,26.2 -2.9,2.5 -7.6,3.2 -12.3,2.7 -4.4,-0.4 -7.9,-2.2 -9.6,-5.6 -1.8,-3.6 -2.2,-9 -2.3,-14.7 -0.1,-6.1 0,-11.2 0,-16.9 0,-6.1 -0.3,-11.4 0,-17 0.2,-5.1 0.5,-10.9 2.6,-14.4 1.7,-3.2 5.4,-4.6 9.6,-5 z M 160,54.8 c 0,9.2 0,20.6 0,29.8 0,5 -0.4,10.9 1.6,13.4 1.7,2.1 5.8,1.9 7.3,0.5 2.5,-2.2 2.2,-8.4 2.2,-13.5 0,-10.7 0,-20.3 0,-31.4 0,-6.4 0.4,-14.2 -6.3,-13.3 -5.4,0.8 -4.8,8.3 -4.8,14.5 z"
1029 + inkscape:connector-curvature="0"
1030 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1031 + <path
1032 + id="path6801"
1033 + d="m 204.4,33.2 c 6.3,-0.5 11.9,1 14.2,5.6 2.5,4.9 2.3,13.4 2.3,21.3 0,8.1 0,15.6 0,23.5 0,7.8 -0.1,15.9 -3.9,19.8 -3.7,3.8 -12.8,4.7 -18.4,1.8 -5.4,-2.9 -6.1,-9.7 -6.3,-18.3 -0.2,-6 0,-11.2 0,-16.8 0,-5.7 -0.1,-11.6 0,-16.9 0.1,-5.2 0.5,-11 2.3,-14.6 1.7,-3.5 5.3,-5 9.8,-5.4 z m -3.5,22.1 c 0,4.9 0,9.5 0,15.4 0,5.5 0,9.4 0,15.3 0,5.1 -0.2,11 2.6,12.9 1.8,1.2 5.2,0.8 6.4,-0.4 2.4,-2.2 2.1,-8.6 2.1,-13.6 0,-10.5 0,-20.4 0,-31.4 0,-6.5 0.3,-14.1 -6.3,-13.2 -5.5,0.8 -4.8,8.7 -4.8,15 z"
1034 + inkscape:connector-curvature="0"
1035 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1036 + <path
1037 + id="path6803"
1038 + d="m 326.3,105.2 c -2.8,0 -5.6,0 -8.4,0 0,-15.5 0,-31.8 0,-47.9 0,-5.1 0.6,-11.3 -1.3,-14.6 -1.2,-2.2 -5,-3.2 -7.6,-1.6 -3.2,2 -2.8,8.7 -2.8,13.9 0,16.8 0,33.4 0,50.1 -2.6,0.2 -5.7,0 -8.5,0.1 0,-23.5 0,-46.9 0,-70.4 2.6,0 5.2,0 7.8,0 0.2,1.3 0.4,2.7 0.5,4.1 2,-2.7 4.6,-5.5 9,-5.8 11.3,-0.9 11.2,8.8 11.2,19.5 0.1,17.3 0.1,36.4 0.1,52.6 z"
1039 + inkscape:connector-curvature="0"
1040 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1041 + <path
1042 + id="path6805"
1043 + d="m 276.3,34.8 c 2.8,0 5.6,0 8.4,0 -0.1,23.4 0.1,47.1 -0.1,70.4 -2.8,0 -5.5,0 -8.3,0 -0.2,-23.2 0,-46.8 -0.1,-70.1 0,-0.1 0,-0.3 0.1,-0.3 z"
1044 + inkscape:connector-curvature="0"
1045 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1046 + <path
1047 + id="path6807"
1048 + d="m 339.2,34.8 c 2.8,0 5.6,0 8.4,0 0,15.1 0,31.9 0,47.9 0,6.2 -1,15 3.6,16.7 2.7,1 5.4,-0.1 6.5,-1.9 2,-3.2 1.5,-9.5 1.5,-14.6 0,-16.1 0,-32.5 0,-48.2 2.9,0 5.7,0 8.6,0 0,23.4 0,46.9 0,70.3 -2.4,0.2 -5.3,0 -7.8,0.1 -0.3,-1.3 -0.5,-2.8 -0.7,-4.2 -1.8,3.4 -5.8,6 -11.2,5.7 -9,-0.4 -8.9,-9.7 -8.9,-19.3 0,-17.4 0,-35.4 0,-52.3 -0.1,0 -0.1,-0.2 0,-0.2 z"
1049 + inkscape:connector-curvature="0"
1050 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1051 + <path
1052 + id="path6809"
1053 + d="m 376.5,34.8 c 2.9,0 5.8,0 8.7,0 2,8.6 4,17.2 6,25.8 2.1,-8.5 3.9,-17.2 5.9,-25.8 2.7,0 5.3,0 8,0 -3,10.4 -5.8,21.1 -8.8,31.8 -0.2,0.7 -0.6,1.5 -0.6,2 0,1.1 1,3.4 1.3,4.6 3.1,10.7 6,21.4 9.1,31.9 -3,0 -6.1,0 -9.1,0 -2.3,-9.7 -4.7,-19.3 -6.9,-29 -2.4,9.6 -4.6,19.3 -6.9,29 -2.7,0 -5.3,0 -8,0 3.1,-10.5 6.1,-21.3 9.2,-32.1 0.4,-1.5 1.3,-3.2 1.3,-4.5 0,-1.1 -0.8,-2.9 -1.1,-4.2 -2.7,-9.8 -5.4,-19.6 -8.1,-29.3 0,-0.1 -0.1,-0.1 0,-0.2 z"
1054 + inkscape:connector-curvature="0"
1055 + style="clip-rule:evenodd;fill:#534779;fill-rule:evenodd" />
1056 + </g>
1057 + </g>
1058 +</svg>
1059
1060 diff --git a/theme/stylesheet.css b/theme/stylesheet.css
1061 index 5c41d2ec6..8049f4771 100644
1062 --- a/theme/stylesheet.css
1063 +++ b/theme/stylesheet.css
1064 @@ -1,6 +1,7 @@
1065 /* phpBB3 Style Sheet
1066 --------------------------------------------------------------
1067 - Style name: Gentoo Light
1068 + Style name: Gentoo 20XX
1069 + Based on style: Gentoo Light
1070 Based on style: prosilver (the default phpBB 3.2.x style)
1071 Based on style: Gentoo phpBB 2 (Derived from subSilver by Kyle Manna)
1072 Original author: Tom Beddard ( http://www.subblue.com/ )