diff --git a/frontend/.env b/frontend/.env
index bd56a6e4c209ad07a85513349a27e2f5161ef0f4..b53dc49260cb0881c09ead78f8a1e0b63429dc9b 100644
--- a/frontend/.env
+++ b/frontend/.env
@@ -5,7 +5,7 @@ REACT_APP_SUPPORT_MAIL=test@example.org
 REACT_APP_INST=uio
 REACT_APP_SUPPORT_URL=https://example.org
 
-REACT_APP_RESPONSIBLE_ORGANIZATION=N/A
-REACT_APP_RESPONSIBLE_ORGANIZATION_LINK=https://example.org
+REACT_APP_RESPONSIBLE_ORGANIZATION='Seksjon for integrasjon og elektroniske identiteter (INT)'
+REACT_APP_RESPONSIBLE_ORGANIZATION_LINK='https://www.usit.uio.no/om/organisasjon/bnt/usitint/'
 
 REACT_APP_THEME=default
diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json
index 21c1a59a36d030287a69a03b2610b5d2dc52231e..86a7ef07e57f61140947a4007a0d09fa7b79150e 100644
--- a/frontend/.eslintrc.json
+++ b/frontend/.eslintrc.json
@@ -12,7 +12,7 @@
   ],
   "parser": "@typescript-eslint/parser",
   "parserOptions": {
-    "project": "./tsconfig.json",
+    "project": "./frontend/tsconfig.json",
     "ecmaFeatures": {
       "jsx": true
     },
diff --git a/frontend/public/locales/nb/common.json b/frontend/public/locales/nb/common.json
index fd083ac210a6a113fb08395e231752ee10f1863d..11e3ddd99807f382ab3090c28913d2406e19e40a 100644
--- a/frontend/public/locales/nb/common.json
+++ b/frontend/public/locales/nb/common.json
@@ -8,7 +8,7 @@
   },
   "fnr": "Fødselsnummer",
   "header": {
-    "applicationTitle": "Gjesteregistrering",
+    "applicationTitle": "Gjestetjenesten",
     "applicationDescription": "Registreringstjeneste for gjester",
     "selectLanguage": "Velg språk"
   },
diff --git a/frontend/public/locales/nb/footer.json b/frontend/public/locales/nb/footer.json
index 436d90c7f38d75465ee6db23ba0202b7e93e7c6f..6ca466e53a47e25c0ab328481619579b698e5910 100644
--- a/frontend/public/locales/nb/footer.json
+++ b/frontend/public/locales/nb/footer.json
@@ -3,5 +3,5 @@
   "contactSectionHeader": "Trenger du hjelp?",
   "contactHelp": "Kontakt",
   "contactHelpMail": "Kontaktveileder",
-  "responsibleOrganizationHeader": "Ansvarlig for tjenesten"
+  "responsibleOrganizationHeader": "Ansvarlig for denne tjenesten"
 }
diff --git a/frontend/public/locales/nn/common.json b/frontend/public/locales/nn/common.json
index ba148252190ae9fb31ddfd3fe01db40d25b2ad69..73c02bfb4c818f584e1eef30540ef8eac05b9846 100644
--- a/frontend/public/locales/nn/common.json
+++ b/frontend/public/locales/nn/common.json
@@ -9,7 +9,7 @@
   },
   "fnr": "National identity number",
   "header": {
-    "applicationTitle": "Gjesteregistrering",
+    "applicationTitle": "Gjestetenesta",
     "applicationDescription": "Registreringsteneste for gjester",
     "selectLanguage": "Velg språk"
   },
diff --git a/frontend/public/locales/nn/footer.json b/frontend/public/locales/nn/footer.json
index 22756502e53d3e6e49ed7654400d4c0a13efe404..82806153bd5d9a4a0aef72ec30fd8e295468e1db 100644
--- a/frontend/public/locales/nn/footer.json
+++ b/frontend/public/locales/nn/footer.json
@@ -3,5 +3,5 @@
   "contactSectionHeader": "Treng du hjelp?",
   "contactHelp": "Kontakt",
   "contactHelpMail": "Kontaktrettleiar",
-  "responsibleOrganizationHeader": "Ansvarleg for tenesta"
+  "responsibleOrganizationHeader": "Ansvarleg for denne tenesta"
 }
diff --git a/frontend/src/components/languageselector/index.tsx b/frontend/src/components/languageselector/index.tsx
index eb1b4fa6fb81e2358cc13f7188d1b5ad2be78509..d1a5770a2dd24a14b73fd0476c6f7d815bb1f5de 100644
--- a/frontend/src/components/languageselector/index.tsx
+++ b/frontend/src/components/languageselector/index.tsx
@@ -2,7 +2,7 @@ import React, { useEffect, useState } from 'react'
 import { useTranslation } from 'react-i18next'
 import { MenuItem, Select, SelectChangeEvent } from '@mui/material'
 
