parlement 0.8 → 0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +22 -0
- data/Rakefile +2 -2
- data/app/controllers/account_controller.rb +20 -7
- data/app/controllers/application.rb +17 -4
- data/app/controllers/elt_controller.rb +1 -10
- data/app/controllers/person_controller.rb +1 -1
- data/app/helpers/elt_helper.rb +14 -0
- data/app/models/elt.rb +2 -0
- data/app/models/mail.rb +6 -5
- data/app/models/person.rb +5 -0
- data/app/views/account/_login.rhtml +52 -48
- data/app/views/account/_show.rhtml +13 -12
- data/app/views/elt/_choice.rhtml +11 -2
- data/app/views/elt/_elt.rhtml +38 -50
- data/app/views/elt/new.rhtml +8 -8
- data/app/views/elt/show.rhtml +21 -12
- data/app/views/layouts/top.rhtml +1 -0
- data/app/views/person/_listElts.rhtml +47 -26
- data/app/views/person/show.rhtml +8 -18
- data/config/environment.rb +6 -3
- data/db/ROOT/fr.txt +34 -31
- data/db/ROOT/parlement/test.txt +6 -4
- data/db/development_structure.sql +18 -20
- data/public/engine_files/login_engine/stylesheets/login_engine.css +81 -0
- data/public/images/ParlementLogo_fr.png +0 -0
- data/public/images/comments.gif +0 -0
- data/public/images/vote_minus.png +0 -0
- data/public/images/vote_plus.png +0 -0
- data/public/images/vote_plus_minus.svg +79 -0
- data/public/images/write.png +0 -0
- data/public/images/write.svg +70 -0
- data/public/javascripts/mybehaviour.js +3 -4
- data/public/stylesheets/default.css +449 -0
- data/public/stylesheets/live_tree.css +62 -0
- data/public/stylesheets/scaffold.css +74 -0
- data/script/about +3 -0
- data/script/benchmarker +19 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/create_db +7 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/plugin +3 -0
- data/script/profiler +34 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/test/unit/elt_test.rb +11 -0
- data/test/unit/mail_test.rb +29 -0
- metadata +27 -40
- data/test/fixtures/attachments.yml +0 -13
- data/test/fixtures/choices.yml +0 -13
- data/test/fixtures/elts.yml +0 -36
- data/test/fixtures/img.png +0 -0
- data/test/fixtures/mail/avatar +0 -249
- data/test/fixtures/mail/mail_ruby +0 -39
- data/test/fixtures/mail/mail_rubyChild +0 -30
- data/test/fixtures/mail/mail_rubyChild2 +0 -30
- data/test/fixtures/mail/mail_rubyWithAttachment +0 -7932
- data/test/fixtures/mail/mail_rubyWithSubject +0 -27
- data/test/fixtures/mails.yml +0 -13
- data/test/fixtures/people.yml +0 -68
- data/test/fixtures/subscribers.yml +0 -14
- data/test/fixtures/users.yml +0 -41
- data/test/functional/account_controller_test.rb +0 -317
- data/test/functional/elt_controller_test.rb +0 -87
- data/test/functional/person_controller_test.rb +0 -18
- data/test/functional/subscriber_controller_test.rb +0 -128
- data/test/mocks/test/time.rb +0 -17
- data/test/mocks/test/user_notify.rb +0 -16
- data/test/test_helper.rb +0 -72
data/db/ROOT/parlement/test.txt
CHANGED
@@ -3,10 +3,12 @@ Testing
|
|
3
3
|
You can use the system right now:
|
4
4
|
|
5
5
|
* click on the *_n_ more* links to drill down into the available elements
|
6
|
-
* click on the <span class="
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
* click on the <span class="eltQuickAdd" style="margin: 0">
|
7
|
+
!/images/write.png!</span> link to write new sub elements
|
8
|
+
* click on <span class="choice" style="float:none; margin: 0;">
|
9
|
+
<label class="con">!/images/vote_minus.png!</label> or
|
10
|
+
<label class="pro">!/images/vote_plus.png!</label></span> buttons to vote
|
11
|
+
against or for an element
|
10
12
|
|
11
13
|
No complex registration required, you can participate anonymously or just fill
|
12
14
|
a pseudo (top right corner) in order to be differentiated. This pseudo can be
|
@@ -327,6 +327,20 @@ CREATE INDEX elts_parent ON elts USING btree (parent_id);
|
|
327
327
|
CREATE INDEX elts_parent_key ON elts USING btree (parent_id);
|
328
328
|
|
329
329
|
|
330
|
+
--
|
331
|
+
-- Name: lft; Type: INDEX; Schema: public; Owner: manu; Tablespace:
|
332
|
+
--
|
333
|
+
|
334
|
+
CREATE INDEX lft ON elts USING btree (lft);
|
335
|
+
|
336
|
+
|
337
|
+
--
|
338
|
+
-- Name: rgt; Type: INDEX; Schema: public; Owner: manu; Tablespace:
|
339
|
+
--
|
340
|
+
|
341
|
+
CREATE INDEX rgt ON elts USING btree (rgt);
|
342
|
+
|
343
|
+
|
330
344
|
--
|
331
345
|
-- Name: $1; Type: FK CONSTRAINT; Schema: public; Owner: manu
|
332
346
|
--
|
@@ -375,14 +389,6 @@ ALTER TABLE ONLY delegations
|
|
375
389
|
ADD CONSTRAINT "$3" FOREIGN KEY (delegate_to) REFERENCES people(id);
|
376
390
|
|
377
391
|
|
378
|
-
--
|
379
|
-
-- Name: fk_elt_id; Type: FK CONSTRAINT; Schema: public; Owner: manu
|
380
|
-
--
|
381
|
-
|
382
|
-
ALTER TABLE ONLY choices
|
383
|
-
ADD CONSTRAINT fk_elt_id FOREIGN KEY (elt_id) REFERENCES elts(id) ON UPDATE CASCADE;
|
384
|
-
|
385
|
-
|
386
392
|
--
|
387
393
|
-- Name: fk_elt_id; Type: FK CONSTRAINT; Schema: public; Owner: manu
|
388
394
|
--
|
@@ -399,20 +405,12 @@ ALTER TABLE ONLY elts
|
|
399
405
|
ADD CONSTRAINT fk_elt_id FOREIGN KEY (parent_id) REFERENCES elts(id) ON UPDATE CASCADE;
|
400
406
|
|
401
407
|
|
402
|
-
--
|
403
|
-
-- Name: fk_elt_id; Type: FK CONSTRAINT; Schema: public; Owner: manu
|
404
|
-
--
|
405
|
-
|
406
|
-
ALTER TABLE ONLY mails
|
407
|
-
ADD CONSTRAINT fk_elt_id FOREIGN KEY (elt_id) REFERENCES elts(id) ON UPDATE CASCADE;
|
408
|
-
|
409
|
-
|
410
408
|
--
|
411
409
|
-- Name: fk_person_id; Type: FK CONSTRAINT; Schema: public; Owner: manu
|
412
410
|
--
|
413
411
|
|
414
|
-
ALTER TABLE ONLY
|
415
|
-
ADD CONSTRAINT fk_person_id FOREIGN KEY (
|
412
|
+
ALTER TABLE ONLY choices
|
413
|
+
ADD CONSTRAINT fk_person_id FOREIGN KEY (person_id) REFERENCES people(id) ON UPDATE CASCADE;
|
416
414
|
|
417
415
|
|
418
416
|
--
|
@@ -427,8 +425,8 @@ ALTER TABLE ONLY elts
|
|
427
425
|
-- Name: fk_person_id; Type: FK CONSTRAINT; Schema: public; Owner: manu
|
428
426
|
--
|
429
427
|
|
430
|
-
ALTER TABLE ONLY
|
431
|
-
ADD CONSTRAINT fk_person_id FOREIGN KEY (
|
428
|
+
ALTER TABLE ONLY users
|
429
|
+
ADD CONSTRAINT fk_person_id FOREIGN KEY ("login") REFERENCES people(name) ON UPDATE CASCADE;
|
432
430
|
|
433
431
|
|
434
432
|
--
|
@@ -0,0 +1,81 @@
|
|
1
|
+
/*
|
2
|
+
|
3
|
+
This CSS file is basically the scaffold.css file, and is only
|
4
|
+
included here to demonstrate using CSS files with Engines.
|
5
|
+
|
6
|
+
*/
|
7
|
+
|
8
|
+
body { background-color: #fff; color: #333; }
|
9
|
+
|
10
|
+
body, p, ol, ul, td {
|
11
|
+
font-family: verdana, arial, helvetica, sans-serif;
|
12
|
+
font-size: 13px;
|
13
|
+
line-height: 18px;
|
14
|
+
}
|
15
|
+
|
16
|
+
pre {
|
17
|
+
background-color: #eee;
|
18
|
+
padding: 10px;
|
19
|
+
font-size: 11px;
|
20
|
+
}
|
21
|
+
|
22
|
+
a { color: #000; }
|
23
|
+
a:visited { color: #666; }
|
24
|
+
a:hover { color: #fff; background-color:#000; }
|
25
|
+
|
26
|
+
.fieldWithErrors {
|
27
|
+
padding: 2px;
|
28
|
+
background-color: red;
|
29
|
+
display: table;
|
30
|
+
}
|
31
|
+
|
32
|
+
#ErrorExplanation {
|
33
|
+
width: 400px;
|
34
|
+
border: 2px solid red;
|
35
|
+
padding: 7px;
|
36
|
+
padding-bottom: 12px;
|
37
|
+
margin-bottom: 20px;
|
38
|
+
background-color: #f0f0f0;
|
39
|
+
}
|
40
|
+
|
41
|
+
#ErrorExplanation h2 {
|
42
|
+
text-align: left;
|
43
|
+
font-weight: bold;
|
44
|
+
padding: 5px 5px 5px 15px;
|
45
|
+
font-size: 12px;
|
46
|
+
margin: -7px;
|
47
|
+
background-color: #c00;
|
48
|
+
color: #fff;
|
49
|
+
}
|
50
|
+
|
51
|
+
#ErrorExplanation p {
|
52
|
+
color: #333;
|
53
|
+
margin-bottom: 0;
|
54
|
+
padding: 5px;
|
55
|
+
}
|
56
|
+
|
57
|
+
#ErrorExplanation ul li {
|
58
|
+
font-size: 12px;
|
59
|
+
list-style: square;
|
60
|
+
}
|
61
|
+
|
62
|
+
div.uploadStatus {
|
63
|
+
margin: 5px;
|
64
|
+
}
|
65
|
+
|
66
|
+
div.progressBar {
|
67
|
+
margin: 5px;
|
68
|
+
}
|
69
|
+
|
70
|
+
div.progressBar div.border {
|
71
|
+
background-color: #fff;
|
72
|
+
border: 1px solid grey;
|
73
|
+
width: 100%;
|
74
|
+
}
|
75
|
+
|
76
|
+
div.progressBar div.background {
|
77
|
+
background-color: #333;
|
78
|
+
height: 18px;
|
79
|
+
width: 0%;
|
80
|
+
}
|
81
|
+
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,79 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) --><svg height="1052.3622047" id="svg2" inkscape:version="0.40+cvs" sodipodi:docbase="C:\Documents and Settings\Lumen 2\Desktop" sodipodi:docname="svg_bottons.svg" sodipodi:version="0.32" width="744.09448819" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
3
|
+
<metadata>
|
4
|
+
<rdf:RDF xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
5
|
+
<cc:Work rdf:about="">
|
6
|
+
<dc:title>SVG buttons</dc:title>
|
7
|
+
<dc:description>Add / remove buttons</dc:description>
|
8
|
+
<dc:subject>
|
9
|
+
<rdf:Bag>
|
10
|
+
<rdf:li>icon</rdf:li>
|
11
|
+
<rdf:li>remove</rdf:li>
|
12
|
+
<rdf:li>add</rdf:li>
|
13
|
+
<rdf:li>navigation</rdf:li>
|
14
|
+
<rdf:li>green</rdf:li>
|
15
|
+
<rdf:li>red</rdf:li>
|
16
|
+
<rdf:li>computer</rdf:li>
|
17
|
+
<rdf:li>button</rdf:li>
|
18
|
+
<rdf:li>www.lumenstudio.net</rdf:li>
|
19
|
+
</rdf:Bag>
|
20
|
+
</dc:subject>
|
21
|
+
<dc:publisher>
|
22
|
+
<cc:Agent rdf:about="http://www.openclipart.org">
|
23
|
+
<dc:title>Open Clip Art Library</dc:title>
|
24
|
+
</cc:Agent>
|
25
|
+
</dc:publisher>
|
26
|
+
<dc:creator>
|
27
|
+
<cc:Agent>
|
28
|
+
<dc:title>Lumen Design Studio</dc:title>
|
29
|
+
</cc:Agent>
|
30
|
+
</dc:creator>
|
31
|
+
<dc:rights>
|
32
|
+
<cc:Agent>
|
33
|
+
<dc:title>Lumen Design Studio</dc:title>
|
34
|
+
</cc:Agent>
|
35
|
+
</dc:rights>
|
36
|
+
<dc:date></dc:date>
|
37
|
+
<dc:format>image/svg+xml</dc:format>
|
38
|
+
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
39
|
+
<cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/>
|
40
|
+
<dc:language>en</dc:language>
|
41
|
+
</cc:Work>
|
42
|
+
<cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
|
43
|
+
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
|
44
|
+
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
|
45
|
+
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
|
46
|
+
</cc:License>
|
47
|
+
</rdf:RDF>
|
48
|
+
</metadata>
|
49
|
+
<defs id="defs3">
|
50
|
+
<marker id="Arrow2Lend" inkscape:stockid="Arrow2Lend" orient="auto" refX="0.0" refY="0.0" style="overflow:visible;">
|
51
|
+
<path d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " id="path2663" sodipodi:nodetypes="cccc" style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;" transform="scale(1.1) rotate(180) translate(-5,0)"/>
|
52
|
+
</marker>
|
53
|
+
<marker id="Arrow1Lstart" inkscape:stockid="Arrow1Lstart" orient="auto" refX="0.0" refY="0.0" style="overflow:visible">
|
54
|
+
<path d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " id="path2671" sodipodi:nodetypes="ccccc" style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none" transform="scale(0.8)"/>
|
55
|
+
</marker>
|
56
|
+
<linearGradient id="linearGradient2209" inkscape:collect="always">
|
57
|
+
<stop id="stop2211" offset="0" style="stop-color:#ffe900;stop-opacity:1;"/>
|
58
|
+
<stop id="stop2213" offset="1" style="stop-color:#ffe900;stop-opacity:0;"/>
|
59
|
+
</linearGradient>
|
60
|
+
<linearGradient gradientTransform="matrix(0.603819,0.000000,0.000000,0.619709,150.0752,-14.30925)" gradientUnits="userSpaceOnUse" id="linearGradient2520" inkscape:collect="always" x1="264.58200" x2="380.68460" xlink:href="#linearGradient2209" y1="296.37491" y2="553.74487"/>
|
61
|
+
<linearGradient gradientTransform="matrix(-0.583245,0.156280,-0.160393,-0.598593,682.4170,557.5316)" gradientUnits="userSpaceOnUse" id="linearGradient2546" inkscape:collect="always" x1="249.48328" x2="272.02597" xlink:href="#linearGradient2209" y1="262.87494" y2="427.54285"/>
|
62
|
+
<linearGradient gradientTransform="matrix(-0.583245,0.156280,-0.160393,-0.598593,681.2397,988.4160)" gradientUnits="userSpaceOnUse" id="linearGradient3069" inkscape:collect="always" x1="249.48328" x2="272.02597" xlink:href="#linearGradient2209" y1="262.87494" y2="427.54285"/>
|
63
|
+
<linearGradient gradientTransform="matrix(0.603819,0.000000,0.000000,0.619709,148.8979,416.5751)" gradientUnits="userSpaceOnUse" id="linearGradient3073" inkscape:collect="always" x1="264.58200" x2="380.68460" xlink:href="#linearGradient2209" y1="296.37491" y2="553.74487"/>
|
64
|
+
</defs>
|
65
|
+
<sodipodi:namedview bordercolor="#666666" borderopacity="1.0" id="base" inkscape:current-layer="layer1" inkscape:cx="318.16008" inkscape:cy="629.17851" inkscape:document-units="px" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:window-height="773" inkscape:window-width="862" inkscape:window-x="353" inkscape:window-y="68" inkscape:zoom="1.1211998" pagecolor="#ffffff"/>
|
66
|
+
<g id="layer1" inkscape:groupmode="layer" inkscape:label="Layer 1">
|
67
|
+
<path d="M 634.28571 559.50507 A 250.00000 250.00000 0 1 1 134.28571,559.50507 A 250.00000 250.00000 0 1 1 634.28571 559.50507 z" id="path2174" sodipodi:cx="384.28571" sodipodi:cy="559.50507" sodipodi:rx="250.00000" sodipodi:ry="250.00000" sodipodi:type="arc" style="stroke-opacity:1.0000000;stroke-dashoffset:0.00000000;stroke-dasharray:none;stroke-miterlimit:4.0000000;marker-end:none;marker-mid:none;marker-start:none;stroke-linejoin:miter;stroke-linecap:butt;stroke-width:19.959450;stroke:#5f8e00;fill-rule:evenodd;fill-opacity:1.0000000;fill:#7bb500;opacity:1.0000000" transform="matrix(0.593356,0.000000,0.000000,0.593356,150.2064,-24.71398)"/>
|
68
|
+
<path d="M 414.28624,439.23147 C 451.11531,429.36316 480.36448,405.08710 497.87438,373.82859 C 526.31357,306.50342 420.20678,464.12877 332.56619,435.49317 C 358.04372,444.83685 386.34671,446.71785 414.28624,439.23147 z " id="path2540" sodipodi:nodetypes="cccc" style="opacity:1.0000000;fill:url(#linearGradient2546);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.00000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
|
69
|
+
<path d="M 378.45096,169.35690 C 302.19445,169.35690 240.30843,232.87140 240.30843,311.13455 C 240.30843,321.71906 241.48301,332.02120 243.62944,341.94567 C 319.43747,196.01915 401.11478,287.87581 506.42289,257.74280 C 485.85794,205.92595 436.30123,169.35690 378.45096,169.35690 z " id="path2197" sodipodi:nodetypes="ccccc" style="opacity:1.0000000;fill:url(#linearGradient2520);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.00000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
|
70
|
+
<path d="M 354.34126,390.99535 L 354.34126,331.71260 L 294.50092,331.71260 L 294.50092,282.83079 L 354.34126,282.83079 L 354.34126,223.54803 L 401.92203,223.54803 L 401.92203,282.83079 L 461.94824,282.83079 L 461.94824,331.71260 L 401.92203,331.71260 L 401.92203,390.99535 L 354.34126,390.99535" id="text2705" sodipodi:nodetypes="ccccccccccccc" style="font-size:660.22443;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;opacity:0.73529410;fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Arial"/>
|
71
|
+
<path d="M 358.31472,386.67870 L 358.31472,327.64637 L 298.81756,327.64637 L 298.81756,286.89701 L 358.31472,286.89701 L 358.31472,227.86468 L 397.97949,227.86468 L 397.97949,286.89701 L 457.63159,286.89701 L 457.63159,327.64637 L 397.97949,327.64637 L 397.97949,386.67870 L 358.31472,386.67870" id="text2713" style="font-size:550.38306;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;opacity:1.0000000;fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Arial"/>
|
72
|
+
<path d="M 634.28571 559.50507 A 250.00000 250.00000 0 1 1 134.28571,559.50507 A 250.00000 250.00000 0 1 1 634.28571 559.50507 z" id="path3059" sodipodi:cx="384.28571" sodipodi:cy="559.50507" sodipodi:rx="250.00000" sodipodi:ry="250.00000" sodipodi:type="arc" style="opacity:1.0000000;fill:#ff0000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#cb0000;stroke-width:19.959450;stroke-linecap:butt;stroke-linejoin:miter;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000" transform="matrix(0.593356,0.000000,0.000000,0.593356,149.0291,406.1704)"/>
|
73
|
+
<path d="M 413.10891,870.11586 C 449.93798,860.24755 479.18715,835.97149 496.69705,804.71298 C 525.13624,737.38781 419.02945,895.01316 331.38886,866.37756 C 356.86639,875.72124 385.16938,877.60224 413.10891,870.11586 z " id="path3061" sodipodi:nodetypes="cccc" style="opacity:1.0000000;fill:url(#linearGradient3069);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.00000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
|
74
|
+
<path d="M 377.27363,600.24129 C 301.01712,600.24129 239.13110,663.75579 239.13110,742.01894 C 239.13110,752.60345 240.30568,762.90559 242.45211,772.83006 C 318.26014,626.90354 399.93745,718.76020 505.24556,688.62719 C 484.68061,636.81034 435.12390,600.24129 377.27363,600.24129 z " id="path3063" sodipodi:nodetypes="ccccc" style="opacity:1.0000000;fill:url(#linearGradient3073);fill-opacity:1.0000000;fill-rule:evenodd;stroke:none;stroke-width:0.00000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.00000000;stroke-opacity:1.0000000"/>
|
75
|
+
<path d="M 293.32359,762.59699 L 293.32359,713.71518 L 460.77091,713.71518 L 460.77091,762.59699" id="path3065" sodipodi:nodetypes="cccc" style="font-size:660.22443;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;opacity:0.73529410;fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Arial"/>
|
76
|
+
<path d="M 297.64023,758.53076 L 297.64023,717.78140 L 456.45426,717.78140 L 456.45426,758.53076" id="path3067" sodipodi:nodetypes="cccc" style="font-size:550.38306;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;opacity:1.0000000;fill:#ffffff;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Arial"/>
|
77
|
+
<path d="M 93.458578,1013.7491 L 97.648031,1013.7491 L 97.648031,1014.5792 L 94.444906,1014.5792 L 94.444906,1016.7276 L 97.335531,1016.7276 L 97.335531,1017.5577 L 94.444906,1017.5577 L 94.444906,1021.0391 L 93.458578,1021.0391 L 93.458578,1013.7491 M 101.62752,1016.4102 C 101.52661,1016.3516 101.41593,1016.3093 101.29549,1016.2833 C 101.17830,1016.2540 101.04809,1016.2393 100.90487,1016.2393 C 100.39705,1016.2393 100.00643,1016.4053 99.732992,1016.7374 C 99.462808,1017.0661 99.327717,1017.5398 99.327719,1018.1583 L 99.327719,1021.0391 L 98.424398,1021.0391 L 98.424398,1015.5704 L 99.327719,1015.5704 L 99.327719,1016.4200 C 99.516519,1016.0880 99.762287,1015.8422 100.06502,1015.6827 C 100.36776,1015.5199 100.73559,1015.4385 101.16854,1015.4385 C 101.23038,1015.4385 101.29874,1015.4434 101.37362,1015.4532 C 101.44848,1015.4597 101.53149,1015.4711 101.62264,1015.4874 L 101.62752,1016.4102 M 107.02303,1018.0801 L 107.02303,1018.5196 L 102.89217,1018.5196 C 102.93123,1019.1381 103.11678,1019.6101 103.44881,1019.9356 C 103.78410,1020.2579 104.24959,1020.4190 104.84530,1020.4190 C 105.19034,1020.4190 105.52400,1020.3767 105.84627,1020.2921 C 106.17179,1020.2074 106.49406,1020.0805 106.81307,1019.9112 L 106.81307,1020.7608 C 106.49080,1020.8975 106.16040,1021.0017 105.82186,1021.0733 C 105.48331,1021.1449 105.13989,1021.1807 104.79159,1021.1807 C 103.91919,1021.1807 103.22746,1020.9268 102.71639,1020.4190 C 102.20858,1019.9112 101.95467,1019.2243 101.95467,1018.3585 C 101.95467,1017.4633 102.19556,1016.7536 102.67733,1016.2296 C 103.16235,1015.7022 103.81502,1015.4385 104.63534,1015.4385 C 105.37101,1015.4385 105.95206,1015.6762 106.37850,1016.1514 C 106.80818,1016.6234 107.02303,1017.2663 107.02303,1018.0801 M 106.12459,1017.8165 C 106.11808,1017.3249 105.97973,1016.9327 105.70955,1016.6397 C 105.44262,1016.3467 105.08781,1016.2003 104.64510,1016.2003 C 104.14380,1016.2003 103.74178,1016.3419 103.43905,1016.6251 C 103.13957,1016.9083 102.96704,1017.3070 102.92147,1017.8214 L 106.12459,1017.8165 M 113.15584,1018.0801 L 113.15584,1018.5196 L 109.02498,1018.5196 C 109.06404,1019.1381 109.24959,1019.6101 109.58163,1019.9356 C 109.91691,1020.2579 110.38240,1020.4190 110.97811,1020.4190 C 111.32316,1020.4190 111.65682,1020.3767 111.97909,1020.2921 C 112.30460,1020.2074 112.62687,1020.0805 112.94588,1019.9112 L 112.94588,1020.7608 C 112.62361,1020.8975 112.29321,1021.0017 111.95467,1021.0733 C 111.61613,1021.1449 111.27270,1021.1807 110.92440,1021.1807 C 110.05200,1021.1807 109.36027,1020.9268 108.84920,1020.4190 C 108.34139,1019.9112 108.08748,1019.2243 108.08748,1018.3585 C 108.08748,1017.4633 108.32837,1016.7536 108.81014,1016.2296 C 109.29517,1015.7022 109.94783,1015.4385 110.76815,1015.4385 C 111.50382,1015.4385 112.08488,1015.6762 112.51131,1016.1514 C 112.94100,1016.6234 113.15584,1017.2663 113.15584,1018.0801 M 112.25741,1017.8165 C 112.25089,1017.3249 112.11255,1016.9327 111.84237,1016.6397 C 111.57544,1016.3467 111.22062,1016.2003 110.77791,1016.2003 C 110.27661,1016.2003 109.87459,1016.3419 109.57186,1016.6251 C 109.27238,1016.9083 109.09985,1017.3070 109.05428,1017.8214 L 112.25741,1017.8165 M 121.39315,1018.2413 C 121.39314,1017.5902 121.25805,1017.0857 120.98788,1016.7276 C 120.72094,1016.3695 120.34497,1016.1905 119.85995,1016.1905 C 119.37817,1016.1905 119.00220,1016.3695 118.73202,1016.7276 C 118.46509,1017.0857 118.33162,1017.5902 118.33163,1018.2413 C 118.33162,1018.8891 118.46509,1019.3920 118.73202,1019.7501 C 119.00220,1020.1081 119.37817,1020.2872 119.85995,1020.2872 C 120.34497,1020.2872 120.72094,1020.1081 120.98788,1019.7501 C 121.25805,1019.3920 121.39314,1018.8891 121.39315,1018.2413 M 122.29159,1020.3604 C 122.29158,1021.2914 122.08488,1021.9831 121.67147,1022.4356 C 121.25805,1022.8913 120.62492,1023.1192 119.77205,1023.1192 C 119.45630,1023.1192 119.15845,1023.0948 118.87850,1023.0460 C 118.59855,1023.0004 118.32674,1022.9288 118.06307,1022.8311 L 118.06307,1021.9571 C 118.32674,1022.1003 118.58716,1022.2061 118.84432,1022.2745 C 119.10148,1022.3428 119.36352,1022.3770 119.63045,1022.3770 C 120.21964,1022.3770 120.66072,1022.2224 120.95370,1021.9131 C 121.24666,1021.6072 121.39314,1021.1433 121.39315,1020.5215 L 121.39315,1020.0772 C 121.20760,1020.3995 120.96997,1020.6404 120.68026,1020.7999 C 120.39054,1020.9594 120.04386,1021.0391 119.64022,1021.0391 C 118.96964,1021.0391 118.42928,1020.7836 118.01913,1020.2725 C 117.60897,1019.7615 117.40389,1019.0844 117.40389,1018.2413 C 117.40389,1017.3949 117.60897,1016.7162 118.01913,1016.2051 C 118.42928,1015.6941 118.96964,1015.4385 119.64022,1015.4385 C 120.04386,1015.4385 120.39054,1015.5183 120.68026,1015.6778 C 120.96997,1015.8373 121.20760,1016.0782 121.39315,1016.4005 L 121.39315,1015.5704 L 122.29159,1015.5704 L 122.29159,1020.3604 M 127.31112,1016.4102 C 127.21020,1016.3516 127.09953,1016.3093 126.97909,1016.2833 C 126.86190,1016.2540 126.73169,1016.2393 126.58846,1016.2393 C 126.08065,1016.2393 125.69002,1016.4053 125.41659,1016.7374 C 125.14640,1017.0661 125.01131,1017.5398 125.01131,1018.1583 L 125.01131,1021.0391 L 124.10799,1021.0391 L 124.10799,1015.5704 L 125.01131,1015.5704 L 125.01131,1016.4200 C 125.20011,1016.0880 125.44588,1015.8422 125.74862,1015.6827 C 126.05135,1015.5199 126.41919,1015.4385 126.85213,1015.4385 C 126.91398,1015.4385 126.98234,1015.4434 127.05721,1015.4532 C 127.13208,1015.4597 127.21509,1015.4711 127.30623,1015.4874 L 127.31112,1016.4102 M 130.72909,1018.2901 C 130.00317,1018.2901 129.50024,1018.3731 129.22030,1018.5391 C 128.94035,1018.7051 128.80037,1018.9883 128.80038,1019.3887 C 128.80037,1019.7077 128.90454,1019.9617 129.11288,1020.1505 C 129.32446,1020.3360 129.61092,1020.4288 129.97225,1020.4288 C 130.47029,1020.4288 130.86906,1020.2530 131.16854,1019.9014 C 131.47127,1019.5466 131.62264,1019.0762 131.62264,1018.4903 L 131.62264,1018.2901 L 130.72909,1018.2901 M 132.52108,1017.9190 L 132.52108,1021.0391 L 131.62264,1021.0391 L 131.62264,1020.2090 C 131.41756,1020.5411 131.16203,1020.7868 130.85604,1020.9464 C 130.55005,1021.1026 130.17570,1021.1807 129.73299,1021.1807 C 129.17309,1021.1807 128.72713,1021.0245 128.39510,1020.7120 C 128.06633,1020.3962 127.90194,1019.9747 127.90194,1019.4473 C 127.90194,1018.8321 128.10702,1018.3682 128.51717,1018.0557 C 128.93058,1017.7432 129.54582,1017.5870 130.36288,1017.5870 L 131.62264,1017.5870 L 131.62264,1017.4991 C 131.62264,1017.0857 131.48592,1016.7667 131.21248,1016.5421 C 130.94230,1016.3142 130.56144,1016.2003 130.06991,1016.2003 C 129.75740,1016.2003 129.45304,1016.2377 129.15682,1016.3126 C 128.86060,1016.3874 128.57576,1016.4997 128.30233,1016.6495 L 128.30233,1015.8194 C 128.63110,1015.6924 128.95011,1015.5980 129.25936,1015.5362 C 129.56860,1015.4711 129.86971,1015.4385 130.16268,1015.4385 C 130.95369,1015.4385 131.54451,1015.6436 131.93514,1016.0538 C 132.32576,1016.4639 132.52107,1017.0857 132.52108,1017.9190 M 135.26522,1020.2188 L 135.26522,1023.1192 L 134.36190,1023.1192 L 134.36190,1015.5704 L 135.26522,1015.5704 L 135.26522,1016.4005 C 135.45402,1016.0749 135.69165,1015.8341 135.97811,1015.6778 C 136.26782,1015.5183 136.61287,1015.4385 137.01327,1015.4385 C 137.67732,1015.4385 138.21606,1015.7022 138.62948,1016.2296 C 139.04614,1016.7569 139.25447,1017.4503 139.25448,1018.3096 C 139.25447,1019.1690 139.04614,1019.8624 138.62948,1020.3897 C 138.21606,1020.9171 137.67732,1021.1807 137.01327,1021.1807 C 136.61287,1021.1807 136.26782,1021.1026 135.97811,1020.9464 C 135.69165,1020.7868 135.45402,1020.5443 135.26522,1020.2188 M 138.32186,1018.3096 C 138.32185,1017.6488 138.18514,1017.1312 137.91170,1016.7569 C 137.64152,1016.3793 137.26880,1016.1905 136.79354,1016.1905 C 136.31828,1016.1905 135.94393,1016.3793 135.67049,1016.7569 C 135.40031,1017.1312 135.26522,1017.6488 135.26522,1018.3096 C 135.26522,1018.9704 135.40031,1019.4896 135.67049,1019.8672 C 135.94393,1020.2416 136.31828,1020.4288 136.79354,1020.4288 C 137.26880,1020.4288 137.64152,1020.2416 137.91170,1019.8672 C 138.18514,1019.4896 138.32185,1018.9704 138.32186,1018.3096 M 145.28963,1017.7383 L 145.28963,1021.0391 L 144.39120,1021.0391 L 144.39120,1017.7676 C 144.39119,1017.2501 144.29028,1016.8627 144.08846,1016.6055 C 143.88663,1016.3484 143.58390,1016.2198 143.18026,1016.2198 C 142.69523,1016.2198 142.31274,1016.3744 142.03280,1016.6837 C 141.75285,1016.9929 141.61287,1017.4145 141.61288,1017.9483 L 141.61288,1021.0391 L 140.70955,1021.0391 L 140.70955,1013.4415 L 141.61288,1013.4415 L 141.61288,1016.4200 C 141.82772,1016.0912 142.08000,1015.8454 142.36971,1015.6827 C 142.66268,1015.5199 142.99959,1015.4385 143.38045,1015.4385 C 144.00870,1015.4385 144.48396,1015.6339 144.80623,1016.0245 C 145.12850,1016.4118 145.28963,1016.9831 145.28963,1017.7383 M 147.09139,1015.5704 L 147.98983,1015.5704 L 147.98983,1021.0391 L 147.09139,1021.0391 L 147.09139,1015.5704 M 147.09139,1013.4415 L 147.98983,1013.4415 L 147.98983,1014.5792 L 147.09139,1014.5792 L 147.09139,1013.4415 M 153.80038,1015.7803 L 153.80038,1016.6202 C 153.54646,1016.4802 153.29093,1016.3760 153.03377,1016.3077 C 152.77986,1016.2361 152.52270,1016.2003 152.26229,1016.2003 C 151.67960,1016.2003 151.22713,1016.3858 150.90487,1016.7569 C 150.58260,1017.1247 150.42147,1017.6423 150.42147,1018.3096 C 150.42147,1018.9770 150.58260,1019.4962 150.90487,1019.8672 C 151.22713,1020.2351 151.67960,1020.4190 152.26229,1020.4190 C 152.52270,1020.4190 152.77986,1020.3848 153.03377,1020.3165 C 153.29093,1020.2449 153.54646,1020.1391 153.80038,1019.9991 L 153.80038,1020.8292 C 153.54972,1020.9464 153.28930,1021.0342 153.01913,1021.0928 C 152.75219,1021.1514 152.46736,1021.1807 152.16463,1021.1807 C 151.34106,1021.1807 150.68677,1020.9219 150.20174,1020.4044 C 149.71671,1019.8868 149.47420,1019.1885 149.47420,1018.3096 C 149.47420,1017.4177 149.71834,1016.7162 150.20663,1016.2051 C 150.69816,1015.6941 151.37036,1015.4385 152.22323,1015.4385 C 152.49992,1015.4385 152.77010,1015.4678 153.03377,1015.5264 C 153.29744,1015.5818 153.55298,1015.6664 153.80038,1015.7803 M 158.85897,1015.7315 L 158.85897,1016.5811 C 158.60506,1016.4509 158.34139,1016.3533 158.06795,1016.2881 C 157.79451,1016.2230 157.51131,1016.1905 157.21834,1016.1905 C 156.77238,1016.1905 156.43709,1016.2589 156.21248,1016.3956 C 155.99113,1016.5323 155.88045,1016.7374 155.88045,1017.0108 C 155.88045,1017.2191 155.96020,1017.3835 156.11971,1017.5040 C 156.27921,1017.6212 156.59985,1017.7335 157.08163,1017.8409 L 157.38924,1017.9092 C 158.02726,1018.0460 158.47973,1018.2396 158.74666,1018.4903 C 159.01684,1018.7377 159.15193,1019.0844 159.15194,1019.5303 C 159.15193,1020.0381 158.95011,1020.4402 158.54647,1020.7364 C 158.14607,1021.0326 157.59432,1021.1807 156.89120,1021.1807 C 156.59822,1021.1807 156.29224,1021.1514 155.97323,1021.0928 C 155.65747,1021.0375 155.32381,1020.9529 154.97225,1020.8389 L 154.97225,1019.9112 C 155.30428,1020.0837 155.63143,1020.2139 155.95370,1020.3018 C 156.27596,1020.3865 156.59497,1020.4288 156.91073,1020.4288 C 157.33390,1020.4288 157.65942,1020.3572 157.88729,1020.2139 C 158.11515,1020.0674 158.22908,1019.8624 158.22909,1019.5987 C 158.22908,1019.3546 158.14607,1019.1674 157.98006,1019.0372 C 157.81730,1018.9070 157.45760,1018.7816 156.90096,1018.6612 L 156.58846,1018.5880 C 156.03182,1018.4708 155.62980,1018.2917 155.38241,1018.0508 C 155.13501,1017.8067 155.01131,1017.4730 155.01131,1017.0499 C 155.01131,1016.5355 155.19360,1016.1384 155.55819,1015.8585 C 155.92277,1015.5785 156.44035,1015.4385 157.11092,1015.4385 C 157.44295,1015.4385 157.75545,1015.4630 158.04842,1015.5118 C 158.34139,1015.5606 158.61157,1015.6339 158.85897,1015.7315 M 167.67733,1018.3096 C 167.67732,1017.6488 167.54061,1017.1312 167.26717,1016.7569 C 166.99699,1016.3793 166.62426,1016.1905 166.14901,1016.1905 C 165.67375,1016.1905 165.29940,1016.3793 165.02596,1016.7569 C 164.75578,1017.1312 164.62069,1017.6488 164.62069,1018.3096 C 164.62069,1018.9704 164.75578,1019.4896 165.02596,1019.8672 C 165.29940,1020.2416 165.67375,1020.4288 166.14901,1020.4288 C 166.62426,1020.4288 166.99699,1020.2416 167.26717,1019.8672 C 167.54061,1019.4896 167.67732,1018.9704 167.67733,1018.3096 M 164.62069,1016.4005 C 164.80949,1016.0749 165.04712,1015.8341 165.33358,1015.6778 C 165.62329,1015.5183 165.96834,1015.4385 166.36873,1015.4385 C 167.03279,1015.4385 167.57153,1015.7022 167.98495,1016.2296 C 168.40161,1016.7569 168.60994,1017.4503 168.60995,1018.3096 C 168.60994,1019.1690 168.40161,1019.8624 167.98495,1020.3897 C 167.57153,1020.9171 167.03279,1021.1807 166.36873,1021.1807 C 165.96834,1021.1807 165.62329,1021.1026 165.33358,1020.9464 C 165.04712,1020.7868 164.80949,1020.5443 164.62069,1020.2188 L 164.62069,1021.0391 L 163.71737,1021.0391 L 163.71737,1013.4415 L 164.62069,1013.4415 L 164.62069,1016.4005 M 172.37459,1021.5469 C 172.12068,1022.1980 171.87329,1022.6228 171.63241,1022.8214 C 171.39152,1023.0199 171.06925,1023.1192 170.66561,1023.1192 L 169.94784,1023.1192 L 169.94784,1022.3672 L 170.47518,1022.3672 C 170.72257,1022.3672 170.91463,1022.3087 171.05135,1022.1915 C 171.18807,1022.0743 171.33943,1021.7976 171.50545,1021.3614 L 171.66659,1020.9512 L 169.45467,1015.5704 L 170.40682,1015.5704 L 172.11580,1019.8477 L 173.82479,1015.5704 L 174.77694,1015.5704 L 172.37459,1021.5469 M 93.458578,1023.7491 L 94.444906,1023.7491 L 94.444906,1030.2090 L 97.994711,1030.2090 L 97.994711,1031.0391 L 93.458578,1031.0391 L 93.458578,1023.7491 M 98.736898,1028.8809 L 98.736898,1025.5704 L 99.635336,1025.5704 L 99.635336,1028.8467 C 99.635334,1029.3643 99.736246,1029.7533 99.938070,1030.0137 C 100.13989,1030.2709 100.44263,1030.3995 100.84627,1030.3995 C 101.33130,1030.3995 101.71378,1030.2449 101.99373,1029.9356 C 102.27693,1029.6264 102.41854,1029.2048 102.41854,1028.6710 L 102.41854,1025.5704 L 103.31698,1025.5704 L 103.31698,1031.0391 L 102.41854,1031.0391 L 102.41854,1030.1993 C 102.20044,1030.5313 101.94653,1030.7787 101.65682,1030.9415 C 101.37036,1031.1010 101.03670,1031.1807 100.65584,1031.1807 C 100.02759,1031.1807 99.550699,1030.9854 99.225180,1030.5948 C 98.899658,1030.2042 98.736898,1029.6329 98.736898,1028.8809 M 109.43514,1026.6202 C 109.65975,1026.2165 109.92830,1025.9187 110.24080,1025.7266 C 110.55330,1025.5346 110.92114,1025.4385 111.34432,1025.4385 C 111.91397,1025.4385 112.35343,1025.6387 112.66268,1026.0391 C 112.97192,1026.4363 113.12654,1027.0027 113.12655,1027.7383 L 113.12655,1031.0391 L 112.22323,1031.0391 L 112.22323,1027.7676 C 112.22322,1027.2436 112.13044,1026.8546 111.94491,1026.6006 C 111.75935,1026.3467 111.47615,1026.2198 111.09530,1026.2198 C 110.62980,1026.2198 110.26196,1026.3744 109.99178,1026.6837 C 109.72159,1026.9929 109.58650,1027.4145 109.58651,1027.9483 L 109.58651,1031.0391 L 108.68319,1031.0391 L 108.68319,1027.7676 C 108.68318,1027.2403 108.59041,1026.8513 108.40487,1026.6006 C 108.21932,1026.3467 107.93286,1026.2198 107.54549,1026.2198 C 107.08651,1026.2198 106.72192,1026.3760 106.45174,1026.6885 C 106.18156,1026.9978 106.04647,1027.4177 106.04647,1027.9483 L 106.04647,1031.0391 L 105.14315,1031.0391 L 105.14315,1025.5704 L 106.04647,1025.5704 L 106.04647,1026.4200 C 106.25154,1026.0847 106.49731,1025.8373 106.78377,1025.6778 C 107.07023,1025.5183 107.41040,1025.4385 107.80428,1025.4385 C 108.20141,1025.4385 108.53833,1025.5395 108.81502,1025.7413 C 109.09497,1025.9431 109.30167,1026.2361 109.43514,1026.6202 M 119.58163,1028.0801 L 119.58163,1028.5196 L 115.45077,1028.5196 C 115.48983,1029.1381 115.67537,1029.6101 116.00741,1029.9356 C 116.34269,1030.2579 116.80818,1030.4190 117.40389,1030.4190 C 117.74894,1030.4190 118.08260,1030.3767 118.40487,1030.2921 C 118.73038,1030.2074 119.05265,1030.0805 119.37166,1029.9112 L 119.37166,1030.7608 C 119.04939,1030.8975 118.71899,1031.0017 118.38045,1031.0733 C 118.04191,1031.1449 117.69848,1031.1807 117.35018,1031.1807 C 116.47778,1031.1807 115.78605,1030.9268 115.27498,1030.4190 C 114.76717,1029.9112 114.51327,1029.2243 114.51327,1028.3585 C 114.51327,1027.4633 114.75415,1026.7536 115.23592,1026.2296 C 115.72095,1025.7022 116.37362,1025.4385 117.19393,1025.4385 C 117.92960,1025.4385 118.51066,1025.6762 118.93709,1026.1514 C 119.36678,1026.6234 119.58162,1027.2663 119.58163,1028.0801 M 118.68319,1027.8165 C 118.67667,1027.3249 118.53833,1026.9327 118.26815,1026.6397 C 118.00122,1026.3467 117.64640,1026.2003 117.20370,1026.2003 C 116.70239,1026.2003 116.30037,1026.3419 115.99764,1026.6251 C 115.69816,1026.9083 115.52563,1027.3070 115.48006,1027.8214 L 118.68319,1027.8165 M 125.58260,1027.7383 L 125.58260,1031.0391 L 124.68416,1031.0391 L 124.68416,1027.7676 C 124.68416,1027.2501 124.58325,1026.8627 124.38143,1026.6055 C 124.17960,1026.3484 123.87687,1026.2198 123.47323,1026.2198 C 122.98820,1026.2198 122.60571,1026.3744 122.32577,1026.6837 C 122.04582,1026.9929 121.90584,1027.4145 121.90584,1027.9483 L 121.90584,1031.0391 L 121.00252,1031.0391 L 121.00252,1025.5704 L 121.90584,1025.5704 L 121.90584,1026.4200 C 122.12068,1026.0912 122.37296,1025.8454 122.66268,1025.6827 C 122.95565,1025.5199 123.29256,1025.4385 123.67342,1025.4385 C 124.30167,1025.4385 124.77693,1025.6339 125.09920,1026.0245 C 125.42146,1026.4118 125.58260,1026.9831 125.58260,1027.7383 M 131.59334,1024.5596 L 131.59334,1030.2286 L 132.78475,1030.2286 C 133.79061,1030.2286 134.52628,1030.0007 134.99178,1029.5450 C 135.46053,1029.0893 135.69490,1028.3699 135.69491,1027.3868 C 135.69490,1026.4102 135.46053,1025.6957 134.99178,1025.2432 C 134.52628,1024.7875 133.79061,1024.5596 132.78475,1024.5596 L 131.59334,1024.5596 M 130.60702,1023.7491 L 132.63338,1023.7491 C 134.04614,1023.7491 135.08292,1024.0437 135.74373,1024.6329 C 136.40454,1025.2188 136.73494,1026.1368 136.73495,1027.3868 C 136.73494,1028.6433 136.40291,1029.5661 135.73885,1030.1553 C 135.07478,1030.7445 134.03963,1031.0391 132.63338,1031.0391 L 130.60702,1031.0391 L 130.60702,1023.7491 M 142.94100,1028.0801 L 142.94100,1028.5196 L 138.81014,1028.5196 C 138.84920,1029.1381 139.03475,1029.6101 139.36678,1029.9356 C 139.70207,1030.2579 140.16756,1030.4190 140.76327,1030.4190 C 141.10831,1030.4190 141.44197,1030.3767 141.76424,1030.2921 C 142.08976,1030.2074 142.41202,1030.0805 142.73104,1029.9112 L 142.73104,1030.7608 C 142.40877,1030.8975 142.07837,1031.0017 141.73983,1031.0733 C 141.40128,1031.1449 141.05786,1031.1807 140.70955,1031.1807 C 139.83716,1031.1807 139.14543,1030.9268 138.63436,1030.4190 C 138.12655,1029.9112 137.87264,1029.2243 137.87264,1028.3585 C 137.87264,1027.4633 138.11353,1026.7536 138.59530,1026.2296 C 139.08032,1025.7022 139.73299,1025.4385 140.55330,1025.4385 C 141.28898,1025.4385 141.87003,1025.6762 142.29647,1026.1514 C 142.72615,1026.6234 142.94099,1027.2663 142.94100,1028.0801 M 142.04256,1027.8165 C 142.03605,1027.3249 141.89770,1026.9327 141.62752,1026.6397 C 141.36059,1026.3467 141.00578,1026.2003 140.56307,1026.2003 C 140.06176,1026.2003 139.65975,1026.3419 139.35702,1026.6251 C 139.05754,1026.9083 138.88501,1027.3070 138.83944,1027.8214 L 142.04256,1027.8165 M 147.88241,1025.7315 L 147.88241,1026.5811 C 147.62850,1026.4509 147.36482,1026.3533 147.09139,1026.2881 C 146.81795,1026.2230 146.53475,1026.1905 146.24178,1026.1905 C 145.79582,1026.1905 145.46053,1026.2589 145.23592,1026.3956 C 145.01457,1026.5323 144.90389,1026.7374 144.90389,1027.0108 C 144.90389,1027.2191 144.98364,1027.3835 145.14315,1027.5040 C 145.30265,1027.6212 145.62329,1027.7335 146.10506,1027.8409 L 146.41268,1027.9092 C 147.05070,1028.0460 147.50317,1028.2396 147.77010,1028.4903 C 148.04028,1028.7377 148.17537,1029.0844 148.17538,1029.5303 C 148.17537,1030.0381 147.97355,1030.4402 147.56991,1030.7364 C 147.16951,1031.0326 146.61776,1031.1807 145.91463,1031.1807 C 145.62166,1031.1807 145.31567,1031.1514 144.99666,1031.0928 C 144.68091,1031.0375 144.34725,1030.9529 143.99569,1030.8389 L 143.99569,1029.9112 C 144.32772,1030.0837 144.65487,1030.2139 144.97713,1030.3018 C 145.29940,1030.3865 145.61841,1030.4288 145.93416,1030.4288 C 146.35734,1030.4288 146.68286,1030.3572 146.91073,1030.2139 C 147.13859,1030.0674 147.25252,1029.8624 147.25252,1029.5987 C 147.25252,1029.3546 147.16951,1029.1674 147.00350,1029.0372 C 146.84074,1028.9070 146.48104,1028.7816 145.92440,1028.6612 L 145.61190,1028.5880 C 145.05526,1028.4708 144.65324,1028.2917 144.40584,1028.0508 C 144.15845,1027.8067 144.03475,1027.4730 144.03475,1027.0499 C 144.03475,1026.5355 144.21704,1026.1384 144.58163,1025.8585 C 144.94621,1025.5785 145.46378,1025.4385 146.13436,1025.4385 C 146.46639,1025.4385 146.77889,1025.4630 147.07186,1025.5118 C 147.36482,1025.5606 147.63501,1025.6339 147.88241,1025.7315 M 149.59139,1025.5704 L 150.48983,1025.5704 L 150.48983,1031.0391 L 149.59139,1031.0391 L 149.59139,1025.5704 M 149.59139,1023.4415 L 150.48983,1023.4415 L 150.48983,1024.5792 L 149.59139,1024.5792 L 149.59139,1023.4415 M 155.96346,1028.2413 C 155.96346,1027.5902 155.82837,1027.0857 155.55819,1026.7276 C 155.29126,1026.3695 154.91528,1026.1905 154.43026,1026.1905 C 153.94848,1026.1905 153.57251,1026.3695 153.30233,1026.7276 C 153.03540,1027.0857 152.90194,1027.5902 152.90194,1028.2413 C 152.90194,1028.8891 153.03540,1029.3920 153.30233,1029.7501 C 153.57251,1030.1081 153.94848,1030.2872 154.43026,1030.2872 C 154.91528,1030.2872 155.29126,1030.1081 155.55819,1029.7501 C 155.82837,1029.3920 155.96346,1028.8891 155.96346,1028.2413 M 156.86190,1030.3604 C 156.86189,1031.2914 156.65519,1031.9831 156.24178,1032.4356 C 155.82837,1032.8913 155.19523,1033.1192 154.34237,1033.1192 C 154.02661,1033.1192 153.72876,1033.0948 153.44881,1033.0460 C 153.16886,1033.0004 152.89705,1032.9288 152.63338,1032.8311 L 152.63338,1031.9571 C 152.89705,1032.1003 153.15747,1032.2061 153.41463,1032.2745 C 153.67179,1032.3428 153.93384,1032.3770 154.20077,1032.3770 C 154.78996,1032.3770 155.23104,1032.2224 155.52401,1031.9131 C 155.81697,1031.6072 155.96346,1031.1433 155.96346,1030.5215 L 155.96346,1030.0772 C 155.77791,1030.3995 155.54028,1030.6404 155.25057,1030.7999 C 154.96085,1030.9594 154.61417,1031.0391 154.21053,1031.0391 C 153.53996,1031.0391 152.99959,1030.7836 152.58944,1030.2725 C 152.17928,1029.7615 151.97420,1029.0844 151.97420,1028.2413 C 151.97420,1027.3949 152.17928,1026.7162 152.58944,1026.2051 C 152.99959,1025.6941 153.53996,1025.4385 154.21053,1025.4385 C 154.61417,1025.4385 154.96085,1025.5183 155.25057,1025.6778 C 155.54028,1025.8373 155.77791,1026.0782 155.96346,1026.4005 L 155.96346,1025.5704 L 156.86190,1025.5704 L 156.86190,1030.3604 M 163.25838,1027.7383 L 163.25838,1031.0391 L 162.35995,1031.0391 L 162.35995,1027.7676 C 162.35994,1027.2501 162.25903,1026.8627 162.05721,1026.6055 C 161.85538,1026.3484 161.55265,1026.2198 161.14901,1026.2198 C 160.66398,1026.2198 160.28149,1026.3744 160.00155,1026.6837 C 159.72160,1026.9929 159.58162,1027.4145 159.58163,1027.9483 L 159.58163,1031.0391 L 158.67830,1031.0391 L 158.67830,1025.5704 L 159.58163,1025.5704 L 159.58163,1026.4200 C 159.79647,1026.0912 160.04875,1025.8454 160.33846,1025.6827 C 160.63143,1025.5199 160.96834,1025.4385 161.34920,1025.4385 C 161.97745,1025.4385 162.45271,1025.6339 162.77498,1026.0245 C 163.09725,1026.4118 163.25838,1026.9831 163.25838,1027.7383 M 172.65291,1023.9883 L 172.65291,1024.9503 C 172.27856,1024.7712 171.92537,1024.6378 171.59334,1024.5499 C 171.26131,1024.4620 170.94067,1024.4180 170.63143,1024.4180 C 170.09432,1024.4180 169.67928,1024.5222 169.38631,1024.7305 C 169.09660,1024.9389 168.95174,1025.2351 168.95174,1025.6192 C 168.95174,1025.9415 169.04777,1026.1856 169.23983,1026.3516 C 169.43514,1026.5144 169.80298,1026.6462 170.34334,1026.7471 L 170.93905,1026.8692 C 171.67472,1027.0092 172.21671,1027.2566 172.56502,1027.6114 C 172.91658,1027.9630 173.09236,1028.4350 173.09237,1029.0274 C 173.09236,1029.7338 172.85473,1030.2693 172.37948,1030.6339 C 171.90747,1030.9984 171.21411,1031.1807 170.29940,1031.1807 C 169.95434,1031.1807 169.58651,1031.1417 169.19588,1031.0635 C 168.80851,1030.9854 168.40649,1030.8699 167.98983,1030.7169 L 167.98983,1029.7012 C 168.39022,1029.9258 168.78247,1030.0951 169.16659,1030.2090 C 169.55070,1030.3230 169.92830,1030.3799 170.29940,1030.3799 C 170.86255,1030.3799 171.29712,1030.2693 171.60311,1030.0479 C 171.90909,1029.8266 172.06209,1029.5108 172.06209,1029.1006 C 172.06209,1028.7426 171.95141,1028.4626 171.73006,1028.2608 C 171.51196,1028.0590 171.15226,1027.9076 170.65096,1027.8067 L 170.05038,1027.6895 C 169.31470,1027.5430 168.78247,1027.3135 168.45370,1027.0010 C 168.12492,1026.6885 167.96053,1026.2540 167.96053,1025.6973 C 167.96053,1025.0528 168.18677,1024.5450 168.63924,1024.1739 C 169.09497,1023.8028 169.72160,1023.6173 170.51913,1023.6172 C 170.86092,1023.6173 171.20923,1023.6482 171.56405,1023.7100 C 171.91886,1023.7719 172.28181,1023.8647 172.65291,1023.9883 M 175.49959,1024.0176 L 175.49959,1025.5704 L 177.35018,1025.5704 L 177.35018,1026.2686 L 175.49959,1026.2686 L 175.49959,1029.2374 C 175.49959,1029.6833 175.55981,1029.9698 175.68026,1030.0967 C 175.80395,1030.2237 176.05298,1030.2872 176.42733,1030.2872 L 177.35018,1030.2872 L 177.35018,1031.0391 L 176.42733,1031.0391 C 175.73397,1031.0391 175.25545,1030.9105 174.99178,1030.6534 C 174.72811,1030.3930 174.59627,1029.9210 174.59627,1029.2374 L 174.59627,1026.2686 L 173.93709,1026.2686 L 173.93709,1025.5704 L 174.59627,1025.5704 L 174.59627,1024.0176 L 175.49959,1024.0176 M 178.44393,1028.8809 L 178.44393,1025.5704 L 179.34237,1025.5704 L 179.34237,1028.8467 C 179.34237,1029.3643 179.44328,1029.7533 179.64510,1030.0137 C 179.84692,1030.2709 180.14966,1030.3995 180.55330,1030.3995 C 181.03833,1030.3995 181.42081,1030.2449 181.70077,1029.9356 C 181.98396,1029.6264 182.12557,1029.2048 182.12557,1028.6710 L 182.12557,1025.5704 L 183.02401,1025.5704 L 183.02401,1031.0391 L 182.12557,1031.0391 L 182.12557,1030.1993 C 181.90747,1030.5313 181.65356,1030.7787 181.36385,1030.9415 C 181.07739,1031.1010 180.74373,1031.1807 180.36287,1031.1807 C 179.73462,1031.1807 179.25773,1030.9854 178.93221,1030.5948 C 178.60669,1030.2042 178.44393,1029.6329 178.44393,1028.8809 M 188.48299,1026.4005 L 188.48299,1023.4415 L 189.38143,1023.4415 L 189.38143,1031.0391 L 188.48299,1031.0391 L 188.48299,1030.2188 C 188.29419,1030.5443 188.05493,1030.7868 187.76522,1030.9464 C 187.47876,1031.1026 187.13371,1031.1807 186.73006,1031.1807 C 186.06925,1031.1807 185.53052,1030.9171 185.11385,1030.3897 C 184.70044,1029.8624 184.49373,1029.1690 184.49373,1028.3096 C 184.49373,1027.4503 184.70044,1026.7569 185.11385,1026.2296 C 185.53052,1025.7022 186.06925,1025.4385 186.73006,1025.4385 C 187.13371,1025.4385 187.47876,1025.5183 187.76522,1025.6778 C 188.05493,1025.8341 188.29419,1026.0749 188.48299,1026.4005 M 185.42147,1028.3096 C 185.42147,1028.9704 185.55656,1029.4896 185.82674,1029.8672 C 186.10018,1030.2416 186.47453,1030.4288 186.94979,1030.4288 C 187.42505,1030.4288 187.79939,1030.2416 188.07284,1029.8672 C 188.34627,1029.4896 188.48299,1028.9704 188.48299,1028.3096 C 188.48299,1027.6488 188.34627,1027.1312 188.07284,1026.7569 C 187.79939,1026.3793 187.42505,1026.1905 186.94979,1026.1905 C 186.47453,1026.1905 186.10018,1026.3793 185.82674,1026.7569 C 185.55656,1027.1312 185.42147,1027.6488 185.42147,1028.3096 M 191.23202,1025.5704 L 192.13045,1025.5704 L 192.13045,1031.0391 L 191.23202,1031.0391 L 191.23202,1025.5704 M 191.23202,1023.4415 L 192.13045,1023.4415 L 192.13045,1024.5792 L 191.23202,1024.5792 L 191.23202,1023.4415 M 196.12459,1026.2003 C 195.64282,1026.2003 195.26196,1026.3891 194.98202,1026.7667 C 194.70207,1027.1410 194.56209,1027.6553 194.56209,1028.3096 C 194.56209,1028.9639 194.70044,1029.4799 194.97713,1029.8575 C 195.25708,1030.2318 195.63957,1030.4190 196.12459,1030.4190 C 196.60311,1030.4190 196.98234,1030.2302 197.26229,1029.8526 C 197.54223,1029.4750 197.68221,1028.9607 197.68221,1028.3096 C 197.68221,1027.6618 197.54223,1027.1492 197.26229,1026.7715 C 196.98234,1026.3907 196.60311,1026.2003 196.12459,1026.2003 M 196.12459,1025.4385 C 196.90584,1025.4385 197.51945,1025.6924 197.96541,1026.2003 C 198.41137,1026.7081 198.63435,1027.4112 198.63436,1028.3096 C 198.63435,1029.2048 198.41137,1029.9079 197.96541,1030.4190 C 197.51945,1030.9268 196.90584,1031.1807 196.12459,1031.1807 C 195.34009,1031.1807 194.72485,1030.9268 194.27889,1030.4190 C 193.83618,1029.9079 193.61483,1029.2048 193.61483,1028.3096 C 193.61483,1027.4112 193.83618,1026.7081 194.27889,1026.2003 C 194.72485,1025.6924 195.34009,1025.4385 196.12459,1025.4385 M 92.897055,1035.5704 L 93.795492,1035.5704 L 94.918539,1039.8380 L 96.036703,1035.5704 L 97.096273,1035.5704 L 98.219320,1039.8380 L 99.337484,1035.5704 L 100.23592,1035.5704 L 98.805258,1041.0391 L 97.745687,1041.0391 L 96.568930,1036.5567 L 95.387289,1041.0391 L 94.327719,1041.0391 L 92.897055,1035.5704 M 101.08065,1035.5704 L 101.97909,1035.5704 L 103.10213,1039.8380 L 104.22030,1035.5704 L 105.27987,1035.5704 L 106.40291,1039.8380 L 107.52108,1035.5704 L 108.41952,1035.5704 L 106.98885,1041.0391 L 105.92928,1041.0391 L 104.75252,1036.5567 L 103.57088,1041.0391 L 102.51131,1041.0391 L 101.08065,1035.5704 M 109.26424,1035.5704 L 110.16268,1035.5704 L 111.28573,1039.8380 L 112.40389,1035.5704 L 113.46346,1035.5704 L 114.58651,1039.8380 L 115.70467,1035.5704 L 116.60311,1035.5704 L 115.17245,1041.0391 L 114.11288,1041.0391 L 112.93612,1036.5567 L 111.75448,1041.0391 L 110.69491,1041.0391 L 109.26424,1035.5704 M 117.17928,1039.7989 L 118.20955,1039.7989 L 118.20955,1041.0391 L 117.17928,1041.0391 L 117.17928,1039.7989 M 120.23592,1033.4415 L 121.13436,1033.4415 L 121.13436,1041.0391 L 120.23592,1041.0391 L 120.23592,1033.4415 M 122.91659,1038.8809 L 122.91659,1035.5704 L 123.81502,1035.5704 L 123.81502,1038.8467 C 123.81502,1039.3643 123.91593,1039.7533 124.11776,1040.0137 C 124.31958,1040.2709 124.62231,1040.3995 125.02596,1040.3995 C 125.51098,1040.3995 125.89347,1040.2449 126.17342,1039.9356 C 126.45662,1039.6264 126.59822,1039.2048 126.59823,1038.6710 L 126.59823,1035.5704 L 127.49666,1035.5704 L 127.49666,1041.0391 L 126.59823,1041.0391 L 126.59823,1040.1993 C 126.38012,1040.5313 126.12622,1040.7787 125.83651,1040.9415 C 125.55005,1041.1010 125.21639,1041.1807 124.83553,1041.1807 C 124.20727,1041.1807 123.73039,1040.9854 123.40487,1040.5948 C 123.07935,1040.2042 122.91659,1039.6329 122.91659,1038.8809 M 133.61483,1036.6202 C 133.83943,1036.2165 134.10799,1035.9187 134.42049,1035.7266 C 134.73299,1035.5346 135.10082,1035.4385 135.52401,1035.4385 C 136.09366,1035.4385 136.53311,1035.6387 136.84237,1036.0391 C 137.15160,1036.4363 137.30623,1037.0027 137.30623,1037.7383 L 137.30623,1041.0391 L 136.40291,1041.0391 L 136.40291,1037.7676 C 136.40291,1037.2436 136.31013,1036.8546 136.12459,1036.6006 C 135.93904,1036.3467 135.65584,1036.2198 135.27498,1036.2198 C 134.80948,1036.2198 134.44164,1036.3744 134.17147,1036.6837 C 133.90128,1036.9929 133.76619,1037.4145 133.76620,1037.9483 L 133.76620,1041.0391 L 132.86288,1041.0391 L 132.86288,1037.7676 C 132.86287,1037.2403 132.77010,1036.8513 132.58455,1036.6006 C 132.39900,1036.3467 132.11255,1036.2198 131.72518,1036.2198 C 131.26619,1036.2198 130.90161,1036.3760 130.63143,1036.6885 C 130.36125,1036.9978 130.22615,1037.4177 130.22616,1037.9483 L 130.22616,1041.0391 L 129.32284,1041.0391 L 129.32284,1035.5704 L 130.22616,1035.5704 L 130.22616,1036.4200 C 130.43123,1036.0847 130.67700,1035.8373 130.96346,1035.6778 C 131.24992,1035.5183 131.59009,1035.4385 131.98397,1035.4385 C 132.38110,1035.4385 132.71801,1035.5395 132.99471,1035.7413 C 133.27465,1035.9431 133.48136,1036.2361 133.61483,1036.6202 M 143.76131,1038.0801 L 143.76131,1038.5196 L 139.63045,1038.5196 C 139.66951,1039.1381 139.85506,1039.6101 140.18709,1039.9356 C 140.52238,1040.2579 140.98787,1040.4190 141.58358,1040.4190 C 141.92863,1040.4190 142.26229,1040.3767 142.58455,1040.2921 C 142.91007,1040.2074 143.23234,1040.0805 143.55135,1039.9112 L 143.55135,1040.7608 C 143.22908,1040.8975 142.89868,1041.0017 142.56014,1041.0733 C 142.22159,1041.1449 141.87817,1041.1807 141.52987,1041.1807 C 140.65747,1041.1807 139.96574,1040.9268 139.45467,1040.4190 C 138.94686,1039.9112 138.69295,1039.2243 138.69295,1038.3585 C 138.69295,1037.4633 138.93384,1036.7536 139.41561,1036.2296 C 139.90063,1035.7022 140.55330,1035.4385 141.37362,1035.4385 C 142.10929,1035.4385 142.69034,1035.6762 143.11678,1036.1514 C 143.54646,1036.6234 143.76131,1037.2663 143.76131,1038.0801 M 142.86288,1037.8165 C 142.85636,1037.3249 142.71801,1036.9327 142.44784,1036.6397 C 142.18091,1036.3467 141.82609,1036.2003 141.38338,1036.2003 C 140.88208,1036.2003 140.48006,1036.3419 140.17733,1036.6251 C 139.87785,1036.9083 139.70532,1037.3070 139.65975,1037.8214 L 142.86288,1037.8165 M 149.76229,1037.7383 L 149.76229,1041.0391 L 148.86385,1041.0391 L 148.86385,1037.7676 C 148.86385,1037.2501 148.76294,1036.8627 148.56112,1036.6055 C 148.35929,1036.3484 148.05656,1036.2198 147.65291,1036.2198 C 147.16789,1036.2198 146.78540,1036.3744 146.50545,1036.6837 C 146.22550,1036.9929 146.08553,1037.4145 146.08553,1037.9483 L 146.08553,1041.0391 L 145.18221,1041.0391 L 145.18221,1035.5704 L 146.08553,1035.5704 L 146.08553,1036.4200 C 146.30037,1036.0912 146.55265,1035.8454 146.84237,1035.6827 C 147.13533,1035.5199 147.47225,1035.4385 147.85311,1035.4385 C 148.48136,1035.4385 148.95662,1035.6339 149.27889,1036.0245 C 149.60115,1036.4118 149.76228,1036.9831 149.76229,1037.7383 M 155.05038,1035.7315 L 155.05038,1036.5811 C 154.79647,1036.4509 154.53279,1036.3533 154.25936,1036.2881 C 153.98592,1036.2230 153.70272,1036.1905 153.40975,1036.1905 C 152.96378,1036.1905 152.62850,1036.2589 152.40389,1036.3956 C 152.18254,1036.5323 152.07186,1036.7374 152.07186,1037.0108 C 152.07186,1037.2191 152.15161,1037.3835 152.31112,1037.5040 C 152.47062,1037.6212 152.79126,1037.7335 153.27303,1037.8409 L 153.58065,1037.9092 C 154.21867,1038.0460 154.67114,1038.2396 154.93807,1038.4903 C 155.20825,1038.7377 155.34334,1039.0844 155.34334,1039.5303 C 155.34334,1040.0381 155.14152,1040.4402 154.73788,1040.7364 C 154.33748,1041.0326 153.78572,1041.1807 153.08260,1041.1807 C 152.78963,1041.1807 152.48364,1041.1514 152.16463,1041.0928 C 151.84888,1041.0375 151.51522,1040.9529 151.16366,1040.8389 L 151.16366,1039.9112 C 151.49569,1040.0837 151.82284,1040.2139 152.14510,1040.3018 C 152.46737,1040.3865 152.78638,1040.4288 153.10213,1040.4288 C 153.52531,1040.4288 153.85083,1040.3572 154.07870,1040.2139 C 154.30656,1040.0674 154.42049,1039.8624 154.42049,1039.5987 C 154.42049,1039.3546 154.33748,1039.1674 154.17147,1039.0372 C 154.00871,1038.9070 153.64901,1038.7816 153.09237,1038.6612 L 152.77987,1038.5880 C 152.22323,1038.4708 151.82121,1038.2917 151.57381,1038.0508 C 151.32642,1037.8067 151.20272,1037.4730 151.20272,1037.0499 C 151.20272,1036.5355 151.38501,1036.1384 151.74959,1035.8585 C 152.11418,1035.5785 152.63175,1035.4385 153.30233,1035.4385 C 153.63436,1035.4385 153.94686,1035.4630 154.23983,1035.5118 C 154.53279,1035.5606 154.80298,1035.6339 155.05038,1035.7315 M 157.64803,1034.0176 L 157.64803,1035.5704 L 159.49862,1035.5704 L 159.49862,1036.2686 L 157.64803,1036.2686 L 157.64803,1039.2374 C 157.64803,1039.6833 157.70825,1039.9698 157.82870,1040.0967 C 157.95239,1040.2237 158.20141,1040.2872 158.57577,1040.2872 L 159.49862,1040.2872 L 159.49862,1041.0391 L 158.57577,1041.0391 C 157.88240,1041.0391 157.40389,1040.9105 157.14022,1040.6534 C 156.87655,1040.3930 156.74471,1039.9210 156.74471,1039.2374 L 156.74471,1036.2686 L 156.08553,1036.2686 L 156.08553,1035.5704 L 156.74471,1035.5704 L 156.74471,1034.0176 L 157.64803,1034.0176 M 160.59237,1038.8809 L 160.59237,1035.5704 L 161.49080,1035.5704 L 161.49080,1038.8467 C 161.49080,1039.3643 161.59171,1039.7533 161.79354,1040.0137 C 161.99536,1040.2709 162.29809,1040.3995 162.70174,1040.3995 C 163.18676,1040.3995 163.56925,1040.2449 163.84920,1039.9356 C 164.13240,1039.6264 164.27400,1039.2048 164.27401,1038.6710 L 164.27401,1035.5704 L 165.17245,1035.5704 L 165.17245,1041.0391 L 164.27401,1041.0391 L 164.27401,1040.1993 C 164.05591,1040.5313 163.80200,1040.7787 163.51229,1040.9415 C 163.22583,1041.1010 162.89217,1041.1807 162.51131,1041.1807 C 161.88306,1041.1807 161.40617,1040.9854 161.08065,1040.5948 C 160.75513,1040.2042 160.59237,1039.6329 160.59237,1038.8809 M 170.63143,1036.4005 L 170.63143,1033.4415 L 171.52987,1033.4415 L 171.52987,1041.0391 L 170.63143,1041.0391 L 170.63143,1040.2188 C 170.44262,1040.5443 170.20337,1040.7868 169.91366,1040.9464 C 169.62719,1041.1026 169.28214,1041.1807 168.87850,1041.1807 C 168.21769,1041.1807 167.67895,1040.9171 167.26229,1040.3897 C 166.84888,1039.8624 166.64217,1039.1690 166.64217,1038.3096 C 166.64217,1037.4503 166.84888,1036.7569 167.26229,1036.2296 C 167.67895,1035.7022 168.21769,1035.4385 168.87850,1035.4385 C 169.28214,1035.4385 169.62719,1035.5183 169.91366,1035.6778 C 170.20337,1035.8341 170.44262,1036.0749 170.63143,1036.4005 M 167.56991,1038.3096 C 167.56991,1038.9704 167.70500,1039.4896 167.97518,1039.8672 C 168.24862,1040.2416 168.62296,1040.4288 169.09823,1040.4288 C 169.57348,1040.4288 169.94783,1040.2416 170.22127,1039.8672 C 170.49471,1039.4896 170.63142,1038.9704 170.63143,1038.3096 C 170.63142,1037.6488 170.49471,1037.1312 170.22127,1036.7569 C 169.94783,1036.3793 169.57348,1036.1905 169.09823,1036.1905 C 168.62296,1036.1905 168.24862,1036.3793 167.97518,1036.7569 C 167.70500,1037.1312 167.56991,1037.6488 167.56991,1038.3096 M 173.38045,1035.5704 L 174.27889,1035.5704 L 174.27889,1041.0391 L 173.38045,1041.0391 L 173.38045,1035.5704 M 173.38045,1033.4415 L 174.27889,1033.4415 L 174.27889,1034.5792 L 173.38045,1034.5792 L 173.38045,1033.4415 M 178.27303,1036.2003 C 177.79126,1036.2003 177.41040,1036.3891 177.13045,1036.7667 C 176.85050,1037.1410 176.71053,1037.6553 176.71053,1038.3096 C 176.71053,1038.9639 176.84888,1039.4799 177.12557,1039.8575 C 177.40552,1040.2318 177.78800,1040.4190 178.27303,1040.4190 C 178.75154,1040.4190 179.13078,1040.2302 179.41073,1039.8526 C 179.69067,1039.4750 179.83064,1038.9607 179.83065,1038.3096 C 179.83064,1037.6618 179.69067,1037.1492 179.41073,1036.7715 C 179.13078,1036.3907 178.75154,1036.2003 178.27303,1036.2003 M 178.27303,1035.4385 C 179.05428,1035.4385 179.66788,1035.6924 180.11385,1036.2003 C 180.55981,1036.7081 180.78279,1037.4112 180.78280,1038.3096 C 180.78279,1039.2048 180.55981,1039.9079 180.11385,1040.4190 C 179.66788,1040.9268 179.05428,1041.1807 178.27303,1041.1807 C 177.48852,1041.1807 176.87329,1040.9268 176.42733,1040.4190 C 175.98462,1039.9079 175.76327,1039.2048 175.76327,1038.3096 C 175.76327,1037.4112 175.98462,1036.7081 176.42733,1036.2003 C 176.87329,1035.6924 177.48852,1035.4385 178.27303,1035.4385 M 182.21834,1039.7989 L 183.24862,1039.7989 L 183.24862,1041.0391 L 182.21834,1041.0391 L 182.21834,1039.7989 M 189.82088,1037.7383 L 189.82088,1041.0391 L 188.92245,1041.0391 L 188.92245,1037.7676 C 188.92244,1037.2501 188.82153,1036.8627 188.61971,1036.6055 C 188.41788,1036.3484 188.11515,1036.2198 187.71151,1036.2198 C 187.22648,1036.2198 186.84399,1036.3744 186.56405,1036.6837 C 186.28410,1036.9929 186.14412,1037.4145 186.14412,1037.9483 L 186.14412,1041.0391 L 185.24080,1041.0391 L 185.24080,1035.5704 L 186.14412,1035.5704 L 186.14412,1036.4200 C 186.35897,1036.0912 186.61125,1035.8454 186.90096,1035.6827 C 187.19393,1035.5199 187.53084,1035.4385 187.91170,1035.4385 C 188.53995,1035.4385 189.01521,1035.6339 189.33748,1036.0245 C 189.65974,1036.4118 189.82088,1036.9831 189.82088,1037.7383 M 196.30037,1038.0801 L 196.30037,1038.5196 L 192.16952,1038.5196 C 192.20858,1039.1381 192.39412,1039.6101 192.72616,1039.9356 C 193.06144,1040.2579 193.52693,1040.4190 194.12264,1040.4190 C 194.46769,1040.4190 194.80135,1040.3767 195.12362,1040.2921 C 195.44913,1040.2074 195.77140,1040.0805 196.09041,1039.9112 L 196.09041,1040.7608 C 195.76814,1040.8975 195.43774,1041.0017 195.09920,1041.0733 C 194.76066,1041.1449 194.41723,1041.1807 194.06893,1041.1807 C 193.19653,1041.1807 192.50480,1040.9268 191.99373,1040.4190 C 191.48592,1039.9112 191.23202,1039.2243 191.23202,1038.3585 C 191.23202,1037.4633 191.47290,1036.7536 191.95467,1036.2296 C 192.43970,1035.7022 193.09236,1035.4385 193.91268,1035.4385 C 194.64835,1035.4385 195.22941,1035.6762 195.65584,1036.1514 C 196.08553,1036.6234 196.30037,1037.2663 196.30037,1038.0801 M 195.40194,1037.8165 C 195.39542,1037.3249 195.25708,1036.9327 194.98690,1036.6397 C 194.71997,1036.3467 194.36515,1036.2003 193.92245,1036.2003 C 193.42114,1036.2003 193.01912,1036.3419 192.71639,1036.6251 C 192.41691,1036.9083 192.24438,1037.3070 192.19881,1037.8214 L 195.40194,1037.8165 M 198.64412,1034.0176 L 198.64412,1035.5704 L 200.49471,1035.5704 L 200.49471,1036.2686 L 198.64412,1036.2686 L 198.64412,1039.2374 C 198.64412,1039.6833 198.70434,1039.9698 198.82479,1040.0967 C 198.94848,1040.2237 199.19751,1040.2872 199.57186,1040.2872 L 200.49471,1040.2872 L 200.49471,1041.0391 L 199.57186,1041.0391 C 198.87850,1041.0391 198.39998,1040.9105 198.13631,1040.6534 C 197.87264,1040.3930 197.74080,1039.9210 197.74080,1039.2374 L 197.74080,1036.2686 L 197.08162,1036.2686 L 197.08162,1035.5704 L 197.74080,1035.5704 L 197.74080,1034.0176 L 198.64412,1034.0176" id="text3077" style="font-size:10.000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100.00000%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1.0000000;stroke:none;stroke-width:1.0000000px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1.0000000;font-family:Bitstream Vera Sans"/>
|
78
|
+
</g>
|
79
|
+
</svg>
|
Binary file
|
@@ -0,0 +1,70 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<!-- Created with Sodipodi ("http://www.sodipodi.com/") --><svg height="400pt" id="svg548" inkscape:version="0.38.1" sodipodi:docbase="/var/www/html/svg_gallery/svg/office" sodipodi:docname="note.svg" sodipodi:version="0.32" width="400pt" xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink">
|
5
|
+
<metadata>
|
6
|
+
<rdf:RDF xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
7
|
+
<cc:Work rdf:about="">
|
8
|
+
<dc:title>Clipart by Nicu Buculei - book_01</dc:title>
|
9
|
+
<dc:description></dc:description>
|
10
|
+
<dc:subject>
|
11
|
+
<rdf:Bag>
|
12
|
+
<rdf:li>hash</rdf:li>
|
13
|
+
<rdf:li></rdf:li>
|
14
|
+
<rdf:li>education</rdf:li>
|
15
|
+
</rdf:Bag>
|
16
|
+
</dc:subject>
|
17
|
+
<dc:publisher>
|
18
|
+
<cc:Agent rdf:about="http://www.openclipart.org">
|
19
|
+
<dc:title>Nicu Buculei</dc:title>
|
20
|
+
</cc:Agent>
|
21
|
+
</dc:publisher>
|
22
|
+
<dc:creator>
|
23
|
+
<cc:Agent>
|
24
|
+
<dc:title>Nicu Buculei</dc:title>
|
25
|
+
</cc:Agent>
|
26
|
+
</dc:creator>
|
27
|
+
<dc:rights>
|
28
|
+
<cc:Agent>
|
29
|
+
<dc:title>Nicu Buculei</dc:title>
|
30
|
+
</cc:Agent>
|
31
|
+
</dc:rights>
|
32
|
+
<dc:date></dc:date>
|
33
|
+
<dc:format>image/svg+xml</dc:format>
|
34
|
+
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
35
|
+
<cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/>
|
36
|
+
<dc:language>en</dc:language>
|
37
|
+
</cc:Work>
|
38
|
+
<cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
|
39
|
+
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
|
40
|
+
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
|
41
|
+
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
|
42
|
+
</cc:License>
|
43
|
+
</rdf:RDF>
|
44
|
+
</metadata>
|
45
|
+
<defs id="defs550">
|
46
|
+
<linearGradient id="linearGradient562">
|
47
|
+
<stop id="stop563" offset="0.000000" style="stop-color:#de9500;stop-opacity:1;"/>
|
48
|
+
<stop id="stop564" offset="1.000000" style="stop-color:#ffff0f;stop-opacity:1;"/>
|
49
|
+
</linearGradient>
|
50
|
+
<linearGradient id="linearGradient558">
|
51
|
+
<stop id="stop559" offset="0" style="stop-color:#000;stop-opacity:1;"/>
|
52
|
+
<stop id="stop560" offset="1" style="stop-color:#fff;stop-opacity:1;"/>
|
53
|
+
</linearGradient>
|
54
|
+
<linearGradient gradientUnits="objectBoundingBox" id="linearGradient561" spreadMethod="reflect" x1="0.61486840" x2="0.25000009" xlink:href="#linearGradient562" y1="0.53906602" y2="0.32031256"/>
|
55
|
+
</defs>
|
56
|
+
<sodipodi:namedview id="base" inkscape:cx="200.00000" inkscape:cy="200.00000" inkscape:window-height="636" inkscape:window-width="787" inkscape:window-x="0" inkscape:window-y="24" inkscape:zoom="0.90750000"/>
|
57
|
+
<g id="g855">
|
58
|
+
<path d="M 98.359 20.9239 C 86.7178 169.989 133.621 233.611 96.6631 472.866 C 96.6631 472.866 429.897 476.258 429.049 476.258 C 472.505 226.258 403.845 144.925 431.706 79.4305 C 377.908 78.6961 364.607 20.076 364.607 20.076 L 98.359 20.9239 z " id="path588" sodipodi:nodetypes="cccccc" style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:10.000000;stroke-linejoin:round;stroke-dasharray:none;" transform="translate(-31.64557,-9.493675)"/>
|
59
|
+
<path d="M 369.695 22.6197 L 368.846 81.9743 L 437.527 81.9743 C 440.919 76.8867 373.086 24.3156 369.695 22.6197 z " id="path589" sodipodi:nodetypes="cccc" style="fill:#eeebff;fill-rule:evenodd;stroke:#000000;stroke-width:10.000000;stroke-linejoin:round;stroke-dasharray:none;" transform="translate(-36.73307,-11.18950)"/>
|
60
|
+
<path d="M 99.8788 380.676 L 76.014 482.322 L 175.741 411.612 C 175.741 411.612 167.054 351.508 99.8788 380.676 z " id="path554" sodipodi:nodetypes="cccc" style="fill:#cca89d;fill-rule:evenodd;stroke:#000000;stroke-width:13.698779;stroke-linejoin:round;stroke-dasharray:none;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
61
|
+
<path d="M 100.763 380.676 L 325.269 62.4776 C 325.269 62.4776 346.482 35.9611 370.347 50.9871 C 377.419 52.7549 375.651 50.9872 389.793 61.5937 C 393.328 64.2454 395.096 85.4586 395.096 85.4586 C 395.096 85.4586 174.125 411.612 174.125 412.496 C 174.125 413.379 170.589 393.05 151.144 382.443 C 133.466 371.837 101.647 381.56 100.763 380.676 z " id="path553" sodipodi:nodetypes="cccccccc" style="fill:#c96400;fill-rule:evenodd;stroke:#000000;stroke-width:13.698779;stroke-linejoin:round;stroke-dasharray:none;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
62
|
+
<path d="M 75.1301 483.206 L 83.0851 451.386 C 83.0851 450.502 93.6917 450.502 97.2272 454.922 C 100.763 455.806 101.647 462.877 101.647 462.877 L 75.1301 483.206 z " id="path555" sodipodi:nodetypes="ccccc" style="fill-rule:evenodd;stroke:#000000;stroke-width:17.123474;stroke-linejoin:round;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
63
|
+
<path d="M 315.547 74.852 L 358.857 22.7029 C 358.857 22.7029 377.418 3.25745 395.98 12.9802 C 414.541 22.7029 405.702 17.3995 414.542 23.5867 C 422.496 35.9612 411.89 58.9421 411.006 58.9421 C 410.122 58.9421 374.767 117.279 374.767 117.279 C 374.767 117.279 383.605 106.672 368.579 98.7169 C 351.786 76.6198 314.663 74.852 315.547 74.852 z " id="path556" sodipodi:nodetypes="cccccccc" style="fill:#fc64e3;fill-rule:evenodd;stroke:#000000;stroke-width:13.698779;stroke-linejoin:round;stroke-dasharray:none;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
64
|
+
<path d="M 305.824 87.2263 C 304.94 87.2263 342.063 39.4967 342.063 39.4967 C 342.063 39.4967 357.089 37.7288 370.347 41.2644 C 385.374 47.4516 379.186 43.0322 389.793 50.9872 C 399.515 58.9421 401.283 77.5037 401.283 77.5037 L 372.999 121.698 C 372.999 121.698 373.883 112.859 365.044 103.137 C 350.902 91.6457 336.759 89.878 327.921 86.3424 C 315.546 84.5747 304.94 88.1102 305.824 87.2263 z " id="path557" sodipodi:nodetypes="ccccccccc" style="fill:url(#linearGradient561);fill-rule:evenodd;stroke:#000000;stroke-width:13.698779;stroke-linejoin:round;stroke-dasharray:none;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
65
|
+
<path d="M 76.875 480.625 C 76.875 479.375 83.75 453.125 85.625 453.125 C 87.5 453.125 93.75 454.375 93.75 456.25 C 83.125 462.5 78.75 478.75 76.875 480.625 z " id="path566" sodipodi:nodetypes="cccc" style="fill:#ffffff;fill-rule:evenodd;stroke-width:17.123474;stroke-linejoin:round;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
66
|
+
<path d="M 122.22741,365.36859 C 136.64241,342.47459 307.27280,103.20431 312.36080,99.812611 C 383.58580,70.135311 172.25641,294.14259 122.22741,365.36859 z " id="path564" sodipodi:nodetypes="ccc" style="fill:#ffffff;fill-opacity:0.50370401;fill-rule:evenodd;stroke-width:17.123474;stroke-linejoin:round;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
67
|
+
<path d="M 234.50707,414.15223 C 234.50707,412.32316 242.04895,380.01324 245.81904,369.64924 C 247.07608,369.64924 266.94578,366.62323 273.85876,377.59764 C 249.34942,381.25505 235.76404,409.27544 234.50707,414.15223 z " id="path565" sodipodi:nodetypes="cccc" style="fill:#ffffff;fill-opacity:0.50196099;fill-rule:evenodd;stroke-width:17.123474;stroke-linejoin:round;"/>
|
68
|
+
<path d="M 394.284 17.5322 C 394.284 17.5322 413.786 21.7719 413.786 27.7073 C 418.873 44.6657 409.546 53.9928 403.611 64.1679 C 405.307 48.0574 408.699 40.4262 394.284 17.5322 z " id="path567" sodipodi:nodetypes="cccc" style="fill-opacity:0.24999996;fill-rule:evenodd;stroke-width:17.123474;stroke-linejoin:round;" transform="matrix(0.741180,0.000000,0.000000,0.718973,165.0147,93.07255)"/>
|
69
|
+
</g>
|
70
|
+
</svg>
|
@@ -167,8 +167,7 @@ function updateChoices(choices) {
|
|
167
167
|
}
|
168
168
|
|
169
169
|
function setSize(img) {
|
170
|
-
var divHeight = findPosY(img.parentNode
|
171
|
-
if (findPosY(img.parentNode.nextSibling) == 0) divHeight = findPosY(img.parentNode.nextSibling.nextSibling) - findPosY(img);
|
170
|
+
var divHeight = findPosY(document.getElementsByClassName('choice', img.parentNode)[0]) - findPosY(img);
|
172
171
|
|
173
172
|
if (false && img.offsetWidth > 1) {
|
174
173
|
var debug = document.createElement("span");
|
@@ -178,8 +177,8 @@ function setSize(img) {
|
|
178
177
|
+"; img.offsetParent.offsetWidth: "+img.offsetParent.offsetWidth
|
179
178
|
+"; img.offsetWidth:"+img.offsetWidth
|
180
179
|
+"; findPosY(img):"+findPosY(img)
|
181
|
-
+"; findPosY(img.parentNode
|
182
|
-
+findPosY(img.parentNode
|
180
|
+
+"; findPosY(document.getElementsByClassName('choice', img.parentNode)[0]):"
|
181
|
+
+findPosY(document.getElementsByClassName('choice', img.parentNode)[0])));
|
183
182
|
if (img.parentNode.parentNode) img.parentNode.parentNode.insertBefore(debug, img.parentNode);
|
184
183
|
}
|
185
184
|
|
@@ -0,0 +1,449 @@
|
|
1
|
+
/*
|
2
|
+
____ _ _
|
3
|
+
| _ \ __ _ _ __| | ___ _ __ ___ ___ _ __ | |_
|
4
|
+
| |_) / _` | '__| |/ _ \ '_ ` _ \ / _ \ '_ \| __|
|
5
|
+
| __/ (_| | | | | __/ | | | | | __/ | | | |_
|
6
|
+
|_| \__,_|_| |_|\___|_| |_| |_|\___|_| |_|\__|
|
7
|
+
*/
|
8
|
+
|
9
|
+
html {
|
10
|
+
border: none;
|
11
|
+
background: url("/images/Sleep-Deprivation-5.JPG"); }
|
12
|
+
|
13
|
+
body {
|
14
|
+
color: black;
|
15
|
+
padding: 0 3%;
|
16
|
+
background: white;
|
17
|
+
margin: 3em 4% 4% 4%; }
|
18
|
+
|
19
|
+
/* _ _ _ _ _
|
20
|
+
___| | __ _ ___ ___(_) ___ | |__ | |_ _ __ ___ | |
|
21
|
+
/ __| |/ _` / __/ __| |/ __| | '_ \| __| '_ ` _ \| |
|
22
|
+
| (__| | (_| \__ \__ \ | (__ | | | | |_| | | | | | |
|
23
|
+
\___|_|\__,_|___/___/_|\___| |_| |_|\__|_| |_| |_|_| */
|
24
|
+
form {
|
25
|
+
margin: 0;
|
26
|
+
padding: 0;
|
27
|
+
display: inline; }
|
28
|
+
|
29
|
+
input, textarea {
|
30
|
+
color: inherit;
|
31
|
+
max-width: 100%;
|
32
|
+
font-size: inherit;
|
33
|
+
font-weight: inherit;
|
34
|
+
background: transparent; }
|
35
|
+
|
36
|
+
img {
|
37
|
+
border: none;
|
38
|
+
max-width: 50%;
|
39
|
+
_max-width: none;
|
40
|
+
width: expression((offsetWidth > document.body.offsetWidth*0.5) ? "50%" : offsetWidth); }
|
41
|
+
textarea { width: 60%; }
|
42
|
+
select { background: transparent; }
|
43
|
+
input[type='button'], input[type='submit'] { font-weight: bolder; }
|
44
|
+
|
45
|
+
pre { overflow: auto; }
|
46
|
+
|
47
|
+
/* _ _
|
48
|
+
| |__ ___ __ _ __| | ___ _ __
|
49
|
+
| '_ \ / _ \/ _` |/ _` |/ _ \ '__|
|
50
|
+
| | | | __/ (_| | (_| | __/ |
|
51
|
+
|_| |_|\___|\__,_|\__,_|\___|_| */
|
52
|
+
h1, h2 {
|
53
|
+
margin: 0;
|
54
|
+
padding: 1%;
|
55
|
+
font-weight: bolder; }
|
56
|
+
body > ul > .elt > * > h1 { letter-spacing: 0.2em; }
|
57
|
+
.elt .elt h1 {
|
58
|
+
font-size: larger;
|
59
|
+
_background: #eef; }
|
60
|
+
h3 { margin: 0px; }
|
61
|
+
|
62
|
+
h1 input {
|
63
|
+
width: 90%;
|
64
|
+
_font-size: medium;
|
65
|
+
_font-weight: bolder; }
|
66
|
+
|
67
|
+
#elt_parlement > form > .created_on, #elt_parlement > .knobOpened,
|
68
|
+
#elt_parlement > * > h1 a, #elt_fr > form > .created_on, #elt_fr > .knobOpened,
|
69
|
+
#elt_fr > * > h1 a {
|
70
|
+
display: none; }
|
71
|
+
|
72
|
+
a:link, select, input[type='Button'], input[type='submit'] { color: #3b76ae; }
|
73
|
+
a:visited { color: #1b568e; }
|
74
|
+
a:hover, a:active, select:hover, input[type='Button']:hover, input[type='submit']:hover { color: purple; }
|
75
|
+
a:active, input[type='Button']:active, input[type='submit']:active { color: orange; }
|
76
|
+
|
77
|
+
.notice, .warning, .error {
|
78
|
+
font-weight: bolder;
|
79
|
+
text-align: center;
|
80
|
+
font-size: larger; }
|
81
|
+
.error { color: #f00; }
|
82
|
+
.notice { color: #080; }
|
83
|
+
.warning { color: #f84; }
|
84
|
+
|
85
|
+
/* _ _
|
86
|
+
| | ___ __ _(_)_ __
|
87
|
+
| |/ _ \ / _` | | '_ \
|
88
|
+
| | (_) | (_| | | | | |
|
89
|
+
|_|\___/ \__, |_|_| |_|
|
90
|
+
|___/ */
|
91
|
+
.choicesToUpdate {
|
92
|
+
font-size: smaller;
|
93
|
+
color: #ddd;
|
94
|
+
float: left; }
|
95
|
+
.login {
|
96
|
+
color: white;
|
97
|
+
margin: 0.5em;
|
98
|
+
padding: 0.3em;
|
99
|
+
background: red;
|
100
|
+
font-size: larger;
|
101
|
+
font-weight: bolder; }
|
102
|
+
.logout {
|
103
|
+
float: right;
|
104
|
+
padding-right: 1em;
|
105
|
+
font-weight: bolder;
|
106
|
+
font-family: sans-serif; }
|
107
|
+
|
108
|
+
/* _ _
|
109
|
+
| |__ ___| |_ __
|
110
|
+
| '_ \ / _ \ | '_ \
|
111
|
+
| | | | __/ | |_) |
|
112
|
+
|_| |_|\___|_| .__/
|
113
|
+
|_| */
|
114
|
+
.helpLink, .helpLinkClose, .subscribeLink {
|
115
|
+
font-weight: bolder;
|
116
|
+
font-size: larger; }
|
117
|
+
.helpLink { cursor: help; }
|
118
|
+
.helpLinkClose { text-decoration: line-through; }
|
119
|
+
|
120
|
+
.help {
|
121
|
+
padding: 1em;
|
122
|
+
text-align: left; }
|
123
|
+
h1 .help {
|
124
|
+
font-size: smaller;
|
125
|
+
font-weight: normal; }
|
126
|
+
|
127
|
+
.helpTitle, .helpTitle:link, .helpTitle:visited {
|
128
|
+
font-weight: bolder;
|
129
|
+
font-size: larger; }
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
/* _ _ _
|
134
|
+
___(_) __| | ___| |__ __ _ _ __
|
135
|
+
/ __| |/ _` |/ _ \ '_ \ / _` | '__|
|
136
|
+
\__ \ | (_| | __/ |_) | (_| | |
|
137
|
+
|___/_|\__,_|\___|_.__/ \__,_|_| */
|
138
|
+
.sidebar, .links {
|
139
|
+
text-align: center;
|
140
|
+
background: white;
|
141
|
+
width: 30%; }
|
142
|
+
.links {
|
143
|
+
position: absolute;
|
144
|
+
background: white;
|
145
|
+
margin-top: -3em;
|
146
|
+
height: 3em;
|
147
|
+
right: 4%; }
|
148
|
+
.links #fr {
|
149
|
+
width: 1em;
|
150
|
+
color: white;
|
151
|
+
background: white;
|
152
|
+
border-left: 1em blue solid;
|
153
|
+
border-right: 1em red solid; }
|
154
|
+
.sidebar {
|
155
|
+
float: right;
|
156
|
+
padding-left: 2%;
|
157
|
+
margin-right: -1%; }
|
158
|
+
/* Big hack for ie */
|
159
|
+
* html .links {
|
160
|
+
width: 33%;
|
161
|
+
margin-right: -1px; }
|
162
|
+
|
163
|
+
.title {
|
164
|
+
display: block;
|
165
|
+
font-size: larger;
|
166
|
+
font-weight: bolder;
|
167
|
+
letter-spacing: 0.5em; }
|
168
|
+
.signets { font-size: smaller; }
|
169
|
+
|
170
|
+
.boxTitle {
|
171
|
+
color: #ff4;
|
172
|
+
text-align: left;
|
173
|
+
font-size: medium;
|
174
|
+
font-weight: bolder;
|
175
|
+
padding: 0.3em 0.6em;
|
176
|
+
border: outset thin #3b76ae;
|
177
|
+
background: #3b76ae url(/images/Sleep-Deprivation-5.JPG); }
|
178
|
+
.box {
|
179
|
+
padding: 1px;
|
180
|
+
background: #ccc;
|
181
|
+
font-size: smaller;
|
182
|
+
margin-bottom: 1em;
|
183
|
+
padding-bottom: 0.5em;
|
184
|
+
border: outset thin #ccc;
|
185
|
+
border-top: none; }
|
186
|
+
.boxLine {
|
187
|
+
text-align: left;
|
188
|
+
margin-left: 1em; }
|
189
|
+
.boxLineR {
|
190
|
+
text-align: right;
|
191
|
+
padding-right: 1em; }
|
192
|
+
.boxMore {
|
193
|
+
text-align: right;
|
194
|
+
font-weight: bolder; }
|
195
|
+
|
196
|
+
#filter {
|
197
|
+
border: none;
|
198
|
+
text-align: center; }
|
199
|
+
form#filterForm a {
|
200
|
+
font-size: larger;
|
201
|
+
font-weight: bolder; }
|
202
|
+
form#filterForm input[type='submit'],
|
203
|
+
div#identity form.setAvatar input[type='submit'],
|
204
|
+
div#identity form.setAvatar,
|
205
|
+
div#identity iframe {
|
206
|
+
display: none; }
|
207
|
+
div#identity form.setAvatar input[type='file'] { width: 90%; }
|
208
|
+
img.avatar {
|
209
|
+
float: left;
|
210
|
+
width: auto;
|
211
|
+
max-width: 30%;
|
212
|
+
_max-width: none;
|
213
|
+
margin-right: 1em; }
|
214
|
+
div#identity img.avatar {
|
215
|
+
float: none;
|
216
|
+
margin: 0 auto;
|
217
|
+
display: block;
|
218
|
+
max-width: 90%;
|
219
|
+
_max-width: none;
|
220
|
+
width: expression((offsetWidth > document.body.offsetWidth*0.3) ? "100%" : offsetWidth); }
|
221
|
+
div#identity:hover form.setAvatar { display: block; }
|
222
|
+
|
223
|
+
div.listByDate ul, div.listByVote ul {
|
224
|
+
margin: 0 3px;
|
225
|
+
padding: 0; }
|
226
|
+
div#listByDate li.boxLine, div#listByVote li.boxLine {
|
227
|
+
background: none;
|
228
|
+
border-bottom: solid 1px #fd8; }
|
229
|
+
div#listByDate .created_on, div#listByVote .created_on { display: none; }
|
230
|
+
div#listByDate .author, div#listByVote .author { font-size: smaller; }
|
231
|
+
div#listByDate .result, div#listByVote .result {
|
232
|
+
font-weight: bolder;
|
233
|
+
float: right;
|
234
|
+
color: blue; }
|
235
|
+
|
236
|
+
div#subscription + .boxLine + .boxLineR { font-size: smaller; }
|
237
|
+
|
238
|
+
/* _ _
|
239
|
+
___| | |_
|
240
|
+
/ _ \ | __|
|
241
|
+
| __/ | |_
|
242
|
+
\___|_|\__| */
|
243
|
+
body > ul {
|
244
|
+
margin: 0;
|
245
|
+
padding: 0;
|
246
|
+
background: white; }
|
247
|
+
|
248
|
+
body > ul > .elt { background: none; }
|
249
|
+
|
250
|
+
.parent {
|
251
|
+
left: 4%;
|
252
|
+
margin-top: -2em;
|
253
|
+
position: absolute;
|
254
|
+
font-style: italic;
|
255
|
+
font-weight: bolder; }
|
256
|
+
.parent a:link, .parent a:visited { color: white; background: transparent; }
|
257
|
+
.parent a:hover, .parent a:active { color: #ffa500; background: transparent; }
|
258
|
+
|
259
|
+
.elt {
|
260
|
+
margin: 0;
|
261
|
+
clear: left;
|
262
|
+
width: 100%;
|
263
|
+
_width: auto;
|
264
|
+
margin-top: 1px;
|
265
|
+
list-style-type: none;
|
266
|
+
background: url(/images/eltBackground.jng) repeat-x;
|
267
|
+
/* So that IE doesn't go into some strange mode */
|
268
|
+
_background: none; }
|
269
|
+
|
270
|
+
.titled { margin-top: 1em; }
|
271
|
+
|
272
|
+
.author {
|
273
|
+
color: #888;
|
274
|
+
font-style: italic;
|
275
|
+
font-weight: bolder; }
|
276
|
+
|
277
|
+
.created_on {
|
278
|
+
float: right;
|
279
|
+
font-size: smaller; }
|
280
|
+
|
281
|
+
.position { display: none; }
|
282
|
+
#form:hover .position { display: inline; }
|
283
|
+
|
284
|
+
a.readMore { font-style: italic; }
|
285
|
+
div.tooLarge { display: none; }
|
286
|
+
body > ul > .elt > form a.readMore { display: none; }
|
287
|
+
body > ul > .elt > form div.tooLarge { display: block; }
|
288
|
+
|
289
|
+
/* _
|
290
|
+
_ __ ___ _ __ | |_ _
|
291
|
+
| '__/ _ \ '_ \| | | | |
|
292
|
+
| | | __/ |_) | | |_| |
|
293
|
+
|_| \___| .__/|_|\__, |
|
294
|
+
|_| |___/ */
|
295
|
+
blockquote {
|
296
|
+
margin: 0 1%;
|
297
|
+
padding: 0 1%;
|
298
|
+
font-size: smaller;
|
299
|
+
border-left: solid thin blue;
|
300
|
+
background: #ddd url("/images/eltBackground.jng") repeat-x;
|
301
|
+
/* So that IE doesn't go into some strange mode */
|
302
|
+
_background: #ddd; }
|
303
|
+
|
304
|
+
blockquote > p {
|
305
|
+
margin: 0;
|
306
|
+
padding: 0.5em 0; }
|
307
|
+
|
308
|
+
/* To make sure it is still readable */
|
309
|
+
blockquote blockquote blockquote { font-size: x-small; }
|
310
|
+
|
311
|
+
.eltQuickAdd { margin-left: 1em; }
|
312
|
+
|
313
|
+
/* _ _
|
314
|
+
___| |__ ___ (_) ___ ___
|
315
|
+
/ __| '_ \ / _ \| |/ __/ _ \
|
316
|
+
| (__| | | | (_) | | (_| __/
|
317
|
+
\___|_| |_|\___/|_|\___\___| */
|
318
|
+
.choice {
|
319
|
+
float: right;
|
320
|
+
text-align: right;
|
321
|
+
margin-top: -1.2em;
|
322
|
+
padding-right: 64px;
|
323
|
+
_padding-right: 0px;
|
324
|
+
white-space: nowrap; }
|
325
|
+
.choice form { display: inline; }
|
326
|
+
/* Important, no "display: none", or IE can't manage event */
|
327
|
+
.choice input {
|
328
|
+
position: absolute;
|
329
|
+
left: -100em; }
|
330
|
+
.choice label { cursor: pointer; }
|
331
|
+
.choice img { margin-bottom: -4px; }
|
332
|
+
.result { color: blue; }
|
333
|
+
label.selected, .choice label:hover { border: solid 3px; }
|
334
|
+
.choice label:hover { border-color: cyan; }
|
335
|
+
.choice label.selected { border-color: yellow; }
|
336
|
+
.choice label.selected:hover { border-color: magenta; }
|
337
|
+
.choices {
|
338
|
+
right: 0;
|
339
|
+
z-index: 10;
|
340
|
+
background: white;
|
341
|
+
position: absolute;
|
342
|
+
border: solid 5px pink; }
|
343
|
+
.closeChoices {
|
344
|
+
font-size: larger;
|
345
|
+
font-weight: bolder;
|
346
|
+
font-family: sans-serif; }
|
347
|
+
.choices .created_on, .choices caption { display: none; }
|
348
|
+
.personalChoice { display: inline; margin-right: 1em; }
|
349
|
+
|
350
|
+
/* _
|
351
|
+
___ _ _| |__
|
352
|
+
/ __| | | | '_ \
|
353
|
+
\__ \ |_| | |_) |
|
354
|
+
|___/\__,_|_.__/ */
|
355
|
+
.eltSub, .eltNew {
|
356
|
+
margin-left: 1%;
|
357
|
+
padding-left: 1%;
|
358
|
+
border-left: solid 0.4em #fd8;
|
359
|
+
border-bottom: solid 1px #fd8; }
|
360
|
+
|
361
|
+
.eltMore {
|
362
|
+
display: block;
|
363
|
+
margin-left: 3%; }
|
364
|
+
|
365
|
+
li.pager {
|
366
|
+
text-align: center;
|
367
|
+
list-style-type: none; }
|
368
|
+
|
369
|
+
.icon {
|
370
|
+
color: orange;
|
371
|
+
margin-right: 0.5em;
|
372
|
+
font-weight: bolder;
|
373
|
+
letter-spacing: -5px;
|
374
|
+
text-decoration: none; }
|
375
|
+
.icon:hover, .icon:active { color: #f0f; }
|
376
|
+
|
377
|
+
.pageCount { margin: 0 2em; }
|
378
|
+
|
379
|
+
.eltNew {
|
380
|
+
background: url("/images/eltBackground.jng") repeat-x;
|
381
|
+
/* So that IE doesn't go into some strange mode */
|
382
|
+
_background: none; }
|
383
|
+
.eltNewButtons { text-align: right; }
|
384
|
+
|
385
|
+
/* _
|
386
|
+
__ _____ _ __ ___(_) ___ _ __
|
387
|
+
\ \ / / _ \ '__/ __| |/ _ \| '_ \
|
388
|
+
\ V / __/ | \__ \ | (_) | | | |
|
389
|
+
\_/ \___|_| |___/_|\___/|_| |_| */
|
390
|
+
.version {
|
391
|
+
/* To make sure the sidebar is not the last element at the bottom */
|
392
|
+
clear: right;
|
393
|
+
text-align: center; }
|
394
|
+
.version > * + * { display: none; }
|
395
|
+
.version:hover > * + * { display: inline; }
|
396
|
+
.version > a {
|
397
|
+
color: #aaa;
|
398
|
+
font-size: smaller; }
|
399
|
+
|
400
|
+
/* _ _
|
401
|
+
| | ___ __ ___ | |__
|
402
|
+
| |/ / '_ \ / _ \| '_ \
|
403
|
+
| <| | | | (_) | |_) |
|
404
|
+
|_|\_\_| |_|\___/|_.__/ */
|
405
|
+
.knobOpened, .knobClosed {
|
406
|
+
font-family: sans-serif;
|
407
|
+
border: solid 1px #fd8;
|
408
|
+
text-decoration: none;
|
409
|
+
font-weight: bolder;
|
410
|
+
position: absolute;
|
411
|
+
background: white;
|
412
|
+
margin-left: -2%; }
|
413
|
+
.knobOpened:link, .knobOpened:visited, .knobClosed:link, .knobClosed:visited {
|
414
|
+
color: orange; }
|
415
|
+
|
416
|
+
.closed ul.eltSub, .closed ul.eltNew { display: block; }
|
417
|
+
|
418
|
+
.knobClosed, .closed .knobOpened, .opened .knobClosed, .closed .opened .knobClosed,
|
419
|
+
.closed p, .closed pre, .closed blockquote, .closed ol, .closed hr, .closed ul,
|
420
|
+
.closed img, .closed label, .closed .result, .closed div.tooLarge,
|
421
|
+
.closed .eltQuickAdd, .closed .author {
|
422
|
+
display: none; }
|
423
|
+
.knobOpened, .closed .knobClosed, .opened .knobOpened, .opened p, .opened pre,
|
424
|
+
.opened blockquote, .opened ol, .opened hr, .opened ul, .opened img, .opened div.tooLarge,
|
425
|
+
.opened .eltQuickAdd {
|
426
|
+
display: block; }
|
427
|
+
.opened label, .opened .result, .opened .author { display: inline; }
|
428
|
+
|
429
|
+
.closed { color: #ddd; }
|
430
|
+
.closed .opened { color: black; }
|
431
|
+
|
432
|
+
/* _ _
|
433
|
+
_ __ ___ ___ ____ | |__ ___ _ __ __| | ___ _ __
|
434
|
+
| '_ ` _ \ / _ \_ /____| '_ \ / _ \| '__/ _` |/ _ \ '__|
|
435
|
+
| | | | | | (_) / /_____| |_) | (_) | | | (_| | __/ |
|
436
|
+
|_| |_| |_|\___/___| |_.__/ \___/|_| \__,_|\___|_| */
|
437
|
+
body { -moz-border-radius: 1em 0 1em 1em; }
|
438
|
+
input, textarea, input[type='button'], input[type='submit'], blockquote {
|
439
|
+
-moz-border-radius: 0 1em 1em 0; }
|
440
|
+
.links { -moz-border-radius: 1em 1em 0 0; }
|
441
|
+
.box, .sidebar, .choices { -moz-border-radius: 0 0 1em 1em; }
|
442
|
+
.login { -moz-border-radius: 1em; }
|
443
|
+
.eltSub { -moz-border-radius: 0 0 0 1em; }
|
444
|
+
.choice label { -moz-border-radius: 1em; }
|
445
|
+
|
446
|
+
/* _
|
447
|
+
|_)_.._| _ ._ _ _ .__|_
|
448
|
+
| (_|| |(/_| | |(/_| ||_ */
|
449
|
+
|