Initial copy of the website of the Nuit 2018 event.

This commit is contained in:
Daru13 2019-04-14 03:08:24 +02:00
parent b8531290bd
commit 18cfb74336
42 changed files with 5744 additions and 2 deletions

2
.gitattributes vendored
View file

@ -1,2 +0,0 @@
# Auto detect text files and perform LF normalization
* text=auto

350
css/calendar.css Normal file
View file

@ -0,0 +1,350 @@
/* Calendar */
#cal-container {
position: relative;
width: 100%;
/* height: 1200px; */
padding: 0;
font-size: 0.8rem;
line-height: 100%;
}
#cal-container,
#cal-container * {
box-sizing: border-box;
}
/* Time slots */
#cal-container .cal-time-slot-container {
display: grid;
/* grid-template-columns: repeat(24, 1fr); */
grid-template-rows: 30px auto;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: calc(100% + 30px);
padding: 0;
border-bottom: 2px solid #928c79;
z-index: 10;
}
#cal-container .cal-time-slot {
border-right: 1px solid #928c79;
background-color: rgba(255, 223, 165, 0.08);
}
/* #cal-container .cal-time-slot:hover {
background-color: red;
} */
#cal-container .cal-time-slot:nth-child(even) {
background-color: rgba(255, 223, 165, 0.05);
}
/* #cal-container .cal-time-slot:nth-child(even):hover {
background-color: #D9D9D9;
} */
#cal-container .cal-time-slot:last-child {
border-right: 0;
}
#cal-container .cal-time-slot-hour {
padding: 0 0 0 calc(100% - 0.9rem + 7px);
background-color: none; /* rgba(255, 223, 165, 0.08); */
border-bottom: 2px solid #928c79;
font-size: 0.9rem;
}
#cal-container .cal-time-slot-hour:nth-child(even) {
background-color: none;/* rgba(255, 223, 165, 0.05);*/
}
#cal-container .cal-time-slot-hour:first-child {
color: transparent;
border-right: 0;
}
#cal-container .cal-time-slot-hour.cal-last-hour {
padding: 0;
color: transparent;
}
#cal-container .cal-time-slot.cal-last-hour,
#cal-container .cal-time-slot-hour.cal-last-hour {
border-right: 1px solid #928c79;
}
#cal-container .cal-time-slot.cal-first-hour,
#cal-container .cal-time-slot-hour.cal-first-hour {
border-left: 1px solid #928c79;
}
/* Events */
#cal-container .cal-event-container {
display: grid;
/* grid-template-columns: repeat(24, 1fr); */
/* grid-template-rows: repeat(12, auto); */
position: absolute;
top: 40px;
left: 0;
width: 100%;
/* height: 100%; */
padding: 0;
z-index: 100;
}
#cal-container .cal-event {
position: relative;
height: 42px;
margin: 2px 0;
padding: 5px;
/* background-color: #EFEFEF; */
border-radius: 3px;
/* border: 1px solid #CCC; */
border-width: 1px;
border-style: solid;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
/* z-index: 500; */
transition: 50ms ease-in;
}
#cal-container .cal-event > * {
display: none;
margin: 5px;
overflow: hidden;
}
#cal-container .cal-event > .cal-event-name,
#cal-container .cal-event > .cal-event-location,
#cal-container .cal-event > .cal-event-perm-count {
display: block;
margin: 0;
}
#cal-container .cal-event > .cal-event-name {
font-weight: 700;
}
#cal-container .cal-event > .cal-event-location {
font-weight: 300;
font-style: italic;
}
/*#cal-container .cal-event > .cal-event-location::before {
content: " · ";
}*/
#cal-container .cal-event > .cal-event-perm-count {
position: absolute;
bottom: 0;
right: 0;
}
#cal-container .cal-event:not(.cal-event-subscribed) > .cal-event-perm-count.cal-perms-missing {
width: calc(100% - 10px);
right: auto;
margin: 5px;
padding: 5px;
background-color: #FFF;
border: 2px solid #E44;
color: #E44;
font-weight: bold;
border-radius: 3px;
overflow: hidden;
}
#cal-container .cal-event.cal-event-subscribed {
border-width: 3px;
border-color: #000;
}
#cal-container .cal-event.cal-event-subscribed::after {
content: "✔";
position: absolute;
left: 0;
bottom: 0;
width: 16px;
height: 16px;
padding: 1px;
color: #fff;
background-color: #000;
border-top-right-radius: 3px;
}
/* Event details popup */
#cal-container .cal-event-details {
position: absolute;
min-height: 100px;
/* min-width: 40%; */
max-width: 80%;
padding: 20px;
background-color: #333;
color: #FFF;
border-radius: 4px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
z-index: 1000;
}
#cal-container .cal-event-details:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-bottom-color: #333;
border-width: 20px;
margin-left: -20px;
}
#cal-container .cal-event-details.above-event:after {
top: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-top-color: #333;
border-width: 20px;
margin-left: -20px;
}
#cal-container .cal-event-details * {
z-index: 1000;
}
#cal-container .cal-event-details .cal-detail-close-button {
width: 35px;
height: 35px;
position: absolute;
top: 10px;
right: 10px;
margin: 0;
padding: 5px;
background: transparent;
border: none;
border-radius: 50%;
font-size: 1.2rem;
color: #BBB;
transition: 100ms ease-out;
}
#cal-container .cal-event-details .cal-detail-close-button:hover {
background-color: #484848;
color: #EFEFEF;
}
#cal-container .cal-event-details a,
#cal-container .cal-event-details a:hover {
color: #FFF;
text-decoration: none;
}
#cal-container .cal-event-details .cal-detail-name {
padding: 10px;
border-radius: 4px;
font-size: 1rem;
color: #FFF;
text-transform: uppercase;
text-align: center;
}
#cal-container .cal-event-details .cal-detail-name h3 {
margin: 0 20px 20px 20px;
}
#cal-container .cal-event-details table {
margin: 0 auto;
}
#cal-container .cal-event-details td.cal-detail-label {
padding: 0 10px 10px 0;
font-weight: bold;
text-align: right;
}
#cal-container .cal-event-details td.cal-detail-value {
padding: 0 0 10px 10px;
text-align: left;
}
#cal-container .cal-event-details .cal-detail-perm-area {
margin: 10px 0;
padding: 10px;
background-color: #DFDFDF;
color: #333;
text-align: center;
border-radius: 4px;
}
#cal-container .cal-event-details .cal-detail-perm-title {
margin: 0 0 10px 0;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count {
margin: 0 10px 0 0;
font-size: 1.7rem;
vertical-align: middle;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count.cal-perms-missing {
color: #E44;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-count.cal-perms-full {
color: #393;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-subscription-switch {
margin: 0 0 0 10px;
padding: 10px;
font-size: 1.35rem;
vertical-align: middle;
}
#cal-container .cal-event-details .cal-detail-perm-area .cal-detail-perm-nb-missing-perms {
margin: 20px 0 0 0;
padding: 5px;
background-color: #FFF;
border-radius: 4px;
text-align: center;
font-size: 1.1rem;
color: #E44;
font-weight: bold;
}
#cal-container .cal-event-details .cal-detail-description {
margin: 20px 0 0 0;
color: #DDD;
font-size: 0.9rem;
font-style: italic;
text-align: justify;
line-height: 130%;
}
#cal-container .cal-event-details .cal-detail-tag {
display: inline-block;
margin: 5px;
padding: 5px;
border: 1px solid #DDD;
}

349
css/normalize.css vendored Normal file
View file

@ -0,0 +1,349 @@
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
margin: 0;
}
/**
* Render the `main` element consistently in IE.
*/
main {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input { /* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
text-transform: none;
}
/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
display: none;
}
/**
* Add the correct display in IE 10.
*/
[hidden] {
display: none;
}

660
css/style.css Normal file
View file

@ -0,0 +1,660 @@
/*--------------------------------------------------------*/
/* FONTS
/*--------------------------------------------------------*/
/* roboto-300 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'),
url('../fonts/roboto-v18-latin-300.woff2') format('woff2'),
url('../fonts/roboto-v18-latin-300.woff') format('woff');
}
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'),
url('../fonts/roboto-v18-latin-regular.woff2') format('woff2'),
url('../fonts/roboto-v18-latin-regular.woff') format('woff');
}
/* roboto-italic - latin */
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: local('Roboto Italic'), local('Roboto-Italic'),
url('../fonts/roboto-v18-latin-italic.woff2') format('woff2'),
url('../fonts/roboto-v18-latin-italic.woff') format('woff');
}
/* roboto-700 - latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'),
url('../fonts/roboto-v18-latin-700.woff2') format('woff2'),
url('../fonts/roboto-v18-latin-700.woff') format('woff');
}
/*--------------------------------------------------------*/
/* GENERAL RULES
/*--------------------------------------------------------*/
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html, body {
font-family: "Roboto", serif;
font-weight: 300;
line-height: 180%;
color: #FFFBEA;
font-size: 18px;
}
body {
background-color: #132B46;
}
a,
a:hover,
a:active,
a:visited {
color: #FFFBEA;
text-decoration: none;
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 480px) {
html {
font-size: 16px;
}
}
/*--------------------------------------------------------*/
/* HEADER
/*--------------------------------------------------------*/
#main-header {
height: 720px;
position: relative;
background: #6d93bb;
background: linear-gradient(to bottom, #134189 0%, #6d93bb 99%, #132B46 100%);
}
#main-header-title {
height: 45%;
width: 45%;
position: absolute;
top: 60px;
left: 5%;
z-index: 1000;
}
#main-header-moon {
height: 25%;
width: 25%;
position: absolute;
top: 80px;
right: 0px;
z-index: 100;
}
#main-header-clouds {
width: 100%;
position: absolute;
bottom: 15%;
object-fit: cover;
mix-blend-mode: lighten;
z-index: 200;
}
#main-header-background-city {
width: 100%;
position: absolute;
bottom: 0;
object-fit: cover;
z-index: 500;
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 1200px) {
#main-header {
height: 650px;
}
#main-header-moon {
height: 20%;
width: 20%;
right: 50px;
}
#main-header-clouds {
bottom: 12%;
}
}
@media only screen and (max-width: 880px) {
#main-header {
height: 500px;
}
#main-header-title {
height: 60%;
width: 60%;
left: 20%;
top: 20px;
}
#main-header-moon {
display: none;
}
#main-header-clouds {
bottom: 10%;
}
}
@media only screen and (max-width: 480px) {
#main-header {
height: 350px;
}
/*
#main-header-title {
height: 75%;
width: 75%;
}*/
}
@media only screen and (max-width: 360px) {
#main-header {
height: 300px;
}
#main-header-title {
height: 70%;
width: 70%;
left: 15%;
top: 5%;
}
}
/*--------------------------------------------------------*/
/* CONTENT
/*--------------------------------------------------------*/
section {
max-width: 960px;
margin: 0 0 100px calc(50% - 480px);
padding: 0 60px;
text-align: justify;
}
section h2 {
margin: 0 0 25px 0;
padding: 0 0 15px 0;
background: radial-gradient(ellipse at bottom, rgba(255, 223, 165, 0.1) 0%, transparent 70%);
border: none;
border-bottom: 2px solid rgba(255, 223, 165, 0.5);
border-image-source: linear-gradient(to right, transparent 0%, rgba(255, 223, 165, 0.7) 50%, transparent 100%);
border-image-slice: 1;
color: rgb(255, 223, 165);
font-size: 2.1rem;
font-weight: 300;
text-transform: uppercase;
text-align: center;
word-wrap: break-word;
hyphens: auto;
}
section p {
padding: 0 0 20px 0;
font-size: 1rem;
}
section p.stand-out {
font-style: italic;
text-align: center;
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 880px) {
section {
width: 100%;
margin: 0 auto 100px auto;
padding: 0 60px;
}
}
@media only screen and (max-width: 480px) {
section {
padding: 0 30px;
}
section h2 {
font-size: 1.8rem;
}
}
/*--------------------------------------------------------*/
/* BUTTONS
/*--------------------------------------------------------*/
.button {
display: block;
width: 80%;
margin: 20px auto 0 auto;
padding: 15px 20px;
background-color: rgba(255, 223, 165, 0.1);
border: 2px solid rgba(255, 223, 165, 0.7);
color: rgb(255, 223, 165);
font-size: 1.4rem;
font-weight: 400;
text-transform: uppercase;
text-align: center;
line-height: 32px;
vertical-align: middle;
}
.button:hover {
background-color: rgba(255, 223, 165, 0.2);
}
.button img {
height: 32px;
width: 32px;
margin: 0 5px;
}
.button > * {
vertical-align: middle;
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 480px) {
.button {
width: 100%;
padding: 10px 15px;
font-size: 1.1rem;
line-height: 24px;
}
.button img {
height: 24px;
width: 24px;
}
}
/*--------------------------------------------------------*/
/* PRICE TABLE
/*--------------------------------------------------------*/
table.prices {
max-width: 460px;
width: 100%;
margin: 20px auto;
border-collapse: collapse;
}
table.prices th,
table.prices td {
padding: 8px 0;
font-size: 1.3rem;
text-align: center;
vertical-align: middle;
}
table.prices th {
color: rgb(255, 223, 165);
}
table.prices td {
background-color: rgba(255, 223, 165, 0.05);
border-top: 2px solid rgba(255, 223, 165, 0.5);
border-bottom: 2px solid rgba(255, 223, 165, 0.5);
}
table.prices tr:nth-child(odd) td {
background-color: rgba(255, 223, 165, 0.08);
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 480px) {
table.prices th,
table.prices td {
padding: 5px 0;
font-size: 1.1rem;
}
}
/*--------------------------------------------------------*/
/* LOCATION
/*--------------------------------------------------------*/
#mailing-address {
font-size: 1.5rem;
text-align: center;
}
#mailing-address img {
width: 32px;
height: 32px;
vertical-align: bottom;
}
#interactive-map {
width: 100%;
margin: 0 0 20px 0;
border: none;
border-radius: 10px;
}
#public-transport-info {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr;
margin: 0 0 0 -100px;
font-size: 1.5rem;
font-weight: 300;
line-height: 48px;
vertical-align: middle;
white-space: nowrap;
}
#public-transport-info > * {
margin: 5px;
justify-self: left;
}
#public-transport-info img {
width: 48px;
height: 48px;
margin: 0 5px 0 0;
vertical-align: bottom;
}
#transport-metro-icon,
#transport-metro-stop,
#transport-bus-icon,
#transport-bus-stop {
grid-row: 1;
}
#transport-rer-icon,
#transport-rer-stop,
#transport-noctilien-icon,
#transport-noctilien-stop {
grid-row: 2;
}
#transport-metro-icon,
#transport-rer-icon {
grid-column: 1;
justify-self: end;
}
#transport-metro-stop,
#transport-rer-stop {
grid-column: 2;
}
#transport-bus-icon,
#transport-noctilien-icon {
grid-column: 3;
justify-self: end;
}
#transport-bus-stop,
#transport-noctilien-stop {
grid-column: 4;
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 880px) {
#public-transport-info {
display: grid;
grid-template-columns: 4fr 6fr;
grid-template-rows: 1fr 1fr 1fr 1fr;
align-items: center;
margin: 0;
line-height: 48px;
}
#transport-metro-icon,
#transport-metro-stop {
grid-row: 1;
}
#transport-bus-icon,
#transport-bus-stop {
grid-row: 2;
}
#transport-rer-icon,
#transport-rer-stop {
grid-row: 3;
}
#transport-noctilien-icon,
#transport-noctilien-stop {
grid-row: 4;
}
#transport-metro-icon,
#transport-rer-icon,
#transport-bus-icon,
#transport-noctilien-icon {
grid-column: 1;
justify-self: end;
}
#transport-metro-stop,
#transport-rer-stop,
#transport-bus-stop,
#transport-noctilien-stop {
grid-column: 2;
}
}
@media only screen and (max-width: 580px) {
#public-transport-info {
line-height: 32px;
}
}
@media only screen and (max-width: 480px) {
#mailing-address {
font-size: 1.1rem;
}
#public-transport-info {
font-size: 1.1rem;
}
#public-transport-info img {
width: 32px;
height: 32px;
}
}
@media only screen and (max-width: 320px) {
#public-transport-info img {
display: block;
}
}
/*--------------------------------------------------------*/
/* SPONSORS
/*--------------------------------------------------------*/
#sponsors {
text-align: center;
}
#sponsors img {
height: 100px;
object-fit: cover;
margin: 20px;
}
#sponsors img.sponsor-disc {
height: 155px;
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 480px) {
#sponsors img {
height: 40px;
margin: 5px;
}
#sponsors img.sponsor-disc {
height: 60px;
}
}
/*--------------------------------------------------------*/
/* CONTACT
/*--------------------------------------------------------*/
#contact-email {
font-family: monospace;
font-size: 1.5rem;
text-align: center;
word-wrap: break-word;
}
#contact-email img {
width: 32px;
height: 32px;
vertical-align: bottom;
}
/*--------------------------------------------------------*/
@media only screen and (max-width: 480px) {
#contact-email {
font-size: 0.9rem;
}
#contact-email img {
display: none;
}
}

109
css/tipso.css Normal file
View file

@ -0,0 +1,109 @@
/* Tipso Bubble Styles */
.tipso_bubble, .tipso_bubble > .tipso_arrow{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.tipso_bubble {
position: absolute;
text-align: center;
border-radius: 6px;
z-index: 9999;
}
.tipso_style{
/* cursor: help; */
/* border-bottom: 1px dotted; */
}
.tipso_title {
padding: 0;
border-radius: 6px 6px 0 0;
font-weight: 700;
}
.tipso_content {
word-wrap: break-word;
padding: 0;
font-style: italic;
}
/* Tipso Bubble size classes - Similar to Foundation's syntax*/
.tipso_bubble.tiny {
font-size: 0.6rem;
}
.tipso_bubble.small {
font-size: 0.8rem;
}
.tipso_bubble.default {
font-size: 1rem;
}
.tipso_bubble.large {
font-size: 1.2rem;
width: 100%;
}
.tipso_bubble.cal_small {
font-size: 0.7rem;
}
/* Tipso Bubble Div */
.tipso_bubble > .tipso_arrow{
position: absolute;
width: 0; height: 0;
border: 8px solid;
pointer-events: none;
}
.tipso_bubble.top > .tipso_arrow {
border-top-color: #000;
border-right-color: transparent;
border-left-color: transparent;
border-bottom-color: transparent;
top: 100%;
left: 50%;
margin-left: -8px;
}
.tipso_bubble.bottom > .tipso_arrow {
border-bottom-color: #000;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
bottom: 100%;
left: 50%;
margin-left: -8px;
}
.tipso_bubble.left > .tipso_arrow {
border-left-color: #000;
border-top-color: transparent;
border-bottom-color: transparent;
border-right-color: transparent;
top: 50%;
left: 100%;
margin-top: -8px;
}
.tipso_bubble.right > .tipso_arrow {
border-right-color: #000;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
top: 50%;
right: 100%;
margin-top: -8px;
}
.tipso_bubble .top_right_corner,
.tipso_bubble.top_right_corner {
border-bottom-left-radius: 0;
}
.tipso_bubble .bottom_right_corner,
.tipso_bubble.bottom_right_corner {
border-top-left-radius: 0;
}
.tipso_bubble .top_left_corner,
.tipso_bubble.top_left_corner {
border-bottom-right-radius: 0;
}
.tipso_bubble .bottom_left_corner,
.tipso_bubble.bottom_left_corner {
border-top-right-radius: 0;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,392 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg version="1.1" baseProfile="tiny" id="Arrière-plan"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1024px" height="400px"
viewBox="0 0 1024 400" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="512.4526" y1="122" x2="512.4526" y2="388.0865">
<stop offset="0" style="stop-color:#11162D"/>
<stop offset="1" style="stop-color:#132B46"/>
</linearGradient>
<path fill-rule="evenodd" fill="url(#SVGID_1_)" d="M1024.906,400V266.727c-1.291,0.018-2.494,0.025-3.67-0.064
c-1.508-0.117-2.703-0.729-2.537-2.413c0.114-1.146,0.022-2.308,0.022-3.462c-0.221-0.065-0.439-0.132-0.659-0.199
c-1.022,1.477-2.046,2.949-3.289,4.739c-0.085-1.688-0.154-3.083-0.222-4.464c-0.944,0-1.728,0-2.511,0
c-0.263,1.743-0.508,3.352-0.749,4.962c-0.238,0.035-0.473,0.072-0.708,0.108c-0.234-1.001-0.468-2.002-0.815-3.496
c-0.624,0.789-1.06,1.296-1.436,1.837c-0.261,0.373-0.313,0.962-0.671,1.165c-1.475,0.829-2.724,1.869-4.847,1.73
c-3.9-0.251-7.837-0.07-11.764-0.07c-1.616,0-3.237,0-4.342,0c-0.912-1.7-1.595-2.969-2.308-4.293c-0.815,0-1.692,0-2.705,0
c-0.06,0.636-0.112,1.198-0.165,1.78c-0.945,0-1.728,0-2.518,0c-0.112-0.808-0.211-1.498-0.306-2.167c-1.797,0-3.433,0-5.111,0
c-0.1,0.793-0.187,1.493-0.272,2.194c-0.206,0.063-0.414,0.125-0.62,0.188c-0.317-0.663-0.637-1.329-0.946-1.978
c-2.403,0-4.788,0-7.235,0c-0.082,0.792-0.158,1.487-0.254,2.377c-2.292,0-4.432,0-6.648,0c0,3.668-0.077,7.116,0.039,10.56
c0.046,1.386-0.315,2.454-1.596,3.248c-1.361,0.845-1.758,1.981-1.646,3.428c0.14,1.752,0.034,3.519,0.034,5.269
c-6.955,0-13.568,0-20.276,0c-0.084-0.914-0.16-1.742-0.248-2.69c-0.756,0.045-1.385,0.085-2.054,0.125
c-0.047,0.925-0.087,1.698-0.133,2.545c-3.324,0-6.521,0-10.035,0c0-5.135,0-10.159,0-15.183c-0.42,0.364-0.84,0.731-1.259,1.098
c-0.62-0.631-1.24-1.261-1.86-1.892c0.361-0.363,0.726-0.728,1.089-1.093c-1.182,0-2.363,0-3.613,0
c-0.081-0.69-0.153-1.249-0.253-2.07c-2.594,0.891-6.026-1.581-7.478,2.106c-4.466-2.061-4.466-2.061-5.441,0.439
c-0.71-0.03-1.441-0.063-2.198-0.097c-0.102-0.683-0.188-1.257-0.274-1.829c-0.208-0.116-0.418-0.229-0.628-0.345
c-0.666,0.779-1.331,1.557-2.395,2.802c-1.105,0.476-4.253-1.54-4.812,1.773c-2.681,0.642-5.36,1.285-7.813,1.875
c-0.604-2.138-1.063-3.755-1.508-5.333c-3.972,0-7.657,0-10.925,0c-2.685,1.731-2.025,4.033-2.094,6.181
c-0.012,0.464,0.08,0.946-0.037,1.387c-0.089,0.327-0.372,0.778-0.683,0.867c-3.006,0.849-6.037,1.634-9.345,2.512
c0-6.396,0-12.406,0-18.571c-3.733,0-7.438,0-11.133,0l-1.137-5.724h-26.148c-1.443-1-3.292-0.367-4.891-0.713
c-2.3-0.498-4.652-0.744-6.962-1.187c-0.287-0.054-0.687-0.646-0.671-0.977c0.096-2.345,0.294-4.681,0.444-7.02
c0.012-0.21-0.072-0.427-0.112-0.638c-0.306-1.637-0.813-3.264-0.873-4.908c-0.132-3.602-0.004-7.215-0.042-10.819
c-0.045-4.578-0.271-9.158-0.181-13.732c0.038-1.943,0.722-3.868,1.015-5.816c0.087-0.567-0.142-1.188-0.259-1.78
c-0.175-0.895-0.433-1.777-0.557-2.681c-0.14-1.021,0.031-1.783,1.29-2.177c0.623-0.196,0.988-1.206,1.589-2.003
c-0.63-0.174-1.044-0.36-1.473-0.392c-1.271-0.104-1.543-0.833-1.433-1.961c0.141-1.426,0.23-2.862,0.232-4.294
c0-0.271-0.491-0.746-0.795-0.781c-2.885-0.328-5.778-0.588-8.672-0.847c-0.59-0.052-1.2,0.049-1.787-0.027
c-2.528-0.326-2.887-0.939-2.814-3.637c0.069-2.466-0.163-4.938-0.158-7.408c0.002-2.138,0.114-4.278,0.255-6.413
c0.03-0.427,0.385-0.862,0.667-1.235c0.33-0.433,0.742-0.802,1.162-1.243c-0.992-1.022-2.042-1.769-2.608-2.787
c-0.492-0.886-0.499-2.07-0.612-3.134c-0.654-6.107-2.298-11.912-5.046-17.419c-3.619-7.247-8.735-13.243-15.006-18.295
c-1.102-0.886-2.289-1.665-3.441-2.485c-0.557-0.393-1.172-0.688-0.856-1.621c0.054-0.161-0.756-0.865-1.195-0.893
c-1.145-0.072-1.867-0.651-2.061-1.645c-0.137-0.708-0.083-1.714,0.331-2.22c1.498-1.828,1.53-3.915,1.281-6.031
c-0.044-0.366-1.01-0.838-1.58-0.879c-0.942-0.071-1.154-0.341-1.427-1.31c-0.979-3.481-0.362-6.988-0.435-10.471
c-0.038-1.766,0.525-3.542,0.851-5.504c-0.758-1.174-1.657-2.686-2.68-4.106c-0.708-0.985-1.6-1.835-2.384-2.769
c-0.224-0.265-0.453-0.59-0.509-0.917c-0.32-1.841-0.771-3.617-1.978-5.118c-1.034-1.286-0.262-2.596,0.002-3.894
c0.07-0.336,0.268-0.739,0.155-1.005c-1.248-2.931-0.515-6.004-0.615-9.007c-0.014-0.399,0.924-0.832,1.455-1.274
c-1.719,0.166-1.566-1.069-1.535-2.273c0.01-0.389-0.164-0.783-0.255-1.174c-0.184,0-0.365,0-0.549,0
c-0.091,0.391-0.264,0.785-0.255,1.174c0.033,1.204,0.185,2.439-1.777,2.297c1.761,0.689,1.764,0.689,1.761,2.63
c-0.002,1.996-0.008,3.992-0.016,5.989c0,0.09,0.019,0.211-0.032,0.267c-1.225,1.398-0.182,2.809-0.063,4.222
c0.05,0.601,0.054,1.381-0.272,1.808c-1.265,1.643-1.826,3.501-2.122,5.496c-0.043,0.279-0.311,0.535-0.498,0.783
c-1.074,1.434-2.159,2.861-3.238,4.293c-0.706,0.938-1.407,1.879-1.854,2.476c0.344,2.019,0.804,3.735,0.893,5.471
c0.145,2.749,0.095,5.508,0.012,8.261c-0.031,1.054-0.327,2.109-0.607,3.135c-0.06,0.218-0.559,0.409-0.877,0.449
c-2.072,0.268-1.954,0.262-2.104,2.315c-0.138,1.897,0.441,3.419,1.619,4.842c0.923,1.113,0.04,3.203-1.401,3.612
c-0.812,0.229-2.263-0.095-1.683,1.655c0.054,0.167-0.404,0.58-0.694,0.772c-4.721,3.13-8.861,6.911-12.446,11.283
c-4.027,4.915-7.173,10.38-8.986,16.469c-1.142,3.848-1.73,7.86-2.548,11.802c-0.179,0.867,0.315,1.848-0.921,2.474
c-0.732,0.37-1.148,1.368-1.813,2.22c-0.002-0.025-0.037,0.231,0.065,0.315c2.591,2.082,1.609,5.041,1.768,7.65
c0.162,2.684-0.098,5.395-0.17,8.093c-0.004,0.137,0.018,0.273,0.034,0.41c0.311,2.5-0.429,3.349-3.082,3.518
c-2.952,0.189-5.91,0.361-8.864,0.563c-0.492,0.033-1.04,0.067-1.442,0.304c-0.316,0.185-0.634,0.683-0.634,1.041
c0,1.618,0.161,3.235,0.139,4.851c-0.006,0.324-0.504,0.747-0.874,0.935c-0.504,0.259-1.102,0.335-1.803,0.526
c0.498,1.03,0.723,2.092,2.048,2.329c0.261,0.048,0.646,0.556,0.617,0.813c-0.146,1.363,0.272,2.835-0.824,4.047
c-0.239,0.265-0.208,1.002-0.022,1.389c1.098,2.296,1.012,4.722,0.975,7.166c-0.063,4.216-0.061,8.432-0.073,12.648
c-0.011,3.791,0.016,7.581-0.011,11.372c-0.004,0.766,0.025,1.624-0.294,2.279c-1.11,2.283,0.083,4.587-0.213,6.862
c-0.065,0.49,0.001,0.997-0.015,1.495c-0.082,2.299-0.086,2.282-2.451,2.55c-3.115,0.352-6.235,0.688-9.338,1.139
c-0.265,0.039-0.509,0.216-0.751,0.426h-21.835c0-4.696,0-9.392,0-14.086c-10.019,0-20.035,0-30.236,0c0,4.704,0,9.321,0,14.086
h-10.068c0.002-0.095,0.006-0.189,0.004-0.282c-0.068-2.146,0.592-4.448-2.093-6.181c-3.269,0-6.951,0-10.925,0
c-0.445,1.577-0.903,3.197-1.505,5.334c-2.456-0.591-5.134-1.232-7.816-1.874c-0.559-3.315-3.704-1.299-4.81-1.775
c-1.064-1.243-1.729-2.022-2.396-2.801c-0.207,0.115-0.42,0.229-0.628,0.345c-0.084,0.573-0.17,1.146-0.274,1.829
c-0.756,0.033-1.489,0.066-2.197,0.096c-0.977-2.5-0.977-2.5-5.442-0.438c-1.45-3.688-4.882-1.215-7.478-2.106
c-0.101,0.82-0.171,1.38-0.255,2.07c-1.248,0-2.429,0-3.61,0c0.36,0.365,0.726,0.73,1.088,1.093c-0.62,0.631-1.24,1.26-1.859,1.891
c-0.418-0.366-0.84-0.732-1.261-1.098c0,1.297,0,2.599,0,3.898h-35.937c-0.017-0.205-0.023-0.416-0.017-0.638
c0.119-3.443,0.04-6.893,0.04-10.562c-2.215,0-4.355,0-6.649,0c-0.096-0.89-0.17-1.584-0.254-2.375c-2.446,0-4.832,0-7.235,0
c-0.308,0.648-0.628,1.313-0.946,1.977c-0.205-0.063-0.412-0.127-0.619-0.188c-0.085-0.702-0.173-1.401-0.271-2.194
c-1.681,0-3.314,0-5.113,0c-0.095,0.67-0.192,1.359-0.306,2.166c-0.789,0-1.572,0-2.517,0c-0.054-0.581-0.106-1.144-0.165-1.779
c-1.014,0-1.891,0-2.706,0c-0.713,1.322-1.394,2.592-2.308,4.294c-1.104,0-2.724,0-4.342,0c-3.924,0-7.863-0.182-11.763,0.068
c-2.124,0.139-3.371-0.901-4.848-1.73c-0.357-0.202-0.41-0.791-0.669-1.165c-0.377-0.54-0.814-1.048-1.437-1.837
c-0.349,1.495-0.582,2.495-0.814,3.496c-0.236-0.036-0.472-0.072-0.708-0.106c-0.243-1.611-0.485-3.22-0.748-4.963
c-0.785,0-1.567,0-2.512,0c-0.068,1.381-0.137,2.775-0.222,4.463c-1.243-1.79-2.266-3.263-3.289-4.739
c-0.22,0.067-0.439,0.134-0.659,0.2c0,1.154-0.092,2.315,0.021,3.46c0.167,1.686-1.029,2.298-2.537,2.414
c-1.932,0.15-3.891,0.036-6.287,0.036c0.206-3.821,0.412-7.481,0.596-11.145c0.177-3.49,0.348-6.979,0.485-10.47
c0.067-1.688-0.384-3.507,1.869-4.396c-0.135-0.268-0.166-0.466-0.252-0.484c-2.846-0.668-3.745-2.104-2.919-4.607
c0.49-1.487,0.846-2.705-0.612-4.296c-0.818-0.891,0.266-3.172,0.601-4.811c0.078-0.38,0.594-0.692,0.906-1.038
c-0.676-0.303-1.352-0.605-2.225-0.997c-0.122-0.452-0.321-1.203-0.521-1.951c-0.302,0-0.604,0-0.905,0
c0.001,0.934,0.043,1.867,0,2.799c-0.154,3.387-0.335,6.771-0.513,10.247c-0.857,0.064-1.651,0.123-2.726,0.202
c0,1.224,0.428,2.607-0.139,3.513c-0.432,0.688-2.125,0.762-3.661,1.233c0.728,0.387,1.335,0.71,1.948,1.032
c-0.266,0.755-0.55,1.556-0.842,2.382c-2.599-1.202-4.133-3.291-3.918-5.896c0.21-2.574-2.014-2.502-3.563-3.103
c-1.088-0.424-2.875-0.032-3.493-0.658c-0.666-0.673-0.33-2.109-0.438-3.291c-0.81,0-1.537,0-2.569,0
c0,0.767,0.12,1.557-0.041,2.301c-0.117,0.54-0.605,1.021-0.929,1.527c-0.285-0.473-0.752-0.927-0.824-1.423
c-0.266-1.813-0.401-3.639-0.597-5.566c-0.68,0-1.305,0-2.137,0c0,1.571,0.055,3.089-0.027,4.598
c-0.035,0.624-0.194,1.361-0.617,1.816c-0.347,0.373-1.198,0.584-1.77,0.516c-0.315-0.037-0.665-0.783-0.736-1.243
c-0.121-0.775-0.033-1.573-0.033-2.506c-0.754-0.03-1.38-0.056-2.249-0.094c0,0.776-0.068,1.429,0.014,2.067
c0.19,1.507-0.569,2.04-2.223,1.908c-2.063-0.167-4.134-0.249-6.348-0.376c0-1.368,0-2.542,0-3.914
c-0.924-0.038-1.7-0.069-2.651-0.108c-0.202,0.973-0.293,1.876-0.601,2.72c-0.171,0.469-0.704,0.836-1.073,1.248
c-0.388-0.46-1.01-0.884-1.115-1.392c-0.184-0.886-0.052-1.826-0.052-2.853c-0.947,0-1.724,0-2.714,0c0,0.989,0.108,1.919-0.05,2.81
c-0.069,0.385-0.689,0.694-1.06,1.039c-0.381-0.333-1.023-0.628-1.091-1.006c-0.163-0.894-0.052-1.824-0.052-2.847
c-1.064,0-1.939,0-3.178,0c0,1.041,0.323,2.245-0.093,3.201c-0.395,0.905-1.565,1.55-2.492,2.399
c0.277,0.117,0.688,0.291,1.115,0.469c-0.164,0.81-0.324,1.617-0.515,2.575c-2.786,0-5.57,0.066-8.346-0.024
c-1.772-0.058-1.954-1.187-0.497-3.438c-3.28-0.463-2.823-2.732-2.776-4.722c-2.158-0.537-2.721,0.387-2.676,1.886
c0.031,1.036-0.006,1.94-1.836,1.279c0-0.875,0.085-1.803-0.041-2.704c-0.052-0.372-0.556-0.696-0.854-1.039
c0,9.783,0,19.566,0,29.35c-3.565,0.029-7.137-0.01-10.711-0.01c-0.305-0.957-0.563-1.764-0.823-2.573
c0.681-0.18,1.337-0.353,1.779-0.469c-1.481-0.851-3.347-1.495-3.977-2.398c-0.664-0.957-0.148-2.162-0.148-3.203
c-1.977,0-3.375,0-5.073,0c0,1.022,0.179,1.953-0.082,2.846c-0.109,0.378-1.134,0.673-1.741,1.006
c-0.59-0.343-1.58-0.652-1.69-1.037c-0.253-0.893-0.081-1.821-0.081-2.812c-1.581,0-2.819,0-4.332,0
c0,1.028,0.212,1.967-0.081,2.854c-0.167,0.507-1.16,0.932-1.78,1.392c-0.589-0.412-1.438-0.779-1.711-1.248
c-0.492-0.844-0.637-1.747-0.959-2.72c-1.517,0.039-2.757,0.069-4.23,0.107c0,1.372,0,2.547,0,3.913
c-3.534,0.128-6.838,0.21-10.129,0.377c-2.639,0.132-3.849-0.401-3.546-1.908c0.129-0.638,0.021-1.29,0.021-2.066
c-1.388,0.036-2.385,0.063-3.588,0.095c0,0.931,0.14,1.729-0.054,2.504c-0.115,0.459-0.673,1.206-1.176,1.244
c-0.913,0.07-2.27-0.144-2.823-0.516c-0.675-0.455-0.929-1.193-0.985-1.817c-0.131-1.51-0.042-3.025-0.042-4.597
c-1.327,0-2.324,0-3.41,0c-0.312,1.927-0.526,3.754-0.952,5.565c-0.116,0.497-0.86,0.95-1.314,1.423
c-0.515-0.507-1.296-0.985-1.481-1.527c-0.256-0.743-0.065-1.533-0.065-2.303c-1.648,0-2.808,0-4.1,0
c-0.172,1.185,0.365,2.62-0.697,3.293c-0.986,0.627-3.837,0.235-5.573,0.659c-2.47,0.602-6.021,0.529-5.686,3.103
c0.343,2.604-2.104,4.694-6.252,5.895c-0.463-0.825-0.917-1.627-1.343-2.381c0.977-0.323,1.947-0.646,3.109-1.033
c-2.451-0.471-5.153-0.546-5.841-1.232c-0.904-0.904-0.222-2.288-0.222-3.512c-1.713-0.08-2.98-0.141-4.349-0.204
c-0.282-3.476-0.572-6.859-0.818-10.246c-0.067-0.932-0.001-1.865,0.003-2.798c-0.48,0-0.963,0-1.445,0
c-0.319,0.748-0.637,1.498-0.83,1.949c-1.396,0.393-2.474,0.694-3.551,0.997c0.5,0.347,1.321,0.658,1.445,1.038
c0.533,1.64,2.265,3.921,0.959,4.812c-2.327,1.592-1.758,2.81-0.976,4.296c1.318,2.504-0.117,3.94-4.659,4.606
c-0.136,0.021-0.186,0.217-0.399,0.486c3.594,0.887,2.875,2.709,2.98,4.395c0.219,3.491,0.493,6.98,0.773,10.47
c0.295,3.663,0.625,7.325,0.952,11.146c-3.824,0-6.95,0.114-10.031-0.036c-2.407-0.116-4.313-0.729-4.047-2.413
c0.181-1.145,0.034-2.308,0.034-3.461c-0.35-0.066-0.701-0.132-1.051-0.2c-1.632,1.476-3.264,2.949-5.248,4.74
c-0.135-1.688-0.247-3.083-0.355-4.464c-1.507,0-2.756,0-4.007,0c-0.419,1.743-0.808,3.352-1.195,4.961
c-0.378,0.035-0.753,0.071-1.129,0.108c-0.373-1.001-0.743-2.001-1.299-3.497c-0.995,0.789-1.691,1.298-2.293,1.838
c-0.414,0.373-0.496,0.963-1.067,1.164c-2.354,0.83-4.345,1.87-7.733,1.731c-6.225-0.249-12.507-0.07-18.769-0.07
c-2.581,0-5.165,0-6.927,0c-1.458-1.7-2.546-2.969-3.684-4.293c-1.301,0-2.7,0-4.315,0c-0.096,0.637-0.18,1.199-0.266,1.781
c-1.506,0-2.756,0-4.016,0c-0.181-0.809-0.336-1.497-0.487-2.167c-2.869,0-5.478,0-8.157,0c-0.157,0.793-0.296,1.493-0.434,2.193
c-0.329,0.063-0.659,0.125-0.988,0.188c-0.508-0.664-1.016-1.328-1.51-1.977c-3.835,0-7.64,0-11.543,0
c-0.133,0.792-0.251,1.485-0.407,2.377c-3.657,0-7.074,0-10.608,0c0,3.668-0.124,7.116,0.063,10.561
c0.074,1.384-0.506,2.452-2.545,3.247c-2.175,0.846-2.807,1.98-2.626,3.428c0.223,1.752,0.053,3.517,0.053,5.268
c-11.098,0-21.649,0-32.351,0c-0.135-0.914-0.257-1.741-0.396-2.69c-1.206,0.047-2.208,0.086-3.276,0.126
c-0.075,0.924-0.14,1.696-0.211,2.546c-5.306,0-10.407,0-16.012,0c0-5.136,0-10.16,0-15.184c-0.672,0.363-1.342,0.729-2.01,1.097
c-0.989-0.631-1.979-1.26-2.967-1.891c0.579-0.362,1.157-0.729,1.736-1.094c-1.885,0-3.772,0-5.762,0
c-0.134-0.689-0.247-1.249-0.407-2.069c-4.138,0.891-9.615-1.58-11.929,2.105c-7.126-2.06-7.126-2.06-8.683,0.439
c-1.131-0.03-2.301-0.063-3.508-0.097c-0.163-0.683-0.301-1.256-0.436-1.828c-0.333-0.115-0.669-0.231-1.002-0.346
c-1.063,0.779-2.125,1.559-3.821,2.803c-1.762,0.476-6.786-1.54-7.677,1.772c-4.278,0.643-8.552,1.285-12.468,1.874
c-0.962-2.136-1.692-3.755-2.402-5.332c-6.339,0-12.218,0-17.432,0c-4.283,1.732-3.231,4.035-3.338,6.18
c-0.021,0.465,0.125,0.947-0.063,1.389c-0.138,0.326-0.592,0.778-1.086,0.866c-4.797,0.851-9.634,1.635-14.909,2.513
c0-6.397,0-12.407,0-18.571c-9.661,0-19.215,0-28.731,0v65.292V400H1024.906z"/>
<g id="Lumières">
<g>
<rect x="404.901" y="225.121" fill="#FFDFA6" width="2.74" height="3.537"/>
<rect x="408.238" y="225.121" fill="#FFDFA6" width="2.739" height="3.537"/>
<rect x="404.901" y="228.946" fill="#FFDFA6" width="2.74" height="3.538"/>
<rect x="408.238" y="228.946" fill="#FFDFA6" width="2.739" height="3.538"/>
</g>
<g>
<rect x="438.431" y="225.121" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="440.938" y="225.121" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="438.431" y="228.704" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="440.938" y="228.704" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="438.431" y="232.286" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="440.938" y="232.286" fill="#FFDFA6" width="2.06" height="3.313"/>
</g>
<g>
<rect x="446.813" y="225.121" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="449.32" y="225.121" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="446.813" y="228.704" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="449.32" y="228.704" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="446.813" y="232.286" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="449.32" y="232.286" fill="#FFDFA6" width="2.06" height="3.313"/>
</g>
<g>
<rect x="324.016" y="254.879" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="326.524" y="254.879" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="324.016" y="258.462" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="326.524" y="258.462" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="324.016" y="262.043" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="326.524" y="262.043" fill="#FFDFA6" width="2.06" height="3.314"/>
</g>
<g>
<rect x="337.428" y="254.879" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="339.937" y="254.879" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="337.428" y="258.462" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="339.937" y="258.462" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="337.428" y="262.043" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="339.937" y="262.043" fill="#FFDFA6" width="2.059" height="3.314"/>
</g>
<g>
<rect x="370.958" y="271.644" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="373.466" y="271.644" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="370.958" y="275.228" fill="#FFDFA6" width="2.06" height="3.312"/>
<rect x="373.466" y="275.228" fill="#FFDFA6" width="2.059" height="3.312"/>
<rect x="370.958" y="278.809" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="373.466" y="278.809" fill="#FFDFA6" width="2.059" height="3.313"/>
</g>
<g>
<rect x="526.033" y="262.821" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="528.541" y="262.821" fill="#FFDFA6" width="2.061" height="3.313"/>
<rect x="526.033" y="266.404" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="528.541" y="266.404" fill="#FFDFA6" width="2.061" height="3.313"/>
<rect x="526.033" y="269.987" fill="#FFDFA6" width="2.06" height="3.312"/>
<rect x="528.541" y="269.987" fill="#FFDFA6" width="2.061" height="3.312"/>
</g>
<g>
<rect x="503.4" y="262.821" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="505.908" y="262.821" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="503.4" y="266.404" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="505.908" y="266.404" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="503.4" y="269.987" fill="#FFDFA6" width="2.06" height="3.312"/>
<rect x="505.908" y="269.987" fill="#FFDFA6" width="2.06" height="3.312"/>
</g>
<g>
<rect x="503.4" y="283.777" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="505.908" y="283.777" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="503.4" y="287.361" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="505.908" y="287.361" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="503.4" y="290.942" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="505.908" y="290.942" fill="#FFDFA6" width="2.06" height="3.313"/>
</g>
<g>
<rect x="461.488" y="279.586" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="463.996" y="279.586" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="461.488" y="283.17" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="463.996" y="283.17" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="461.488" y="286.752" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="463.996" y="286.752" fill="#FFDFA6" width="2.059" height="3.313"/>
</g>
<g>
<rect x="588.272" y="265.336" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="590.779" y="265.336" fill="#FFDFA6" width="2.062" height="3.313"/>
<rect x="588.272" y="268.919" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="590.779" y="268.919" fill="#FFDFA6" width="2.062" height="3.313"/>
<rect x="588.272" y="272.502" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="590.779" y="272.502" fill="#FFDFA6" width="2.062" height="3.313"/>
</g>
<g>
<rect x="613.641" y="265.336" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="616.147" y="265.336" fill="#FFDFA6" width="2.062" height="3.313"/>
<rect x="613.641" y="268.919" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="616.147" y="268.919" fill="#FFDFA6" width="2.062" height="3.313"/>
<rect x="613.641" y="272.502" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="616.147" y="272.502" fill="#FFDFA6" width="2.062" height="3.313"/>
</g>
<g>
<rect x="643.156" y="246.74" fill="#FFDFA6" width="2.962" height="7.475"/>
</g>
<g>
<rect x="643.156" y="262.668" fill="#FFDFA6" width="2.962" height="7.474"/>
</g>
<g>
<rect x="650.703" y="262.668" fill="#FFDFA6" width="2.958" height="7.474"/>
</g>
<g>
<rect x="911.209" y="278.958" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="913.718" y="278.958" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="911.209" y="282.541" fill="#FFDFA6" width="2.059" height="3.312"/>
<rect x="913.718" y="282.541" fill="#FFDFA6" width="2.059" height="3.312"/>
<rect x="911.209" y="286.123" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="913.718" y="286.123" fill="#FFDFA6" width="2.059" height="3.313"/>
</g>
<g>
<rect x="972.217" y="285.363" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="974.725" y="285.363" fill="#FFDFA6" width="2.061" height="3.313"/>
<rect x="972.217" y="288.944" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="974.725" y="288.944" fill="#FFDFA6" width="2.061" height="3.313"/>
<rect x="972.217" y="292.526" fill="#FFDFA6" width="2.06" height="3.315"/>
<rect x="974.725" y="292.526" fill="#FFDFA6" width="2.061" height="3.315"/>
</g>
<g>
<rect x="985.629" y="285.363" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="988.137" y="285.363" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="985.629" y="288.944" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="988.137" y="288.944" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="985.629" y="292.526" fill="#FFDFA6" width="2.06" height="3.315"/>
<rect x="988.137" y="292.526" fill="#FFDFA6" width="2.06" height="3.315"/>
</g>
<g>
<rect x="1001.555" y="310.511" fill="#FFDFA6" width="2.059" height="3.312"/>
<rect x="1004.064" y="310.511" fill="#FFDFA6" width="2.06" height="3.312"/>
<rect x="1001.555" y="314.093" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="1004.064" y="314.093" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="1001.555" y="317.675" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="1004.064" y="317.675" fill="#FFDFA6" width="2.06" height="3.313"/>
</g>
<g>
<rect x="219.426" y="274.465" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="221.934" y="274.465" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="219.426" y="278.047" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="221.934" y="278.047" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="219.426" y="281.631" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="221.934" y="281.631" fill="#FFDFA6" width="2.06" height="3.313"/>
</g>
<g>
<rect x="248.813" y="274.465" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="251.322" y="274.465" fill="#FFDFA6" width="2.059" height="3.314"/>
<rect x="248.813" y="278.047" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="251.322" y="278.047" fill="#FFDFA6" width="2.059" height="3.314"/>
<rect x="248.813" y="281.631" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="251.322" y="281.631" fill="#FFDFA6" width="2.059" height="3.313"/>
</g>
<g>
<rect x="32.327" y="293.663" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="34.835" y="293.663" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="32.327" y="297.246" fill="#FFDFA6" width="2.06" height="3.312"/>
<rect x="34.835" y="297.246" fill="#FFDFA6" width="2.059" height="3.312"/>
<rect x="32.327" y="300.827" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="34.835" y="300.827" fill="#FFDFA6" width="2.059" height="3.313"/>
</g>
<g>
<rect x="74.239" y="310.428" fill="#FFDFA6" width="2.061" height="3.313"/>
<rect x="76.748" y="310.428" fill="#FFDFA6" width="2.059" height="3.313"/>
<rect x="74.239" y="314.009" fill="#FFDFA6" width="2.061" height="3.314"/>
<rect x="76.748" y="314.009" fill="#FFDFA6" width="2.059" height="3.314"/>
<rect x="74.239" y="317.591" fill="#FFDFA6" width="2.061" height="3.313"/>
<rect x="76.748" y="317.591" fill="#FFDFA6" width="2.059" height="3.313"/>
</g>
<g>
<rect x="99.386" y="310.428" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="101.895" y="310.428" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="99.386" y="314.009" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="101.895" y="314.009" fill="#FFDFA6" width="2.06" height="3.314"/>
<rect x="99.386" y="317.591" fill="#FFDFA6" width="2.06" height="3.313"/>
<rect x="101.895" y="317.591" fill="#FFDFA6" width="2.06" height="3.313"/>
</g>
<g>
<rect x="131.144" y="295.165" fill="#FFDFA6" width="2.96" height="7.474"/>
</g>
<g>
<rect x="164.673" y="295.165" fill="#FFDFA6" width="2.96" height="7.474"/>
</g>
<g>
<rect x="147.908" y="311.929" fill="#FFDFA6" width="2.96" height="7.476"/>
</g>
<g>
<rect x="131.144" y="311.929" fill="#FFDFA6" width="2.96" height="7.476"/>
</g>
<g>
<path fill-rule="evenodd" fill="#FFDFA6" d="M761.089,243.405c-3.019,0-5.983,0-9.056,0c0-11.341,0-22.684,0-34.139
c2.979,0,5.972,0,9.056,0C761.089,220.646,761.089,231.989,761.089,243.405z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M748.156,209.458c0,11.323,0,22.598,0,33.956c-2.209,0-4.348,0-6.595,0
c0-11.259,0-22.523,0-33.956C743.715,209.458,745.889,209.458,748.156,209.458z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M764.951,209.401c2.207,0,4.348,0,6.591,0c0,11.373,0,22.638,0,33.997
c-2.171,0-4.34,0-6.591,0C764.951,232.074,764.951,220.798,764.951,209.401z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M737.955,243.579c-1.886,0-3.624,0-5.478,0c0-11.11,0-22.274,0-33.611
c1.791-0.106,3.592-0.215,5.478-0.327C737.955,221.014,737.955,232.184,737.955,243.579z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M775.18,209.653c1.819,0.1,3.588,0.198,5.455,0.3c0,11.251,0,22.418,0,33.626
c-1.805,0-3.572,0-5.455,0C775.18,232.284,775.18,221.11,775.18,209.653z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M723.933,210.761c1.609-0.176,3.224-0.352,4.931-0.537c0,11.212,0,22.293,0,33.484
c-1.641,0-3.229,0-4.931,0C723.933,232.795,723.933,221.856,723.933,210.761z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M784.232,210.226c1.694,0.182,3.309,0.355,4.976,0.535c0,11.04,0,21.944,0,32.952
c-1.663,0-3.281,0-4.976,0C784.232,232.538,784.232,221.454,784.232,210.226z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M720.02,243.969c-0.896,0-1.751,0-2.71,0c0-10.714,0-21.423,0-32.304
c0.826-0.129,1.703-0.266,2.71-0.424C720.02,222.195,720.02,232.994,720.02,243.969z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M795.823,244.008c-0.98,0-1.802,0-2.737,0c0-10.872,0-21.707,0-32.715
c0.924,0.112,1.805,0.221,2.737,0.335C795.823,222.455,795.823,233.168,795.823,244.008z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M713.459,244.253c-0.713,0-1.294,0-2.034,0c0-0.543,0-1.034,0-1.525
c0-9.49-0.002-18.984,0-28.475c0-1.805,0.028-1.827,2.034-1.746C713.459,223.036,713.459,233.567,713.459,244.253z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M801.606,244.239c-0.648,0-1.229,0-1.915,0c0-10.573,0-21.138,0-31.863
c0.646,0.116,1.283,0.229,1.915,0.339C801.606,223.289,801.606,233.729,801.606,244.239z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M708.456,213.692c0,10.21,0,20.417,0,30.625c-0.074,0-0.147,0-0.221,0
c0-10.206,0-20.415,0-30.623C708.309,213.694,708.382,213.694,708.456,213.692z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M804.64,244.315c0-10.206,0-20.414,0-30.623c0.074,0,0.146,0,0.219,0
c0,10.209,0,20.417,0,30.626C804.786,244.317,804.714,244.315,804.64,244.315z"/>
</g>
<g>
<path fill-rule="evenodd" fill="#FFDFA6" d="M757.513,112.279c-0.654,0-1.235,0-1.816,0c-0.673-2.957-0.255-7.622,0.95-8.725
c0.33,0.541,0.874,1.03,0.9,1.547c0.105,2.06,0.048,4.129,0.042,6.195C757.589,111.606,757.543,111.916,757.513,112.279z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M752.358,112.264c-0.559,0-0.988,0-1.522,0c0-2.435-0.045-4.804,0.04-7.167
c0.017-0.399,0.58-0.778,0.893-1.167c0.196,0.395,0.554,0.785,0.564,1.183C752.387,107.479,752.358,109.844,752.358,112.264z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M762.271,112.264c-0.545,0-0.973,0-1.528,0c0-2.558-0.015-5.061,0.019-7.564
c0.005-0.25,0.308-0.715,0.429-0.702c0.301,0.032,0.632,0.238,0.843,0.469c0.162,0.179,0.226,0.503,0.229,0.766
C762.277,107.554,762.271,109.874,762.271,112.264z"/>
</g>
<g>
<path fill-rule="evenodd" fill="#FFDFA6" d="M752.755,188.851c0-2.801-0.109-5.539,0.034-8.264
c0.116-2.184,3.376-3.758,5.313-2.641c1.395,0.804,2.379,1.871,2.278,3.726c-0.129,2.361-0.032,4.734-0.032,7.178
C757.773,188.851,755.332,188.851,752.755,188.851z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M742.989,189.132c-1.616,0-3.018,0-4.559,0c0-2.991-0.034-5.912,0.019-8.832
c0.02-0.905,1.444-1.931,2.408-1.896c0.98,0.033,2.104,1.016,2.117,1.993C743.015,183.274,742.989,186.153,742.989,189.132z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M774.672,189.13c-1.62,0-3.024,0-4.562,0c0-2.995-0.031-5.918,0.019-8.837
c0.019-0.951,1.261-1.921,2.215-1.895c0.985,0.027,2.298,1.087,2.311,2.004C774.696,183.281,774.672,186.159,774.672,189.13z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M730.313,189.688c-1.236,0-2.273,0-3.453,0c0-2.939-0.05-5.813,0.042-8.684
c0.021-0.613,0.454-1.337,0.921-1.766c0.29-0.267,1.221-0.298,1.477-0.044c0.485,0.479,0.945,1.229,0.969,1.883
C730.372,183.907,730.313,186.743,730.313,189.688z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M786.24,189.689c-1.234,0-2.27,0-3.453,0c0-2.938-0.052-5.813,0.042-8.683
c0.021-0.613,0.442-1.362,0.92-1.758c0.318-0.267,1.253-0.238,1.573,0.045c0.466,0.412,0.859,1.162,0.878,1.781
C786.291,183.905,786.24,186.74,786.24,189.689z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M720.238,189.824c0.018-3.372-0.026-6.748,0.024-10.121
c0.215-0.017,0.429-0.034,0.641-0.05c0.108,0.425,0.305,0.849,0.309,1.274c0.027,2.708,0.034,5.416-0.008,8.125
c-0.004,0.354-0.303,0.706-0.465,1.059C720.57,190.016,720.407,189.92,720.238,189.824z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M792.599,190.119c-0.237-0.173-0.679-0.346-0.681-0.52
c-0.007-3.206,0.038-6.413,0.085-9.618c0-0.112,0.146-0.22,0.445-0.305C793.152,183.053,792.67,186.455,792.599,190.119z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

498
img/header/clouds.svg Normal file
View file

@ -0,0 +1,498 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">
<svg version="1.1" baseProfile="basic" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1024px"
height="240.517px" viewBox="0 0 1024 240.517" xml:space="preserve">
<g opacity="0.7">
<g opacity="0.4">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="491.6338" y1="226.959" x2="491.6338" y2="73.5708">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#5D4A69"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M699.764,127.13c0-1.305-0.879-2.346-1.542-3.571c-0.582-1.076-1.542-1.757-2.585-2.753
c-0.889-0.849-0.992-2.838-2.184-3.615c-1.045-0.683-2.218-1.492-3.476-2.111c-1.134-0.559-2.778-0.182-4.07-0.683
c-1.189-0.461-2.638-0.234-3.949-0.642c-1.226-0.382-2.524-0.453-3.847-0.784c-1.254-0.314-2.312-1.507-3.645-1.772
c-1.272-0.253-2.621-0.149-3.957-0.355c-1.287-0.198-2.494-1.13-3.835-1.282c-1.297-0.147-2.666,0.261-4.008,0.16
c-1.306-0.099-2.589-0.942-3.931-0.996c-1.312-0.053-2.896,0.784-4.237,0.776c-0.623-1.097-1.232-2.636-2.369-3.658
c-0.949-0.853-2.334-1.268-3.61-2.057c-1.105-0.684-1.768-2.417-3.098-3.046c-1.192-0.563-2.771-0.49-4.131-1.005
c-1.246-0.472-2.5-1.137-3.876-1.564c-1.282-0.398-2.764-0.273-4.149-0.629c-1.307-0.335-2.437-1.65-3.828-1.946
c-1.325-0.281-2.802-0.07-4.198-0.313c-1.341-0.233-2.913,0.908-4.313,0.712c-1.35-0.189-2.565-1.548-3.966-1.7
c-1.36-0.148-2.73-0.495-4.134-0.606c-1.365-0.108-2.731-0.729-4.133-0.802c-1.372-0.072-2.824,1.348-4.228,1.312
c-1.376-0.035-2.751,0.036-4.153,0.036c-1.445,0-2.871-0.334-4.288-0.296c-1.448,0.039-2.893-0.246-4.308-0.169
c-1.447,0.079-2.849,0.523-4.257,0.639c-1.447,0.12-2.825,0.598-4.227,0.756c-1.445,0.163-2.845,0.349-4.236,0.551
c-1.443,0.209-3.197,0.667-4.576,0.917c-0.898-0.902-1.107-3.404-2.25-4.267c-1.024-0.774-2.412-1.273-3.623-2.012
c-1.104-0.674-2.727-0.566-3.979-1.209c-1.159-0.596-2.672-0.474-3.951-1.04c-1.197-0.53-2.35-1.16-3.646-1.664
c-1.227-0.476-2.298-1.402-3.609-1.853c-1.248-0.429-2.715-0.2-4.037-0.604c-1.265-0.387-1.99-2.737-3.32-3.101
c-1.279-0.35-3.125,1.394-4.462,1.066c-1.291-0.317-2.21-2.302-3.552-2.597c-1.301-0.286-2.818,0.36-4.164,0.095
c-1.308-0.257-2.767,0.289-4.114,0.052c-1.314-0.231-2.625-0.449-3.976-0.659c-1.321-0.206-2.637-0.405-3.991-0.591
c-1.326-0.182-2.391-2.496-3.747-2.659c-1.331-0.16-2.669-0.525-4.026-0.666c-1.333-0.138-2.823,1.156-4.181,1.038
c-1.336-0.117-2.587-1.518-3.946-1.615c-1.339-0.096-2.695-0.359-4.055-0.437c-1.342-0.077-2.802,1.961-4.163,1.903
c-1.343-0.057-2.624-2.203-3.984-2.241c-1.346-0.038-2.746,2-4.107,1.981c-1.348-0.019-2.69-0.407-4.051-0.407
c-1.373,0-2.748-1.174-4.106-1.155c-1.374,0.019-2.725,0.904-4.082,0.942c-1.374,0.039-2.693,1.119-4.049,1.177
c-1.374,0.059-2.789-1.054-4.144-0.977c-1.374,0.079-2.753-0.063-4.106,0.035c-1.374,0.1-2.817-0.678-4.167-0.559
c-1.373,0.121-2.689,0.833-4.036,0.974c-1.371,0.143-2.659,0.947-4.001,1.11c-1.369,0.166-2.758,0.075-4.097,0.26
c-1.367,0.19-2.519,1.663-3.852,1.873c-1.365,0.215-2.844-0.435-4.171-0.199c-1.362,0.242-2.941-0.723-4.262-0.46
c-1.359,0.271-2.271,2.556-3.583,2.849c-1.354,0.302-3.016-0.831-4.317-0.506c-1.349,0.335-2.287,2.101-3.577,2.459
c-1.343,0.374-2.825,0.095-4.101,0.492c-1.334,0.416-2.739,0.5-3.997,0.94c-1.323,0.463-2.835,0.353-4.069,0.842
c-1.308,0.519-2.797,0.615-4,1.162c-1.287,0.584-1.644,2.97-2.804,3.585c-1.258,0.666-3.276-0.096-4.377,0.603
c-1.21,0.768-1.649,2.875-2.661,3.679c-1.04-0.03-2.325,0.325-3.382,0.325c-1.364,0-2.712-0.938-4.045-0.888
c-1.365,0.052-2.764-0.556-4.091-0.454c-1.365,0.105-2.645,0.994-3.963,1.15c-1.363,0.162-2.775-0.136-4.083,0.077
c-1.359,0.222-2.524,1.322-3.816,1.596c-1.351,0.287-2.898-0.371-4.168-0.029c-1.34,0.36-2.691,0.676-3.932,1.093
c-1.323,0.445-2.114,2.159-3.311,2.663c-1.297,0.546-3.082-0.073-4.216,0.537c-1.253,0.672-1.886,2.235-2.922,2.977
c-1.172,0.838-1.82,1.969-2.686,2.884c-0.996,1.052-3.364,1.101-3.912,2.236c-0.608,1.258,0.654,3.031,0.654,4.366
c0,1.304-1.063,2.938-0.479,4.169c0.529,1.114,1.86,1.772,2.818,2.808c-1.355,0.182-2.445,0.883-3.774,1.086
c-1.353,0.207-2.9-0.837-4.225-0.609c-1.35,0.232-2.667,0.647-3.986,0.901c-1.346,0.26-2.522,1.312-3.834,1.593
c-1.341,0.288-2.504,1.245-3.809,1.555c-1.335,0.317-2.998-0.749-4.292-0.409c-1.331,0.349-2.431,1.49-3.717,1.862
c-1.323,0.383-2.881-0.053-4.155,0.354c-1.313,0.42-2.445,1.349-3.704,1.792c-1.301,0.458-2.952-0.027-4.192,0.456
c-1.288,0.502-2.42,1.411-3.64,1.939c-1.272,0.55-1.799,2.651-2.994,3.229c-1.25,0.604-3.127-0.103-4.29,0.529
c-1.223,0.664-2.559,1.142-3.681,1.835c-1.188,0.734-1.458,2.782-2.527,3.546c-1.139,0.816-3.409,0.144-4.408,0.991
c-1.071,0.909-2.139,1.934-3.041,2.878c-0.973,1.019-0.087,3.53-0.855,4.585c-0.827,1.136-3.376,1.171-3.954,2.346
c-0.615,1.248,0.286,3.086-0.033,4.372c-0.328,1.323-0.289,2.558-0.289,3.915c0,1.348-0.726,2.742-0.402,4.057
c0.315,1.278,0.028,2.969,0.635,4.21c0.571,1.167,1.836,2.14,2.653,3.27c0.759,1.05,2.916,0.951,3.877,1.965
c0.893,0.94,0.297,3.516,1.357,4.422c0.988,0.845,2.622,1.034,3.749,1.847c1.058,0.763,1.817,2.119,2.993,2.852
c1.11,0.691,2.895,0.341,4.106,1.004c1.151,0.63,2.337,1.239,3.576,1.842c1.183,0.576,2.003,2.034,3.263,2.583
c1.209,0.527,2.323,1.443,3.599,1.945c1.23,0.482,2.564,0.862,3.854,1.32c1.248,0.444,2.764,0.229,4.065,0.648
c1.263,0.407,2.314,0.532,3.625,0.916c-0.985,1.669-0.646,3.332-0.646,5.085c0,1.345-1.108,3.07-0.523,4.368
c0.523,1.159,2.492,1.615,3.455,2.729c0.83,0.961,1.754,1.859,2.892,2.78c0.998,0.807,2.178,1.4,3.4,2.174
c1.097,0.693,2.432,0.975,3.7,1.639c1.16,0.606,2.187,1.496,3.483,2.076c1.203,0.537,2.367,1.219,3.682,1.73
c1.234,0.481,2.141,1.978,3.47,2.435c1.256,0.433,3.004-0.544,4.342-0.133c1.274,0.391,2.514,0.936,3.858,1.306
c1.289,0.354,2.287,1.926,3.638,2.26c1.3,0.323,2.522,1.17,3.878,1.473c1.31,0.294,3.089-1.505,4.448-1.23
c1.318,0.266,2.412,1.771,3.774,2.02c1.325,0.24,2.826-0.443,4.19-0.22c1.33,0.218,2.45,1.903,3.815,2.104
c1.335,0.195,2.719,0.237,4.086,0.415c1.34,0.175,2.677,0.588,4.046,0.746c1.344,0.154,2.761-0.153,4.133-0.016
c1.347,0.136,2.826-1.029,4.198-0.91c1.349,0.118,2.577,1.888,3.949,1.988c1.351,0.1,2.776-0.669,4.148-0.586
c1.354,0.082,2.729-0.081,4.103-0.015c1.357,0.064,2.713,0.271,4.088,0.32c1.357,0.049,2.734-0.485,4.108-0.453
c1.359,0.032,2.702,1.454,4.076,1.47c1.36,0.017,2.736-1.442,4.11-1.442c1.372,0,2.744,1.24,4.103,1.224
c1.373-0.016,2.728-0.729,4.085-0.762c1.373-0.032,2.759,0.596,4.116,0.548c1.373-0.05,2.755,0.138,4.11,0.072
c1.373-0.065,2.643-1.837,3.996-1.919c1.372-0.083,2.874,1.901,4.226,1.802c1.372-0.101,2.573-2.217,3.922-2.334
c1.372-0.119,2.738-0.042,4.085-0.178c1.371-0.139,2.867,1.001,4.21,0.847c1.37-0.158,2.766-0.083,4.106-0.258
c1.369-0.179,2.76-0.189,4.096-0.385c1.367-0.2,2.412-2.379,3.743-2.596c1.365-0.224,2.914,0.763,4.239,0.521
c1.364-0.248,2.79-0.118,4.11-0.385c1.361-0.274,2.398-1.959,3.71-2.252c1.356-0.304,2.73-0.362,4.032-0.686
c1.351-0.335,2.875,0.108,4.164-0.246c1.346-0.371,2.754-0.463,4.03-0.854c1.339-0.411,2.712-0.68,3.97-1.112
c1.329-0.458,2.029-2.502,3.263-2.983c1.315-0.513,2.619-0.832,3.821-1.369c1.296-0.579,3.201,0.216,4.36-0.391
c1.268-0.663,1.627-2.771,2.723-3.465c1.222-0.773,3.437-0.051,4.434-0.859c1.138-0.92,0.789-3.262,1.618-4.223
c0.961-1.113,3.271-1.267,3.793-2.427c0.584-1.295,0.007-3.015,0.007-4.357c0-0.43-0.204-1.509-0.265-1.935
c1.295,0.123,2.662,2.083,3.974,2.188c1.298,0.105,2.665-0.487,3.978-0.399c1.3,0.087,2.656-0.643,3.971-0.573
c1.301,0.069,2.548,1.571,3.862,1.624c1.302,0.052,2.677-1.825,3.991-1.791c1.304,0.034,2.59,1.148,3.904,1.166
c1.306,0.017,2.619-0.489,3.935-0.489c1.396,0,2.786,0.297,4.17,0.278c1.396-0.02,2.799,0.384,4.182,0.346
c1.396-0.039,2.729-1.602,4.11-1.659c1.396-0.059,2.856,1.437,4.236,1.359c1.396-0.079,2.781-0.302,4.16-0.399
c1.393-0.1,2.798-0.065,4.174-0.184c1.393-0.12,2.615-1.928,3.989-2.067c1.391-0.141,2.883,0.809,4.254,0.648
c1.39-0.163,2.636-1.332,4.003-1.514c1.387-0.185,2.718-0.566,4.08-0.771c1.385-0.207,2.986,1.076,4.345,0.849
c1.382-0.231,2.79-0.291,4.144-0.543c1.378-0.256,2.846-0.069,4.193-0.347c1.374-0.282,2.426-2.021,3.768-2.324
c1.369-0.31,2.695-0.692,4.028-1.022c1.364-0.338,3.082,0.737,4.407,0.378c1.357-0.367,2.663-0.924,3.978-1.313
c1.35-0.4,2.809-0.462,4.112-0.884c1.342-0.436,2.283-2.028,3.574-2.486c1.33-0.472,2.755-0.635,4.029-1.13
c1.316-0.512,2.922-0.312,4.176-0.849c1.302-0.557,2.235-1.921,3.466-2.503c1.283-0.606,2.314-1.647,3.518-2.28
c1.259-0.661,2.922-0.546,4.09-1.234c1.228-0.724,1.893-2.289,3.016-3.042c1.188-0.795,1.784-2.251,2.851-3.076
c1.133-0.877,3.187-0.543,4.177-1.451c1.059-0.972,1.229-2.725,2.117-3.729c0.953-1.077,1.984-1.938,2.732-3.05
c0.801-1.189,2.232-1.978,2.789-3.203c0.586-1.293,0.324-2.853,0.628-4.182c0.311-1.358,1.619-2.661,1.619-4.052
c0-1.121,0.126-2.429-0.078-3.529c-0.202-1.087-1.795-2.164-2.186-3.229c1.426-0.187,3.113,0.102,4.474-0.138
c1.421-0.25,2.95,0.048,4.29-0.256c1.415-0.32,2.665-1.263,3.979-1.64c1.403-0.401,2.758-0.859,4.034-1.32
c1.385-0.501,3.001-0.423,4.221-0.987c1.354-0.625,1.623-3.093,2.753-3.788c1.291-0.795,3.649,0.014,4.617-0.86
c1.143-1.031,1.733-2.639,2.376-3.76C699.6,130.045,699.764,128.511,699.764,127.13z"/>
</g>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="425.3472" y1="203.8281" x2="425.3472" y2="133.8018">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#785775"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M457.177,158.313c0.07-0.474-0.382-0.491-0.382-0.973c0-1.352-0.065-2.641-0.604-3.93
c-0.496-1.187-1.535-2.042-2.451-3.16c-0.81-0.987-1.365-2.281-2.476-3.205c-0.989-0.821-2.73-0.605-3.939-1.369
c-1.098-0.692-1.263-3.127-2.528-3.765c-1.168-0.59-2.712-0.576-4.013-1.115c-1.216-0.504-2.718-0.355-4.042-0.812
c-1.251-0.432-2.532-0.806-3.872-1.192c-1.276-0.367-2.483-1.063-3.833-1.387c-1.295-0.312-2.664-0.366-4.022-0.635
c-1.311-0.259-2.748,0.21-4.113-0.008c-1.321-0.21-2.494-1.494-3.861-1.663c-1.332-0.166-2.707-0.069-4.079-0.194
c-1.338-0.122-2.708,0.118-4.081,0.036c-1.344-0.08-2.671-0.676-4.044-0.717c-1.348-0.039-2.708,0.563-4.08,0.563
c-1.338,0-2.676-1.022-3.991-0.985c-1.339,0.039-2.637,0.788-3.948,0.864c-1.34,0.078-2.717-0.528-4.024-0.412
c-1.338,0.118-2.723-0.171-4.024-0.014c-1.335,0.162-2.538,1.247-3.83,1.447c-1.333,0.207-2.563,0.839-3.846,1.085
c-1.327,0.255-2.979-1.075-4.247-0.78c-1.32,0.307-2.107,2.618-3.358,2.967c-1.31,0.364-2.558,0.676-3.786,1.083
c-1.295,0.431-2.42,1.065-3.617,1.54c-1.274,0.506-2.599,0.645-3.753,1.197c-1.245,0.595-3.081-0.016-4.176,0.631
c-1.197,0.706-1.708,2.576-2.712,3.337c-1.433,0.298-3.323-1.003-4.657-0.657c-1.426,0.369-2.145,3.001-3.446,3.421
c-1.416,0.455-2.697,0.851-3.95,1.36c-1.396,0.568-2.613,1.065-3.788,1.694c-1.357,0.726-2.903,0.768-3.936,1.563
c-1.251,0.965-2.896,1.448-3.616,2.497c-0.875,1.274-1.733,2.949-1.733,4.316c0,1.309,1.145,2.697,1.949,3.922
c0.669,1.019,2.377,1.142,3.545,2.082c0.969,0.779,1.356,2.533,2.635,3.248c1.108,0.619,2.505,0.877,3.825,1.44
c1.186,0.505,2.608,0.509,3.949,0.964c1.233,0.419,2.017,2.546,3.371,2.918c1.265,0.349,3.109-1.417,4.471-1.112
c1.289,0.288,2.74,1.422,4.107,1.669c-1.103,1.431-1.768,2.963-1.768,4.479c0,1.337-0.349,3.022,0.515,4.295
c0.7,1.03,1.501,2.567,2.724,3.544c0.998,0.798,2.954,0.552,4.275,1.307c1.134,0.647,2.545,0.891,3.903,1.504
c1.209,0.545,2.338,1.418,3.714,1.934c1.255,0.47,2.587,0.865,3.972,1.308c1.286,0.41,2.44,1.446,3.833,1.832
c1.309,0.362,2.922-0.297,4.32,0.042c1.326,0.321,2.738,0.328,4.139,0.627c1.339,0.285,2.528,1.413,3.933,1.678
c1.349,0.254,2.627,1.093,4.034,1.326c1.355,0.226,2.722,0.622,4.128,0.827c1.363,0.199,2.9-0.691,4.308-0.512
c1.37,0.175,2.726,0.591,4.136,0.747c1.374,0.153,2.826-0.342,4.235-0.207c1.378,0.131,2.658,1.546,4.068,1.658
c1.38,0.11,2.754,0.655,4.163,0.748c1.384,0.091,2.786,0.355,4.195,0.429c1.388,0.071,2.834-0.692,4.245-0.639
c1.389,0.054,2.807-0.489,4.216-0.454c1.392,0.035,2.785,0.446,4.195,0.464c1.393,0.018,2.796,0.772,4.206,0.772
c1.408,0,2.798-1.621,4.189-1.639c1.408-0.018,2.813,0.56,4.202,0.524c1.409-0.036,2.855,1.211,4.243,1.158
c1.41-0.054,2.758-1.373,4.145-1.444c1.41-0.073,2.88,0.968,4.264,0.877c1.41-0.093,2.766-0.883,4.147-0.993
c1.41-0.112,2.858,0.274,4.236,0.144c1.411-0.134,2.675-1.569,4.051-1.722c1.411-0.157,2.889,0.407,4.26,0.232
c1.41-0.181,2.719-0.947,4.084-1.147c1.408-0.206,2.88,0.139,4.237-0.087c1.406-0.233,2.548-1.763,3.897-2.017
c1.404-0.265,2.915,0.228,4.252-0.058c1.402-0.3,2.888-0.089,4.214-0.41c1.398-0.339,2.911-0.159,4.22-0.521
c1.393-0.386,2.4-1.938,3.686-2.351c1.387-0.441,2.927-0.27,4.183-0.739c1.376-0.516,2.594-1.268,3.803-1.813
c1.357-0.613,2.856-0.822,3.989-1.471c1.321-0.755,2.313-1.893,3.31-2.69c1.221-0.977,2.145-2.077,2.844-3.107
c0.86-1.271,2.056-2.62,2.056-3.955c0-1.299-1.028-2.709-1.844-3.946c-0.667-1.012-1.907-1.735-3.077-2.695
c-0.958-0.786-2.406-0.938-3.678-1.684c-1.093-0.641-2.356-0.943-3.666-1.551c-1.166-0.54-1.504-3.222-2.833-3.732
c-1.212-0.466-3.243,1.189-4.583,0.75c-1.243-0.408-1.964-2.671-3.312-3.055c-1.265-0.361-2.847,0.258-4.2-0.081
c-1.282-0.32-2.753,0.067-4.11-0.232c-1.295-0.286-2.47-1.238-3.83-1.505c-1.304-0.255-2.721,0.003-4.083-0.232
c-1.313-0.228-2.525-1.179-3.888-1.388c-1.32-0.202-2.61-0.8-3.974-0.984c-1.324-0.179-2.813,0.804-4.177,0.643
c-1.331-0.157-2.645-0.546-4.011-0.686c-1.333-0.136-2.543-1.786-3.908-1.905c-1.339-0.117-2.711-0.188-4.079-0.287
C459.781,157.882,458.544,158.395,457.177,158.313z"/>
</g>
<g>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="590.7119" y1="159.1006" x2="590.7119" y2="108.1001">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#785775"/>
</linearGradient>
<path fill="url(#SVGID_3_)" d="M678.331,130.378c0-1.278-0.719-3.297-1.763-4.468c-0.796-0.893-2.567-1.268-3.894-2.073
c-1.067-0.649-2.827-0.141-4.199-0.722c-1.184-0.5-2.44-0.811-3.826-1.253c-1.245-0.397-2.338-1.407-3.729-1.752
c-1.282-0.318-2.518-1.052-3.911-1.322c-1.307-0.253-2.548-1.263-3.942-1.471c-1.324-0.197-2.686-0.679-4.081-0.833
c-1.337-0.146-2.75-0.23-4.144-0.334c-1.347-0.1-2.779,0.907-4.172,0.849c-0.598-0.949-1.312-2.607-2.879-3.452
c-1.102-0.594-2.634-0.998-4.152-1.525c-1.246-0.433-3.093,0.776-4.588,0.396c-1.311-0.333-2.469-1.599-3.95-1.886
c-1.349-0.261-2.934,0.655-4.407,0.436c-1.371-0.204-2.555-2.131-4.022-2.296c-1.387-0.155-2.95,1.167-4.413,1.05
c-1.398-0.112-2.734-1.544-4.193-1.62c-1.408-0.073-2.879,0.903-4.335,0.866c-1.414-0.036-2.835,0.482-4.287,0.482
c-1.45,0-2.873-0.746-4.285-0.71c-1.454,0.037-2.893-0.238-4.298-0.165c-1.458,0.076-2.883,0.226-4.279,0.338
c-1.462,0.117-2.861,0.458-4.248,0.613c-1.465,0.164-2.779,0.998-4.149,1.201c-1.472,0.218-3.016-0.438-4.362-0.178
c-1.479,0.286-3.106-0.313-4.417,0.019c-1.492,0.378-2.637,1.684-3.882,2.115c-1.518,0.525-3.426-0.016-4.529,0.576
c-1.563,0.837-2.111,2.804-2.721,3.744c-1.391,0.03-2.756,0.438-4.116,0.486c-1.393,0.049-2.744,0.476-4.102,0.542
c-1.394,0.069-2.801-0.548-4.154-0.461c-1.395,0.089-2.693,1.093-4.042,1.202c-1.395,0.111-2.938-1.735-4.28-1.604
c-1.398,0.136-2.578,2.067-3.913,2.224c-1.401,0.164-2.801-0.029-4.128,0.155c-1.403,0.195-2.748,0.422-4.062,0.639
c-1.408,0.232-2.774,0.347-4.07,0.603c-1.413,0.279-3.024-0.594-4.294-0.289c-1.423,0.342-2.56,1.516-3.786,1.888
c-1.44,0.437-3.102,0.029-4.249,0.502c-1.477,0.609-2.505,1.905-3.448,2.565c-1.476,1.033-2.533,2.387-2.533,3.513
c0,1.116,0.767,2.851,2.218,3.876c0.929,0.656,2.975-0.274,4.431,0.331c1.13,0.471,1.935,2.15,3.354,2.585
c1.21,0.37,2.771-0.221,4.175,0.12c1.252,0.305,2.262,2.047,3.656,2.326c1.276,0.255,2.94-1.313,4.327-1.08
c1.295,0.217,2.495,1.237,3.88,1.433c1.309,0.186,2.645,0.416,4.027,0.58c1.317,0.157,2.617,0.796,3.997,0.933
c1.324,0.132,2.779-0.922,4.157-0.809c1.331,0.109,2.665,0.325,4.041,0.416c1.336,0.089,2.662,0.562,4.037,0.632
c1.34,0.069,2.605,1.271,3.979,1.322c-0.004,0.072-0.611-0.695-0.611-0.623c0,1.311,2.091,1.924,2.916,3.15
c0.682,1.012,0.457,2.889,1.644,3.824c0.979,0.772,2.759,0.458,4.049,1.167c1.117,0.614,2.01,1.748,3.34,2.309
c1.192,0.502,2.154,1.84,3.503,2.294c1.238,0.416,2.983-0.675,4.343-0.302c1.27,0.347,2.534,0.715,3.899,1.021
c1.291,0.289,2.436,1.394,3.806,1.644c1.308,0.238,2.691,0.171,4.065,0.371c1.319,0.192,2.696,0.011,4.069,0.166
c1.33,0.149,2.513,2.128,3.889,2.241c1.336,0.11,2.764-0.523,4.138-0.449c1.344,0.072,2.708,0.487,4.084,0.524
c1.348,0.035,2.73,0.126,4.105,0.126c1.346,0,2.695-0.288,4.016-0.322c1.348-0.035,2.723,0.387,4.038,0.317
c1.348-0.071,2.635-1.082,3.945-1.188c1.348-0.108,2.706,0.012,4.01-0.132c1.348-0.148,2.678-0.358,3.974-0.543
c1.347-0.192,2.476-1.536,3.761-1.765c1.343-0.238,2.663-0.304,3.933-0.58c1.339-0.292,2.973,0.768,4.222,0.437
c1.333-0.354,2.229-2.058,3.45-2.454c1.323-0.429,2.54-0.874,3.72-1.349c1.306-0.525,2.725-0.567,3.839-1.144
c1.274-0.658,2.72-0.923,3.722-1.64c1.193-0.854,1.349-2.61,2.116-3.534c0.941-1.133,2.048-1.905,2.279-3.119
c1.473-0.263,2.772-1.185,4.13-1.5c1.472-0.342,3.17,0.431,4.489,0.032c1.468-0.443,3.005-0.62,4.262-1.126
c1.457-0.588,2.53-1.854,3.669-2.514c1.42-0.824,2.405-1.921,3.264-2.839C676.589,132.918,678.331,131.715,678.331,130.378z"/>
</g>
</g>
<g opacity="0.7">
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="998.3154" y1="147.1504" x2="998.3154" y2="29.8677">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#5D4A69"/>
</linearGradient>
<path fill="url(#SVGID_4_)" d="M1136.349,72.375c-1.146,0-1.944-1.323-3.071-1.284c-0.82-0.869-2.217-1.019-3.604-1.85
c-1.082-0.649-2.445-1.058-3.854-1.68c-1.188-0.526-2.477-1.045-3.886-1.551c-1.246-0.447-2.188-2.136-3.598-2.566
c-1.281-0.39-3.086,0.787-4.497,0.412c-1.305-0.346-2.763-0.206-4.175-0.538c-1.322-0.312-2.21-2.777-3.622-3.076
c-1.334-0.283-3.099,1.351-4.511,1.081c-1.344-0.257-2.48-1.814-3.893-2.06c-1.352-0.236-2.939,0.77-4.351,0.544
c-1.358-0.217-2.641-1.082-4.052-1.289c-1.363-0.199-2.795-0.06-4.205-0.25c-1.368-0.184-2.645-1.264-4.057-1.439
c-1.372-0.169-2.797-0.1-4.209-0.26c-1.375-0.156-2.713-0.891-4.125-1.038c-1.379-0.144-2.969,1.063-4.381,0.929
c0.014-0.202,1.023-0.792,1.023-0.995c0-1.364-2.074-2.293-2.688-3.597c-0.549-1.166-0.756-2.45-1.758-3.554
c-0.866-0.953-2.343-1.175-3.521-2.073c-1.036-0.79-1.114-3.098-2.376-3.84c-1.136-0.668-3.017-0.072-4.323-0.697
c-1.198-0.574-1.82-2.613-3.154-3.147c-1.242-0.498-3.228,0.897-4.578,0.437c-1.272-0.434-2.53-0.885-3.894-1.285
c-1.295-0.379-2.626-0.595-3.998-0.942c-1.312-0.331-2.421-1.547-3.799-1.847c-1.327-0.289-2.577-1.087-3.961-1.345
c-1.338-0.249-2.725-0.384-4.112-0.603c-1.346-0.213-2.738-0.264-4.129-0.448c-1.353-0.179-2.826,0.605-4.217,0.456
c-1.359-0.146-2.584-1.827-3.978-1.945c-1.365-0.115-2.812,0.621-4.207,0.534c-1.368-0.085-2.683-1.645-4.077-1.702
c-1.372-0.057-2.833,2.354-4.229,2.326c-1.375-0.028-2.735-1.933-4.131-1.933c-1.385,0-2.741,1.625-4.105,1.653
c-1.386,0.028-2.761-0.414-4.124-0.358c-1.386,0.057-2.777-0.308-4.137-0.223c-1.387,0.086-2.81-0.431-4.167-0.317
c-1.387,0.117-2.684,1.063-4.037,1.208c-1.386,0.148-2.812-0.175-4.158,0.002c-1.383,0.181-2.589,1.42-3.928,1.631
c-1.379,0.216-2.829-0.181-4.159,0.065c-1.375,0.254-2.617,0.999-3.937,1.284c-1.37,0.296-2.792,0.195-4.098,0.522
c-1.364,0.342-2.533,1.218-3.821,1.592c-1.356,0.394-2.875,0.098-4.142,0.526c-1.342,0.453-2.425,1.45-3.661,1.938
c-1.324,0.523-2.613,1.607-3.808,2.169c-1.514-0.104-3.188-2.057-4.729-2.127c-1.52-0.069-3.091,0.758-4.636,0.723
c-1.521-0.034-3.054,0.591-4.598,0.591c-1.369,0-2.731-0.826-4.083-0.799c-1.369,0.027-2.777-1.057-4.127-1.003
c-1.37,0.055-2.729,0.545-4.077,0.628c-1.37,0.083-2.664,1.18-4.01,1.291c-1.369,0.113-2.725,0.208-4.066,0.349
c-1.368,0.143-2.605,1.174-3.943,1.345c-1.365,0.174-2.886-0.925-4.217-0.723c-1.363,0.207-2.699,0.509-4.023,0.744
c-1.358,0.241-2.41,1.916-3.726,2.186c-1.354,0.278-3.06-1.187-4.364-0.88c-1.347,0.317-2.619,0.887-3.91,1.233
c-1.338,0.359-2.366,1.683-3.643,2.073c-1.328,0.406-2.671,0.606-3.929,1.044c-1.315,0.458-3.105-0.414-4.339,0.077
c-1.297,0.517-1.651,3.124-2.853,3.675c-1.274,0.585-3.24-0.37-4.401,0.252c-1.242,0.666-2.327,1.557-3.431,2.262
c-1.194,0.763-1.65,2.415-2.673,3.22c-1.121,0.883-1.797,1.96-2.699,2.889c-0.997,1.027-2.629,1.299-3.341,2.375
c-0.785,1.187-2.683,1.935-3.099,3.172c-0.439,1.309,0.332,3.044,0.332,4.4c0,0.868-0.505,0.766-0.322,1.615
c-1.45,0.199-1.913,2.369-3.302,2.599c-1.449,0.24-3.145-1.081-4.521-0.809c-1.446,0.286-2.743,1.143-4.104,1.462
c-1.441,0.338-3.107-0.283-4.445,0.091c-1.437,0.401-2.648,1.476-3.955,1.915c-1.428,0.48-2.965,0.586-4.226,1.108
c-1.41,0.583-2.073,2.559-3.259,3.189c-1.377,0.734-2.437,1.528-3.484,2.318c-1.282,0.967-1.78,2.051-2.522,3.089
c-0.919,1.287-1.754,1.896-1.754,3.266c0,1.357-0.586,2.962,0.317,4.239c0.729,1.032,1.921,2.038,3.187,3
c1.033,0.786,2.601,0.989,3.962,1.72c1.17,0.629,2.709,0.554,4.103,1.136c1.246,0.521,2.321,1.554,3.732,2.033
c1.292,0.439,2.763,0.378,4.183,0.78c1.324,0.374,2.592,1.019,4.02,1.358c1.346,0.32,3.14,1.098,4.571,1.385
c-1.169,0.745-3.127,1.226-4.081,2.006c-1.086,0.887-1.525,2.353-2.316,3.281c-0.914,1.071-1.511,2.155-2.006,3.273
c-0.551,1.243-0.494,2.392-0.494,3.682c0,1.33-0.334,2.648,0.25,3.927c0.521,1.145,1.973,1.661,2.931,2.756
c0.827,0.945,1.179,2.406,2.311,3.307c0.994,0.792,1.739,2.133,2.955,2.886c1.091,0.677,2.226,1.534,3.485,2.177
c1.153,0.589,2.4,1.23,3.688,1.789c1.194,0.519,2.759,0.307,4.063,0.797c1.225,0.461,2.586,0.649,3.903,1.084
c1.248,0.411,2.715,0.179,4.042,0.566c1.267,0.369,2.242,1.88,3.576,2.226c1.281,0.332,2.947-0.85,4.287-0.541
c1.293,0.298,2.087,2.999,3.432,3.275c1.303,0.268,2.904-0.828,4.253-0.582c1.309,0.238,2.487,1.38,3.838,1.598
c1.314,0.212,2.714,0.074,4.066,0.267c1.322,0.187,2.78-0.538,4.136-0.371c1.326,0.164,2.506,1.771,3.862,1.915
c1.329,0.141,2.728-0.156,4.084-0.035c1.333,0.119,2.668,0.494,4.025,0.594c1.336,0.099,2.812-1.767,4.169-1.688
c1.34,0.078,2.649,0.67,4.01,0.729c1.34,0.058,2.696-0.456,4.056-0.418c1.343,0.038,2.664,1.181,4.023,1.2
c1.345,0.019,2.696,0.62,4.056,0.62c1.37,0,2.745,0.328,4.1,0.309c1.37-0.02,2.712-1.222,4.065-1.261
c1.371-0.039,2.793,1.396,4.145,1.337c1.371-0.06,2.627-2.226,3.977-2.305c1.37-0.08,2.844,1.539,4.19,1.439
c1.37-0.102,2.713-0.518,4.058-0.639c1.369-0.123,2.809,0.447,4.149,0.304c1.367-0.146,2.745-0.269,4.081-0.435
c1.366-0.17,2.725-0.454,4.057-0.645c1.365-0.195,2.672-0.785,3.998-1.001c1.362-0.223,2.498-1.66,3.818-1.903
c1.359-0.251,2.75-0.199,4.061-0.472c1.356-0.281,2.545-1.168,3.847-1.473c1.352-0.315,2.809-0.044,4.099-0.383
c1.347-0.354,2.355-1.735,3.631-2.112c1.339-0.396,2.8-0.187,4.057-0.607c1.328-0.446,3.228,0.77,4.46,0.297
c1.316-0.505,1.736-3.071,2.938-3.604c1.293-0.575,3.499,0.837,4.652,0.231c1.263-0.664,1.819-2.558,2.903-3.256
c0.774,0.024,1.591,0.646,2.38,0.646c1.437,0,2.783-1.684,4.171-1.766c1.438-0.086,3.021,1.788,4.394,1.619
c1.438-0.177,2.951-0.113,4.302-0.374c1.432-0.277,2.614-1.652,3.93-2.016c1.418-0.393,2.937-0.408,4.199-0.892
c1.392-0.533,2.531-1.548,3.706-2.179c1.337-0.718,2.674-1.342,3.689-2.168c1.199-0.975,0.873-2.94,1.558-4.036
c0.794-1.27,1.474-1.93,1.474-3.315c0-0.989-0.382-2.743-0.795-3.677c1.447-0.37,3.718-0.375,5.058-0.774
c1.44-0.43,3.274,0.484,4.584,0.021c1.43-0.506,2.594-1.629,3.856-2.171c1.412-0.606,2.807-2.11,3.996-2.757
c0.229,1.3,0.906,2.827,1.694,4.028c0.701,1.068,0.931,2.671,2.024,3.638c0.963,0.85,2.231,1.532,3.465,2.287
c1.108,0.678,2.104,1.857,3.407,2.445c1.195,0.541,3.216-0.913,4.556-0.456c1.252,0.426,2.038,2.461,3.4,2.806
c1.289,0.327,2.675,0.511,4.05,0.76c1.315,0.237,2.804-0.563,4.187-0.402c1.334,0.154,2.653,0.325,4.039,0.403
c1.344,0.076,2.676-0.189,4.061-0.189c1.451,0,2.93,1.687,4.335,1.604c1.453-0.086,2.716-1.979,4.109-2.148
c1.451-0.177,2.895,0.1,4.268-0.162c1.442-0.274,2.922-0.151,4.265-0.513c1.426-0.383,2.616-1.288,3.913-1.761
c1.399-0.51,2.511-1.367,3.738-1.97c1.351-0.663,2.864-1.206,3.979-1.969c1.216,0.334,2.375,2.18,3.654,2.461
c1.233,0.271,2.877-1.46,4.162-1.241c1.25,0.213,2.405,0.955,3.699,1.116c1.26,0.157,2.502,0.485,3.8,0.591
c1.268,0.103,2.54,0.2,3.839,0.252c1.272,0.051,2.548,1.37,3.847,1.37c1.376,0,2.714-1.632,4.06-1.689
c1.377-0.058,2.728,0.053,4.068-0.063c1.374-0.118,2.636-0.824,3.967-1c1.371-0.181,2.944,1.119,4.264,0.88
c1.363-0.247,2.853,0.007,4.154-0.298c1.353-0.318,2.31-2.113,3.587-2.491c1.337-0.396,2.445-1.261,3.691-1.717
c1.314-0.481,2.64-0.706,3.845-1.25c1.281-0.579,3.333,0.39,4.479-0.254c1.232-0.693,1.482-2.913,2.545-3.675
c1.156-0.83,3.168-0.597,4.104-1.5c1.028-0.99,1.942-2.233,2.682-3.299c0.808-1.166,0.617-2.896,1.048-4.137
c0.451-1.3-0.043-2.593-0.043-3.957c0-1.365,0.955-2.819,0.503-4.121c-0.432-1.242-1.565-2.215-2.374-3.381
c-0.739-1.067-1.577-2.094-2.606-3.085c-0.937-0.901-1.813-1.969-2.97-2.798c-1.063-0.762-2.486-1.028-3.72-1.722
c-1.146-0.645-2.228-1.462-3.509-2.041c-1.204-0.543-2.268-1.554-3.581-2.035c-1.246-0.456-2.596-0.767-3.932-1.161
c-1.278-0.378-2.563-0.91-3.916-1.228c-1.301-0.306-2.919,0.87-4.282,0.623c-1.318-0.239-2.315-2.69-3.686-2.872
c-1.331-0.176-2.876,1.261-4.251,1.142c-1.34-0.116-2.658-0.778-4.035-0.836C1139.095,71.677,1137.725,72.375,1136.349,72.375z"/>
</g>
<g>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="925.7148" y1="130.9277" x2="925.7148" y2="93.124">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#785775"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M954.04,96.999c-1.538,0-3.054,1.11-4.546,1.173c-1.542,0.065-3.011,0.673-4.494,0.801
c-1.541,0.133-3.24-1.325-4.709-1.128c-1.541,0.207-3.121,2.775-4.569,3.046c-1.007-0.718-2.194-2.314-3.71-2.931
c-1.218-0.496-2.325-1.751-3.825-2.167c-1.305-0.362-2.955,0.375-4.444,0.083c-1.352-0.266-2.734-0.522-4.217-0.724
c-1.38-0.188-2.683-1.523-4.158-1.65c-1.399-0.12-2.86-0.317-4.331-0.378c-1.411-0.059-2.882,1.632-4.347,1.632
c-1.484,0-2.968-1.515-4.398-1.455c-1.49,0.063-2.841,1.663-4.258,1.787c-1.498,0.13-2.915,0.191-4.313,0.385
c-1.505,0.208-2.839,0.716-4.208,0.99c-1.512,0.303-3.242-0.776-4.561-0.401c-1.523,0.433-3.092,0.569-4.314,1.086
c-1.543,0.651-3.313,1.02-4.297,1.779c-1.435,1.108-1.815,3.286-1.815,4.551c0,0.157,0.884,0.271,0.908,0.426
c-0.012,0-0.555,0.815-0.568,0.815c-1.435,0-2.803-0.414-4.142-0.285c-1.45,0.14-2.895-0.098-4.187,0.175
c-1.465,0.31-3.033,0.188-4.229,0.643c-1.477,0.561-1.998,2.5-2.949,3.233c-1.333,1.027-1.629,1.588-1.629,2.831
c0,1.441-0.59,2.766,1.16,3.901c-1.795,1.088-1.757,2.263-1.757,3.47c0,1.135,0.812,1.791,2.408,2.823
c0.996,0.645,1.961,1.796,3.503,2.385c1.197,0.457,2.735,0.265,4.229,0.683c1.276,0.356,2.657,0.551,4.131,0.875
c1.317,0.29,2.408,2.1,3.871,2.361c1.343,0.24,2.752,0.588,4.207,0.802c1.359,0.2,2.858-0.177,4.308-0.001
c1.371,0.166,2.798,0.242,4.243,0.386c1.382,0.137,2.758,0.819,4.201,0.934c1.388,0.111,2.827,0.067,4.267,0.156
c1.395,0.086,2.813,0.423,4.252,0.488c1.397,0.063,2.881-1.604,4.315-1.562c1.404,0.041,2.8,1.051,4.235,1.071
c1.407,0.021,2.833-0.434,4.267-0.434c1.325,0,2.642,0.315,3.944,0.298c1.326-0.019,2.671,1.01,3.971,0.974
c1.328-0.036,2.578-2.031,3.875-2.085c1.332-0.056,2.608-0.578,3.903-0.652c1.332-0.075,2.646,0.168,3.936,0.074
c1.334-0.098,2.792,1.616,4.076,1.5c1.335-0.12,2.697,0.102,3.974-0.038c1.337-0.146,2.513-0.859,3.78-1.025
c1.474,0.125,2.98-0.804,4.509-0.739c1.482,0.063,2.975,0.295,4.502,0.295c1.411,0,2.78-0.575,4.155-0.628
c1.414-0.055,2.822,0.392,4.189,0.283c1.417-0.111,2.737-0.767,4.095-0.933c1.415-0.172,2.667-0.955,4.009-1.183
c1.413-0.239,3.174,1.533,4.494,1.236c1.407-0.315,2.771-0.804,4.062-1.179c1.398-0.407,2.796-0.811,4.039-1.281
c1.38-0.523,2.17-2.224,3.336-2.817c1.345-0.684,2.462-1.376,3.489-2.141c1.242-0.925,1.566-2.184,2.287-3.206
c0.873-1.24,2.102-1.855,2.102-3.198c0-1.344-0.948-2.158-1.823-3.399c-0.721-1.021-1.285-2.14-2.528-3.065
c-1.027-0.764-1.461-2.825-2.804-3.509c-1.168-0.594-2.987-0.065-4.368-0.588c-1.243-0.471-2.514-1.066-3.912-1.473
c-1.29-0.375-2.654-0.683-4.063-0.999c-1.319-0.296-2.519-1.566-3.931-1.805c-1.342-0.228-3.041,1.798-4.456,1.626
c-1.356-0.165-2.683-0.438-4.098-0.55c-1.368-0.108-2.651-1.913-4.066-1.967C956.873,97.428,955.453,96.999,954.04,96.999z"/>
</g>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="1002.4375" y1="93.8955" x2="1002.4375" y2="51.4702">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#785775"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M1103.261,76.97c0-1.192,0.986-2.874,0.022-3.932c-0.749-0.822-2.777-0.313-4.014-1.017
c-1.009-0.573-1.355-2.89-2.639-3.365c-1.117-0.414-2.57-0.327-3.864-0.653c-1.177-0.296-2.345-0.285-3.644-0.5
c0.404-0.412-0.313-0.523-0.313-0.964c0-0.955-0.065-2.348-1.822-3.129c-1.026-0.456-2.627,0.02-4.121-0.346
c-1.186-0.29-2.371-1.175-3.797-1.395c-1.248-0.192-2.571-0.587-3.969-0.717c-1.281-0.119-2.684,0.771-4.064,0.71
c-1.302-0.057-2.619,0.17-3.987,0.17c-1.898,0-3.551-1.185-5.312-1.077c-0.545-1.045-1.215-2.072-2.371-2.984
c-0.941-0.743-2.175-1.527-3.461-2.155c-1.107-0.541-2.364-1.217-3.688-1.656c-1.191-0.395-2.657-0.253-3.997-0.554
c-1.239-0.278-2.523-0.777-3.869-0.966c-1.27-0.178-2.669,0.377-4.016,0.287c-1.286-0.086-2.595-1.259-3.938-1.259
c-1.342,0-2.72,0.133-4.006,0.219c-1.346,0.09-2.503,1.786-3.771,1.963c-1.348,0.188-2.678,0.034-3.92,0.313
c-1.341,0.301-2.285,1.553-3.477,1.948c-1.324,0.439-2.574,0.506-3.682,1.047c-1.285,0.628-2.528,0.888-3.47,1.63
c-1.155,0.912-2.521,1.177-3.065,2.221c-1.133-0.053-2.013-0.783-3.175-0.81c-1.136-0.027-2.312,1.44-3.473,1.44
c-1.301,0-2.572,0.25-3.841,0.283c-1.305,0.034-2.636-1.086-3.9-1.019c-1.306,0.069-2.613,0.059-3.87,0.162
c-1.309,0.107-2.384,0.656-3.632,0.797c-0.307-1.168-0.736-2.913-2.142-3.938c-1.009-0.736-2.749-0.925-4.235-1.558
c-1.211-0.516-2.831-0.257-4.314-0.69c-1.298-0.379-2.762-0.232-4.24-0.539c-1.346-0.279-2.688-0.647-4.162-0.859
c-1.375-0.197-2.59-2.258-4.06-2.391c-1.395-0.126-2.967,1.756-4.432,1.692c-1.407-0.062-2.808-0.171-4.267-0.171
c-1.328,0-2.679-1.738-3.964-1.687c-1.333,0.053-2.548,1.786-3.824,1.891c-1.336,0.11-2.693-0.409-3.955-0.247
c-1.34,0.172-2.677,0.145-3.919,0.372c-1.342,0.246-2.351,1.674-3.563,1.978c-1.343,0.337-2.886-0.366-4.046,0.035
c-1.343,0.464-2.773,0.586-3.836,1.125c-1.331,0.675-2.427,1.653-3.249,2.423c-1.132,1.06-1.851,2.493-1.851,3.677
c0,0.107,0.085-0.998,0.094-0.892c-1.457,0.267-2.519,1.942-3.878,2.254c-1.455,0.334-2.834,0.714-4.165,1.096
c-1.448,0.416-2.822,0.812-4.11,1.28c-1.436,0.521-3.194,0.144-4.411,0.724c-1.411,0.674-2.91,1.266-3.995,2.008
c-1.335,0.913-2.214,2.445-2.999,3.444c-0.991,1.262,0.061,2.914,0.061,4.277c0,1.324-0.959,2.834-0.022,4.063
c0.746,0.981,2.74,0.746,4.017,1.646c1.039,0.731,1.882,1.756,3.236,2.423c1.169,0.576,2.229,1.515,3.611,2.035
c1.239,0.466,2.349,1.558,3.744,1.975c1.283,0.382,2.492,1.408,3.896,1.744c1.311,0.315,3.025-0.97,4.432-0.699
c1.332,0.257,2.42,2.219,3.83,2.436c1.346,0.206,2.943-1.092,4.354-0.926c1.357,0.16,2.764-0.032,4.174,0.089
c1.366,0.117,2.74,0.149,4.15,0.229c1.373,0.077,2.718,1.154,4.127,1.193c1.377,0.038,2.78,0.718,4.188,0.718
c1.484,0,2.929-1.87,4.38-1.912c1.486-0.043,2.909-0.425,4.354-0.511c1.488-0.088,3.063,1.393,4.5,1.261
c1.49-0.136,2.821-1.45,4.249-1.629c1.488-0.187,3.216,1.444,4.63,1.212c1.486-0.244,2.745-1.657,4.141-1.947
c1.169,0.301,2.457,0.349,3.761,0.601c1.199,0.232,2.25,1.747,3.55,1.935c1.219,0.176,2.571-0.132,3.867,0.001
c1.233,0.127,2.627-1.372,3.92-1.287c1.243,0.083,2.487-0.129,3.778-0.087c1.25,0.041,2.479,1.973,3.767,1.973
c1.379,0,2.758-0.097,4.094-0.143c1.385-0.048,2.698-1.055,4.026-1.149c1.389-0.099,2.849,0.854,4.163,0.708
c1.393-0.155,2.741-0.546,4.039-0.75c1.396-0.22,2.688-0.815,3.959-1.088c1.403-0.3,2.591-1.123,3.818-1.481
c1.409-0.411,2.801-0.302,3.945-0.779c1.166,0.479,2.533,0.535,3.971,0.947c1.247,0.357,2.412,1.456,3.838,1.756
c1.291,0.272,2.79-0.176,4.209,0.044c1.317,0.204,2.613,1.003,4.027,1.158c1.336,0.146,2.831-1.153,4.241-1.054
c1.349,0.094,2.649,1.542,4.056,1.589c1.358,0.046,2.756-1.526,4.158-1.526c1.428,0,2.856,1.74,4.238,1.692
c1.434-0.05,2.752-1.67,4.126-1.769c1.438-0.102,2.825-0.034,4.185-0.185c1.445-0.162,3.121,1.62,4.464,1.407
c1.449-0.23,2.88-0.611,4.192-0.895c1.457-0.316,2.884-0.765,4.147-1.141c1.467-0.437,2.2-2.6,3.369-3.108
c1.488-0.646,3.312,0.08,4.241-0.66c1.399-0.192,2.412-1.314,3.687-1.599c1.398-0.313,2.447-1.42,3.662-1.833
c1.393-0.472,3.521,0.949,4.622,0.366c1.356-0.718,1.647-2.84,2.479-3.692C1103.332,79.207,1103.261,78.239,1103.261,76.97z"/>
</g>
</g>
<g opacity="0.8">
<g>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="26.7661" y1="190.2373" x2="26.7661" y2="73.0513">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#5D4A69"/>
</linearGradient>
<path fill="url(#SVGID_7_)" d="M164.958,114.008c-1.146,0-2.406,1.012-3.532,1.051c-0.82-0.869-1.466-2.584-2.854-3.416
c-1.083-0.648-2.948-0.094-4.355-0.717c-1.188-0.526-1.937-2.439-3.346-2.944c-1.246-0.447-2.854-0.111-4.264-0.541
c-1.281-0.39-2.431-1.514-3.842-1.889c-1.305-0.346-2.597-1.065-4.008-1.397c-1.322-0.312-3.065,1.031-4.478,0.732
c-1.334-0.282-2.698-0.556-4.11-0.826c-1.343-0.257-2.839,0.225-4.25-0.021c-1.351-0.236-2.313-2.983-3.724-3.208
c-1.358-0.217-3.083,1.775-4.495,1.568c-1.362-0.199-2.727-0.475-4.137-0.664c-1.369-0.184-2.648-1.189-4.06-1.363
c-1.372-0.169-2.648-1.354-4.06-1.515c-1.376-0.156-2.987,1.684-4.399,1.537c-1.379-0.144-2.446-2.229-3.858-2.363
c0.013-0.201,0.099,0.525,0.099,0.322c0-1.364-1.575-2.242-2.189-3.546c-0.549-1.166,0.539-3.577-0.464-4.681
c-0.865-0.953-2.054-2.03-3.233-2.929c-1.036-0.79-3.523,0.425-4.785-0.317c-1.135-0.668-1.271-3.356-2.577-3.981
c-1.199-0.574-3.078,0.197-4.412-0.337c-1.241-0.498-2.229-1.836-3.58-2.297c-1.272-0.434-3.109,0.825-4.472,0.425
c-1.295-0.379-2.076-2.758-3.448-3.104c-1.312-0.331-2.629-0.926-4.007-1.226c-1.327-0.289-3.159,1.793-4.543,1.535
c-1.337-0.249-2.61-0.851-3.997-1.07c-1.346-0.213-2.744-0.035-4.134-0.219c-1.353-0.178-2.581-1.405-3.972-1.555
c-1.359-0.146-2.78,0.268-4.173,0.15c-1.365-0.115-2.616-2.06-4.012-2.147c-1.368-0.085-2.832,1.258-4.226,1.201
c-1.373-0.057-2.773,0.921-4.169,0.892c-1.375-0.028-2.734-0.997-4.129-0.997c-1.385,0-2.763-0.48-4.128-0.453
c-1.385,0.028-2.707,1.466-4.07,1.521c-1.386,0.057-2.87-2.067-4.23-1.983c-1.386,0.086-2.764,0.367-4.121,0.48
c-1.387,0.117-2.644,1.482-3.997,1.627c-1.385,0.148-2.859-0.588-4.207-0.411c-1.383,0.181-2.669,0.937-4.008,1.147
c-1.378,0.216-2.819-0.028-4.148,0.218c-1.376,0.254-2.803,0.216-4.123,0.501c-1.37,0.295-2.741,0.576-4.046,0.903
c-1.364,0.342-2.722,0.695-4.01,1.069c-1.356,0.394-2.08,2.65-3.347,3.078c-1.342,0.453-2.706,0.574-3.942,1.063
c-1.324,0.524-2.893,0.285-4.087,0.847c-1.514-0.104-3.015-0.752-4.557-0.823c-1.52-0.069-3.066-0.092-4.611-0.127
c-1.522-0.034-3.068,0.424-4.612,0.424c-1.369,0-2.709,1.093-4.061,1.12c-1.369,0.027-2.766-1.345-4.116-1.291
c-1.37,0.055-2.751-0.102-4.099-0.019c-1.37,0.083-2.682,0.908-4.027,1.019c-1.37,0.113-2.714,0.327-4.057,0.467
c-1.368,0.143-2.634,0.941-3.972,1.112c-1.366,0.174-2.668,0.539-4,0.741c-1.363,0.207-2.823-0.373-4.147-0.137
c-1.358,0.241-2.755,0.181-4.071,0.451c-1.353,0.278-2.613,0.88-3.917,1.188c-1.346,0.317-2.941-0.401-4.232-0.054
c-1.338,0.359-2.389,1.677-3.665,2.067c-1.329,0.406-2.633,0.787-3.891,1.225c-1.315,0.458-2.637,0.812-3.87,1.303
c-1.297,0.517-2.418,1.342-3.619,1.894c-1.275,0.585-3.124-0.016-4.285,0.606c-1.242,0.666-1.296,3.266-2.399,3.97
c-1.194,0.763-2.149,1.573-3.171,2.378c-1.122,0.883-2.253,1.452-3.155,2.381c-0.998,1.027-2.54,1.432-3.252,2.509
c-0.785,1.187-2.058,2.193-2.475,3.432c-0.439,1.309,0.06,2.886,0.06,4.242c0,0.868,0.232,1.9,0.415,2.748
c-1.45,0.199-3.164-0.662-4.553-0.432c-1.449,0.24-2.798,0.973-4.175,1.245c-1.447,0.286-2.653,1.501-4.014,1.821
c-1.442,0.338-2.646,1.287-3.984,1.661c-1.437,0.401-2.816,0.622-4.124,1.062c-1.427,0.48-2.67,1.069-3.931,1.59
c-1.41,0.584-3.573-0.64-4.758-0.009c-1.377,0.735-1.754,2.871-2.801,3.661c-1.283,0.968-1.789,2.11-2.53,3.149
c-0.919,1.286-2.863,1.979-2.863,3.348c0,1.357,1.654,2.242,2.558,3.519c0.73,1.032,1.895,1.455,3.16,2.418
c1.034,0.786,1.521,2.456,2.882,3.187c1.171,0.629,2.815,0.349,4.209,0.931c1.246,0.521,2.56,0.842,3.971,1.321
c1.292,0.438,2.354,1.67,3.774,2.072c1.324,0.374,2.45,1.718,3.877,2.058c1.346,0.319,3.275-0.1,4.707,0.188
c-1.169,0.744-2.573,1.67-3.527,2.45c-1.085,0.887-2.861,1.068-3.652,1.997c-0.912,1.071,0.129,3.264-0.366,4.382
c-0.551,1.243-2.23,2.083-2.23,3.373c0,1.33,0.453,2.763,1.036,4.042c0.522,1.145,2.011,1.731,2.969,2.826
c0.827,0.944,0.772,2.996,1.904,3.897c0.994,0.792,2.552,1.043,3.767,1.797c1.091,0.677,2.25,1.417,3.511,2.06
c1.153,0.589,2.604,0.688,3.891,1.246c1.194,0.519,2.442,1,3.747,1.49c1.226,0.461,2.75,0.111,4.068,0.545
c1.249,0.412,1.89,2.898,3.217,3.286c1.267,0.369,2.964-0.666,4.298-0.32c1.281,0.332,2.742-0.038,4.083,0.271
c1.292,0.298,2.397,1.508,3.742,1.784c1.302,0.268,2.674,0.261,4.023,0.507c1.308,0.238,2.722-0.099,4.072,0.119
c1.315,0.213,2.647,0.3,4,0.492c1.322,0.187,2.381,2.473,3.737,2.64c1.326,0.164,2.84-1.129,4.197-0.985
c1.329,0.141,2.629,0.687,3.985,0.808c1.333,0.119,2.739-0.587,4.096-0.487c1.336,0.099,2.569,1.952,3.928,2.031
c1.339,0.078,2.766-1.296,4.126-1.237c1.34,0.058,2.665,0.767,4.023,0.805c1.343,0.038,2.713-1.051,4.074-1.031
c1.344,0.019,2.684,2.08,4.043,2.08c1.37,0,2.728-1.495,4.082-1.515c1.37-0.02,2.732,0.113,4.085,0.074
c1.371-0.039,2.747,0.308,4.099,0.249c1.371-0.06,2.72-0.378,4.07-0.457c1.371-0.08,2.68-0.837,4.027-0.937
c1.37-0.102,2.685-0.569,4.029-0.69c1.369-0.123,2.745,0.107,4.086-0.036c1.368-0.146,2.915,1.367,4.251,1.201
c1.366-0.17,2.724-0.423,4.056-0.613c1.365-0.195,2.409-2.366,3.736-2.582c1.363-0.223,2.831,0.355,4.15,0.112
c1.359-0.251,2.639-0.756,3.95-1.028c1.356-0.281,2.709-0.421,4.011-0.726c1.352-0.315,2.837,0.018,4.127-0.321
c1.347-0.354,2.504-1.276,3.78-1.654c1.339-0.396,2.321-1.721,3.578-2.142c1.329-0.446,3.279,0.983,4.512,0.511
c1.316-0.505,2.72-0.801,3.921-1.334c1.294-0.575,2.648-1.069,3.801-1.675c1.263-0.664,1.734-2.814,2.819-3.513
c0.774,0.025,1.704,0.465,2.493,0.465c1.437,0,2.839-0.251,4.226-0.333c1.439-0.086,2.775-0.703,4.147-0.872
c1.438-0.177,3.044,0.924,4.395,0.663c1.431-0.277,2.615-1.491,3.931-1.854c1.418-0.393,3.177,0.317,4.439-0.166
c1.392-0.533,2.361-1.973,3.536-2.604c1.337-0.718,3.234-0.636,4.25-1.462c1.199-0.976,0.661-3.396,1.346-4.491
c0.793-1.27,1.98-2.131,1.98-3.516c0-0.987-0.696-2.335-1.109-3.269c1.448-0.37,3.575,0.462,4.916,0.062
c1.44-0.43,2.508-1.877,3.817-2.34c1.43-0.506,2.794-0.968,4.057-1.511c1.411-0.605,2.832-1.285,4.02-1.933
c0.229,1.301,1.246,2.347,2.034,3.548c0.701,1.069,1.604,1.829,2.698,2.795c0.962,0.851,2.096,1.332,3.329,2.086
c1.108,0.679,1.332,3.156,2.634,3.745c1.195,0.541,2.644,0.813,3.985,1.271c1.251,0.426,2.997-0.682,4.36-0.336
c1.289,0.326,2.414,1.44,3.79,1.688c1.314,0.237,2.595,1.045,3.979,1.205c1.333,0.154,2.811-1.174,4.198-1.096
c1.343,0.076,2.662,1.818,4.047,1.818c1.451,0,2.93-0.085,4.334-0.168c1.454-0.086,2.841-0.956,4.234-1.126
c1.451-0.177,3.015,0.363,4.388,0.103c1.442-0.274,2.689-1.395,4.032-1.756c1.426-0.383,3.123,0.088,4.42-0.385
c1.399-0.51,1.821-3.134,3.049-3.737c1.35-0.664,3.219,0.141,4.335-0.622c1.216,0.334,2.591-0.646,3.87-0.364
c1.233,0.271,2.489,0.291,3.775,0.51c1.249,0.213,2.38,1.126,3.674,1.287c1.26,0.157,2.575-0.354,3.872-0.248
c1.268,0.104,2.456,1.507,3.755,1.559c1.272,0.051,2.57-1.056,3.87-1.056c1.376,0,2.765,1.428,4.111,1.371
c1.376-0.059,2.704-0.833,4.044-0.948c1.374-0.118,2.792,0.247,4.123,0.071c1.371-0.182,2.78-0.159,4.099-0.397
c1.364-0.248,2.345-2.179,3.647-2.484c1.353-0.318,2.774-0.113,4.052-0.491c1.336-0.395,3.002,0.278,4.249-0.179
c1.314-0.48,1.829-2.776,3.034-3.321c1.282-0.578,3.515,0.836,4.662,0.19c1.232-0.692,1.254-3.193,2.316-3.956
c1.157-0.829,3.055-0.6,3.992-1.502c1.028-0.99,1.572-2.34,2.311-3.406c0.808-1.166,1.821-2.199,2.252-3.439
c0.451-1.301,0.9-2.731,0.9-4.096c0-1.365,0.075-2.979-0.377-4.28c-0.431-1.241-1.69-2.287-2.499-3.454
c-0.74-1.066-2.513-1.236-3.542-2.228c-0.936-0.901-1.487-2.21-2.643-3.039c-1.063-0.763-2.093-1.623-3.326-2.316
c-1.146-0.645-1.775-2.518-3.056-3.096c-1.204-0.544-3.058,0.308-4.37-0.173c-1.247-0.456-2.519-0.884-3.854-1.279
c-1.278-0.378-2.348-1.708-3.7-2.026c-1.301-0.306-2.743-0.196-4.106-0.443c-1.318-0.239-2.589-1.138-3.96-1.319
c-1.331-0.176-2.924,1.908-4.299,1.789c-1.341-0.116-2.593-1.477-3.97-1.535C167.699,114.678,166.334,114.008,164.958,114.008z"/>
</g>
<g>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-45.728" y1="173.4521" x2="-45.728" y2="135.6836">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#785775"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M-17.352,141.739c-1.538,0-3.014,0.19-4.506,0.254c-1.541,0.064-3.168-1.634-4.652-1.506
c-1.542,0.133-2.823,2.282-4.292,2.479c-1.541,0.207-2.984-1.854-4.432-1.583c-1.007-0.719-2.722,0.308-4.238-0.31
c-1.218-0.496-2.327-1.64-3.826-2.056c-1.305-0.362-2.817-0.194-4.306-0.487c-1.352-0.266-2.794-0.191-4.276-0.394
c-1.38-0.188-2.825,0.19-4.3,0.063c-1.399-0.121-2.753-0.954-4.224-1.015c-1.412-0.059-2.834-1.502-4.298-1.502
c-1.484,0-2.897,2.122-4.327,2.182c-1.491,0.063-2.975-0.736-4.392-0.612c-1.498,0.131-2.859,0.861-4.258,1.055
c-1.504,0.208-3.221-1.176-4.59-0.901c-1.512,0.303-2.841,1.212-4.16,1.587c-1.523,0.433-3.042,0.671-4.265,1.188
c-1.543,0.651-2.648,1.814-3.631,2.574c-1.436,1.108-1.58,2.345-1.58,3.609c0,0.156-0.87,0.334-0.846,0.488
c-0.012,0,0.237,0.145,0.223,0.145c-1.435,0-2.825-0.03-4.164,0.099c-1.45,0.14-2.928-0.131-4.22,0.142
c-1.464,0.31-2.507,1.686-3.703,2.14c-1.476,0.561-2.641,1.038-3.592,1.771c-1.332,1.027-2.591,1.812-2.591,3.055
c0,1.439,2.187,2.798,3.936,3.934c-1.795,1.089-2.964,2.23-2.964,3.437c0,1.136,0.674,1.335,2.271,2.367
c0.997,0.645,1.472,2.761,3.013,3.35c1.197,0.458,2.717,0.521,4.211,0.938c1.276,0.357,2.632,0.869,4.106,1.193
c1.317,0.29,2.788,0.224,4.251,0.484c1.343,0.24,2.699,0.786,4.154,1.001c1.359,0.199,2.967-1.208,4.416-1.032
c1.372,0.166,2.65,1.373,4.096,1.517c1.382,0.138,2.861-0.599,4.305-0.483c1.388,0.11,2.693,1.672,4.132,1.761
c1.395,0.087,2.881-1.189,4.32-1.124c1.397,0.063,2.752,1.744,4.187,1.787c1.404,0.041,2.835,0.1,4.271,0.12
c1.407,0.021,2.839-0.896,4.273-0.896c1.325,0,2.64,0.216,3.942,0.198c1.327-0.019,2.652,0.349,3.952,0.313
c1.329-0.036,2.63-0.525,3.927-0.58c1.332-0.056,2.582-1.234,3.877-1.309c1.332-0.075,2.719,1.132,4.008,1.038
c1.333-0.098,2.687,0.243,3.971,0.127c1.334-0.12,2.594-0.781,3.871-0.921c1.336-0.146,2.622-1.065,3.89-1.231
c1.474,0.125,2.989,0.883,4.518,0.948c1.482,0.063,2.986-0.373,4.514-0.373c1.412,0,2.824,0.943,4.199,0.891
c1.415-0.055,2.716-1.544,4.084-1.652c1.417-0.111,2.877,0.668,4.235,0.502c1.416-0.172,2.889,0.174,4.231-0.054
c1.413-0.239,2.536-1.737,3.856-2.034c1.408-0.315,2.827-0.271,4.117-0.646c1.398-0.407,2.647-0.977,3.891-1.448
c1.38-0.523,2.732-0.829,3.899-1.423c1.344-0.684,2.608-1.26,3.635-2.025c1.242-0.925,1.315-2.54,2.035-3.561
c0.874-1.24,2.511-1.874,2.511-3.217c0-1.344-1.332-2.194-2.208-3.435c-0.721-1.021-1.381-2.046-2.624-2.971
c-1.027-0.765-1.441-2.836-2.785-3.52c-1.167-0.594-2.591-1.093-3.972-1.616c-1.243-0.471-2.766-0.493-4.164-0.9
c-1.29-0.376-2.507-1.46-3.915-1.776c-1.32-0.296-2.804-0.275-4.216-0.515c-1.341-0.228-2.734-0.682-4.149-0.854
c-1.356-0.166-2.844,0.318-4.259,0.207c-1.368-0.107-2.755-0.908-4.169-0.963C-14.495,139.703-15.939,141.739-17.352,141.739z"/>
</g>
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="30.9614" y1="136.7842" x2="30.9614" y2="94.8638">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#785775"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M133.624,119.856c0-1.192-2.025-1.728-2.989-2.786c-0.749-0.822-0.845-2.644-2.082-3.348
c-1.008-0.574-2.118-1.468-3.4-1.942c-1.118-0.414-2.367-1.023-3.661-1.349c-1.176-0.296-2.651,0.447-3.949,0.232
c0.403-0.412,0.465-0.795,0.465-1.237c0-0.955-0.642-2.372-2.399-3.154c-1.026-0.456-2.362-1.087-3.855-1.453
c-1.186-0.29-2.592-0.402-4.018-0.622c-1.248-0.192-2.65,0.036-4.048-0.094c-1.281-0.119-2.675,0.867-4.056,0.806
c-1.301-0.057-2.603-0.298-3.972-0.298c-1.898,0-3.857-0.323-5.617-0.215c-0.545-1.045-1.734-1.776-2.891-2.688
c-0.942-0.743-1.185-2.911-2.471-3.539c-1.107-0.541-2.398-1.274-3.722-1.713c-1.191-0.395-2.975,0.974-4.315,0.673
c-1.239-0.278-2.375-1.338-3.721-1.527c-1.269-0.178-2.665,0.632-4.011,0.542c-1.287-0.086-2.561-0.639-3.903-0.639
c-1.341,0-2.694-0.643-3.98-0.557c-1.345,0.09-2.476,1.792-3.744,1.969c-1.348,0.188-2.978-1.44-4.218-1.161
c-1.34,0.301-2.079,2.527-3.271,2.922c-1.325,0.439-2.382,0.941-3.489,1.482c-1.285,0.628-3.585-0.571-4.526,0.171
c-1.155,0.911-0.991,3.381-1.537,4.425c-1.133-0.054-2.666-0.676-3.829-0.704c-1.136-0.027-2.283,0.093-3.445,0.093
c-1.301,0-2.575,0.303-3.844,0.335c-1.304,0.034-2.578,0.059-3.843,0.126c-1.306,0.069-2.547,0.514-3.804,0.617
c-1.308,0.107-3.182,0.211-4.43,0.353c-0.307-1.168,0.004-4.025-1.401-5.049c-1.009-0.736-2.807-0.85-4.293-1.482
c-1.211-0.516-2.722-0.639-4.205-1.072c-1.298-0.379-2.731-0.543-4.209-0.849c-1.346-0.279-2.722-0.724-4.196-0.936
c-1.375-0.197-2.851,0.169-4.32,0.036c-1.394-0.126-2.814,0.007-4.279-0.057c-1.407-0.062-2.811-1.305-4.271-1.305
c-1.329,0-2.604,1.38-3.889,1.431c-1.333,0.053-2.702-1.074-3.979-0.969c-1.336,0.11-2.593,0.714-3.855,0.876
c-1.339,0.172-2.514,0.994-3.756,1.222c-1.342,0.246-3.062-1.43-4.273-1.126c-1.343,0.337-2.498,1.333-3.658,1.734
c-1.342,0.464-2.527,1.204-3.588,1.743c-1.331,0.675-2.991,0.953-3.813,1.723c-1.132,1.06-2.039,2.982-2.039,4.167
c0,0.106,1.038,0.199,1.047,0.305c-1.458,0.267-3.109-0.491-4.469-0.179c-1.454,0.334-2.403,2.464-3.734,2.847
c-1.448,0.416-2.847,0.634-4.135,1.103c-1.436,0.522-2.833,0.819-4.05,1.4c-1.412,0.673-2.978,0.862-4.063,1.604
c-1.335,0.913-3.2,1.388-3.985,2.387c-0.991,1.263-1.336,3.362-1.336,4.726c0,1.324,0.831,2.968,1.766,4.198
c0.747,0.981,2.125,1.735,3.402,2.636c1.039,0.731,2.571,0.842,3.925,1.508c1.169,0.576,2.301,1.39,3.683,1.909
c1.239,0.466,2.408,1.377,3.804,1.793c1.283,0.383,2.68,0.603,4.083,0.939c1.31,0.314,2.564,1.201,3.971,1.473
c1.332,0.257,2.82-0.064,4.229,0.152c1.346,0.206,2.774,0.05,4.184,0.217c1.357,0.16,2.658,1.244,4.069,1.365
c1.366,0.117,2.759,0.563,4.169,0.642c1.372,0.077,2.856-2.011,4.265-1.973c1.377,0.038,2.743,1.854,4.15,1.854
c1.484,0,2.985,0.252,4.436,0.21c1.486-0.044,2.945-0.789,4.39-0.875c1.488-0.089,2.813-1.871,4.252-2.002
c1.49-0.136,3.224,2.233,4.652,2.054c1.488-0.188,2.914-0.854,4.328-1.085c1.486-0.243,2.803-2.076,4.199-2.366
c1.168,0.301,2.335,1.715,3.638,1.967c1.199,0.232,2.385,1.031,3.684,1.219c1.219,0.176,2.612-0.583,3.909-0.45
c1.233,0.127,2.459,0.851,3.753,0.937c1.243,0.082,2.557-0.534,3.848-0.492c1.25,0.04,2.52-0.572,3.808-0.572
c1.379,0,2.697-0.6,4.033-0.646c1.384-0.047,2.844,1.931,4.172,1.837c1.389-0.099,2.561-2.164,3.877-2.31
c1.393-0.155,2.889,0.932,4.187,0.728c1.397-0.22,2.548-1.381,3.818-1.653c1.403-0.3,2.989,0.481,4.216,0.124
c1.41-0.411,2.596-0.124,3.741-0.602c1.167,0.479,2.175,0.905,3.612,1.317c1.247,0.357,2.638,0.836,4.063,1.136
c1.291,0.272,3.1-1.947,4.519-1.728c1.318,0.204,2.437,2.149,3.851,2.304c1.336,0.146,2.747,0.059,4.156,0.157
c1.35,0.094,2.725,0.631,4.131,0.678c1.358,0.047,2.766-0.862,4.167-0.862c1.428,0,2.866,1.04,4.248,0.992
c1.433-0.05,2.837-0.62,4.21-0.718c1.438-0.103,2.805-0.687,4.165-0.838c1.445-0.162,2.714-1.142,4.057-1.354
c1.449-0.229,2.732-0.73,4.044-1.015c1.457-0.316,3.329,1.334,4.592,0.958c1.467-0.437,2.569-1.718,3.738-2.225
c1.488-0.646,2.213-2.598,3.143-3.337c1.4-0.192,3.003-0.181,4.277-0.466c1.399-0.313,3.319,1.412,4.533,1
c1.393-0.472,1.865-2.918,2.967-3.501c1.355-0.718,2.811-0.829,3.642-1.681C132.146,122.293,133.624,121.126,133.624,119.856z"/>
</g>
</g>
<g>
<rect x="268.732" y="240.517" fill="#FFDFA6" width="2.114" height="3.399"/>
<rect x="271.306" y="240.517" fill="#FFDFA6" width="2.113" height="3.399"/>
<rect x="268.732" y="244.192" fill="#FFDFA6" width="2.114" height="3.399"/>
<rect x="271.306" y="244.192" fill="#FFDFA6" width="2.113" height="3.399"/>
<rect x="268.732" y="247.868" fill="#FFDFA6" width="2.114" height="3.4"/>
<rect x="271.306" y="247.868" fill="#FFDFA6" width="2.113" height="3.4"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 48 KiB

706
img/header/clouds2.svg Normal file
View file

@ -0,0 +1,706 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">
<svg version="1.1" baseProfile="basic" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="1024px"
height="240.518px" viewBox="0 0 1024 240.518" xml:space="preserve">
<path display="none" fill="#66B9E3" d="M699.764,127.13c0-1.305-0.879-2.346-1.542-3.57c-0.582-1.076-1.542-1.758-2.585-2.753
c-0.889-0.85-0.992-2.839-2.184-3.615c-1.045-0.684-2.218-1.492-3.477-2.111c-1.134-0.559-2.777-0.182-4.069-0.683
c-1.189-0.461-2.639-0.234-3.949-0.643c-1.226-0.382-2.524-0.453-3.847-0.783c-1.254-0.314-2.313-1.508-3.646-1.772
c-1.271-0.253-2.621-0.149-3.957-0.355c-1.287-0.197-2.494-1.13-3.835-1.281c-1.297-0.147-2.666,0.261-4.008,0.16
c-1.306-0.1-2.589-0.942-3.931-0.996c-1.313-0.054-2.896,0.783-4.237,0.775c-0.623-1.097-1.232-2.636-2.369-3.658
c-0.949-0.853-2.334-1.268-3.61-2.057c-1.104-0.684-1.768-2.417-3.098-3.046c-1.192-0.563-2.771-0.49-4.131-1.005
c-1.246-0.472-2.5-1.137-3.876-1.564c-1.282-0.397-2.764-0.272-4.149-0.629c-1.307-0.335-2.437-1.649-3.828-1.945
c-1.324-0.281-2.802-0.07-4.197-0.313c-1.341-0.233-2.913,0.908-4.313,0.712c-1.35-0.188-2.564-1.548-3.966-1.7
c-1.36-0.147-2.729-0.495-4.134-0.605c-1.365-0.108-2.731-0.729-4.133-0.802c-1.372-0.072-2.824,1.348-4.229,1.312
c-1.376-0.035-2.751,0.036-4.153,0.036c-1.444,0-2.87-0.334-4.288-0.296c-1.447,0.039-2.893-0.246-4.308-0.169
c-1.447,0.079-2.849,0.522-4.257,0.639c-1.447,0.12-2.825,0.598-4.227,0.756c-1.445,0.163-2.846,0.35-4.236,0.551
c-1.443,0.209-3.197,0.667-4.576,0.917c-0.898-0.901-1.107-3.403-2.25-4.267c-1.024-0.774-2.412-1.273-3.623-2.012
c-1.104-0.674-2.727-0.566-3.979-1.209c-1.159-0.597-2.673-0.475-3.951-1.04c-1.197-0.53-2.351-1.16-3.646-1.664
c-1.227-0.477-2.298-1.402-3.608-1.854c-1.248-0.429-2.716-0.199-4.037-0.604c-1.266-0.387-1.99-2.737-3.32-3.102
c-1.279-0.35-3.125,1.395-4.462,1.066c-1.291-0.317-2.21-2.302-3.552-2.597c-1.302-0.286-2.818,0.359-4.164,0.095
c-1.309-0.257-2.768,0.289-4.114,0.052c-1.314-0.23-2.625-0.449-3.976-0.659c-1.321-0.206-2.638-0.404-3.991-0.591
c-1.326-0.182-2.392-2.496-3.747-2.659c-1.331-0.159-2.669-0.524-4.026-0.666c-1.333-0.138-2.822,1.156-4.181,1.038
c-1.336-0.116-2.587-1.518-3.946-1.614c-1.339-0.097-2.695-0.359-4.055-0.438c-1.342-0.077-2.802,1.961-4.163,1.903
c-1.343-0.058-2.624-2.203-3.984-2.241c-1.346-0.038-2.746,2-4.106,1.981c-1.349-0.02-2.69-0.407-4.051-0.407
c-1.373,0-2.748-1.174-4.106-1.155c-1.374,0.02-2.725,0.904-4.082,0.942c-1.374,0.039-2.693,1.119-4.049,1.177
c-1.374,0.059-2.789-1.054-4.145-0.978c-1.374,0.079-2.753-0.063-4.105,0.035c-1.374,0.101-2.817-0.678-4.167-0.559
c-1.373,0.121-2.689,0.833-4.036,0.974c-1.371,0.144-2.659,0.947-4.001,1.11c-1.369,0.166-2.758,0.075-4.097,0.26
c-1.367,0.19-2.52,1.663-3.853,1.873c-1.365,0.215-2.844-0.435-4.171-0.199c-1.362,0.242-2.94-0.723-4.262-0.46
c-1.359,0.271-2.271,2.557-3.583,2.85c-1.354,0.302-3.017-0.831-4.317-0.506c-1.349,0.335-2.287,2.101-3.577,2.459
c-1.343,0.374-2.824,0.095-4.101,0.491c-1.334,0.416-2.739,0.5-3.997,0.94c-1.323,0.463-2.835,0.353-4.069,0.842
c-1.308,0.52-2.797,0.615-4,1.162c-1.287,0.584-1.644,2.97-2.804,3.585c-1.258,0.666-3.276-0.096-4.377,0.604
c-1.21,0.768-1.649,2.875-2.661,3.679c-1.04-0.03-2.325,0.325-3.382,0.325c-1.364,0-2.712-0.938-4.045-0.889
c-1.365,0.053-2.764-0.556-4.091-0.454c-1.365,0.105-2.645,0.994-3.963,1.15c-1.363,0.162-2.775-0.136-4.083,0.077
c-1.359,0.222-2.524,1.322-3.816,1.596c-1.351,0.287-2.898-0.371-4.168-0.029c-1.34,0.36-2.691,0.677-3.932,1.094
c-1.323,0.444-2.114,2.159-3.311,2.663c-1.297,0.546-3.082-0.073-4.216,0.537c-1.253,0.672-1.886,2.234-2.922,2.977
c-1.172,0.838-1.82,1.969-2.686,2.884c-0.996,1.052-3.364,1.102-3.912,2.236c-0.608,1.258,0.654,3.031,0.654,4.366
c0,1.304-1.063,2.938-0.479,4.169c0.529,1.113,1.86,1.771,2.818,2.808c-1.355,0.182-2.445,0.883-3.774,1.086
c-1.353,0.207-2.9-0.837-4.225-0.608c-1.35,0.231-2.667,0.646-3.986,0.9c-1.346,0.26-2.522,1.313-3.834,1.593
c-1.341,0.288-2.504,1.245-3.809,1.556c-1.335,0.316-2.998-0.749-4.292-0.409c-1.331,0.349-2.431,1.49-3.717,1.862
c-1.323,0.383-2.881-0.054-4.155,0.354c-1.313,0.42-2.445,1.349-3.704,1.792c-1.301,0.458-2.952-0.027-4.192,0.456
c-1.288,0.502-2.42,1.411-3.64,1.939c-1.272,0.55-1.799,2.65-2.994,3.229c-1.25,0.604-3.127-0.103-4.29,0.529
c-1.223,0.664-2.559,1.142-3.681,1.835c-1.188,0.733-1.458,2.782-2.527,3.546c-1.139,0.815-3.409,0.144-4.408,0.991
c-1.071,0.909-2.139,1.934-3.041,2.878c-0.973,1.019-0.087,3.529-0.855,4.585c-0.827,1.136-3.376,1.171-3.954,2.346
c-0.615,1.248,0.286,3.086-0.033,4.372c-0.328,1.323-0.289,2.558-0.289,3.915c0,1.348-0.726,2.742-0.402,4.057
c0.315,1.278,0.028,2.97,0.635,4.21c0.571,1.167,1.836,2.141,2.653,3.271c0.759,1.05,2.916,0.951,3.877,1.965
c0.893,0.94,0.297,3.516,1.357,4.422c0.988,0.845,2.622,1.034,3.749,1.848c1.058,0.763,1.817,2.118,2.993,2.852
c1.11,0.691,2.895,0.341,4.106,1.004c1.151,0.63,2.337,1.239,3.576,1.842c1.183,0.576,2.003,2.034,3.263,2.583
c1.209,0.527,2.323,1.443,3.599,1.945c1.23,0.481,2.564,0.862,3.854,1.32c1.248,0.443,2.764,0.229,4.065,0.647
c1.263,0.407,2.314,0.532,3.625,0.916c-0.985,1.669-0.646,3.332-0.646,5.085c0,1.345-1.108,3.07-0.523,4.368
c0.523,1.159,2.492,1.615,3.455,2.729c0.83,0.961,1.754,1.858,2.892,2.779c0.998,0.808,2.178,1.4,3.4,2.174
c1.097,0.693,2.432,0.976,3.7,1.64c1.16,0.605,2.187,1.496,3.483,2.076c1.203,0.536,2.367,1.219,3.682,1.729
c1.234,0.481,2.141,1.979,3.47,2.436c1.256,0.433,3.004-0.545,4.342-0.134c1.274,0.392,2.514,0.937,3.858,1.307
c1.289,0.354,2.287,1.926,3.638,2.26c1.3,0.323,2.522,1.17,3.878,1.473c1.31,0.294,3.089-1.505,4.448-1.229
c1.318,0.266,2.412,1.771,3.774,2.02c1.325,0.24,2.826-0.442,4.19-0.22c1.33,0.218,2.45,1.903,3.815,2.104
c1.335,0.195,2.719,0.237,4.086,0.415c1.34,0.176,2.677,0.589,4.046,0.746c1.344,0.154,2.761-0.152,4.133-0.016
c1.347,0.136,2.826-1.029,4.198-0.91c1.349,0.118,2.577,1.888,3.949,1.988c1.351,0.1,2.775-0.669,4.147-0.586
c1.354,0.082,2.729-0.081,4.104-0.016c1.356,0.064,2.713,0.271,4.088,0.32c1.357,0.049,2.734-0.485,4.108-0.453
c1.358,0.032,2.701,1.454,4.075,1.47c1.36,0.018,2.736-1.441,4.11-1.441c1.372,0,2.744,1.24,4.104,1.224
c1.372-0.016,2.728-0.729,4.085-0.762c1.372-0.032,2.759,0.596,4.115,0.548c1.373-0.05,2.755,0.138,4.11,0.072
c1.373-0.065,2.643-1.837,3.996-1.919c1.372-0.083,2.874,1.9,4.226,1.802c1.372-0.101,2.573-2.217,3.922-2.334
c1.372-0.119,2.738-0.042,4.085-0.178c1.371-0.14,2.867,1.001,4.211,0.847c1.369-0.158,2.766-0.083,4.105-0.258
c1.369-0.179,2.76-0.189,4.096-0.385c1.367-0.2,2.412-2.379,3.743-2.597c1.365-0.224,2.914,0.764,4.239,0.521
c1.364-0.248,2.79-0.118,4.11-0.385c1.36-0.274,2.397-1.959,3.71-2.252c1.355-0.305,2.729-0.362,4.031-0.687
c1.352-0.335,2.875,0.108,4.164-0.246c1.347-0.371,2.754-0.463,4.03-0.854c1.339-0.411,2.712-0.681,3.97-1.112
c1.329-0.458,2.029-2.502,3.264-2.983c1.314-0.513,2.618-0.832,3.82-1.368c1.296-0.579,3.201,0.216,4.36-0.392
c1.268-0.663,1.627-2.771,2.723-3.465c1.223-0.773,3.438-0.051,4.435-0.859c1.138-0.92,0.789-3.262,1.618-4.223
c0.961-1.113,3.271-1.267,3.793-2.427c0.584-1.295,0.007-3.016,0.007-4.357c0-0.43-0.204-1.509-0.266-1.935
c1.296,0.123,2.662,2.083,3.975,2.188c1.298,0.105,2.665-0.486,3.978-0.398c1.301,0.087,2.656-0.644,3.972-0.573
c1.301,0.069,2.548,1.571,3.861,1.624c1.303,0.052,2.678-1.825,3.991-1.791c1.304,0.034,2.59,1.148,3.904,1.166
c1.306,0.017,2.619-0.489,3.935-0.489c1.396,0,2.786,0.297,4.17,0.278c1.396-0.021,2.8,0.384,4.183,0.346
c1.396-0.039,2.729-1.602,4.109-1.659c1.396-0.059,2.856,1.438,4.236,1.359c1.396-0.079,2.781-0.302,4.16-0.399
c1.393-0.1,2.798-0.064,4.174-0.184c1.394-0.12,2.615-1.928,3.989-2.067c1.391-0.141,2.883,0.81,4.254,0.648
c1.39-0.163,2.636-1.332,4.003-1.514c1.387-0.186,2.718-0.566,4.08-0.771c1.385-0.207,2.986,1.076,4.345,0.849
c1.382-0.23,2.79-0.291,4.145-0.543c1.378-0.256,2.846-0.068,4.192-0.347c1.374-0.282,2.427-2.021,3.769-2.324
c1.369-0.31,2.694-0.691,4.027-1.021c1.364-0.338,3.082,0.736,4.407,0.378c1.357-0.367,2.663-0.924,3.979-1.313
c1.35-0.399,2.809-0.462,4.111-0.884c1.343-0.436,2.283-2.028,3.574-2.486c1.33-0.472,2.755-0.635,4.029-1.13
c1.315-0.512,2.922-0.312,4.176-0.849c1.302-0.557,2.235-1.921,3.466-2.503c1.283-0.606,2.314-1.647,3.519-2.28
c1.259-0.661,2.922-0.546,4.09-1.233c1.228-0.725,1.893-2.289,3.016-3.042c1.188-0.796,1.784-2.251,2.852-3.076
c1.133-0.877,3.187-0.543,4.177-1.451c1.059-0.972,1.229-2.726,2.117-3.729c0.953-1.076,1.983-1.938,2.731-3.05
c0.802-1.188,2.232-1.978,2.789-3.203c0.586-1.293,0.324-2.853,0.628-4.182c0.312-1.358,1.619-2.661,1.619-4.052
c0-1.121,0.126-2.43-0.078-3.529c-0.202-1.087-1.795-2.164-2.186-3.229c1.426-0.187,3.113,0.103,4.474-0.138
c1.421-0.25,2.95,0.048,4.29-0.256c1.415-0.32,2.665-1.263,3.979-1.64c1.402-0.401,2.758-0.859,4.033-1.32
c1.386-0.501,3.001-0.423,4.222-0.987c1.354-0.625,1.623-3.093,2.753-3.788c1.291-0.795,3.648,0.015,4.617-0.859
c1.143-1.031,1.732-2.64,2.376-3.76C699.6,130.045,699.764,128.51,699.764,127.13z"/>
<path display="none" fill="#66B9E3" d="M1136.349,72.375c-1.146,0-1.943-1.323-3.07-1.284c-0.82-0.868-2.218-1.019-3.604-1.85
c-1.082-0.649-2.445-1.058-3.854-1.68c-1.188-0.526-2.478-1.045-3.887-1.552c-1.246-0.446-2.188-2.136-3.598-2.565
c-1.281-0.39-3.086,0.787-4.497,0.412c-1.305-0.347-2.763-0.206-4.175-0.538c-1.322-0.313-2.21-2.777-3.622-3.076
c-1.334-0.283-3.099,1.351-4.511,1.081c-1.344-0.257-2.48-1.814-3.894-2.06c-1.352-0.236-2.938,0.77-4.351,0.544
c-1.358-0.218-2.641-1.082-4.052-1.289c-1.363-0.199-2.795-0.061-4.205-0.25c-1.368-0.185-2.646-1.265-4.058-1.439
c-1.371-0.169-2.797-0.1-4.209-0.26c-1.375-0.156-2.713-0.891-4.125-1.038c-1.379-0.144-2.969,1.063-4.381,0.929
c0.015-0.202,1.023-0.792,1.023-0.995c0-1.363-2.074-2.293-2.688-3.597c-0.549-1.166-0.756-2.45-1.758-3.554
c-0.866-0.953-2.343-1.175-3.521-2.073c-1.036-0.79-1.114-3.098-2.376-3.84c-1.137-0.668-3.018-0.072-4.323-0.697
c-1.198-0.574-1.82-2.613-3.154-3.146c-1.242-0.498-3.228,0.896-4.578,0.437c-1.271-0.434-2.529-0.885-3.894-1.285
c-1.295-0.379-2.626-0.595-3.998-0.941c-1.313-0.331-2.421-1.547-3.799-1.848c-1.327-0.289-2.577-1.087-3.962-1.345
c-1.338-0.249-2.725-0.384-4.111-0.603c-1.346-0.214-2.738-0.265-4.129-0.448c-1.354-0.179-2.826,0.604-4.218,0.456
c-1.358-0.146-2.584-1.827-3.978-1.945c-1.365-0.115-2.813,0.621-4.207,0.534c-1.368-0.085-2.683-1.646-4.077-1.702
c-1.372-0.057-2.833,2.354-4.229,2.326c-1.375-0.028-2.735-1.934-4.132-1.934c-1.385,0-2.74,1.625-4.104,1.653
c-1.386,0.028-2.761-0.414-4.124-0.357c-1.386,0.057-2.777-0.309-4.137-0.224c-1.388,0.086-2.811-0.431-4.167-0.316
c-1.388,0.116-2.685,1.063-4.037,1.208c-1.386,0.147-2.813-0.176-4.158,0.002c-1.383,0.181-2.589,1.42-3.928,1.631
c-1.379,0.216-2.829-0.182-4.159,0.064c-1.375,0.254-2.617,0.999-3.938,1.284c-1.369,0.296-2.792,0.195-4.098,0.522
c-1.364,0.342-2.533,1.218-3.821,1.592c-1.355,0.394-2.875,0.098-4.142,0.526c-1.342,0.452-2.425,1.449-3.661,1.938
c-1.324,0.523-2.613,1.607-3.808,2.169c-1.515-0.104-3.188-2.057-4.729-2.127c-1.52-0.069-3.091,0.758-4.636,0.723
c-1.521-0.033-3.054,0.592-4.598,0.592c-1.369,0-2.731-0.826-4.083-0.8c-1.369,0.027-2.777-1.057-4.128-1.003
c-1.369,0.056-2.729,0.545-4.076,0.628c-1.37,0.083-2.664,1.181-4.011,1.291c-1.368,0.113-2.725,0.208-4.065,0.35
c-1.368,0.143-2.605,1.174-3.943,1.345c-1.365,0.174-2.886-0.925-4.217-0.723c-1.363,0.207-2.699,0.509-4.023,0.744
c-1.357,0.24-2.409,1.916-3.726,2.186c-1.354,0.278-3.06-1.187-4.364-0.88c-1.347,0.316-2.619,0.887-3.91,1.232
c-1.338,0.359-2.365,1.684-3.643,2.073c-1.328,0.406-2.671,0.606-3.929,1.044c-1.315,0.458-3.105-0.414-4.339,0.077
c-1.298,0.518-1.651,3.124-2.854,3.675c-1.273,0.585-3.24-0.37-4.401,0.252c-1.241,0.666-2.326,1.558-3.431,2.263
c-1.194,0.763-1.65,2.415-2.673,3.22c-1.121,0.883-1.797,1.96-2.699,2.889c-0.997,1.027-2.629,1.299-3.341,2.375
c-0.785,1.188-2.683,1.936-3.099,3.172c-0.439,1.31,0.332,3.044,0.332,4.4c0,0.868-0.506,0.766-0.322,1.615
c-1.45,0.199-1.913,2.369-3.302,2.599c-1.449,0.24-3.146-1.081-4.521-0.809c-1.446,0.286-2.743,1.143-4.104,1.462
c-1.441,0.338-3.107-0.283-4.445,0.091c-1.438,0.401-2.648,1.476-3.955,1.915c-1.428,0.479-2.965,0.586-4.227,1.108
c-1.409,0.583-2.072,2.559-3.259,3.188c-1.377,0.734-2.437,1.528-3.483,2.318c-1.282,0.967-1.78,2.051-2.522,3.089
c-0.919,1.287-1.754,1.896-1.754,3.266c0,1.357-0.586,2.962,0.317,4.239c0.729,1.032,1.921,2.038,3.187,3
c1.033,0.786,2.602,0.989,3.962,1.72c1.17,0.629,2.709,0.555,4.104,1.137c1.246,0.521,2.32,1.554,3.731,2.032
c1.292,0.439,2.764,0.378,4.184,0.78c1.323,0.374,2.592,1.019,4.02,1.358c1.347,0.319,3.141,1.098,4.571,1.385
c-1.169,0.745-3.127,1.226-4.081,2.006c-1.086,0.887-1.525,2.353-2.316,3.281c-0.914,1.07-1.511,2.154-2.006,3.272
c-0.551,1.243-0.494,2.393-0.494,3.683c0,1.33-0.334,2.647,0.25,3.927c0.521,1.145,1.974,1.661,2.932,2.756
c0.827,0.945,1.179,2.406,2.311,3.307c0.994,0.792,1.739,2.134,2.955,2.887c1.091,0.677,2.227,1.534,3.485,2.177
c1.152,0.589,2.399,1.229,3.688,1.789c1.194,0.519,2.759,0.307,4.063,0.797c1.225,0.461,2.586,0.649,3.902,1.084
c1.248,0.411,2.716,0.179,4.042,0.566c1.268,0.368,2.242,1.88,3.576,2.226c1.281,0.332,2.947-0.85,4.287-0.541
c1.293,0.298,2.087,2.999,3.432,3.275c1.304,0.268,2.904-0.828,4.254-0.582c1.309,0.237,2.486,1.38,3.838,1.598
c1.313,0.212,2.714,0.074,4.065,0.267c1.322,0.188,2.78-0.537,4.136-0.37c1.326,0.163,2.507,1.771,3.862,1.914
c1.329,0.142,2.729-0.155,4.084-0.034c1.333,0.118,2.668,0.493,4.025,0.594c1.336,0.099,2.812-1.768,4.169-1.688
c1.34,0.078,2.648,0.67,4.01,0.729c1.34,0.058,2.696-0.456,4.057-0.418c1.343,0.038,2.663,1.181,4.022,1.2
c1.345,0.019,2.696,0.62,4.056,0.62c1.37,0,2.745,0.327,4.101,0.309c1.37-0.021,2.712-1.222,4.064-1.261
c1.371-0.039,2.793,1.396,4.146,1.337c1.371-0.061,2.627-2.227,3.977-2.306c1.37-0.079,2.845,1.539,4.19,1.439
c1.37-0.102,2.713-0.518,4.058-0.639c1.369-0.123,2.81,0.446,4.149,0.304c1.367-0.146,2.745-0.27,4.081-0.436
c1.366-0.17,2.725-0.453,4.057-0.645c1.365-0.195,2.672-0.785,3.998-1.001c1.362-0.223,2.498-1.66,3.818-1.903
c1.358-0.251,2.75-0.198,4.061-0.472c1.356-0.281,2.545-1.168,3.847-1.473c1.353-0.315,2.81-0.044,4.1-0.384
c1.347-0.354,2.354-1.734,3.631-2.111c1.339-0.396,2.8-0.188,4.057-0.607c1.328-0.446,3.229,0.771,4.46,0.297
c1.316-0.505,1.736-3.07,2.938-3.604c1.293-0.575,3.499,0.837,4.651,0.23c1.264-0.664,1.819-2.558,2.903-3.256
c0.774,0.024,1.591,0.646,2.38,0.646c1.438,0,2.783-1.685,4.171-1.767c1.438-0.086,3.021,1.788,4.395,1.619
c1.438-0.177,2.951-0.113,4.302-0.374c1.432-0.276,2.614-1.651,3.93-2.016c1.418-0.394,2.938-0.408,4.199-0.893
c1.393-0.532,2.531-1.548,3.706-2.179c1.337-0.718,2.674-1.342,3.689-2.168c1.198-0.975,0.873-2.939,1.558-4.036
c0.794-1.27,1.474-1.93,1.474-3.314c0-0.989-0.382-2.743-0.795-3.678c1.447-0.369,3.718-0.375,5.059-0.773
c1.439-0.43,3.273,0.483,4.584,0.021c1.43-0.506,2.594-1.629,3.855-2.171c1.412-0.605,2.808-2.109,3.996-2.757
c0.229,1.3,0.906,2.827,1.694,4.028c0.701,1.067,0.931,2.671,2.023,3.638c0.963,0.85,2.231,1.532,3.465,2.287
c1.108,0.678,2.104,1.857,3.407,2.445c1.195,0.541,3.216-0.913,4.556-0.456c1.252,0.426,2.038,2.461,3.4,2.806
c1.289,0.327,2.675,0.511,4.05,0.76c1.315,0.237,2.805-0.563,4.188-0.401c1.334,0.153,2.653,0.324,4.039,0.402
c1.344,0.076,2.676-0.188,4.061-0.188c1.451,0,2.931,1.687,4.335,1.604c1.453-0.086,2.716-1.979,4.109-2.147
c1.451-0.178,2.895,0.1,4.268-0.162c1.442-0.274,2.922-0.151,4.266-0.514c1.426-0.383,2.615-1.287,3.912-1.761
c1.399-0.51,2.512-1.367,3.738-1.97c1.352-0.663,2.864-1.206,3.979-1.969c1.216,0.334,2.375,2.18,3.653,2.461
c1.233,0.271,2.877-1.46,4.162-1.241c1.25,0.213,2.405,0.955,3.699,1.116c1.26,0.157,2.502,0.484,3.8,0.591
c1.269,0.103,2.54,0.2,3.839,0.252c1.272,0.051,2.549,1.37,3.848,1.37c1.376,0,2.714-1.632,4.06-1.689
c1.377-0.058,2.729,0.054,4.068-0.063c1.374-0.118,2.636-0.824,3.967-1c1.371-0.182,2.944,1.119,4.265,0.88
c1.362-0.247,2.853,0.007,4.153-0.298c1.354-0.318,2.311-2.113,3.587-2.491c1.338-0.396,2.445-1.261,3.691-1.717
c1.314-0.481,2.641-0.706,3.845-1.25c1.281-0.579,3.333,0.39,4.479-0.254c1.232-0.693,1.482-2.913,2.545-3.676
c1.156-0.829,3.168-0.597,4.104-1.5c1.028-0.989,1.942-2.232,2.683-3.299c0.808-1.166,0.617-2.896,1.048-4.137
c0.451-1.3-0.043-2.593-0.043-3.957c0-1.365,0.955-2.819,0.503-4.121c-0.432-1.242-1.564-2.215-2.374-3.381
c-0.739-1.067-1.577-2.094-2.605-3.085c-0.938-0.901-1.813-1.969-2.971-2.798c-1.063-0.762-2.485-1.028-3.72-1.723
c-1.146-0.645-2.228-1.462-3.509-2.04c-1.204-0.544-2.268-1.555-3.581-2.035c-1.246-0.456-2.596-0.768-3.933-1.161
c-1.277-0.378-2.563-0.91-3.916-1.229c-1.301-0.306-2.918,0.87-4.281,0.623c-1.318-0.238-2.315-2.689-3.687-2.872
c-1.331-0.176-2.876,1.262-4.251,1.143c-1.34-0.116-2.658-0.778-4.035-0.836C1139.095,71.677,1137.725,72.375,1136.349,72.375z"/>
<path display="none" fill="#66B9E3" d="M164.958,114.008c-1.146,0-2.406,1.013-3.532,1.052c-0.82-0.869-1.466-2.584-2.854-3.416
c-1.083-0.648-2.948-0.095-4.355-0.718c-1.188-0.525-1.937-2.438-3.346-2.943c-1.246-0.447-2.854-0.111-4.264-0.541
c-1.281-0.391-2.431-1.515-3.842-1.89c-1.305-0.346-2.597-1.064-4.008-1.396c-1.322-0.313-3.065,1.031-4.478,0.732
c-1.334-0.282-2.698-0.557-4.11-0.826c-1.343-0.257-2.839,0.225-4.25-0.021c-1.351-0.235-2.313-2.982-3.724-3.208
c-1.358-0.217-3.083,1.775-4.495,1.568c-1.362-0.199-2.727-0.476-4.137-0.664c-1.369-0.185-2.648-1.189-4.06-1.363
c-1.372-0.169-2.648-1.354-4.06-1.515c-1.376-0.156-2.987,1.684-4.399,1.537c-1.379-0.145-2.446-2.229-3.858-2.363
c0.013-0.201,0.099,0.525,0.099,0.322c0-1.364-1.575-2.242-2.189-3.546c-0.549-1.166,0.539-3.577-0.464-4.682
c-0.865-0.953-2.054-2.029-3.233-2.929c-1.036-0.79-3.523,0.425-4.785-0.317c-1.135-0.668-1.271-3.355-2.577-3.98
c-1.199-0.574-3.078,0.197-4.412-0.337c-1.241-0.498-2.229-1.836-3.58-2.297c-1.272-0.435-3.109,0.824-4.472,0.425
c-1.295-0.379-2.076-2.758-3.448-3.104c-1.312-0.331-2.629-0.926-4.007-1.226c-1.327-0.289-3.159,1.793-4.543,1.535
c-1.337-0.249-2.61-0.852-3.997-1.07c-1.346-0.213-2.744-0.035-4.134-0.219c-1.353-0.178-2.581-1.405-3.972-1.556
c-1.359-0.146-2.78,0.269-4.173,0.15c-1.365-0.115-2.616-2.06-4.012-2.146c-1.368-0.085-2.832,1.258-4.226,1.2
c-1.373-0.057-2.773,0.921-4.169,0.893c-1.375-0.028-2.734-0.997-4.129-0.997c-1.385,0-2.763-0.48-4.128-0.453
c-1.385,0.028-2.707,1.466-4.07,1.521c-1.386,0.058-2.87-2.066-4.23-1.982c-1.386,0.086-2.764,0.367-4.121,0.479
c-1.387,0.117-2.644,1.482-3.997,1.627c-1.385,0.148-2.859-0.588-4.207-0.41c-1.383,0.181-2.669,0.937-4.008,1.146
c-1.378,0.216-2.819-0.028-4.148,0.218c-1.376,0.254-2.803,0.217-4.123,0.501c-1.37,0.295-2.741,0.576-4.046,0.903
c-1.364,0.342-2.722,0.695-4.01,1.069c-1.356,0.394-2.08,2.649-3.347,3.078c-1.342,0.452-2.706,0.573-3.942,1.063
c-1.324,0.524-2.893,0.285-4.087,0.847c-1.514-0.104-3.015-0.752-4.557-0.822c-1.52-0.069-3.066-0.093-4.611-0.127
c-1.522-0.034-3.068,0.424-4.612,0.424c-1.369,0-2.709,1.093-4.061,1.12c-1.369,0.026-2.766-1.346-4.116-1.291
c-1.37,0.055-2.751-0.103-4.099-0.02c-1.37,0.083-2.682,0.908-4.027,1.02c-1.37,0.112-2.714,0.327-4.057,0.467
c-1.368,0.143-2.634,0.941-3.972,1.112c-1.366,0.174-2.668,0.539-4,0.74c-1.363,0.207-2.823-0.373-4.147-0.137
c-1.358,0.241-2.755,0.181-4.071,0.451c-1.353,0.278-2.613,0.88-3.917,1.188c-1.346,0.317-2.941-0.4-4.232-0.054
c-1.338,0.359-2.389,1.677-3.665,2.067c-1.329,0.405-2.633,0.787-3.891,1.225c-1.315,0.458-2.637,0.813-3.87,1.303
c-1.297,0.518-2.418,1.343-3.619,1.895c-1.275,0.585-3.124-0.017-4.285,0.605c-1.242,0.666-1.296,3.267-2.399,3.971
c-1.194,0.763-2.149,1.572-3.171,2.378c-1.122,0.883-2.253,1.452-3.155,2.381c-0.998,1.027-2.54,1.432-3.252,2.509
c-0.785,1.188-2.058,2.193-2.475,3.433c-0.439,1.309,0.06,2.886,0.06,4.241c0,0.868,0.232,1.9,0.415,2.748
c-1.45,0.199-3.164-0.662-4.553-0.432c-1.449,0.24-2.798,0.973-4.175,1.245c-1.447,0.286-2.653,1.501-4.014,1.82
c-1.442,0.339-2.646,1.287-3.984,1.661c-1.437,0.401-2.816,0.622-4.124,1.063c-1.427,0.479-2.67,1.068-3.931,1.59
c-1.41,0.584-3.573-0.64-4.758-0.009c-1.377,0.734-1.754,2.871-2.801,3.661c-1.283,0.968-1.789,2.109-2.53,3.148
c-0.919,1.286-2.863,1.979-2.863,3.349c0,1.356,1.654,2.241,2.558,3.519c0.73,1.032,1.895,1.455,3.16,2.418
c1.034,0.786,1.521,2.456,2.882,3.188c1.171,0.629,2.815,0.349,4.209,0.931c1.246,0.521,2.56,0.842,3.971,1.321
c1.292,0.438,2.354,1.67,3.774,2.071c1.324,0.374,2.45,1.719,3.877,2.059c1.346,0.318,3.275-0.101,4.707,0.188
c-1.169,0.744-2.573,1.67-3.527,2.45c-1.085,0.887-2.861,1.068-3.652,1.997c-0.912,1.071,0.129,3.264-0.366,4.382
c-0.551,1.243-2.23,2.083-2.23,3.373c0,1.33,0.453,2.763,1.036,4.042c0.522,1.146,2.011,1.731,2.969,2.826
c0.827,0.944,0.772,2.996,1.904,3.896c0.994,0.792,2.552,1.043,3.767,1.798c1.091,0.677,2.25,1.417,3.511,2.06
c1.153,0.589,2.604,0.688,3.891,1.246c1.194,0.519,2.442,1,3.747,1.49c1.226,0.461,2.75,0.11,4.068,0.545
c1.249,0.412,1.89,2.897,3.217,3.286c1.267,0.368,2.964-0.666,4.298-0.32c1.281,0.332,2.742-0.038,4.083,0.271
c1.292,0.299,2.397,1.509,3.742,1.784c1.302,0.269,2.674,0.261,4.023,0.507c1.308,0.238,2.722-0.099,4.072,0.119
c1.315,0.213,2.647,0.3,4,0.492c1.322,0.188,2.381,2.473,3.737,2.64c1.326,0.164,2.84-1.129,4.197-0.984
c1.329,0.141,2.629,0.687,3.985,0.808c1.333,0.119,2.739-0.587,4.096-0.487c1.336,0.1,2.569,1.952,3.928,2.031
c1.339,0.078,2.766-1.296,4.126-1.236c1.34,0.058,2.665,0.767,4.023,0.805c1.343,0.038,2.713-1.051,4.074-1.031
c1.344,0.02,2.684,2.08,4.043,2.08c1.37,0,2.728-1.495,4.082-1.515c1.37-0.021,2.732,0.112,4.085,0.073
c1.371-0.038,2.747,0.309,4.099,0.249c1.371-0.06,2.72-0.378,4.07-0.457c1.371-0.079,2.68-0.837,4.027-0.937
c1.37-0.102,2.685-0.569,4.029-0.69c1.369-0.123,2.745,0.107,4.086-0.035c1.368-0.146,2.915,1.366,4.251,1.2
c1.366-0.17,2.724-0.423,4.056-0.612c1.365-0.195,2.409-2.366,3.736-2.582c1.363-0.224,2.831,0.354,4.15,0.111
c1.359-0.251,2.639-0.756,3.95-1.027c1.356-0.281,2.709-0.421,4.011-0.727c1.352-0.314,2.837,0.019,4.127-0.32
c1.347-0.354,2.504-1.276,3.78-1.654c1.339-0.396,2.321-1.721,3.578-2.143c1.329-0.445,3.279,0.983,4.512,0.512
c1.316-0.505,2.72-0.801,3.921-1.334c1.294-0.575,2.648-1.069,3.801-1.675c1.263-0.664,1.734-2.814,2.819-3.514
c0.774,0.025,1.704,0.465,2.493,0.465c1.437,0,2.839-0.251,4.226-0.333c1.439-0.086,2.775-0.702,4.147-0.872
c1.438-0.177,3.044,0.925,4.395,0.663c1.431-0.276,2.615-1.49,3.931-1.854c1.418-0.394,3.177,0.316,4.439-0.166
c1.392-0.533,2.361-1.973,3.536-2.604c1.337-0.718,3.234-0.636,4.25-1.462c1.199-0.976,0.661-3.396,1.346-4.49
c0.793-1.271,1.98-2.132,1.98-3.517c0-0.987-0.696-2.335-1.109-3.269c1.448-0.37,3.575,0.462,4.916,0.062
c1.44-0.43,2.508-1.877,3.817-2.34c1.43-0.506,2.794-0.968,4.057-1.511c1.411-0.605,2.832-1.285,4.02-1.934
c0.229,1.302,1.246,2.348,2.034,3.548c0.701,1.069,1.604,1.829,2.698,2.796c0.962,0.851,2.096,1.332,3.329,2.086
c1.108,0.679,1.332,3.155,2.634,3.745c1.195,0.54,2.644,0.813,3.985,1.271c1.251,0.426,2.997-0.682,4.36-0.336
c1.289,0.326,2.414,1.44,3.79,1.688c1.314,0.237,2.595,1.046,3.979,1.205c1.333,0.154,2.811-1.174,4.198-1.096
c1.343,0.076,2.662,1.818,4.047,1.818c1.451,0,2.93-0.085,4.334-0.168c1.454-0.086,2.841-0.956,4.234-1.126
c1.451-0.178,3.015,0.362,4.388,0.103c1.442-0.273,2.689-1.395,4.032-1.756c1.426-0.383,3.123,0.088,4.42-0.385
c1.399-0.51,1.821-3.134,3.049-3.737c1.35-0.664,3.219,0.141,4.335-0.622c1.216,0.334,2.591-0.646,3.87-0.364
c1.233,0.271,2.489,0.291,3.775,0.511c1.249,0.213,2.38,1.126,3.674,1.287c1.26,0.156,2.575-0.354,3.872-0.248
c1.268,0.104,2.456,1.507,3.755,1.559c1.272,0.051,2.57-1.056,3.87-1.056c1.376,0,2.765,1.428,4.111,1.371
c1.376-0.06,2.704-0.833,4.044-0.948c1.374-0.118,2.792,0.247,4.123,0.071c1.371-0.183,2.78-0.159,4.099-0.397
c1.364-0.248,2.345-2.179,3.647-2.484c1.353-0.317,2.774-0.112,4.052-0.49c1.336-0.396,3.002,0.277,4.249-0.18
c1.314-0.479,1.829-2.775,3.034-3.32c1.282-0.578,3.515,0.836,4.662,0.189c1.232-0.691,1.254-3.192,2.316-3.956
c1.157-0.829,3.055-0.6,3.992-1.502c1.028-0.99,1.572-2.34,2.311-3.406c0.808-1.166,1.821-2.198,2.252-3.438
c0.451-1.301,0.9-2.731,0.9-4.096c0-1.365,0.075-2.979-0.377-4.28c-0.431-1.241-1.69-2.287-2.499-3.454
c-0.74-1.066-2.513-1.236-3.542-2.228c-0.936-0.901-1.487-2.211-2.643-3.039c-1.063-0.764-2.093-1.623-3.326-2.316
c-1.146-0.645-1.775-2.518-3.056-3.096c-1.204-0.544-3.058,0.308-4.37-0.173c-1.247-0.456-2.519-0.885-3.854-1.279
c-1.278-0.378-2.348-1.708-3.7-2.026c-1.301-0.306-2.743-0.195-4.106-0.442c-1.318-0.239-2.589-1.139-3.96-1.319
c-1.331-0.176-2.924,1.908-4.299,1.789c-1.341-0.116-2.593-1.478-3.97-1.535C167.699,114.678,166.334,114.008,164.958,114.008z"/>
<g opacity="0.7">
<g opacity="0.4">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="637.6367" y1="-101.447" x2="637.6367" y2="51.9446" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="0.9862" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M699.764,127.13c0-1.305-0.879-2.346-1.542-3.57c-0.582-1.076-1.542-1.758-2.585-2.753
c-0.889-0.85-0.992-2.839-2.184-3.615c-1.045-0.684-2.218-1.492-3.477-2.111c-1.134-0.559-2.777-0.182-4.069-0.683
c-1.189-0.461-2.639-0.234-3.949-0.643c-1.226-0.382-2.524-0.453-3.847-0.783c-1.254-0.314-2.313-1.508-3.646-1.772
c-1.271-0.253-2.621-0.149-3.957-0.355c-1.287-0.197-2.494-1.13-3.835-1.281c-1.297-0.147-2.666,0.261-4.008,0.16
c-1.306-0.1-2.589-0.942-3.931-0.996c-1.313-0.054-2.896,0.783-4.237,0.775c-0.623-1.097-1.232-2.636-2.369-3.658
c-0.949-0.853-2.334-1.268-3.61-2.057c-1.104-0.684-1.768-2.417-3.098-3.046c-1.192-0.563-2.771-0.49-4.131-1.005
c-1.246-0.472-2.5-1.137-3.876-1.564c-1.282-0.397-2.764-0.272-4.149-0.629c-1.307-0.335-2.437-1.649-3.828-1.945
c-1.324-0.281-2.802-0.07-4.197-0.313c-1.341-0.233-2.913,0.908-4.313,0.712c-1.35-0.188-2.564-1.548-3.966-1.7
c-1.36-0.147-2.729-0.495-4.134-0.605c-1.365-0.108-2.731-0.729-4.133-0.802c-1.372-0.072-2.824,1.348-4.229,1.312
c-1.376-0.035-2.751,0.036-4.153,0.036c-1.444,0-2.87-0.334-4.288-0.296c-1.447,0.039-2.893-0.246-4.308-0.169
c-1.447,0.079-2.849,0.522-4.257,0.639c-1.447,0.12-2.825,0.598-4.227,0.756c-1.445,0.163-2.846,0.35-4.236,0.551
c-1.443,0.209-3.197,0.667-4.576,0.917c-0.898-0.901-1.107-3.403-2.25-4.267c-1.024-0.774-2.412-1.273-3.623-2.012
c-1.104-0.674-2.727-0.566-3.979-1.209c-1.159-0.597-2.673-0.475-3.951-1.04c-1.197-0.53-2.351-1.16-3.646-1.664
c-1.227-0.477-2.298-1.402-3.608-1.854c-1.248-0.429-2.716-0.199-4.037-0.604c-1.266-0.387-1.99-2.737-3.32-3.102
c-1.279-0.35-3.125,1.395-4.462,1.066c-1.291-0.317-2.21-2.302-3.552-2.597c-1.302-0.286-2.818,0.359-4.164,0.095
c-1.309-0.257-2.768,0.289-4.114,0.052c-1.314-0.23-2.625-0.449-3.976-0.659c-1.321-0.206-2.638-0.404-3.991-0.591
c-1.326-0.182-2.392-2.496-3.747-2.659c-1.331-0.159-2.669-0.524-4.026-0.666c-1.333-0.138-2.822,1.156-4.181,1.038
c-1.336-0.116-2.587-1.518-3.946-1.614c-1.339-0.097-2.695-0.359-4.055-0.438c-1.342-0.077-2.802,1.961-4.163,1.903
c-1.343-0.058-2.624-2.203-3.984-2.241c-1.346-0.038-2.746,2-4.106,1.981c-1.349-0.02-2.69-0.407-4.051-0.407
c-1.373,0-2.748-1.174-4.106-1.155c-1.374,0.02-2.725,0.904-4.082,0.942c-1.374,0.039-2.693,1.119-4.049,1.177
c-1.374,0.059-2.789-1.054-4.145-0.978c-1.374,0.079-2.753-0.063-4.105,0.035c-1.374,0.101-2.817-0.678-4.167-0.559
c-1.373,0.121-2.689,0.833-4.036,0.974c-1.371,0.144-2.659,0.947-4.001,1.11c-1.369,0.166-2.758,0.075-4.097,0.26
c-1.367,0.19-2.52,1.663-3.853,1.873c-1.365,0.215-2.844-0.435-4.171-0.199c-1.362,0.242-2.94-0.723-4.262-0.46
c-1.359,0.271-2.271,2.557-3.583,2.85c-1.354,0.302-3.017-0.831-4.317-0.506c-1.349,0.335-2.287,2.101-3.577,2.459
c-1.343,0.374-2.824,0.095-4.101,0.491c-1.334,0.416-2.739,0.5-3.997,0.94c-1.323,0.463-2.835,0.353-4.069,0.842
c-1.308,0.52-2.797,0.615-4,1.162c-1.287,0.584-1.644,2.97-2.804,3.585c-1.258,0.666-3.276-0.096-4.377,0.604
c-1.21,0.768-1.649,2.875-2.661,3.679c-1.04-0.03-2.325,0.325-3.382,0.325c-1.364,0-2.712-0.938-4.045-0.889
c-1.365,0.053-2.764-0.556-4.091-0.454c-1.365,0.105-2.645,0.994-3.963,1.15c-1.363,0.162-2.775-0.136-4.083,0.077
c-1.359,0.222-2.524,1.322-3.816,1.596c-1.351,0.287-2.898-0.371-4.168-0.029c-1.34,0.36-2.691,0.677-3.932,1.094
c-1.323,0.444-2.114,2.159-3.311,2.663c-1.297,0.546-3.082-0.073-4.216,0.537c-1.253,0.672-1.886,2.234-2.922,2.977
c-1.172,0.838-1.82,1.969-2.686,2.884c-0.996,1.052-3.364,1.102-3.912,2.236c-0.608,1.258,0.654,3.031,0.654,4.366
c0,1.304-1.063,2.938-0.479,4.169c0.529,1.113,1.86,1.771,2.818,2.808c-1.355,0.182-2.445,0.883-3.774,1.086
c-1.353,0.207-2.9-0.837-4.225-0.608c-1.35,0.231-2.667,0.646-3.986,0.9c-1.346,0.26-2.522,1.313-3.834,1.593
c-1.341,0.288-2.504,1.245-3.809,1.556c-1.335,0.316-2.998-0.749-4.292-0.409c-1.331,0.349-2.431,1.49-3.717,1.862
c-1.323,0.383-2.881-0.054-4.155,0.354c-1.313,0.42-2.445,1.349-3.704,1.792c-1.301,0.458-2.952-0.027-4.192,0.456
c-1.288,0.502-2.42,1.411-3.64,1.939c-1.272,0.55-1.799,2.65-2.994,3.229c-1.25,0.604-3.127-0.103-4.29,0.529
c-1.223,0.664-2.559,1.142-3.681,1.835c-1.188,0.733-1.458,2.782-2.527,3.546c-1.139,0.815-3.409,0.144-4.408,0.991
c-1.071,0.909-2.139,1.934-3.041,2.878c-0.973,1.019-0.087,3.529-0.855,4.585c-0.827,1.136-3.376,1.171-3.954,2.346
c-0.615,1.248,0.286,3.086-0.033,4.372c-0.328,1.323-0.289,2.558-0.289,3.915c0,1.348-0.726,2.742-0.402,4.057
c0.315,1.278,0.028,2.97,0.635,4.21c0.571,1.167,1.836,2.141,2.653,3.271c0.759,1.05,2.916,0.951,3.877,1.965
c0.893,0.94,0.297,3.516,1.357,4.422c0.988,0.845,2.622,1.034,3.749,1.848c1.058,0.763,1.817,2.118,2.993,2.852
c1.11,0.691,2.895,0.341,4.106,1.004c1.151,0.63,2.337,1.239,3.576,1.842c1.183,0.576,2.003,2.034,3.263,2.583
c1.209,0.527,2.323,1.443,3.599,1.945c1.23,0.481,2.564,0.862,3.854,1.32c1.248,0.443,2.764,0.229,4.065,0.647
c1.263,0.407,2.314,0.532,3.625,0.916c-0.985,1.669-0.646,3.332-0.646,5.085c0,1.345-1.108,3.07-0.523,4.368
c0.523,1.159,2.492,1.615,3.455,2.729c0.83,0.961,1.754,1.858,2.892,2.779c0.998,0.808,2.178,1.4,3.4,2.174
c1.097,0.693,2.432,0.976,3.7,1.64c1.16,0.605,2.187,1.496,3.483,2.076c1.203,0.536,2.367,1.219,3.682,1.729
c1.234,0.481,2.141,1.979,3.47,2.436c1.256,0.433,3.004-0.545,4.342-0.134c1.274,0.392,2.514,0.937,3.858,1.307
c1.289,0.354,2.287,1.926,3.638,2.26c1.3,0.323,2.522,1.17,3.878,1.473c1.31,0.294,3.089-1.505,4.448-1.229
c1.318,0.266,2.412,1.771,3.774,2.02c1.325,0.24,2.826-0.442,4.19-0.22c1.33,0.218,2.45,1.903,3.815,2.104
c1.335,0.195,2.719,0.237,4.086,0.415c1.34,0.176,2.677,0.589,4.046,0.746c1.344,0.154,2.761-0.152,4.133-0.016
c1.347,0.136,2.826-1.029,4.198-0.91c1.349,0.118,2.577,1.888,3.949,1.988c1.351,0.1,2.775-0.669,4.147-0.586
c1.354,0.082,2.729-0.081,4.104-0.016c1.356,0.064,2.713,0.271,4.088,0.32c1.357,0.049,2.734-0.485,4.108-0.453
c1.358,0.032,2.701,1.454,4.075,1.47c1.36,0.018,2.736-1.441,4.11-1.441c1.372,0,2.744,1.24,4.104,1.224
c1.372-0.016,2.728-0.729,4.085-0.762c1.372-0.032,2.759,0.596,4.115,0.548c1.373-0.05,2.755,0.138,4.11,0.072
c1.373-0.065,2.643-1.837,3.996-1.919c1.372-0.083,2.874,1.9,4.226,1.802c1.372-0.101,2.573-2.217,3.922-2.334
c1.372-0.119,2.738-0.042,4.085-0.178c1.371-0.14,2.867,1.001,4.211,0.847c1.369-0.158,2.766-0.083,4.105-0.258
c1.369-0.179,2.76-0.189,4.096-0.385c1.367-0.2,2.412-2.379,3.743-2.597c1.365-0.224,2.914,0.764,4.239,0.521
c1.364-0.248,2.79-0.118,4.11-0.385c1.36-0.274,2.397-1.959,3.71-2.252c1.355-0.305,2.729-0.362,4.031-0.687
c1.352-0.335,2.875,0.108,4.164-0.246c1.347-0.371,2.754-0.463,4.03-0.854c1.339-0.411,2.712-0.681,3.97-1.112
c1.329-0.458,2.029-2.502,3.264-2.983c1.314-0.513,2.618-0.832,3.82-1.368c1.296-0.579,3.201,0.216,4.36-0.392
c1.268-0.663,1.627-2.771,2.723-3.465c1.223-0.773,3.438-0.051,4.435-0.859c1.138-0.92,0.789-3.262,1.618-4.223
c0.961-1.113,3.271-1.267,3.793-2.427c0.584-1.295,0.007-3.016,0.007-4.357c0-0.43-0.204-1.509-0.266-1.935
c1.296,0.123,2.662,2.083,3.975,2.188c1.298,0.105,2.665-0.486,3.978-0.398c1.301,0.087,2.656-0.644,3.972-0.573
c1.301,0.069,2.548,1.571,3.861,1.624c1.303,0.052,2.678-1.825,3.991-1.791c1.304,0.034,2.59,1.148,3.904,1.166
c1.306,0.017,2.619-0.489,3.935-0.489c1.396,0,2.786,0.297,4.17,0.278c1.396-0.021,2.8,0.384,4.183,0.346
c1.396-0.039,2.729-1.602,4.109-1.659c1.396-0.059,2.856,1.438,4.236,1.359c1.396-0.079,2.781-0.302,4.16-0.399
c1.393-0.1,2.798-0.064,4.174-0.184c1.394-0.12,2.615-1.928,3.989-2.067c1.391-0.141,2.883,0.81,4.254,0.648
c1.39-0.163,2.636-1.332,4.003-1.514c1.387-0.186,2.718-0.566,4.08-0.771c1.385-0.207,2.986,1.076,4.345,0.849
c1.382-0.23,2.79-0.291,4.145-0.543c1.378-0.256,2.846-0.068,4.192-0.347c1.374-0.282,2.427-2.021,3.769-2.324
c1.369-0.31,2.694-0.691,4.027-1.021c1.364-0.338,3.082,0.736,4.407,0.378c1.357-0.367,2.663-0.924,3.979-1.313
c1.35-0.399,2.809-0.462,4.111-0.884c1.343-0.436,2.283-2.028,3.574-2.486c1.33-0.472,2.755-0.635,4.029-1.13
c1.315-0.512,2.922-0.312,4.176-0.849c1.302-0.557,2.235-1.921,3.466-2.503c1.283-0.606,2.314-1.647,3.519-2.28
c1.259-0.661,2.922-0.546,4.09-1.233c1.228-0.725,1.893-2.289,3.016-3.042c1.188-0.796,1.784-2.251,2.852-3.076
c1.133-0.877,3.187-0.543,4.177-1.451c1.059-0.972,1.229-2.726,2.117-3.729c0.953-1.076,1.983-1.938,2.731-3.05
c0.802-1.188,2.232-1.978,2.789-3.203c0.586-1.293,0.324-2.853,0.628-4.182c0.312-1.358,1.619-2.661,1.619-4.052
c0-1.121,0.126-2.43-0.078-3.529c-0.202-1.087-1.795-2.164-2.186-3.229c1.426-0.187,3.113,0.103,4.474-0.138
c1.421-0.25,2.95,0.048,4.29-0.256c1.415-0.32,2.665-1.263,3.979-1.64c1.402-0.401,2.758-0.859,4.033-1.32
c1.386-0.501,3.001-0.423,4.222-0.987c1.354-0.625,1.623-3.093,2.753-3.788c1.291-0.795,3.648,0.015,4.617-0.859
c1.143-1.031,1.732-2.64,2.376-3.76C699.6,130.045,699.764,128.51,699.764,127.13z"/>
</g>
<g>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="571.3457" y1="-78.3079" x2="571.3457" y2="-8.283" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M457.177,158.313c0.07-0.475-0.382-0.491-0.382-0.974c0-1.352-0.064-2.641-0.604-3.93
c-0.496-1.187-1.535-2.042-2.451-3.16c-0.811-0.986-1.365-2.281-2.477-3.205c-0.988-0.82-2.729-0.604-3.938-1.369
c-1.099-0.691-1.263-3.127-2.528-3.765c-1.168-0.59-2.712-0.576-4.013-1.115c-1.216-0.504-2.718-0.354-4.042-0.812
c-1.251-0.433-2.532-0.807-3.872-1.192c-1.276-0.367-2.483-1.063-3.833-1.387c-1.295-0.313-2.664-0.366-4.022-0.635
c-1.311-0.26-2.748,0.21-4.112-0.008c-1.321-0.211-2.494-1.494-3.861-1.663c-1.332-0.166-2.707-0.069-4.079-0.194
c-1.338-0.122-2.708,0.118-4.081,0.036c-1.344-0.08-2.671-0.676-4.044-0.717c-1.348-0.039-2.708,0.563-4.08,0.563
c-1.338,0-2.676-1.021-3.991-0.985c-1.339,0.039-2.637,0.788-3.948,0.864c-1.34,0.078-2.717-0.527-4.024-0.412
c-1.338,0.118-2.723-0.171-4.024-0.014c-1.335,0.162-2.538,1.247-3.83,1.447c-1.333,0.207-2.563,0.839-3.846,1.085
c-1.327,0.255-2.979-1.075-4.247-0.78c-1.32,0.307-2.107,2.618-3.358,2.967c-1.31,0.364-2.558,0.676-3.786,1.083
c-1.295,0.432-2.42,1.065-3.617,1.54c-1.274,0.506-2.599,0.646-3.753,1.197c-1.245,0.595-3.081-0.016-4.176,0.631
c-1.197,0.706-1.708,2.576-2.712,3.337c-1.433,0.298-3.323-1.003-4.657-0.657c-1.426,0.369-2.145,3.001-3.446,3.422
c-1.416,0.454-2.697,0.851-3.95,1.359c-1.396,0.568-2.613,1.065-3.788,1.694c-1.357,0.726-2.903,0.768-3.936,1.563
c-1.251,0.965-2.896,1.448-3.616,2.497c-0.875,1.274-1.733,2.949-1.733,4.316c0,1.309,1.145,2.697,1.949,3.922
c0.669,1.019,2.377,1.142,3.545,2.082c0.969,0.779,1.356,2.533,2.635,3.248c1.108,0.619,2.505,0.877,3.825,1.439
c1.186,0.506,2.608,0.51,3.949,0.965c1.233,0.419,2.017,2.546,3.371,2.918c1.265,0.349,3.109-1.417,4.471-1.112
c1.289,0.288,2.74,1.422,4.107,1.669c-1.103,1.431-1.768,2.963-1.768,4.479c0,1.338-0.349,3.022,0.515,4.296
c0.7,1.029,1.501,2.566,2.724,3.544c0.998,0.798,2.954,0.552,4.275,1.307c1.134,0.647,2.545,0.891,3.903,1.504
c1.209,0.545,2.338,1.418,3.714,1.935c1.255,0.47,2.587,0.864,3.972,1.308c1.286,0.41,2.44,1.446,3.833,1.832
c1.309,0.362,2.922-0.297,4.32,0.042c1.326,0.321,2.738,0.328,4.139,0.627c1.339,0.285,2.528,1.413,3.933,1.678
c1.349,0.254,2.627,1.093,4.034,1.326c1.355,0.226,2.722,0.622,4.128,0.827c1.363,0.199,2.9-0.691,4.308-0.512
c1.37,0.175,2.726,0.591,4.136,0.747c1.374,0.152,2.826-0.343,4.235-0.207c1.378,0.131,2.658,1.546,4.067,1.657
c1.38,0.11,2.754,0.655,4.163,0.748c1.385,0.091,2.786,0.355,4.195,0.43c1.388,0.07,2.834-0.692,4.245-0.64
c1.389,0.055,2.807-0.488,4.216-0.454c1.392,0.035,2.785,0.446,4.195,0.464c1.393,0.019,2.796,0.772,4.206,0.772
c1.407,0,2.798-1.621,4.188-1.639c1.408-0.019,2.813,0.56,4.202,0.523c1.409-0.036,2.855,1.211,4.243,1.158
c1.41-0.054,2.758-1.373,4.145-1.444c1.41-0.072,2.88,0.969,4.265,0.877c1.41-0.093,2.766-0.883,4.146-0.992
c1.41-0.112,2.858,0.273,4.236,0.144c1.411-0.134,2.675-1.569,4.051-1.722c1.411-0.157,2.889,0.407,4.26,0.231
c1.41-0.181,2.72-0.946,4.084-1.146c1.408-0.206,2.88,0.139,4.237-0.087c1.406-0.233,2.548-1.764,3.897-2.018
c1.403-0.265,2.915,0.229,4.252-0.058c1.401-0.3,2.888-0.089,4.214-0.41c1.397-0.339,2.911-0.159,4.22-0.521
c1.394-0.387,2.4-1.938,3.687-2.352c1.387-0.44,2.927-0.27,4.183-0.739c1.376-0.516,2.594-1.268,3.803-1.813
c1.357-0.613,2.856-0.822,3.989-1.471c1.321-0.756,2.313-1.894,3.31-2.69c1.222-0.977,2.146-2.077,2.845-3.107
c0.859-1.271,2.056-2.619,2.056-3.954c0-1.3-1.028-2.709-1.844-3.946c-0.667-1.012-1.907-1.735-3.077-2.695
c-0.958-0.786-2.406-0.938-3.678-1.684c-1.094-0.642-2.356-0.943-3.666-1.552c-1.166-0.539-1.504-3.222-2.833-3.731
c-1.212-0.466-3.243,1.188-4.583,0.75c-1.243-0.408-1.965-2.671-3.313-3.055c-1.265-0.361-2.847,0.258-4.2-0.081
c-1.281-0.32-2.753,0.066-4.109-0.232c-1.295-0.286-2.471-1.238-3.83-1.505c-1.304-0.255-2.722,0.003-4.083-0.232
c-1.313-0.228-2.525-1.179-3.889-1.388c-1.319-0.202-2.609-0.8-3.974-0.983c-1.324-0.18-2.813,0.804-4.177,0.643
c-1.331-0.157-2.646-0.546-4.011-0.687c-1.333-0.136-2.543-1.785-3.908-1.904c-1.339-0.117-2.711-0.188-4.079-0.287
C459.781,157.882,458.544,158.395,457.177,158.313z"/>
</g>
<g>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="736.7148" y1="-33.5808" x2="736.7148" y2="17.4187" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_3_)" d="M678.331,130.378c0-1.277-0.719-3.297-1.763-4.468c-0.797-0.893-2.567-1.268-3.895-2.073
c-1.066-0.648-2.827-0.141-4.199-0.722c-1.184-0.5-2.439-0.811-3.825-1.253c-1.245-0.397-2.339-1.407-3.729-1.752
c-1.282-0.318-2.518-1.052-3.911-1.322c-1.307-0.253-2.548-1.263-3.941-1.471c-1.324-0.197-2.687-0.679-4.081-0.833
c-1.337-0.146-2.75-0.23-4.145-0.334c-1.347-0.101-2.778,0.907-4.172,0.849c-0.598-0.949-1.312-2.606-2.879-3.452
c-1.102-0.594-2.634-0.998-4.152-1.524c-1.246-0.434-3.093,0.775-4.588,0.396c-1.311-0.333-2.469-1.599-3.95-1.886
c-1.349-0.261-2.934,0.655-4.406,0.436c-1.371-0.203-2.556-2.131-4.022-2.296c-1.387-0.154-2.95,1.167-4.413,1.051
c-1.397-0.112-2.733-1.544-4.192-1.62c-1.408-0.073-2.879,0.902-4.335,0.865c-1.414-0.035-2.835,0.482-4.287,0.482
c-1.45,0-2.873-0.746-4.285-0.71c-1.454,0.037-2.894-0.238-4.298-0.165c-1.458,0.076-2.883,0.226-4.279,0.338
c-1.462,0.117-2.861,0.458-4.248,0.613c-1.465,0.164-2.779,0.998-4.148,1.201c-1.473,0.218-3.017-0.438-4.362-0.179
c-1.479,0.286-3.106-0.313-4.417,0.02c-1.492,0.378-2.637,1.684-3.882,2.115c-1.519,0.524-3.427-0.017-4.529,0.575
c-1.563,0.838-2.111,2.805-2.721,3.744c-1.392,0.03-2.756,0.438-4.116,0.486c-1.394,0.049-2.744,0.476-4.103,0.542
c-1.394,0.069-2.801-0.548-4.153-0.461c-1.396,0.089-2.693,1.093-4.042,1.202c-1.396,0.11-2.938-1.735-4.28-1.604
c-1.398,0.137-2.578,2.067-3.913,2.225c-1.401,0.164-2.801-0.029-4.128,0.154c-1.403,0.195-2.748,0.422-4.063,0.64
c-1.407,0.231-2.773,0.347-4.069,0.603c-1.413,0.279-3.024-0.594-4.294-0.289c-1.423,0.342-2.561,1.517-3.786,1.889
c-1.44,0.437-3.103,0.028-4.249,0.502c-1.478,0.608-2.505,1.904-3.448,2.564c-1.476,1.033-2.533,2.387-2.533,3.513
c0,1.116,0.768,2.852,2.219,3.876c0.929,0.656,2.975-0.273,4.431,0.331c1.13,0.472,1.935,2.15,3.354,2.585
c1.211,0.37,2.771-0.221,4.176,0.12c1.252,0.306,2.262,2.047,3.655,2.326c1.276,0.255,2.94-1.313,4.327-1.08
c1.295,0.217,2.495,1.237,3.88,1.434c1.31,0.186,2.646,0.416,4.027,0.58c1.317,0.156,2.617,0.796,3.997,0.933
c1.324,0.132,2.779-0.922,4.157-0.809c1.331,0.108,2.665,0.324,4.041,0.416c1.336,0.089,2.662,0.562,4.037,0.632
c1.34,0.068,2.604,1.271,3.979,1.321c-0.004,0.072-0.611-0.694-0.611-0.623c0,1.312,2.092,1.925,2.916,3.15
c0.683,1.012,0.457,2.889,1.645,3.824c0.979,0.771,2.759,0.458,4.049,1.167c1.117,0.614,2.01,1.748,3.34,2.309
c1.192,0.502,2.154,1.84,3.503,2.294c1.238,0.416,2.983-0.675,4.344-0.302c1.27,0.347,2.533,0.715,3.898,1.021
c1.291,0.289,2.436,1.394,3.806,1.644c1.309,0.238,2.691,0.171,4.065,0.371c1.319,0.192,2.696,0.011,4.069,0.166
c1.33,0.149,2.513,2.128,3.889,2.241c1.336,0.109,2.764-0.523,4.138-0.449c1.344,0.072,2.708,0.487,4.084,0.524
c1.349,0.034,2.73,0.126,4.105,0.126c1.346,0,2.694-0.288,4.016-0.322c1.348-0.035,2.723,0.387,4.038,0.316
c1.348-0.07,2.635-1.082,3.945-1.188c1.348-0.108,2.706,0.012,4.01-0.132c1.348-0.148,2.678-0.358,3.974-0.543
c1.348-0.192,2.477-1.536,3.762-1.766c1.343-0.237,2.663-0.304,3.933-0.58c1.339-0.292,2.973,0.769,4.222,0.438
c1.333-0.354,2.229-2.058,3.45-2.454c1.323-0.429,2.54-0.874,3.72-1.349c1.307-0.525,2.726-0.567,3.84-1.145
c1.273-0.658,2.72-0.923,3.722-1.64c1.192-0.854,1.349-2.61,2.116-3.534c0.94-1.133,2.048-1.905,2.278-3.119
c1.474-0.263,2.772-1.185,4.13-1.5c1.473-0.342,3.17,0.431,4.489,0.032c1.468-0.443,3.005-0.62,4.263-1.126
c1.456-0.588,2.529-1.854,3.669-2.514c1.42-0.824,2.404-1.922,3.264-2.84C676.589,132.918,678.331,131.715,678.331,130.378z"/>
</g>
</g>
<g opacity="0.7">
<g>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="1144.3145" y1="-21.6326" x2="1144.3145" y2="95.6511" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_4_)" d="M1136.349,72.375c-1.146,0-1.943-1.323-3.07-1.284c-0.82-0.868-2.218-1.019-3.604-1.85
c-1.082-0.649-2.445-1.058-3.854-1.68c-1.188-0.526-2.478-1.045-3.887-1.552c-1.246-0.446-2.188-2.136-3.598-2.565
c-1.281-0.39-3.086,0.787-4.497,0.412c-1.305-0.347-2.763-0.206-4.175-0.538c-1.322-0.313-2.21-2.777-3.622-3.076
c-1.334-0.283-3.099,1.351-4.511,1.081c-1.344-0.257-2.48-1.814-3.894-2.06c-1.352-0.236-2.938,0.77-4.351,0.544
c-1.358-0.218-2.641-1.082-4.052-1.289c-1.363-0.199-2.795-0.061-4.205-0.25c-1.368-0.185-2.646-1.265-4.058-1.439
c-1.371-0.169-2.797-0.1-4.209-0.26c-1.375-0.156-2.713-0.891-4.125-1.038c-1.379-0.144-2.969,1.063-4.381,0.929
c0.015-0.202,1.023-0.792,1.023-0.995c0-1.363-2.074-2.293-2.688-3.597c-0.549-1.166-0.756-2.45-1.758-3.554
c-0.866-0.953-2.343-1.175-3.521-2.073c-1.036-0.79-1.114-3.098-2.376-3.84c-1.137-0.668-3.018-0.072-4.323-0.697
c-1.198-0.574-1.82-2.613-3.154-3.146c-1.242-0.498-3.228,0.896-4.578,0.437c-1.271-0.434-2.529-0.885-3.894-1.285
c-1.295-0.379-2.626-0.595-3.998-0.941c-1.313-0.331-2.421-1.547-3.799-1.848c-1.327-0.289-2.577-1.087-3.962-1.345
c-1.338-0.249-2.725-0.384-4.111-0.603c-1.346-0.214-2.738-0.265-4.129-0.448c-1.354-0.179-2.826,0.604-4.218,0.456
c-1.358-0.146-2.584-1.827-3.978-1.945c-1.365-0.115-2.813,0.621-4.207,0.534c-1.368-0.085-2.683-1.646-4.077-1.702
c-1.372-0.057-2.833,2.354-4.229,2.326c-1.375-0.028-2.735-1.934-4.132-1.934c-1.385,0-2.74,1.625-4.104,1.653
c-1.386,0.028-2.761-0.414-4.124-0.357c-1.386,0.057-2.777-0.309-4.137-0.224c-1.388,0.086-2.811-0.431-4.167-0.316
c-1.388,0.116-2.685,1.063-4.037,1.208c-1.386,0.147-2.813-0.176-4.158,0.002c-1.383,0.181-2.589,1.42-3.928,1.631
c-1.379,0.216-2.829-0.182-4.159,0.064c-1.375,0.254-2.617,0.999-3.938,1.284c-1.369,0.296-2.792,0.195-4.098,0.522
c-1.364,0.342-2.533,1.218-3.821,1.592c-1.355,0.394-2.875,0.098-4.142,0.526c-1.342,0.452-2.425,1.449-3.661,1.938
c-1.324,0.523-2.613,1.607-3.808,2.169c-1.515-0.104-3.188-2.057-4.729-2.127c-1.52-0.069-3.091,0.758-4.636,0.723
c-1.521-0.033-3.054,0.592-4.598,0.592c-1.369,0-2.731-0.826-4.083-0.8c-1.369,0.027-2.777-1.057-4.128-1.003
c-1.369,0.056-2.729,0.545-4.076,0.628c-1.37,0.083-2.664,1.181-4.011,1.291c-1.368,0.113-2.725,0.208-4.065,0.35
c-1.368,0.143-2.605,1.174-3.943,1.345c-1.365,0.174-2.886-0.925-4.217-0.723c-1.363,0.207-2.699,0.509-4.023,0.744
c-1.357,0.24-2.409,1.916-3.726,2.186c-1.354,0.278-3.06-1.187-4.364-0.88c-1.347,0.316-2.619,0.887-3.91,1.232
c-1.338,0.359-2.365,1.684-3.643,2.073c-1.328,0.406-2.671,0.606-3.929,1.044c-1.315,0.458-3.105-0.414-4.339,0.077
c-1.298,0.518-1.651,3.124-2.854,3.675c-1.273,0.585-3.24-0.37-4.401,0.252c-1.241,0.666-2.326,1.558-3.431,2.263
c-1.194,0.763-1.65,2.415-2.673,3.22c-1.121,0.883-1.797,1.96-2.699,2.889c-0.997,1.027-2.629,1.299-3.341,2.375
c-0.785,1.188-2.683,1.936-3.099,3.172c-0.439,1.31,0.332,3.044,0.332,4.4c0,0.868-0.506,0.766-0.322,1.615
c-1.45,0.199-1.913,2.369-3.302,2.599c-1.449,0.24-3.146-1.081-4.521-0.809c-1.446,0.286-2.743,1.143-4.104,1.462
c-1.441,0.338-3.107-0.283-4.445,0.091c-1.438,0.401-2.648,1.476-3.955,1.915c-1.428,0.479-2.965,0.586-4.227,1.108
c-1.409,0.583-2.072,2.559-3.259,3.188c-1.377,0.734-2.437,1.528-3.483,2.318c-1.282,0.967-1.78,2.051-2.522,3.089
c-0.919,1.287-1.754,1.896-1.754,3.266c0,1.357-0.586,2.962,0.317,4.239c0.729,1.032,1.921,2.038,3.187,3
c1.033,0.786,2.602,0.989,3.962,1.72c1.17,0.629,2.709,0.555,4.104,1.137c1.246,0.521,2.32,1.554,3.731,2.032
c1.292,0.439,2.764,0.378,4.184,0.78c1.323,0.374,2.592,1.019,4.02,1.358c1.347,0.319,3.141,1.098,4.571,1.385
c-1.169,0.745-3.127,1.226-4.081,2.006c-1.086,0.887-1.525,2.353-2.316,3.281c-0.914,1.07-1.511,2.154-2.006,3.272
c-0.551,1.243-0.494,2.393-0.494,3.683c0,1.33-0.334,2.647,0.25,3.927c0.521,1.145,1.974,1.661,2.932,2.756
c0.827,0.945,1.179,2.406,2.311,3.307c0.994,0.792,1.739,2.134,2.955,2.887c1.091,0.677,2.227,1.534,3.485,2.177
c1.152,0.589,2.399,1.229,3.688,1.789c1.194,0.519,2.759,0.307,4.063,0.797c1.225,0.461,2.586,0.649,3.902,1.084
c1.248,0.411,2.716,0.179,4.042,0.566c1.268,0.368,2.242,1.88,3.576,2.226c1.281,0.332,2.947-0.85,4.287-0.541
c1.293,0.298,2.087,2.999,3.432,3.275c1.304,0.268,2.904-0.828,4.254-0.582c1.309,0.237,2.486,1.38,3.838,1.598
c1.313,0.212,2.714,0.074,4.065,0.267c1.322,0.188,2.78-0.537,4.136-0.37c1.326,0.163,2.507,1.771,3.862,1.914
c1.329,0.142,2.729-0.155,4.084-0.034c1.333,0.118,2.668,0.493,4.025,0.594c1.336,0.099,2.812-1.768,4.169-1.688
c1.34,0.078,2.648,0.67,4.01,0.729c1.34,0.058,2.696-0.456,4.057-0.418c1.343,0.038,2.663,1.181,4.022,1.2
c1.345,0.019,2.696,0.62,4.056,0.62c1.37,0,2.745,0.327,4.101,0.309c1.37-0.021,2.712-1.222,4.064-1.261
c1.371-0.039,2.793,1.396,4.146,1.337c1.371-0.061,2.627-2.227,3.977-2.306c1.37-0.079,2.845,1.539,4.19,1.439
c1.37-0.102,2.713-0.518,4.058-0.639c1.369-0.123,2.81,0.446,4.149,0.304c1.367-0.146,2.745-0.27,4.081-0.436
c1.366-0.17,2.725-0.453,4.057-0.645c1.365-0.195,2.672-0.785,3.998-1.001c1.362-0.223,2.498-1.66,3.818-1.903
c1.358-0.251,2.75-0.198,4.061-0.472c1.356-0.281,2.545-1.168,3.847-1.473c1.353-0.315,2.81-0.044,4.1-0.384
c1.347-0.354,2.354-1.734,3.631-2.111c1.339-0.396,2.8-0.188,4.057-0.607c1.328-0.446,3.229,0.771,4.46,0.297
c1.316-0.505,1.736-3.07,2.938-3.604c1.293-0.575,3.499,0.837,4.651,0.23c1.264-0.664,1.819-2.558,2.903-3.256
c0.774,0.024,1.591,0.646,2.38,0.646c1.438,0,2.783-1.685,4.171-1.767c1.438-0.086,3.021,1.788,4.395,1.619
c1.438-0.177,2.951-0.113,4.302-0.374c1.432-0.276,2.614-1.651,3.93-2.016c1.418-0.394,2.938-0.408,4.199-0.893
c1.393-0.532,2.531-1.548,3.706-2.179c1.337-0.718,2.674-1.342,3.689-2.168c1.198-0.975,0.873-2.939,1.558-4.036
c0.794-1.27,1.474-1.93,1.474-3.314c0-0.989-0.382-2.743-0.795-3.678c1.447-0.369,3.718-0.375,5.059-0.773
c1.439-0.43,3.273,0.483,4.584,0.021c1.43-0.506,2.594-1.629,3.855-2.171c1.412-0.605,2.808-2.109,3.996-2.757
c0.229,1.3,0.906,2.827,1.694,4.028c0.701,1.067,0.931,2.671,2.023,3.638c0.963,0.85,2.231,1.532,3.465,2.287
c1.108,0.678,2.104,1.857,3.407,2.445c1.195,0.541,3.216-0.913,4.556-0.456c1.252,0.426,2.038,2.461,3.4,2.806
c1.289,0.327,2.675,0.511,4.05,0.76c1.315,0.237,2.805-0.563,4.188-0.401c1.334,0.153,2.653,0.324,4.039,0.402
c1.344,0.076,2.676-0.188,4.061-0.188c1.451,0,2.931,1.687,4.335,1.604c1.453-0.086,2.716-1.979,4.109-2.147
c1.451-0.178,2.895,0.1,4.268-0.162c1.442-0.274,2.922-0.151,4.266-0.514c1.426-0.383,2.615-1.287,3.912-1.761
c1.399-0.51,2.512-1.367,3.738-1.97c1.352-0.663,2.864-1.206,3.979-1.969c1.216,0.334,2.375,2.18,3.653,2.461
c1.233,0.271,2.877-1.46,4.162-1.241c1.25,0.213,2.405,0.955,3.699,1.116c1.26,0.157,2.502,0.484,3.8,0.591
c1.269,0.103,2.54,0.2,3.839,0.252c1.272,0.051,2.549,1.37,3.848,1.37c1.376,0,2.714-1.632,4.06-1.689
c1.377-0.058,2.729,0.054,4.068-0.063c1.374-0.118,2.636-0.824,3.967-1c1.371-0.182,2.944,1.119,4.265,0.88
c1.362-0.247,2.853,0.007,4.153-0.298c1.354-0.318,2.311-2.113,3.587-2.491c1.338-0.396,2.445-1.261,3.691-1.717
c1.314-0.481,2.641-0.706,3.845-1.25c1.281-0.579,3.333,0.39,4.479-0.254c1.232-0.693,1.482-2.913,2.545-3.676
c1.156-0.829,3.168-0.597,4.104-1.5c1.028-0.989,1.942-2.232,2.683-3.299c0.808-1.166,0.617-2.896,1.048-4.137
c0.451-1.3-0.043-2.593-0.043-3.957c0-1.365,0.955-2.819,0.503-4.121c-0.432-1.242-1.564-2.215-2.374-3.381
c-0.739-1.067-1.577-2.094-2.605-3.085c-0.938-0.901-1.813-1.969-2.971-2.798c-1.063-0.762-2.485-1.028-3.72-1.723
c-1.146-0.645-2.228-1.462-3.509-2.04c-1.204-0.544-2.268-1.555-3.581-2.035c-1.246-0.456-2.596-0.768-3.933-1.161
c-1.277-0.378-2.563-0.91-3.916-1.229c-1.301-0.306-2.918,0.87-4.281,0.623c-1.318-0.238-2.315-2.689-3.687-2.872
c-1.331-0.176-2.876,1.262-4.251,1.143c-1.34-0.116-2.658-0.778-4.035-0.836C1139.095,71.677,1137.725,72.375,1136.349,72.375z"/>
</g>
<g>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="1071.7158" y1="-5.4089" x2="1071.7158" y2="32.3948" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M954.04,96.999c-1.538,0-3.054,1.11-4.546,1.173c-1.542,0.065-3.011,0.674-4.494,0.802
c-1.541,0.133-3.24-1.325-4.709-1.128c-1.541,0.206-3.121,2.774-4.569,3.046c-1.007-0.719-2.193-2.314-3.71-2.932
c-1.218-0.496-2.325-1.751-3.825-2.167c-1.305-0.361-2.954,0.375-4.443,0.083c-1.353-0.266-2.734-0.521-4.217-0.724
c-1.38-0.188-2.684-1.523-4.158-1.65c-1.399-0.12-2.86-0.316-4.331-0.378c-1.411-0.059-2.882,1.632-4.347,1.632
c-1.484,0-2.969-1.515-4.398-1.455c-1.49,0.063-2.841,1.663-4.258,1.787c-1.498,0.13-2.915,0.191-4.313,0.386
c-1.505,0.208-2.839,0.716-4.208,0.989c-1.512,0.304-3.241-0.775-4.561-0.4c-1.523,0.433-3.092,0.568-4.314,1.086
c-1.543,0.65-3.313,1.02-4.297,1.778c-1.435,1.108-1.814,3.286-1.814,4.552c0,0.156,0.884,0.271,0.907,0.426
c-0.012,0-0.555,0.814-0.567,0.814c-1.436,0-2.803-0.413-4.143-0.284c-1.449,0.14-2.895-0.099-4.187,0.175
c-1.465,0.31-3.033,0.188-4.229,0.643c-1.477,0.562-1.998,2.5-2.948,3.233c-1.333,1.027-1.629,1.588-1.629,2.831
c0,1.44-0.591,2.766,1.159,3.9c-1.795,1.089-1.757,2.264-1.757,3.471c0,1.135,0.813,1.791,2.408,2.822
c0.996,0.646,1.961,1.797,3.503,2.386c1.197,0.457,2.735,0.265,4.229,0.683c1.275,0.356,2.656,0.551,4.131,0.875
c1.316,0.29,2.407,2.101,3.871,2.361c1.343,0.24,2.752,0.588,4.206,0.802c1.359,0.2,2.858-0.177,4.309-0.001
c1.371,0.166,2.798,0.242,4.243,0.386c1.382,0.138,2.758,0.819,4.2,0.935c1.389,0.11,2.827,0.066,4.268,0.155
c1.395,0.086,2.813,0.424,4.252,0.488c1.396,0.063,2.881-1.604,4.315-1.562c1.403,0.041,2.8,1.051,4.234,1.07
c1.407,0.021,2.833-0.434,4.268-0.434c1.324,0,2.642,0.314,3.943,0.298c1.326-0.019,2.671,1.01,3.971,0.974
c1.328-0.035,2.578-2.03,3.875-2.085c1.332-0.056,2.608-0.577,3.903-0.651c1.332-0.075,2.646,0.168,3.937,0.074
c1.334-0.099,2.792,1.615,4.075,1.5c1.335-0.12,2.697,0.102,3.975-0.038c1.337-0.146,2.513-0.859,3.78-1.025
c1.474,0.125,2.979-0.804,4.509-0.739c1.481,0.063,2.975,0.295,4.502,0.295c1.411,0,2.78-0.574,4.155-0.628
c1.414-0.055,2.821,0.393,4.188,0.283c1.417-0.111,2.737-0.767,4.095-0.933c1.415-0.172,2.667-0.955,4.01-1.184
c1.412-0.238,3.174,1.533,4.493,1.236c1.407-0.315,2.771-0.804,4.063-1.179c1.397-0.407,2.796-0.812,4.039-1.281
c1.38-0.523,2.17-2.224,3.336-2.817c1.345-0.684,2.462-1.376,3.489-2.141c1.242-0.925,1.565-2.184,2.287-3.206
c0.873-1.24,2.102-1.854,2.102-3.198s-0.948-2.158-1.823-3.398c-0.721-1.021-1.285-2.141-2.527-3.065
c-1.027-0.764-1.462-2.825-2.805-3.509c-1.168-0.594-2.986-0.065-4.368-0.588c-1.242-0.471-2.514-1.066-3.911-1.474
c-1.29-0.375-2.654-0.683-4.063-0.999c-1.319-0.296-2.519-1.565-3.931-1.805c-1.343-0.228-3.041,1.798-4.456,1.626
c-1.356-0.165-2.684-0.438-4.099-0.55c-1.367-0.108-2.65-1.913-4.065-1.967C956.873,97.428,955.453,96.999,954.04,96.999z"/>
</g>
<g>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="1148.4375" y1="31.6248" x2="1148.4375" y2="74.0496" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M1103.261,76.97c0-1.192,0.986-2.874,0.022-3.933c-0.749-0.822-2.777-0.313-4.015-1.017
c-1.009-0.573-1.354-2.891-2.639-3.365c-1.117-0.414-2.57-0.327-3.864-0.653c-1.177-0.296-2.345-0.285-3.644-0.5
c0.403-0.412-0.313-0.522-0.313-0.964c0-0.955-0.064-2.348-1.822-3.129c-1.025-0.456-2.627,0.021-4.12-0.346
c-1.187-0.29-2.371-1.175-3.798-1.396c-1.248-0.191-2.57-0.587-3.969-0.717c-1.281-0.119-2.684,0.771-4.063,0.71
c-1.302-0.057-2.619,0.17-3.987,0.17c-1.898,0-3.551-1.185-5.313-1.077c-0.545-1.045-1.215-2.071-2.37-2.983
c-0.941-0.743-2.176-1.527-3.462-2.155c-1.106-0.541-2.363-1.217-3.688-1.656c-1.191-0.395-2.657-0.253-3.997-0.554
c-1.239-0.278-2.522-0.777-3.869-0.966c-1.27-0.178-2.669,0.377-4.016,0.287c-1.286-0.086-2.595-1.26-3.938-1.26
c-1.342,0-2.72,0.134-4.006,0.22c-1.346,0.09-2.503,1.786-3.771,1.963c-1.349,0.188-2.679,0.034-3.92,0.313
c-1.342,0.302-2.285,1.554-3.478,1.948c-1.324,0.439-2.574,0.506-3.682,1.047c-1.285,0.628-2.528,0.889-3.47,1.63
c-1.155,0.912-2.521,1.178-3.065,2.222c-1.133-0.054-2.013-0.783-3.175-0.811c-1.136-0.026-2.313,1.44-3.474,1.44
c-1.301,0-2.571,0.25-3.841,0.283c-1.305,0.033-2.636-1.086-3.899-1.02c-1.307,0.069-2.613,0.06-3.87,0.162
c-1.31,0.107-2.384,0.656-3.632,0.797c-0.308-1.168-0.736-2.913-2.143-3.938c-1.009-0.736-2.749-0.926-4.234-1.559
c-1.212-0.516-2.831-0.257-4.314-0.689c-1.298-0.379-2.762-0.232-4.24-0.539c-1.346-0.279-2.688-0.647-4.162-0.859
c-1.375-0.197-2.59-2.258-4.06-2.391c-1.396-0.126-2.967,1.756-4.433,1.691c-1.406-0.062-2.808-0.171-4.267-0.171
c-1.328,0-2.679-1.737-3.964-1.687c-1.333,0.053-2.548,1.786-3.824,1.891c-1.336,0.11-2.692-0.409-3.955-0.247
c-1.34,0.172-2.677,0.146-3.919,0.372c-1.342,0.246-2.351,1.674-3.563,1.979c-1.344,0.337-2.887-0.366-4.046,0.034
c-1.344,0.465-2.773,0.587-3.836,1.125c-1.331,0.676-2.428,1.653-3.25,2.424c-1.132,1.06-1.851,2.492-1.851,3.677
c0,0.106,0.085-0.998,0.094-0.893c-1.457,0.268-2.519,1.942-3.878,2.255c-1.455,0.334-2.834,0.714-4.165,1.096
c-1.447,0.416-2.821,0.812-4.109,1.28c-1.437,0.521-3.194,0.144-4.411,0.724c-1.411,0.674-2.91,1.266-3.995,2.008
c-1.335,0.913-2.214,2.445-2.999,3.444c-0.991,1.262,0.061,2.914,0.061,4.276c0,1.324-0.959,2.834-0.021,4.063
c0.746,0.98,2.74,0.746,4.017,1.646c1.039,0.731,1.882,1.757,3.236,2.424c1.169,0.575,2.229,1.515,3.611,2.034
c1.238,0.467,2.349,1.559,3.744,1.976c1.282,0.382,2.491,1.408,3.896,1.744c1.311,0.314,3.025-0.971,4.432-0.699
c1.332,0.257,2.42,2.219,3.83,2.436c1.347,0.206,2.943-1.092,4.354-0.926c1.356,0.16,2.764-0.032,4.174,0.089
c1.366,0.117,2.74,0.149,4.15,0.229c1.373,0.077,2.718,1.153,4.127,1.192c1.377,0.038,2.78,0.719,4.188,0.719
c1.484,0,2.93-1.87,4.38-1.912c1.486-0.043,2.909-0.425,4.354-0.512c1.488-0.088,3.063,1.394,4.5,1.262
c1.49-0.137,2.821-1.45,4.249-1.629c1.488-0.188,3.216,1.443,4.63,1.212c1.486-0.244,2.745-1.657,4.141-1.947
c1.169,0.301,2.457,0.349,3.762,0.601c1.198,0.232,2.25,1.747,3.55,1.936c1.219,0.176,2.57-0.132,3.867,0.001
c1.232,0.127,2.627-1.372,3.92-1.287c1.242,0.083,2.486-0.129,3.777-0.087c1.25,0.041,2.479,1.973,3.768,1.973
c1.379,0,2.758-0.097,4.094-0.143c1.385-0.048,2.698-1.055,4.026-1.149c1.389-0.099,2.849,0.854,4.163,0.708
c1.393-0.154,2.74-0.546,4.039-0.75c1.396-0.22,2.688-0.814,3.959-1.088c1.402-0.3,2.591-1.123,3.817-1.48
c1.409-0.411,2.801-0.303,3.945-0.779c1.166,0.479,2.533,0.535,3.971,0.947c1.247,0.356,2.412,1.456,3.838,1.756
c1.291,0.271,2.79-0.176,4.209,0.044c1.317,0.204,2.613,1.003,4.027,1.158c1.336,0.146,2.831-1.153,4.241-1.055
c1.349,0.095,2.648,1.542,4.056,1.589c1.358,0.047,2.756-1.525,4.158-1.525c1.428,0,2.855,1.74,4.237,1.691
c1.435-0.05,2.752-1.67,4.127-1.769c1.438-0.102,2.824-0.034,4.185-0.185c1.445-0.162,3.121,1.619,4.464,1.406
c1.449-0.229,2.88-0.61,4.192-0.895c1.457-0.316,2.884-0.766,4.146-1.142c1.468-0.437,2.2-2.6,3.369-3.107
c1.488-0.646,3.313,0.08,4.241-0.66c1.398-0.192,2.412-1.314,3.687-1.599c1.398-0.313,2.447-1.42,3.662-1.833
c1.394-0.473,3.521,0.948,4.622,0.365c1.356-0.718,1.647-2.84,2.479-3.691C1103.332,79.207,1103.261,78.239,1103.261,76.97z"/>
</g>
</g>
<g opacity="0.8">
<g>
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="172.7661" y1="-31.7244" x2="172.7661" y2="43.159" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_7_)" d="M164.958,114.008c-1.146,0-2.406,1.013-3.532,1.052c-0.82-0.869-1.466-2.584-2.854-3.416
c-1.083-0.648-2.948-0.095-4.355-0.718c-1.188-0.525-1.937-2.438-3.346-2.943c-1.246-0.447-2.854-0.111-4.264-0.541
c-1.281-0.391-2.431-1.515-3.842-1.89c-1.305-0.346-2.597-1.064-4.008-1.396c-1.322-0.313-3.065,1.031-4.478,0.732
c-1.334-0.282-2.698-0.557-4.11-0.826c-1.343-0.257-2.839,0.225-4.25-0.021c-1.351-0.235-2.313-2.982-3.724-3.208
c-1.358-0.217-3.083,1.775-4.495,1.568c-1.362-0.199-2.727-0.476-4.137-0.664c-1.369-0.185-2.648-1.189-4.06-1.363
c-1.372-0.169-2.648-1.354-4.06-1.515c-1.376-0.156-2.987,1.684-4.399,1.537c-1.379-0.145-2.446-2.229-3.858-2.363
c0.013-0.201,0.099,0.525,0.099,0.322c0-1.364-1.575-2.242-2.189-3.546c-0.549-1.166,0.539-3.577-0.464-4.682
c-0.865-0.953-2.054-2.029-3.233-2.929c-1.036-0.79-3.523,0.425-4.785-0.317c-1.135-0.668-1.271-3.355-2.577-3.98
c-1.199-0.574-3.078,0.197-4.412-0.337c-1.241-0.498-2.229-1.836-3.58-2.297c-1.272-0.435-3.109,0.824-4.472,0.425
c-1.295-0.379-2.076-2.758-3.448-3.104c-1.312-0.331-2.629-0.926-4.007-1.226c-1.327-0.289-3.159,1.793-4.543,1.535
c-1.337-0.249-2.61-0.852-3.997-1.07c-1.346-0.213-2.744-0.035-4.134-0.219c-1.353-0.178-2.581-1.405-3.972-1.556
c-1.359-0.146-2.78,0.269-4.173,0.15c-1.365-0.115-2.616-2.06-4.012-2.146c-1.368-0.085-2.832,1.258-4.226,1.2
c-1.373-0.057-2.773,0.921-4.169,0.893c-1.375-0.028-2.734-0.997-4.129-0.997c-1.385,0-2.763-0.48-4.128-0.453
c-1.385,0.028-2.707,1.466-4.07,1.521c-1.386,0.058-2.87-2.066-4.23-1.982c-1.386,0.086-2.764,0.367-4.121,0.479
c-1.387,0.117-2.644,1.482-3.997,1.627c-1.385,0.148-2.859-0.588-4.207-0.41c-1.383,0.181-2.669,0.937-4.008,1.146
c-1.378,0.216-2.819-0.028-4.148,0.218c-1.376,0.254-2.803,0.217-4.123,0.501c-1.37,0.295-2.741,0.576-4.046,0.903
c-1.364,0.342-2.722,0.695-4.01,1.069c-1.356,0.394-2.08,2.649-3.347,3.078c-1.342,0.452-2.706,0.573-3.942,1.063
c-1.324,0.524-2.893,0.285-4.087,0.847c-1.514-0.104-3.015-0.752-4.557-0.822c-1.52-0.069-3.066-0.093-4.611-0.127
c-1.522-0.034-3.068,0.424-4.612,0.424c-1.369,0-2.709,1.093-4.061,1.12c-1.369,0.026-2.766-1.346-4.116-1.291
c-1.37,0.055-2.751-0.103-4.099-0.02c-1.37,0.083-2.682,0.908-4.027,1.02c-1.37,0.112-2.714,0.327-4.057,0.467
c-1.368,0.143-2.634,0.941-3.972,1.112c-1.366,0.174-2.668,0.539-4,0.74c-1.363,0.207-2.823-0.373-4.147-0.137
c-1.358,0.241-2.755,0.181-4.071,0.451c-1.353,0.278-2.613,0.88-3.917,1.188c-1.346,0.317-2.941-0.4-4.232-0.054
c-1.338,0.359-2.389,1.677-3.665,2.067c-1.329,0.405-2.633,0.787-3.891,1.225c-1.315,0.458-2.637,0.813-3.87,1.303
c-1.297,0.518-2.418,1.343-3.619,1.895c-1.275,0.585-3.124-0.017-4.285,0.605c-1.242,0.666-1.296,3.267-2.399,3.971
c-1.194,0.763-2.149,1.572-3.171,2.378c-1.122,0.883-2.253,1.452-3.155,2.381c-0.998,1.027-2.54,1.432-3.252,2.509
c-0.785,1.188-2.058,2.193-2.475,3.433c-0.439,1.309,0.06,2.886,0.06,4.241c0,0.868,0.232,1.9,0.415,2.748
c-1.45,0.199-3.164-0.662-4.553-0.432c-1.449,0.24-2.798,0.973-4.175,1.245c-1.447,0.286-2.653,1.501-4.014,1.82
c-1.442,0.339-2.646,1.287-3.984,1.661c-1.437,0.401-2.816,0.622-4.124,1.063c-1.427,0.479-2.67,1.068-3.931,1.59
c-1.41,0.584-3.573-0.64-4.758-0.009c-1.377,0.734-1.754,2.871-2.801,3.661c-1.283,0.968-1.789,2.109-2.53,3.148
c-0.919,1.286-2.863,1.979-2.863,3.349c0,1.356,1.654,2.241,2.558,3.519c0.73,1.032,1.895,1.455,3.16,2.418
c1.034,0.786,1.521,2.456,2.882,3.188c1.171,0.629,2.815,0.349,4.209,0.931c1.246,0.521,2.56,0.842,3.971,1.321
c1.292,0.438,2.354,1.67,3.774,2.071c1.324,0.374,2.45,1.719,3.877,2.059c1.346,0.318,3.275-0.101,4.707,0.188
c-1.169,0.744-2.573,1.67-3.527,2.45c-1.085,0.887-2.861,1.068-3.652,1.997c-0.912,1.071,0.129,3.264-0.366,4.382
c-0.551,1.243-2.23,2.083-2.23,3.373c0,1.33,0.453,2.763,1.036,4.042c0.522,1.146,2.011,1.731,2.969,2.826
c0.827,0.944,0.772,2.996,1.904,3.896c0.994,0.792,2.552,1.043,3.767,1.798c1.091,0.677,2.25,1.417,3.511,2.06
c1.153,0.589,2.604,0.688,3.891,1.246c1.194,0.519,2.442,1,3.747,1.49c1.226,0.461,2.75,0.11,4.068,0.545
c1.249,0.412,1.89,2.897,3.217,3.286c1.267,0.368,2.964-0.666,4.298-0.32c1.281,0.332,2.742-0.038,4.083,0.271
c1.292,0.299,2.397,1.509,3.742,1.784c1.302,0.269,2.674,0.261,4.023,0.507c1.308,0.238,2.722-0.099,4.072,0.119
c1.315,0.213,2.647,0.3,4,0.492c1.322,0.188,2.381,2.473,3.737,2.64c1.326,0.164,2.84-1.129,4.197-0.984
c1.329,0.141,2.629,0.687,3.985,0.808c1.333,0.119,2.739-0.587,4.096-0.487c1.336,0.1,2.569,1.952,3.928,2.031
c1.339,0.078,2.766-1.296,4.126-1.236c1.34,0.058,2.665,0.767,4.023,0.805c1.343,0.038,2.713-1.051,4.074-1.031
c1.344,0.02,2.684,2.08,4.043,2.08c1.37,0,2.728-1.495,4.082-1.515c1.37-0.021,2.732,0.112,4.085,0.073
c1.371-0.038,2.747,0.309,4.099,0.249c1.371-0.06,2.72-0.378,4.07-0.457c1.371-0.079,2.68-0.837,4.027-0.937
c1.37-0.102,2.685-0.569,4.029-0.69c1.369-0.123,2.745,0.107,4.086-0.035c1.368-0.146,2.915,1.366,4.251,1.2
c1.366-0.17,2.724-0.423,4.056-0.612c1.365-0.195,2.409-2.366,3.736-2.582c1.363-0.224,2.831,0.354,4.15,0.111
c1.359-0.251,2.639-0.756,3.95-1.027c1.356-0.281,2.709-0.421,4.011-0.727c1.352-0.314,2.837,0.019,4.127-0.32
c1.347-0.354,2.504-1.276,3.78-1.654c1.339-0.396,2.321-1.721,3.578-2.143c1.329-0.445,3.279,0.983,4.512,0.512
c1.316-0.505,2.72-0.801,3.921-1.334c1.294-0.575,2.648-1.069,3.801-1.675c1.263-0.664,1.734-2.814,2.819-3.514
c0.774,0.025,1.704,0.465,2.493,0.465c1.437,0,2.839-0.251,4.226-0.333c1.439-0.086,2.775-0.702,4.147-0.872
c1.438-0.177,3.044,0.925,4.395,0.663c1.431-0.276,2.615-1.49,3.931-1.854c1.418-0.394,3.177,0.316,4.439-0.166
c1.392-0.533,2.361-1.973,3.536-2.604c1.337-0.718,3.234-0.636,4.25-1.462c1.199-0.976,0.661-3.396,1.346-4.49
c0.793-1.271,1.98-2.132,1.98-3.517c0-0.987-0.696-2.335-1.109-3.269c1.448-0.37,3.575,0.462,4.916,0.062
c1.44-0.43,2.508-1.877,3.817-2.34c1.43-0.506,2.794-0.968,4.057-1.511c1.411-0.605,2.832-1.285,4.02-1.934
c0.229,1.302,1.246,2.348,2.034,3.548c0.701,1.069,1.604,1.829,2.698,2.796c0.962,0.851,2.096,1.332,3.329,2.086
c1.108,0.679,1.332,3.155,2.634,3.745c1.195,0.54,2.644,0.813,3.985,1.271c1.251,0.426,2.997-0.682,4.36-0.336
c1.289,0.326,2.414,1.44,3.79,1.688c1.314,0.237,2.595,1.046,3.979,1.205c1.333,0.154,2.811-1.174,4.198-1.096
c1.343,0.076,2.662,1.818,4.047,1.818c1.451,0,2.93-0.085,4.334-0.168c1.454-0.086,2.841-0.956,4.234-1.126
c1.451-0.178,3.015,0.362,4.388,0.103c1.442-0.273,2.689-1.395,4.032-1.756c1.426-0.383,3.123,0.088,4.42-0.385
c1.399-0.51,1.821-3.134,3.049-3.737c1.35-0.664,3.219,0.141,4.335-0.622c1.216,0.334,2.591-0.646,3.87-0.364
c1.233,0.271,2.489,0.291,3.775,0.511c1.249,0.213,2.38,1.126,3.674,1.287c1.26,0.156,2.575-0.354,3.872-0.248
c1.268,0.104,2.456,1.507,3.755,1.559c1.272,0.051,2.57-1.056,3.87-1.056c1.376,0,2.765,1.428,4.111,1.371
c1.376-0.06,2.704-0.833,4.044-0.948c1.374-0.118,2.792,0.247,4.123,0.071c1.371-0.183,2.78-0.159,4.099-0.397
c1.364-0.248,2.345-2.179,3.647-2.484c1.353-0.317,2.774-0.112,4.052-0.49c1.336-0.396,3.002,0.277,4.249-0.18
c1.314-0.479,1.829-2.775,3.034-3.32c1.282-0.578,3.515,0.836,4.662,0.189c1.232-0.691,1.254-3.192,2.316-3.956
c1.157-0.829,3.055-0.6,3.992-1.502c1.028-0.99,1.572-2.34,2.311-3.406c0.808-1.166,1.821-2.198,2.252-3.438
c0.451-1.301,0.9-2.731,0.9-4.096c0-1.365,0.075-2.979-0.377-4.28c-0.431-1.241-1.69-2.287-2.499-3.454
c-0.74-1.066-2.513-1.236-3.542-2.228c-0.936-0.901-1.487-2.211-2.643-3.039c-1.063-0.764-2.093-1.623-3.326-2.316
c-1.146-0.645-1.775-2.518-3.056-3.096c-1.204-0.544-3.058,0.308-4.37-0.173c-1.247-0.456-2.519-0.885-3.854-1.279
c-1.278-0.378-2.348-1.708-3.7-2.026c-1.301-0.306-2.743-0.195-4.106-0.442c-1.318-0.239-2.589-1.139-3.96-1.319
c-1.331-0.176-2.924,1.908-4.299,1.789c-1.341-0.116-2.593-1.478-3.97-1.535C167.699,114.678,166.334,114.008,164.958,114.008z"/>
</g>
<g>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="100.272" y1="-47.9368" x2="100.272" y2="-10.1648" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M-17.352,141.739c-1.538,0-3.014,0.19-4.506,0.254c-1.541,0.064-3.168-1.634-4.652-1.506
c-1.542,0.133-2.823,2.282-4.292,2.479c-1.541,0.207-2.984-1.854-4.432-1.583c-1.007-0.719-2.722,0.309-4.238-0.31
c-1.218-0.496-2.327-1.64-3.826-2.056c-1.305-0.362-2.817-0.194-4.306-0.487c-1.352-0.266-2.794-0.191-4.276-0.394
c-1.38-0.188-2.825,0.189-4.3,0.063c-1.399-0.121-2.753-0.954-4.224-1.015c-1.412-0.06-2.834-1.502-4.298-1.502
c-1.484,0-2.897,2.122-4.327,2.182c-1.491,0.063-2.975-0.736-4.392-0.612c-1.498,0.131-2.859,0.861-4.258,1.056
c-1.504,0.208-3.221-1.177-4.59-0.901c-1.512,0.303-2.841,1.212-4.16,1.587c-1.523,0.433-3.042,0.671-4.265,1.188
c-1.543,0.65-2.648,1.813-3.631,2.573c-1.436,1.108-1.58,2.346-1.58,3.609c0,0.156-0.87,0.334-0.846,0.488
c-0.012,0,0.237,0.145,0.223,0.145c-1.435,0-2.825-0.03-4.164,0.1c-1.45,0.14-2.928-0.132-4.22,0.142
c-1.464,0.31-2.507,1.686-3.703,2.14c-1.476,0.562-2.641,1.038-3.592,1.771c-1.332,1.026-2.591,1.812-2.591,3.055
c0,1.439,2.187,2.798,3.936,3.935c-1.795,1.089-2.964,2.229-2.964,3.437c0,1.136,0.674,1.335,2.271,2.367
c0.997,0.645,1.472,2.761,3.013,3.35c1.197,0.458,2.717,0.521,4.211,0.938c1.276,0.356,2.632,0.869,4.106,1.192
c1.317,0.29,2.788,0.225,4.251,0.484c1.343,0.24,2.699,0.786,4.154,1.001c1.359,0.199,2.967-1.208,4.416-1.032
c1.372,0.166,2.65,1.373,4.096,1.518c1.382,0.138,2.861-0.6,4.305-0.483c1.388,0.11,2.693,1.672,4.132,1.761
c1.395,0.087,2.881-1.188,4.32-1.124c1.397,0.063,2.752,1.744,4.187,1.787c1.404,0.041,2.835,0.101,4.271,0.12
c1.407,0.021,2.839-0.896,4.273-0.896c1.325,0,2.64,0.216,3.942,0.197c1.327-0.019,2.652,0.35,3.952,0.313
c1.329-0.036,2.63-0.525,3.927-0.58c1.332-0.056,2.582-1.234,3.877-1.309c1.332-0.075,2.719,1.132,4.008,1.037
c1.333-0.098,2.688,0.243,3.971,0.128c1.334-0.12,2.594-0.781,3.871-0.922c1.336-0.146,2.622-1.064,3.89-1.23
c1.474,0.125,2.989,0.883,4.518,0.948c1.482,0.063,2.986-0.373,4.514-0.373c1.412,0,2.824,0.942,4.199,0.891
c1.415-0.055,2.716-1.544,4.084-1.652c1.417-0.11,2.877,0.668,4.235,0.502c1.416-0.172,2.889,0.175,4.231-0.054
c1.413-0.239,2.536-1.737,3.856-2.034c1.408-0.314,2.827-0.271,4.117-0.646c1.398-0.407,2.647-0.978,3.891-1.448
c1.38-0.522,2.732-0.829,3.899-1.423c1.344-0.684,2.608-1.26,3.635-2.025c1.242-0.925,1.315-2.54,2.035-3.561
c0.874-1.24,2.511-1.874,2.511-3.217c0-1.345-1.332-2.194-2.208-3.436c-0.721-1.021-1.381-2.046-2.624-2.971
c-1.027-0.765-1.441-2.836-2.785-3.521c-1.167-0.594-2.591-1.093-3.972-1.615c-1.243-0.472-2.766-0.493-4.164-0.9
c-1.29-0.376-2.507-1.46-3.915-1.776c-1.32-0.296-2.804-0.274-4.216-0.515c-1.341-0.228-2.734-0.682-4.149-0.854
c-1.356-0.166-2.844,0.317-4.259,0.207c-1.368-0.107-2.755-0.908-4.169-0.964C-14.495,139.703-15.939,141.739-17.352,141.739z"/>
</g>
<g>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="176.9614" y1="-11.2664" x2="176.9614" y2="30.655" gradientTransform="matrix(1 0 0 -1 -146 125.5171)">
<stop offset="0" style="stop-color:#11ADDF;stop-opacity:0"/>
<stop offset="1" style="stop-color:#9F5371"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M133.624,119.856c0-1.192-2.025-1.729-2.989-2.786c-0.749-0.822-0.845-2.645-2.082-3.348
c-1.008-0.574-2.118-1.469-3.4-1.942c-1.118-0.414-2.367-1.023-3.661-1.349c-1.176-0.297-2.651,0.446-3.949,0.231
c0.403-0.412,0.465-0.795,0.465-1.237c0-0.954-0.642-2.371-2.399-3.153c-1.026-0.456-2.362-1.087-3.855-1.453
c-1.186-0.29-2.592-0.402-4.018-0.622c-1.248-0.192-2.65,0.036-4.048-0.094c-1.281-0.119-2.675,0.867-4.056,0.806
c-1.301-0.057-2.603-0.298-3.972-0.298c-1.898,0-3.857-0.323-5.617-0.215c-0.545-1.045-1.734-1.776-2.891-2.688
c-0.942-0.743-1.185-2.911-2.471-3.539c-1.107-0.541-2.398-1.273-3.722-1.713c-1.191-0.395-2.975,0.975-4.315,0.673
c-1.239-0.277-2.375-1.338-3.721-1.526c-1.269-0.179-2.665,0.632-4.011,0.542c-1.287-0.086-2.561-0.64-3.903-0.64
c-1.341,0-2.694-0.643-3.98-0.557c-1.345,0.09-2.476,1.792-3.744,1.969c-1.348,0.188-2.978-1.439-4.218-1.161
c-1.34,0.302-2.079,2.527-3.271,2.922c-1.325,0.439-2.382,0.941-3.489,1.482c-1.285,0.628-3.585-0.571-4.526,0.171
c-1.155,0.911-0.991,3.381-1.537,4.425c-1.133-0.054-2.666-0.676-3.829-0.704c-1.136-0.026-2.283,0.094-3.445,0.094
c-1.301,0-2.575,0.303-3.844,0.335c-1.304,0.034-2.578,0.059-3.843,0.126c-1.306,0.068-2.547,0.514-3.804,0.617
c-1.308,0.106-3.182,0.211-4.43,0.353c-0.307-1.168,0.004-4.025-1.401-5.049c-1.009-0.736-2.807-0.851-4.293-1.482
c-1.211-0.516-2.722-0.639-4.205-1.071c-1.298-0.38-2.731-0.543-4.209-0.85c-1.346-0.278-2.722-0.724-4.196-0.936
c-1.375-0.197-2.851,0.169-4.32,0.036c-1.394-0.126-2.814,0.007-4.279-0.058c-1.407-0.062-2.811-1.305-4.271-1.305
c-1.329,0-2.604,1.38-3.889,1.431c-1.333,0.054-2.702-1.074-3.979-0.969c-1.336,0.11-2.593,0.714-3.855,0.876
c-1.339,0.172-2.514,0.994-3.756,1.222c-1.342,0.246-3.062-1.43-4.273-1.126c-1.343,0.337-2.498,1.333-3.658,1.734
c-1.342,0.464-2.527,1.204-3.588,1.743c-1.331,0.675-2.991,0.953-3.813,1.723c-1.132,1.061-2.039,2.982-2.039,4.167
c0,0.106,1.038,0.199,1.047,0.305c-1.458,0.268-3.109-0.49-4.469-0.179c-1.454,0.334-2.403,2.464-3.734,2.847
c-1.448,0.416-2.847,0.635-4.135,1.104c-1.436,0.521-2.833,0.819-4.05,1.4c-1.412,0.673-2.978,0.861-4.063,1.604
c-1.335,0.913-3.2,1.388-3.985,2.387c-0.991,1.264-1.336,3.362-1.336,4.727c0,1.324,0.831,2.968,1.766,4.198
c0.747,0.98,2.125,1.734,3.402,2.636c1.039,0.73,2.571,0.842,3.925,1.508c1.169,0.576,2.301,1.39,3.683,1.909
c1.239,0.466,2.408,1.377,3.804,1.793c1.283,0.383,2.68,0.603,4.083,0.938c1.31,0.314,2.564,1.201,3.971,1.474
c1.332,0.257,2.82-0.064,4.229,0.151c1.346,0.206,2.774,0.051,4.184,0.218c1.357,0.159,2.658,1.243,4.069,1.364
c1.366,0.117,2.759,0.563,4.169,0.643c1.372,0.077,2.856-2.012,4.265-1.974c1.377,0.038,2.743,1.854,4.15,1.854
c1.484,0,2.985,0.252,4.436,0.21c1.486-0.044,2.945-0.789,4.39-0.875c1.488-0.089,2.813-1.871,4.252-2.002
c1.49-0.136,3.224,2.232,4.652,2.054c1.488-0.188,2.914-0.854,4.328-1.085c1.486-0.243,2.803-2.076,4.199-2.366
c1.168,0.302,2.335,1.715,3.638,1.968c1.199,0.231,2.385,1.03,3.684,1.219c1.219,0.176,2.612-0.583,3.909-0.45
c1.233,0.127,2.459,0.851,3.753,0.937c1.243,0.082,2.557-0.533,3.848-0.491c1.25,0.04,2.52-0.572,3.808-0.572
c1.379,0,2.697-0.6,4.033-0.646c1.384-0.047,2.844,1.932,4.172,1.838c1.389-0.1,2.561-2.164,3.877-2.311
c1.393-0.155,2.889,0.932,4.187,0.729c1.397-0.221,2.548-1.382,3.818-1.653c1.403-0.3,2.989,0.48,4.216,0.124
c1.41-0.411,2.596-0.124,3.741-0.603c1.167,0.479,2.175,0.905,3.612,1.317c1.247,0.357,2.638,0.836,4.063,1.136
c1.291,0.272,3.1-1.946,4.519-1.728c1.318,0.204,2.437,2.148,3.851,2.304c1.336,0.146,2.747,0.06,4.156,0.157
c1.35,0.094,2.725,0.631,4.131,0.678c1.358,0.047,2.766-0.862,4.167-0.862c1.428,0,2.866,1.04,4.248,0.992
c1.433-0.05,2.837-0.62,4.21-0.718c1.438-0.103,2.805-0.687,4.165-0.838c1.445-0.162,2.714-1.143,4.057-1.354
c1.449-0.229,2.732-0.729,4.044-1.015c1.457-0.316,3.329,1.334,4.592,0.958c1.467-0.437,2.569-1.718,3.738-2.225
c1.488-0.646,2.213-2.599,3.143-3.337c1.4-0.192,3.003-0.182,4.277-0.467c1.399-0.313,3.319,1.412,4.533,1
c1.393-0.472,1.865-2.918,2.967-3.501c1.355-0.718,2.811-0.829,3.642-1.681C132.146,122.293,133.624,121.126,133.624,119.856z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 71 KiB

116
img/header/moon.svg Normal file
View file

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">
<svg version="1.1" baseProfile="basic" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="150px" height="150px"
viewBox="0 0 150 150" xml:space="preserve">
<g>
<circle fill="#FFD178" cx="75" cy="75" r="70.477"/>
<radialGradient id="SVGID_1_" cx="122.042" cy="11.3647" r="190.1857" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#F6921E"/>
<stop offset="0.0881" style="stop-color:#F58522;stop-opacity:0.9119"/>
<stop offset="0.3273" style="stop-color:#F2672B;stop-opacity:0.6727"/>
<stop offset="0.5625" style="stop-color:#F05131;stop-opacity:0.4375"/>
<stop offset="0.7897" style="stop-color:#EE4435;stop-opacity:0.2103"/>
<stop offset="1" style="stop-color:#EE4036;stop-opacity:0"/>
</radialGradient>
<circle opacity="0.7" fill="url(#SVGID_1_)" cx="75" cy="75" r="70.477"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="627.7842" y1="302.9463" x2="627.7842" y2="166.6025" gradientTransform="matrix(0.7546 0.6563 -0.6563 0.7546 -245.2407 -512.5254)">
<stop offset="0" style="stop-color:#231F20"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<circle display="none" opacity="0.6" fill="url(#SVGID_2_)" cx="74.404" cy="76.65" r="68.177"/>
<path opacity="0.02" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M81.977,81.507
c0.01-0.191,0.224-0.544,0.316-0.536c0.965,0.086,1.451-0.548,1.863-1.229c0.326-0.54,0.763-1.168,0.717-1.722
c-0.029-0.365-0.825-0.941-1.279-0.944c-1.031-0.004-1.362-0.537-1.656-1.361c-0.469-1.321-1.018-1.418-2.005-0.474
c-0.729,0.697-0.923,2.201-2.52,1.655c-0.188-0.065-0.63,0.306-0.808,0.57c-0.847,1.271-1.675,2.558-2.438,3.88
c-0.172,0.298-0.153,0.784-0.06,1.142c0.218,0.842,0.532,1.658,0.839,2.582c0.454,0.178,1.067,0.418,1.679,0.657
c-0.047-0.143-0.096-0.285-0.143-0.426c1.036-0.354,2.049-0.857,3.113-1.026C81.177,84.025,81.902,83.296,81.977,81.507z"/>
<path opacity="0.02" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M35.254,20.625
c2.489,0.65,4.446,1.163,6.438,1.685c-0.228-1.228-0.436-2.347-0.7-3.772c0.69,0.344,1.237,0.63,1.243,0.618
c0.968-1.756,1.798-0.504,2.687,0.083c0.777,0.513,1.906,0.682,2.167-0.224c0.35-1.211,0.847-1.189,1.78-0.935
c0.421,0.115,0.914,0.084,1.351-0.002c1.861-0.367,3.729-0.728,5.567-1.193c1.788-0.45,3.309,0.553,4.972,0.771
c1.325,0.173,2.549,0.534,3.534-0.964c0.382-0.583,1.643-1.076,2.314-0.898c3.131,0.832,6.3,1.077,9.51,1.115
c1.389,0.017,2.078,0.875,1.963,2.257c-0.023,0.269,0.029,0.738,0.175,0.798c2.083,0.857,1.422,4.409,4.347,4.422
c0.107,0,0.209,0.205,0.323,0.302c0.971,0.828,1.981,1.614,2.895,2.5c0.333,0.323,0.727,1.002,0.596,1.314
c-0.726,1.751,0.577,2.277,1.665,2.778c1.228,0.564,2.551,0.945,3.862,1.281c0.407,0.105,1.089-0.042,1.353-0.334
c0.894-0.997,1.599-0.343,2.349,0.113c0.749,0.457,0.987,1.031,0.513,1.874c-0.449,0.801-0.281,1.263,0.753,1.54
c1.061,0.285,2.065,0.861,3.022,1.433c1.498,0.895,2.925,1.908,4.407,2.83c0.203,0.127,0.615,0.119,0.828-0.002
c1.336-0.768,2.846-1.361,3.093-3.229c0.054-0.411,0.539-0.766,0.831-1.143c0.387-0.497,0.905-0.775,0.272-1.657
c-0.563-0.784-0.972-1.517-1.868-2.057c-0.875-0.529-1.347-1.444-1.702-2.588c-0.494-1.59-1.82-2.909-2.691-4.401
c-0.318-0.544-0.353-1.253-0.519-1.887c0.562-0.112,1.125-0.225,1.758-0.351c0.528-1.09,1.03-2.316,1.694-3.447
c0.745-1.272,0.557-2.435,0.173-3.782c-0.287-1.008-0.003-2.18,0.037-3.278c0.004-0.119,0.011-0.238,0.017-0.356
C96.84,7.163,86.23,4.523,75,4.523c-14.636,0-28.229,4.463-39.495,12.101c0.05,0.022,0.096,0.043,0.146,0.065
C35.172,18.028,34.259,19.568,35.254,20.625z"/>
<path opacity="0.02" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M142.968,68.897
c-0.701-1.179-1.542-2.273-2.198-3.226c0.26-0.522,0.702-1.003,0.628-1.387c-0.063-0.348-0.733-0.55-1.058-0.891
c-0.466-0.488-0.974-0.991-1.257-1.586c-0.332-0.693-0.249-1.641-0.688-2.216c-0.865-1.128-1.849-2.25-3.011-3.033
c-0.746-0.502-2.661-1.913-3.018-2.755c-0.663-1.559-0.597-3.625-2.755-4.236c-0.2-0.056-0.383-0.338-0.481-0.557
c-0.6-1.32-1.639-1.67-2.941-1.29c-1.147,0.336-1.896,0.032-2.608-0.962c-0.398-0.556-1.218-1.029-1.899-1.112
c-1.013-0.122-2.16,0.437-3.088,0.159c-1.323-0.396-1.934,0.302-2.684,1.014c-0.973,0.924-2.409,0.792-3.638,0.045
c-0.579-0.353-1.563-0.295-2.253-0.074c-0.264,0.084-0.283,1.141-0.288,1.756c-0.002,0.464,0.197,0.93,0.346,1.566
c-0.456-0.104-0.764-0.173-1.071-0.242c-0.26,0.573-0.75,1.15-0.734,1.714c0.038,1.397-0.794,2.452-1.705,2.956
c-2.377,1.314-3.433,4.4-6.547,4.72c-0.555,0.057-1.084,0.852-1.532,1.384c-1.32,1.569-2.595,3.178-3.89,4.769
c-0.157,0.194-0.377,0.349-0.495,0.561c-1.472,2.634-2.963,5.258-4.373,7.924c-0.49,0.928-0.765,1.969-1.144,2.955
c-0.199,0.516-0.407,1.029-0.622,1.573c-2.688-0.647-2.785-0.606-2.581,1.15c0.457,0,0.905,0,1.507,0
c-0.446,1.31-0.836,2.454-1.097,3.222c0.704,1.149,1.299,2.116,1.886,3.086c0.149,0.248,0.24,0.537,0.414,0.764
c0.85,1.111,0.342,1.834-0.617,2.5c-0.661-1.018-1.902-1.306-2.003-0.596c-0.147,1.062-1.031,1.166-1.545,1.718
c-0.469,0.504-0.912,1.222-1.658,0.119c-0.249-0.365-1.146-0.29-1.834-0.435c0.513,2.311,3.068,3.227,4.456,2.195
c1.391,0,2.411,0,3.432,0c0.222-0.162,0.386,0.04,0.598,0.151c1.374,0.729,2.569,1.992,4.411,0.796
c0.685-0.444,2.072-0.594,2.692-0.19c1.544,1,3.354,1.229,4.967,2.085c2.304,1.226,3.244,3.423,4.935,5.032
c0.245,0.234,0.123,0.851,0.177,1.29c0.07,0.558-0.033,1.26,0.269,1.635c0.367,0.455,1.076,0.877,1.638,0.877
c1.016,0,2.176-0.077,3.011-0.571c1.273-0.752,2.387-1.609,3.947-0.915c0.051,0.023,0.164-0.088,0.249-0.14
c1.304-0.792,2.552-1.706,3.925-2.353c2.693-1.267,5.096-2.968,7.49-4.695c0.398-0.289,0.984-0.581,1.09-0.978
c0.661-2.458,3.181-2.367,4.779-3.504c0.438-0.311,1.42,0.235,2.149,0.224c1.138-0.019,2.277-0.143,3.407-0.284
c1.065-0.135,1.637,0.354,2.1,1.265c0.449,0.883,1.563,1.608,2.746,1.987c1.666-6.007,2.574-12.327,2.574-18.863
c0-1.949-0.101-3.875-0.256-5.784c-0.015,0.009-0.031,0.016-0.046,0.026C144.285,69.824,143.616,69.989,142.968,68.897z
M113.371,73.488c-0.216,1.631-0.315,3.287-0.669,4.886c-0.167,0.758-0.671,1.846-1.259,2.03c-1.771,0.555-0.85,1.678-0.761,2.626
c-0.612,0.165-1.084,0.292-1.597,0.43c0.288,0.568,0.503,0.987,0.896,1.761c-0.984-0.182-1.642-0.303-2.3-0.424
c-0.076-0.118-0.152-0.233-0.227-0.35c0.265-0.111,0.528-0.223,0.82-0.346c-0.938-1.144-1.679-0.779-2.348,0.112
c-0.609-0.192-1.19-0.374-1.962-0.617c0.086-0.324,0.238-0.811,0.344-1.307c0.119-0.568,0.395-1.194,0.261-1.707
c-0.57-2.188-0.351-4.427-0.57-6.633c-0.016-0.148-0.054-0.294-0.069-0.442c-0.044-0.424-0.264-1.075-0.08-1.225
c0.335-0.271,0.911-0.243,1.615-0.389c1.004-1.39,2.293-1.607,4.121-0.648c0.57,0.3,1.335,0.367,1.997,0.33
C112.791,71.508,113.535,72.239,113.371,73.488z"/>
<path opacity="0.02" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M11.819,106.23
c0.042,0.012,0.081,0.039,0.123,0.048c1.992,0.4,3.597,1.326,4.937,2.809c0.939,1.038,2.007,1.636,3.534,1.483
c0.873-0.088,2.315-0.638,2.388,1.234c0.006,0.156,0.87,0.279,1.493,0.212c1.04,0.849,0.072,1.868-0.008,2.904
c-0.053,0.694-0.028,1.396-0.01,2.095c0.004,0.132,0.239,0.335,0.206,0.379c-1.648,2.126,0.329,4.035,0.453,6.047
c0.048,0.806,0.63,1.649,1.262,2.376C38.862,137.984,56.051,145.477,75,145.477c5.813,0,11.458-0.718,16.862-2.045
c-0.087-0.257-0.187-0.508-0.268-0.766c-0.258-0.811-0.447-1.826-0.181-2.576c0.37-1.049,1.213-1.928,1.814-2.903
c0.144-0.234,0.201-0.57,0.18-0.852c-0.191-2.53-0.329-5.029,1.841-6.948c0.215-0.189,0.26-0.62,0.299-0.948
c0.186-1.594,0.81-2.835,2.37-3.549c0.437-0.201,0.79-0.771,0.999-1.253c0.862-1.983,0.978-4.227,2.275-6.092
c0.407-0.587,0.422-1.677,0.211-2.421c-0.631-2.228-1.464-4.398-2.164-6.433c-0.526-0.127-1.043-0.258-1.562-0.377
c-1.056-0.241-1.962-1.209-3.228-0.534c-0.274,0.146-0.996-0.154-1.258-0.465c-0.493-0.585-0.757-1.356-1.199-1.99
c-0.263-0.375-0.837-0.96-1.013-0.88c-0.47,0.212-0.802,0.73-1.183,1.133c-0.427,0.452-0.773,1.034-1.287,1.342
c-0.985,0.591-2.195,0.867-3.064,1.577c-0.771,0.63-1.288,0.516-1.976,0.1c-0.656-0.395-1.344-0.737-1.983-1.155
c-0.279-0.183-0.632-0.468-0.683-0.755c-0.409-2.283-0.754-4.578-1.117-6.86c-0.449-0.18-1.177-0.343-1.756-0.729
c-1.894-1.263-3.732-2.606-5.567-3.903c0-0.544-0.034-1.11,0.018-1.668c0.021-0.247,0.229-0.689,0.339-0.685
c1.993,0.082,1.97-1.355,2.046-2.449c-0.5-0.299-0.884-0.568-1.301-0.77c-0.817-0.395-1.653-1.021-2.482-1.022
c-0.507-0.002-1.017,0.979-1.595,1.592c-0.759-0.838-1.783-1.075-3.062-0.557c-0.73,0.295-2.715-1.357-2.808-2.17
c-0.275-2.451-0.788-2.878-3.33-2.91c-0.831-0.01-1.766,0.068-2.467-0.275c-1.609-0.788-3.133-1.767-4.631-2.758
c-0.535-0.354-0.925-0.947-1.33-1.472c-0.457-0.589-0.823-1.247-1.286-1.829c-0.459-0.575-1.019-1.068-1.479-1.642
c-0.674-0.839-1.238-1.771-1.956-2.567c-0.952-1.05-1.761-2.144-3.216-2.808c-1.347-0.615-2.284-2.128-3.409-3.237
c-0.555-0.547-1.251-0.995-1.664-1.631c-0.992-1.528-2.305-1.957-3.911-1.12c-0.259,0.134-0.56,0.311-0.825,0.285
c-1.765-0.174-3.524-0.421-5.291-0.584c-0.407-0.038-0.893,0.062-1.245,0.266c-1.376,0.796-2.371,2.131-4.156,2.404
c-0.927,0.143-2.353,0.482-2.17,2.153c0.029,0.268-0.425,0.649-0.729,0.882c-1.044,0.805-2.096,1.604-3.202,2.32
c-0.373,0.243-0.913,0.229-1.376,0.336c-0.524,0.121-1.144,0.107-1.555,0.393c-1.254,0.872-2.708,1.332-4.016,0.77
c-0.71-0.306-0.903-1.691-1.468-2.493c-0.408-0.581-1.013-1.045-1.608-1.442c-0.076-0.051-0.627,0.606-1.035,1.012
c0.161-1.527-0.646-1.247-1.466-1.229C4.595,71.847,4.523,73.415,4.523,75C4.523,86.218,7.157,96.815,11.819,106.23z
M22.674,101.912c1.242-0.117,1.565,0.288,1.628,1.983c0.019,0.543-0.318,1.425,0.827,1.757c0.959,0.278,1.143,1.398,0.865,2.291
c-0.142,0.455-0.831,0.715-1.198,1.131c-1.343,1.52-2.417,0.753-3.463-0.367c-0.135-0.144-0.386-0.379-0.348-0.455
c0.637-1.285-0.599-1.935-0.945-2.72C20.965,104.261,21.73,103.21,22.674,101.912z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.9 KiB

116
img/header/moon2.svg Normal file
View file

@ -0,0 +1,116 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="150px" height="150px" viewBox="0 0 150 150" enable-background="new 0 0 150 150" xml:space="preserve">
<g>
<circle fill="#FFD178" cx="75" cy="75" r="70.477"/>
<radialGradient id="SVGID_1_" cx="122.042" cy="11.3647" r="190.1857" gradientUnits="userSpaceOnUse">
<stop offset="0" style="stop-color:#F6921E"/>
<stop offset="0.292" style="stop-color:#F68F1F;stop-opacity:0.708"/>
<stop offset="0.4943" style="stop-color:#F58621;stop-opacity:0.5057"/>
<stop offset="0.6694" style="stop-color:#F37726;stop-opacity:0.3306"/>
<stop offset="0.829" style="stop-color:#F1612C;stop-opacity:0.171"/>
<stop offset="0.9769" style="stop-color:#EE4535;stop-opacity:0.0231"/>
<stop offset="1" style="stop-color:#EE4036;stop-opacity:0"/>
</radialGradient>
<circle opacity="0.3" fill="url(#SVGID_1_)" cx="75" cy="75" r="70.477"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="627.7842" y1="302.9463" x2="627.7842" y2="166.6025" gradientTransform="matrix(0.7546 0.6563 -0.6563 0.7546 -245.2407 -512.5254)">
<stop offset="0" style="stop-color:#231F20"/>
<stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
</linearGradient>
<circle opacity="0.6" fill="url(#SVGID_2_)" cx="74.404" cy="76.65" r="68.177"/>
<path opacity="0.03" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M81.977,81.507
c0.01-0.191,0.224-0.544,0.316-0.536c0.965,0.086,1.451-0.548,1.863-1.229c0.326-0.54,0.763-1.168,0.717-1.722
c-0.029-0.365-0.825-0.941-1.279-0.944c-1.031-0.004-1.362-0.537-1.656-1.361c-0.469-1.321-1.018-1.418-2.005-0.474
c-0.729,0.697-0.923,2.201-2.52,1.655c-0.188-0.065-0.63,0.306-0.808,0.57c-0.847,1.271-1.675,2.558-2.438,3.88
c-0.172,0.298-0.153,0.784-0.06,1.142c0.218,0.842,0.532,1.658,0.839,2.582c0.454,0.178,1.067,0.418,1.679,0.657
c-0.047-0.143-0.096-0.285-0.143-0.426c1.036-0.354,2.049-0.857,3.113-1.026C81.177,84.025,81.902,83.296,81.977,81.507z"/>
<path opacity="0.03" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M35.254,20.625
c2.489,0.65,4.446,1.163,6.438,1.685c-0.228-1.228-0.436-2.347-0.7-3.772c0.69,0.344,1.237,0.63,1.243,0.618
c0.968-1.756,1.798-0.504,2.687,0.083c0.777,0.513,1.906,0.682,2.167-0.224c0.35-1.211,0.847-1.189,1.78-0.935
c0.421,0.115,0.914,0.084,1.351-0.002c1.861-0.367,3.729-0.728,5.567-1.193c1.788-0.45,3.309,0.553,4.972,0.771
c1.325,0.173,2.549,0.534,3.534-0.964c0.382-0.583,1.643-1.076,2.314-0.898c3.131,0.832,6.3,1.077,9.51,1.115
c1.389,0.017,2.078,0.875,1.963,2.257c-0.023,0.269,0.029,0.738,0.175,0.798c2.083,0.857,1.422,4.409,4.347,4.422
c0.107,0,0.209,0.205,0.323,0.302c0.971,0.828,1.981,1.614,2.895,2.5c0.333,0.323,0.727,1.002,0.596,1.314
c-0.726,1.751,0.577,2.277,1.665,2.778c1.228,0.564,2.551,0.945,3.862,1.281c0.407,0.105,1.089-0.042,1.353-0.334
c0.894-0.997,1.599-0.343,2.349,0.113c0.749,0.457,0.987,1.031,0.513,1.874c-0.449,0.801-0.281,1.263,0.753,1.54
c1.061,0.285,2.065,0.861,3.022,1.433c1.498,0.895,2.925,1.908,4.407,2.83c0.203,0.127,0.615,0.119,0.828-0.002
c1.336-0.768,2.846-1.361,3.093-3.229c0.054-0.411,0.539-0.766,0.831-1.143c0.387-0.497,0.905-0.775,0.272-1.657
c-0.563-0.784-0.972-1.517-1.868-2.057c-0.875-0.529-1.347-1.444-1.702-2.588c-0.494-1.59-1.82-2.909-2.691-4.401
c-0.318-0.544-0.353-1.253-0.519-1.887c0.562-0.112,1.125-0.225,1.758-0.351c0.528-1.09,1.03-2.316,1.694-3.447
c0.745-1.272,0.557-2.435,0.173-3.782c-0.287-1.008-0.003-2.18,0.037-3.278c0.004-0.119,0.011-0.238,0.017-0.356
C96.84,7.163,86.23,4.523,75,4.523c-14.636,0-28.229,4.463-39.495,12.101c0.05,0.022,0.096,0.043,0.146,0.065
C35.172,18.028,34.259,19.568,35.254,20.625z"/>
<path opacity="0.03" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M142.968,68.897
c-0.701-1.179-1.542-2.273-2.198-3.226c0.26-0.522,0.702-1.003,0.628-1.387c-0.063-0.348-0.733-0.55-1.058-0.891
c-0.466-0.488-0.974-0.991-1.257-1.586c-0.332-0.693-0.249-1.641-0.688-2.216c-0.865-1.128-1.849-2.25-3.011-3.033
c-0.746-0.502-2.661-1.913-3.018-2.755c-0.663-1.559-0.597-3.625-2.755-4.236c-0.2-0.056-0.383-0.338-0.481-0.557
c-0.6-1.32-1.639-1.67-2.941-1.29c-1.147,0.336-1.896,0.032-2.608-0.962c-0.398-0.556-1.218-1.029-1.899-1.112
c-1.013-0.122-2.16,0.437-3.088,0.159c-1.323-0.396-1.934,0.302-2.684,1.014c-0.973,0.924-2.409,0.792-3.638,0.045
c-0.579-0.353-1.563-0.295-2.253-0.074c-0.264,0.084-0.283,1.141-0.288,1.756c-0.002,0.464,0.197,0.93,0.346,1.566
c-0.456-0.104-0.764-0.173-1.071-0.242c-0.26,0.573-0.75,1.15-0.734,1.714c0.038,1.397-0.794,2.452-1.705,2.956
c-2.377,1.314-3.433,4.4-6.547,4.72c-0.555,0.057-1.084,0.852-1.532,1.384c-1.32,1.569-2.595,3.178-3.89,4.769
c-0.157,0.194-0.377,0.349-0.495,0.561c-1.472,2.634-2.963,5.258-4.373,7.924c-0.49,0.928-0.765,1.969-1.144,2.955
c-0.199,0.516-0.407,1.029-0.622,1.573c-2.688-0.647-2.785-0.606-2.581,1.15c0.457,0,0.905,0,1.507,0
c-0.446,1.31-0.836,2.454-1.097,3.222c0.704,1.149,1.299,2.116,1.886,3.086c0.149,0.248,0.24,0.537,0.414,0.764
c0.85,1.111,0.342,1.834-0.617,2.5c-0.661-1.018-1.902-1.306-2.003-0.596c-0.147,1.062-1.031,1.166-1.545,1.718
c-0.469,0.504-0.912,1.222-1.658,0.119c-0.249-0.365-1.146-0.29-1.834-0.435c0.513,2.311,3.068,3.227,4.456,2.195
c1.391,0,2.411,0,3.432,0c0.222-0.162,0.386,0.04,0.598,0.151c1.374,0.729,2.569,1.992,4.411,0.796
c0.685-0.444,2.072-0.594,2.692-0.19c1.544,1,3.354,1.229,4.967,2.085c2.304,1.226,3.244,3.423,4.935,5.032
c0.245,0.234,0.123,0.851,0.177,1.29c0.07,0.558-0.033,1.26,0.269,1.635c0.367,0.455,1.076,0.877,1.638,0.877
c1.016,0,2.176-0.077,3.011-0.571c1.273-0.752,2.387-1.609,3.947-0.915c0.051,0.023,0.164-0.088,0.249-0.14
c1.304-0.792,2.552-1.706,3.925-2.353c2.693-1.267,5.096-2.968,7.49-4.695c0.398-0.289,0.984-0.581,1.09-0.978
c0.661-2.458,3.181-2.367,4.779-3.504c0.438-0.311,1.42,0.235,2.149,0.224c1.138-0.019,2.277-0.143,3.407-0.284
c1.065-0.135,1.637,0.354,2.1,1.265c0.449,0.883,1.563,1.608,2.746,1.987c1.666-6.007,2.574-12.327,2.574-18.863
c0-1.949-0.101-3.875-0.256-5.784c-0.015,0.009-0.031,0.016-0.046,0.026C144.285,69.824,143.616,69.989,142.968,68.897z
M113.371,73.488c-0.216,1.631-0.315,3.287-0.669,4.886c-0.167,0.758-0.671,1.846-1.259,2.03c-1.771,0.555-0.85,1.678-0.761,2.626
c-0.612,0.165-1.084,0.292-1.597,0.43c0.288,0.568,0.503,0.987,0.896,1.761c-0.984-0.182-1.642-0.303-2.3-0.424
c-0.076-0.118-0.152-0.233-0.227-0.35c0.265-0.111,0.528-0.223,0.82-0.346c-0.938-1.144-1.679-0.779-2.348,0.112
c-0.609-0.192-1.19-0.374-1.962-0.617c0.086-0.324,0.238-0.811,0.344-1.307c0.119-0.568,0.395-1.194,0.261-1.707
c-0.57-2.188-0.351-4.427-0.57-6.633c-0.016-0.148-0.054-0.294-0.069-0.442c-0.044-0.424-0.264-1.075-0.08-1.225
c0.335-0.271,0.911-0.243,1.615-0.389c1.004-1.39,2.293-1.607,4.121-0.648c0.57,0.3,1.335,0.367,1.997,0.33
C112.791,71.508,113.535,72.239,113.371,73.488z"/>
<path opacity="0.03" fill-rule="evenodd" clip-rule="evenodd" fill="#231F20" d="M11.819,106.23
c0.042,0.012,0.081,0.039,0.123,0.048c1.992,0.4,3.597,1.326,4.937,2.809c0.939,1.038,2.007,1.636,3.534,1.483
c0.873-0.088,2.315-0.638,2.388,1.234c0.006,0.156,0.87,0.279,1.493,0.212c1.04,0.849,0.072,1.868-0.008,2.904
c-0.053,0.694-0.028,1.396-0.01,2.095c0.004,0.132,0.239,0.335,0.206,0.379c-1.648,2.126,0.329,4.035,0.453,6.047
c0.048,0.806,0.63,1.649,1.262,2.376C38.862,137.984,56.051,145.477,75,145.477c5.813,0,11.458-0.718,16.862-2.045
c-0.087-0.257-0.187-0.508-0.268-0.766c-0.258-0.811-0.447-1.826-0.181-2.576c0.37-1.049,1.213-1.928,1.814-2.903
c0.144-0.234,0.201-0.57,0.18-0.852c-0.191-2.53-0.329-5.029,1.841-6.948c0.215-0.189,0.26-0.62,0.299-0.948
c0.186-1.594,0.81-2.835,2.37-3.549c0.437-0.201,0.79-0.771,0.999-1.253c0.862-1.983,0.978-4.227,2.275-6.092
c0.407-0.587,0.422-1.677,0.211-2.421c-0.631-2.228-1.464-4.398-2.164-6.433c-0.526-0.127-1.043-0.258-1.562-0.377
c-1.056-0.241-1.962-1.209-3.228-0.534c-0.274,0.146-0.996-0.154-1.258-0.465c-0.493-0.585-0.757-1.356-1.199-1.99
c-0.263-0.375-0.837-0.96-1.013-0.88c-0.47,0.212-0.802,0.73-1.183,1.133c-0.427,0.452-0.773,1.034-1.287,1.342
c-0.985,0.591-2.195,0.867-3.064,1.577c-0.771,0.63-1.288,0.516-1.976,0.1c-0.656-0.395-1.344-0.737-1.983-1.155
c-0.279-0.183-0.632-0.468-0.683-0.755c-0.409-2.283-0.754-4.578-1.117-6.86c-0.449-0.18-1.177-0.343-1.756-0.729
c-1.894-1.263-3.732-2.606-5.567-3.903c0-0.544-0.034-1.11,0.018-1.668c0.021-0.247,0.229-0.689,0.339-0.685
c1.993,0.082,1.97-1.355,2.046-2.449c-0.5-0.299-0.884-0.568-1.301-0.77c-0.817-0.395-1.653-1.021-2.482-1.022
c-0.507-0.002-1.017,0.979-1.595,1.592c-0.759-0.838-1.783-1.075-3.062-0.557c-0.73,0.295-2.715-1.357-2.808-2.17
c-0.275-2.451-0.788-2.878-3.33-2.91c-0.831-0.01-1.766,0.068-2.467-0.275c-1.609-0.788-3.133-1.767-4.631-2.758
c-0.535-0.354-0.925-0.947-1.33-1.472c-0.457-0.589-0.823-1.247-1.286-1.829c-0.459-0.575-1.019-1.068-1.479-1.642
c-0.674-0.839-1.238-1.771-1.956-2.567c-0.952-1.05-1.761-2.144-3.216-2.808c-1.347-0.615-2.284-2.128-3.409-3.237
c-0.555-0.547-1.251-0.995-1.664-1.631c-0.992-1.528-2.305-1.957-3.911-1.12c-0.259,0.134-0.56,0.311-0.825,0.285
c-1.765-0.174-3.524-0.421-5.291-0.584c-0.407-0.038-0.893,0.062-1.245,0.266c-1.376,0.796-2.371,2.131-4.156,2.404
c-0.927,0.143-2.353,0.482-2.17,2.153c0.029,0.268-0.425,0.649-0.729,0.882c-1.044,0.805-2.096,1.604-3.202,2.32
c-0.373,0.243-0.913,0.229-1.376,0.336c-0.524,0.121-1.144,0.107-1.555,0.393c-1.254,0.872-2.708,1.332-4.016,0.77
c-0.71-0.306-0.903-1.691-1.468-2.493c-0.408-0.581-1.013-1.045-1.608-1.442c-0.076-0.051-0.627,0.606-1.035,1.012
c0.161-1.527-0.646-1.247-1.466-1.229C4.595,71.847,4.523,73.415,4.523,75C4.523,86.218,7.157,96.815,11.819,106.23z
M22.674,101.912c1.242-0.117,1.565,0.288,1.628,1.983c0.019,0.543-0.318,1.425,0.827,1.757c0.959,0.278,1.143,1.398,0.865,2.291
c-0.142,0.455-0.831,0.715-1.198,1.131c-1.343,1.52-2.417,0.753-3.463-0.367c-0.135-0.144-0.386-0.379-0.348-0.455
c0.637-1.285-0.599-1.935-0.945-2.72C20.965,104.261,21.73,103.21,22.674,101.912z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

271
img/header/title.svg Normal file
View file

@ -0,0 +1,271 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg version="1.1" baseProfile="tiny" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="500px" height="380px"
viewBox="0 0 500 380" xml:space="preserve">
<g>
<path fill="#FFFBEA" d="M129.11,79.905c0,2.268,0.378,12.349,1.512,19.657c-0.504,1.512-3.906,2.016-4.788,0.882
c-3.402-11.719-11.467-18.019-23.689-18.019c-13.987,0-28.982,11.971-28.982,37.046s14.491,38.558,29.612,38.558
c15.247,0,22.303-10.962,25.706-19.531c1.008-1.008,4.032-0.63,4.788,0.882c-0.882,9.325-3.024,16.885-4.788,19.783
c-6.804,1.89-15.751,4.662-25.58,4.662c-12.349,0-24.949-2.898-33.896-9.577c-9.072-6.93-16.003-17.389-16.003-33.014
c0-15.373,6.553-26.209,15.247-33.392c8.946-7.434,21.799-11.214,34.904-11.214C116.005,76.629,125.33,79.653,129.11,79.905z"/>
<path fill="#FFFBEA" d="M172.451,121.865c-5.167,0-5.292,0.126-5.292,3.654v18.145c0,11.719,0.756,12.853,6.426,13.609l4.032,0.504
c1.008,0.756,1.008,3.654,0,4.41c-7.182-0.252-13.482-0.378-19.153-0.378c-6.048,0-12.349,0.126-18.775,0.378
c-1.008-0.756-1.008-3.654,0-4.41l3.024-0.378c5.796-0.756,6.426-2.016,6.426-13.735V96.79c0-11.719-0.63-12.979-6.426-13.735
l-3.024-0.378c-1.008-0.756-1.008-3.654,0-4.411c6.175,0.252,12.727,0.378,18.775,0.378c5.67,0,11.971-0.126,17.515-0.378
c1.008,0.756,1.008,3.654,0,4.41l-2.646,0.378c-5.418,0.756-6.174,2.016-6.174,13.735v14.617c0,3.654,0.126,3.78,5.292,3.78h26.209
c5.292,0,5.292-0.126,5.292-3.78V96.79c0-11.719-0.63-12.727-6.426-13.609l-3.402-0.504c-1.008-0.756-1.008-3.654,0-4.411
c6.93,0.252,13.104,0.378,19.153,0.378c6.174,0,11.971-0.126,17.767-0.378c1.008,0.756,1.008,3.654,0,4.41l-2.521,0.378
c-5.796,0.882-6.552,2.016-6.552,13.735v46.875c0,11.719,0.756,12.601,6.552,13.609l3.024,0.504c1.008,0.756,1.008,3.654,0,4.41
c-6.3-0.252-12.475-0.378-18.271-0.378c-6.3,0-12.475,0.126-18.523,0.378c-1.008-0.756-1.008-3.654,0-4.41l2.772-0.378
c5.796-0.756,6.426-2.016,6.426-13.735V125.52c0-3.528,0-3.654-5.292-3.654H172.451z"/>
<path fill="#FFFBEA" d="M268.715,143.413c0,11.845,0.756,12.727,6.552,13.735l3.528,0.63c1.008,0.756,0.883,3.654-0.126,4.41
c-6.804-0.252-12.979-0.378-18.901-0.378c-6.048,0-12.348,0.126-19.153,0.378c-1.008-0.756-1.008-3.654,0-4.41l3.528-0.63
c5.796-1.008,6.552-1.89,6.552-13.735V97.042c0-11.845-0.756-12.727-6.552-13.735l-3.528-0.63c-1.008-0.756-1.008-3.654,0-4.411
c6.805,0.252,13.105,0.378,19.153,0.378c5.923,0,12.223-0.126,19.027-0.378c1.008,0.756,1.008,3.654,0,4.41l-3.528,0.63
c-5.796,1.008-6.552,1.89-6.552,13.735V143.413z"/>
<path fill="#FFFBEA" d="M315.459,111.407c0,3.528,0.126,3.78,3.528,3.78h8.694c6.553,0,8.064-0.882,9.324-6.931l0.631-3.15
c0.881-1.008,4.031-1.008,4.662,0.126c-0.252,4.032-0.379,8.568-0.379,13.357c0,4.788,0.127,9.324,0.379,13.356
c-0.631,1.134-3.781,1.26-4.662,0.126l-0.631-3.15c-1.26-6.048-2.771-7.057-9.324-7.057h-8.694c-3.402,0-3.528,0.126-3.528,3.906
v14.995c0,5.796,0.504,9.828,2.016,11.971c1.639,2.268,4.033,3.276,13.231,3.276c10.962,0,15.247-0.378,22.177-14.617
c1.008-1.386,4.158-0.882,4.662,0.63c-0.504,6.552-3.527,16.759-5.292,20.161c-6.679-0.252-18.774-0.378-29.107-0.378h-16.381
c-6.048,0-12.223,0.126-21.673,0.378c-1.008-0.756-1.008-3.78,0-4.41l5.922-0.882c5.67-0.882,6.426-1.638,6.426-13.231v-47
c0-11.467-0.756-12.223-6.426-13.357l-3.15-0.63c-1.134-0.756-1.008-3.654,0.252-4.41c5.922,0.252,12.098,0.378,18.145,0.378
h26.715c8.064,0,15.246-0.126,16.885-0.378c0.125,2.016,1.008,11.088,1.638,19.531c-0.504,1.386-3.402,1.638-4.662,0.504
c-1.386-4.41-3.15-8.19-4.788-9.954c-2.395-2.395-6.175-3.906-12.35-3.906h-10.08c-4.158,0-4.158,0.252-4.158,4.914V111.407z"/>
<path fill="#FFFBEA" d="M439.947,140.388c0,8.19,0,16.129,0.252,20.287c-0.881,1.512-4.41,2.898-7.434,2.898
c-0.125,0-4.283-6.426-10.207-13.735l-29.107-36.038c-7.309-8.946-11.467-14.239-13.734-16.129c-0.63,1.26-0.63,3.402-0.63,8.064
v24.445c0,10.207,0.504,19.657,1.89,23.06c1.135,2.646,4.033,3.528,7.309,4.032l3.528,0.504c1.008,1.008,0.756,3.654,0,4.41
c-6.804-0.252-11.845-0.378-16.885-0.378c-4.663,0-9.325,0.126-14.112,0.378c-0.757-0.756-1.009-3.402,0-4.41l2.142-0.378
c3.401-0.63,5.923-1.512,6.931-4.158c1.386-3.402,1.764-12.853,1.764-23.06V98.176c0-6.93-0.126-8.946-0.883-10.71
c-1.008-2.142-2.771-3.654-7.182-4.284l-3.528-0.504c-0.882-1.008-0.756-4.032,0.504-4.411c5.923,0.252,12.223,0.378,17.39,0.378
c4.283,0,7.938-0.126,10.584-0.378c1.26,5.67,9.451,15.247,20.791,28.729l10.584,12.475c5.545,6.552,9.199,10.962,12.098,13.861
c0.504-1.26,0.504-3.402,0.504-5.67v-17.389c0-10.207-0.504-19.657-1.891-23.059c-1.133-2.646-3.906-3.528-7.309-4.032
l-3.402-0.504c-1.008-1.008-0.756-3.654,0-4.411c6.805,0.252,11.719,0.378,16.887,0.378c4.662,0,9.197-0.126,14.111-0.378
c0.756,0.756,1.008,3.402,0,4.41l-2.268,0.378c-3.275,0.504-5.67,1.512-6.805,4.158c-1.387,3.402-1.891,12.853-1.891,23.059
V140.388z"/>
</g>
<g>
<path fill="#FFFBEA" d="M191.968,30.084c0-6.448-0.124-7.377-3.782-7.812l-0.992-0.124c-0.372-0.248-0.248-1.364,0.124-1.55
c2.666,0.124,4.774,0.186,7.316,0.186h11.655c3.968,0,7.625,0,8.37-0.186c0.372,1.054,0.744,5.518,0.992,8.246
c-0.248,0.372-1.24,0.496-1.55,0.124c-0.93-2.914-1.488-5.083-4.712-5.89c-1.302-0.31-3.286-0.372-6.014-0.372h-4.464
c-1.86,0-1.86,0.124-1.86,2.479v12.399c0,1.736,0.186,1.736,2.046,1.736h3.596c2.604,0,4.525-0.124,5.27-0.372
c0.744-0.248,1.178-0.62,1.488-2.169l0.496-2.542c0.31-0.372,1.364-0.372,1.612,0.062c0,1.488-0.248,3.906-0.248,6.262
c0,2.232,0.248,4.587,0.248,5.952c-0.248,0.434-1.302,0.434-1.612,0.062l-0.558-2.418c-0.248-1.116-0.682-2.046-1.922-2.356
c-0.868-0.248-2.356-0.31-4.773-0.31h-3.596c-1.86,0-2.046,0.062-2.046,1.674v8.742c0,3.286,0.186,5.394,1.178,6.448
c0.744,0.744,2.046,1.426,7.501,1.426c4.774,0,6.572-0.248,7.936-0.93c1.116-0.62,2.79-2.79,4.402-6.014
c0.434-0.31,1.302-0.124,1.55,0.434c-0.434,2.17-1.984,6.944-2.79,8.618c-5.58-0.124-11.097-0.186-16.615-0.186h-5.58
c-2.666,0-4.774,0.062-8.432,0.186c-0.372-0.186-0.496-1.178-0.124-1.55l2.046-0.186c3.534-0.31,3.844-1.24,3.844-7.75V30.084z"/>
<path fill="#FFFBEA" d="M225.944,43.909c0-2.418,0-2.728-1.674-3.844l-0.558-0.372c-0.248-0.248-0.248-0.93,0.062-1.116
c1.426-0.496,4.96-2.108,6.2-3.038c0.248,0,0.558,0.124,0.682,0.434c-0.124,1.426-0.124,2.356-0.124,2.914
c0,0.372,0.248,0.682,0.682,0.682c2.604-1.612,5.518-3.162,8.68-3.162c5.146,0,7.253,3.534,7.253,7.688v10.664
c0,4.463,0.124,5.083,2.356,5.394l1.364,0.186c0.435,0.31,0.31,1.364-0.124,1.55c-1.86-0.124-3.658-0.186-5.828-0.186
c-2.231,0-4.092,0.062-5.766,0.186c-0.434-0.186-0.558-1.24-0.124-1.55l1.178-0.186c2.294-0.372,2.356-0.93,2.356-5.394v-9.238
c0-3.534-1.612-6.138-5.828-6.138c-2.356,0-4.402,0.992-5.27,2.17c-0.806,1.054-0.93,1.922-0.93,3.72v9.486
c0,4.463,0.124,5.021,2.355,5.394l1.116,0.186c0.434,0.31,0.31,1.364-0.124,1.55c-1.674-0.124-3.472-0.186-5.642-0.186
c-2.232,0-4.092,0.062-5.828,0.186c-0.434-0.186-0.558-1.24-0.124-1.55l1.302-0.186c2.294-0.31,2.356-0.93,2.356-5.394V43.909z"/>
<path fill="#FFFBEA" d="M263.577,39.879c-1.054,0-1.116,0.186-1.116,1.488V52.96c0,3.596,0.435,6.882,4.526,6.882
c0.62,0,1.178-0.124,1.674-0.31c0.558-0.186,1.364-0.868,1.55-0.868c0.496,0,0.744,0.682,0.62,1.054
c-1.116,1.302-3.349,2.852-6.51,2.852c-5.331,0-6.448-2.976-6.448-6.696V41.677c0-1.674-0.062-1.798-1.301-1.798h-1.736
c-0.372-0.248-0.434-0.93-0.186-1.302c1.797-0.558,3.348-1.364,3.967-1.922c0.807-0.744,1.984-2.418,2.604-3.658
c0.31-0.124,1.054-0.124,1.302,0.31v2.79c0,1.116,0.063,1.178,1.115,1.178h6.883c0.743,0.558,0.619,2.232,0.062,2.604H263.577z"/>
<path fill="#FFFBEA" d="M277.527,43.909c0-2.418,0-2.728-1.674-3.844l-0.559-0.372c-0.248-0.248-0.248-0.93,0.063-1.116
c1.426-0.496,4.712-2.108,6.262-3.038c0.311,0.062,0.496,0.186,0.496,0.434v3.596c0,0.31,0.063,0.496,0.186,0.558
c2.17-1.798,4.525-3.72,6.82-3.72c1.549,0,2.789,0.992,2.789,2.48c0,2.045-1.674,2.852-2.666,2.852
c-0.619,0-0.93-0.186-1.363-0.434c-0.93-0.62-1.859-0.992-2.729-0.992c-0.991,0-1.735,0.558-2.231,1.24
c-0.62,0.868-0.806,2.666-0.806,4.774v8.432c0,4.463,0.124,5.208,2.479,5.394l2.231,0.186c0.435,0.31,0.311,1.364-0.123,1.55
c-2.914-0.124-4.712-0.186-6.882-0.186c-2.231,0-4.092,0.062-5.704,0.186c-0.434-0.186-0.558-1.24-0.123-1.55l1.178-0.186
c2.293-0.372,2.355-0.93,2.355-5.394V43.909z"/>
<path fill="#FFFBEA" d="M299.475,45.831c-1.611,0-1.674,0.124-1.674,1.674c0,6.262,3.658,11.593,10.291,11.593
c2.047,0,3.782-0.62,5.704-3.038c0.62-0.186,1.054,0.186,1.116,0.744c-2.047,4.216-6.51,5.766-9.734,5.766
c-4.029,0-7.191-1.736-8.988-4.092c-1.86-2.418-2.604-5.332-2.604-8.06c0-7.625,5.021-14.011,12.462-14.011
c5.331,0,8.803,3.658,8.803,7.377c0,0.868-0.124,1.364-0.248,1.612c-0.186,0.372-1.054,0.434-3.658,0.434H299.475z M303.318,43.971
c4.588,0,5.951-0.248,6.447-0.62c0.187-0.124,0.373-0.372,0.373-1.178c0-1.736-1.179-3.906-4.774-3.906
c-3.657,0-6.819,3.348-6.882,5.394c0,0.124,0,0.31,0.434,0.31H303.318z"/>
</g>
<g>
<path fill="#FFFBEA" d="M140.391,310.788c0,5.923,0.504,9.954,2.142,11.971c1.638,2.142,3.906,3.149,13.105,3.149
c11.466,0,14.995-0.377,22.429-14.994c1.008-1.26,3.906-0.756,4.788,0.756c-0.63,6.553-3.654,17.011-5.418,20.413
c-6.678-0.252-18.775-0.378-29.107-0.378h-16.885c-5.796,0-12.097,0.126-19.909,0.378c-1.134-0.756-1.386-3.654-0.378-4.41
l4.788-0.63c5.67-0.756,6.426-1.764,6.426-13.482v-46.875c0-11.719-0.756-12.854-6.426-13.609l-3.654-0.504
c-1.26-0.756-1.26-3.654,0.252-4.41c6.553,0.252,12.853,0.379,18.901,0.379s12.349-0.127,18.649-0.379
c1.008,0.756,1.008,3.654,0,4.41l-3.276,0.504c-5.67,0.883-6.426,1.891-6.426,13.609V310.788z"/>
<path fill="#FFFBEA" d="M272.189,289.744c0,27.471-18.396,43.977-45.489,43.977c-25.327,0-43.724-16.633-43.724-42.968
c0-24.95,18.649-44.229,44.984-44.229C254.17,246.524,272.189,264.165,272.189,289.744z M226.953,252.32
c-15.499,0-23.815,14.491-23.815,35.534c0,15.373,5.418,40.07,25.957,40.07c16.507,0,22.934-16.129,22.934-36.542
C252.028,269.836,242.578,252.32,226.953,252.32z"/>
<path fill="#FFFBEA" d="M290.958,266.686c0-11.719-0.757-12.475-6.427-13.609l-3.15-0.629c-1.008-0.757-1.134-3.529,0.252-4.285
c6.049,0.252,12.35,0.379,18.397,0.379c6.175,0,12.349-0.127,18.397-0.379c1.008,0.756,1.008,3.528,0,4.285l-3.024,0.504
c-5.671,1.008-6.427,2.016-6.427,13.734v29.107c0,14.743,1.639,30.998,20.791,30.998c16.129,0,21.044-14.113,21.044-31.376v-15.247
c0-10.207-0.505-19.783-1.89-23.059c-1.135-2.646-3.906-3.402-7.309-4.033l-3.402-0.629c-1.008-1.009-0.756-3.529,0-4.285
c6.805,0.252,11.719,0.379,16.885,0.379c4.662,0,9.324-0.127,14.113-0.379c0.756,0.756,1.008,3.276,0,4.285l-2.269,0.504
c-3.276,0.756-5.671,1.512-6.805,4.158c-1.386,3.275-1.89,12.852-1.89,23.059v14.113c0,11.844-1.135,22.682-8.064,30.367
c-5.545,5.922-14.743,9.072-24.949,9.072c-9.577,0-18.146-1.512-24.95-7.056c-6.552-5.419-9.324-14.743-9.324-28.478V266.686z"/>
<path fill="#FFFBEA" d="M384.826,268.953c0-12.727-0.252-14.238-5.544-14.868l-3.906-0.505c-1.134-0.629-1.134-3.401,0.253-4.283
c8.316-0.631,18.145-1.135,29.107-1.135c10.71,0,17.767,1.26,23.059,3.276c7.687,2.898,15.373,9.577,15.373,21.8
c0,20.664-20.791,23.689-27.47,23.689c-1.512,0-2.646,0-4.032-0.127c-1.008-0.63-1.26-2.646-0.378-3.402
c10.458-3.275,12.601-10.71,12.601-20.035c0-9.324-4.788-19.404-16.129-19.404c-4.662,0-4.914,1.386-4.914,6.426v53.176
c0,11.719,0.756,12.727,6.426,13.608l4.033,0.63c1.386,0.63,1.386,3.528,0,4.284c-7.057-0.252-13.23-0.378-19.279-0.378
s-12.097,0.126-18.901,0.378c-1.386-0.756-1.638-3.654-0.252-4.284l3.528-0.63c5.67-1.009,6.426-1.89,6.426-13.608V268.953z"/>
</g>
<g>
<path fill="#FFFBEA" d="M61.872,260.5c-1.612,0-1.674,0.124-1.674,1.674c0,6.262,3.658,11.594,10.292,11.594
c2.046,0,3.782-0.62,5.704-3.038c0.62-0.187,1.054,0.187,1.116,0.743c-2.046,4.217-6.51,5.767-9.733,5.767
c-4.03,0-7.191-1.736-8.989-4.092c-1.86-2.418-2.604-5.332-2.604-8.06c0-7.625,5.021-14.012,12.461-14.012
c5.332,0,8.803,3.658,8.803,7.378c0,0.868-0.124,1.364-0.248,1.612c-0.186,0.371-1.054,0.434-3.658,0.434H61.872z M65.715,258.641
c4.588,0,5.952-0.248,6.448-0.621c0.186-0.123,0.372-0.371,0.372-1.178c0-1.735-1.178-3.905-4.774-3.905
c-3.658,0-6.82,3.348-6.882,5.394c0,0.124,0,0.311,0.434,0.311H65.715z"/>
<path fill="#FFFBEA" d="M89.523,254.549c-1.054,0-1.116,0.186-1.116,1.487v11.593c0,3.597,0.434,6.883,4.526,6.883
c0.62,0,1.178-0.125,1.674-0.311c0.558-0.186,1.364-0.867,1.55-0.867c0.496,0,0.744,0.682,0.62,1.053
c-1.116,1.303-3.348,2.853-6.51,2.853c-5.332,0-6.448-2.976-6.448-6.696v-14.197c0-1.674-0.062-1.797-1.302-1.797h-1.736
c-0.372-0.248-0.434-0.931-0.186-1.303c1.798-0.558,3.348-1.363,3.968-1.922c0.806-0.744,1.984-2.418,2.604-3.658
c0.31-0.123,1.054-0.123,1.302,0.311v2.79c0,1.116,0.062,1.178,1.116,1.178h6.882c0.744,0.558,0.62,2.231,0.062,2.604H89.523z"/>
</g>
<path fill="#FFFBEA" d="M437.055,181.181c-6.429,6.078-10.137,14.54-10.137,23.571c0,9.03,3.708,17.492,10.137,23.57H66.457
c6.125-6.053,9.658-14.35,9.658-23.102c0-9.322-3.884-17.947-10.622-24.04H437.055 M442.82,179.181H59.482
c8.773,5.351,14.633,15.01,14.633,26.04c0,10.414-5.227,19.604-13.197,25.102H442.82c-8.365-5.434-13.902-14.854-13.902-25.57
C428.918,194.033,434.455,184.615,442.82,179.181L442.82,179.181z"/>
<g>
<path fill="#FFFBEA" d="M139.562,217.197c0.216,0.216,0.108,0.756-0.144,0.899c-1.116-0.071-2.484-0.108-4.068-0.108
c-1.656,0-3.06,0.037-4.139,0.108c-0.36-0.144-0.36-0.756-0.036-0.899l1.116-0.108c0.792-0.071,1.26-0.36,1.404-0.575
c0.108-0.181,0.288-0.685,0.396-2.232l0.324-4.823c0.072-0.828,0-0.937-0.756-0.937h-5.184c-1.08,0-1.188,0.037-1.872,1.116
l-2.808,4.104c-1.26,1.979-1.62,2.52-1.62,2.7c0,0.215,0.144,0.432,0.828,0.539l1.548,0.217c0.288,0.216,0.18,0.756-0.072,0.899
c-1.116-0.071-2.231-0.108-3.671-0.108c-1.404,0-2.7,0.037-3.996,0.108c-0.18-0.216-0.144-0.684,0.072-0.899l0.972-0.108
c1.08-0.108,1.872-0.647,2.592-1.512c1.044-1.296,3.131-4.176,5.939-8.099l6.335-8.928c1.548-2.159,2.016-3.096,2.16-3.707
c1.224-0.18,2.556-1.188,2.627-1.188c0.18,0,0.432,0.144,0.432,0.287c0,0.612-0.18,2.16-0.36,5.292l-0.72,13.606
c-0.216,3.995-0.18,4.031,1.764,4.247L139.562,217.197z M133.838,207.082c0.612,0,0.684-0.072,0.72-0.72l0.576-7.884
c0.036-0.504,0-0.936-0.072-0.936c-0.108,0-0.324,0.217-1.368,1.764l-5.003,7.235c-0.288,0.433-0.18,0.54,0.612,0.54H133.838z
M133.011,190.38c-0.396-0.18-0.648-0.36-0.756-0.54c-0.108-0.216-0.108-0.648,0.216-1.26c0.252-0.468,0.612-0.684,0.828-0.684
c0.216,0,0.504,0.144,0.828,0.432l4.392,3.527c0.108,0.289-0.108,0.648-0.324,0.721L133.011,190.38z"/>
<path fill="#FFFBEA" d="M153.639,215.648c-0.288,0.828-0.252,1.188,0.144,1.188c0.792,0,2.484-1.764,4.14-3.636
c0.36-0.035,0.576,0.145,0.576,0.504c-0.936,1.8-3.204,4.787-6.191,4.787c-1.08,0-1.404-0.504-1.404-1.079
c0-0.576,0.18-1.224,0.792-3.06l5.723-17.026c0.864-2.52,0.504-2.88-0.036-3.132l-0.648-0.287c-0.18-0.145-0.18-0.469,0-0.576
c0.648-0.252,2.88-0.936,4.536-1.08l0.18,0.216c-0.468,1.296-0.828,2.304-2.124,6.191L153.639,215.648z"/>
<path fill="#FFFBEA" d="M169.226,196.067c0,2.521-2.987,4.355-5.291,5.003c-0.216-0.107-0.324-0.432-0.216-0.684
c1.152-0.539,3.204-1.728,3.204-3.635c0-0.648-0.432-1.116-1.152-1.368c-0.288-0.108-0.54-0.36-0.54-0.756
c0-0.757,0.72-1.332,1.512-1.332C168.398,193.296,169.226,194.771,169.226,196.067z"/>
<path fill="#FFFBEA" d="M191.868,203.519c-0.18,3.995-2.016,8.423-4.859,11.122c-2.196,2.088-5.219,3.924-9.431,3.924
c-6.119,0-8.927-4.787-8.783-9.395c0.108-4.428,1.944-8.999,5.759-12.238c2.844-2.412,5.867-3.275,8.783-3.275
C188.053,193.656,192.192,196.859,191.868,203.519z M177.794,196.932c-2.592,2.195-5.759,7.343-5.975,13.605
c-0.108,3.385,1.26,6.912,6.011,6.912c1.764,0,3.779-0.504,6.011-2.88c3.239-3.491,4.859-8.711,5.003-12.635
c0.18-4.571-2.052-7.163-5.651-7.163C180.89,194.771,179.054,195.852,177.794,196.932z"/>
<path fill="#FFFBEA" d="M198.818,206.723l-1.548,4.535h0.18c1.08-2.016,2.844-4.896,3.78-6.084
c0.828-1.079,1.728-1.871,2.627-1.871c1.26,0,1.44,1.224,1.44,1.764s-0.324,1.584-0.756,2.16c-0.432,0.539-1.008,0.576-1.152-0.181
c-0.18-0.936-0.396-1.403-0.756-1.403c-0.324,0-0.72,0.359-1.26,1.08c-2.195,2.807-4.211,7.199-6.119,11.338
c-0.144,0.288-0.324,0.432-0.612,0.432c-0.396,0-1.44-0.144-1.188-0.936c0.468-1.439,2.736-7.811,3.708-11.338
c0.108-0.396,0.036-0.756-0.288-0.756c-0.936,0-1.908,1.008-2.556,1.871c-0.36,0.072-0.612-0.145-0.576-0.576
c1.152-1.943,2.52-3.455,4.248-3.455C199.791,203.303,199.143,205.75,198.818,206.723z"/>
<path fill="#FFFBEA" d="M216.278,205.463c0,2.735-3.563,4.535-8.747,5.975c-0.252,0.611-0.504,1.764-0.504,3.203
c0,1.225,0.756,2.053,1.728,2.053c1.296,0,2.196-0.721,3.779-2.088c0.324,0,0.54,0.287,0.468,0.611
c-2.196,2.7-4.248,3.275-5.759,3.275c-2.16,0-2.916-2.016-2.916-3.779c0-2.268,1.439-6.658,5.363-9.683
c1.872-1.439,3.275-1.728,4.319-1.728C215.45,203.303,216.278,204.526,216.278,205.463z M210.555,206.146
c-1.404,1.512-2.232,3.168-2.664,4.211c2.375-0.72,3.492-1.403,4.823-2.664c1.116-1.043,1.404-2.123,1.404-2.447
c0-0.359-0.18-0.828-0.828-0.828C212.787,204.418,211.851,204.742,210.555,206.146z M212.714,201.574
c-0.252,0-0.576-0.215-0.576-0.467l3.383-5.148c0.252-0.396,0.54-0.756,0.864-0.719c0.252,0,0.612,0.144,1.008,0.539
c0.324,0.324,0.504,0.684,0.468,0.936c0,0.217-0.216,0.541-0.612,0.864L212.714,201.574z"/>
<path fill="#FFFBEA" d="M228.733,205.463c0,2.735-3.563,4.535-8.747,5.975c-0.252,0.611-0.504,1.764-0.504,3.203
c0,1.225,0.756,2.053,1.728,2.053c1.296,0,2.196-0.721,3.78-2.088c0.324,0,0.54,0.287,0.468,0.611
c-2.196,2.7-4.248,3.275-5.759,3.275c-2.16,0-2.916-2.016-2.916-3.779c0-2.268,1.439-6.658,5.363-9.683
c1.872-1.439,3.275-1.728,4.319-1.728C227.906,203.303,228.733,204.526,228.733,205.463z M223.01,206.146
c-1.404,1.512-2.232,3.168-2.664,4.211c2.375-0.72,3.491-1.403,4.823-2.664c1.116-1.043,1.404-2.123,1.404-2.447
c0-0.359-0.18-0.828-0.828-0.828C225.242,204.418,224.306,204.742,223.01,206.146z"/>
<path fill="#FFFBEA" d="M253.321,197.004c0.72-2.016,0.827-2.628,0.323-2.988l-0.827-0.576c-0.072-0.144-0.036-0.359,0.108-0.504
c0.684-0.252,2.699-0.72,4.247-0.684l0.144,0.216c-0.647,2.017-1.188,3.384-2.268,6.372c-3.563,9.826-5.255,15.586-5.579,16.665
c-0.144,0.468-0.108,0.828,0.216,0.828c0.576,0,2.844-1.836,3.959-3.239c0.324,0,0.504,0.144,0.541,0.468
c-0.973,1.979-4.248,4.931-6.12,4.931c-0.756,0-1.152-0.575-1.152-1.151c0-0.433,0.108-1.008,0.468-2.052l1.26-3.563l-0.144-0.036
c-2.483,3.312-5.183,6.803-8.675,6.803c-1.404,0-2.16-1.151-2.16-2.592c0-2.555,1.944-6.838,4.788-9.395
c2.448-2.195,4.715-3.203,6.443-3.203c0.576,0,1.44,0.359,1.836,1.115L253.321,197.004z M246.086,205.93
c-1.439,1.332-4.031,4.752-5.147,7.02c-1.116,2.304-1.116,2.951-1.116,3.42c0,0.432,0.36,0.756,0.684,0.756
c0.54,0,2.375-0.648,4.859-3.203c2.808-2.881,3.852-5.04,4.392-6.947c0.432-1.512-0.036-2.592-0.936-2.592
C247.994,204.383,247.022,205.066,246.086,205.93z"/>
<path fill="#FFFBEA" d="M267.253,205.463c0,2.735-3.563,4.535-8.747,5.975c-0.252,0.611-0.504,1.764-0.504,3.203
c0,1.225,0.756,2.053,1.729,2.053c1.295,0,2.195-0.721,3.779-2.088c0.324,0,0.539,0.287,0.468,0.611
c-2.196,2.7-4.247,3.275-5.759,3.275c-2.16,0-2.916-2.016-2.916-3.779c0-2.268,1.439-6.658,5.363-9.683
c1.871-1.439,3.275-1.728,4.319-1.728C266.426,203.303,267.253,204.526,267.253,205.463z M261.529,206.146
c-1.403,1.512-2.231,3.168-2.663,4.211c2.376-0.72,3.491-1.403,4.823-2.664c1.115-1.043,1.404-2.123,1.404-2.447
c0-0.359-0.18-0.828-0.828-0.828C263.762,204.418,262.826,204.742,261.529,206.146z"/>
<path fill="#FFFBEA" d="M279.602,215.648c-0.287,0.828-0.252,1.188,0.145,1.188c0.792,0,2.484-1.764,4.14-3.636
c0.36-0.035,0.575,0.145,0.575,0.504c-0.936,1.8-3.203,4.787-6.19,4.787c-1.08,0-1.403-0.504-1.403-1.079
c0-0.576,0.18-1.224,0.791-3.06l5.724-17.026c0.864-2.52,0.504-2.88-0.036-3.132l-0.648-0.287c-0.18-0.145-0.18-0.469,0-0.576
c0.648-0.252,2.881-0.936,4.536-1.08l0.18,0.216c-0.468,1.296-0.827,2.304-2.124,6.191L279.602,215.648z"/>
<path fill="#FFFBEA" d="M298.5,202.475c0.612-0.288,1.549,0.072,1.764,0.54c-0.539,1.332-3.671,9.286-4.822,12.563
c-0.217,0.612-0.037,0.827,0.252,0.827c0.611,0,1.655-0.611,3.707-2.411c0.252,0,0.504,0.181,0.504,0.468
c-1.512,2.016-4.067,4.031-6.047,4.031c-0.828,0-1.045-0.684-1.045-0.971c0-0.252,0.072-0.576,0.361-1.404l1.188-3.24l-0.108-0.035
c-2.556,3.167-6.228,5.65-7.919,5.65c-1.008,0-1.584-1.008-1.584-2.016c0-0.828,0.792-3.707,3.168-6.982
c1.728-2.376,3.275-3.816,4.751-4.644c1.404-0.792,2.304-1.044,3.239-1.044c0.396,0,0.648,0.107,0.864,0.216
c0.144,0.072,0.54,0.396,0.72,0.756L298.5,202.475z M292.237,206.578c-2.304,2.052-4.499,6.768-4.499,9.322
c0,0.433,0.215,0.685,0.539,0.685c0.36,0,1.44-0.468,3.492-2.34c2.735-2.556,4.247-5.651,4.823-7.774
c-0.252-0.685-0.864-1.297-1.8-1.297C293.93,205.174,293.354,205.57,292.237,206.578z"/>
<path fill="#FFFBEA" d="M317.437,200.387c0.647-2.088,1.188-3.635,1.188-4.283c0-0.504-0.324-0.684-0.937-0.792l-1.44-0.288
c-0.287-0.252-0.18-0.791,0.181-0.9c1.116,0.109,2.268,0.109,3.671,0.109h2.232v0.504c0,0.396,0.359,1.727,1.764,5.219l3.636,8.963
c0.72,1.728,1.331,3.275,1.764,4.067c0.252,0,0.433-0.433,0.612-1.008l2.844-9.034c1.08-3.42,1.727-5.977,1.727-6.66
c0-0.647-0.071-0.899-0.899-1.043l-1.403-0.217c-0.217-0.324-0.072-0.756,0.216-0.9c1.26,0.072,2.735,0.109,4.067,0.109
c1.367,0,2.375-0.037,3.42-0.109c0.18,0.145,0.252,0.685,0.035,0.9l-0.828,0.145c-0.827,0.144-1.547,0.324-1.871,0.647
c-0.504,0.504-1.836,3.743-2.951,7.235l-2.592,8.063c-1.225,3.816-1.548,4.968-2.195,7.199c-0.217,0.217-0.721,0.252-1.009,0.217
c-0.468-1.44-0.899-2.809-3.275-8.567l-2.844-6.911c-0.972-2.376-1.835-4.752-2.411-5.939c-0.181,0-0.541,1.188-1.152,3.168
l-2.808,9.358c-0.756,2.483-1.368,5.363-1.512,5.976c-0.288,1.188,0.54,1.332,1.764,1.476l0.828,0.108
c0.216,0.216,0.144,0.72-0.108,0.899c-1.08-0.071-2.447-0.108-4.104-0.108c-1.295,0-2.664,0.037-3.779,0.108
c-0.216-0.144-0.359-0.647-0.072-0.899l0.9-0.108c0.432-0.036,1.26-0.216,1.764-0.612c0.611-0.468,1.332-2.303,2.735-6.875
L317.437,200.387z"/>
<path fill="#FFFBEA" d="M339.9,214.893c-0.323,0.864-0.144,1.225,0.252,1.225c0.541,0,1.98-1.152,3.852-2.988
c3.275-3.239,5.148-7.414,6.336-9.61c0.756-0.144,1.619,0.216,1.764,0.647c-0.359,0.973-2.699,6.875-4.211,11.159
c-0.181,0.468-0.217,0.899,0.144,0.899c0.684,0,2.591-1.691,3.527-2.807c0.323-0.072,0.612,0.071,0.647,0.504
c-0.936,1.727-4.391,4.57-6.299,4.57c-0.576,0-1.115-0.684-0.9-1.26l2.448-6.587l-0.071-0.036c-2.592,3.275-7.056,7.883-9,7.883
c-1.476,0-1.655-1.475-1.043-3.059l3.311-8.748c0.252-0.684,0.289-1.043,0-1.043c-0.684,0-2.555,1.584-3.419,2.483
c-0.36,0.072-0.647-0.216-0.612-0.54c0.936-1.439,4.535-4.283,6.228-4.283c0.468,0,1.296,0.468,1.08,1.08L339.9,214.893z"/>
<path fill="#FFFBEA" d="M358.836,206.29c0.18-0.396,0.18-0.684-0.072-0.684s-1.188,0.432-2.986,1.907
c-0.324-0.035-0.541-0.324-0.469-0.611c1.98-2.268,4.752-3.6,5.939-3.6c0.252,0,0.432,0.216,0.576,0.359
c0.216,0.217,0.216,0.541-0.217,1.584l-4.283,10.223c-0.144,0.36-0.18,0.792,0.108,0.792c0.612,0,2.52-1.26,3.743-2.663
c0.36,0.035,0.54,0.287,0.54,0.611c-0.54,1.044-4.247,4.283-6.731,4.283c-0.18,0-0.396-0.107-0.576-0.323
c-0.215-0.252-0.323-0.576-0.144-0.972L358.836,206.29z M363.119,197.256c0,1.115-0.791,2.231-1.871,2.231
c-0.936,0-1.26-0.72-1.26-1.332c0-0.792,0.504-2.268,1.908-2.268C362.724,195.888,363.119,196.463,363.119,197.256z"/>
<path fill="#FFFBEA" d="M370.717,205.211l-3.348,9.79c-0.217,0.685-0.037,0.899,0.252,0.899c0.539,0,2.915-1.871,4.104-3.238
c0.359,0,0.576,0.215,0.504,0.647c-2.016,2.987-5.4,5.183-6.912,5.183c-0.504,0-0.971-0.539-0.971-0.971
c0-0.469,0.144-0.973,0.504-2.053l3.491-10.258h-2.808c-0.072-0.36,0.035-0.864,0.396-1.008l2.88-0.504l2.016-3.564
c0.359-0.216,1.08-0.144,1.368,0.217l-1.044,3.527h3.924c0.252,0.359,0.035,1.08-0.433,1.332H370.717z"/>
</g>
<path fill="#FFFBEA" d="M43.319,181.181c12.996,0,23.569,10.574,23.569,23.571s-10.573,23.57-23.569,23.57
c-12.997,0-23.57-10.573-23.57-23.57S30.322,181.181,43.319,181.181 M43.319,179.181c-14.123,0-25.57,11.448-25.57,25.571
c0,14.121,11.447,25.57,25.57,25.57c14.12,0,25.569-11.449,25.569-25.57C68.888,190.629,57.439,179.181,43.319,179.181
L43.319,179.181z"/>
<path fill="#FFFBEA" d="M459.984,181.181c12.998,0,23.572,10.574,23.572,23.571s-10.574,23.57-23.572,23.57
c-12.997,0-23.57-10.573-23.57-23.57S446.987,181.181,459.984,181.181 M459.984,179.181c-14.123,0-25.57,11.448-25.57,25.571
c0,14.121,11.447,25.57,25.57,25.57c14.121,0,25.572-11.449,25.572-25.57C485.557,190.629,474.105,179.181,459.984,179.181
L459.984,179.181z"/>
<path fill="#FFFBEA" d="M463.299,204.752c0-9.16-2.119-17.821-5.885-25.532c0.461-0.024,0.926-0.039,1.395-0.039
c14.121,0,25.572,11.448,25.572,25.571c0,14.121-11.451,25.57-25.572,25.57c-0.469,0-0.934-0.016-1.395-0.039
C461.18,222.572,463.299,213.91,463.299,204.752z"/>
<g>
<line fill="none" stroke="#FFFBEA" stroke-width="1.9451" stroke-miterlimit="10" x1="43.319" y1="176.091" x2="43.319" y2="179.217"/>
<line fill="none" stroke="#FFFBEA" stroke-width="1.9451" stroke-miterlimit="10" x1="43.319" y1="230.232" x2="43.319" y2="233.357"/>
<line fill="none" stroke="#FFFBEA" stroke-width="2" stroke-miterlimit="10" x1="22.977" y1="184.186" x2="25.313" y2="186.522"/>
<line fill="none" stroke="#FFFBEA" stroke-width="1.9451" stroke-miterlimit="10" x1="25.375" y1="222.621" x2="23.167" y2="224.832"/>
<line fill="none" stroke="#FFFBEA" stroke-width="2" stroke-miterlimit="10" x1="17.184" y1="215.949" x2="20.237" y2="214.686"/>
<line fill="none" stroke="#FFFBEA" stroke-width="1.9451" stroke-miterlimit="10" x1="32.893" y1="178.42" x2="34.09" y2="181.309"/>
<line fill="none" stroke="#FFFBEA" stroke-width="2" stroke-miterlimit="10" x1="17.198" y1="193.684" x2="20.25" y2="194.949"/>
<line fill="none" stroke="#FFFBEA" stroke-width="1.9451" stroke-miterlimit="10" x1="34.124" y1="228.275" x2="32.926" y2="231.164"/>
<line fill="none" stroke="#FFFBEA" stroke-width="1.9451" stroke-miterlimit="10" x1="54.124" y1="178.42" x2="52.926" y2="181.309"/>
<line fill="none" stroke="#FFFBEA" stroke-width="1.9451" stroke-miterlimit="10" x1="52.893" y1="228.275" x2="54.09" y2="231.164"/>
<line fill="none" stroke="#FFFBEA" stroke-width="2" stroke-miterlimit="10" x1="14.444" y1="204.752" x2="17.749" y2="204.752"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

10
img/icons/email.svg Normal file
View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg version="1.1" baseProfile="tiny" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px"
viewBox="0 0 24 24" xml:space="preserve">
<path fill="#FFFBEA" d="M20,4H4C2.9,4,2.01,4.9,2.01,6L2,18c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,8l-8,5
L4,8V6l8,5l8-5V8z"/>
<path fill="none" d="M0,0h24v24H0V0z"/>
</svg>

After

Width:  |  Height:  |  Size: 658 B

23
img/icons/facebook.svg Normal file
View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg version="1.1" baseProfile="tiny" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px"
viewBox="0 0 24 24" xml:space="preserve">
<path display="none" fill="none" d="M0,0h24v24H0V0z"/>
<path display="none" fill="#FFDFA6" d="M20,12c0-1.1,0.9-2,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12
c0,1.1-0.89,2-2,2v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-4C20.9,14,20,13.1,20,12z M15.58,16.8L12,14.5l-3.58,2.3l1.08-4.12
L6.21,9.99l4.24-0.25L12,5.8l1.54,3.95L17.779,10l-3.289,2.689L15.58,16.8z"/>
<path fill-rule="evenodd" fill="#FFDFA6" d="M2.779,2.792c6.147,0,12.294,0,18.441,0c-0.013,0.176-0.032,0.351-0.032,0.527
c0,5.804-0.003,11.606,0.009,17.41c0,0.381-0.103,0.485-0.481,0.479c-1.555-0.022-3.112-0.007-4.669-0.01
c-0.144,0-0.287-0.016-0.448-0.022c-0.01-0.166-0.018-0.284-0.018-0.408c-0.004-2.06,0.005-4.122-0.013-6.185
c-0.004-0.374,0.122-0.466,0.472-0.453c0.623,0.025,1.25,0.006,1.905,0.006c0.127-1.009,0.252-1.973,0.386-3.004
c-0.956,0-1.832,0-2.75,0c0-0.699-0.01-1.334,0.001-1.976c0.007-0.575,0.374-0.929,0.956-0.936c0.494-0.003,0.983-0.006,1.478,0.003
c0.252,0.007,0.368-0.063,0.362-0.345c-0.015-0.68-0.015-1.363,0-2.046c0.006-0.265-0.085-0.364-0.352-0.361
c-0.763,0.016-1.531-0.025-2.294,0.016c-1.901,0.099-3.063,1.539-3.145,2.924c-0.047,0.789-0.047,1.581-0.053,2.369
c0,0.259-0.075,0.367-0.352,0.357c-0.561-0.019-1.121,0.003-1.678-0.009c-0.252-0.003-0.378,0.067-0.374,0.348
c0.013,0.778,0.009,1.555,0,2.334c-0.001,0.249,0.089,0.338,0.335,0.332c0.533-0.013,1.065,0.016,1.598-0.013
c0.35-0.017,0.479,0.083,0.476,0.456c-0.018,2.05-0.018,4.097,0,6.146c0,0.377-0.116,0.476-0.49,0.476
c-2.91-0.013-5.816-0.02-8.726,0C2.912,21.211,2.8,21.105,2.803,20.69C2.817,14.899,2.811,9.11,2.811,3.319
C2.811,3.143,2.792,2.968,2.779,2.792z"/>
</svg>

After

Width:  |  Height:  |  Size: 2 KiB

10
img/icons/location.svg Normal file
View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Basic//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-basic.dtd">
<svg version="1.1" baseProfile="basic" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px"
viewBox="0 0 24 24" xml:space="preserve">
<path fill="none" d="M0,0h24v24H0V0z"/>
<path fill="#FFFBEA" d="M12,2C8.13,2,5,5.13,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.13,15.87,2,12,2z M12,11.5
c-1.38,0-2.5-1.12-2.5-2.5s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S13.38,11.5,12,11.5z"/>
</svg>

After

Width:  |  Height:  |  Size: 704 B

17
img/icons/ratp/bus-21.svg Normal file
View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
<g>
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
<g>
<path d="M22.204,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232c3.979-3.471,8.296-7.789,8.296-13.545
c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296c5.756-4.995,11.09-7.365,19.132-7.365
c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587c-3.047,2.794-9.058,8.043-9.82,11.514h24.635v9.989
H22.204z"/>
<path d="M80.948,68.378V21.394c-3.64,2.878-9.396,5.671-13.376,7.45l-4.063-9.143c6.264-2.624,13.799-6.603,19.725-11.09h10.412
v59.767H80.948z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

17
img/icons/ratp/bus-27.svg Normal file
View file

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
<g>
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#FF5A00;" width="120" height="77"/>
<g>
<path d="M19.694,68.378v-7.873c1.524-6.941,8.381-13.291,16.338-20.232c3.979-3.471,8.296-7.789,8.296-13.545
c0-5.164-3.386-9.481-9.905-9.481c-5.249,0-8.889,3.809-10.328,5.418l-6.264-8.296c5.756-4.995,11.09-7.365,19.132-7.365
c10.498,0,20.402,6.095,20.402,18.286c0,10.243-6.519,15.068-13.714,21.587c-3.048,2.794-9.058,8.043-9.82,11.514h24.635v9.989
H19.694z"/>
<path d="M81.512,68.378H67.881c0-7.873,2.117-12.952,7.365-22.688l14.562-27.09H60.771v-9.99h41.819v9.735
C89.469,41.119,81.512,58.981,81.512,68.378z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Premier_plan" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" width="92px" height="92px" viewBox="0 0 92 92" style="enable-background:new 0 0 92 92;" xml:space="preserve">
<g>
<g>
<circle style="fill-rule:evenodd;clip-rule:evenodd;fill:#FF82B4;" cx="46" cy="46" r="46"/>
<path style="fill-rule:evenodd;clip-rule:evenodd;" d="M64.83,29.471v-8.274H29.286v8.49h24.679L41.589,52.712
c-4.461,8.274-6.26,12.592-6.26,19.283h11.584C46.914,64.009,53.678,48.826,64.83,29.471z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 808 B

View file

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="120px" height="77px" viewBox="0 0 120 77" enable-background="new 0 0 120 77" xml:space="preserve">
<rect fill-rule="evenodd" clip-rule="evenodd" fill="#3C91DC" width="120" height="77"/>
<rect fill-rule="evenodd" clip-rule="evenodd" fill="#0A0082" width="120" height="68.75"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M34.341,38.708V8.516h-6.154v20.402h-0.085
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.516h-6.11v30.192h6.196V19.081h0.086
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
<g>
<g>
<path fill="#FFFFFF" d="M52.421,62.018V34.909c-2.101,1.661-5.422,3.272-7.717,4.298l-2.345-5.275
c3.614-1.514,7.961-3.809,11.38-6.398h6.008v34.484H52.421z"/>
<path fill="#FFFFFF" d="M65.314,62.018v-4.543c0.879-4.005,4.836-7.668,9.428-11.674c2.295-2.002,4.786-4.493,4.786-7.814
c0-2.979-1.954-5.471-5.715-5.471c-3.028,0-5.128,2.198-5.959,3.126l-3.614-4.786c3.321-2.882,6.398-4.25,11.039-4.25
c6.057,0,11.771,3.517,11.771,10.551c0,5.91-3.761,8.693-7.913,12.455c-1.758,1.611-5.226,4.64-5.665,6.643h14.214v5.764H65.314z"
/>
<path fill="#FFFFFF" d="M92.666,62.018v-4.543c0.879-4.005,4.836-7.668,9.427-11.674c2.296-2.002,4.786-4.493,4.786-7.814
c0-2.979-1.953-5.471-5.715-5.471c-3.027,0-5.128,2.198-5.959,3.126l-3.613-4.786c3.32-2.882,6.398-4.25,11.038-4.25
c6.057,0,11.771,3.517,11.771,10.551c0,5.91-3.761,8.693-7.913,12.455c-1.758,1.611-5.227,4.64-5.666,6.643h14.214v5.764H92.666z"
/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
<g>
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#0A0082;" width="120" height="68.75"/>
</g>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.341,38.708V8.517h-6.154v20.402h-0.085
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.517h-6.11v30.191h6.196V19.082h0.086
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
<g>
<path style="fill:#FFFFFF;" d="M62.141,61.902V28.07c-2.621,2.072-6.767,4.084-9.632,5.364l-2.926-6.583
c4.511-1.89,9.937-4.755,14.203-7.986h7.498v43.037H62.141z"/>
<path style="fill:#FFFFFF;" d="M105.894,52.941v8.961h-8.534v-8.961H77.975v-7.986l16.702-26.09h11.217v27.371h5.06v6.705H105.894z
M97.359,26.424h-0.122c-0.183,0.731-1.402,3.353-3.109,6.035l-8.777,13.777h12.009V26.424z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Calque_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="120px" height="77px" viewBox="0 0 120 77" style="enable-background:new 0 0 120 77;" xml:space="preserve">
<g>
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#82DC73;" width="120" height="77"/>
<rect style="fill-rule:evenodd;clip-rule:evenodd;fill:#0A0082;" width="120" height="68.75"/>
</g>
<path style="fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;" d="M34.341,38.708V8.517h-6.154v20.402h-0.085
c-0.089-0.373-0.371-0.975-0.845-1.807c-0.475-0.832-1.12-1.841-1.937-3.026L14.623,8.517h-6.11v30.191h6.196V19.082h0.086
c0.124,0.36,0.399,0.954,0.823,1.78c0.424,0.826,1.02,1.772,1.786,2.838l10.868,15.008H34.341z"/>
<g>
<path style="fill:#FFFFFF;" d="M48.023,61.902v-5.669c1.097-4.999,6.034-9.571,11.765-14.569c2.865-2.5,5.974-5.608,5.974-9.753
c0-3.719-2.438-6.828-7.132-6.828c-3.779,0-6.4,2.743-7.438,3.901l-4.511-5.974c4.146-3.597,7.986-5.304,13.777-5.304
c7.559,0,14.69,4.389,14.69,13.167c0,7.376-4.693,10.85-9.875,15.544c-2.194,2.012-6.522,5.791-7.071,8.29h17.739v7.193H48.023z"/>
<path style="fill:#FFFFFF;" d="M92.056,61.902V28.07c-2.621,2.072-6.767,4.084-9.632,5.364l-2.926-6.583
c4.511-1.89,9.937-4.755,14.203-7.986h7.498v43.037H92.056z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

20
img/icons/ratp/rer-B.svg Normal file
View file

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg version="1.1" baseProfile="tiny" id="Premier_plan"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="92px" height="92px"
viewBox="0 0 92 92" xml:space="preserve">
<g>
<g>
<path fill="#FFFFFF" d="M46,5.333c-22.412,0-40.655,18.208-40.655,40.752c0,22.372,18.242,40.581,40.655,40.581
s40.654-18.209,40.654-40.581C86.654,23.542,68.412,5.333,46,5.333z"/>
<path fill="#3C91DC" d="M46,92C20.575,92,0,71.463,0,46.083C0,20.537,20.575,0,46,0c25.426,0,46,20.537,46,46.083
C92,71.463,71.426,92,46,92z M46,6.846c-21.578,0-39.142,17.531-39.142,39.237c0,21.54,17.563,39.071,39.142,39.071
s39.143-17.531,39.143-39.071C85.143,24.377,67.578,6.846,46,6.846z"/>
<path fill="#3C91DC" d="M62.917,55.029c0-6.084-3.778-9.61-8.286-10.219v-0.121c3.352-0.608,6.885-3.954,6.885-8.394
c0-9.306-8.592-10.888-15.599-10.888H29.831v42.94h15.416C53.412,68.35,62.917,65.855,62.917,55.029z M52.438,37.573
c0,4.927-5.059,4.865-8.288,4.865h-4.753v-9.853h4.631C47.137,32.586,52.438,32.464,52.438,37.573z M53.352,54.785
c0,5.597-3.961,6.447-8.41,6.447h-5.545V49.251h5.058C47.563,49.251,53.352,49.434,53.352,54.785z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

11
img/icons/ticket.svg Normal file
View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg version="1.1" baseProfile="tiny" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px" height="24px"
viewBox="0 0 24 24" xml:space="preserve">
<path fill="none" d="M0,0h24v24H0V0z"/>
<path fill="#FFDFA6" d="M20,12c0-1.1,0.9-2,2-2V6c0-1.1-0.9-2-2-2H4C2.9,4,2.01,4.9,2.01,6v4C3.11,10,4,10.9,4,12c0,1.1-0.89,2-2,2
v4c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2v-4C20.9,14,20,13.1,20,12z M15.58,16.8L12,14.5l-3.58,2.3l1.08-4.12L6.21,9.99l4.24-0.25
L12,5.8l1.54,3.95L17.779,10l-3.289,2.689L15.58,16.8z"/>
</svg>

After

Width:  |  Height:  |  Size: 819 B

BIN
img/sponsors/a-ulm.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
img/sponsors/cof.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
img/sponsors/ens.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
img/sponsors/mgen.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 156 KiB

140
img/sponsors/soge.svg Normal file
View file

@ -0,0 +1,140 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 12.0.0, SVG Export Plug-In -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="279.25647"
height="55.980793"
viewBox="-0.294 -0.317 279.25647 55.980793"
enable-background="new -0.294 -0.317 146 29"
xml:space="preserve"
id="svg2"
inkscape:version="0.48.1 "
sodipodi:docname="AJAX.svg"><metadata
id="metadata44"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1280"
inkscape:window-height="1004"
id="namedview42"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="2.5017672"
inkscape:cx="194.47602"
inkscape:cy="-36.36577"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<defs
id="defs4">
</defs>
<path
d="M 90.665874,5.9452181 C 87.731747,4.6694713 84.591479,3.8380636 81.796063,3.8380636 c -4.086201,0 -6.126412,0.8965775 -6.126412,2.5139715 0,4.6270509 18.223185,0.9104013 18.223185,10.7846029 0,4.087919 -3.743276,7.243713 -11.243314,7.243713 -4.448391,0 -7.925804,-0.941998 -11.917604,-3.155794 l 1.647195,-3.683077 c 3.500532,1.992614 6.767951,2.877342 10.297381,2.877342 4.446465,0 6.831527,-1.315244 6.831527,-3.282184 0,-5.061516 -18.230891,-1.283647 -18.230891,-10.535773 0,-3.9911519 3.714378,-6.73617974 10.430312,-6.73617974 4.018772,0 7.397931,0.90447679 10.628746,2.56136764 l -1.670314,3.5191652"
id="path6"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 110.98128,24.502791 c -7.27848,0 -13.314343,-4.970672 -13.314343,-12.396071 0,-7.3404815 6.035863,-12.40594647 13.314343,-12.40594647 7.32087,0 13.26041,5.06546497 13.26041,12.40594647 0,7.427374 -5.93954,12.396071 -13.26041,12.396071 m 0,-20.8009913 c -5.29992,0 -8.92183,3.6791272 -8.92183,8.4049203 0,4.836383 3.46393,8.434542 8.92183,8.434542 5.42515,0 8.87174,-3.631731 8.87174,-8.434542 0,-4.7257931 -3.44659,-8.4049203 -8.87174,-8.4049203"
id="path8"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 141.6326,24.475144 c -7.6503,0 -13.41067,-4.962774 -13.41067,-12.398047 0,-7.3088837 5.85091,-12.37632347 13.41067,-12.37632347 4.50812,0 7.73893,1.31326877 10.63453,3.49941677 l -2.25406,3.4362218 c -2.10764,-1.6588657 -4.74508,-2.8694427 -8.25717,-2.8694427 -5.5812,0 -9.04898,3.6139575 -9.04898,8.3081526 0,4.834409 3.50054,8.3437 9.10485,8.3437 3.50439,0 6.28439,-1.159231 8.37855,-2.820072 l 2.26369,3.440172 c -2.90331,2.188123 -6.31329,3.436222 -10.82141,3.436222"
id="path10"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
style="fill:#000000"
d="m 157.07193,0.41961535 4.24803,0 0,23.42752865 -4.24803,0 z"
id="rect12"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 167.58894,23.847144 0,-23.42752865 20.81053,0 0,3.87463635 -16.56828,0 0,5.6914893 12.87702,0 0,3.864763 -12.87702,0 0,6.123979 17.29844,0 0,3.872661 -21.54069,0"
id="polyline14"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 204.94271,4.2685788 0,19.5785652 -4.22876,0 0,-19.5785652 -9.3187,0 0,-3.84896345 22.85845,0 0,3.84896345 -9.31099,0"
id="polyline16"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 217.66176,23.847144 0,-23.42752865 20.81053,0 0,3.87463635 -16.56828,0 0,5.6914893 12.88666,0 0,3.864763 -12.88666,0 0,6.123979 17.29844,0 0,3.872661 -21.54069,0"
id="polyline18"
inkscape:connector-curvature="0" />
<path
d="m 83.799669,51.571925 c 2.323413,0 4.720034,-0.535181 6.52328,-1.413985 v -6.809249 h 4.118952 v 9.094139 c -2.899449,1.998538 -6.88547,3.217014 -10.823327,3.217014 -7.638749,0 -13.401044,-4.960798 -13.401044,-12.400021 0,-7.308883 5.84899,-12.364474 13.401044,-12.364474 4.423346,0 7.742783,1.279696 10.642232,3.465844 l -2.25213,3.438197 c -2.11342,-1.656891 -4.762419,-2.788474 -8.272583,-2.788474 -5.57542,-0.118491 -9.039347,3.570511 -9.039347,8.248907 0,4.848233 3.504385,8.312102 9.102923,8.312102"
id="path20"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
style="fill:#000000"
d="m 100.0231,55.031845 0,-23.419629 20.81438,0 0,3.868712 -16.58562,0 0,5.689514 12.89436,0 0,3.868712 -12.89436,0 0,6.123979 17.31193,0 0,3.868712 -21.54069,0"
id="polyline22"
inkscape:connector-curvature="0" />
<path
d="m 129.8749,55.031845 h -4.14592 V 31.612216 h 4.32509 l 14.90182,17.651121 0.10211,-0.0316 c -0.25045,-4.437466 -0.2832,-8.0297 -0.2832,-11.503444 v -6.11608 h 4.14207 v 23.419629 h -4.29042 l -14.84787,-17.647171 -0.0674,0.03555 c 0.16375,3.467819 0.16375,9.524654 0.16375,11.495544 v 6.11608"
id="path24"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
style="fill:#000000"
d="m 154.88338,55.031845 0,-23.419629 20.80668,0 0,3.868712 -16.57792,0 0,5.689514 12.89051,0 0,3.868712 -12.89051,0 0,6.123979 17.31771,0 0,3.868712 -21.54647,0"
id="polyline26"
inkscape:connector-curvature="0" />
<path
d="m 191.96936,46.415618 h -6.82767 v 8.616227 h -4.2384 V 31.612216 h 14.68605 c 4.87223,0 7.89498,3.064952 7.89498,7.46687 0,4.180737 -2.96881,6.676935 -6.55411,7.210142 l 6.8007,8.742617 h -5.30763 l -6.45392,-8.616227 m 3.16724,-3.902285 c 2.649,0 4.14785,-1.406086 4.14785,-3.432272 0,-2.221695 -1.31583,-3.598158 -3.69511,-3.598158 h -10.44765 v 7.032405 h 9.99491 z"
id="path28"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
d="m 212.41385,49.34628 -2.6201,5.685565 h -4.58518 l 11.13351,-23.419629 h 4.45224 l 11.14699,23.419629 h -4.56784 l -2.62973,-5.685565 h -12.32989 m 1.76472,-3.803542 h 8.80238 l -4.38674,-9.491081 -4.41564,9.491081 z"
id="path30"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
style="fill:#000000"
d="m 235.05846,55.031845 0,-23.419629 4.23261,0 0,19.550917 15.25824,0 0,3.868712 -19.49085,0"
id="polyline32"
inkscape:connector-curvature="0" />
<path
style="fill:#000000"
d="m 257.41215,55.031845 0,-23.419629 20.82402,0 0,3.868712 -16.58369,0 0,5.689514 12.89051,0 0,3.868712 -12.89051,0 0,6.123979 17.31,0 0,3.868712 -21.55033,0"
id="polyline34"
inkscape:connector-curvature="0" />
<path
style="fill:#ed1a3a;fill-rule:evenodd"
d="m -0.294,-0.31700003 54.611758,0 0,28.55026403 -54.611758,0 z"
id="rect36"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-rule:evenodd"
d="m -0.294,27.674385 54.611758,0 0,27.989409 -54.611758,0 z"
id="rect38"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#ffffff;stroke-width:1.72500002;stroke-miterlimit:10"
d="m 9.2481751,27.672409 35.5293339,0"
id="line40"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 7.3 KiB

46
img/sponsors/soge2.svg Normal file
View file

@ -0,0 +1,46 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
<svg version="1.1" baseProfile="tiny" id="Calque_1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="132.762px"
height="31.561px" viewBox="0 0 132.762 31.561" xml:space="preserve">
<rect x="3.525" y="3.244" fill="#FFFFFF" width="25.211" height="25.206"/>
<rect x="4.112" y="3.833" fill="#EC1A3A" width="24.033" height="12.015"/>
<rect x="4.112" y="15.848" fill="#231F20" width="24.033" height="12.015"/>
<rect x="8.304" y="15.117" fill="#FFFFFF" width="15.634" height="1.459"/>
<path fill="#FFFFFF" d="M44.036,6.519c-1.291-0.55-2.671-0.908-3.902-0.908c-1.799,0-2.697,0.387-2.697,1.081
c0,1.988,8.019,0.392,8.019,4.629c0,1.756-1.648,3.112-4.947,3.112c-1.959,0-3.488-0.404-5.244-1.356l0.725-1.581
c1.541,0.855,2.978,1.235,4.533,1.235c1.954,0,3.003-0.565,3.003-1.41c0-2.174-8.021-0.55-8.021-4.521
c0-1.715,1.635-2.895,4.589-2.895c1.769,0,3.257,0.388,4.679,1.102L44.036,6.519"/>
<path fill="#FFFFFF" d="M52.732,14.484c-3.202,0-5.859-2.132-5.859-5.321c0-3.15,2.657-5.323,5.859-5.323
c3.221,0,5.835,2.173,5.835,5.323C58.567,12.352,55.953,14.484,52.732,14.484 M52.732,5.555c-2.331,0-3.926,1.581-3.926,3.607
c0,2.078,1.524,3.62,3.926,3.62c2.388,0,3.903-1.558,3.903-3.62C56.635,7.136,55.12,5.555,52.732,5.555"/>
<path fill="#FFFFFF" d="M66.138,14.473c-3.366,0-5.901-2.132-5.901-5.325c0-3.136,2.576-5.31,5.901-5.31
c1.984,0,3.407,0.563,4.682,1.502l-0.992,1.475c-0.928-0.712-2.09-1.233-3.635-1.233c-2.456,0-3.981,1.555-3.981,3.566
c0,2.077,1.541,3.583,4.007,3.583c1.543,0,2.766-0.5,3.688-1.211l0.994,1.479C69.625,13.936,68.122,14.473,66.138,14.473"/>
<rect x="73.177" y="4.146" fill="#FFFFFF" width="1.871" height="10.058"/>
<polyline fill="#FFFFFF" points="78.05,14.204 78.05,4.146 87.208,4.146 87.208,5.809 79.915,5.809 79.915,8.25 85.583,8.25
85.583,9.912 79.915,9.912 79.915,12.541 87.53,12.541 87.53,14.204 78.05,14.204 "/>
<polyline fill="#FFFFFF" points="94.489,5.798 94.489,14.204 92.627,14.204 92.627,5.798 88.524,5.798 88.524,4.145 98.583,4.145
98.583,5.798 94.489,5.798 "/>
<polyline fill="#FFFFFF" points="100.327,14.204 100.327,4.146 109.485,4.146 109.485,5.809 102.194,5.809 102.194,8.25
107.864,8.25 107.864,9.912 102.194,9.912 102.194,12.541 109.807,12.541 109.807,14.204 100.327,14.204 "/>
<path fill="#FFFFFF" d="M41.017,26.107c1.02,0,2.076-0.232,2.869-0.608v-2.922h1.812v3.903c-1.275,0.856-3.029,1.382-4.761,1.382
c-3.364,0-5.9-2.132-5.9-5.325c0-3.138,2.576-5.307,5.9-5.307c1.946,0,3.406,0.546,4.682,1.485l-0.991,1.479
c-0.929-0.713-2.096-1.199-3.64-1.199c-2.452-0.049-3.979,1.533-3.979,3.542C37.009,24.617,38.55,26.107,41.017,26.107"/>
<polyline fill="#FFFFFF" points="47.992,27.592 47.992,17.537 57.152,17.537 57.152,19.199 49.853,19.199 49.853,21.64
55.527,21.64 55.527,23.301 49.853,23.301 49.853,25.93 57.47,25.93 57.47,27.592 47.992,27.592 "/>
<path fill="#FFFFFF" d="M61.291,27.592h-1.825V17.537h1.904l6.558,7.576l0.046-0.014c-0.111-1.902-0.125-3.445-0.125-4.938v-2.625
h1.821v10.056h-1.888l-6.536-7.576l-0.026,0.013c0.07,1.488,0.07,4.091,0.07,4.938V27.592"/>
<polyline fill="#FFFFFF" points="72.377,27.592 72.377,17.537 81.532,17.537 81.532,19.199 74.239,19.199 74.239,21.64
79.909,21.64 79.909,23.301 74.239,23.301 74.239,25.93 81.856,25.93 81.856,27.592 72.377,27.592 "/>
<path fill="#FFFFFF" d="M88.614,23.892H85.61v3.699h-1.863V17.536h6.461c2.144,0,3.475,1.317,3.475,3.205
c0,1.796-1.305,2.867-2.886,3.098l2.993,3.753h-2.334L88.614,23.892 M90.008,22.217c1.166,0,1.826-0.605,1.826-1.477
c0-0.953-0.58-1.543-1.626-1.543H85.61v3.02H90.008z"/>
<path fill="#FFFFFF" d="M97.612,25.151l-1.153,2.441h-2.017l4.898-10.056h1.959l4.904,10.056h-2.01l-1.154-2.441H97.612
M98.39,23.519h3.872l-1.931-4.079L98.39,23.519z"/>
<polyline fill="#FFFFFF" points="107.575,27.592 107.575,17.537 109.438,17.537 109.438,25.93 116.155,25.93 116.155,27.592
107.575,27.592 "/>
<polyline fill="#FFFFFF" points="117.415,27.592 117.415,17.537 126.575,17.537 126.575,19.199 119.282,19.199 119.282,21.64
124.952,21.64 124.952,23.301 119.282,23.301 119.282,25.93 126.896,25.93 126.896,27.592 117.415,27.592 "/>
</svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

530
index.html Normal file
View file

@ -0,0 +1,530 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0,">
<meta name="description" content="La Nuit &mdash; Gala 2018 de l'ENS">
<meta name="keywords" content="ENS Gala Nuit 2018 Ecole Normale Supérieure">
<title>La Nuit &mdash; Gala 2018 de l'ENS</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/tipso.css">
<link rel="stylesheet" href="css/calendar.css">
</head>
<body>
<header id="main-header">
<img id="main-header-title" src="img/header/title.svg" alt="Entre Chien et Loup &mdash; À l'Orée de la Nuit">
<img id="main-header-moon" src="img/header/moon.svg" alt="Lune">
<img id="main-header-clouds" src="img/header/clouds2.svg" alt="Nuages rosés">
<img id="main-header-background-city" src="img/header/background-city.svg" alt="Immeubles en arrière-plan">
</header>
<section>
<h2>Présentation</h2>
<div>
<p>Le <strong>1<sup>er</sup> décembre 2018</strong>, venez découvrir l'<strong>École Normale Supérieure</strong> sous un nouveau jour à l'occasion de son Gala traditionnel, la Nuit de la rue d'Ulm.</p>
<p>Avec le thème <strong>« Entre Chien et Loup &mdash; À lOrée de la Nuit »</strong>, nous avons cette année choisi de vous faire découvrir une École aux multiples visages, entre ombre et lumière, pour une <strong>soirée exceptionnelle</strong>. La nuit tombée, l'École se pare de ses plus beaux atours et vous réserve bien des surprises.
<p>Amateur&middot;trice&middot;s de <strong>musiques électroniques</strong>, de <strong>concerts</strong>, ou de <strong>danses</strong>, qu'il s'agisse de <strong>valse</strong>, de <strong>rock</strong>, de <strong>salsa</strong> ou de <strong>tango</strong>, vous trouverez votre bonheur entre <strong>sets de DJ et VJ</strong>, scènes présentant <strong>divers styles musicaux</strong>, et salles de <strong>danse libre</strong> et <strong>initiations.</strong></p>
<p>Du crépuscule à l'aube, du buffet aux dernières minutes de la soirée, la Nuit vous réservera bien des surprises, avec la performance d'un <strong>magicien</strong>, des <strong>expositions artistiques</strong>, et de nombreux spectacles : <strong>danses, comédie musicale, joutes oratoires, improvisation, fanfare, pompoms...</strong></p>
<a href="https://www.facebook.com/LaNuitGalaENS/" target="_blank">
<div class="button">
<img src="img/icons/facebook.svg" alt="Facebook">
<span>Page Facebook</span>
</div>
</a>
</div>
</section>
<section>
<h2>Programme</h2>
<p>Le buffet commencera à <strong>20h00</strong> et la soirée à <strong>21h00</strong>.</p>
<div id="cal-container">
<div class="cal-event">
<span class="cal-event-id">1</span>
<span class="cal-event-name">Discours d'ouverture</span>
<span class="cal-event-start-date">01/12/2018 21:55</span>
<span class="cal-event-end-date">01/12/2018 22:15</span>
<span class="cal-event-location">Courô</span>
<span class="cal-event-description">Discours d'ouverture de la soirée</span>
</div>
<div class="cal-event">
<span class="cal-event-id">2</span>
<span class="cal-event-name">Fanfare</span>
<span class="cal-event-start-date">01/12/2018 23:30</span>
<span class="cal-event-end-date">02/12/2018 00:15</span>
<span class="cal-event-location">Courô</span>
<span class="cal-event-description">Concert de l'Ernestophone</span>
</div>
<div class="cal-event">
<span class="cal-event-id">3</span>
<span class="cal-event-name">Buffet</span>
<span class="cal-event-start-date">01/12/2018 20:00</span>
<span class="cal-event-end-date">01/12/2018 22:00</span>
<span class="cal-event-location">Pôt</span>
<span class="cal-event-description">Cocktail dinatoire. Réservation obligatoire</span>
</div>
<div class="cal-event">
<span class="cal-event-id">4</span>
<span class="cal-event-name">Jean &amp; Victoria</span>
<span class="cal-event-start-date">01/12/2018 20:45</span>
<span class="cal-event-end-date">01/12/2018 21:45</span>
<span class="cal-event-location">Pôt</span>
<span class="cal-event-description">Concert durant le buffet.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">5</span>
<span class="cal-event-name">Vestiaires</span>
<span class="cal-event-start-date">01/12/2018 20:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Pôt</span>
<span class="cal-event-description">Vestiaires de l'évènement. Entrée par le couloir venant de l'amphithéâtre Dussane</span>
</div>
<div class="cal-event">
<span class="cal-event-id">6</span>
<span class="cal-event-name">Exposition Reflex</span>
<span class="cal-event-start-date">01/12/2018 20:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Petit Pôt</span>
<span class="cal-event-description">Exposition photographique du club Reflex</span>
</div>
<div class="cal-event">
<span class="cal-event-id">7</span>
<span class="cal-event-name">Prêt de plaids</span>
<span class="cal-event-start-date">01/12/2018 22:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Petit Pôt</span>
<span class="cal-event-description">Prêt de plaids. Une caution de 5 euros sera demandée. Utile pour braver le froid de l'hiver.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">8</span>
<span class="cal-event-name">Art Ôratoire</span>
<span class="cal-event-start-date">01/12/2018 22:15</span>
<span class="cal-event-end-date">01/12/2018 23:15</span>
<span class="cal-event-location">Dussane</span>
<span class="cal-event-description">Discours d'éloquence du club Art Ôratoire.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">9</span>
<span class="cal-event-name">Les N'improte quoi</span>
<span class="cal-event-start-date">01/12/2018 23:15</span>
<span class="cal-event-end-date">02/12/2018 00:45</span>
<span class="cal-event-location">Dussane</span>
<span class="cal-event-description">Cabaret d'improvisation de la troupe des N'improte quoi.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">10</span>
<span class="cal-event-name">Spectacle de danse</span>
<span class="cal-event-start-date">01/12/2018 22:15</span>
<span class="cal-event-end-date">01/12/2018 23:30</span>
<span class="cal-event-location">Gymnase</span>
<span class="cal-event-description">Démonstration de danse des clubs de l'ENS.</span>
</div>
<!--<div class="cal-event">
<span class="cal-event-id">11</span>
<span class="cal-event-name">Show Pompom</span>
<span class="cal-event-start-date">01/12/2018 23:15</span>
<span class="cal-event-end-date">01/12/2018 23:30</span>
<span class="cal-event-location">Gymnase</span>
<span class="cal-event-description">Show Pompom à la suite du spectacle de danse.</span>
</div>-->
<div class="cal-event">
<span class="cal-event-id">11</span>
<span class="cal-event-name">Danse libre rock</span>
<span class="cal-event-start-date">01/12/2018 23:45</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Gymnase</span>
<span class="cal-event-description">Danse libre rock 4 temps et rock 6 temps</span>
</div>
<div class="cal-event">
<span class="cal-event-id">12</span>
<span class="cal-event-name">Initiation rock 4 temps</span>
<span class="cal-event-start-date">01/12/2018 23:45</span>
<span class="cal-event-end-date">02/12/2018 00:30</span>
<span class="cal-event-location">Gymnase</span>
<span class="cal-event-description">Initiation au rock 4 temps</span>
</div>
<div class="cal-event">
<span class="cal-event-id">13</span>
<span class="cal-event-name">Initiation rock 6 temps</span>
<span class="cal-event-start-date">02/12/2018 00:30</span>
<span class="cal-event-end-date">02/12/2018 01:15</span>
<span class="cal-event-location">Gymnase</span>
<span class="cal-event-description">Initiation au rock 6 temps</span>
</div>
<div class="cal-event">
<span class="cal-event-id">14</span>
<span class="cal-event-name">Danse libre valse</span>
<span class="cal-event-start-date">01/12/2018 23:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Salle des Actes</span>
<span class="cal-event-description">Danse libre valse.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">15</span>
<span class="cal-event-name">Initiation valse</span>
<span class="cal-event-start-date">01/12/2018 23:15</span>
<span class="cal-event-end-date">01/12/2018 23:45</span>
<span class="cal-event-location">Salle des Actes</span>
<span class="cal-event-description">Initiation à la valse.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">16</span>
<span class="cal-event-name">Danse libre salsa</span>
<span class="cal-event-start-date">01/12/2018 23:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Salle Résistants</span>
<span class="cal-event-description">Danse libre salsa.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">17</span>
<span class="cal-event-name">Initiation salsa</span>
<span class="cal-event-start-date">01/12/2018 23:45</span>
<span class="cal-event-end-date">02/12/2018 00:15</span>
<span class="cal-event-location">Salle Résistants</span>
<span class="cal-event-description">Initiation à la salsa.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">18</span>
<span class="cal-event-name">Danse libre tango</span>
<span class="cal-event-start-date">01/12/2018 23:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Salle Cavaillès</span>
<span class="cal-event-description">Danse libre tango.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">19</span>
<span class="cal-event-name">Initiation tango</span>
<span class="cal-event-start-date">02/12/2018 00:15</span>
<span class="cal-event-end-date">02/12/2018 00:45</span>
<span class="cal-event-location">Salle Cavaillès</span>
<span class="cal-event-description">Initiation au tango.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">20</span>
<span class="cal-event-name">Contes et légendes d'après la Nuit</span>
<span class="cal-event-start-date">02/12/2018 02:30</span>
<span class="cal-event-end-date">02/12/2018 03:30</span>
<span class="cal-event-location">Salle Celan</span>
<span class="cal-event-description">Il y a plusieurs centaines d'années, sur ces terres, vivaient des hommes et des femmes qui avaient bâti une civilisation très avancée. Ils avaient construit d'immenses immeubles, inventé des écrans magiques, percé le secret de la matière et même marché sur la Lune. De ce monde merveilleux, qui a brusquement disparu dans des conditions complexes et mystérieuses, il ne reste aujourd'hui que quelques vestiges. Et des histoires, qui se transmettent de génération en génération. Tout au bout de la Nuit, à l'heure où les pensées se mélangent, venez vous faire bercer un moment par quelques récits de ce temps révolu, tendres, tragiques ou comiques, qui nous informent de pourquoi il faut se méfier de l'herbe qui brille dans la nuit; de comment les hommes d'alors ont pu survivre au temps de l'effondrement; de ce à quoi pouvait ressembler la vie à cette époque...</span>
</div>
<div class="cal-event">
<span class="cal-event-id">21</span>
<span class="cal-event-name">Exposition "Le Même et l'Autre"</span>
<span class="cal-event-start-date">01/12/2018 20:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Salle Weil</span>
<span class="cal-event-description">Qui est le Même ? Qui est l'Autre ? Comment consomme-t-on leur rupture, ou l'exprime-t-on à travers l'Art ? Comment valoriser à la foi l'extériorité comme parfaite indépendance et l'altérité comme au-delà ? La présente exposition développe ces thèmes sans proposer toutefois une solution laissée à des adeptes du logos. Si elle est intrusion ou intimité, indifférence ou indiscrétion, on laissera le spectateur en juger au contact de la dualité de l'artiste et de son sujet.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">22</span>
<span class="cal-event-name">Foodtruck</span>
<span class="cal-event-start-date">01/12/2018 21:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Cour du NIR</span>
<span class="cal-event-description">Foodtruck servant des menus à base de hamburgers. Des menus végétariens sont proposés.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">23</span>
<span class="cal-event-name">BrassENS</span>
<span class="cal-event-start-date">01/12/2018 22:15</span>
<span class="cal-event-end-date">01/12/2018 22:45</span>
<span class="cal-event-location">Barnum de la cour du NIR</span>
<span class="cal-event-description">Représentation du groupe de cuivre brassENS</span>
</div>
<div class="cal-event">
<span class="cal-event-id">24</span>
<span class="cal-event-name">Whatever happens</span>
<span class="cal-event-start-date">01/12/2018 22:50</span>
<span class="cal-event-end-date">02/12/2018 00:20</span>
<span class="cal-event-location">Barnum de la cour du NIR</span>
<span class="cal-event-description">Concert de Funk, Soul et R&amp;B</span>
</div>
<div class="cal-event">
<span class="cal-event-id">25</span>
<span class="cal-event-name">B-Flat Quartet</span>
<span class="cal-event-start-date">02/12/2018 00:35</span>
<span class="cal-event-end-date">02/12/2018 01:50</span>
<span class="cal-event-location">Barnum de la cour du NIR</span>
<span class="cal-event-description">Concert de Swing et Jazz</span>
</div>
<div class="cal-event">
<span class="cal-event-id">26</span>
<span class="cal-event-name">Duology</span>
<span class="cal-event-start-date">02/12/2018 02:00</span>
<span class="cal-event-end-date">02/12/2018 03:00</span>
<span class="cal-event-location">Barnum de la cour du NIR</span>
<span class="cal-event-description">Concert de jazz à la guitarre</span>
</div>
<div class="cal-event">
<span class="cal-event-id">27</span>
<span class="cal-event-name">Musique électronique - DJs sets</span>
<span class="cal-event-start-date">01/12/2018 21:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">K-Fêt</span>
<span class="cal-event-description">
<ul>
<li>22h-22h30 : Gemini Croquet |</li>
<li>22h30-23h : Melophor |</li>
<li>23h-23h30 : Nil |</li>
<li>23h30-minuit : Felix Hastings |</li>
<li>Minuit-1h30 : Tommy Kid |</li>
<li>1h30-3h : Background |</li>
<li>3h-4h : Artiste mystère</li>
</ul>
</span>
</div>
<div class="cal-event">
<span class="cal-event-id">27</span>
<span class="cal-event-name">VJ</span>
<span class="cal-event-start-date">01/12/2018 23:00</span>
<span class="cal-event-end-date">02/12/2018 03:00</span>
<span class="cal-event-location">K-Fêt</span>
<span class="cal-event-description">Animation visuelle pour accompagner la musique électronique</span>
</div>
<div class="cal-event">
<span class="cal-event-id">28</span>
<span class="cal-event-name">Rise Up</span>
<span class="cal-event-start-date">01/12/2018 23:30</span>
<span class="cal-event-end-date">02/12/2018 00:15</span>
<span class="cal-event-location">Rataud-Galois-Courtès</span>
<span class="cal-event-description">Version écourtée du concert de la comédie musicale Rise Up</span>
</div>
<div class="cal-event">
<span class="cal-event-id">29</span>
<span class="cal-event-name">Karaoké</span>
<span class="cal-event-start-date">02/12/2018 02:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Rataud-Galois-Courtès</span>
<span class="cal-event-description">Karaoké</span>
</div>
<div class="cal-event">
<span class="cal-event-id">30</span>
<span class="cal-event-name">Spectacle de magie</span>
<span class="cal-event-start-date">01/12/2018 22:45</span>
<span class="cal-event-end-date">01/12/2018 23:15</span>
<span class="cal-event-location">Salle d'expression artistique</span>
<span class="cal-event-description">Spectacle de magie, première représentation.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">31</span>
<span class="cal-event-name">Spectacle de magie</span>
<span class="cal-event-start-date">01/12/2018 23:30</span>
<span class="cal-event-end-date">02/12/2018 00:00</span>
<span class="cal-event-location">Salle d'expression artistique</span>
<span class="cal-event-description">Spectacle de magie, seconde représentation.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">32</span>
<span class="cal-event-name">Concert Cult</span>
<span class="cal-event-start-date">02/12/2018 00:30</span>
<span class="cal-event-end-date">02/12/2018 02:30</span>
<span class="cal-event-location">Salle d'expression artistique</span>
<span class="cal-event-description">Concert de Funk par le groupe Cult</span>
</div>
<div class="cal-event">
<span class="cal-event-id">33</span>
<span class="cal-event-name">Stand photos</span>
<span class="cal-event-start-date">01/12/2018 22:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Monument aux morts</span>
<span class="cal-event-description">Stand photos de la Nuit.</span>
</div>
<div class="cal-event">
<span class="cal-event-id">34</span>
<span class="cal-event-name">Bar</span>
<span class="cal-event-start-date">01/12/2018 21:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Barnum de la cour du NIR</span>
<span class="cal-event-description">Bar à champagne au RDC</span>
</div>
<div class="cal-event">
<span class="cal-event-id">35</span>
<span class="cal-event-name">Bar</span>
<span class="cal-event-start-date">01/12/2018 21:00</span>
<span class="cal-event-end-date">02/12/2018 04:00</span>
<span class="cal-event-location">Hall du PB du NIR</span>
<span class="cal-event-description">Bar à champagne au PB du NIR</span>
</div>
</div>
</section>
<section>
<h2>Tarifs et billeterie</h2>
<div>
<p>Les préventes physiques seront disponibles dès le lundi 12 novembre en <strong>Aqua le midi</strong> et au <strong>Burô du COF</strong>.
Une <strong>billetterie en ligne</strong> est aussi ouverte.</p>
<table class="prices">
<thead>
<tr>
<th></th>
<th>COF</th>
<th>Exté&middot;e</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Soirée</strong> (prévente)</td>
<td>18€</td>
<td>21€</td>
</tr>
<tr>
<td><strong>Soirée</strong> (sur place)</td>
<td>25€</td>
<td>25€</td>
</tr>
<tr>
<td><strong>Soirée</strong> avec <strong>Buffet</strong></td>
<td>28€</td>
<td>33€</td>
</tr>
</tbody>
</table>
<p class="stand-out">Attention : les places sont limitées pour le buffet. <strong>Réservez rapidement !</strong></p>
<a href="http://ens-nuit2018.evenium.net/" target="_blank">
<div class="button">
<img src="img/icons/ticket.svg" alt="Ticket">
Billeterie en ligne (+1€)
</div>
</a>
</div>
</section>
<section>
<h2>Comment venir ?</h2>
<div>
<p id="mailing-address">
<img src="img/icons/location.svg" alt="Emplacement">
45 rue d'Ulm 75005 Paris
</p>
<iframe id="interactive-map" width="750" height="400" src="https://www.openstreetmap.org/export/embed.html?bbox=2.334809303283692%2C48.8368567401711%2C2.3548936843872075%2C48.84636099015179&amp;layer=hot&amp;marker=48.841602029496684%2C2.344851493835449"></iframe>
</div>
<div id="public-transport-info">
<div id="transport-metro-icon">
<img src="img/icons/ratp/metro-7.svg" alt="Métro 7">
</div>
<span id="transport-metro-stop">Place Monge</span>
<div id="transport-rer-icon">
<img src="img/icons/ratp/rer-B.svg" alt="RER B">
</div>
<span id="transport-rer-stop">Luxembourg</span>
<div id="transport-bus-icon">
<img src="img/icons/ratp/bus-21.svg" alt="Bus 21">
<img src="img/icons/ratp/bus-27.svg" alt="Bus 27">
</div>
<span id="transport-bus-stop">Feuillantines</span>
<div id="transport-noctilien-icon">
<img src="img/icons/ratp/noctilien-14.svg" alt="Noctilien 14">
<img src="img/icons/ratp/noctilien-21.svg" alt="Noctilien 21">
<img src="img/icons/ratp/noctilien-122.svg" alt="Noctilien 122">
</div>
<span id="transport-noctilien-stop">Auguste Compte</span>
</div>
</section>
<section>
<h2>Nous contacter</h2>
<div>
<p id="contact-email">
<img src="img/icons/email.svg" alt="Email">
<span>responuit[arobase]ens[point]fr</span>
</p>
</div>
</section>
<section>
<h2>Remerciements</h2>
<div>
<div id="sponsors">
<a href="https://www.cof.ens.fr">
<img class="sponsor-disc" src="img/sponsors/cof.png" alt="COF">
</a>
<a href="https://www.archicubes.ens.fr">
<img class="sponsor-disc" src="img/sponsors/a-ulm.png" alt="A-Ulm">
</a>
<a href="https://www.ens.fr/">
<img class="sponsor-disc" src="img/sponsors/ens.png" alt="ENS">
</a>
<br>
<a href="https://www.mgen.fr/">
<img src="img/sponsors/mgen.jpg" alt="MGEN">
</a>
<a href="https://www.societegenerale.fr">
<img src="img/sponsors/soge2.svg" alt="Société Générale">
</a>
</div>
</div>
</section>
</body>
<!-- Note: tipso plugin requires the full jQuery library, the slim one is not sufficient -->
<!-- <script type="text/javascript" src="js/jquery-3.3.1.slim.min.js"></script> -->
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/tipso.min.js"></script>
<script type="text/javascript" src="js/interval_coloration.js"></script>
<script type="text/javascript" src="js/calendar.js"></script>
<script type="text/javascript">
$(window).ready(() => {
let cal = new Calendar({
startDate: new Date(2018, 11, 01, 19, 00),
endDate: new Date(2018, 11, 02, 5),
groupEventsByLocation: true
});
console.log(cal);
});
</script>
</html>

1187
js/calendar.js Normal file

File diff suppressed because it is too large Load diff

84
js/interval_coloration.js Normal file
View file

@ -0,0 +1,84 @@
// Interval graph coloring algorithm, by Twal
class IntervalColoration {
constructor (intervals) {
this.intervals = intervals;
this.n = this.intervals.length;
this.computeInterferenceGraph();
this.computePEO();
this.computeColoration();
}
computeInterferenceGraph() {
this.adj = new Array(this.n);
for (let i = 0; i < this.n; ++i) {
this.adj[i] = [];
}
for (let i = 0; i < this.n; ++i) {
for (let j = 0; j < i; ++j) {
let inti = this.intervals[i];
let intj = this.intervals[j];
if (inti[0] < intj[1] && intj[0] < inti[1]) {
this.adj[i].push(j);
this.adj[j].push(i);
}
}
}
}
//Perfect elimination order using Maximum Cardinality Search
//Runs in O(n^2), could be optimized in O(n log n)
computePEO() {
let marked = new Array(this.n);
let nbMarkedNeighbor = new Array(this.n);
this.perm = new Array(this.n);
for (let i = 0; i < this.n; ++i) {
marked[i] = false;
nbMarkedNeighbor[i] = 0;
}
for (let k = this.n-1; k >= 0; --k) {
let maxi = -1;
for (let i = 0; i < this.n; ++i) {
if (!marked[i] && (maxi == -1 || nbMarkedNeighbor[i] >= nbMarkedNeighbor[maxi])) {
maxi = i;
}
}
for (let i = 0; i < this.adj[maxi].length; ++i) {
nbMarkedNeighbor[this.adj[maxi][i]] += 1;
}
this.perm[maxi] = k;
marked[maxi] = true;
}
// console.log(this.perm);
}
computeColoration() {
this.colors = new Array(this.n);
let isColorUsed = new Array(this.n);
for (let i = 0; i < this.n; ++i) {
this.colors[i] = -1;
isColorUsed[i] = false;
}
for (let i = 0; i < this.n; ++i) {
let ind = this.perm[i];
for (let j = 0; j < this.adj[ind].length; ++j) {
let neigh = this.adj[ind][j];
if (this.colors[neigh] >= 0) {
isColorUsed[this.colors[neigh]] = true;
}
}
for (let j = 0; j < this.n; ++j) {
if (!isColorUsed[j]) {
this.colors[ind] = j;
break;
}
}
for (let j = 0; j < this.adj[ind].length; ++j) {
let neigh = this.adj[ind][j];
if (this.colors[neigh] >= 0) {
isColorUsed[this.colors[neigh]] = false;
}
}
}
}
}

2
js/jquery-3.3.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

2
js/jquery-3.3.1.slim.min.js vendored Normal file

File diff suppressed because one or more lines are too long

1
js/tipso.min.js vendored Normal file

File diff suppressed because one or more lines are too long