-function LanguageSelector() {
+function LanguageSelector({ noPadding }: { noPadding: boolean }) {
   const { i18n, t } = useTranslation('common')
   const [selectedLanguage, setSelectedLanguage] = useState('en')
 
@@ -22,22 +22,31 @@ function LanguageSelector() {
     }
   }
 
+  const sx: Record<string, any> = {
+    color: 'white',
+    '& .MuiSelect-icon': {
+      color: 'white',
+    },
+  }
+
+  if (noPadding) {
+    sx['& .MuiSelect-select'] = { paddingBottom: '0rem' }
+  }
+
   return (
     <Select
       labelId="language-select"
       label={t('header.selectLanguage')}
-      sx={{
-        color: 'white',
-        '& .MuiSelect-icon': {
-          color: 'white',
-        },
-      }}
+      defaultValue={selectedLanguage}
+      sx={sx}
       variant="standard"
       value={selectedLanguage}
       onChange={handleLanguageChange}
     >
       {Array.from(languageOptions.entries()).map((entry) => (
-        <MenuItem value={entry[0]}>{entry[1]}</MenuItem>
+        <MenuItem key={entry[0]} value={entry[0]}>
+          {entry[1]}
+        </MenuItem>
       ))}
     </Select>
   )
diff --git a/frontend/src/components/loading/index.tsx b/frontend/src/components/loading/index.tsx
index 28bcc838c7425082fd1097089e50d9ad83f0be42..515daa52dd68710f21104849ab83e02b04804727 100644
--- a/frontend/src/components/loading/index.tsx
+++ b/frontend/src/components/loading/index.tsx
@@ -1,4 +1,4 @@
-import React from 'react'
+import React, { Suspense } from 'react'
 import { useTranslation } from 'react-i18next'
 
 import Spinner from 'components/animations/spinner'
diff --git a/frontend/src/contexts/userContext.ts b/frontend/src/contexts/userContext.ts
index 8ff5841d6307fee2dbad807183190a8edfe53909..7c62e61f9aa334a0db674fc1eaec7e43807f4c66 100644
--- a/frontend/src/contexts/userContext.ts
+++ b/frontend/src/contexts/userContext.ts
@@ -2,6 +2,7 @@ import { createContext, useContext } from 'react'
 
 interface User {
   auth: boolean
+  fetched: boolean
   first_name: string
   last_name: string
 }
@@ -15,7 +16,7 @@ interface IUserContext {
 function noop() {}
 
 export const UserContext = createContext<IUserContext>({
-  user: { auth: false, first_name: '', last_name: '' },
+  user: { auth: false, fetched: false, first_name: '', last_name: '' },
   fetchUserInfo: noop,
   clearUserInfo: noop,
 })
diff --git a/frontend/src/i18n.ts b/frontend/src/i18n.ts
index f900bb86de66fe8644375eff28702dcf3cc53183..1588e71b694a13710d98222c3e7f4c7b1faec8ee 100644
--- a/frontend/src/i18n.ts
+++ b/frontend/src/i18n.ts
@@ -21,9 +21,9 @@ i18n
     interpolation: {
       escapeValue: false,
     },
-    react: {
-      useSuspense: false,
-    },
+    // react: {
+    //   useSuspense: false,
+    // },
     detection: {
       order: ['cookie'],
       caches: ['cookie'],
diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx
index 6851f58950870f72a8128477c059c938ef106132..3dd4af689c9c391873a2faa8e52e6f1c6280953c 100644
--- a/frontend/src/index.tsx
+++ b/frontend/src/index.tsx
@@ -1,6 +1,7 @@
 import React, { Suspense } from 'react'
 import ReactDOM from 'react-dom'
 import { ThemeProvider } from '@mui/material/styles'
+import { CircularProgress } from '@mui/material'
 import AdapterDateFns from '@mui/lab/AdapterDateFns'
 import { LocalizationProvider } from '@mui/lab'
 import { BrowserRouter as Router } from 'react-router-dom'
@@ -16,15 +17,15 @@ function appRoot() {
   return (
     <React.StrictMode>
       <Router>
-        <Suspense fallback={<Loading />}>
-          <LocalizationProvider dateAdapter={AdapterDateFns}>
+        <LocalizationProvider dateAdapter={AdapterDateFns}>
           <ThemeProvider theme={getTheme()}>
             <UserProvider>
-              <App />
+              <Suspense fallback={<CircularProgress />}>
+                <App />
+              </Suspense>
             </UserProvider>
           </ThemeProvider>
-          </LocalizationProvider>
-        </Suspense>
+        </LocalizationProvider>
       </Router>
     </React.StrictMode>
   )
diff --git a/frontend/src/providers/userProvider.tsx b/frontend/src/providers/userProvider.tsx
index f9c3cca49151979ff8e449df543aa33ef37f882d..d8d784e257f06c2907d5268ec9e5ef34d168bc63 100644
--- a/frontend/src/providers/userProvider.tsx
+++ b/frontend/src/providers/userProvider.tsx
@@ -10,10 +10,10 @@ function UserProvider(props: UserProviderProps) {
   const { children } = props
   const [user, setUser] = useState({
     auth: false,
+    fetched: false,
     first_name: '',
     last_name: '',
   })
-  const [fetching, setFetching] = useState(false)
 
   const getUserInfo = async () => {
     try {
@@ -23,25 +23,26 @@ function UserProvider(props: UserProviderProps) {
       if (response.ok) {
         setUser({
           auth: true,
+          fetched: true,
           first_name: data.first_name,
           last_name: data.last_name,
         })
+      } else {
+        setUser({ auth: false, fetched: true, first_name: '', last_name: '' })
       }
     } catch (error) {
       // Do nothing
     }
-    setFetching(false)
   }
 
   const fetchUserInfo = () => {
-    if (!user.auth && !fetching) {
-      setFetching(true)
+    if (!user.auth && !user.fetched) {
       getUserInfo()
     }
   }
 
   const clearUserInfo = () => {
-    setUser({ auth: false, first_name: '', last_name: '' })
+    setUser({ auth: false, fetched: false, first_name: '', last_name: '' })
   }
 
   return (
diff --git a/frontend/src/routes/components/footer.tsx b/frontend/src/routes/components/footer.tsx
index d6e0abc0c3c3749e4ce4f635034febf456e611c5..f4b2799405e352b4120196bcb576fe3d6b40e2be 100644
--- a/frontend/src/routes/components/footer.tsx
+++ b/frontend/src/routes/components/footer.tsx
@@ -1,84 +1,71 @@
 import React from 'react'
 import { useTranslation } from 'react-i18next'
 import { styled } from '@mui/material/styles'
+import { Link } from '@mui/material'
 
-import {
-  appStagingWarning,
-  appTechnicalSupportLink,
-  reponsibleOrganization,
-  responsibleOrganizationLink,
-} from 'appConfig'
-import Link from 'components/link'
+import { reponsibleOrganization, responsibleOrganizationLink } from 'appConfig'
+
+import { getFooterLogo } from './logos'
 
 const FooterWrapper = styled('footer')(({ theme }) => ({
   background: theme.greg.footerBackgroundColor,
   height: 'fit-content',
-  padding: '0rem 6.5rem',
+  padding: '0rem 3.5rem',
   marginTop: 'auto',
 }))
 
 const FooterSection = styled('section')({
-  header: {
-    marginBottom: '0.5rem',
-    fontSize: '1.5rem',
-  },
+  // header: {
+  //  marginBottom: '0.5rem',
+  //  fontSize: '1.5rem',
+  // },
 
   paddingLeft: '1rem',
 })
 
-const FooterSectionContent = styled('div')({
-  fontSize: '1rem',
-  paddingLeft: '0.3rem',
-})
-
 const ContentContainer = styled('div')(({ theme }) => ({
-  width: 'fit-content',
+  // width: 'fit-content',
+  fontSize: '1.5rem',
   color: theme.greg.footerTextColor,
   display: 'flex',
   flexWrap: 'nowrap',
   justifyContent: 'space-between',
-  margin: 'auto',
-  padding: '1rem 1rem 1rem 0',
+  // margin: '0 1rem',
+  padding: '1rem 0rem 1rem 0',
 }))
 
+const LogoContainer = styled('div')({
+  maxWidth: '30rem',
+  minWidth: '20rem',
+})
+
+const FooterHeader = styled('div')({
+  fontsize: '1rem',
+})
+
 const Footer: React.FunctionComponent = () => {
   const { t } = useTranslation(['common', 'footer'])
 
   return (
-    <>
-      <FooterWrapper>
-        <ContentContainer>
-          <FooterSection>
-            <header>{t('footer:contactSectionHeader')}</header>
-            <FooterSectionContent>
-              <Link
-                external
-                to={appTechnicalSupportLink}
-                inheritColor
-                underline
-              >
-                {t('footer:contactHelp')}
-              </Link>
-            </FooterSectionContent>
-          </FooterSection>
+    <FooterWrapper>
+      <ContentContainer>
+        <FooterSection>
+          <LogoContainer>{getFooterLogo()}</LogoContainer>
+        </FooterSection>
 
-          <FooterSection>
-            <header>{t('footer:responsibleOrganizationHeader')}</header>
-            <FooterSectionContent>
-              <Link
-                external
-                to={responsibleOrganizationLink}
-                inheritColor
-                underline
-              >
-                {reponsibleOrganization}
-              </Link>
-            </FooterSectionContent>
-          </FooterSection>
-        </ContentContainer>
-      </FooterWrapper>
-      {appStagingWarning && <div className="alert">{t('staging')}</div>}
-    </>
+        <FooterSection sx={{ paddingTop: '1rem' }}>
+          <FooterHeader>
+            {t('footer:responsibleOrganizationHeader')}
+          </FooterHeader>
+          <Link
+            href={responsibleOrganizationLink}
+            sx={{ color: 'white', fontSize: '1rem' }}
+          >
+            {reponsibleOrganization}
+          </Link>
+        </FooterSection>
+      </ContentContainer>
+    </FooterWrapper>
   )
 }
 
diff --git a/frontend/src/routes/components/header.tsx b/frontend/src/routes/components/header.tsx
index 37edfe7c4d1d93a3020a9ca2a9f0ab8b197b74e0..8aaa933a2c6d1211097636eaf4fefe6e0c78757f 100644
--- a/frontend/src/routes/components/header.tsx
+++ b/frontend/src/routes/components/header.tsx
@@ -1,14 +1,17 @@
 import React from 'react'
-import { Link } from 'react-router-dom'
+import { Link as RLink } from 'react-router-dom'
 import { useTranslation } from 'react-i18next'
 import { styled } from '@mui/material/styles'
-import Box from '@mui/material/Box'
+import { Box, Link } from '@mui/material'
+import LogoutIcon from '@mui/icons-material/Logout'
+
+import { useUserContext } from 'contexts'
 
-import LogoBar from 'components/logobars/LogoBar'
 import LanguageSelector from 'components/languageselector'
 import UserInfo from 'routes/components/userInfo'
+import { getHeaderLogo } from './logos'
 
-const MainWrapper = styled('div')(({ theme }) => ({
+const StyledHeader = styled('header')(({ theme }) => ({
   color: theme.greg.h1TextColor,
   backgroundColor: theme.greg.headerBackgroundColor,
 
@@ -21,66 +24,87 @@ const MainWrapper = styled('div')(({ theme }) => ({
   },
 }))
 
-const Main = styled('div')(({ theme }) => ({
+const MainContainer = styled('div')(({ theme }) => ({
   display: 'flex',
   justifyContent: 'space-between',
   margin: '0 auto',
   maxWidth: theme.greg.appMaxWidth,
-  padding: '0.5rem 6.5rem 1rem 6.5rem',
+  padding: '1rem 6.5rem 1rem 6.5rem',
+  alignItems: 'flex-end',
 }))
 
-const Menu = styled('ul')({
-  listStyleType: 'none',
+const LogoContainer = styled('div')({
+  display: 'flex',
+  flexDirection: 'row',
+  alignItems: 'flex-end',
+  // paddingRight: '2rem',
 })
 
-const MenuItem = styled('div')({
+const Menu = styled('div')({
+  display: 'flex',
+  // listStyleType: 'none',
+  flexDirection: 'row',
+  alignItems: 'flex-end',
   fontSize: '1rem',
-  display: 'inline',
+  paddingBottom: '0.5rem',
 })
 
 const Header = () => {
   const { t } = useTranslation('common')
+  const { user } = useUserContext()
 
   return (
-    <header>
-      <LogoBar />
-      <MainWrapper>
-        <Main>
+    <StyledHeader>
+      <MainContainer>
+        <LogoContainer>
           <Box
             sx={{
-              display: 'flex',
-              flexDirection: 'column',
-              paddingLeft: '3rem',
+              paddingRight: '1.5rem',
+              width: '7rem',
+              // minWidth: '10rem',
             }}
           >
-            <Link to="/">
-              <Box
+            {getHeaderLogo()}
+          </Box>
+          <RLink to="/">
+            <Box
+              sx={{
+                color: 'white',
+                whiteSpace: 'nowrap',
+                textDecoration: 'none',
+                fontSize: '2rem',
+                fontWeight: 'bold',
+              }}
+            >
+              {t('header.applicationTitle')}
+            </Box>
+          </RLink>
+        </LogoContainer>
+        <Menu>
+          <LanguageSelector noPadding />
+          <UserInfo />
+          {user.auth && (
+            <Box sx={{ paddingLeft: '1rem' }}>
+              <Link
                 sx={{
                   color: 'white',
-                  whiteSpace: 'nowrap',
-                  textDecoration: 'none',
-                  fontSize: '2rem',
-                  fontWeight: 'bold',
                 }}
+                href="/oidc/logout"
               >
-                {t('header.applicationTitle')}
-              </Box>
-            </Link>
-            <Box sx={{ fontSize: '1rem' }}>
-              {t('header.applicationDescription')}
+                Logg ut
+                <LogoutIcon
+                  fontSize="small"
+                  sx={{
+                    paddingLeft: '0.3rem',
+                    verticalAlign: 'middle',
+                  }}
+                />
+              </Link>
             </Box>
-          </Box>
-          <Menu>
-            <MenuItem>
-              <UserInfo />
-            </MenuItem>
-            <MenuItem>
-              <LanguageSelector />
-            </MenuItem>
-          </Menu>
-        </Main>
-      </MainWrapper>
-    </header>
+          )}
+        </Menu>
+      </MainContainer>
+    </StyledHeader>
   )
 }
 
diff --git a/frontend/src/routes/components/logos/index.tsx b/frontend/src/routes/components/logos/index.tsx
new file mode 100644
index 0000000000000000000000000000000000000000..89e268df43ae2566238280a0718346a93613b65b
--- /dev/null
+++ b/frontend/src/routes/components/logos/index.tsx
@@ -0,0 +1,34 @@
+import { useTranslation } from 'react-i18next'
+import { appInst } from 'appConfig'
+import { ReactComponent as UiOLogoNo } from './uio-segl-full-neg-no.svg'
+import { ReactComponent as UiOLogoEn } from './uio-segl-full-neg-en.svg'
+import { ReactComponent as UiOAcronym } from './uio-logo-acronym-white.svg'
+
+function getHeaderLogo() {
+  switch (appInst) {
+    case 'uio':
+      return <UiOAcronym />
+    case 'uib':
+      return <></>
+    default:
+      return <></>
+  }
+}
+
+function getFooterLogo() {
+  const { i18n } = useTranslation()
+
+  switch (appInst) {
+    case 'uio':
+      if (i18n.language === 'en') {
+        return <UiOLogoEn />
+      }
+      return <UiOLogoNo />
+    case 'uib':
+      return <></>
+    default:
+      return <></>
+  }
+}
+
+export { getHeaderLogo, getFooterLogo }
diff --git a/frontend/src/routes/components/logos/uio-logo-acronym-white.svg b/frontend/src/routes/components/logos/uio-logo-acronym-white.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e78e338d9c100c490eab7063eed7bf3ac75e259c
--- /dev/null
+++ b/frontend/src/routes/components/logos/uio-logo-acronym-white.svg
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg height="100%" width="100%" viewBox="0 0 128 56" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+    <title>04_UiO_forkortelse_NO_pos</title>
+    <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
+        <g id="04_UiO_forkortelse_NO_pos" fill="#ffffff" fill-rule="nonzero">
+            <g id="Group" transform="translate(0.000000, 4.000000)">
+                <path d="M0.99,2.8 L0.99,1.58 L23.77,1.58 L23.77,2.8 C17.17,3.62 17.04,4.43 17.04,11.57 L17.04,31.22 C17.04,41.89 20.64,47.88 29.89,47.88 C39.89,47.88 43.29,40.88 43.49,30.68 L43.49,11.5 C43.49,4.5 43.35,3.61 36.76,2.8 L36.76,1.58 L53.42,1.58 L53.42,2.8 C46.82,3.62 46.69,4.5 46.69,11.5 L46.69,30.54 C46.69,45.29 39.82,51.75 27.65,51.75 C14.12,51.75 7.73,44.75 7.73,32.17 L7.73,11.57 C7.73,4.57 7.59,3.62 0.99,2.8 Z" id="Path"></path>
+                <path d="M68.24,41.08 C68.24,48.08 68.31,49.04 73.68,49.65 L73.68,50.87 L54.23,50.87 L54.23,49.65 C59.6,49.04 59.67,48.09 59.67,41.08 L59.67,26.8 C59.67,19.59 59.19,19.52 54.23,19.39 L54.23,18.23 L68.44,13.67 C68.37,17.27 68.24,21.76 68.24,28.7 L68.24,41.08 Z" id="Path"></path>
+                <path d="M101.63,0.22 C114.96,0.22 127.54,9.2 127.54,25.99 C127.54,42.78 114.96,51.76 101.63,51.76 C88.3,51.76 75.72,42.78 75.72,25.99 C75.73,9.19 88.3,0.22 101.63,0.22 Z M101.63,2.73 C92.25,2.73 86.13,11.64 86.13,25.98 C86.13,40.33 92.25,49.23 101.63,49.23 C111.01,49.23 117.13,40.32 117.13,25.98 C117.13,11.64 111.01,2.73 101.63,2.73 Z" id="Shape"></path>
+            </g>
+            <path d="M57.98,5.51 C57.98,2.52 60.5,0.14 63.56,0.14 C66.69,0.14 69.14,2.52 69.14,5.51 C69.14,8.57 66.69,11.02 63.56,11.02 C60.49,11.02 57.98,8.57 57.98,5.51 Z" id="Path"></path>
+        </g>
+    </g>
+</svg>
diff --git a/frontend/src/routes/components/logos/uio-segl-full-neg-en.svg b/frontend/src/routes/components/logos/uio-segl-full-neg-en.svg
new file mode 100644
index 0000000000000000000000000000000000000000..bfb7e0deb28ba760185d630fc79e74a625e223c2
--- /dev/null
+++ b/frontend/src/routes/components/logos/uio-segl-full-neg-en.svg
@@ -0,0 +1,469 @@
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 height="100%" width="100%" viewBox="240 240 930 240" style="enable-background:new 240 240 930 240;">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+</style>
+<g id="Segl">
+</g>
+<g id="Outline">
+	<g>
+		<g>
+			<g>
+				<path class="st0" d="M247.18,360c0-27.98,9.92-53.65,26.44-73.67l0,0c21.24-25.74,53.39-42.15,89.36-42.15l0,0
+					c63.97,0,115.81,51.86,115.82,115.82l0,0c0,63.95-51.85,115.81-115.82,115.81l0,0C299.03,475.81,247.18,423.96,247.18,360
+					L247.18,360z M248.9,360c0,31.51,12.77,60.02,33.42,80.67l0,0c20.65,20.65,49.16,33.42,80.66,33.42l0,0
+					c31.51,0,60.03-12.77,80.68-33.42l0,0c20.65-20.65,33.42-49.16,33.42-80.67l0,0c0-31.5-12.77-60.02-33.42-80.67l0,0
+					c-20.65-20.65-49.17-33.42-80.68-33.42l0,0c-35.44,0-67.1,16.16-88.03,41.52l0,0h0C258.67,307.16,248.9,332.44,248.9,360
+					L248.9,360z"/>
+			</g>
+			<g>
+				<path class="st0" d="M272.62,406.98c0.02-1.51,1.26-2.72,2.77-2.7c1.51,0.02,2.73,1.26,2.71,2.77
+					c-0.02,1.52-1.26,2.73-2.77,2.71C273.82,409.74,272.61,408.5,272.62,406.98z"/>
+				<path class="st0" d="M446.92,408.62c0.02-1.51,1.26-2.72,2.77-2.7c1.51,0.02,2.73,1.26,2.71,2.77
+					c-0.02,1.51-1.26,2.73-2.77,2.71C448.12,411.37,446.9,410.13,446.92,408.62z"/>
+			</g>
+			<g>
+				<g>
+					<g>
+						<path class="st0" d="M442.2,326.73c-4.33-10.22-10.51-19.39-18.39-27.27c-7.87-7.86-17.04-14.05-27.25-18.37
+							c-10.57-4.46-21.81-6.72-33.37-6.72c-11.58,0-22.81,2.26-33.39,6.72c-10.21,4.32-19.37,10.52-27.26,18.37
+							c-7.87,7.88-14.05,17.04-18.36,27.27c-4.48,10.56-6.75,21.8-6.75,33.36c0,11.59,2.27,22.83,6.75,33.39
+							c4.31,10.2,10.49,19.38,18.36,27.25c7.88,7.87,17.04,14.06,27.26,18.38c3.2,1.36,6.46,2.5,9.77,3.45
+							c0.03,0.01,0.06,0.02,0.09,0.03c1.66,0.52,3.35,0.93,5.05,1.27c6.03,1.32,12.2,1.99,18.48,1.99c3.82,0,7.61-0.25,11.35-0.74
+							c0.01,0,0.02,0,0.03,0c2.18-0.13,3.72-0.46,4.73-0.77c5.9-1.12,11.68-2.86,17.26-5.22c10.21-4.32,19.38-10.51,27.25-18.38
+							l-0.61-0.61l0.61,0.61c7.88-7.87,14.05-17.05,18.38-27.25c4.46-10.56,6.73-21.8,6.73-33.39
+							C448.92,348.53,446.66,337.3,442.2,326.73z M309.99,425.14c-0.13-0.11-0.35-0.47-0.24-0.75c0.05-0.11,0.11-0.24,0.18-0.36
+							c0.37-0.69,0.97-1.49,1.48-2.1c0.89,1.92,3.04,5.63,7.58,9.64C315.85,429.63,312.85,427.49,309.99,425.14z M309.28,374.3
+							c1.76,1.72,2.07,3.21,2.08,4.22c0,0.41-0.06,0.73-0.11,0.95c-0.03,0.11-0.05,0.19-0.07,0.24c0,0.01-0.01,0.02-0.01,0.03
+							c-0.08,0.12-0.77,1.42-2.74,1.42c-0.3,0-0.65-0.03-1.03-0.11c-3.33-0.65-6.63-1.94-9.35-2.28c-0.04-0.01-0.1,0-0.15-0.01
+							l6.54-8.97C306.58,371.76,308.43,373.48,309.28,374.3z M295.58,359.35l42.62-43.1l-25.55,59.99c-0.38-1-1.05-2.1-2.17-3.18
+							C308.09,370.74,298.24,361.77,295.58,359.35z M307.06,382.74c0.48,0.09,0.94,0.14,1.36,0.14c1.52,0.01,2.62-0.57,3.3-1.16
+							c0.68-0.59,0.96-1.17,0.99-1.24l0-0.01c0,0,0-0.01,0-0.01c0-0.01,0.01-0.02,0.02-0.05l0.05-0.11l26.21-61.3
+							c0.06,0.41,0.18,1.2,0.29,1.58c0.41,6.88,1.99,11.71,3.65,15.41c0.96,2.14,1.94,3.78,2.7,4.93c0.38,0.58,0.71,1.04,0.96,1.37
+							c0.08,0.11,0.16,0.21,0.22,0.29l-6.11,21.11c-0.1,0.33,0.02,0.7,0.29,0.91l1.46,1.16c0,0,0.18,0.17,0.1,0.49
+							c-0.09,0.32-6.8,25.1-6.8,25.1l-21.32,24.48c-1.58-1.31-6.2-5.59-12.32-15.1c-5.33-8.27-6.92-13.49-6.91-16.46
+							c0-1.48,0.37-2.38,0.81-2.94c0.01-0.01,0.01-0.01,0.02-0.02l0.02-0.03c0.03-0.03,0.05-0.07,0.08-0.1
+							c0.49-0.54,1.09-0.73,1.54-0.73c0.06,0,0.11,0,0.16,0.01C300.2,380.76,303.55,382.04,307.06,382.74z M352.27,292.52
+							c-0.15-0.44-0.62-0.68-1.06-0.54c0.38-0.34,0.75-0.66,1.11-0.97l3.7-0.48c0.47-0.06,0.8-0.5,0.74-0.97
+							c-0.06-0.47-0.49-0.8-0.97-0.74l-0.56,0.08c1.16-0.68,2.34-1.23,3.32-1.63c0.66-0.27,1.22-0.48,1.62-0.62
+							c0.4-0.13,0.61-0.2,0.62-0.2c0.46-0.13,0.72-0.61,0.58-1.07c-0.14-0.45-0.62-0.71-1.07-0.58c-0.03,0.01-1.47,0.43-3.33,1.28
+							c0.27-0.39,0.18-0.92-0.21-1.2c-0.39-0.27-0.93-0.18-1.2,0.21l-1.98,2.81c-0.18,0.12-0.36,0.23-0.53,0.35
+							c-0.25,0.18-0.53,0.39-0.83,0.63l0.2-0.39c0.22-0.42,0.05-0.94-0.37-1.16c-0.42-0.22-0.94-0.05-1.16,0.37l-2.17,4.22
+							c-0.54,0.5-1.04,0.97-1.47,1.38c0.07-2.25,0.67-6.22,3.2-8.11c2.48-1.9,4.54-2.31,6.26-2.31c1.01,0,1.9,0.15,2.69,0.27
+							c0.37,0.05,1.7,0.37,2.85,0.66c1.16,0.3,2.21,0.57,2.21,0.58l0.22,0.03c1.27,0.01,1.9,0.33,2.24,0.67
+							c0.34,0.34,0.47,0.8,0.48,1.31c0.01,0.43-0.18,0.92-0.39,1.29c-0.08,0.14-0.15,0.24-0.21,0.34l-6.43,0.71
+							c-0.23,0.03-0.45,0.15-0.59,0.33l-4.05,5.34l-1.98,0.01l-0.18,0.02c-0.08,0.02-0.44,0.1-0.84,0.43
+							c-0.41,0.32-0.81,0.97-0.79,1.8c-0.01,1.61,0.55,2.71,1.16,3.35c0.06,0.07,0.13,0.13,0.19,0.19l-2.64,2.64
+							c-0.41-0.11-1.08-0.34-1.7-0.78c-0.8-0.56-1.53-1.39-1.77-2.84c-0.13-0.84-0.18-1.53-0.18-2.08c0-0.58,0.05-1,0.11-1.3
+							c0.01-0.01,0.02-0.01,0.03-0.02c0,0,0.39-0.38,0.99-0.96l3.64-1.24C352.18,293.46,352.42,292.97,352.27,292.52z M365.44,299.1
+							c0,0,0.01,0.27-0.21,0.4c-0.23,0.13-0.38,0.35-0.43,0.61c-0.04,0.26,0.07,0.5,0.21,0.71c0.03,0.05,0.04,0.16-0.02,0.27
+							c-0.06,0.1-0.17,0.3-0.17,0.3c-0.12,0.21-0.15,0.46-0.07,0.69c0,0,0,0,0.01,0.03c0.03,0.1,0.09,0.38,0.09,0.68
+							c0,0.17-0.13,0.65-0.47,0.79c-0.32,0.14-0.86,0.25-1.58,0.27l-1.82-0.04c-0.42-0.01-0.79,0.29-0.86,0.7
+							c-0.01,0.04-0.05,0.27-0.05,0.63c0,0.47,0.07,1.18,0.45,1.9c0.14,0.28,0.35,0.55,0.6,0.8c0,0,0,0.01,0.01,0.01h0l3.06,3.43
+							l-7.94,0.54l-5.41-4.23c0.27-0.13,0.42-0.21,0.42-0.21c0.29-0.14,0.48-0.44,0.48-0.77v-2.5l3.47-3.48
+							c0.21-0.21,0.3-0.53,0.23-0.82c-0.08-0.3-0.3-0.53-0.59-0.61v0c-0.16-0.11-1.2-0.44-1.23-2.57c0.01-0.35,0.1-0.39,0.17-0.48
+							c0.03-0.02,0.06-0.04,0.08-0.06l2.26-0.02c0.27,0,0.52-0.13,0.68-0.34c0,0,3.61-4.78,3.86-5.08c0.25-0.31,0.63-0.34,0.63-0.34
+							l4.89-0.53c0,0,0.25-0.01,0.29,0.29c0.04,0.45,0.09,1,0.15,1.6c0.01,0.25-0.15,0.34-0.25,0.35c-0.62,0.02-1.27,0.04-1.96,0.06
+							c-0.72,0.03-1.51,0.36-2.03,0.8c-0.39,0.32-0.4,0.93-0.04,1.28c0.2,0.19,0.63,0.26,1.1,0.4c0.59,0.18,1.25,0.4,1.58,0.3
+							c0.42-0.14,0.58-0.51,0.61-0.92c0.03-0.45,0.3-0.77,0.76-0.77c0.19,0,0.31,0.16,0.33,0.32c0.09,0.86,0.24,1.94,0.3,2.56
+							c0.03,0.3,0.05,0.58,0.07,0.82c0.01,0.31-0.26,0.33-0.4,0.35c-0.29,0.04-0.51,0.04-0.51,0.05c-0.23,0.01-0.45,0.11-0.6,0.29
+							c-0.16,0.17-0.23,0.4-0.22,0.63L365.44,299.1z M355.46,313.4c0.15,0.12,0.34,0.18,0.53,0.18c0.02,0,0.04,0,0.06,0l10.02-0.68
+							c0.33-0.02,0.62-0.23,0.74-0.54c0.13-0.3,0.06-0.65-0.15-0.9l-1.8-2.02c1.05,0.32,1.95,0.6,2.65,0.81
+							c0.54,0.14,1.52,1,2.35,2.13c0.79,1.03,1.51,2.25,1.99,3.24c-0.35,1.78-0.86,3.53-1.4,5.29l-4.44,3.37l-9.67-6.51
+							c-0.49-0.72-2.74-4-4.9-6.17c-1.15-1.13-2.77-1.58-4.39-1.58c-0.3,0-0.6,0.02-0.9,0.05c0.42-0.23,0.85-0.46,1.26-0.68
+							c0.63-0.33,1.24-0.65,1.77-0.93L355.46,313.4z M347.03,311.75c1.32,0,2.49,0.38,3.18,1.07c1.12,1.12,2.33,2.64,3.24,3.88
+							c0.92,1.24,1.54,2.17,1.54,2.18c0.06,0.1,0.14,0.18,0.24,0.24l10.32,6.95c0.31,0.21,0.71,0.2,1-0.03l13.14-9.99l0.06-0.05
+							c0,0,0.29-0.26,0.67-0.58c0.38-0.32,0.86-0.7,1.15-0.88c0.68-0.45,3.58-2.17,5.43-2.22c0.16-0.01,0.32-0.01,0.47-0.01
+							c0.89-0.01,1.54,0.15,1.87,0.37c0.31,0.22,0.45,0.4,0.48,1.05c0,1.05,0.02,2.6,0.02,2.6c0,0.42,0.3,0.7,0.71,0.77
+							c0.32,0,0.76,0.09,0.76,0.59c0,0.57-0.39,0.65-0.57,0.68c-0.31,0.04-0.61,0.08-0.73,0.09l-0.81,0l-0.22,0.03
+							c0,0-1.11,0.29-2.3,0.57c-0.59,0.14-1.21,0.29-1.71,0.39c-0.25,0.05-0.47,0.1-0.64,0.13c-0.08,0.01-0.15,0.02-0.2,0.03
+							c-0.05,0.01-0.06,0-0.06,0.01c-0.76,0-1.94,0.13-1.96,0.13c-0.24,0.03-0.47,0.16-0.61,0.36c0,0.01-1.46,2.07-3.28,4.5
+							c-1.82,2.43-4.03,5.25-5.44,6.66c-1.47,1.47-2.68,2.58-3.53,3.32c-0.26,0.23-0.49,0.42-0.68,0.58
+							c-0.1,0.08-0.33,0.19-0.58,0.09c-1.26-0.52-3.95-1.6-7.19-2.98c-4.52-1.93-10.12-4.44-14.36-6.71
+							c-0.84-0.43-2.34-1.35-3.58-2.66c-0.13-0.14-0.26-0.29-0.39-0.44c-0.04-0.05-0.08-0.1-0.12-0.14
+							c-0.1-0.12-0.19-0.24-0.28-0.35c-0.07-0.09-0.13-0.19-0.2-0.28c-0.06-0.08-0.11-0.16-0.16-0.25
+							c-0.06-0.09-0.12-0.19-0.18-0.29c-0.02-0.04-0.04-0.08-0.07-0.12c-0.12-0.21-0.22-0.42-0.31-0.64
+							c-0.01-0.03-0.03-0.06-0.04-0.09c-0.05-0.13-0.1-0.26-0.14-0.39c0,0,0,0,0,0c0,0,0,0,0-0.01c-0.08-0.23-0.14-0.47-0.19-0.71
+							c-0.02-0.1-0.04-0.21-0.06-0.31c-0.01-0.08-0.02-0.16-0.03-0.24c-0.02-0.2-0.04-0.4-0.04-0.61c0-0.14,0.01-0.27,0.02-0.41
+							c0.01-0.11,0.02-0.23,0.04-0.35c0-0.02,0-0.04,0-0.06c0.04-0.28,0.1-0.56,0.18-0.85c0,0,0,0,0,0l0,0
+							c0.05-0.17,0.1-0.35,0.17-0.53c0-0.01,0.01-0.02,0.01-0.03c0.06-0.16,0.13-0.34,0.2-0.51c0.01-0.02,0.02-0.05,0.03-0.07
+							c0.07-0.16,0.15-0.32,0.24-0.48c0.02-0.03,0.04-0.07,0.06-0.11c0.11-0.19,0.22-0.39,0.34-0.59l0,0
+							C342.72,312.72,344.97,311.73,347.03,311.75z M374.01,298.62c0-0.38,0.13-0.44,0.2-0.43c1.31,0.21,2.03,0.78,2.49,1.32
+							c0.28,0.34,0.45,0.69,0.55,0.94c0.05,0.13,0.08,0.23,0.1,0.3c0.01,0.03,0.01,0.06,0.02,0.07l0,0
+							c0.07,0.41,0.43,0.72,0.85,0.72h16.8c0.43,0,0.79-0.31,0.85-0.73c0.02-0.08,0.15-0.63,0.69-1.14
+							c0.45-0.42,1.19-0.88,2.53-1.05c0.18-0.04,0.21,0.14,0.21,0.3c0,1.78-0.06,5.49-0.06,10.87c0,4.38,1.13,7.92,2.21,11.42
+							c1.09,3.51,2.13,6.98,2.13,11.42c0,2.37-0.45,4.64-1.33,6.7c-0.77-0.43-1.42-0.69-1.78-0.79c-0.12-0.03-0.24-0.05-0.36-0.05
+							c-0.68,0.03-1.12,0.33-1.55,0.63c-0.42,0.34-0.75,0.58-0.99,1.12c-0.07,0.18-0.1,0.36-0.1,0.53c0.01,0.47,0.17,0.79,0.29,1.04
+							c-0.18,0.15-0.39,0.32-0.6,0.51c-0.28,0.25-0.57,0.52-0.82,0.81c-0.25,0.29-0.48,0.56-0.62,0.98
+							c-0.08,0.26-0.13,0.53-0.13,0.81c0,0.53,0.15,1.01,0.39,1.5c-2.61,1.51-5.88,2.4-9.82,2.41c-5.75,0-9.86-1.98-12.6-4.84
+							c-2.03-2.14-3.29-4.8-3.8-7.56c0.85-0.72,2.34-2.03,4.23-3.92c0.32-0.32,0.67-0.7,1.04-1.12c0.61,2.16,1.82,3.96,3.4,5.3
+							c2.21,1.88,5.1,2.89,8.09,2.98c0.05,0.01,0.11,0.02,0.16,0.02c0.02,0,0.05,0,0.07-0.01c0.07,0,0.14,0.01,0.21,0.01
+							c6.47-0.02,11.32-5.75,11.33-12.09c0-2.85-0.67-4.84-1.29-7.91c-0.63-3.08-1.25-7.36-1.25-14.89c0-0.23-0.09-0.45-0.25-0.61
+							c-0.16-0.16-0.38-0.25-0.61-0.25h-16.59c-0.23,0-0.45,0.09-0.61,0.25c-0.16,0.16-0.25,0.38-0.25,0.61
+							c0,5.39-0.35,8.86-0.79,11.44l-3.9,2.96c0.31-1.12,0.59-2.26,0.81-3.42c0.02-0.05,0.02-0.1,0.03-0.15
+							c0.28-1.5,0.45-3.04,0.46-4.63C374.05,305.3,374.03,300.78,374.01,298.62z M397.93,346.29c-0.47-0.66-0.62-1.1-0.61-1.39
+							c0-0.1,0.01-0.19,0.05-0.3h0c0.07-0.16,0.58-0.71,1.04-1.1c0.46-0.41,0.88-0.72,0.88-0.72c0.24-0.15,0.4-0.54,0.38-0.77
+							c-0.01-0.34-0.1-0.46-0.16-0.6c-0.06-0.12-0.12-0.23-0.17-0.32c-0.06-0.13-0.1-0.42,0.16-0.67c0.29-0.3,0.71-0.18,0.79-0.14
+							c0.32,0.13,0.84,0.37,1.35,0.67c0.75,0.44,1.51,1.05,1.78,1.57c0.28,0.48,0.51,1.12,0.5,1.55c0,0.29-0.12,0.5-0.26,0.66
+							c-0.28,0.32-2.81,2.44-3.07,2.6c-0.27,0.19-1.35,0.65-2.27,0.99c-0.27,0.1-0.53,0.19-0.76,0.28
+							c-0.32,0.13-0.37-0.08-0.37-0.08s-0.06-0.19,0.06-0.31c0.15-0.12,0.29-0.25,0.43-0.4c0.15-0.2,0.38-0.39,0.41-0.93
+							C398.12,346.7,398.06,346.47,397.93,346.29z M400.46,406.08c0,0,0.03,0.25-0.17,0.37c-0.2,0.11-6.26,3.51-6.26,3.51l-0.7-60.5
+							c0.69-0.22,1.35-0.48,1.98-0.77L400.46,406.08z M372.73,434.05c0,0,2.23,2.89,2.32,3.02c0.09,0.13,0.02,0.28-0.04,0.33
+							c-3.38,2.76-8.86,4.69-15.13,5.38c0.99-4.55,4.79-22.48,7.62-40.74c2.91-18.82,4.2-36.69,4.45-40.41c0,0,2.26-0.15,2.66-0.19
+							c0.39-0.04,0.44,0.19,0.44,0.43c-0.01,0.24-2.48,71.6-2.48,71.6C372.55,433.7,372.61,433.89,372.73,434.05z M342.69,363.03
+							c0,0,5.6-19.36,5.68-19.62c0.07-0.26,0.33-0.33,0.33-0.33s4.1-1.15,4.75-1.36c0.65-0.21,1.73-0.29,1.73-0.29l14.09-0.86
+							c0.74,1.65,1.75,3.21,3.05,4.58c1.14,1.21,2.51,2.26,4.09,3.11c0,0-0.03,10.72-0.03,10.92c0,0.2-0.1,0.43-0.55,0.47
+							c-0.45,0.04-14.17,0.99-17.59,1.24c-0.49,0.03-1.07,0.12-1.59,0.26c-0.52,0.15-12.47,3.42-12.47,3.42s-0.41,0.06-0.61-0.09
+							c-0.2-0.16-0.31-0.25-0.68-0.54C342.52,363.64,342.69,363.03,342.69,363.03z M347.99,341.29c-1.36-1.87-5.32-7.41-6.66-17.52
+							c0.09,0.11,0.19,0.21,0.28,0.31c1.43,1.5,3.06,2.5,4.03,3c8.63,4.62,22.48,10.08,22.5,10.09c0.01,0,0.02,0,0.03,0.01
+							c0.12,0.58,0.28,1.14,0.47,1.71l-13,0.79c0,0-1.53,0.07-2.63,0.38c-1.33,0.37-4.37,1.24-4.57,1.31
+							C348.18,341.44,348.03,341.35,347.99,341.29z M376.78,361.21l0.63-0.13c0.4-0.08,0.69-0.44,0.69-0.84l0.03-11.17
+							c2.3,0.93,4.97,1.46,8.01,1.46c0.01,0,0.02,0,0.03,0c1.95,0,3.77-0.22,5.45-0.6l0.8,69.21l0,0.04c0,0,0,0.05,0,0.17
+							c0.01,0.71-0.18,3.19-2.21,4.65c-2.52,1.84-8.16,4.77-15.78,4.97L376.78,361.21z M376.44,329.69c2.01-2.47,4.23-5.5,5.48-7.22
+							v14.37c-0.86-0.4-1.66-0.9-2.36-1.5C377.93,333.95,376.79,332.08,376.44,329.69z M383.64,337.47v-16.13
+							c0.15-0.01,0.3-0.01,0.42-0.01c0.35-0.01,0.71-0.09,1.26-0.2c0.16-0.04,0.33-0.07,0.51-0.11v16.86
+							C385.08,337.8,384.35,337.67,383.64,337.47z M387.55,337.9v-17.3c0.79-0.19,1.48-0.37,1.74-0.43h0.32v17.35
+							C388.95,337.73,388.27,337.86,387.55,337.9z M392.9,316.69c-0.1-0.31-0.29-0.77-0.88-0.97c-0.15-0.04-0.32-0.09-0.47-0.12
+							c0-0.54-0.01-1.3-0.01-1.89c0.01-0.41-0.06-0.81-0.2-1.17v-6.93h2.7c0.04,7.1,0.67,11.32,1.28,14.38
+							c0.65,3.19,1.26,5.02,1.25,7.57c0,2.74-1.05,5.35-2.79,7.26c-0.71,0.79-1.54,1.45-2.45,1.96v-16.75
+							c0.06-0.01,0.13-0.02,0.18-0.02c0.08-0.01,0.16-0.02,0.21-0.02c0.05,0,0.07,0,0.07,0c0.32,0,0.55-0.16,0.66-0.27
+							c0.37-0.41,0.36-0.65,0.46-0.98c0.07-0.32,0.1-0.68,0.11-1.04C393.02,317.35,393,317.03,392.9,316.69z M389.61,305.61v5.29
+							c-0.62-0.23-1.31-0.31-2.06-0.32v-4.97H389.61z M385.83,305.61v5.14c-0.75,0.16-1.5,0.42-2.19,0.72v-5.86H385.83z
+							 M381.92,305.61v6.72c-0.58,0.32-1.02,0.6-1.27,0.75c-0.78,0.49-1.83,1.43-2.03,1.61l0,0.01c0.3-2.3,0.52-5.19,0.55-9.09
+							H381.92z M313.75,419.25c0.22-0.25,23.43-26.9,23.43-26.9c0.09-0.1,0.15-0.21,0.18-0.34c0,0,6.87-25.35,6.92-25.52
+							c0.05-0.18,0.23-0.23,0.23-0.23s12.18-3.33,12.64-3.47c0.47-0.13,1.14-0.19,1.14-0.19l6.76-0.47
+							c-0.08,0.79-0.22,2.06-0.44,3.69c-1.15,8.57-4.66,27.05-13.22,37.12c-12.75,15.07-30.4,16.61-37.01,16.61
+							c-0.15,0-0.29,0-0.42,0C313.7,419.54,313.53,419.5,313.75,419.25z M313.33,421.25c0.31,0.01,0.66,0.01,1.04,0.01
+							c6.84,0,25.05-1.57,38.32-17.21c10.92-12.97,13.66-37.71,14.09-42.04l3.42-0.24c-0.12,1.77-0.42,5.97-0.96,11.64
+							c-0.71,7.61-1.83,17.85-3.46,28.38c-1.63,10.53-3.59,20.97-5.14,28.77c-1.15,5.77-2.07,10.09-2.47,11.95
+							c-0.04,0.17-0.25,0.48-0.65,0.48c-0.95,0-1.9,0.09-2.87,0.08c-3.14,0-6.39-0.29-9.59-0.91c-1.68-0.37-3.34-0.78-4.99-1.26
+							c-11.87-3.74-18.76-9.03-22.69-13.31c-1.97-2.15-3.2-4.06-3.93-5.42c-0.12-0.22-0.22-0.42-0.31-0.61
+							C313.05,421.37,313.16,421.25,313.33,421.25z M362.82,444.11c4.92-0.85,9.27-2.46,12.45-4.75l2.71,0.78
+							c0.1,0.03,0.2,0.04,0.3,0.04c0,0,2.52-0.14,2.73-0.15c0.72-0.04,1.04,0.38,1.04,0.53c0,0.15,0.02,0.34,0.02,0.34
+							s0.03,0.45-0.26,0.74c-0.27,0.27-2.21,0.8-2.92,1.03c-5.14,0.97-10.38,1.47-15.7,1.47
+							C363.07,444.12,362.94,444.11,362.82,444.11z M440.61,392.8c-4.25,10-10.29,18.98-18.02,26.71
+							c-7.72,7.71-16.7,13.77-26.7,18.01c-3.94,1.67-7.97,3.02-12.07,4.05l-0.1-1.67c0-1.01-1.14-1.51-1.77-1.51l-3.61,0.06
+							c0,0-1.11-0.27-1.25-0.31c-0.14-0.04-0.1-0.18-0.08-0.21c0.25-0.31,0.27-0.75,0.02-1.07l-2.76-3.6l0.09-2.56
+							c8.1-0.2,14.07-3.27,16.85-5.3c2.74-2.03,2.91-5.12,2.92-6.04c0-0.13,0-0.22-0.01-0.26l-0.08-7.18
+							c0.03-0.01,0.05-0.02,0.08-0.03l0,0l7.68-4.31c0.3-0.17,0.46-0.49,0.44-0.83l-5.04-56.18c0.22-0.07,0.93-0.32,1.74-0.62
+							c0.98-0.38,2.02-0.78,2.63-1.18c0.55-0.39,2.86-2.33,3.42-2.91c0.49-0.52,0.67-1.19,0.67-1.78c-0.01-0.92-0.36-1.75-0.72-2.4
+							c-0.32-0.55-0.75-1-1.23-1.39c1.06-2.36,1.6-4.97,1.59-7.67c0-4.71-1.13-8.42-2.21-11.93c-1.09-3.51-2.14-6.83-2.14-10.91
+							c0-7.57,0.08-12.07,0.08-12.08c0-0.23-0.09-0.45-0.25-0.62c-0.16-0.17-0.38-0.26-0.61-0.26c-2.54-0.01-4.12,0.83-4.99,1.77
+							c-0.41,0.44-0.65,0.87-0.81,1.23h-15.54c-0.15-0.39-0.41-0.89-0.83-1.4c-0.84-1.04-2.42-2.04-4.88-2.03
+							c-0.23,0-0.45,0.09-0.61,0.26c-0.16,0.16-0.25,0.38-0.25,0.61c0,0.01,0.05,5.71,0.05,13.7c0,0.63-0.03,1.25-0.08,1.87
+							c-0.32-0.5-0.66-1-1.02-1.48c-0.96-1.23-1.97-2.32-3.22-2.73c-1.12-0.34-2.79-0.86-4.75-1.46c-0.72-0.23-1.01-0.55-1.22-0.92
+							c-0.12-0.21-0.18-0.45-0.22-0.67l0.95,0.02h0.05c0.86-0.03,1.59-0.14,2.22-0.4c0.62-0.25,1.18-0.71,1.39-1.4
+							c0.11-0.35,0.14-0.69,0.14-0.99c0-0.34-0.04-0.63-0.09-0.85l0.41-0.72c0.13-0.23,0.15-0.51,0.05-0.75
+							c0.19-0.17,0.29-0.43,0.27-0.69l-0.06-0.88c0.04-0.01,0.08-0.02,0.13-0.02c0.26-0.05,0.53-0.11,0.82-0.24
+							c0.14-0.07,0.29-0.15,0.45-0.31c0.16-0.15,0.33-0.44,0.33-0.77c0-0.23-0.05-0.78-0.13-1.65c-0.19-2.12-0.52-5.72-0.63-6.84
+							c0.35-0.47,0.96-1.44,0.98-2.71c0-0.81-0.23-1.77-0.98-2.52c-0.72-0.73-1.85-1.16-3.35-1.18c-0.67-0.18-4.14-1.1-5.15-1.25
+							c-0.75-0.11-1.75-0.28-2.93-0.28c-2.01-0.01-4.55,0.53-7.31,2.67c-3.57,2.81-3.86,7.84-3.88,10.07c0,0.43,0.01,0.77,0.03,0.96
+							c-0.12,0.36-0.3,1.1-0.3,2.28c0,0.65,0.05,1.43,0.2,2.35c0.35,2.23,1.73,3.58,2.95,4.28c0.62,0.36,1.2,0.57,1.64,0.7v1.64
+							c-0.68,0.34-4.97,2.23-9.1,5.07c-0.09,0.08-0.43,0.27-0.75,0.64c-0.01,0.01-0.02,0.01-0.03,0.02l-46.43,46.95
+							c-0.16,0.16-0.25,0.39-0.25,0.63c0.01,0.23,0.11,0.46,0.28,0.61c0.01,0.01,3.2,2.91,6.74,6.15c0.88,0.81,1.79,1.63,2.67,2.44
+							l-8.51,11.67c-0.72,0.91-1.18,2.24-1.17,4c0.01,3.56,1.77,8.97,7.18,17.4c6.17,9.59,10.89,14.01,12.64,15.46l-2.25,2.58
+							c-0.08,0.08-0.8,0.84-1.54,1.83c-0.39,0.51-0.78,1.08-1.09,1.66c-0.08,0.14-0.15,0.28-0.21,0.43c-1.52-1.32-3-2.69-4.44-4.13
+							c-7.71-7.72-13.77-16.7-17.99-26.71c-4.39-10.34-6.61-21.35-6.61-32.71c0-11.33,2.22-22.33,6.61-32.69
+							c4.23-10.02,10.28-19,17.99-26.72c7.73-7.71,16.7-13.77,26.71-18.01c10.37-4.37,21.36-6.59,32.71-6.59
+							c11.34,0,22.34,2.21,32.7,6.59c10.01,4.24,18.99,10.3,26.7,18.01c7.72,7.72,13.77,16.7,18.02,26.72
+							c4.37,10.36,6.59,21.36,6.59,32.69C447.2,371.45,444.98,382.46,440.61,392.8z"/>
+					</g>
+				</g>
+			</g>
+			<g>
+				<path class="st0" d="M264.97,367.3c0.99-0.13,1.84-0.12,2.54,0.03c0.71,0.15,1.31,0.44,1.8,0.87c0.49,0.43,0.88,1.01,1.17,1.73
+					c0.29,0.71,0.5,1.58,0.63,2.59c0.11,0.86,0.12,1.67,0.04,2.4c-0.09,0.73-0.31,1.38-0.66,1.94c-0.35,0.56-0.83,1.02-1.45,1.39
+					c-0.62,0.36-2.09,0.67-2.09,0.67c-0.14,0.03-0.37,0.07-0.51,0.09l-7.6,0.99c-0.14,0.02-0.26,0.15-0.27,0.29l-0.06,1.12
+					c-0.01,0.14-0.13,0.28-0.27,0.3l-0.34,0.04c-0.14,0.02-0.27-0.08-0.29-0.22l-0.67-5.12c-0.02-0.14,0.08-0.27,0.23-0.29
+					l0.33-0.04c0.14-0.02,0.29,0.08,0.34,0.21l0.35,1.05c0.04,0.14,0.2,0.23,0.34,0.21l8.5-1.11c1.04-0.14,1.82-0.55,2.34-1.26
+					c0.52-0.7,0.7-1.67,0.54-2.89c-0.17-1.27-0.6-2.15-1.3-2.64c-0.7-0.49-2.81-0.48-2.81-0.48c-0.14,0-0.38,0.02-0.52,0.04
+					l-7.72,1.01c-0.14,0.02-0.27,0.15-0.27,0.29l-0.07,1.12c-0.01,0.15-0.13,0.28-0.27,0.3l-0.33,0.04
+					c-0.14,0.02-0.27-0.08-0.29-0.23l-0.6-4.59c-0.02-0.14,0.08-0.27,0.22-0.29l0.34-0.04c0.14-0.02,0.29,0.08,0.34,0.21l0.35,1.07
+					c0.04,0.13,0.2,0.23,0.34,0.21L264.97,367.3z"/>
+				<path class="st0" d="M255.8,355.4c0.01-0.14,0.12-0.32,0.24-0.39l10.73-6.4l-8.98-0.66c-0.14-0.01-0.29,0.09-0.33,0.23
+					l-0.29,1.06c-0.04,0.14-0.19,0.24-0.33,0.23l-0.34-0.02c-0.14-0.01-0.25-0.14-0.24-0.28l0.33-4.41
+					c0.01-0.14,0.14-0.25,0.28-0.24l0.34,0.03c0.14,0.01,0.27,0.14,0.29,0.28l0.13,1.12c0.02,0.14,0.15,0.27,0.29,0.28l12.72,0.96
+					c0.14,0.01,0.25,0.14,0.24,0.28l-0.1,1.25c-0.01,0.14-0.12,0.32-0.24,0.39l-12.4,7.27l10.45,0.79c0.14,0.01,0.29-0.09,0.33-0.23
+					l0.29-1.06c0.04-0.14,0.18-0.24,0.33-0.23l0.34,0.02c0.14,0.01,0.25,0.13,0.24,0.28l-0.34,4.42c-0.01,0.14-0.14,0.25-0.28,0.24
+					l-0.34-0.03c-0.14-0.01-0.27-0.14-0.29-0.28l-0.13-1.11c-0.02-0.14-0.15-0.27-0.29-0.28l-11.43-0.87
+					c-0.14-0.01-0.29,0.09-0.33,0.23l-0.29,1.08c-0.04,0.14-0.18,0.24-0.33,0.23l-0.34-0.02c-0.14-0.01-0.25-0.14-0.24-0.28
+					L255.8,355.4z"/>
+				<path class="st0" d="M260.2,331.58c0.14,0.04,0.25,0.18,0.24,0.32l-0.06,1.1c-0.01,0.14,0.1,0.29,0.24,0.33l11.13,2.78
+					c0.14,0.04,0.3-0.04,0.36-0.17l0.46-1c0.06-0.13,0.22-0.21,0.36-0.17l0.33,0.08c0.14,0.04,0.23,0.18,0.19,0.32l-1.25,5.01
+					c-0.04,0.14-0.18,0.22-0.31,0.19l-0.33-0.08c-0.14-0.03-0.25-0.18-0.24-0.32l0.06-1.1c0.01-0.14-0.1-0.29-0.24-0.32l-11.13-2.78
+					c-0.14-0.04-0.3,0.04-0.36,0.17l-0.47,1c-0.06,0.13-0.22,0.21-0.36,0.17l-0.33-0.09c-0.14-0.03-0.22-0.17-0.19-0.31l1.25-5.01
+					c0.04-0.14,0.18-0.22,0.32-0.19L260.2,331.58z"/>
+				<path class="st0" d="M277.64,323.14c0.1,0.1,0.14,0.29,0.08,0.42l-0.6,1.42c-0.06,0.13-0.22,0.23-0.36,0.22l-13.51-0.91
+					c-0.14-0.01-0.33,0.08-0.41,0.19l-0.5,0.68c-0.09,0.12-0.26,0.17-0.39,0.11l-0.31-0.13c-0.13-0.05-0.19-0.21-0.14-0.34
+					l1.85-4.35c0.06-0.13,0.21-0.19,0.34-0.14l0.31,0.13c0.13,0.05,0.22,0.22,0.19,0.36l-0.16,0.87c-0.02,0.14,0.07,0.26,0.21,0.28
+					l10.85,0.84l-7.97-7.62c-0.1-0.1-0.25-0.08-0.34,0.04l-0.6,0.88c-0.08,0.12-0.25,0.17-0.39,0.12l-0.31-0.13
+					c-0.13-0.06-0.19-0.21-0.14-0.34l1.67-3.92c0.06-0.13,0.21-0.19,0.34-0.14l0.31,0.13c0.13,0.06,0.22,0.22,0.19,0.36l-0.21,1.02
+					c-0.03,0.14,0.03,0.34,0.13,0.43L277.64,323.14z"/>
+				<path class="st0" d="M304.77,286.07c0.33-0.09,0.66-0.21,1.01-0.38c0.35-0.16,0.64-0.33,0.86-0.49
+					c0.78-0.58,1.26-1.19,1.45-1.85c0.19-0.66,0.05-1.3-0.41-1.93c-0.27-0.37-0.59-0.63-0.95-0.77c-0.36-0.14-0.74-0.21-1.14-0.22
+					c-0.4-0.01-0.82,0.03-1.25,0.11c-0.43,0.08-0.86,0.15-1.29,0.22c-0.65,0.09-1.23,0.16-1.76,0.23c-0.53,0.07-1.01,0.08-1.44,0.02
+					c-0.44-0.05-0.84-0.18-1.21-0.39c-0.37-0.21-0.72-0.54-1.05-0.99c-0.36-0.49-0.58-1.01-0.65-1.54c-0.07-0.53-0.01-1.07,0.17-1.6
+					c0.19-0.54,0.5-1.07,0.93-1.59c0.44-0.52,0.98-1.02,1.62-1.5c0.24-0.18,0.51-0.36,0.82-0.53c0.3-0.18,0.61-0.34,0.93-0.5
+					c0.32-0.15,0.63-0.3,0.94-0.43c0.31-0.13,0.6-0.22,0.6-0.22c0.14-0.04,0.28-0.05,0.31-0.02c0.04,0.03,0.12,0.16,0.19,0.28
+					l1.09,1.91c0.07,0.13,0.03,0.3-0.08,0.38l-0.72,0.53c-0.11,0.08-0.3,0.08-0.41-0.01l-1.33-1.12c-0.23,0-0.51,0.07-0.83,0.19
+					c-0.32,0.12-0.66,0.32-1.03,0.6c-0.67,0.5-1.08,1.04-1.25,1.65c-0.16,0.6-0.04,1.18,0.36,1.73c0.26,0.35,0.54,0.59,0.84,0.73
+					c0.3,0.13,0.62,0.2,0.96,0.2c0.34,0,0.7-0.03,1.06-0.11c0.37-0.08,0.75-0.15,1.14-0.22c0.54-0.07,1.1-0.16,1.69-0.27
+					c0.58-0.1,1.15-0.14,1.71-0.12c0.55,0.02,1.07,0.14,1.56,0.34c0.49,0.2,0.9,0.56,1.26,1.08c0.45,0.67,0.7,1.31,0.76,1.92
+					c0.06,0.61-0.02,1.19-0.25,1.75c-0.22,0.55-0.58,1.09-1.07,1.61c-0.49,0.52-1.07,1.02-1.72,1.5c-0.59,0.44-1.21,0.81-1.86,1.13
+					c-0.65,0.32-1.49,0.66-1.49,0.66c-0.13,0.05-0.27,0.07-0.3,0.04c-0.03-0.03-0.12-0.16-0.19-0.28l-1.1-1.9
+					c-0.07-0.13-0.04-0.3,0.08-0.38l0.72-0.53c0.11-0.09,0.3-0.08,0.41,0.01L304.77,286.07z"/>
+				<path class="st0" d="M315.05,264.93c0.07,0.13,0.03,0.3-0.08,0.4l-0.86,0.69c-0.11,0.09-0.15,0.27-0.08,0.39l5.43,10.11
+					c0.07,0.13,0.24,0.19,0.37,0.15l1.05-0.33c0.14-0.04,0.3,0.02,0.37,0.15l0.16,0.3c0.07,0.13,0.02,0.28-0.11,0.35l-4.55,2.44
+					c-0.13,0.07-0.28,0.02-0.35-0.11l-0.16-0.3c-0.07-0.12-0.03-0.3,0.08-0.39l0.85-0.7c0.11-0.09,0.15-0.26,0.08-0.39l-5.43-10.1
+					c-0.07-0.13-0.23-0.2-0.37-0.15l-1.05,0.33c-0.14,0.04-0.3-0.03-0.37-0.15l-0.16-0.3c-0.07-0.13-0.02-0.29,0.11-0.35l4.55-2.45
+					c0.13-0.07,0.29-0.02,0.35,0.11L315.05,264.93z"/>
+				<path class="st0" d="M320.7,261.63c0.03-0.08,0.17-0.19,0.3-0.24l10.61-3.86c0.14-0.05,0.3-0.07,0.37-0.05
+					c0.07,0.02,0.17,0.15,0.22,0.28l0.91,2.27c0.05,0.13-0.01,0.28-0.15,0.33l-0.85,0.31c-0.14,0.05-0.31-0.01-0.39-0.13l-0.75-1.11
+					c-0.08-0.12-0.26-0.18-0.39-0.14l-1.11,0.33c-0.14,0.04-0.36,0.11-0.49,0.16l-1.08,0.39l3.98,10.97
+					c0.05,0.13,0.21,0.23,0.35,0.2l1.09-0.17c0.14-0.02,0.3,0.07,0.35,0.2l0.12,0.32c0.05,0.14-0.02,0.28-0.16,0.33l-4.85,1.76
+					c-0.14,0.05-0.29-0.02-0.33-0.16l-0.12-0.32c-0.05-0.13,0.01-0.3,0.13-0.37l0.95-0.57c0.12-0.07,0.18-0.24,0.13-0.38
+					l-3.99-10.97l-1.08,0.4c-0.14,0.05-0.35,0.14-0.49,0.19l-1.06,0.46c-0.13,0.06-0.23,0.22-0.21,0.36l0.14,1.33
+					c0.02,0.14-0.08,0.3-0.22,0.35l-0.85,0.31c-0.14,0.05-0.28-0.02-0.33-0.16l-0.73-2.25C320.68,261.89,320.67,261.71,320.7,261.63
+					z"/>
+				<path class="st0" d="M346.68,263.13l-4.74,0.9l-0.73,4.34c-0.02,0.14,0.07,0.26,0.22,0.26l0.98,0.02c0.14,0,0.28,0.12,0.31,0.26
+					l0.06,0.33c0.02,0.14-0.07,0.28-0.21,0.3l-4.15,0.78c-0.14,0.02-0.28-0.07-0.3-0.21l-0.06-0.33c-0.03-0.14,0.06-0.3,0.19-0.36
+					l0.85-0.36c0.13-0.06,0.26-0.22,0.29-0.36l2.62-13.64c0.03-0.14,0.17-0.28,0.3-0.31l1.82-0.34c0.14-0.02,0.31,0.05,0.38,0.18
+					l6.75,11.86c0.07,0.12,0.25,0.23,0.39,0.23l0.9,0.03c0.15,0,0.28,0.12,0.31,0.26l0.06,0.33c0.03,0.14-0.07,0.28-0.21,0.3
+					l-4.75,0.9c-0.14,0.02-0.28-0.07-0.31-0.21l-0.06-0.33c-0.03-0.14,0.06-0.3,0.19-0.36l0.85-0.36c0.13-0.05,0.18-0.2,0.12-0.33
+					L346.68,263.13z M343.24,256.89l-1.09,6.03l4-0.75L343.24,256.89z"/>
+				<path class="st0" d="M359.81,266.05c0.31,0.12,0.66,0.22,1.04,0.29c0.38,0.07,0.71,0.11,0.98,0.11c0.97,0,1.72-0.21,2.27-0.63
+					c0.54-0.42,0.81-1.01,0.81-1.79c0-0.46-0.11-0.86-0.31-1.18c-0.21-0.33-0.47-0.61-0.79-0.86c-0.32-0.25-0.68-0.46-1.08-0.65
+					c-0.39-0.19-0.79-0.39-1.17-0.59c-0.57-0.31-1.09-0.59-1.56-0.85c-0.46-0.26-0.86-0.53-1.18-0.83c-0.32-0.3-0.57-0.64-0.74-1.03
+					c-0.17-0.39-0.26-0.86-0.26-1.42c0-0.61,0.13-1.16,0.38-1.63c0.26-0.47,0.62-0.87,1.09-1.19c0.47-0.32,1.03-0.57,1.69-0.73
+					c0.66-0.17,1.39-0.25,2.2-0.26c0.3,0,0.62,0.02,0.97,0.06c0.35,0.04,0.7,0.09,1.04,0.15c0.35,0.06,0.69,0.13,1.01,0.21
+					c0.33,0.08,0.61,0.18,0.61,0.18c0.13,0.05,0.26,0.12,0.27,0.16c0.01,0.05,0.01,0.2-0.01,0.34l-0.26,2.18
+					c-0.02,0.14-0.15,0.26-0.29,0.26l-0.89,0c-0.14,0-0.29-0.11-0.32-0.25l-0.42-1.69c-0.19-0.14-0.45-0.25-0.78-0.33
+					c-0.33-0.09-0.72-0.13-1.19-0.13c-0.83,0-1.49,0.2-1.98,0.59c-0.49,0.39-0.73,0.93-0.73,1.61c0,0.44,0.09,0.8,0.25,1.08
+					c0.16,0.28,0.38,0.53,0.66,0.73c0.27,0.2,0.58,0.38,0.92,0.54c0.34,0.16,0.69,0.32,1.05,0.5c0.48,0.26,0.98,0.52,1.52,0.78
+					c0.53,0.26,1.01,0.57,1.44,0.91c0.43,0.35,0.78,0.74,1.06,1.19c0.27,0.45,0.4,0.99,0.37,1.61c-0.04,0.81-0.21,1.47-0.52,2
+					c-0.31,0.53-0.72,0.95-1.23,1.26c-0.51,0.32-1.12,0.54-1.82,0.66c-0.7,0.13-1.46,0.19-2.28,0.19c-0.74,0-1.46-0.06-2.17-0.18
+					c-0.71-0.13-1.59-0.35-1.59-0.35c-0.14-0.04-0.26-0.1-0.26-0.15c-0.01-0.04,0-0.2,0.02-0.34l0.24-2.18
+					c0.02-0.14,0.15-0.26,0.29-0.26l0.89,0c0.14,0,0.29,0.11,0.32,0.25L359.81,266.05z"/>
+				<path class="st0" d="M396.87,271.85c-1.56,0.84-3.4,0.91-5.53,0.22c-1.03-0.33-1.89-0.78-2.6-1.34
+					c-0.71-0.56-1.24-1.22-1.61-1.98c-0.37-0.76-0.56-1.62-0.57-2.58c-0.01-0.96,0.17-2,0.53-3.13c0.38-1.18,0.87-2.17,1.48-2.96
+					c0.6-0.79,1.29-1.39,2.06-1.81c0.77-0.41,1.62-0.64,2.54-0.67c0.92-0.04,1.89,0.11,2.9,0.43c1.01,0.33,1.87,0.77,2.59,1.33
+					c0.71,0.56,1.26,1.23,1.63,2c0.37,0.77,0.57,1.64,0.58,2.61c0.02,0.96-0.16,2.02-0.53,3.16
+					C399.58,269.44,398.43,271.02,396.87,271.85z M398.16,261.55c-0.38-1.2-1.21-2-2.49-2.42c-1.3-0.42-2.45-0.27-3.46,0.45
+					c-1,0.72-1.84,2.09-2.49,4.12c-0.67,2.05-0.81,3.67-0.44,4.87c0.37,1.2,1.21,2,2.5,2.42c1.3,0.42,2.45,0.27,3.46-0.45
+					c1.01-0.72,1.84-2.09,2.49-4.12C398.39,264.37,398.53,262.75,398.16,261.55z"/>
+				<path class="st0" d="M405.28,276.06c0.22,0.26,0.47,0.51,0.77,0.76c0.3,0.25,0.57,0.44,0.81,0.57c0.85,0.46,1.61,0.64,2.29,0.53
+					c0.68-0.1,1.2-0.5,1.57-1.18c0.22-0.41,0.32-0.8,0.3-1.19c-0.02-0.38-0.12-0.76-0.28-1.13c-0.17-0.37-0.37-0.73-0.63-1.08
+					c-0.26-0.36-0.5-0.71-0.74-1.08c-0.35-0.55-0.67-1.05-0.95-1.5c-0.28-0.45-0.49-0.88-0.63-1.3c-0.14-0.42-0.19-0.83-0.15-1.26
+					c0.04-0.42,0.19-0.88,0.45-1.37c0.29-0.54,0.67-0.96,1.12-1.24c0.45-0.29,0.96-0.47,1.53-0.52c0.57-0.06,1.18,0,1.84,0.17
+					c0.66,0.17,1.34,0.45,2.05,0.83c0.26,0.14,0.54,0.31,0.82,0.52c0.29,0.2,0.57,0.41,0.84,0.63c0.28,0.22,0.54,0.45,0.79,0.67
+					c0.25,0.23,0.45,0.45,0.45,0.45c0.1,0.11,0.17,0.23,0.15,0.27c-0.01,0.04-0.09,0.18-0.17,0.29l-1.27,1.79
+					c-0.08,0.12-0.26,0.16-0.38,0.09l-0.78-0.43c-0.13-0.07-0.2-0.24-0.16-0.38l0.45-1.68c-0.1-0.21-0.28-0.43-0.52-0.67
+					c-0.25-0.23-0.57-0.46-0.98-0.68c-0.73-0.39-1.4-0.54-2.02-0.43c-0.62,0.11-1.09,0.46-1.41,1.06c-0.21,0.38-0.31,0.74-0.3,1.07
+					c0.01,0.33,0.08,0.65,0.22,0.96c0.14,0.31,0.33,0.61,0.55,0.92c0.23,0.3,0.45,0.61,0.68,0.94c0.29,0.45,0.61,0.93,0.95,1.41
+					c0.34,0.49,0.62,0.99,0.83,1.5c0.21,0.51,0.33,1.03,0.35,1.55c0.02,0.53-0.13,1.06-0.45,1.6c-0.42,0.69-0.89,1.19-1.42,1.5
+					c-0.53,0.31-1.09,0.48-1.69,0.51c-0.6,0.03-1.24-0.07-1.91-0.29c-0.67-0.23-1.37-0.53-2.09-0.92c-0.65-0.35-1.25-0.75-1.81-1.2
+					c-0.56-0.45-1.23-1.07-1.23-1.07c-0.11-0.1-0.18-0.21-0.16-0.26c0.02-0.04,0.1-0.17,0.18-0.29l1.26-1.8
+					c0.08-0.11,0.25-0.15,0.38-0.09l0.78,0.42c0.13,0.07,0.2,0.24,0.16,0.38L405.28,276.06z"/>
+				<path class="st0" d="M420.17,285.46c-0.09,0.11-0.07,0.28,0.04,0.37l1.76,1.38c0.11,0.09,0.3,0.23,0.42,0.31l0.94,0.65
+					c0.12,0.08,0.31,0.07,0.42-0.02l1.15-0.93c0.11-0.09,0.3-0.09,0.41,0l0.72,0.56c0.11,0.09,0.13,0.25,0.04,0.36l-1.52,1.81
+					c-0.09,0.11-0.21,0.24-0.26,0.28c-0.05,0.05-0.19,0.01-0.3-0.08l-7.63-5.98c-0.11-0.09-0.13-0.25-0.04-0.37l0.21-0.26
+					c0.09-0.11,0.27-0.15,0.39-0.09l0.98,0.5c0.13,0.07,0.3,0.03,0.39-0.09l7.08-9.02c0.09-0.11,0.08-0.29-0.01-0.4l-0.72-0.83
+					c-0.09-0.11-0.1-0.29-0.01-0.4l0.21-0.26c0.09-0.11,0.25-0.14,0.37-0.05l4.05,3.17c0.11,0.09,0.13,0.25,0.05,0.37l-0.21,0.27
+					c-0.09,0.11-0.26,0.15-0.39,0.09l-0.98-0.5c-0.13-0.07-0.31-0.03-0.39,0.09L420.17,285.46z"/>
+				<path class="st0" d="M437.11,301.52c-1.77-0.08-3.39-0.95-4.87-2.63c-0.71-0.81-1.23-1.63-1.55-2.47
+					c-0.32-0.84-0.45-1.68-0.38-2.53c0.07-0.85,0.35-1.68,0.82-2.51c0.48-0.83,1.16-1.64,2.05-2.42c0.93-0.82,1.86-1.42,2.78-1.8
+					c0.92-0.38,1.82-0.55,2.69-0.51c0.87,0.04,1.71,0.28,2.53,0.72c0.81,0.44,1.57,1.05,2.27,1.85c0.7,0.8,1.22,1.62,1.55,2.46
+					c0.33,0.85,0.45,1.7,0.38,2.55c-0.07,0.86-0.35,1.7-0.83,2.54c-0.48,0.84-1.17,1.65-2.07,2.45
+					C440.67,300.83,438.88,301.6,437.11,301.52z M443.46,293.31c0.29-1.22-0.02-2.34-0.91-3.35c-0.9-1.02-1.97-1.48-3.2-1.37
+					c-1.23,0.11-2.65,0.87-4.24,2.27c-1.62,1.43-2.57,2.75-2.86,3.97c-0.29,1.22,0.01,2.34,0.92,3.36c0.9,1.02,1.97,1.48,3.2,1.37
+					c1.23-0.11,2.65-0.86,4.24-2.27C442.23,295.86,443.18,294.54,443.46,293.31z"/>
+				<path class="st0" d="M449.33,310.52c0.11-0.09,0.14-0.27,0.07-0.39l-1.55-2.64l-5.11,3.08l1.67,2.81
+					c0.07,0.12,0.2,0.32,0.28,0.44l0.64,0.94c0.08,0.12,0.26,0.18,0.39,0.14l1.4-0.46c0.13-0.04,0.31,0.02,0.38,0.14l0.48,0.8
+					c0.07,0.12,0.03,0.28-0.1,0.35l-2.07,1.14c-0.13,0.07-0.28,0.14-0.34,0.17c-0.06,0.02-0.18-0.06-0.25-0.18l-5.37-9.04
+					c-0.07-0.12-0.03-0.28,0.09-0.36l0.29-0.17c0.12-0.07,0.3-0.05,0.4,0.06l0.73,0.83c0.09,0.11,0.27,0.13,0.4,0.06l9.86-5.86
+					c0.12-0.07,0.18-0.24,0.14-0.38l-0.37-1.04c-0.05-0.14,0.01-0.3,0.14-0.38l0.29-0.17c0.12-0.07,0.28-0.03,0.36,0.09l5.12,8.62
+					c0.07,0.12,0.13,0.28,0.12,0.36c-0.01,0.07-0.11,0.2-0.23,0.28l-2.06,1.32c-0.12,0.08-0.28,0.04-0.35-0.08l-0.47-0.78
+					c-0.07-0.12-0.05-0.3,0.06-0.4l1.12-1.05c0.1-0.1,0.14-0.28,0.07-0.41l-0.53-1.03c-0.06-0.13-0.18-0.33-0.25-0.45l-1.51-2.55
+					l-4.52,2.7l1.56,2.63c0.07,0.12,0.24,0.18,0.38,0.13l1.03-0.39c0.13-0.05,0.3,0.01,0.38,0.14l0.39,0.66
+					c0.07,0.13,0.03,0.28-0.09,0.36l-3.33,1.98c-0.12,0.07-0.28,0.03-0.36-0.09l-0.39-0.66c-0.07-0.12-0.04-0.3,0.07-0.39
+					L449.33,310.52z"/>
+				<path class="st0" d="M280.36,304.41c-0.13-0.06-0.3,0-0.38,0.12l-1.68,2.56l5.02,3.23l1.79-2.74c0.08-0.12,0.2-0.32,0.27-0.45
+					l0.56-0.99c0.07-0.13,0.05-0.31-0.05-0.41l-1.03-1.05c-0.1-0.1-0.12-0.28-0.04-0.4l0.51-0.78c0.08-0.12,0.24-0.15,0.36-0.07
+					l1.94,1.36c0.12,0.08,0.25,0.19,0.3,0.23c0.05,0.05,0.03,0.18-0.05,0.3l-5.74,8.81c-0.08,0.12-0.24,0.15-0.36,0.07l-0.28-0.18
+					c-0.12-0.08-0.17-0.25-0.12-0.38l0.42-1.02c0.05-0.13,0-0.3-0.12-0.38l-9.61-6.26c-0.12-0.08-0.3-0.06-0.4,0.05l-0.77,0.79
+					c-0.1,0.1-0.28,0.12-0.4,0.04l-0.28-0.18c-0.12-0.08-0.15-0.24-0.08-0.36l5.48-8.4c0.08-0.12,0.2-0.24,0.27-0.27
+					c0.07-0.03,0.23,0.01,0.35,0.09l2.1,1.27c0.12,0.07,0.16,0.23,0.08,0.35l-0.5,0.76c-0.08,0.12-0.25,0.18-0.39,0.13l-1.44-0.53
+					c-0.13-0.05-0.31,0-0.4,0.12l-0.69,0.93c-0.09,0.12-0.22,0.31-0.3,0.43l-1.63,2.48l4.42,2.87l1.67-2.56
+					c0.08-0.12,0.06-0.3-0.05-0.39l-0.8-0.76c-0.1-0.1-0.12-0.28-0.05-0.4l0.42-0.64c0.08-0.12,0.24-0.16,0.36-0.08l3.25,2.12
+					c0.12,0.08,0.16,0.24,0.08,0.36l-0.42,0.65c-0.08,0.12-0.25,0.17-0.38,0.11L280.36,304.41z"/>
+				<path class="st0" d="M463.07,321.79c0.05,0.13,0.02,0.34-0.07,0.46l-7.32,10.14l8.52-2.97c0.13-0.05,0.23-0.2,0.21-0.34
+					l-0.16-1.09c-0.02-0.14,0.07-0.3,0.21-0.34l0.32-0.11c0.14-0.05,0.29,0.03,0.33,0.16l1.45,4.18c0.05,0.14-0.03,0.29-0.16,0.33
+					l-0.32,0.11c-0.13,0.05-0.3-0.01-0.38-0.14l-0.56-0.98c-0.07-0.12-0.24-0.19-0.38-0.14l-12.06,4.17
+					c-0.14,0.05-0.28-0.03-0.33-0.16l-0.41-1.19c-0.05-0.14-0.02-0.34,0.07-0.46l8.49-11.61l-9.91,3.43
+					c-0.14,0.05-0.23,0.2-0.21,0.34l0.16,1.09c0.02,0.14-0.07,0.3-0.21,0.34l-0.32,0.11c-0.14,0.05-0.29-0.02-0.33-0.16l-1.45-4.18
+					c-0.05-0.13,0.02-0.29,0.16-0.33l0.32-0.11c0.13-0.05,0.3,0.01,0.37,0.14l0.56,0.97c0.07,0.12,0.24,0.19,0.38,0.14l10.84-3.75
+					c0.14-0.05,0.23-0.2,0.21-0.34l-0.16-1.11c-0.02-0.14,0.07-0.3,0.21-0.34l0.32-0.11c0.14-0.04,0.28,0.03,0.33,0.16
+					L463.07,321.79z"/>
+				<path class="st0" d="M455.55,343.72c-0.08,0.32-0.12,0.68-0.14,1.07c-0.02,0.39-0.01,0.72,0.03,0.99
+					c0.14,0.95,0.45,1.67,0.94,2.15c0.49,0.48,1.12,0.67,1.89,0.56c0.46-0.07,0.83-0.22,1.13-0.48c0.29-0.25,0.54-0.55,0.74-0.9
+					c0.2-0.35,0.36-0.74,0.49-1.16c0.13-0.42,0.27-0.83,0.42-1.24c0.23-0.61,0.44-1.17,0.63-1.66c0.19-0.5,0.41-0.92,0.66-1.29
+					c0.25-0.36,0.56-0.65,0.92-0.87c0.36-0.22,0.82-0.37,1.37-0.45c0.61-0.09,1.16-0.04,1.66,0.15c0.5,0.19,0.95,0.49,1.33,0.91
+					c0.38,0.42,0.7,0.94,0.96,1.58c0.26,0.63,0.44,1.35,0.56,2.14c0.04,0.3,0.07,0.62,0.08,0.96c0.01,0.35,0.01,0.7,0,1.05
+					c-0.01,0.35-0.04,0.7-0.07,1.03c-0.04,0.34-0.09,0.63-0.09,0.63c-0.03,0.14-0.08,0.27-0.13,0.29c-0.04,0.02-0.2,0.04-0.34,0.04
+					l-2.2,0.05c-0.14,0-0.28-0.11-0.3-0.25l-0.13-0.88c-0.02-0.14,0.07-0.3,0.21-0.36l1.61-0.64c0.11-0.21,0.18-0.48,0.22-0.81
+					c0.04-0.34,0.03-0.73-0.04-1.2c-0.12-0.82-0.4-1.45-0.86-1.88c-0.46-0.43-1.02-0.59-1.69-0.5c-0.43,0.06-0.78,0.19-1.04,0.4
+					c-0.26,0.2-0.47,0.45-0.64,0.75c-0.16,0.3-0.3,0.63-0.41,0.99c-0.11,0.36-0.22,0.73-0.35,1.1c-0.19,0.51-0.38,1.05-0.56,1.61
+					c-0.19,0.56-0.42,1.08-0.71,1.56c-0.28,0.47-0.63,0.88-1.03,1.21c-0.41,0.33-0.92,0.53-1.55,0.59c-0.8,0.08-1.49,0-2.05-0.24
+					c-0.56-0.24-1.04-0.58-1.42-1.04c-0.38-0.46-0.69-1.03-0.91-1.71c-0.22-0.67-0.39-1.42-0.51-2.23c-0.1-0.73-0.14-1.45-0.12-2.17
+					c0.03-0.72,0.13-1.62,0.13-1.62c0.02-0.14,0.06-0.27,0.11-0.28c0.04-0.01,0.2-0.02,0.34-0.03l2.2-0.06
+					c0.14-0.01,0.28,0.11,0.3,0.25l0.13,0.88c0.02,0.14-0.07,0.3-0.2,0.36L455.55,343.72z"/>
+				<path class="st0" d="M469.32,363.04c-0.14,0-0.28-0.11-0.31-0.25l-0.22-1.08c-0.03-0.14-0.17-0.25-0.31-0.25l-11.47,0.05
+					c-0.15,0-0.28,0.12-0.31,0.26l-0.2,1.08c-0.03,0.14-0.16,0.26-0.31,0.26l-0.34,0c-0.14,0-0.26-0.12-0.26-0.26l-0.02-5.16
+					c0-0.14,0.12-0.26,0.26-0.26h0.34c0.14,0,0.28,0.11,0.31,0.25l0.21,1.08c0.03,0.14,0.17,0.25,0.31,0.25l11.47-0.05
+					c0.14,0,0.28-0.12,0.31-0.26l0.2-1.08c0.03-0.14,0.17-0.26,0.31-0.26l0.34,0c0.15,0,0.26,0.12,0.26,0.26l0.02,5.16
+					c0,0.14-0.12,0.26-0.26,0.26L469.32,363.04z"/>
+				<path class="st0" d="M456.19,371.77c-0.17,0.29-0.32,0.62-0.45,0.98c-0.13,0.36-0.22,0.68-0.26,0.95
+					c-0.15,0.95-0.06,1.73,0.27,2.34c0.32,0.6,0.87,0.96,1.64,1.08c0.46,0.07,0.87,0.03,1.22-0.12c0.35-0.15,0.68-0.37,0.97-0.64
+					c0.29-0.28,0.56-0.6,0.81-0.96c0.25-0.36,0.5-0.71,0.77-1.06c0.4-0.51,0.76-0.98,1.09-1.4c0.33-0.42,0.66-0.76,1.01-1.03
+					c0.35-0.27,0.72-0.46,1.14-0.57c0.41-0.11,0.89-0.12,1.44-0.03c0.61,0.09,1.12,0.31,1.55,0.63c0.43,0.33,0.76,0.75,1,1.27
+					c0.24,0.51,0.4,1.11,0.45,1.79c0.06,0.68,0.03,1.42-0.1,2.21c-0.04,0.3-0.12,0.61-0.21,0.95c-0.09,0.34-0.2,0.67-0.31,1
+					c-0.11,0.34-0.24,0.65-0.37,0.97c-0.13,0.31-0.27,0.57-0.27,0.57c-0.07,0.13-0.16,0.23-0.21,0.24c-0.05,0-0.2-0.03-0.34-0.06
+					l-2.12-0.6c-0.14-0.04-0.23-0.19-0.21-0.33l0.14-0.88c0.02-0.14,0.16-0.26,0.3-0.28l1.73-0.14c0.16-0.17,0.31-0.41,0.45-0.71
+					c0.14-0.31,0.24-0.69,0.32-1.15c0.13-0.82,0.04-1.5-0.27-2.05c-0.31-0.54-0.8-0.87-1.47-0.97c-0.43-0.07-0.8-0.04-1.11,0.07
+					c-0.31,0.12-0.59,0.29-0.83,0.53c-0.24,0.24-0.47,0.51-0.68,0.82c-0.21,0.31-0.43,0.63-0.66,0.95
+					c-0.33,0.43-0.67,0.89-1.01,1.37c-0.35,0.48-0.72,0.91-1.13,1.28c-0.41,0.37-0.86,0.65-1.35,0.85c-0.48,0.2-1.04,0.24-1.65,0.11
+					c-0.79-0.17-1.42-0.44-1.89-0.83c-0.47-0.39-0.82-0.87-1.05-1.42c-0.23-0.55-0.35-1.19-0.36-1.9c-0.01-0.71,0.05-1.47,0.17-2.28
+					c0.11-0.73,0.29-1.43,0.53-2.11s0.6-1.51,0.6-1.51c0.06-0.13,0.14-0.24,0.19-0.24c0.04,0,0.2,0.03,0.33,0.07l2.12,0.58
+					c0.14,0.04,0.23,0.18,0.21,0.33l-0.14,0.88c-0.02,0.14-0.16,0.27-0.3,0.28L456.19,371.77z"/>
+			</g>
+			<g>
+				<path class="st0" d="M301.44,445.62c0.13,0.06,0.3,0.01,0.38-0.11l5.9-8.48l-10.99,6.23c-0.13,0.07-0.32,0.05-0.43-0.04
+					l-0.44-0.36c-0.11-0.09-0.17-0.28-0.14-0.42l3.18-11.87l-6.67,7.27c-0.1,0.1-0.12,0.28-0.03,0.39l0.67,0.91
+					c0.09,0.12,0.08,0.3-0.02,0.4l-0.23,0.24c-0.1,0.1-0.26,0.11-0.37,0.01l-3.25-3.03c-0.11-0.1-0.11-0.26-0.01-0.37l0.23-0.25
+					c0.1-0.1,0.28-0.13,0.4-0.05l0.94,0.59c0.12,0.07,0.3,0.05,0.4-0.05l7.55-8.38c0.1-0.11,0.1-0.28,0-0.39l-0.71-0.85
+					c-0.09-0.11-0.09-0.29,0-0.4l0.21-0.26c0.09-0.11,0.26-0.13,0.37-0.04l3.4,2.76c0.11,0.09,0.17,0.28,0.14,0.42l-2.71,10.45
+					l9.31-5.07c0.13-0.07,0.32-0.05,0.43,0.04l3.26,2.65c0.11,0.09,0.13,0.25,0.04,0.36l-0.21,0.26c-0.09,0.11-0.27,0.15-0.39,0.08
+					l-0.98-0.53c-0.13-0.07-0.3-0.03-0.39,0.08l-6.44,9.15c-0.08,0.12-0.07,0.3,0.03,0.41l0.76,0.81c0.1,0.1,0.11,0.28,0.02,0.4
+					l-0.2,0.27c-0.09,0.12-0.25,0.14-0.36,0.06l-4.19-3.07c-0.11-0.08-0.14-0.25-0.06-0.36l0.2-0.27c0.08-0.12,0.26-0.16,0.39-0.1
+					L301.44,445.62z"/>
+				<path class="st0" d="M326.06,444.89c1.01,0.51,1.89,1.09,2.65,1.74c0.75,0.64,1.32,1.37,1.7,2.17c0.38,0.8,0.55,1.69,0.51,2.66
+					c-0.05,0.98-0.37,2.05-0.97,3.23c-0.56,1.1-1.22,1.98-1.98,2.63c-0.76,0.65-1.58,1.09-2.47,1.31c-0.89,0.22-1.83,0.24-2.83,0.06
+					c-1-0.18-2.85-0.97-2.85-0.97c-0.13-0.06-0.34-0.15-0.47-0.22l-4.96-2.54c-0.13-0.06-0.18-0.22-0.11-0.35l0.15-0.3
+					c0.06-0.13,0.23-0.2,0.37-0.16l1.07,0.31c0.14,0.04,0.3-0.03,0.37-0.16l5.21-10.18c0.07-0.13,0.03-0.3-0.09-0.39l-0.87-0.68
+					c-0.11-0.09-0.15-0.26-0.09-0.39l0.15-0.3c0.07-0.13,0.22-0.18,0.35-0.11L326.06,444.89z M328.39,450.92
+					c0.14-0.79,0.12-1.51-0.05-2.15c-0.18-0.64-0.52-1.22-1.01-1.72c-0.5-0.51-1.73-1.24-1.73-1.24c-0.12-0.08-0.33-0.19-0.46-0.25
+					l-1.3-0.67l-5.53,10.81l1.24,0.64c0.6,0.3,1.18,0.55,1.73,0.74c0.56,0.18,1.09,0.27,1.61,0.26c0.82-0.07,1.62-0.39,2.41-0.96
+					c0.79-0.58,1.51-1.51,2.16-2.79C327.94,452.6,328.25,451.71,328.39,450.92z"/>
+				<path class="st0" d="M350.52,454.96c-0.03-0.48-0.02-0.56-0.03-0.9c-0.02-0.42-0.15-0.57-0.57-0.84
+					c-0.17-0.1-0.35-0.19-0.54-0.27c-0.31-0.14-0.66-0.25-1.05-0.32c-0.71-0.13-1.38-0.12-2.01,0.02c-0.63,0.14-1.19,0.42-1.69,0.84
+					c-0.5,0.42-0.93,0.98-1.29,1.68c-0.36,0.7-0.62,1.55-0.8,2.52c-0.38,2.08-0.23,3.69,0.44,4.85c0.67,1.16,1.84,1.89,3.49,2.19
+					c0.48,0.09,1.01,0.12,1.58,0.1c0.49-0.02,1.04-0.09,1.68-0.17c0.33-0.04,0.36,0.2,0.36,0.2l0.04,0.26c0,0,0.03,0.3-0.22,0.4
+					c-0.56,0.21-1.2,0.36-1.91,0.46c-0.83,0.11-1.73,0.08-2.72-0.1c-0.94-0.17-1.8-0.46-2.58-0.86c-0.78-0.41-1.41-0.94-1.92-1.62
+					c-0.5-0.67-0.85-1.49-1.04-2.45c-0.19-0.96-0.16-2.08,0.07-3.37c0.24-1.3,0.63-2.38,1.18-3.25c0.55-0.86,1.22-1.54,2.01-2.03
+					c0.78-0.49,1.66-0.79,2.64-0.92c0.98-0.13,2.01-0.09,3.1,0.11c0.74,0.14,1.42,0.33,2.04,0.59c0.43,0.18,0.84,0.36,1.22,0.55
+					c0.53,0.26,0.39,0.71,0.39,0.71l-0.57,1.88c0,0-0.14,0.41-0.5,0.35c-0.32-0.06-0.52-0.09-0.52-0.09S350.55,455.44,350.52,454.96
+					z"/>
+				<path class="st0" d="M372.31,455.44c-0.14-0.46-0.15-0.54-0.24-0.87c-0.12-0.4-0.29-0.52-0.76-0.68
+					c-0.18-0.06-0.38-0.11-0.59-0.14c-0.33-0.06-0.7-0.08-1.09-0.06c-0.73,0.04-1.37,0.21-1.95,0.49c-0.57,0.29-1.05,0.69-1.44,1.22
+					c-0.39,0.53-0.67,1.18-0.85,1.94c-0.18,0.77-0.24,1.65-0.18,2.64c0.12,2.1,0.65,3.64,1.58,4.61c0.93,0.96,2.23,1.4,3.91,1.3
+					c0.49-0.03,1.01-0.12,1.56-0.28c0.47-0.13,0.99-0.33,1.59-0.56c0.31-0.12,0.4,0.11,0.4,0.11l0.09,0.24c0,0,0.1,0.28-0.12,0.44
+					c-0.49,0.34-1.08,0.63-1.75,0.9c-0.78,0.3-1.66,0.49-2.66,0.55c-0.96,0.06-1.86-0.02-2.71-0.23c-0.85-0.21-1.6-0.58-2.25-1.11
+					c-0.65-0.53-1.18-1.25-1.59-2.13c-0.41-0.89-0.65-1.99-0.73-3.29c-0.08-1.32,0.05-2.46,0.38-3.43c0.33-0.97,0.82-1.79,1.47-2.45
+					c0.65-0.66,1.43-1.16,2.35-1.52c0.92-0.35,1.93-0.57,3.04-0.63c0.75-0.05,1.46-0.02,2.12,0.09c0.46,0.07,0.9,0.15,1.32,0.24
+					c0.58,0.13,0.55,0.6,0.55,0.6l-0.11,1.96c0,0-0.03,0.43-0.4,0.46c-0.33,0.02-0.52,0.03-0.52,0.03S372.46,455.9,372.31,455.44z"
+					/>
+				<path class="st0" d="M393.57,450.96c-0.24-0.42-0.26-0.5-0.42-0.8c-0.2-0.37-0.39-0.45-0.88-0.51c-0.19-0.03-0.4-0.02-0.61-0.02
+					c-0.34,0.01-0.7,0.07-1.08,0.17c-0.7,0.19-1.3,0.49-1.8,0.89c-0.5,0.4-0.88,0.89-1.15,1.49c-0.27,0.6-0.41,1.29-0.42,2.08
+					c-0.02,0.79,0.11,1.66,0.37,2.62c0.56,2.03,1.4,3.42,2.51,4.17c1.11,0.75,2.48,0.9,4.1,0.45c0.47-0.13,0.96-0.33,1.46-0.59
+					c0.43-0.23,0.9-0.53,1.44-0.88c0.28-0.18,0.42,0.02,0.42,0.02l0.14,0.22c0,0,0.16,0.25-0.02,0.45
+					c-0.41,0.43-0.92,0.84-1.52,1.24c-0.7,0.47-1.52,0.83-2.49,1.1c-0.92,0.25-1.82,0.37-2.69,0.34c-0.87-0.03-1.68-0.23-2.43-0.61
+					c-0.75-0.39-1.41-0.97-2-1.75c-0.59-0.78-1.06-1.81-1.4-3.06c-0.35-1.27-0.47-2.42-0.35-3.44c0.12-1.02,0.43-1.92,0.92-2.7
+					c0.49-0.78,1.15-1.44,1.98-1.98c0.82-0.53,1.77-0.95,2.84-1.25c0.72-0.2,1.42-0.32,2.09-0.36c0.47-0.03,0.92-0.04,1.34-0.04
+					c0.59,0,0.66,0.47,0.66,0.47l0.31,1.94c0,0,0.06,0.43-0.3,0.53c-0.32,0.09-0.51,0.14-0.51,0.14S393.81,451.37,393.57,450.96z"/>
+				<path class="st0" d="M411.26,447.49l-6.31-2.86c-0.13-0.06-0.35-0.07-0.49-0.03l-0.95,0.29c-0.14,0.04-0.31-0.02-0.38-0.15
+					l-0.17-0.29c-0.07-0.13-0.03-0.28,0.1-0.36l4.54-2.58c0.12-0.07,0.28-0.03,0.36,0.09l0.17,0.3c0.07,0.12,0.04,0.3-0.06,0.4
+					l-0.56,0.52c-0.11,0.1-0.09,0.23,0.04,0.29l4.5,2.14l0.55-5.02c0.02-0.14-0.08-0.23-0.22-0.18l-0.79,0.25
+					c-0.14,0.04-0.31-0.02-0.38-0.15l-0.17-0.29c-0.07-0.13-0.03-0.29,0.1-0.36l3.6-2.05c0.12-0.07,0.28-0.03,0.35,0.1l0.17,0.29
+					c0.07,0.12,0.04,0.3-0.07,0.4l-0.82,0.72c-0.11,0.09-0.21,0.29-0.22,0.43l-0.7,6.39l6.99,3.25c0.13,0.06,0.35,0.07,0.49,0.03
+					l0.97-0.3c0.14-0.04,0.31,0.02,0.38,0.15l0.17,0.29c0.07,0.12,0.03,0.28-0.1,0.35l-4.56,2.6c-0.13,0.07-0.28,0.03-0.35-0.1
+					l-0.17-0.29c-0.07-0.13-0.04-0.31,0.07-0.4l0.61-0.55c0.11-0.1,0.09-0.23-0.04-0.29l-5.25-2.52l-0.64,5.88
+					c-0.02,0.14,0.08,0.22,0.22,0.18l0.75-0.23c0.14-0.04,0.31,0.02,0.38,0.15l0.17,0.29c0.07,0.12,0.03,0.28-0.1,0.35l-3.62,2.06
+					c-0.12,0.07-0.28,0.03-0.35-0.1l-0.17-0.29c-0.07-0.13-0.04-0.3,0.07-0.4l0.82-0.72c0.11-0.09,0.21-0.29,0.23-0.43
+					L411.26,447.49z"/>
+				<path class="st0" d="M426.9,428.29c0.09,0.11,0.1,0.29,0.01,0.4l-0.68,0.88c-0.09,0.11-0.08,0.3,0.01,0.4l7.57,8.58
+					c0.09,0.11,0.27,0.14,0.4,0.06l0.95-0.56c0.12-0.07,0.3-0.05,0.4,0.06l0.22,0.25c0.09,0.11,0.08,0.27-0.02,0.37l-3.89,3.43
+					c-0.11,0.09-0.27,0.09-0.37-0.02l-0.22-0.25c-0.1-0.11-0.1-0.29-0.01-0.4l0.68-0.88c0.09-0.11,0.08-0.29-0.01-0.4l-7.57-8.58
+					c-0.09-0.11-0.27-0.14-0.4-0.06l-0.95,0.56c-0.13,0.07-0.3,0.04-0.4-0.06l-0.22-0.25c-0.09-0.11-0.08-0.27,0.02-0.37l3.89-3.43
+					c0.11-0.1,0.27-0.08,0.37,0.02L426.9,428.29z"/>
+			</g>
+			<g>
+				<path class="st0" d="M297.9,293.89c0.14,0.02,0.34-0.04,0.43-0.14l2.16-2.27c0.1-0.11,0.09-0.27-0.01-0.37l-0.24-0.23
+					c-0.11-0.1-0.29-0.11-0.4-0.03l-0.82,0.57c-0.12,0.08-0.33,0.13-0.47,0.11l-6.46-1.05c-0.14-0.02-0.21-0.15-0.15-0.28
+					c0,0,0.79-1.7,0.76-2.59c-0.03-0.89-0.43-1.69-1.19-2.42c-0.54-0.52-1.09-0.82-1.64-0.9c-0.55-0.08-1.09-0.02-1.62,0.17
+					c-0.53,0.19-1.03,0.49-1.52,0.88c-0.49,0.39-1.18,1.07-1.18,1.07c-0.1,0.1-0.27,0.27-0.37,0.37l-3.8,3.99
+					c-0.1,0.11-0.09,0.27,0.01,0.37l0.24,0.23c0.1,0.1,0.28,0.11,0.4,0.03l0.91-0.66c0.12-0.08,0.3-0.07,0.4,0.03l8.31,7.91
+					c0.1,0.1,0.12,0.28,0.05,0.4l-0.61,0.94c-0.08,0.12-0.06,0.3,0.05,0.4l0.25,0.23c0.1,0.1,0.27,0.09,0.37-0.01l3.56-3.74
+					c0.1-0.1,0.09-0.27-0.01-0.37l-0.25-0.24c-0.1-0.1-0.28-0.11-0.4-0.03l-0.9,0.64c-0.12,0.08-0.3,0.07-0.4-0.03l-3.83-3.64
+					l0.57-0.6c0.1-0.1,0.3-0.17,0.44-0.14L297.9,293.89z M289.07,292.44c-0.1,0.11-0.17,0.17-0.17,0.17l-4.13-3.91l0.74-0.77
+					c0.1-0.11,0.26-0.27,0.37-0.37c0,0,0.45-0.44,0.77-0.68c0.32-0.23,0.64-0.39,0.97-0.46c0.33-0.07,0.67-0.05,1.02,0.07
+					c0.35,0.12,0.71,0.36,1.09,0.71c0.82,0.78,1.21,1.54,1.16,2.28c-0.04,0.74-0.98,2.02-0.98,2.02c-0.08,0.12-0.24,0.3-0.33,0.4
+					L289.07,292.44z"/>
+			</g>
+		</g>
+		<g>
+			<path class="st0" d="M533.16,301.42v-1.22h22.78v1.22c-6.59,0.82-6.73,1.63-6.73,8.77v19.65c0,10.67,3.6,16.66,12.85,16.66
+				c10,0,13.4-7,13.6-17.2v-19.17c0-7-0.14-7.89-6.73-8.7v-1.22h16.66v1.22c-6.6,0.82-6.73,1.7-6.73,8.7v19.04
+				c0,14.75-6.87,21.21-19.04,21.21c-13.53,0-19.92-7-19.92-19.58v-20.6C539.89,303.19,539.75,302.24,533.16,301.42z"/>
+			<path class="st0" d="M623.53,301.42v-1.22h16.66v1.22c-6.6,0.82-6.73,1.7-6.73,8.7v39.37h-5.71l-28.96-37.46v27.54
+				c0,7,0.14,7.89,6.73,8.7v1.22h-16.66v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-31.69l-1.16-1.5c-2.38-3.13-3.67-4.42-5.58-5.17v-1.02
+				h12.65l28.76,36.99v-27.06C630.26,303.12,630.12,302.24,623.53,301.42z"/>
+			<path class="st0" d="M660.38,339.57c0,7,0.14,7.89,6.73,8.7v1.22h-22.78v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-29.44
+				c0-7-0.14-7.89-6.73-8.7v-1.22h22.78v1.22c-6.6,0.82-6.73,1.7-6.73,8.7V339.57z"/>
+			<path class="st0" d="M677.59,308.08c-1.9-4.96-2.72-6.12-6.94-6.66v-1.22h21.01v1.22c-4.28,0.54-5.58,1.77-4.35,5.17l11.97,32.7
+				l8.29-24c4.42-12.78,2.52-13.33-2.72-13.87v-1.22h15.71v1.22c-4.55,0.54-5.23,1.43-8.77,11.56l-12.85,36.51h-5.51L677.59,308.08z
+				"/>
+			<path class="st0" d="M749.32,349.49H724.1v-1.22c6.59-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h24.54
+				c4.69,0,10.74,0,16.05-0.2l1.63,16.25h-1.36c-3.4-11.49-8.02-13.6-21.21-13.6h-3.6v19.92h7.96c3.88,0,6.32-1.9,7-7.62h1.22v18.22
+				h-1.22c-0.68-5.71-3.13-7.62-7-7.62h-7.96v18.63c0,2.38,0.48,2.92,3.47,2.92h2.58c12.38,0,16.73-2.79,20.4-13.8h1.29l-2.72,16.25
+				C759.73,349.49,754.15,349.49,749.32,349.49z"/>
+			<path class="st0" d="M774.21,348.27c6.59-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h8.7
+				c3.33,0,10.2-0.07,12.31-0.07c12.58,0,22.3,3.4,22.3,12.99c0,6.6-4.96,10.47-12.31,12.24l10.54,16.32
+				c3.13,4.83,4.15,6.05,8.91,6.6v1.22h-15.23c-1.29-2.52-3.4-6.26-5.64-9.93l-2.92-4.56c-2.86-4.49-4.35-6.8-5.71-8.64h-4.9v13.19
+				c0,7,0.14,7.89,7.41,8.7v1.22h-23.46V348.27z M794.82,302.58h-4.56v21.35h4.56c7.82,0,12.38-2.72,12.38-10.67
+				S802.64,302.58,794.82,302.58z"/>
+			<path class="st0" d="M829.97,346.7v-16.59h1.36c1.9,12.65,6.93,17.75,15.03,17.75c5.98,0,10.95-2.92,10.95-9.04
+				c0-4.62-3.67-7-9.11-9.59l-6.05-2.86c-7.21-3.4-11.76-7.89-11.76-14.48c0-7.82,7.41-13.26,16.93-13.26
+				c4.9,0,11.29,1.36,14.62,3.4v13.94h-1.36c-1.9-9.72-6.6-14.82-13.33-14.82c-5.51,0-9.38,2.58-9.38,7.34c0,4.69,3.2,6.87,6.8,8.57
+				l7.21,3.4c7.55,3.54,13.19,7.28,13.19,14.69c0,8.91-8.5,15.23-18.7,15.23C839.7,350.38,833.92,348.81,829.97,346.7z"/>
+			<path class="st0" d="M887.57,339.57c0,7,0.14,7.89,6.73,8.7v1.22h-22.78v-1.22c6.59-0.82,6.73-1.7,6.73-8.7v-29.44
+				c0-7-0.14-7.89-6.73-8.7v-1.22h22.78v1.22c-6.6,0.82-6.73,1.7-6.73,8.7V339.57z"/>
+			<path class="st0" d="M911.98,348.27c7.21-0.82,7.48-1.9,7.48-8.7v-37.12h-1.7c-9.52,0-13.53,4.83-16.93,15.71h-1.36l2.04-18.15
+				c5.24,0.2,11.56,0.2,16.25,0.2h12.65c4.69,0,11.01,0,16.32-0.2l2.04,18.15h-1.43c-3.33-10.88-7.34-15.71-16.86-15.71h-1.7v37.12
+				c0,6.8,0.27,7.89,7.48,8.7v1.22h-24.27V348.27z"/>
+			<path class="st0" d="M987.46,348.27v1.22h-24.27v-1.22c7.21-0.82,7.48-1.9,7.48-8.7v-9.45l-12.44-22.37
+				c-2.65-4.9-3.6-5.78-6.73-6.32v-1.22h21.01v1.22c-4.28,0.54-5.85,1.7-4.21,4.9l10.47,19.72l8.36-14.82
+				c4.42-7.68,3.26-9.31-1.63-9.79v-1.22h15.16v1.22c-3.67,0.61-5.3,1.77-9.32,8.5l-11.35,19.72v9.93
+				C979.98,346.36,980.25,347.45,987.46,348.27z"/>
+			<path class="st0" d="M561.31,369.84c13.33,0,25.9,8.98,25.9,25.77s-12.58,25.77-25.9,25.77c-13.33,0-25.91-8.98-25.91-25.77
+				S547.98,369.84,561.31,369.84z M561.31,372.35c-9.38,0-15.5,8.91-15.5,23.25s6.12,23.25,15.5,23.25c9.38,0,15.5-8.91,15.5-23.25
+				S570.69,372.35,561.31,372.35z"/>
+			<path class="st0" d="M593.74,419.27c6.6-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h25.91
+				c4.69,0,10.74,0,16.05-0.2l1.63,16.25h-1.36c-3.4-11.49-8.02-13.6-21.21-13.6h-4.96v19.92h7.96c3.88,0,6.32-1.9,7-7.62h1.22
+				v18.22h-1.22c-0.68-5.71-3.13-7.62-7-7.62h-7.96v14.07c0,6.8,0.27,7.82,7.48,8.64v1.22h-23.53V419.27z"/>
+			<path class="st0" d="M686.02,369.84c13.33,0,25.9,8.98,25.9,25.77s-12.58,25.77-25.9,25.77c-13.33,0-25.91-8.98-25.91-25.77
+				S672.69,369.84,686.02,369.84z M686.02,372.35c-9.38,0-15.5,8.91-15.5,23.25s6.12,23.25,15.5,23.25c9.38,0,15.5-8.91,15.5-23.25
+				S695.4,372.35,686.02,372.35z"/>
+			<path class="st0" d="M720.97,417.7v-16.59h1.36c1.9,12.65,6.93,17.75,15.03,17.75c5.98,0,10.95-2.92,10.95-9.04
+				c0-4.62-3.67-7-9.11-9.59l-6.05-2.86c-7.21-3.4-11.76-7.89-11.76-14.48c0-7.82,7.41-13.26,16.93-13.26
+				c4.9,0,11.29,1.36,14.62,3.4v13.94h-1.36c-1.9-9.72-6.6-14.82-13.33-14.82c-5.51,0-9.38,2.58-9.38,7.34c0,4.69,3.2,6.87,6.8,8.57
+				l7.21,3.4c7.55,3.54,13.19,7.28,13.19,14.69c0,8.91-8.5,15.23-18.7,15.23C730.69,421.38,724.91,419.81,720.97,417.7z"/>
+			<path class="st0" d="M762.52,419.27c6.59-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h22.78v1.22
+				c-6.6,0.82-6.73,1.7-6.73,8.7v34.2c0,2.24,0.68,2.79,2.79,2.79h2.11c12.31,0,15.57-2.99,19.24-14.62h1.36l-2.18,17.07
+				c-3.26-0.07-11.22-0.07-13.94-0.07h-25.43V419.27z"/>
+			<path class="st0" d="M835,369.84c13.33,0,25.91,8.98,25.91,25.77s-12.58,25.77-25.91,25.77s-25.91-8.98-25.91-25.77
+				S821.68,369.84,835,369.84z M835,372.35c-9.38,0-15.5,8.91-15.5,23.25s6.12,23.25,15.5,23.25c9.38,0,15.5-8.91,15.5-23.25
+				S844.39,372.35,835,372.35z"/>
+		</g>
+	</g>
+</g>
+</svg>
diff --git a/frontend/src/routes/components/logos/uio-segl-full-neg-no.svg b/frontend/src/routes/components/logos/uio-segl-full-neg-no.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5cfd42c407252e4ea3c69fbbf2dc341e26b17d95
--- /dev/null
+++ b/frontend/src/routes/components/logos/uio-segl-full-neg-no.svg
@@ -0,0 +1,469 @@
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 height="100%" width="100%" viewBox="240 240 930 240" style="enable-background:new 240 240 930 240;">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+</style>
+<g id="Segl">
+	<g>
+		<g>
+			<path class="st0" d="M247.18,360c0-27.98,9.92-53.65,26.44-73.67l0,0c21.24-25.74,53.39-42.15,89.36-42.15l0,0
+				c63.97,0,115.81,51.86,115.82,115.82l0,0c0,63.95-51.85,115.81-115.82,115.81l0,0C299.03,475.81,247.18,423.96,247.18,360
+				L247.18,360z M248.9,360c0,31.51,12.77,60.02,33.42,80.67l0,0c20.65,20.65,49.16,33.42,80.66,33.42l0,0
+				c31.51,0,60.03-12.77,80.68-33.42l0,0c20.65-20.65,33.42-49.16,33.42-80.67l0,0c0-31.5-12.77-60.02-33.42-80.67l0,0
+				c-20.65-20.65-49.17-33.42-80.68-33.42l0,0c-35.44,0-67.1,16.16-88.03,41.52l0,0h0C258.67,307.16,248.9,332.44,248.9,360
+				L248.9,360z"/>
+		</g>
+		<g>
+			<path class="st0" d="M272.62,406.98c0.02-1.51,1.26-2.72,2.77-2.7c1.51,0.02,2.73,1.26,2.71,2.77c-0.02,1.52-1.26,2.73-2.77,2.71
+				C273.82,409.74,272.61,408.5,272.62,406.98z"/>
+			<path class="st0" d="M446.92,408.62c0.02-1.51,1.26-2.72,2.77-2.7c1.51,0.02,2.73,1.26,2.71,2.77c-0.02,1.51-1.26,2.73-2.77,2.71
+				C448.12,411.37,446.9,410.13,446.92,408.62z"/>
+		</g>
+		<g>
+			<g>
+				<g>
+					<path class="st0" d="M442.2,326.73c-4.33-10.22-10.51-19.39-18.39-27.27c-7.87-7.86-17.04-14.05-27.25-18.37
+						c-10.57-4.46-21.81-6.72-33.37-6.72c-11.58,0-22.81,2.26-33.39,6.72c-10.21,4.32-19.37,10.52-27.26,18.37
+						c-7.87,7.88-14.05,17.04-18.36,27.27c-4.48,10.56-6.75,21.8-6.75,33.36c0,11.59,2.27,22.83,6.75,33.39
+						c4.31,10.2,10.49,19.38,18.36,27.25c7.88,7.87,17.04,14.06,27.26,18.38c3.2,1.36,6.46,2.5,9.77,3.45
+						c0.03,0.01,0.06,0.02,0.09,0.03c1.66,0.52,3.35,0.93,5.05,1.27c6.03,1.32,12.2,1.99,18.48,1.99c3.82,0,7.61-0.25,11.35-0.74
+						c0.01,0,0.02,0,0.03,0c2.18-0.13,3.72-0.46,4.73-0.77c5.9-1.12,11.68-2.86,17.26-5.22c10.21-4.32,19.38-10.51,27.25-18.38
+						l-0.61-0.61l0.61,0.61c7.88-7.87,14.05-17.05,18.38-27.25c4.46-10.56,6.73-21.8,6.73-33.39
+						C448.92,348.53,446.66,337.3,442.2,326.73z M309.99,425.14c-0.13-0.11-0.35-0.47-0.24-0.75c0.05-0.11,0.11-0.24,0.18-0.36
+						c0.37-0.69,0.97-1.49,1.48-2.1c0.89,1.92,3.04,5.63,7.58,9.64C315.85,429.63,312.85,427.49,309.99,425.14z M309.28,374.3
+						c1.76,1.72,2.07,3.21,2.08,4.22c0,0.41-0.06,0.73-0.11,0.95c-0.03,0.11-0.05,0.19-0.07,0.24c0,0.01-0.01,0.02-0.01,0.03
+						c-0.08,0.12-0.77,1.42-2.74,1.42c-0.3,0-0.65-0.03-1.03-0.11c-3.33-0.65-6.63-1.94-9.35-2.28c-0.04-0.01-0.1,0-0.15-0.01
+						l6.54-8.97C306.58,371.76,308.43,373.48,309.28,374.3z M295.58,359.35l42.62-43.1l-25.55,59.99c-0.38-1-1.05-2.1-2.17-3.18
+						C308.09,370.74,298.24,361.77,295.58,359.35z M307.06,382.74c0.48,0.09,0.94,0.14,1.36,0.14c1.52,0.01,2.62-0.57,3.3-1.16
+						c0.68-0.59,0.96-1.17,0.99-1.24l0-0.01c0,0,0-0.01,0-0.01c0-0.01,0.01-0.02,0.02-0.05l0.05-0.11l26.21-61.3
+						c0.06,0.41,0.18,1.2,0.29,1.58c0.41,6.88,1.99,11.71,3.65,15.41c0.96,2.14,1.94,3.78,2.7,4.93c0.38,0.58,0.71,1.04,0.96,1.37
+						c0.08,0.11,0.16,0.21,0.22,0.29l-6.11,21.11c-0.1,0.33,0.02,0.7,0.29,0.91l1.46,1.16c0,0,0.18,0.17,0.1,0.49
+						c-0.09,0.32-6.8,25.1-6.8,25.1l-21.32,24.48c-1.58-1.31-6.2-5.59-12.32-15.1c-5.33-8.27-6.92-13.49-6.91-16.46
+						c0-1.48,0.37-2.38,0.81-2.94c0.01-0.01,0.01-0.01,0.02-0.02l0.02-0.03c0.03-0.03,0.05-0.07,0.08-0.1
+						c0.49-0.54,1.09-0.73,1.54-0.73c0.06,0,0.11,0,0.16,0.01C300.2,380.76,303.55,382.04,307.06,382.74z M352.27,292.52
+						c-0.15-0.44-0.62-0.68-1.06-0.54c0.38-0.34,0.75-0.66,1.11-0.97l3.7-0.48c0.47-0.06,0.8-0.5,0.74-0.97
+						c-0.06-0.47-0.49-0.8-0.97-0.74l-0.56,0.08c1.16-0.68,2.34-1.23,3.32-1.63c0.66-0.27,1.22-0.48,1.62-0.62
+						c0.4-0.13,0.61-0.2,0.62-0.2c0.46-0.13,0.72-0.61,0.58-1.07c-0.14-0.45-0.62-0.71-1.07-0.58c-0.03,0.01-1.47,0.43-3.33,1.28
+						c0.27-0.39,0.18-0.92-0.21-1.2c-0.39-0.27-0.93-0.18-1.2,0.21l-1.98,2.81c-0.18,0.12-0.36,0.23-0.53,0.35
+						c-0.25,0.18-0.53,0.39-0.83,0.63l0.2-0.39c0.22-0.42,0.05-0.94-0.37-1.16c-0.42-0.22-0.94-0.05-1.16,0.37l-2.17,4.22
+						c-0.54,0.5-1.04,0.97-1.47,1.38c0.07-2.25,0.67-6.22,3.2-8.11c2.48-1.9,4.54-2.31,6.26-2.31c1.01,0,1.9,0.15,2.69,0.27
+						c0.37,0.05,1.7,0.37,2.85,0.66c1.16,0.3,2.21,0.57,2.21,0.58l0.22,0.03c1.27,0.01,1.9,0.33,2.24,0.67
+						c0.34,0.34,0.47,0.8,0.48,1.31c0.01,0.43-0.18,0.92-0.39,1.29c-0.08,0.14-0.15,0.24-0.21,0.34l-6.43,0.71
+						c-0.23,0.03-0.45,0.15-0.59,0.33l-4.05,5.34l-1.98,0.01l-0.18,0.02c-0.08,0.02-0.44,0.1-0.84,0.43
+						c-0.41,0.32-0.81,0.97-0.79,1.8c-0.01,1.61,0.55,2.71,1.16,3.35c0.06,0.07,0.13,0.13,0.19,0.19l-2.64,2.64
+						c-0.41-0.11-1.08-0.34-1.7-0.78c-0.8-0.56-1.53-1.39-1.77-2.84c-0.13-0.84-0.18-1.53-0.18-2.08c0-0.58,0.05-1,0.11-1.3
+						c0.01-0.01,0.02-0.01,0.03-0.02c0,0,0.39-0.38,0.99-0.96l3.64-1.24C352.18,293.46,352.42,292.97,352.27,292.52z M365.44,299.1
+						c0,0,0.01,0.27-0.21,0.4c-0.23,0.13-0.38,0.35-0.43,0.61c-0.04,0.26,0.07,0.5,0.21,0.71c0.03,0.05,0.04,0.16-0.02,0.27
+						c-0.06,0.1-0.17,0.3-0.17,0.3c-0.12,0.21-0.15,0.46-0.07,0.69c0,0,0,0,0.01,0.03c0.03,0.1,0.09,0.38,0.09,0.68
+						c0,0.17-0.13,0.65-0.47,0.79c-0.32,0.14-0.86,0.25-1.58,0.27l-1.82-0.04c-0.42-0.01-0.79,0.29-0.86,0.7
+						c-0.01,0.04-0.05,0.27-0.05,0.63c0,0.47,0.07,1.18,0.45,1.9c0.14,0.28,0.35,0.55,0.6,0.8c0,0,0,0.01,0.01,0.01h0l3.06,3.43
+						l-7.94,0.54l-5.41-4.23c0.27-0.13,0.42-0.21,0.42-0.21c0.29-0.14,0.48-0.44,0.48-0.77v-2.5l3.47-3.48
+						c0.21-0.21,0.3-0.53,0.23-0.82c-0.08-0.3-0.3-0.53-0.59-0.61v0c-0.16-0.11-1.2-0.44-1.23-2.57c0.01-0.35,0.1-0.39,0.17-0.48
+						c0.03-0.02,0.06-0.04,0.08-0.06l2.26-0.02c0.27,0,0.52-0.13,0.68-0.34c0,0,3.61-4.78,3.86-5.08c0.25-0.31,0.63-0.34,0.63-0.34
+						l4.89-0.53c0,0,0.25-0.01,0.29,0.29c0.04,0.45,0.09,1,0.15,1.6c0.01,0.25-0.15,0.34-0.25,0.35c-0.62,0.02-1.27,0.04-1.96,0.06
+						c-0.72,0.03-1.51,0.36-2.03,0.8c-0.39,0.32-0.4,0.93-0.04,1.28c0.2,0.19,0.63,0.26,1.1,0.4c0.59,0.18,1.25,0.4,1.58,0.3
+						c0.42-0.14,0.58-0.51,0.61-0.92c0.03-0.45,0.3-0.77,0.76-0.77c0.19,0,0.31,0.16,0.33,0.32c0.09,0.86,0.24,1.94,0.3,2.56
+						c0.03,0.3,0.05,0.58,0.07,0.82c0.01,0.31-0.26,0.33-0.4,0.35c-0.29,0.04-0.51,0.04-0.51,0.05c-0.23,0.01-0.45,0.11-0.6,0.29
+						c-0.16,0.17-0.23,0.4-0.22,0.63L365.44,299.1z M355.46,313.4c0.15,0.12,0.34,0.18,0.53,0.18c0.02,0,0.04,0,0.06,0l10.02-0.68
+						c0.33-0.02,0.62-0.23,0.74-0.54c0.13-0.3,0.06-0.65-0.15-0.9l-1.8-2.02c1.05,0.32,1.95,0.6,2.65,0.81
+						c0.54,0.14,1.52,1,2.35,2.13c0.79,1.03,1.51,2.25,1.99,3.24c-0.35,1.78-0.86,3.53-1.4,5.29l-4.44,3.37l-9.67-6.51
+						c-0.49-0.72-2.74-4-4.9-6.17c-1.15-1.13-2.77-1.58-4.39-1.58c-0.3,0-0.6,0.02-0.9,0.05c0.42-0.23,0.85-0.46,1.26-0.68
+						c0.63-0.33,1.24-0.65,1.77-0.93L355.46,313.4z M347.03,311.75c1.32,0,2.49,0.38,3.18,1.07c1.12,1.12,2.33,2.64,3.24,3.88
+						c0.92,1.24,1.54,2.17,1.54,2.18c0.06,0.1,0.14,0.18,0.24,0.24l10.32,6.95c0.31,0.21,0.71,0.2,1-0.03l13.14-9.99l0.06-0.05
+						c0,0,0.29-0.26,0.67-0.58c0.38-0.32,0.86-0.7,1.15-0.88c0.68-0.45,3.58-2.17,5.43-2.22c0.16-0.01,0.32-0.01,0.47-0.01
+						c0.89-0.01,1.54,0.15,1.87,0.37c0.31,0.22,0.45,0.4,0.48,1.05c0,1.05,0.02,2.6,0.02,2.6c0,0.42,0.3,0.7,0.71,0.77
+						c0.32,0,0.76,0.09,0.76,0.59c0,0.57-0.39,0.65-0.57,0.68c-0.31,0.04-0.61,0.08-0.73,0.09l-0.81,0l-0.22,0.03
+						c0,0-1.11,0.29-2.3,0.57c-0.59,0.14-1.21,0.29-1.71,0.39c-0.25,0.05-0.47,0.1-0.64,0.13c-0.08,0.01-0.15,0.02-0.2,0.03
+						c-0.05,0.01-0.06,0-0.06,0.01c-0.76,0-1.94,0.13-1.96,0.13c-0.24,0.03-0.47,0.16-0.61,0.36c0,0.01-1.46,2.07-3.28,4.5
+						c-1.82,2.43-4.03,5.25-5.44,6.66c-1.47,1.47-2.68,2.58-3.53,3.32c-0.26,0.23-0.49,0.42-0.68,0.58
+						c-0.1,0.08-0.33,0.19-0.58,0.09c-1.26-0.52-3.95-1.6-7.19-2.98c-4.52-1.93-10.12-4.44-14.36-6.71
+						c-0.84-0.43-2.34-1.35-3.58-2.66c-0.13-0.14-0.26-0.29-0.39-0.44c-0.04-0.05-0.08-0.1-0.12-0.14c-0.1-0.12-0.19-0.24-0.28-0.35
+						c-0.07-0.09-0.13-0.19-0.2-0.28c-0.06-0.08-0.11-0.16-0.16-0.25c-0.06-0.09-0.12-0.19-0.18-0.29
+						c-0.02-0.04-0.04-0.08-0.07-0.12c-0.12-0.21-0.22-0.42-0.31-0.64c-0.01-0.03-0.03-0.06-0.04-0.09
+						c-0.05-0.13-0.1-0.26-0.14-0.39c0,0,0,0,0,0c0,0,0,0,0-0.01c-0.08-0.23-0.14-0.47-0.19-0.71c-0.02-0.1-0.04-0.21-0.06-0.31
+						c-0.01-0.08-0.02-0.16-0.03-0.24c-0.02-0.2-0.04-0.4-0.04-0.61c0-0.14,0.01-0.27,0.02-0.41c0.01-0.11,0.02-0.23,0.04-0.35
+						c0-0.02,0-0.04,0-0.06c0.04-0.28,0.1-0.56,0.18-0.85c0,0,0,0,0,0l0,0c0.05-0.17,0.1-0.35,0.17-0.53c0-0.01,0.01-0.02,0.01-0.03
+						c0.06-0.16,0.13-0.34,0.2-0.51c0.01-0.02,0.02-0.05,0.03-0.07c0.07-0.16,0.15-0.32,0.24-0.48c0.02-0.03,0.04-0.07,0.06-0.11
+						c0.11-0.19,0.22-0.39,0.34-0.59l0,0C342.72,312.72,344.97,311.73,347.03,311.75z M374.01,298.62c0-0.38,0.13-0.44,0.2-0.43
+						c1.31,0.21,2.03,0.78,2.49,1.32c0.28,0.34,0.45,0.69,0.55,0.94c0.05,0.13,0.08,0.23,0.1,0.3c0.01,0.03,0.01,0.06,0.02,0.07l0,0
+						c0.07,0.41,0.43,0.72,0.85,0.72h16.8c0.43,0,0.79-0.31,0.85-0.73c0.02-0.08,0.15-0.63,0.69-1.14c0.45-0.42,1.19-0.88,2.53-1.05
+						c0.18-0.04,0.21,0.14,0.21,0.3c0,1.78-0.06,5.49-0.06,10.87c0,4.38,1.13,7.92,2.21,11.42c1.09,3.51,2.13,6.98,2.13,11.42
+						c0,2.37-0.45,4.64-1.33,6.7c-0.77-0.43-1.42-0.69-1.78-0.79c-0.12-0.03-0.24-0.05-0.36-0.05c-0.68,0.03-1.12,0.33-1.55,0.63
+						c-0.42,0.34-0.75,0.58-0.99,1.12c-0.07,0.18-0.1,0.36-0.1,0.53c0.01,0.47,0.17,0.79,0.29,1.04c-0.18,0.15-0.39,0.32-0.6,0.51
+						c-0.28,0.25-0.57,0.52-0.82,0.81c-0.25,0.29-0.48,0.56-0.62,0.98c-0.08,0.26-0.13,0.53-0.13,0.81c0,0.53,0.15,1.01,0.39,1.5
+						c-2.61,1.51-5.88,2.4-9.82,2.41c-5.75,0-9.86-1.98-12.6-4.84c-2.03-2.14-3.29-4.8-3.8-7.56c0.85-0.72,2.34-2.03,4.23-3.92
+						c0.32-0.32,0.67-0.7,1.04-1.12c0.61,2.16,1.82,3.96,3.4,5.3c2.21,1.88,5.1,2.89,8.09,2.98c0.05,0.01,0.11,0.02,0.16,0.02
+						c0.02,0,0.05,0,0.07-0.01c0.07,0,0.14,0.01,0.21,0.01c6.47-0.02,11.32-5.75,11.33-12.09c0-2.85-0.67-4.84-1.29-7.91
+						c-0.63-3.08-1.25-7.36-1.25-14.89c0-0.23-0.09-0.45-0.25-0.61c-0.16-0.16-0.38-0.25-0.61-0.25h-16.59
+						c-0.23,0-0.45,0.09-0.61,0.25c-0.16,0.16-0.25,0.38-0.25,0.61c0,5.39-0.35,8.86-0.79,11.44l-3.9,2.96
+						c0.31-1.12,0.59-2.26,0.81-3.42c0.02-0.05,0.02-0.1,0.03-0.15c0.28-1.5,0.45-3.04,0.46-4.63
+						C374.05,305.3,374.03,300.78,374.01,298.62z M397.93,346.29c-0.47-0.66-0.62-1.1-0.61-1.39c0-0.1,0.01-0.19,0.05-0.3h0
+						c0.07-0.16,0.58-0.71,1.04-1.1c0.46-0.41,0.88-0.72,0.88-0.72c0.24-0.15,0.4-0.54,0.38-0.77c-0.01-0.34-0.1-0.46-0.16-0.6
+						c-0.06-0.12-0.12-0.23-0.17-0.32c-0.06-0.13-0.1-0.42,0.16-0.67c0.29-0.3,0.71-0.18,0.79-0.14c0.32,0.13,0.84,0.37,1.35,0.67
+						c0.75,0.44,1.51,1.05,1.78,1.57c0.28,0.48,0.51,1.12,0.5,1.55c0,0.29-0.12,0.5-0.26,0.66c-0.28,0.32-2.81,2.44-3.07,2.6
+						c-0.27,0.19-1.35,0.65-2.27,0.99c-0.27,0.1-0.53,0.19-0.76,0.28c-0.32,0.13-0.37-0.08-0.37-0.08s-0.06-0.19,0.06-0.31
+						c0.15-0.12,0.29-0.25,0.43-0.4c0.15-0.2,0.38-0.39,0.41-0.93C398.12,346.7,398.06,346.47,397.93,346.29z M400.46,406.08
+						c0,0,0.03,0.25-0.17,0.37c-0.2,0.11-6.26,3.51-6.26,3.51l-0.7-60.5c0.69-0.22,1.35-0.48,1.98-0.77L400.46,406.08z
+						 M372.73,434.05c0,0,2.23,2.89,2.32,3.02c0.09,0.13,0.02,0.28-0.04,0.33c-3.38,2.76-8.86,4.69-15.13,5.38
+						c0.99-4.55,4.79-22.48,7.62-40.74c2.91-18.82,4.2-36.69,4.45-40.41c0,0,2.26-0.15,2.66-0.19c0.39-0.04,0.44,0.19,0.44,0.43
+						c-0.01,0.24-2.48,71.6-2.48,71.6C372.55,433.7,372.61,433.89,372.73,434.05z M342.69,363.03c0,0,5.6-19.36,5.68-19.62
+						c0.07-0.26,0.33-0.33,0.33-0.33s4.1-1.15,4.75-1.36c0.65-0.21,1.73-0.29,1.73-0.29l14.09-0.86c0.74,1.65,1.75,3.21,3.05,4.58
+						c1.14,1.21,2.51,2.26,4.09,3.11c0,0-0.03,10.72-0.03,10.92c0,0.2-0.1,0.43-0.55,0.47c-0.45,0.04-14.17,0.99-17.59,1.24
+						c-0.49,0.03-1.07,0.12-1.59,0.26c-0.52,0.15-12.47,3.42-12.47,3.42s-0.41,0.06-0.61-0.09c-0.2-0.16-0.31-0.25-0.68-0.54
+						C342.52,363.64,342.69,363.03,342.69,363.03z M347.99,341.29c-1.36-1.87-5.32-7.41-6.66-17.52c0.09,0.11,0.19,0.21,0.28,0.31
+						c1.43,1.5,3.06,2.5,4.03,3c8.63,4.62,22.48,10.08,22.5,10.09c0.01,0,0.02,0,0.03,0.01c0.12,0.58,0.28,1.14,0.47,1.71l-13,0.79
+						c0,0-1.53,0.07-2.63,0.38c-1.33,0.37-4.37,1.24-4.57,1.31C348.18,341.44,348.03,341.35,347.99,341.29z M376.78,361.21
+						l0.63-0.13c0.4-0.08,0.69-0.44,0.69-0.84l0.03-11.17c2.3,0.93,4.97,1.46,8.01,1.46c0.01,0,0.02,0,0.03,0
+						c1.95,0,3.77-0.22,5.45-0.6l0.8,69.21l0,0.04c0,0,0,0.05,0,0.17c0.01,0.71-0.18,3.19-2.21,4.65
+						c-2.52,1.84-8.16,4.77-15.78,4.97L376.78,361.21z M376.44,329.69c2.01-2.47,4.23-5.5,5.48-7.22v14.37
+						c-0.86-0.4-1.66-0.9-2.36-1.5C377.93,333.95,376.79,332.08,376.44,329.69z M383.64,337.47v-16.13c0.15-0.01,0.3-0.01,0.42-0.01
+						c0.35-0.01,0.71-0.09,1.26-0.2c0.16-0.04,0.33-0.07,0.51-0.11v16.86C385.08,337.8,384.35,337.67,383.64,337.47z M387.55,337.9
+						v-17.3c0.79-0.19,1.48-0.37,1.74-0.43h0.32v17.35C388.95,337.73,388.27,337.86,387.55,337.9z M392.9,316.69
+						c-0.1-0.31-0.29-0.77-0.88-0.97c-0.15-0.04-0.32-0.09-0.47-0.12c0-0.54-0.01-1.3-0.01-1.89c0.01-0.41-0.06-0.81-0.2-1.17v-6.93
+						h2.7c0.04,7.1,0.67,11.32,1.28,14.38c0.65,3.19,1.26,5.02,1.25,7.57c0,2.74-1.05,5.35-2.79,7.26
+						c-0.71,0.79-1.54,1.45-2.45,1.96v-16.75c0.06-0.01,0.13-0.02,0.18-0.02c0.08-0.01,0.16-0.02,0.21-0.02c0.05,0,0.07,0,0.07,0
+						c0.32,0,0.55-0.16,0.66-0.27c0.37-0.41,0.36-0.65,0.46-0.98c0.07-0.32,0.1-0.68,0.11-1.04
+						C393.02,317.35,393,317.03,392.9,316.69z M389.61,305.61v5.29c-0.62-0.23-1.31-0.31-2.06-0.32v-4.97H389.61z M385.83,305.61
+						v5.14c-0.75,0.16-1.5,0.42-2.19,0.72v-5.86H385.83z M381.92,305.61v6.72c-0.58,0.32-1.02,0.6-1.27,0.75
+						c-0.78,0.49-1.83,1.43-2.03,1.61l0,0.01c0.3-2.3,0.52-5.19,0.55-9.09H381.92z M313.75,419.25c0.22-0.25,23.43-26.9,23.43-26.9
+						c0.09-0.1,0.15-0.21,0.18-0.34c0,0,6.87-25.35,6.92-25.52c0.05-0.18,0.23-0.23,0.23-0.23s12.18-3.33,12.64-3.47
+						c0.47-0.13,1.14-0.19,1.14-0.19l6.76-0.47c-0.08,0.79-0.22,2.06-0.44,3.69c-1.15,8.57-4.66,27.05-13.22,37.12
+						c-12.75,15.07-30.4,16.61-37.01,16.61c-0.15,0-0.29,0-0.42,0C313.7,419.54,313.53,419.5,313.75,419.25z M313.33,421.25
+						c0.31,0.01,0.66,0.01,1.04,0.01c6.84,0,25.05-1.57,38.32-17.21c10.92-12.97,13.66-37.71,14.09-42.04l3.42-0.24
+						c-0.12,1.77-0.42,5.97-0.96,11.64c-0.71,7.61-1.83,17.85-3.46,28.38c-1.63,10.53-3.59,20.97-5.14,28.77
+						c-1.15,5.77-2.07,10.09-2.47,11.95c-0.04,0.17-0.25,0.48-0.65,0.48c-0.95,0-1.9,0.09-2.87,0.08c-3.14,0-6.39-0.29-9.59-0.91
+						c-1.68-0.37-3.34-0.78-4.99-1.26c-11.87-3.74-18.76-9.03-22.69-13.31c-1.97-2.15-3.2-4.06-3.93-5.42
+						c-0.12-0.22-0.22-0.42-0.31-0.61C313.05,421.37,313.16,421.25,313.33,421.25z M362.82,444.11c4.92-0.85,9.27-2.46,12.45-4.75
+						l2.71,0.78c0.1,0.03,0.2,0.04,0.3,0.04c0,0,2.52-0.14,2.73-0.15c0.72-0.04,1.04,0.38,1.04,0.53c0,0.15,0.02,0.34,0.02,0.34
+						s0.03,0.45-0.26,0.74c-0.27,0.27-2.21,0.8-2.92,1.03c-5.14,0.97-10.38,1.47-15.7,1.47
+						C363.07,444.12,362.94,444.11,362.82,444.11z M440.61,392.8c-4.25,10-10.29,18.98-18.02,26.71
+						c-7.72,7.71-16.7,13.77-26.7,18.01c-3.94,1.67-7.97,3.02-12.07,4.05l-0.1-1.67c0-1.01-1.14-1.51-1.77-1.51l-3.61,0.06
+						c0,0-1.11-0.27-1.25-0.31c-0.14-0.04-0.1-0.18-0.08-0.21c0.25-0.31,0.27-0.75,0.02-1.07l-2.76-3.6l0.09-2.56
+						c8.1-0.2,14.07-3.27,16.85-5.3c2.74-2.03,2.91-5.12,2.92-6.04c0-0.13,0-0.22-0.01-0.26l-0.08-7.18
+						c0.03-0.01,0.05-0.02,0.08-0.03l0,0l7.68-4.31c0.3-0.17,0.46-0.49,0.44-0.83l-5.04-56.18c0.22-0.07,0.93-0.32,1.74-0.62
+						c0.98-0.38,2.02-0.78,2.63-1.18c0.55-0.39,2.86-2.33,3.42-2.91c0.49-0.52,0.67-1.19,0.67-1.78c-0.01-0.92-0.36-1.75-0.72-2.4
+						c-0.32-0.55-0.75-1-1.23-1.39c1.06-2.36,1.6-4.97,1.59-7.67c0-4.71-1.13-8.42-2.21-11.93c-1.09-3.51-2.14-6.83-2.14-10.91
+						c0-7.57,0.08-12.07,0.08-12.08c0-0.23-0.09-0.45-0.25-0.62c-0.16-0.17-0.38-0.26-0.61-0.26c-2.54-0.01-4.12,0.83-4.99,1.77
+						c-0.41,0.44-0.65,0.87-0.81,1.23h-15.54c-0.15-0.39-0.41-0.89-0.83-1.4c-0.84-1.04-2.42-2.04-4.88-2.03
+						c-0.23,0-0.45,0.09-0.61,0.26c-0.16,0.16-0.25,0.38-0.25,0.61c0,0.01,0.05,5.71,0.05,13.7c0,0.63-0.03,1.25-0.08,1.87
+						c-0.32-0.5-0.66-1-1.02-1.48c-0.96-1.23-1.97-2.32-3.22-2.73c-1.12-0.34-2.79-0.86-4.75-1.46c-0.72-0.23-1.01-0.55-1.22-0.92
+						c-0.12-0.21-0.18-0.45-0.22-0.67l0.95,0.02h0.05c0.86-0.03,1.59-0.14,2.22-0.4c0.62-0.25,1.18-0.71,1.39-1.4
+						c0.11-0.35,0.14-0.69,0.14-0.99c0-0.34-0.04-0.63-0.09-0.85l0.41-0.72c0.13-0.23,0.15-0.51,0.05-0.75
+						c0.19-0.17,0.29-0.43,0.27-0.69l-0.06-0.88c0.04-0.01,0.08-0.02,0.13-0.02c0.26-0.05,0.53-0.11,0.82-0.24
+						c0.14-0.07,0.29-0.15,0.45-0.31c0.16-0.15,0.33-0.44,0.33-0.77c0-0.23-0.05-0.78-0.13-1.65c-0.19-2.12-0.52-5.72-0.63-6.84
+						c0.35-0.47,0.96-1.44,0.98-2.71c0-0.81-0.23-1.77-0.98-2.52c-0.72-0.73-1.85-1.16-3.35-1.18c-0.67-0.18-4.14-1.1-5.15-1.25
+						c-0.75-0.11-1.75-0.28-2.93-0.28c-2.01-0.01-4.55,0.53-7.31,2.67c-3.57,2.81-3.86,7.84-3.88,10.07c0,0.43,0.01,0.77,0.03,0.96
+						c-0.12,0.36-0.3,1.1-0.3,2.28c0,0.65,0.05,1.43,0.2,2.35c0.35,2.23,1.73,3.58,2.95,4.28c0.62,0.36,1.2,0.57,1.64,0.7v1.64
+						c-0.68,0.34-4.97,2.23-9.1,5.07c-0.09,0.08-0.43,0.27-0.75,0.64c-0.01,0.01-0.02,0.01-0.03,0.02l-46.43,46.95
+						c-0.16,0.16-0.25,0.39-0.25,0.63c0.01,0.23,0.11,0.46,0.28,0.61c0.01,0.01,3.2,2.91,6.74,6.15c0.88,0.81,1.79,1.63,2.67,2.44
+						l-8.51,11.67c-0.72,0.91-1.18,2.24-1.17,4c0.01,3.56,1.77,8.97,7.18,17.4c6.17,9.59,10.89,14.01,12.64,15.46l-2.25,2.58
+						c-0.08,0.08-0.8,0.84-1.54,1.83c-0.39,0.51-0.78,1.08-1.09,1.66c-0.08,0.14-0.15,0.28-0.21,0.43c-1.52-1.32-3-2.69-4.44-4.13
+						c-7.71-7.72-13.77-16.7-17.99-26.71c-4.39-10.34-6.61-21.35-6.61-32.71c0-11.33,2.22-22.33,6.61-32.69
+						c4.23-10.02,10.28-19,17.99-26.72c7.73-7.71,16.7-13.77,26.71-18.01c10.37-4.37,21.36-6.59,32.71-6.59
+						c11.34,0,22.34,2.21,32.7,6.59c10.01,4.24,18.99,10.3,26.7,18.01c7.72,7.72,13.77,16.7,18.02,26.72
+						c4.37,10.36,6.59,21.36,6.59,32.69C447.2,371.45,444.98,382.46,440.61,392.8z"/>
+				</g>
+			</g>
+		</g>
+		<g>
+			<path class="st0" d="M264.97,367.3c0.99-0.13,1.84-0.12,2.54,0.03c0.71,0.15,1.31,0.44,1.8,0.87c0.49,0.43,0.88,1.01,1.17,1.73
+				c0.29,0.71,0.5,1.58,0.63,2.59c0.11,0.86,0.12,1.67,0.04,2.4c-0.09,0.73-0.31,1.38-0.66,1.94c-0.35,0.56-0.83,1.02-1.45,1.39
+				c-0.62,0.36-2.09,0.67-2.09,0.67c-0.14,0.03-0.37,0.07-0.51,0.09l-7.6,0.99c-0.14,0.02-0.26,0.15-0.27,0.29l-0.06,1.12
+				c-0.01,0.14-0.13,0.28-0.27,0.3l-0.34,0.04c-0.14,0.02-0.27-0.08-0.29-0.22l-0.67-5.12c-0.02-0.14,0.08-0.27,0.23-0.29l0.33-0.04
+				c0.14-0.02,0.29,0.08,0.34,0.21l0.35,1.05c0.04,0.14,0.2,0.23,0.34,0.21l8.5-1.11c1.04-0.14,1.82-0.55,2.34-1.26
+				c0.52-0.7,0.7-1.67,0.54-2.89c-0.17-1.27-0.6-2.15-1.3-2.64c-0.7-0.49-2.81-0.48-2.81-0.48c-0.14,0-0.38,0.02-0.52,0.04
+				l-7.72,1.01c-0.14,0.02-0.27,0.15-0.27,0.29l-0.07,1.12c-0.01,0.15-0.13,0.28-0.27,0.3l-0.33,0.04
+				c-0.14,0.02-0.27-0.08-0.29-0.23l-0.6-4.59c-0.02-0.14,0.08-0.27,0.22-0.29l0.34-0.04c0.14-0.02,0.29,0.08,0.34,0.21l0.35,1.07
+				c0.04,0.13,0.2,0.23,0.34,0.21L264.97,367.3z"/>
+			<path class="st0" d="M255.8,355.4c0.01-0.14,0.12-0.32,0.24-0.39l10.73-6.4l-8.98-0.66c-0.14-0.01-0.29,0.09-0.33,0.23
+				l-0.29,1.06c-0.04,0.14-0.19,0.24-0.33,0.23l-0.34-0.02c-0.14-0.01-0.25-0.14-0.24-0.28l0.33-4.41c0.01-0.14,0.14-0.25,0.28-0.24
+				l0.34,0.03c0.14,0.01,0.27,0.14,0.29,0.28l0.13,1.12c0.02,0.14,0.15,0.27,0.29,0.28l12.72,0.96c0.14,0.01,0.25,0.14,0.24,0.28
+				l-0.1,1.25c-0.01,0.14-0.12,0.32-0.24,0.39l-12.4,7.27l10.45,0.79c0.14,0.01,0.29-0.09,0.33-0.23l0.29-1.06
+				c0.04-0.14,0.18-0.24,0.33-0.23l0.34,0.02c0.14,0.01,0.25,0.13,0.24,0.28l-0.34,4.42c-0.01,0.14-0.14,0.25-0.28,0.24l-0.34-0.03
+				c-0.14-0.01-0.27-0.14-0.29-0.28l-0.13-1.11c-0.02-0.14-0.15-0.27-0.29-0.28l-11.43-0.87c-0.14-0.01-0.29,0.09-0.33,0.23
+				l-0.29,1.08c-0.04,0.14-0.18,0.24-0.33,0.23l-0.34-0.02c-0.14-0.01-0.25-0.14-0.24-0.28L255.8,355.4z"/>
+			<path class="st0" d="M260.2,331.58c0.14,0.04,0.25,0.18,0.24,0.32l-0.06,1.1c-0.01,0.14,0.1,0.29,0.24,0.33l11.13,2.78
+				c0.14,0.04,0.3-0.04,0.36-0.17l0.46-1c0.06-0.13,0.22-0.21,0.36-0.17l0.33,0.08c0.14,0.04,0.23,0.18,0.19,0.32l-1.25,5.01
+				c-0.04,0.14-0.18,0.22-0.31,0.19l-0.33-0.08c-0.14-0.03-0.25-0.18-0.24-0.32l0.06-1.1c0.01-0.14-0.1-0.29-0.24-0.32l-11.13-2.78
+				c-0.14-0.04-0.3,0.04-0.36,0.17l-0.47,1c-0.06,0.13-0.22,0.21-0.36,0.17l-0.33-0.09c-0.14-0.03-0.22-0.17-0.19-0.31l1.25-5.01
+				c0.04-0.14,0.18-0.22,0.32-0.19L260.2,331.58z"/>
+			<path class="st0" d="M277.64,323.14c0.1,0.1,0.14,0.29,0.08,0.42l-0.6,1.42c-0.06,0.13-0.22,0.23-0.36,0.22l-13.51-0.91
+				c-0.14-0.01-0.33,0.08-0.41,0.19l-0.5,0.68c-0.09,0.12-0.26,0.17-0.39,0.11l-0.31-0.13c-0.13-0.05-0.19-0.21-0.14-0.34l1.85-4.35
+				c0.06-0.13,0.21-0.19,0.34-0.14l0.31,0.13c0.13,0.05,0.22,0.22,0.19,0.36l-0.16,0.87c-0.02,0.14,0.07,0.26,0.21,0.28l10.85,0.84
+				l-7.97-7.62c-0.1-0.1-0.25-0.08-0.34,0.04l-0.6,0.88c-0.08,0.12-0.25,0.17-0.39,0.12l-0.31-0.13c-0.13-0.06-0.19-0.21-0.14-0.34
+				l1.67-3.92c0.06-0.13,0.21-0.19,0.34-0.14l0.31,0.13c0.13,0.06,0.22,0.22,0.19,0.36l-0.21,1.02c-0.03,0.14,0.03,0.34,0.13,0.43
+				L277.64,323.14z"/>
+			<path class="st0" d="M304.77,286.07c0.33-0.09,0.66-0.21,1.01-0.38c0.35-0.16,0.64-0.33,0.86-0.49c0.78-0.58,1.26-1.19,1.45-1.85
+				c0.19-0.66,0.05-1.3-0.41-1.93c-0.27-0.37-0.59-0.63-0.95-0.77c-0.36-0.14-0.74-0.21-1.14-0.22c-0.4-0.01-0.82,0.03-1.25,0.11
+				c-0.43,0.08-0.86,0.15-1.29,0.22c-0.65,0.09-1.23,0.16-1.76,0.23c-0.53,0.07-1.01,0.08-1.44,0.02c-0.44-0.05-0.84-0.18-1.21-0.39
+				c-0.37-0.21-0.72-0.54-1.05-0.99c-0.36-0.49-0.58-1.01-0.65-1.54c-0.07-0.53-0.01-1.07,0.17-1.6c0.19-0.54,0.5-1.07,0.93-1.59
+				c0.44-0.52,0.98-1.02,1.62-1.5c0.24-0.18,0.51-0.36,0.82-0.53c0.3-0.18,0.61-0.34,0.93-0.5c0.32-0.15,0.63-0.3,0.94-0.43
+				c0.31-0.13,0.6-0.22,0.6-0.22c0.14-0.04,0.28-0.05,0.31-0.02c0.04,0.03,0.12,0.16,0.19,0.28l1.09,1.91
+				c0.07,0.13,0.03,0.3-0.08,0.38l-0.72,0.53c-0.11,0.08-0.3,0.08-0.41-0.01l-1.33-1.12c-0.23,0-0.51,0.07-0.83,0.19
+				c-0.32,0.12-0.66,0.32-1.03,0.6c-0.67,0.5-1.08,1.04-1.25,1.65c-0.16,0.6-0.04,1.18,0.36,1.73c0.26,0.35,0.54,0.59,0.84,0.73
+				c0.3,0.13,0.62,0.2,0.96,0.2c0.34,0,0.7-0.03,1.06-0.11c0.37-0.08,0.75-0.15,1.14-0.22c0.54-0.07,1.1-0.16,1.69-0.27
+				c0.58-0.1,1.15-0.14,1.71-0.12c0.55,0.02,1.07,0.14,1.56,0.34c0.49,0.2,0.9,0.56,1.26,1.08c0.45,0.67,0.7,1.31,0.76,1.92
+				c0.06,0.61-0.02,1.19-0.25,1.75c-0.22,0.55-0.58,1.09-1.07,1.61c-0.49,0.52-1.07,1.02-1.72,1.5c-0.59,0.44-1.21,0.81-1.86,1.13
+				c-0.65,0.32-1.49,0.66-1.49,0.66c-0.13,0.05-0.27,0.07-0.3,0.04c-0.03-0.03-0.12-0.16-0.19-0.28l-1.1-1.9
+				c-0.07-0.13-0.04-0.3,0.08-0.38l0.72-0.53c0.11-0.09,0.3-0.08,0.41,0.01L304.77,286.07z"/>
+			<path class="st0" d="M315.05,264.93c0.07,0.13,0.03,0.3-0.08,0.4l-0.86,0.69c-0.11,0.09-0.15,0.27-0.08,0.39l5.43,10.11
+				c0.07,0.13,0.24,0.19,0.37,0.15l1.05-0.33c0.14-0.04,0.3,0.02,0.37,0.15l0.16,0.3c0.07,0.13,0.02,0.28-0.11,0.35l-4.55,2.44
+				c-0.13,0.07-0.28,0.02-0.35-0.11l-0.16-0.3c-0.07-0.12-0.03-0.3,0.08-0.39l0.85-0.7c0.11-0.09,0.15-0.26,0.08-0.39l-5.43-10.1
+				c-0.07-0.13-0.23-0.2-0.37-0.15l-1.05,0.33c-0.14,0.04-0.3-0.03-0.37-0.15l-0.16-0.3c-0.07-0.13-0.02-0.29,0.11-0.35l4.55-2.45
+				c0.13-0.07,0.29-0.02,0.35,0.11L315.05,264.93z"/>
+			<path class="st0" d="M320.7,261.63c0.03-0.08,0.17-0.19,0.3-0.24l10.61-3.86c0.14-0.05,0.3-0.07,0.37-0.05
+				c0.07,0.02,0.17,0.15,0.22,0.28l0.91,2.27c0.05,0.13-0.01,0.28-0.15,0.33l-0.85,0.31c-0.14,0.05-0.31-0.01-0.39-0.13l-0.75-1.11
+				c-0.08-0.12-0.26-0.18-0.39-0.14l-1.11,0.33c-0.14,0.04-0.36,0.11-0.49,0.16l-1.08,0.39l3.98,10.97c0.05,0.13,0.21,0.23,0.35,0.2
+				l1.09-0.17c0.14-0.02,0.3,0.07,0.35,0.2l0.12,0.32c0.05,0.14-0.02,0.28-0.16,0.33l-4.85,1.76c-0.14,0.05-0.29-0.02-0.33-0.16
+				l-0.12-0.32c-0.05-0.13,0.01-0.3,0.13-0.37l0.95-0.57c0.12-0.07,0.18-0.24,0.13-0.38l-3.99-10.97l-1.08,0.4
+				c-0.14,0.05-0.35,0.14-0.49,0.19l-1.06,0.46c-0.13,0.06-0.23,0.22-0.21,0.36l0.14,1.33c0.02,0.14-0.08,0.3-0.22,0.35l-0.85,0.31
+				c-0.14,0.05-0.28-0.02-0.33-0.16l-0.73-2.25C320.68,261.89,320.67,261.71,320.7,261.63z"/>
+			<path class="st0" d="M346.68,263.13l-4.74,0.9l-0.73,4.34c-0.02,0.14,0.07,0.26,0.22,0.26l0.98,0.02c0.14,0,0.28,0.12,0.31,0.26
+				l0.06,0.33c0.02,0.14-0.07,0.28-0.21,0.3l-4.15,0.78c-0.14,0.02-0.28-0.07-0.3-0.21l-0.06-0.33c-0.03-0.14,0.06-0.3,0.19-0.36
+				l0.85-0.36c0.13-0.06,0.26-0.22,0.29-0.36l2.62-13.64c0.03-0.14,0.17-0.28,0.3-0.31l1.82-0.34c0.14-0.02,0.31,0.05,0.38,0.18
+				l6.75,11.86c0.07,0.12,0.25,0.23,0.39,0.23l0.9,0.03c0.15,0,0.28,0.12,0.31,0.26l0.06,0.33c0.03,0.14-0.07,0.28-0.21,0.3
+				l-4.75,0.9c-0.14,0.02-0.28-0.07-0.31-0.21l-0.06-0.33c-0.03-0.14,0.06-0.3,0.19-0.36l0.85-0.36c0.13-0.05,0.18-0.2,0.12-0.33
+				L346.68,263.13z M343.24,256.89l-1.09,6.03l4-0.75L343.24,256.89z"/>
+			<path class="st0" d="M359.81,266.05c0.31,0.12,0.66,0.22,1.04,0.29c0.38,0.07,0.71,0.11,0.98,0.11c0.97,0,1.72-0.21,2.27-0.63
+				c0.54-0.42,0.81-1.01,0.81-1.79c0-0.46-0.11-0.86-0.31-1.18c-0.21-0.33-0.47-0.61-0.79-0.86c-0.32-0.25-0.68-0.46-1.08-0.65
+				c-0.39-0.19-0.79-0.39-1.17-0.59c-0.57-0.31-1.09-0.59-1.56-0.85c-0.46-0.26-0.86-0.53-1.18-0.83c-0.32-0.3-0.57-0.64-0.74-1.03
+				c-0.17-0.39-0.26-0.86-0.26-1.42c0-0.61,0.13-1.16,0.38-1.63c0.26-0.47,0.62-0.87,1.09-1.19c0.47-0.32,1.03-0.57,1.69-0.73
+				c0.66-0.17,1.39-0.25,2.2-0.26c0.3,0,0.62,0.02,0.97,0.06c0.35,0.04,0.7,0.09,1.04,0.15c0.35,0.06,0.69,0.13,1.01,0.21
+				c0.33,0.08,0.61,0.18,0.61,0.18c0.13,0.05,0.26,0.12,0.27,0.16c0.01,0.05,0.01,0.2-0.01,0.34l-0.26,2.18
+				c-0.02,0.14-0.15,0.26-0.29,0.26l-0.89,0c-0.14,0-0.29-0.11-0.32-0.25l-0.42-1.69c-0.19-0.14-0.45-0.25-0.78-0.33
+				c-0.33-0.09-0.72-0.13-1.19-0.13c-0.83,0-1.49,0.2-1.98,0.59c-0.49,0.39-0.73,0.93-0.73,1.61c0,0.44,0.09,0.8,0.25,1.08
+				c0.16,0.28,0.38,0.53,0.66,0.73c0.27,0.2,0.58,0.38,0.92,0.54c0.34,0.16,0.69,0.32,1.05,0.5c0.48,0.26,0.98,0.52,1.52,0.78
+				c0.53,0.26,1.01,0.57,1.44,0.91c0.43,0.35,0.78,0.74,1.06,1.19c0.27,0.45,0.4,0.99,0.37,1.61c-0.04,0.81-0.21,1.47-0.52,2
+				c-0.31,0.53-0.72,0.95-1.23,1.26c-0.51,0.32-1.12,0.54-1.82,0.66c-0.7,0.13-1.46,0.19-2.28,0.19c-0.74,0-1.46-0.06-2.17-0.18
+				c-0.71-0.13-1.59-0.35-1.59-0.35c-0.14-0.04-0.26-0.1-0.26-0.15c-0.01-0.04,0-0.2,0.02-0.34l0.24-2.18
+				c0.02-0.14,0.15-0.26,0.29-0.26l0.89,0c0.14,0,0.29,0.11,0.32,0.25L359.81,266.05z"/>
+			<path class="st0" d="M396.87,271.85c-1.56,0.84-3.4,0.91-5.53,0.22c-1.03-0.33-1.89-0.78-2.6-1.34
+				c-0.71-0.56-1.24-1.22-1.61-1.98c-0.37-0.76-0.56-1.62-0.57-2.58c-0.01-0.96,0.17-2,0.53-3.13c0.38-1.18,0.87-2.17,1.48-2.96
+				c0.6-0.79,1.29-1.39,2.06-1.81c0.77-0.41,1.62-0.64,2.54-0.67c0.92-0.04,1.89,0.11,2.9,0.43c1.01,0.33,1.87,0.77,2.59,1.33
+				c0.71,0.56,1.26,1.23,1.63,2c0.37,0.77,0.57,1.64,0.58,2.61c0.02,0.96-0.16,2.02-0.53,3.16
+				C399.58,269.44,398.43,271.02,396.87,271.85z M398.16,261.55c-0.38-1.2-1.21-2-2.49-2.42c-1.3-0.42-2.45-0.27-3.46,0.45
+				c-1,0.72-1.84,2.09-2.49,4.12c-0.67,2.05-0.81,3.67-0.44,4.87c0.37,1.2,1.21,2,2.5,2.42c1.3,0.42,2.45,0.27,3.46-0.45
+				c1.01-0.72,1.84-2.09,2.49-4.12C398.39,264.37,398.53,262.75,398.16,261.55z"/>
+			<path class="st0" d="M405.28,276.06c0.22,0.26,0.47,0.51,0.77,0.76c0.3,0.25,0.57,0.44,0.81,0.57c0.85,0.46,1.61,0.64,2.29,0.53
+				c0.68-0.1,1.2-0.5,1.57-1.18c0.22-0.41,0.32-0.8,0.3-1.19c-0.02-0.38-0.12-0.76-0.28-1.13c-0.17-0.37-0.37-0.73-0.63-1.08
+				c-0.26-0.36-0.5-0.71-0.74-1.08c-0.35-0.55-0.67-1.05-0.95-1.5c-0.28-0.45-0.49-0.88-0.63-1.3c-0.14-0.42-0.19-0.83-0.15-1.26
+				c0.04-0.42,0.19-0.88,0.45-1.37c0.29-0.54,0.67-0.96,1.12-1.24c0.45-0.29,0.96-0.47,1.53-0.52c0.57-0.06,1.18,0,1.84,0.17
+				c0.66,0.17,1.34,0.45,2.05,0.83c0.26,0.14,0.54,0.31,0.82,0.52c0.29,0.2,0.57,0.41,0.84,0.63c0.28,0.22,0.54,0.45,0.79,0.67
+				c0.25,0.23,0.45,0.45,0.45,0.45c0.1,0.11,0.17,0.23,0.15,0.27c-0.01,0.04-0.09,0.18-0.17,0.29l-1.27,1.79
+				c-0.08,0.12-0.26,0.16-0.38,0.09l-0.78-0.43c-0.13-0.07-0.2-0.24-0.16-0.38l0.45-1.68c-0.1-0.21-0.28-0.43-0.52-0.67
+				c-0.25-0.23-0.57-0.46-0.98-0.68c-0.73-0.39-1.4-0.54-2.02-0.43c-0.62,0.11-1.09,0.46-1.41,1.06c-0.21,0.38-0.31,0.74-0.3,1.07
+				c0.01,0.33,0.08,0.65,0.22,0.96c0.14,0.31,0.33,0.61,0.55,0.92c0.23,0.3,0.45,0.61,0.68,0.94c0.29,0.45,0.61,0.93,0.95,1.41
+				c0.34,0.49,0.62,0.99,0.83,1.5c0.21,0.51,0.33,1.03,0.35,1.55c0.02,0.53-0.13,1.06-0.45,1.6c-0.42,0.69-0.89,1.19-1.42,1.5
+				c-0.53,0.31-1.09,0.48-1.69,0.51c-0.6,0.03-1.24-0.07-1.91-0.29c-0.67-0.23-1.37-0.53-2.09-0.92c-0.65-0.35-1.25-0.75-1.81-1.2
+				c-0.56-0.45-1.23-1.07-1.23-1.07c-0.11-0.1-0.18-0.21-0.16-0.26c0.02-0.04,0.1-0.17,0.18-0.29l1.26-1.8
+				c0.08-0.11,0.25-0.15,0.38-0.09l0.78,0.42c0.13,0.07,0.2,0.24,0.16,0.38L405.28,276.06z"/>
+			<path class="st0" d="M420.17,285.46c-0.09,0.11-0.07,0.28,0.04,0.37l1.76,1.38c0.11,0.09,0.3,0.23,0.42,0.31l0.94,0.65
+				c0.12,0.08,0.31,0.07,0.42-0.02l1.15-0.93c0.11-0.09,0.3-0.09,0.41,0l0.72,0.56c0.11,0.09,0.13,0.25,0.04,0.36l-1.52,1.81
+				c-0.09,0.11-0.21,0.24-0.26,0.28c-0.05,0.05-0.19,0.01-0.3-0.08l-7.63-5.98c-0.11-0.09-0.13-0.25-0.04-0.37l0.21-0.26
+				c0.09-0.11,0.27-0.15,0.39-0.09l0.98,0.5c0.13,0.07,0.3,0.03,0.39-0.09l7.08-9.02c0.09-0.11,0.08-0.29-0.01-0.4l-0.72-0.83
+				c-0.09-0.11-0.1-0.29-0.01-0.4l0.21-0.26c0.09-0.11,0.25-0.14,0.37-0.05l4.05,3.17c0.11,0.09,0.13,0.25,0.05,0.37l-0.21,0.27
+				c-0.09,0.11-0.26,0.15-0.39,0.09l-0.98-0.5c-0.13-0.07-0.31-0.03-0.39,0.09L420.17,285.46z"/>
+			<path class="st0" d="M437.11,301.52c-1.77-0.08-3.39-0.95-4.87-2.63c-0.71-0.81-1.23-1.63-1.55-2.47
+				c-0.32-0.84-0.45-1.68-0.38-2.53c0.07-0.85,0.35-1.68,0.82-2.51c0.48-0.83,1.16-1.64,2.05-2.42c0.93-0.82,1.86-1.42,2.78-1.8
+				c0.92-0.38,1.82-0.55,2.69-0.51c0.87,0.04,1.71,0.28,2.53,0.72c0.81,0.44,1.57,1.05,2.27,1.85c0.7,0.8,1.22,1.62,1.55,2.46
+				c0.33,0.85,0.45,1.7,0.38,2.55c-0.07,0.86-0.35,1.7-0.83,2.54c-0.48,0.84-1.17,1.65-2.07,2.45
+				C440.67,300.83,438.88,301.6,437.11,301.52z M443.46,293.31c0.29-1.22-0.02-2.34-0.91-3.35c-0.9-1.02-1.97-1.48-3.2-1.37
+				c-1.23,0.11-2.65,0.87-4.24,2.27c-1.62,1.43-2.57,2.75-2.86,3.97c-0.29,1.22,0.01,2.34,0.92,3.36c0.9,1.02,1.97,1.48,3.2,1.37
+				c1.23-0.11,2.65-0.86,4.24-2.27C442.23,295.86,443.18,294.54,443.46,293.31z"/>
+			<path class="st0" d="M449.33,310.52c0.11-0.09,0.14-0.27,0.07-0.39l-1.55-2.64l-5.11,3.08l1.67,2.81
+				c0.07,0.12,0.2,0.32,0.28,0.44l0.64,0.94c0.08,0.12,0.26,0.18,0.39,0.14l1.4-0.46c0.13-0.04,0.31,0.02,0.38,0.14l0.48,0.8
+				c0.07,0.12,0.03,0.28-0.1,0.35l-2.07,1.14c-0.13,0.07-0.28,0.14-0.34,0.17c-0.06,0.02-0.18-0.06-0.25-0.18l-5.37-9.04
+				c-0.07-0.12-0.03-0.28,0.09-0.36l0.29-0.17c0.12-0.07,0.3-0.05,0.4,0.06l0.73,0.83c0.09,0.11,0.27,0.13,0.4,0.06l9.86-5.86
+				c0.12-0.07,0.18-0.24,0.14-0.38l-0.37-1.04c-0.05-0.14,0.01-0.3,0.14-0.38l0.29-0.17c0.12-0.07,0.28-0.03,0.36,0.09l5.12,8.62
+				c0.07,0.12,0.13,0.28,0.12,0.36c-0.01,0.07-0.11,0.2-0.23,0.28l-2.06,1.32c-0.12,0.08-0.28,0.04-0.35-0.08l-0.47-0.78
+				c-0.07-0.12-0.05-0.3,0.06-0.4l1.12-1.05c0.1-0.1,0.14-0.28,0.07-0.41l-0.53-1.03c-0.06-0.13-0.18-0.33-0.25-0.45l-1.51-2.55
+				l-4.52,2.7l1.56,2.63c0.07,0.12,0.24,0.18,0.38,0.13l1.03-0.39c0.13-0.05,0.3,0.01,0.38,0.14l0.39,0.66
+				c0.07,0.13,0.03,0.28-0.09,0.36l-3.33,1.98c-0.12,0.07-0.28,0.03-0.36-0.09l-0.39-0.66c-0.07-0.12-0.04-0.3,0.07-0.39
+				L449.33,310.52z"/>
+			<path class="st0" d="M280.36,304.41c-0.13-0.06-0.3,0-0.38,0.12l-1.68,2.56l5.02,3.23l1.79-2.74c0.08-0.12,0.2-0.32,0.27-0.45
+				l0.56-0.99c0.07-0.13,0.05-0.31-0.05-0.41l-1.03-1.05c-0.1-0.1-0.12-0.28-0.04-0.4l0.51-0.78c0.08-0.12,0.24-0.15,0.36-0.07
+				l1.94,1.36c0.12,0.08,0.25,0.19,0.3,0.23c0.05,0.05,0.03,0.18-0.05,0.3l-5.74,8.81c-0.08,0.12-0.24,0.15-0.36,0.07l-0.28-0.18
+				c-0.12-0.08-0.17-0.25-0.12-0.38l0.42-1.02c0.05-0.13,0-0.3-0.12-0.38l-9.61-6.26c-0.12-0.08-0.3-0.06-0.4,0.05l-0.77,0.79
+				c-0.1,0.1-0.28,0.12-0.4,0.04l-0.28-0.18c-0.12-0.08-0.15-0.24-0.08-0.36l5.48-8.4c0.08-0.12,0.2-0.24,0.27-0.27
+				c0.07-0.03,0.23,0.01,0.35,0.09l2.1,1.27c0.12,0.07,0.16,0.23,0.08,0.35l-0.5,0.76c-0.08,0.12-0.25,0.18-0.39,0.13l-1.44-0.53
+				c-0.13-0.05-0.31,0-0.4,0.12l-0.69,0.93c-0.09,0.12-0.22,0.31-0.3,0.43l-1.63,2.48l4.42,2.87l1.67-2.56
+				c0.08-0.12,0.06-0.3-0.05-0.39l-0.8-0.76c-0.1-0.1-0.12-0.28-0.05-0.4l0.42-0.64c0.08-0.12,0.24-0.16,0.36-0.08l3.25,2.12
+				c0.12,0.08,0.16,0.24,0.08,0.36l-0.42,0.65c-0.08,0.12-0.25,0.17-0.38,0.11L280.36,304.41z"/>
+			<path class="st0" d="M463.07,321.79c0.05,0.13,0.02,0.34-0.07,0.46l-7.32,10.14l8.52-2.97c0.13-0.05,0.23-0.2,0.21-0.34
+				l-0.16-1.09c-0.02-0.14,0.07-0.3,0.21-0.34l0.32-0.11c0.14-0.05,0.29,0.03,0.33,0.16l1.45,4.18c0.05,0.14-0.03,0.29-0.16,0.33
+				l-0.32,0.11c-0.13,0.05-0.3-0.01-0.38-0.14l-0.56-0.98c-0.07-0.12-0.24-0.19-0.38-0.14l-12.06,4.17
+				c-0.14,0.05-0.28-0.03-0.33-0.16l-0.41-1.19c-0.05-0.14-0.02-0.34,0.07-0.46l8.49-11.61l-9.91,3.43
+				c-0.14,0.05-0.23,0.2-0.21,0.34l0.16,1.09c0.02,0.14-0.07,0.3-0.21,0.34l-0.32,0.11c-0.14,0.05-0.29-0.02-0.33-0.16l-1.45-4.18
+				c-0.05-0.13,0.02-0.29,0.16-0.33l0.32-0.11c0.13-0.05,0.3,0.01,0.37,0.14l0.56,0.97c0.07,0.12,0.24,0.19,0.38,0.14l10.84-3.75
+				c0.14-0.05,0.23-0.2,0.21-0.34l-0.16-1.11c-0.02-0.14,0.07-0.3,0.21-0.34l0.32-0.11c0.14-0.04,0.28,0.03,0.33,0.16L463.07,321.79
+				z"/>
+			<path class="st0" d="M455.55,343.72c-0.08,0.32-0.12,0.68-0.14,1.07c-0.02,0.39-0.01,0.72,0.03,0.99
+				c0.14,0.95,0.45,1.67,0.94,2.15c0.49,0.48,1.12,0.67,1.89,0.56c0.46-0.07,0.83-0.22,1.13-0.48c0.29-0.25,0.54-0.55,0.74-0.9
+				c0.2-0.35,0.36-0.74,0.49-1.16c0.13-0.42,0.27-0.83,0.42-1.24c0.23-0.61,0.44-1.17,0.63-1.66c0.19-0.5,0.41-0.92,0.66-1.29
+				c0.25-0.36,0.56-0.65,0.92-0.87c0.36-0.22,0.82-0.37,1.37-0.45c0.61-0.09,1.16-0.04,1.66,0.15c0.5,0.19,0.95,0.49,1.33,0.91
+				c0.38,0.42,0.7,0.94,0.96,1.58c0.26,0.63,0.44,1.35,0.56,2.14c0.04,0.3,0.07,0.62,0.08,0.96c0.01,0.35,0.01,0.7,0,1.05
+				c-0.01,0.35-0.04,0.7-0.07,1.03c-0.04,0.34-0.09,0.63-0.09,0.63c-0.03,0.14-0.08,0.27-0.13,0.29c-0.04,0.02-0.2,0.04-0.34,0.04
+				l-2.2,0.05c-0.14,0-0.28-0.11-0.3-0.25l-0.13-0.88c-0.02-0.14,0.07-0.3,0.21-0.36l1.61-0.64c0.11-0.21,0.18-0.48,0.22-0.81
+				c0.04-0.34,0.03-0.73-0.04-1.2c-0.12-0.82-0.4-1.45-0.86-1.88c-0.46-0.43-1.02-0.59-1.69-0.5c-0.43,0.06-0.78,0.19-1.04,0.4
+				c-0.26,0.2-0.47,0.45-0.64,0.75c-0.16,0.3-0.3,0.63-0.41,0.99c-0.11,0.36-0.22,0.73-0.35,1.1c-0.19,0.51-0.38,1.05-0.56,1.61
+				c-0.19,0.56-0.42,1.08-0.71,1.56c-0.28,0.47-0.63,0.88-1.03,1.21c-0.41,0.33-0.92,0.53-1.55,0.59c-0.8,0.08-1.49,0-2.05-0.24
+				c-0.56-0.24-1.04-0.58-1.42-1.04c-0.38-0.46-0.69-1.03-0.91-1.71c-0.22-0.67-0.39-1.42-0.51-2.23c-0.1-0.73-0.14-1.45-0.12-2.17
+				c0.03-0.72,0.13-1.62,0.13-1.62c0.02-0.14,0.06-0.27,0.11-0.28c0.04-0.01,0.2-0.02,0.34-0.03l2.2-0.06
+				c0.14-0.01,0.28,0.11,0.3,0.25l0.13,0.88c0.02,0.14-0.07,0.3-0.2,0.36L455.55,343.72z"/>
+			<path class="st0" d="M469.32,363.04c-0.14,0-0.28-0.11-0.31-0.25l-0.22-1.08c-0.03-0.14-0.17-0.25-0.31-0.25l-11.47,0.05
+				c-0.15,0-0.28,0.12-0.31,0.26l-0.2,1.08c-0.03,0.14-0.16,0.26-0.31,0.26l-0.34,0c-0.14,0-0.26-0.12-0.26-0.26l-0.02-5.16
+				c0-0.14,0.12-0.26,0.26-0.26h0.34c0.14,0,0.28,0.11,0.31,0.25l0.21,1.08c0.03,0.14,0.17,0.25,0.31,0.25l11.47-0.05
+				c0.14,0,0.28-0.12,0.31-0.26l0.2-1.08c0.03-0.14,0.17-0.26,0.31-0.26l0.34,0c0.15,0,0.26,0.12,0.26,0.26l0.02,5.16
+				c0,0.14-0.12,0.26-0.26,0.26L469.32,363.04z"/>
+			<path class="st0" d="M456.19,371.77c-0.17,0.29-0.32,0.62-0.45,0.98c-0.13,0.36-0.22,0.68-0.26,0.95
+				c-0.15,0.95-0.06,1.73,0.27,2.34c0.32,0.6,0.87,0.96,1.64,1.08c0.46,0.07,0.87,0.03,1.22-0.12c0.35-0.15,0.68-0.37,0.97-0.64
+				c0.29-0.28,0.56-0.6,0.81-0.96c0.25-0.36,0.5-0.71,0.77-1.06c0.4-0.51,0.76-0.98,1.09-1.4c0.33-0.42,0.66-0.76,1.01-1.03
+				c0.35-0.27,0.72-0.46,1.14-0.57c0.41-0.11,0.89-0.12,1.44-0.03c0.61,0.09,1.12,0.31,1.55,0.63c0.43,0.33,0.76,0.75,1,1.27
+				c0.24,0.51,0.4,1.11,0.45,1.79c0.06,0.68,0.03,1.42-0.1,2.21c-0.04,0.3-0.12,0.61-0.21,0.95c-0.09,0.34-0.2,0.67-0.31,1
+				c-0.11,0.34-0.24,0.65-0.37,0.97c-0.13,0.31-0.27,0.57-0.27,0.57c-0.07,0.13-0.16,0.23-0.21,0.24c-0.05,0-0.2-0.03-0.34-0.06
+				l-2.12-0.6c-0.14-0.04-0.23-0.19-0.21-0.33l0.14-0.88c0.02-0.14,0.16-0.26,0.3-0.28l1.73-0.14c0.16-0.17,0.31-0.41,0.45-0.71
+				c0.14-0.31,0.24-0.69,0.32-1.15c0.13-0.82,0.04-1.5-0.27-2.05c-0.31-0.54-0.8-0.87-1.47-0.97c-0.43-0.07-0.8-0.04-1.11,0.07
+				c-0.31,0.12-0.59,0.29-0.83,0.53c-0.24,0.24-0.47,0.51-0.68,0.82c-0.21,0.31-0.43,0.63-0.66,0.95c-0.33,0.43-0.67,0.89-1.01,1.37
+				c-0.35,0.48-0.72,0.91-1.13,1.28c-0.41,0.37-0.86,0.65-1.35,0.85c-0.48,0.2-1.04,0.24-1.65,0.11c-0.79-0.17-1.42-0.44-1.89-0.83
+				c-0.47-0.39-0.82-0.87-1.05-1.42c-0.23-0.55-0.35-1.19-0.36-1.9c-0.01-0.71,0.05-1.47,0.17-2.28c0.11-0.73,0.29-1.43,0.53-2.11
+				s0.6-1.51,0.6-1.51c0.06-0.13,0.14-0.24,0.19-0.24c0.04,0,0.2,0.03,0.33,0.07l2.12,0.58c0.14,0.04,0.23,0.18,0.21,0.33
+				l-0.14,0.88c-0.02,0.14-0.16,0.27-0.3,0.28L456.19,371.77z"/>
+		</g>
+		<g>
+			<path class="st0" d="M301.44,445.62c0.13,0.06,0.3,0.01,0.38-0.11l5.9-8.48l-10.99,6.23c-0.13,0.07-0.32,0.05-0.43-0.04
+				l-0.44-0.36c-0.11-0.09-0.17-0.28-0.14-0.42l3.18-11.87l-6.67,7.27c-0.1,0.1-0.12,0.28-0.03,0.39l0.67,0.91
+				c0.09,0.12,0.08,0.3-0.02,0.4l-0.23,0.24c-0.1,0.1-0.26,0.11-0.37,0.01l-3.25-3.03c-0.11-0.1-0.11-0.26-0.01-0.37l0.23-0.25
+				c0.1-0.1,0.28-0.13,0.4-0.05l0.94,0.59c0.12,0.07,0.3,0.05,0.4-0.05l7.55-8.38c0.1-0.11,0.1-0.28,0-0.39l-0.71-0.85
+				c-0.09-0.11-0.09-0.29,0-0.4l0.21-0.26c0.09-0.11,0.26-0.13,0.37-0.04l3.4,2.76c0.11,0.09,0.17,0.28,0.14,0.42l-2.71,10.45
+				l9.31-5.07c0.13-0.07,0.32-0.05,0.43,0.04l3.26,2.65c0.11,0.09,0.13,0.25,0.04,0.36l-0.21,0.26c-0.09,0.11-0.27,0.15-0.39,0.08
+				l-0.98-0.53c-0.13-0.07-0.3-0.03-0.39,0.08l-6.44,9.15c-0.08,0.12-0.07,0.3,0.03,0.41l0.76,0.81c0.1,0.1,0.11,0.28,0.02,0.4
+				l-0.2,0.27c-0.09,0.12-0.25,0.14-0.36,0.06l-4.19-3.07c-0.11-0.08-0.14-0.25-0.06-0.36l0.2-0.27c0.08-0.12,0.26-0.16,0.39-0.1
+				L301.44,445.62z"/>
+			<path class="st0" d="M326.06,444.89c1.01,0.51,1.89,1.09,2.65,1.74c0.75,0.64,1.32,1.37,1.7,2.17c0.38,0.8,0.55,1.69,0.51,2.66
+				c-0.05,0.98-0.37,2.05-0.97,3.23c-0.56,1.1-1.22,1.98-1.98,2.63c-0.76,0.65-1.58,1.09-2.47,1.31c-0.89,0.22-1.83,0.24-2.83,0.06
+				c-1-0.18-2.85-0.97-2.85-0.97c-0.13-0.06-0.34-0.15-0.47-0.22l-4.96-2.54c-0.13-0.06-0.18-0.22-0.11-0.35l0.15-0.3
+				c0.06-0.13,0.23-0.2,0.37-0.16l1.07,0.31c0.14,0.04,0.3-0.03,0.37-0.16l5.21-10.18c0.07-0.13,0.03-0.3-0.09-0.39l-0.87-0.68
+				c-0.11-0.09-0.15-0.26-0.09-0.39l0.15-0.3c0.07-0.13,0.22-0.18,0.35-0.11L326.06,444.89z M328.39,450.92
+				c0.14-0.79,0.12-1.51-0.05-2.15c-0.18-0.64-0.52-1.22-1.01-1.72c-0.5-0.51-1.73-1.24-1.73-1.24c-0.12-0.08-0.33-0.19-0.46-0.25
+				l-1.3-0.67l-5.53,10.81l1.24,0.64c0.6,0.3,1.18,0.55,1.73,0.74c0.56,0.18,1.09,0.27,1.61,0.26c0.82-0.07,1.62-0.39,2.41-0.96
+				c0.79-0.58,1.51-1.51,2.16-2.79C327.94,452.6,328.25,451.71,328.39,450.92z"/>
+			<path class="st0" d="M350.52,454.96c-0.03-0.48-0.02-0.56-0.03-0.9c-0.02-0.42-0.15-0.57-0.57-0.84
+				c-0.17-0.1-0.35-0.19-0.54-0.27c-0.31-0.14-0.66-0.25-1.05-0.32c-0.71-0.13-1.38-0.12-2.01,0.02c-0.63,0.14-1.19,0.42-1.69,0.84
+				c-0.5,0.42-0.93,0.98-1.29,1.68c-0.36,0.7-0.62,1.55-0.8,2.52c-0.38,2.08-0.23,3.69,0.44,4.85c0.67,1.16,1.84,1.89,3.49,2.19
+				c0.48,0.09,1.01,0.12,1.58,0.1c0.49-0.02,1.04-0.09,1.68-0.17c0.33-0.04,0.36,0.2,0.36,0.2l0.04,0.26c0,0,0.03,0.3-0.22,0.4
+				c-0.56,0.21-1.2,0.36-1.91,0.46c-0.83,0.11-1.73,0.08-2.72-0.1c-0.94-0.17-1.8-0.46-2.58-0.86c-0.78-0.41-1.41-0.94-1.92-1.62
+				c-0.5-0.67-0.85-1.49-1.04-2.45c-0.19-0.96-0.16-2.08,0.07-3.37c0.24-1.3,0.63-2.38,1.18-3.25c0.55-0.86,1.22-1.54,2.01-2.03
+				c0.78-0.49,1.66-0.79,2.64-0.92c0.98-0.13,2.01-0.09,3.1,0.11c0.74,0.14,1.42,0.33,2.04,0.59c0.43,0.18,0.84,0.36,1.22,0.55
+				c0.53,0.26,0.39,0.71,0.39,0.71l-0.57,1.88c0,0-0.14,0.41-0.5,0.35c-0.32-0.06-0.52-0.09-0.52-0.09S350.55,455.44,350.52,454.96z
+				"/>
+			<path class="st0" d="M372.31,455.44c-0.14-0.46-0.15-0.54-0.24-0.87c-0.12-0.4-0.29-0.52-0.76-0.68
+				c-0.18-0.06-0.38-0.11-0.59-0.14c-0.33-0.06-0.7-0.08-1.09-0.06c-0.73,0.04-1.37,0.21-1.95,0.49c-0.57,0.29-1.05,0.69-1.44,1.22
+				c-0.39,0.53-0.67,1.18-0.85,1.94c-0.18,0.77-0.24,1.65-0.18,2.64c0.12,2.1,0.65,3.64,1.58,4.61c0.93,0.96,2.23,1.4,3.91,1.3
+				c0.49-0.03,1.01-0.12,1.56-0.28c0.47-0.13,0.99-0.33,1.59-0.56c0.31-0.12,0.4,0.11,0.4,0.11l0.09,0.24c0,0,0.1,0.28-0.12,0.44
+				c-0.49,0.34-1.08,0.63-1.75,0.9c-0.78,0.3-1.66,0.49-2.66,0.55c-0.96,0.06-1.86-0.02-2.71-0.23c-0.85-0.21-1.6-0.58-2.25-1.11
+				c-0.65-0.53-1.18-1.25-1.59-2.13c-0.41-0.89-0.65-1.99-0.73-3.29c-0.08-1.32,0.05-2.46,0.38-3.43c0.33-0.97,0.82-1.79,1.47-2.45
+				c0.65-0.66,1.43-1.16,2.35-1.52c0.92-0.35,1.93-0.57,3.04-0.63c0.75-0.05,1.46-0.02,2.12,0.09c0.46,0.07,0.9,0.15,1.32,0.24
+				c0.58,0.13,0.55,0.6,0.55,0.6l-0.11,1.96c0,0-0.03,0.43-0.4,0.46c-0.33,0.02-0.52,0.03-0.52,0.03S372.46,455.9,372.31,455.44z"/>
+			<path class="st0" d="M393.57,450.96c-0.24-0.42-0.26-0.5-0.42-0.8c-0.2-0.37-0.39-0.45-0.88-0.51c-0.19-0.03-0.4-0.02-0.61-0.02
+				c-0.34,0.01-0.7,0.07-1.08,0.17c-0.7,0.19-1.3,0.49-1.8,0.89c-0.5,0.4-0.88,0.89-1.15,1.49c-0.27,0.6-0.41,1.29-0.42,2.08
+				c-0.02,0.79,0.11,1.66,0.37,2.62c0.56,2.03,1.4,3.42,2.51,4.17c1.11,0.75,2.48,0.9,4.1,0.45c0.47-0.13,0.96-0.33,1.46-0.59
+				c0.43-0.23,0.9-0.53,1.44-0.88c0.28-0.18,0.42,0.02,0.42,0.02l0.14,0.22c0,0,0.16,0.25-0.02,0.45c-0.41,0.43-0.92,0.84-1.52,1.24
+				c-0.7,0.47-1.52,0.83-2.49,1.1c-0.92,0.25-1.82,0.37-2.69,0.34c-0.87-0.03-1.68-0.23-2.43-0.61c-0.75-0.39-1.41-0.97-2-1.75
+				c-0.59-0.78-1.06-1.81-1.4-3.06c-0.35-1.27-0.47-2.42-0.35-3.44c0.12-1.02,0.43-1.92,0.92-2.7c0.49-0.78,1.15-1.44,1.98-1.98
+				c0.82-0.53,1.77-0.95,2.84-1.25c0.72-0.2,1.42-0.32,2.09-0.36c0.47-0.03,0.92-0.04,1.34-0.04c0.59,0,0.66,0.47,0.66,0.47
+				l0.31,1.94c0,0,0.06,0.43-0.3,0.53c-0.32,0.09-0.51,0.14-0.51,0.14S393.81,451.37,393.57,450.96z"/>
+			<path class="st0" d="M411.26,447.49l-6.31-2.86c-0.13-0.06-0.35-0.07-0.49-0.03l-0.95,0.29c-0.14,0.04-0.31-0.02-0.38-0.15
+				l-0.17-0.29c-0.07-0.13-0.03-0.28,0.1-0.36l4.54-2.58c0.12-0.07,0.28-0.03,0.36,0.09l0.17,0.3c0.07,0.12,0.04,0.3-0.06,0.4
+				l-0.56,0.52c-0.11,0.1-0.09,0.23,0.04,0.29l4.5,2.14l0.55-5.02c0.02-0.14-0.08-0.23-0.22-0.18l-0.79,0.25
+				c-0.14,0.04-0.31-0.02-0.38-0.15l-0.17-0.29c-0.07-0.13-0.03-0.29,0.1-0.36l3.6-2.05c0.12-0.07,0.28-0.03,0.35,0.1l0.17,0.29
+				c0.07,0.12,0.04,0.3-0.07,0.4l-0.82,0.72c-0.11,0.09-0.21,0.29-0.22,0.43l-0.7,6.39l6.99,3.25c0.13,0.06,0.35,0.07,0.49,0.03
+				l0.97-0.3c0.14-0.04,0.31,0.02,0.38,0.15l0.17,0.29c0.07,0.12,0.03,0.28-0.1,0.35l-4.56,2.6c-0.13,0.07-0.28,0.03-0.35-0.1
+				l-0.17-0.29c-0.07-0.13-0.04-0.31,0.07-0.4l0.61-0.55c0.11-0.1,0.09-0.23-0.04-0.29l-5.25-2.52l-0.64,5.88
+				c-0.02,0.14,0.08,0.22,0.22,0.18l0.75-0.23c0.14-0.04,0.31,0.02,0.38,0.15l0.17,0.29c0.07,0.12,0.03,0.28-0.1,0.35l-3.62,2.06
+				c-0.12,0.07-0.28,0.03-0.35-0.1l-0.17-0.29c-0.07-0.13-0.04-0.3,0.07-0.4l0.82-0.72c0.11-0.09,0.21-0.29,0.23-0.43L411.26,447.49
+				z"/>
+			<path class="st0" d="M426.9,428.29c0.09,0.11,0.1,0.29,0.01,0.4l-0.68,0.88c-0.09,0.11-0.08,0.3,0.01,0.4l7.57,8.58
+				c0.09,0.11,0.27,0.14,0.4,0.06l0.95-0.56c0.12-0.07,0.3-0.05,0.4,0.06l0.22,0.25c0.09,0.11,0.08,0.27-0.02,0.37l-3.89,3.43
+				c-0.11,0.09-0.27,0.09-0.37-0.02l-0.22-0.25c-0.1-0.11-0.1-0.29-0.01-0.4l0.68-0.88c0.09-0.11,0.08-0.29-0.01-0.4l-7.57-8.58
+				c-0.09-0.11-0.27-0.14-0.4-0.06l-0.95,0.56c-0.13,0.07-0.3,0.04-0.4-0.06l-0.22-0.25c-0.09-0.11-0.08-0.27,0.02-0.37l3.89-3.43
+				c0.11-0.1,0.27-0.08,0.37,0.02L426.9,428.29z"/>
+		</g>
+		<g>
+			<path class="st0" d="M297.9,293.89c0.14,0.02,0.34-0.04,0.43-0.14l2.16-2.27c0.1-0.11,0.09-0.27-0.01-0.37l-0.24-0.23
+				c-0.11-0.1-0.29-0.11-0.4-0.03l-0.82,0.57c-0.12,0.08-0.33,0.13-0.47,0.11l-6.46-1.05c-0.14-0.02-0.21-0.15-0.15-0.28
+				c0,0,0.79-1.7,0.76-2.59c-0.03-0.89-0.43-1.69-1.19-2.42c-0.54-0.52-1.09-0.82-1.64-0.9c-0.55-0.08-1.09-0.02-1.62,0.17
+				c-0.53,0.19-1.03,0.49-1.52,0.88c-0.49,0.39-1.18,1.07-1.18,1.07c-0.1,0.1-0.27,0.27-0.37,0.37l-3.8,3.99
+				c-0.1,0.11-0.09,0.27,0.01,0.37l0.24,0.23c0.1,0.1,0.28,0.11,0.4,0.03l0.91-0.66c0.12-0.08,0.3-0.07,0.4,0.03l8.31,7.91
+				c0.1,0.1,0.12,0.28,0.05,0.4l-0.61,0.94c-0.08,0.12-0.06,0.3,0.05,0.4l0.25,0.23c0.1,0.1,0.27,0.09,0.37-0.01l3.56-3.74
+				c0.1-0.1,0.09-0.27-0.01-0.37l-0.25-0.24c-0.1-0.1-0.28-0.11-0.4-0.03l-0.9,0.64c-0.12,0.08-0.3,0.07-0.4-0.03l-3.83-3.64
+				l0.57-0.6c0.1-0.1,0.3-0.17,0.44-0.14L297.9,293.89z M289.07,292.44c-0.1,0.11-0.17,0.17-0.17,0.17l-4.13-3.91l0.74-0.77
+				c0.1-0.11,0.26-0.27,0.37-0.37c0,0,0.45-0.44,0.77-0.68c0.32-0.23,0.64-0.39,0.97-0.46c0.33-0.07,0.67-0.05,1.02,0.07
+				c0.35,0.12,0.71,0.36,1.09,0.71c0.82,0.78,1.21,1.54,1.16,2.28c-0.04,0.74-0.98,2.02-0.98,2.02c-0.08,0.12-0.24,0.3-0.33,0.4
+				L289.07,292.44z"/>
+		</g>
+	</g>
+</g>
+<g id="Outline">
+	<g>
+		<path class="st0" d="M533.16,301.42v-1.22h22.78v1.22c-6.6,0.82-6.73,1.63-6.73,8.77v19.65c0,10.67,3.6,16.66,12.85,16.66
+			c10,0,13.4-7,13.6-17.2v-19.17c0-7-0.14-7.89-6.73-8.7v-1.22h16.66v1.22c-6.6,0.82-6.73,1.7-6.73,8.7v19.04
+			c0,14.75-6.87,21.21-19.04,21.21c-13.53,0-19.92-7-19.92-19.58v-20.6C539.9,303.18,539.76,302.23,533.16,301.42z"/>
+		<path class="st0" d="M623.53,301.42v-1.22h16.66v1.22c-6.6,0.82-6.73,1.7-6.73,8.7v39.37h-5.71l-28.96-37.46v27.54
+			c0,7,0.14,7.89,6.73,8.7v1.22h-16.66v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-31.69l-1.16-1.5c-2.38-3.13-3.67-4.42-5.58-5.17v-1.02
+			h12.65l28.76,36.99v-27.06C630.26,303.12,630.13,302.23,623.53,301.42z"/>
+		<path class="st0" d="M660.39,339.56c0,7,0.14,7.89,6.73,8.7v1.22h-22.78v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-29.44
+			c0-7-0.14-7.89-6.73-8.7v-1.22h22.78v1.22c-6.6,0.82-6.73,1.7-6.73,8.7V339.56z"/>
+		<path class="st0" d="M677.6,308.08c-1.9-4.96-2.72-6.12-6.94-6.66v-1.22h21.01v1.22c-4.28,0.54-5.58,1.77-4.35,5.17l11.97,32.7
+			l8.29-24c4.42-12.78,2.52-13.33-2.72-13.87v-1.22h15.71v1.22c-4.56,0.54-5.24,1.43-8.77,11.56l-12.85,36.51h-5.51L677.6,308.08z"
+			/>
+		<path class="st0" d="M749.33,349.49h-25.23v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h24.54
+			c4.69,0,10.74,0,16.05-0.2l1.63,16.25h-1.36c-3.4-11.49-8.02-13.6-21.21-13.6h-3.6v19.92h7.96c3.88,0,6.32-1.9,7-7.62h1.22v18.22
+			h-1.22c-0.68-5.71-3.13-7.62-7-7.62h-7.96v18.63c0,2.38,0.48,2.92,3.47,2.92h2.58c12.38,0,16.73-2.79,20.4-13.8h1.29l-2.72,16.25
+			C759.74,349.49,754.16,349.49,749.33,349.49z"/>
+		<path class="st0" d="M774.22,348.26c6.6-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h8.7
+			c3.33,0,10.2-0.07,12.31-0.07c12.58,0,22.3,3.4,22.3,12.99c0,6.6-4.96,10.47-12.31,12.24l10.54,16.32
+			c3.13,4.83,4.15,6.05,8.91,6.6v1.22h-15.23c-1.29-2.52-3.4-6.26-5.64-9.93l-2.92-4.56c-2.86-4.49-4.35-6.8-5.71-8.64h-4.89v13.19
+			c0,7,0.13,7.89,7.41,8.7v1.22h-23.46V348.26z M794.82,302.57h-4.55v21.35h4.55c7.82,0,12.38-2.72,12.38-10.67
+			S802.64,302.57,794.82,302.57z"/>
+		<path class="st0" d="M829.98,346.7v-16.59h1.36c1.9,12.65,6.94,17.75,15.03,17.75c5.98,0,10.95-2.92,10.95-9.04
+			c0-4.62-3.67-7-9.11-9.59l-6.05-2.86c-7.21-3.4-11.76-7.89-11.76-14.48c0-7.82,7.41-13.26,16.93-13.26
+			c4.89,0,11.29,1.36,14.62,3.4v13.94h-1.36c-1.9-9.72-6.59-14.82-13.33-14.82c-5.51,0-9.38,2.58-9.38,7.34
+			c0,4.69,3.2,6.87,6.8,8.57l7.21,3.4c7.55,3.54,13.19,7.28,13.19,14.69c0,8.91-8.5,15.23-18.7,15.23
+			C839.7,350.37,833.93,348.81,829.98,346.7z"/>
+		<path class="st0" d="M887.58,339.56c0,7,0.13,7.89,6.73,8.7v1.22h-22.78v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-29.44
+			c0-7-0.14-7.89-6.73-8.7v-1.22h22.78v1.22c-6.6,0.82-6.73,1.7-6.73,8.7V339.56z"/>
+		<path class="st0" d="M911.99,348.26c7.21-0.82,7.48-1.9,7.48-8.7v-37.12h-1.7c-9.52,0-13.53,4.83-16.93,15.71h-1.36l2.04-18.15
+			c5.23,0.2,11.56,0.2,16.25,0.2h12.65c4.69,0,11.02,0,16.32-0.2l2.04,18.15h-1.43c-3.33-10.88-7.34-15.71-16.86-15.71h-1.7v37.12
+			c0,6.8,0.27,7.89,7.48,8.7v1.22h-24.27V348.26z"/>
+		<path class="st0" d="M979.17,349.49h-25.23v-1.22c6.59-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h24.55
+			c4.69,0,10.74,0,16.05-0.2l1.63,16.25h-1.36c-3.4-11.49-8.02-13.6-21.21-13.6h-3.6v19.92h7.96c3.88,0,6.32-1.9,7-7.62h1.22v18.22
+			h-1.22c-0.68-5.71-3.13-7.62-7-7.62h-7.96v18.63c0,2.38,0.48,2.92,3.47,2.92h2.58c12.38,0,16.73-2.79,20.4-13.8h1.29l-2.72,16.25
+			C989.57,349.49,984,349.49,979.17,349.49z"/>
+		<path class="st0" d="M1016.16,348.26c7.21-0.82,7.48-1.9,7.48-8.7v-37.12h-1.7c-9.52,0-13.53,4.83-16.93,15.71h-1.36l2.04-18.15
+			c5.24,0.2,11.56,0.2,16.25,0.2h12.65c4.69,0,11.02,0,16.32-0.2l2.04,18.15h-1.43c-3.33-10.88-7.34-15.71-16.86-15.71h-1.7v37.12
+			c0,6.8,0.27,7.89,7.48,8.7v1.22h-24.27V348.26z"/>
+		<path class="st0" d="M1083.34,349.49h-25.23v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h24.54
+			c4.69,0,10.74,0,16.05-0.2l1.63,16.25h-1.36c-3.4-11.49-8.02-13.6-21.21-13.6h-3.6v19.92h7.96c3.88,0,6.32-1.9,7-7.62h1.22v18.22
+			h-1.22c-0.68-5.71-3.13-7.62-7-7.62h-7.96v18.63c0,2.38,0.48,2.92,3.47,2.92h2.58c12.38,0,16.73-2.79,20.4-13.8h1.29l-2.72,16.25
+			C1093.75,349.49,1088.17,349.49,1083.34,349.49z"/>
+		<path class="st0" d="M1120.34,348.26c7.21-0.82,7.48-1.9,7.48-8.7v-37.12h-1.7c-9.52,0-13.53,4.83-16.93,15.71h-1.36l2.04-18.15
+			c5.24,0.2,11.56,0.2,16.25,0.2h12.65c4.69,0,11.01,0,16.32-0.2l2.04,18.15h-1.43c-3.33-10.88-7.34-15.71-16.86-15.71h-1.7v37.12
+			c0,6.8,0.27,7.89,7.48,8.7v1.22h-24.27V348.26z"/>
+		<path class="st0" d="M550.5,410.56c0,7,0.14,7.89,6.73,8.7v1.22h-22.78v-1.22c6.6-0.82,6.73-1.7,6.73-8.7v-29.44
+			c0-7-0.14-7.89-6.73-8.7v-1.22h22.78v1.22c-6.6,0.82-6.73,1.7-6.73,8.7V410.56z"/>
+		<path class="st0" d="M607.35,369.83c13.33,0,25.91,8.97,25.91,25.77c0,16.79-12.58,25.77-25.91,25.77s-25.91-8.97-25.91-25.77
+			C581.44,378.81,594.02,369.83,607.35,369.83z M607.35,372.35c-9.38,0-15.5,8.91-15.5,23.25c0,14.35,6.12,23.25,15.5,23.25
+			c9.38,0,15.5-8.91,15.5-23.25C622.85,381.26,616.73,372.35,607.35,372.35z"/>
+		<path class="st0" d="M642.3,417.7v-16.59h1.36c1.9,12.65,6.94,17.75,15.03,17.75c5.98,0,10.95-2.92,10.95-9.04
+			c0-4.62-3.67-7-9.11-9.59l-6.05-2.86c-7.21-3.4-11.76-7.89-11.76-14.48c0-7.82,7.41-13.26,16.93-13.26c4.9,0,11.29,1.36,14.62,3.4
+			v13.94h-1.36c-1.9-9.72-6.6-14.82-13.33-14.82c-5.51,0-9.38,2.58-9.38,7.34c0,4.69,3.2,6.87,6.8,8.57l7.21,3.4
+			c7.55,3.54,13.19,7.28,13.19,14.69c0,8.91-8.5,15.23-18.7,15.23C652.03,421.37,646.25,419.81,642.3,417.7z"/>
+		<path class="st0" d="M683.85,419.26c6.6-0.82,6.73-1.7,6.73-8.7v-29.44c0-7-0.14-7.89-6.73-8.7v-1.22h22.78v1.22
+			c-6.59,0.82-6.73,1.7-6.73,8.7v34.2c0,2.24,0.68,2.79,2.79,2.79h2.11c12.31,0,15.57-2.99,19.24-14.62h1.36l-2.18,17.07
+			c-3.26-0.07-11.22-0.07-13.94-0.07h-25.43V419.26z"/>
+		<path class="st0" d="M756.34,369.83c13.33,0,25.91,8.97,25.91,25.77c0,16.79-12.58,25.77-25.91,25.77s-25.91-8.97-25.91-25.77
+			C730.43,378.81,743.01,369.83,756.34,369.83z M756.34,372.35c-9.38,0-15.5,8.91-15.5,23.25c0,14.35,6.12,23.25,15.5,23.25
+			s15.5-8.91,15.5-23.25C771.84,381.26,765.72,372.35,756.34,372.35z"/>
+	</g>
+</g>
+</svg>
diff --git a/frontend/src/routes/components/userInfo.tsx b/frontend/src/routes/components/userInfo.tsx
index 0c153a3db79105b0fb39a4739d2b8bba2161558a..add063a3ca66d34f151dc6f4cb425c7bc11b121e 100644
--- a/frontend/src/routes/components/userInfo.tsx
+++ b/frontend/src/routes/components/userInfo.tsx
@@ -1,4 +1,6 @@
 import { useEffect } from 'react'
+import { Box } from '@mui/material'
+
 import { useUserContext } from '../../contexts'
 
 function UserInfo() {
@@ -11,9 +13,9 @@ function UserInfo() {
 
   if (user.auth) {
     return (
-      <div>
+      <Box sx={{ paddingLeft: '0.5rem' }}>
         {user.first_name} {user.last_name}
-      </div>
+      </Box>
     )
   }
   return <></>
diff --git a/frontend/src/routes/frontpage/index.tsx b/frontend/src/routes/frontpage/index.tsx
index 7985d124df92355bc848c660ba43edf67d5b5291..3db0808315ad155a1cf1342e2cbf2fefbd6f63a1 100644
--- a/frontend/src/routes/frontpage/index.tsx
+++ b/frontend/src/routes/frontpage/index.tsx
@@ -1,4 +1,5 @@
 import { Link } from 'react-router-dom'
+import { Box, CircularProgress } from '@mui/material'
 
 import Page from 'components/page'
 import { Debug } from 'components/debug'
@@ -18,20 +19,36 @@ export default function FrontPage() {
             {user.first_name} {user.last_name}
           </p>
           <ul>
-            <li>
+            <li key="root">
               <Link to="/">Front page</Link>
             </li>
-            <li>
+            <li key="sponsor">
               <Link to="/sponsor/">Sponsor</Link>
             </li>
-            <li>
+            <li key="register">
               <Link to="/register/">Registration</Link>
             </li>
+            <li key="registerwizard">
+              <Link to="/registerwizard/">Registration wizard</Link>
+            </li>
           </ul>
         </p>
         <Debug />
       </Page>
     )
   }
+
+  if (!user.fetched) {
+    return (
+      <Box
+        sx={{
+          margin: 'auto',
+        }}
+      >
+        <CircularProgress />
+      </Box>
+    )
+  }
+
   return <LoginPage />
 }