
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_ec930db93c2abb1a8bd579a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_56075d9e42bb1c51cb46d8a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b8049cfc5b7d608f03b0c197.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9b05b1a65635f3a08dabf879.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_18f75a8bba3106e717c320cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f58a369d7d35ad56c39b94d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7ba1e53cf1d5d7a62379948c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_18ee3a7fdb9f172ae26a95ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_37af300853760448b9909ff0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5c8c8bf8827654d4064aef1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c6332b11191fd64c504fc7b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2819d151c27ee778407efefc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_08016d9cb25ec598716c9779.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_378723253596176d47ec3557.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.763000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_30ef1dfb6cf6687c21634e1f.woff2')format("woff");}.fff{font-family:fff;line-height:0.758000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a0797a0838da8b20a337996f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c4ee60167c30af49978114fb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e8f2ba6ab40f9d310ca7e097.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_085f7293a1c7300f807bacb3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_18b943bb890dbb5a306ab463.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.041000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m86{transform:matrix(0.145313,0.203431,-0.203431,0.145313,0,0);-ms-transform:matrix(0.145313,0.203431,-0.203431,0.145313,0,0);-webkit-transform:matrix(0.145313,0.203431,-0.203431,0.145313,0,0);}
.m6{transform:matrix(0.145313,-0.203431,0.203431,0.145313,0,0);-ms-transform:matrix(0.145313,-0.203431,0.203431,0.145313,0,0);-webkit-transform:matrix(0.145313,-0.203431,0.203431,0.145313,0,0);}
.m7{transform:matrix(0.147735,-0.201679,0.201679,0.147735,0,0);-ms-transform:matrix(0.147735,-0.201679,0.201679,0.147735,0,0);-webkit-transform:matrix(0.147735,-0.201679,0.201679,0.147735,0,0);}
.m85{transform:matrix(0.150134,0.199899,-0.199899,0.150134,0,0);-ms-transform:matrix(0.150134,0.199899,-0.199899,0.150134,0,0);-webkit-transform:matrix(0.150134,0.199899,-0.199899,0.150134,0,0);}
.m8{transform:matrix(0.152509,-0.198093,0.198093,0.152509,0,0);-ms-transform:matrix(0.152509,-0.198093,0.198093,0.152509,0,0);-webkit-transform:matrix(0.152509,-0.198093,0.198093,0.152509,0,0);}
.m84{transform:matrix(0.154862,0.196259,-0.196259,0.154862,0,0);-ms-transform:matrix(0.154862,0.196259,-0.196259,0.154862,0,0);-webkit-transform:matrix(0.154862,0.196259,-0.196259,0.154862,0,0);}
.m9{transform:matrix(0.154862,-0.196259,0.196259,0.154862,0,0);-ms-transform:matrix(0.154862,-0.196259,0.196259,0.154862,0,0);-webkit-transform:matrix(0.154862,-0.196259,0.196259,0.154862,0,0);}
.m83{transform:matrix(0.159500,0.192509,-0.192509,0.159500,0,0);-ms-transform:matrix(0.159500,0.192509,-0.192509,0.159500,0,0);-webkit-transform:matrix(0.159500,0.192509,-0.192509,0.159500,0,0);}
.ma{transform:matrix(0.159500,-0.192509,0.192509,0.159500,0,0);-ms-transform:matrix(0.159500,-0.192509,0.192509,0.159500,0,0);-webkit-transform:matrix(0.159500,-0.192509,0.192509,0.159500,0,0);}
.m82{transform:matrix(0.164045,0.188651,-0.188651,0.164045,0,0);-ms-transform:matrix(0.164045,0.188651,-0.188651,0.164045,0,0);-webkit-transform:matrix(0.164045,0.188651,-0.188651,0.164045,0,0);}
.mb{transform:matrix(0.164045,-0.188651,0.188651,0.164045,0,0);-ms-transform:matrix(0.164045,-0.188651,0.188651,0.164045,0,0);-webkit-transform:matrix(0.164045,-0.188651,0.188651,0.164045,0,0);}
.m81{transform:matrix(0.166282,0.186682,-0.186682,0.166282,0,0);-ms-transform:matrix(0.166282,0.186682,-0.186682,0.166282,0,0);-webkit-transform:matrix(0.166282,0.186682,-0.186682,0.166282,0,0);}
.mc{transform:matrix(0.168494,-0.184688,0.184688,0.168494,0,0);-ms-transform:matrix(0.168494,-0.184688,0.184688,0.168494,0,0);-webkit-transform:matrix(0.168494,-0.184688,0.184688,0.168494,0,0);}
.m80{transform:matrix(0.170685,0.182666,-0.182666,0.170685,0,0);-ms-transform:matrix(0.170685,0.182666,-0.182666,0.170685,0,0);-webkit-transform:matrix(0.170685,0.182666,-0.182666,0.170685,0,0);}
.m7f{transform:matrix(0.172850,0.180618,-0.180618,0.172850,0,0);-ms-transform:matrix(0.172850,0.180618,-0.180618,0.172850,0,0);-webkit-transform:matrix(0.172850,0.180618,-0.180618,0.172850,0,0);}
.md{transform:matrix(0.172850,-0.180618,0.180618,0.172850,0,0);-ms-transform:matrix(0.172850,-0.180618,0.180618,0.172850,0,0);-webkit-transform:matrix(0.172850,-0.180618,0.180618,0.172850,0,0);}
.m7e{transform:matrix(0.177106,0.176447,-0.176447,0.177106,0,0);-ms-transform:matrix(0.177106,0.176447,-0.176447,0.177106,0,0);-webkit-transform:matrix(0.177106,0.176447,-0.176447,0.177106,0,0);}
.me{transform:matrix(0.177106,-0.176447,0.176447,0.177106,0,0);-ms-transform:matrix(0.177106,-0.176447,0.176447,0.177106,0,0);-webkit-transform:matrix(0.177106,-0.176447,0.176447,0.177106,0,0);}
.m7d{transform:matrix(0.179197,0.174322,-0.174322,0.179197,0,0);-ms-transform:matrix(0.179197,0.174322,-0.174322,0.179197,0,0);-webkit-transform:matrix(0.179197,0.174322,-0.174322,0.179197,0,0);}
.mf{transform:matrix(0.179197,-0.174322,0.174322,0.179197,0,0);-ms-transform:matrix(0.179197,-0.174322,0.174322,0.179197,0,0);-webkit-transform:matrix(0.179197,-0.174322,0.174322,0.179197,0,0);}
.m7c{transform:matrix(0.181262,0.172175,-0.172175,0.181262,0,0);-ms-transform:matrix(0.181262,0.172175,-0.172175,0.181262,0,0);-webkit-transform:matrix(0.181262,0.172175,-0.172175,0.181262,0,0);}
.m10{transform:matrix(0.181262,-0.172175,0.172175,0.181262,0,0);-ms-transform:matrix(0.181262,-0.172175,0.172175,0.181262,0,0);-webkit-transform:matrix(0.181262,-0.172175,0.172175,0.181262,0,0);}
.m7b{transform:matrix(0.183303,0.170000,-0.170000,0.183303,0,0);-ms-transform:matrix(0.183303,0.170000,-0.170000,0.183303,0,0);-webkit-transform:matrix(0.183303,0.170000,-0.170000,0.183303,0,0);}
.m11{transform:matrix(0.183303,-0.170000,0.170000,0.183303,0,0);-ms-transform:matrix(0.183303,-0.170000,0.170000,0.183303,0,0);-webkit-transform:matrix(0.183303,-0.170000,0.170000,0.183303,0,0);}
.m7a{transform:matrix(0.185320,0.167799,-0.167799,0.185320,0,0);-ms-transform:matrix(0.185320,0.167799,-0.167799,0.185320,0,0);-webkit-transform:matrix(0.185320,0.167799,-0.167799,0.185320,0,0);}
.m12{transform:matrix(0.185320,-0.167799,0.167799,0.185320,0,0);-ms-transform:matrix(0.185320,-0.167799,0.167799,0.185320,0,0);-webkit-transform:matrix(0.185320,-0.167799,0.167799,0.185320,0,0);}
.m79{transform:matrix(0.187311,0.165574,-0.165574,0.187311,0,0);-ms-transform:matrix(0.187311,0.165574,-0.165574,0.187311,0,0);-webkit-transform:matrix(0.187311,0.165574,-0.165574,0.187311,0,0);}
.m13{transform:matrix(0.187311,-0.165574,0.165574,0.187311,0,0);-ms-transform:matrix(0.187311,-0.165574,0.165574,0.187311,0,0);-webkit-transform:matrix(0.187311,-0.165574,0.165574,0.187311,0,0);}
.m78{transform:matrix(0.189275,0.163325,-0.163325,0.189275,0,0);-ms-transform:matrix(0.189275,0.163325,-0.163325,0.189275,0,0);-webkit-transform:matrix(0.189275,0.163325,-0.163325,0.189275,0,0);}
.m14{transform:matrix(0.189275,-0.163325,0.163325,0.189275,0,0);-ms-transform:matrix(0.189275,-0.163325,0.163325,0.189275,0,0);-webkit-transform:matrix(0.189275,-0.163325,0.163325,0.189275,0,0);}
.m77{transform:matrix(0.191215,0.161049,-0.161049,0.191215,0,0);-ms-transform:matrix(0.191215,0.161049,-0.161049,0.191215,0,0);-webkit-transform:matrix(0.191215,0.161049,-0.161049,0.191215,0,0);}
.m15{transform:matrix(0.191215,-0.161049,0.161049,0.191215,0,0);-ms-transform:matrix(0.191215,-0.161049,0.161049,0.191215,0,0);-webkit-transform:matrix(0.191215,-0.161049,0.161049,0.191215,0,0);}
.m76{transform:matrix(0.193128,0.158750,-0.158750,0.193128,0,0);-ms-transform:matrix(0.193128,0.158750,-0.158750,0.193128,0,0);-webkit-transform:matrix(0.193128,0.158750,-0.158750,0.193128,0,0);}
.m16{transform:matrix(0.193128,-0.158750,0.158750,0.193128,0,0);-ms-transform:matrix(0.193128,-0.158750,0.158750,0.193128,0,0);-webkit-transform:matrix(0.193128,-0.158750,0.158750,0.193128,0,0);}
.m75{transform:matrix(0.195016,0.156425,-0.156425,0.195016,0,0);-ms-transform:matrix(0.195016,0.156425,-0.156425,0.195016,0,0);-webkit-transform:matrix(0.195016,0.156425,-0.156425,0.195016,0,0);}
.m17{transform:matrix(0.195016,-0.156425,0.156425,0.195016,0,0);-ms-transform:matrix(0.195016,-0.156425,0.156425,0.195016,0,0);-webkit-transform:matrix(0.195016,-0.156425,0.156425,0.195016,0,0);}
.m74{transform:matrix(0.196875,0.154078,-0.154078,0.196875,0,0);-ms-transform:matrix(0.196875,0.154078,-0.154078,0.196875,0,0);-webkit-transform:matrix(0.196875,0.154078,-0.154078,0.196875,0,0);}
.m18{transform:matrix(0.196875,-0.154078,0.154078,0.196875,0,0);-ms-transform:matrix(0.196875,-0.154078,0.154078,0.196875,0,0);-webkit-transform:matrix(0.196875,-0.154078,0.154078,0.196875,0,0);}
.m73{transform:matrix(0.198709,0.151706,-0.151706,0.198709,0,0);-ms-transform:matrix(0.198709,0.151706,-0.151706,0.198709,0,0);-webkit-transform:matrix(0.198709,0.151706,-0.151706,0.198709,0,0);}
.m19{transform:matrix(0.198709,-0.151706,0.151706,0.198709,0,0);-ms-transform:matrix(0.198709,-0.151706,0.151706,0.198709,0,0);-webkit-transform:matrix(0.198709,-0.151706,0.151706,0.198709,0,0);}
.m72{transform:matrix(0.200514,0.149312,-0.149312,0.200514,0,0);-ms-transform:matrix(0.200514,0.149312,-0.149312,0.200514,0,0);-webkit-transform:matrix(0.200514,0.149312,-0.149312,0.200514,0,0);}
.m1a{transform:matrix(0.200514,-0.149312,0.149312,0.200514,0,0);-ms-transform:matrix(0.200514,-0.149312,0.149312,0.200514,0,0);-webkit-transform:matrix(0.200514,-0.149312,0.149312,0.200514,0,0);}
.m71{transform:matrix(0.202294,0.146891,-0.146891,0.202294,0,0);-ms-transform:matrix(0.202294,0.146891,-0.146891,0.202294,0,0);-webkit-transform:matrix(0.202294,0.146891,-0.146891,0.202294,0,0);}
.m1b{transform:matrix(0.202294,-0.146891,0.146891,0.202294,0,0);-ms-transform:matrix(0.202294,-0.146891,0.146891,0.202294,0,0);-webkit-transform:matrix(0.202294,-0.146891,0.146891,0.202294,0,0);}
.m70{transform:matrix(0.204045,0.144449,-0.144449,0.204045,0,0);-ms-transform:matrix(0.204045,0.144449,-0.144449,0.204045,0,0);-webkit-transform:matrix(0.204045,0.144449,-0.144449,0.204045,0,0);}
.m1c{transform:matrix(0.204045,-0.144449,0.144449,0.204045,0,0);-ms-transform:matrix(0.204045,-0.144449,0.144449,0.204045,0,0);-webkit-transform:matrix(0.204045,-0.144449,0.144449,0.204045,0,0);}
.m6f{transform:matrix(0.205770,0.141982,-0.141982,0.205770,0,0);-ms-transform:matrix(0.205770,0.141982,-0.141982,0.205770,0,0);-webkit-transform:matrix(0.205770,0.141982,-0.141982,0.205770,0,0);}
.m1d{transform:matrix(0.205770,-0.141982,0.141982,0.205770,0,0);-ms-transform:matrix(0.205770,-0.141982,0.141982,0.205770,0,0);-webkit-transform:matrix(0.205770,-0.141982,0.141982,0.205770,0,0);}
.m6e{transform:matrix(0.207466,0.139491,-0.139491,0.207466,0,0);-ms-transform:matrix(0.207466,0.139491,-0.139491,0.207466,0,0);-webkit-transform:matrix(0.207466,0.139491,-0.139491,0.207466,0,0);}
.m1e{transform:matrix(0.207466,-0.139491,0.139491,0.207466,0,0);-ms-transform:matrix(0.207466,-0.139491,0.139491,0.207466,0,0);-webkit-transform:matrix(0.207466,-0.139491,0.139491,0.207466,0,0);}
.m6d{transform:matrix(0.209134,0.136978,-0.136978,0.209134,0,0);-ms-transform:matrix(0.209134,0.136978,-0.136978,0.209134,0,0);-webkit-transform:matrix(0.209134,0.136978,-0.136978,0.209134,0,0);}
.m1f{transform:matrix(0.209134,-0.136978,0.136978,0.209134,0,0);-ms-transform:matrix(0.209134,-0.136978,0.136978,0.209134,0,0);-webkit-transform:matrix(0.209134,-0.136978,0.136978,0.209134,0,0);}
.m6c{transform:matrix(0.210772,0.134444,-0.134444,0.210772,0,0);-ms-transform:matrix(0.210772,0.134444,-0.134444,0.210772,0,0);-webkit-transform:matrix(0.210772,0.134444,-0.134444,0.210772,0,0);}
.m20{transform:matrix(0.210772,-0.134444,0.134444,0.210772,0,0);-ms-transform:matrix(0.210772,-0.134444,0.134444,0.210772,0,0);-webkit-transform:matrix(0.210772,-0.134444,0.134444,0.210772,0,0);}
.m6b{transform:matrix(0.212383,0.131884,-0.131884,0.212383,0,0);-ms-transform:matrix(0.212383,0.131884,-0.131884,0.212383,0,0);-webkit-transform:matrix(0.212383,0.131884,-0.131884,0.212383,0,0);}
.m21{transform:matrix(0.212383,-0.131884,0.131884,0.212383,0,0);-ms-transform:matrix(0.212383,-0.131884,0.131884,0.212383,0,0);-webkit-transform:matrix(0.212383,-0.131884,0.131884,0.212383,0,0);}
.m6a{transform:matrix(0.213965,0.129303,-0.129303,0.213965,0,0);-ms-transform:matrix(0.213965,0.129303,-0.129303,0.213965,0,0);-webkit-transform:matrix(0.213965,0.129303,-0.129303,0.213965,0,0);}
.m22{transform:matrix(0.213965,-0.129303,0.129303,0.213965,0,0);-ms-transform:matrix(0.213965,-0.129303,0.129303,0.213965,0,0);-webkit-transform:matrix(0.213965,-0.129303,0.129303,0.213965,0,0);}
.m69{transform:matrix(0.215516,0.126700,-0.126700,0.215516,0,0);-ms-transform:matrix(0.215516,0.126700,-0.126700,0.215516,0,0);-webkit-transform:matrix(0.215516,0.126700,-0.126700,0.215516,0,0);}
.m23{transform:matrix(0.215516,-0.126700,0.126700,0.215516,0,0);-ms-transform:matrix(0.215516,-0.126700,0.126700,0.215516,0,0);-webkit-transform:matrix(0.215516,-0.126700,0.126700,0.215516,0,0);}
.m68{transform:matrix(0.217039,0.124073,-0.124073,0.217039,0,0);-ms-transform:matrix(0.217039,0.124073,-0.124073,0.217039,0,0);-webkit-transform:matrix(0.217039,0.124073,-0.124073,0.217039,0,0);}
.m24{transform:matrix(0.217039,-0.124073,0.124073,0.217039,0,0);-ms-transform:matrix(0.217039,-0.124073,0.124073,0.217039,0,0);-webkit-transform:matrix(0.217039,-0.124073,0.124073,0.217039,0,0);}
.m67{transform:matrix(0.218531,0.121425,-0.121425,0.218531,0,0);-ms-transform:matrix(0.218531,0.121425,-0.121425,0.218531,0,0);-webkit-transform:matrix(0.218531,0.121425,-0.121425,0.218531,0,0);}
.m25{transform:matrix(0.218531,-0.121425,0.121425,0.218531,0,0);-ms-transform:matrix(0.218531,-0.121425,0.121425,0.218531,0,0);-webkit-transform:matrix(0.218531,-0.121425,0.121425,0.218531,0,0);}
.m66{transform:matrix(0.219993,0.118756,-0.118756,0.219993,0,0);-ms-transform:matrix(0.219993,0.118756,-0.118756,0.219993,0,0);-webkit-transform:matrix(0.219993,0.118756,-0.118756,0.219993,0,0);}
.m26{transform:matrix(0.219993,-0.118756,0.118756,0.219993,0,0);-ms-transform:matrix(0.219993,-0.118756,0.118756,0.219993,0,0);-webkit-transform:matrix(0.219993,-0.118756,0.118756,0.219993,0,0);}
.m65{transform:matrix(0.221425,0.116065,-0.116065,0.221425,0,0);-ms-transform:matrix(0.221425,0.116065,-0.116065,0.221425,0,0);-webkit-transform:matrix(0.221425,0.116065,-0.116065,0.221425,0,0);}
.m27{transform:matrix(0.221425,-0.116065,0.116065,0.221425,0,0);-ms-transform:matrix(0.221425,-0.116065,0.116065,0.221425,0,0);-webkit-transform:matrix(0.221425,-0.116065,0.116065,0.221425,0,0);}
.m64{transform:matrix(0.222825,0.113353,-0.113353,0.222825,0,0);-ms-transform:matrix(0.222825,0.113353,-0.113353,0.222825,0,0);-webkit-transform:matrix(0.222825,0.113353,-0.113353,0.222825,0,0);}
.m28{transform:matrix(0.222825,-0.113353,0.113353,0.222825,0,0);-ms-transform:matrix(0.222825,-0.113353,0.113353,0.222825,0,0);-webkit-transform:matrix(0.222825,-0.113353,0.113353,0.222825,0,0);}
.m63{transform:matrix(0.224195,0.110619,-0.110619,0.224195,0,0);-ms-transform:matrix(0.224195,0.110619,-0.110619,0.224195,0,0);-webkit-transform:matrix(0.224195,0.110619,-0.110619,0.224195,0,0);}
.m29{transform:matrix(0.224195,-0.110619,0.110619,0.224195,0,0);-ms-transform:matrix(0.224195,-0.110619,0.110619,0.224195,0,0);-webkit-transform:matrix(0.224195,-0.110619,0.110619,0.224195,0,0);}
.m62{transform:matrix(0.225533,0.107865,-0.107865,0.225533,0,0);-ms-transform:matrix(0.225533,0.107865,-0.107865,0.225533,0,0);-webkit-transform:matrix(0.225533,0.107865,-0.107865,0.225533,0,0);}
.m2a{transform:matrix(0.225533,-0.107865,0.107865,0.225533,0,0);-ms-transform:matrix(0.225533,-0.107865,0.107865,0.225533,0,0);-webkit-transform:matrix(0.225533,-0.107865,0.107865,0.225533,0,0);}
.m61{transform:matrix(0.226839,0.105090,-0.105090,0.226839,0,0);-ms-transform:matrix(0.226839,0.105090,-0.105090,0.226839,0,0);-webkit-transform:matrix(0.226839,0.105090,-0.105090,0.226839,0,0);}
.m2b{transform:matrix(0.226839,-0.105090,0.105090,0.226839,0,0);-ms-transform:matrix(0.226839,-0.105090,0.105090,0.226839,0,0);-webkit-transform:matrix(0.226839,-0.105090,0.105090,0.226839,0,0);}
.m60{transform:matrix(0.228113,0.102297,-0.102297,0.228113,0,0);-ms-transform:matrix(0.228113,0.102297,-0.102297,0.228113,0,0);-webkit-transform:matrix(0.228113,0.102297,-0.102297,0.228113,0,0);}
.m2c{transform:matrix(0.228113,-0.102297,0.102297,0.228113,0,0);-ms-transform:matrix(0.228113,-0.102297,0.102297,0.228113,0,0);-webkit-transform:matrix(0.228113,-0.102297,0.102297,0.228113,0,0);}
.m5f{transform:matrix(0.229354,0.099482,-0.099482,0.229354,0,0);-ms-transform:matrix(0.229354,0.099482,-0.099482,0.229354,0,0);-webkit-transform:matrix(0.229354,0.099482,-0.099482,0.229354,0,0);}
.m2d{transform:matrix(0.229354,-0.099482,0.099482,0.229354,0,0);-ms-transform:matrix(0.229354,-0.099482,0.099482,0.229354,0,0);-webkit-transform:matrix(0.229354,-0.099482,0.099482,0.229354,0,0);}
.m5e{transform:matrix(0.230563,0.096647,-0.096647,0.230563,0,0);-ms-transform:matrix(0.230563,0.096647,-0.096647,0.230563,0,0);-webkit-transform:matrix(0.230563,0.096647,-0.096647,0.230563,0,0);}
.m2e{transform:matrix(0.230563,-0.096647,0.096647,0.230563,0,0);-ms-transform:matrix(0.230563,-0.096647,0.096647,0.230563,0,0);-webkit-transform:matrix(0.230563,-0.096647,0.096647,0.230563,0,0);}
.m5d{transform:matrix(0.231738,0.093794,-0.093794,0.231738,0,0);-ms-transform:matrix(0.231738,0.093794,-0.093794,0.231738,0,0);-webkit-transform:matrix(0.231738,0.093794,-0.093794,0.231738,0,0);}
.m2f{transform:matrix(0.231738,-0.093794,0.093794,0.231738,0,0);-ms-transform:matrix(0.231738,-0.093794,0.093794,0.231738,0,0);-webkit-transform:matrix(0.231738,-0.093794,0.093794,0.231738,0,0);}
.m5c{transform:matrix(0.232880,0.090922,-0.090922,0.232880,0,0);-ms-transform:matrix(0.232880,0.090922,-0.090922,0.232880,0,0);-webkit-transform:matrix(0.232880,0.090922,-0.090922,0.232880,0,0);}
.m30{transform:matrix(0.232880,-0.090922,0.090922,0.232880,0,0);-ms-transform:matrix(0.232880,-0.090922,0.090922,0.232880,0,0);-webkit-transform:matrix(0.232880,-0.090922,0.090922,0.232880,0,0);}
.m5b{transform:matrix(0.233988,0.088031,-0.088031,0.233988,0,0);-ms-transform:matrix(0.233988,0.088031,-0.088031,0.233988,0,0);-webkit-transform:matrix(0.233988,0.088031,-0.088031,0.233988,0,0);}
.m31{transform:matrix(0.233988,-0.088031,0.088031,0.233988,0,0);-ms-transform:matrix(0.233988,-0.088031,0.088031,0.233988,0,0);-webkit-transform:matrix(0.233988,-0.088031,0.088031,0.233988,0,0);}
.m5a{transform:matrix(0.235062,0.085122,-0.085122,0.235062,0,0);-ms-transform:matrix(0.235062,0.085122,-0.085122,0.235062,0,0);-webkit-transform:matrix(0.235062,0.085122,-0.085122,0.235062,0,0);}
.m32{transform:matrix(0.235062,-0.085122,0.085122,0.235062,0,0);-ms-transform:matrix(0.235062,-0.085122,0.085122,0.235062,0,0);-webkit-transform:matrix(0.235062,-0.085122,0.085122,0.235062,0,0);}
.m59{transform:matrix(0.236101,0.082197,-0.082197,0.236101,0,0);-ms-transform:matrix(0.236101,0.082197,-0.082197,0.236101,0,0);-webkit-transform:matrix(0.236101,0.082197,-0.082197,0.236101,0,0);}
.m33{transform:matrix(0.236101,-0.082197,0.082197,0.236101,0,0);-ms-transform:matrix(0.236101,-0.082197,0.082197,0.236101,0,0);-webkit-transform:matrix(0.236101,-0.082197,0.082197,0.236101,0,0);}
.m58{transform:matrix(0.237105,0.079253,-0.079253,0.237105,0,0);-ms-transform:matrix(0.237105,0.079253,-0.079253,0.237105,0,0);-webkit-transform:matrix(0.237105,0.079253,-0.079253,0.237105,0,0);}
.m34{transform:matrix(0.237105,-0.079253,0.079253,0.237105,0,0);-ms-transform:matrix(0.237105,-0.079253,0.079253,0.237105,0,0);-webkit-transform:matrix(0.237105,-0.079253,0.079253,0.237105,0,0);}
.m57{transform:matrix(0.238074,0.076293,-0.076293,0.238074,0,0);-ms-transform:matrix(0.238074,0.076293,-0.076293,0.238074,0,0);-webkit-transform:matrix(0.238074,0.076293,-0.076293,0.238074,0,0);}
.m35{transform:matrix(0.238074,-0.076293,0.076293,0.238074,0,0);-ms-transform:matrix(0.238074,-0.076293,0.076293,0.238074,0,0);-webkit-transform:matrix(0.238074,-0.076293,0.076293,0.238074,0,0);}
.m56{transform:matrix(0.239008,0.073315,-0.073315,0.239008,0,0);-ms-transform:matrix(0.239008,0.073315,-0.073315,0.239008,0,0);-webkit-transform:matrix(0.239008,0.073315,-0.073315,0.239008,0,0);}
.m36{transform:matrix(0.239008,-0.073315,0.073315,0.239008,0,0);-ms-transform:matrix(0.239008,-0.073315,0.073315,0.239008,0,0);-webkit-transform:matrix(0.239008,-0.073315,0.073315,0.239008,0,0);}
.m55{transform:matrix(0.239906,0.070322,-0.070322,0.239906,0,0);-ms-transform:matrix(0.239906,0.070322,-0.070322,0.239906,0,0);-webkit-transform:matrix(0.239906,0.070322,-0.070322,0.239906,0,0);}
.m37{transform:matrix(0.239906,-0.070322,0.070322,0.239906,0,0);-ms-transform:matrix(0.239906,-0.070322,0.070322,0.239906,0,0);-webkit-transform:matrix(0.239906,-0.070322,0.070322,0.239906,0,0);}
.m54{transform:matrix(0.240767,0.067313,-0.067313,0.240767,0,0);-ms-transform:matrix(0.240767,0.067313,-0.067313,0.240767,0,0);-webkit-transform:matrix(0.240767,0.067313,-0.067313,0.240767,0,0);}
.m38{transform:matrix(0.240767,-0.067313,0.067313,0.240767,0,0);-ms-transform:matrix(0.240767,-0.067313,0.067313,0.240767,0,0);-webkit-transform:matrix(0.240767,-0.067313,0.067313,0.240767,0,0);}
.m53{transform:matrix(0.241592,0.064291,-0.064291,0.241592,0,0);-ms-transform:matrix(0.241592,0.064291,-0.064291,0.241592,0,0);-webkit-transform:matrix(0.241592,0.064291,-0.064291,0.241592,0,0);}
.m39{transform:matrix(0.241592,-0.064291,0.064291,0.241592,0,0);-ms-transform:matrix(0.241592,-0.064291,0.064291,0.241592,0,0);-webkit-transform:matrix(0.241592,-0.064291,0.064291,0.241592,0,0);}
.m52{transform:matrix(0.242380,0.061253,-0.061253,0.242380,0,0);-ms-transform:matrix(0.242380,0.061253,-0.061253,0.242380,0,0);-webkit-transform:matrix(0.242380,0.061253,-0.061253,0.242380,0,0);}
.m3a{transform:matrix(0.242380,-0.061253,0.061253,0.242380,0,0);-ms-transform:matrix(0.242380,-0.061253,0.061253,0.242380,0,0);-webkit-transform:matrix(0.242380,-0.061253,0.061253,0.242380,0,0);}
.m3b{transform:matrix(0.243131,-0.058200,0.058200,0.243131,0,0);-ms-transform:matrix(0.243131,-0.058200,0.058200,0.243131,0,0);-webkit-transform:matrix(0.243131,-0.058200,0.058200,0.243131,0,0);}
.m51{transform:matrix(0.243845,0.055135,-0.055135,0.243845,0,0);-ms-transform:matrix(0.243845,0.055135,-0.055135,0.243845,0,0);-webkit-transform:matrix(0.243845,0.055135,-0.055135,0.243845,0,0);}
.m3c{transform:matrix(0.243845,-0.055135,0.055135,0.243845,0,0);-ms-transform:matrix(0.243845,-0.055135,0.055135,0.243845,0,0);-webkit-transform:matrix(0.243845,-0.055135,0.055135,0.243845,0,0);}
.m87{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.245157,0.048969,-0.048969,0.245157,0,0);-ms-transform:matrix(0.245157,0.048969,-0.048969,0.245157,0,0);-webkit-transform:matrix(0.245157,0.048969,-0.048969,0.245157,0,0);}
.m3d{transform:matrix(0.245157,-0.048969,0.048969,0.245157,0,0);-ms-transform:matrix(0.245157,-0.048969,0.048969,0.245157,0,0);-webkit-transform:matrix(0.245157,-0.048969,0.048969,0.245157,0,0);}
.m4f{transform:matrix(0.246317,0.042753,-0.042753,0.246317,0,0);-ms-transform:matrix(0.246317,0.042753,-0.042753,0.246317,0,0);-webkit-transform:matrix(0.246317,0.042753,-0.042753,0.246317,0,0);}
.m3e{transform:matrix(0.246317,-0.042753,0.042753,0.246317,0,0);-ms-transform:matrix(0.246317,-0.042753,0.042753,0.246317,0,0);-webkit-transform:matrix(0.246317,-0.042753,0.042753,0.246317,0,0);}
.m4e{transform:matrix(0.246839,0.039628,-0.039628,0.246839,0,0);-ms-transform:matrix(0.246839,0.039628,-0.039628,0.246839,0,0);-webkit-transform:matrix(0.246839,0.039628,-0.039628,0.246839,0,0);}
.m3f{transform:matrix(0.246839,-0.039628,0.039628,0.246839,0,0);-ms-transform:matrix(0.246839,-0.039628,0.039628,0.246839,0,0);-webkit-transform:matrix(0.246839,-0.039628,0.039628,0.246839,0,0);}
.m40{transform:matrix(0.247322,-0.036497,0.036497,0.247322,0,0);-ms-transform:matrix(0.247322,-0.036497,0.036497,0.247322,0,0);-webkit-transform:matrix(0.247322,-0.036497,0.036497,0.247322,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247765,0.033353,-0.033353,0.247765,0,0);-ms-transform:matrix(0.247765,0.033353,-0.033353,0.247765,0,0);-webkit-transform:matrix(0.247765,0.033353,-0.033353,0.247765,0,0);}
.m41{transform:matrix(0.248169,-0.030203,0.030203,0.248169,0,0);-ms-transform:matrix(0.248169,-0.030203,0.030203,0.248169,0,0);-webkit-transform:matrix(0.248169,-0.030203,0.030203,0.248169,0,0);}
.m4c{transform:matrix(0.248533,0.027047,-0.027047,0.248533,0,0);-ms-transform:matrix(0.248533,0.027047,-0.027047,0.248533,0,0);-webkit-transform:matrix(0.248533,0.027047,-0.027047,0.248533,0,0);}
.m4b{transform:matrix(0.248857,0.023881,-0.023881,0.248857,0,0);-ms-transform:matrix(0.248857,0.023881,-0.023881,0.248857,0,0);-webkit-transform:matrix(0.248857,0.023881,-0.023881,0.248857,0,0);}
.m42{transform:matrix(0.248857,-0.023881,0.023881,0.248857,0,0);-ms-transform:matrix(0.248857,-0.023881,0.023881,0.248857,0,0);-webkit-transform:matrix(0.248857,-0.023881,0.023881,0.248857,0,0);}
.m4a{transform:matrix(0.249141,0.020709,-0.020709,0.249141,0,0);-ms-transform:matrix(0.249141,0.020709,-0.020709,0.249141,0,0);-webkit-transform:matrix(0.249141,0.020709,-0.020709,0.249141,0,0);}
.m43{transform:matrix(0.249384,-0.017534,0.017534,0.249384,0,0);-ms-transform:matrix(0.249384,-0.017534,0.017534,0.249384,0,0);-webkit-transform:matrix(0.249384,-0.017534,0.017534,0.249384,0,0);}
.m49{transform:matrix(0.249588,0.014353,-0.014353,0.249588,0,0);-ms-transform:matrix(0.249588,0.014353,-0.014353,0.249588,0,0);-webkit-transform:matrix(0.249588,0.014353,-0.014353,0.249588,0,0);}
.m48{transform:matrix(0.249751,0.011166,-0.011166,0.249751,0,0);-ms-transform:matrix(0.249751,0.011166,-0.011166,0.249751,0,0);-webkit-transform:matrix(0.249751,0.011166,-0.011166,0.249751,0,0);}
.m44{transform:matrix(0.249751,-0.011166,0.011166,0.249751,0,0);-ms-transform:matrix(0.249751,-0.011166,0.011166,0.249751,0,0);-webkit-transform:matrix(0.249751,-0.011166,0.011166,0.249751,0,0);}
.m45{transform:matrix(0.249873,-0.007978,0.007978,0.249873,0,0);-ms-transform:matrix(0.249873,-0.007978,0.007978,0.249873,0,0);-webkit-transform:matrix(0.249873,-0.007978,0.007978,0.249873,0,0);}
.m47{transform:matrix(0.249954,0.004788,-0.004788,0.249954,0,0);-ms-transform:matrix(0.249954,0.004788,-0.004788,0.249954,0,0);-webkit-transform:matrix(0.249954,0.004788,-0.004788,0.249954,0,0);}
.m46{transform:matrix(0.249995,-0.001597,0.001597,0.249995,0,0);-ms-transform:matrix(0.249995,-0.001597,0.001597,0.249995,0,0);-webkit-transform:matrix(0.249995,-0.001597,0.001597,0.249995,0,0);}
.m3{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-1.165200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.456200px;}
.v6{vertical-align:14.856600px;}
.v2{vertical-align:27.077400px;}
.v7{vertical-align:30.000000px;}
.v1{vertical-align:32.400000px;}
.v4{vertical-align:50.299200px;}
.v3{vertical-align:59.994600px;}
.ls2{letter-spacing:-11.280377px;}
.ls0{letter-spacing:-4.337570px;}
.ls2a{letter-spacing:-4.140000px;}
.ls3d{letter-spacing:-3.450000px;}
.ls50{letter-spacing:-2.592000px;}
.ls31{letter-spacing:-2.544000px;}
.ls56{letter-spacing:-2.208000px;}
.ls45{letter-spacing:-2.106000px;}
.ls8{letter-spacing:-2.070000px;}
.ls16{letter-spacing:-1.872000px;}
.ls29{letter-spacing:-1.656000px;}
.ls3c{letter-spacing:-1.518000px;}
.ls57{letter-spacing:-1.392000px;}
.ls2f{letter-spacing:-1.380000px;}
.ls60{letter-spacing:-1.296000px;}
.ls62{letter-spacing:-1.134000px;}
.ls4b{letter-spacing:-1.104000px;}
.ls43{letter-spacing:-0.972000px;}
.ls5b{letter-spacing:-0.966000px;}
.ls55{letter-spacing:-0.936000px;}
.ls42{letter-spacing:-0.864000px;}
.ls63{letter-spacing:-0.828000px;}
.ls2e{letter-spacing:-0.756000px;}
.ls17{letter-spacing:-0.702000px;}
.ls24{letter-spacing:-0.648000px;}
.ls51{letter-spacing:-0.624000px;}
.ls5f{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.540000px;}
.ls59{letter-spacing:-0.528000px;}
.ls54{letter-spacing:-0.504000px;}
.ls4c{letter-spacing:-0.486000px;}
.ls39{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.432000px;}
.ls3f{letter-spacing:-0.384000px;}
.ls19{letter-spacing:-0.336000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.192000px;}
.ls61{letter-spacing:-0.162000px;}
.ls25{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.108000px;}
.ls4f{letter-spacing:-0.096000px;}
.ls44{letter-spacing:-0.054000px;}
.ls34{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.054000px;}
.ls4{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.162000px;}
.ls30{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.216000px;}
.ls5d{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.324002px;}
.ls1b{letter-spacing:0.336000px;}
.ls22{letter-spacing:0.378000px;}
.ls49{letter-spacing:0.383400px;}
.lsa{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.450000px;}
.lsd{letter-spacing:0.480000px;}
.ls58{letter-spacing:0.480002px;}
.lse{letter-spacing:0.528000px;}
.ls47{letter-spacing:0.534600px;}
.ls38{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.594000px;}
.ls48{letter-spacing:0.610200px;}
.ls2b{letter-spacing:0.624000px;}
.ls15{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.648007px;}
.ls33{letter-spacing:0.672000px;}
.ls4e{letter-spacing:0.720000px;}
.ls5e{letter-spacing:0.756000px;}
.ls3e{letter-spacing:0.768000px;}
.ls37{letter-spacing:0.810000px;}
.ls1f{letter-spacing:0.816000px;}
.ls53{letter-spacing:0.864000px;}
.ls4d{letter-spacing:0.972000px;}
.ls1a{letter-spacing:1.056000px;}
.ls4a{letter-spacing:1.285200px;}
.ls46{letter-spacing:1.328400px;}
.ls35{letter-spacing:1.350000px;}
.ls1e{letter-spacing:1.728000px;}
.ls36{letter-spacing:1.890000px;}
.ls26{letter-spacing:19.926000px;}
.ls2c{letter-spacing:20.628000px;}
.ls5a{letter-spacing:35.640000px;}
.ls5c{letter-spacing:37.044000px;}
.ls2d{letter-spacing:43.308000px;}
.ls7{letter-spacing:46.032000px;}
.ls52{letter-spacing:112.345200px;}
.ls40{letter-spacing:163.401000px;}
.ls41{letter-spacing:171.951600px;}
.ls3a{letter-spacing:1255.053000px;}
.ls3b{letter-spacing:1260.181800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws51{word-spacing:-37.398000px;}
.ws8{word-spacing:-36.984000px;}
.ws0{word-spacing:-26.723750px;}
.ws78{word-spacing:-20.376000px;}
.ws80{word-spacing:-19.872000px;}
.wsa7{word-spacing:-19.800000px;}
.ws28{word-spacing:-19.728000px;}
.ws81{word-spacing:-19.440000px;}
.ws92{word-spacing:-16.980000px;}
.ws68{word-spacing:-16.254000px;}
.ws98{word-spacing:-16.038000px;}
.ws19{word-spacing:-15.930000px;}
.ws2a{word-spacing:-15.876000px;}
.ws15{word-spacing:-15.714000px;}
.ws24{word-spacing:-15.660000px;}
.ws18{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.498000px;}
.ws1c{word-spacing:-15.444000px;}
.ws1d{word-spacing:-15.390000px;}
.ws1f{word-spacing:-15.336000px;}
.ws66{word-spacing:-15.282000px;}
.ws14{word-spacing:-15.066000px;}
.ws50{word-spacing:-14.688000px;}
.ws20{word-spacing:-14.640000px;}
.ws9f{word-spacing:-14.526000px;}
.ws96{word-spacing:-14.418000px;}
.ws3a{word-spacing:-14.400000px;}
.wsa0{word-spacing:-14.310000px;}
.ws6c{word-spacing:-14.304000px;}
.ws37{word-spacing:-14.256000px;}
.ws39{word-spacing:-14.208000px;}
.wsa2{word-spacing:-14.202000px;}
.ws9e{word-spacing:-14.148000px;}
.ws45{word-spacing:-14.112000px;}
.ws29{word-spacing:-14.064000px;}
.ws42{word-spacing:-14.040000px;}
.ws3b{word-spacing:-14.016000px;}
.wsa3{word-spacing:-13.986000px;}
.wsa{word-spacing:-13.968000px;}
.ws60{word-spacing:-13.878000px;}
.ws44{word-spacing:-13.872000px;}
.ws22{word-spacing:-13.728000px;}
.ws5e{word-spacing:-13.716000px;}
.ws95{word-spacing:-13.662000px;}
.ws62{word-spacing:-13.632000px;}
.ws97{word-spacing:-13.608000px;}
.ws4a{word-spacing:-13.536000px;}
.ws79{word-spacing:-13.446000px;}
.ws43{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.344000px;}
.ws67{word-spacing:-13.284000px;}
.ws1e{word-spacing:-13.248000px;}
.ws58{word-spacing:-13.200000px;}
.ws5d{word-spacing:-13.176000px;}
.ws23{word-spacing:-13.056000px;}
.wsa4{word-spacing:-13.014000px;}
.ws48{word-spacing:-13.008000px;}
.ws27{word-spacing:-12.960000px;}
.ws9{word-spacing:-12.864000px;}
.wsa1{word-spacing:-12.852000px;}
.ws47{word-spacing:-12.768000px;}
.ws7d{word-spacing:-12.720000px;}
.ws85{word-spacing:-12.624000px;}
.ws1b{word-spacing:-12.336000px;}
.ws46{word-spacing:-12.144000px;}
.ws52{word-spacing:-12.096000px;}
.ws61{word-spacing:-12.042000px;}
.ws7b{word-spacing:-11.952000px;}
.ws7a{word-spacing:-11.556000px;}
.ws84{word-spacing:-11.184000px;}
.ws49{word-spacing:-11.040000px;}
.ws54{word-spacing:-1.890000px;}
.ws53{word-spacing:-1.350000px;}
.ws2f{word-spacing:-1.056000px;}
.ws86{word-spacing:-0.864000px;}
.ws5b{word-spacing:-0.816000px;}
.ws55{word-spacing:-0.810000px;}
.ws5c{word-spacing:-0.768000px;}
.ws76{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.672000px;}
.ws11{word-spacing:-0.648007px;}
.ws88{word-spacing:-0.624000px;}
.ws33{word-spacing:-0.594000px;}
.wsf{word-spacing:-0.528000px;}
.ws8c{word-spacing:-0.480002px;}
.wse{word-spacing:-0.480000px;}
.ws3{word-spacing:-0.450000px;}
.ws10{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.384000px;}
.ws8f{word-spacing:-0.378000px;}
.ws30{word-spacing:-0.336000px;}
.ws12{word-spacing:-0.324002px;}
.ws2b{word-spacing:-0.324000px;}
.ws35{word-spacing:-0.288000px;}
.wsd{word-spacing:-0.216000px;}
.ws4b{word-spacing:-0.162000px;}
.ws73{word-spacing:-0.144000px;}
.ws4{word-spacing:-0.108000px;}
.ws38{word-spacing:-0.090000px;}
.ws7e{word-spacing:-0.054000px;}
.ws8b{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws74{word-spacing:0.048000px;}
.ws64{word-spacing:0.054000px;}
.ws3e{word-spacing:0.108000px;}
.ws34{word-spacing:0.144000px;}
.ws4d{word-spacing:0.192000px;}
.ws31{word-spacing:0.216000px;}
.wsc{word-spacing:0.240000px;}
.ws3d{word-spacing:0.270000px;}
.ws32{word-spacing:0.288000px;}
.ws2e{word-spacing:0.336000px;}
.ws89{word-spacing:0.384000px;}
.ws6{word-spacing:0.432000px;}
.ws75{word-spacing:0.480000px;}
.ws71{word-spacing:0.486000px;}
.ws90{word-spacing:0.528000px;}
.ws5{word-spacing:0.540000px;}
.ws56{word-spacing:0.576000px;}
.ws9a{word-spacing:0.594000px;}
.wsa5{word-spacing:0.624000px;}
.ws72{word-spacing:0.648000px;}
.ws2d{word-spacing:0.702000px;}
.ws70{word-spacing:0.756000px;}
.wsa8{word-spacing:0.828000px;}
.ws63{word-spacing:0.864000px;}
.ws93{word-spacing:0.966000px;}
.ws6e{word-spacing:1.104000px;}
.ws4c{word-spacing:1.380000px;}
.ws8a{word-spacing:1.392000px;}
.ws59{word-spacing:1.518000px;}
.ws3f{word-spacing:1.656000px;}
.ws2c{word-spacing:1.872000px;}
.ws6f{word-spacing:2.106000px;}
.ws87{word-spacing:2.208000px;}
.ws5a{word-spacing:3.450000px;}
.ws40{word-spacing:4.140000px;}
.ws1{word-spacing:4.337570px;}
.ws26{word-spacing:193.022400px;}
.ws7c{word-spacing:260.937600px;}
.ws82{word-spacing:274.473600px;}
.ws6b{word-spacing:280.118400px;}
.ws21{word-spacing:360.767400px;}
.ws83{word-spacing:381.072000px;}
.ws8e{word-spacing:386.620800px;}
.ws25{word-spacing:389.271000px;}
.ws6a{word-spacing:421.814400px;}
.ws69{word-spacing:707.155200px;}
.ws16{word-spacing:850.359600px;}
.ws6d{word-spacing:931.375800px;}
.ws3c{word-spacing:1969.593600px;}
.ws94{word-spacing:6404.064000px;}
.wsa6{word-spacing:6404.448000px;}
.ws9c{word-spacing:6405.888000px;}
.ws91{word-spacing:6406.800000px;}
.ws9d{word-spacing:6407.424000px;}
.ws8d{word-spacing:6408.336000px;}
.ws7f{word-spacing:6409.584000px;}
.ws9b{word-spacing:6410.928000px;}
.ws77{word-spacing:6415.104000px;}
.ws99{word-spacing:6415.200000px;}
.ws65{word-spacing:6423.936000px;}
.ws57{word-spacing:6424.896000px;}
.ws5f{word-spacing:6426.288000px;}
.ws4f{word-spacing:6429.456000px;}
.ws41{word-spacing:6434.688000px;}
.ws36{word-spacing:6458.592000px;}
.ws7{word-spacing:6459.552000px;}
.ws13{word-spacing:6460.944000px;}
._12{margin-left:-1318.289400px;}
._11{margin-left:-63.396000px;}
._28{margin-left:-47.682000px;}
._27{margin-left:-46.548000px;}
._13{margin-left:-40.014000px;}
._b{margin-left:-35.568000px;}
._16{margin-left:-34.560000px;}
._4{margin-left:-29.666237px;}
._8{margin-left:-10.928207px;}
._26{margin-left:-9.838358px;}
._f{margin-left:-8.373084px;}
._17{margin-left:-6.705072px;}
._0{margin-left:-4.745812px;}
._9{margin-left:-3.693331px;}
._2{margin-left:-1.964664px;}
._1{width:1.735028px;}
._a{width:3.230323px;}
._3{width:4.924418px;}
._7{width:7.251671px;}
._6{width:9.145163px;}
._5{width:10.877506px;}
._19{width:41.130087px;}
._1f{width:109.466916px;}
._1b{width:133.576972px;}
._1e{width:160.264972px;}
._24{width:176.557372px;}
._25{width:177.569400px;}
._23{width:181.319400px;}
._20{width:218.104972px;}
._22{width:236.099633px;}
._21{width:297.448972px;}
._1c{width:341.786916px;}
._1a{width:429.016972px;}
._14{width:516.720000px;}
._15{width:613.934316px;}
._c{width:771.606000px;}
._d{width:845.193008px;}
._e{width:846.680303px;}
._1d{width:940.287600px;}
._18{width:2114.422644px;}
._10{width:2403.926839px;}
.fc7{color:rgb(23,68,148);}
.fc9{color:rgb(93,60,131);}
.fc6{color:rgb(67,50,117);}
.fc5{color:rgb(131,76,164);}
.fc4{color:rgb(231,0,143);}
.fc3{color:rgb(117,86,179);}
.fc8{color:rgb(250,204,233);}
.fc2{color:rgb(29,29,27);}
.fc1{color:rgb(172,154,209);}
.fca{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:36.000000px;}
.fs7{font-size:38.749800px;}
.fsb{font-size:38.749982px;}
.fs9{font-size:38.750213px;}
.fsc{font-size:39.916800px;}
.fs3{font-size:45.000000px;}
.fs40{font-size:47.999639px;}
.fs2d{font-size:47.999657px;}
.fs47{font-size:47.999670px;}
.fs17{font-size:47.999683px;}
.fs41{font-size:47.999737px;}
.fs32{font-size:47.999749px;}
.fs36{font-size:47.999760px;}
.fs4e{font-size:47.999779px;}
.fs27{font-size:47.999790px;}
.fs4f{font-size:47.999802px;}
.fs13{font-size:47.999812px;}
.fs45{font-size:47.999818px;}
.fs38{font-size:47.999822px;}
.fs44{font-size:47.999836px;}
.fs4d{font-size:47.999848px;}
.fs18{font-size:47.999853px;}
.fs28{font-size:47.999854px;}
.fs1b{font-size:47.999860px;}
.fs3a{font-size:47.999866px;}
.fs37{font-size:47.999879px;}
.fs4c{font-size:47.999898px;}
.fs4a{font-size:47.999903px;}
.fs23{font-size:47.999936px;}
.fs22{font-size:47.999952px;}
.fs53{font-size:47.999956px;}
.fs2a{font-size:47.999964px;}
.fs31{font-size:47.999966px;}
.fs51{font-size:47.999973px;}
.fs50{font-size:47.999974px;}
.fs2e{font-size:47.999976px;}
.fs49{font-size:47.999984px;}
.fs35{font-size:47.999986px;}
.fs12{font-size:47.999999px;}
.fs5{font-size:48.000000px;}
.fs4b{font-size:48.000008px;}
.fs1d{font-size:48.000014px;}
.fs43{font-size:48.000017px;}
.fs20{font-size:48.000031px;}
.fs16{font-size:48.000042px;}
.fs3b{font-size:48.000043px;}
.fs1a{font-size:48.000047px;}
.fs48{font-size:48.000051px;}
.fs15{font-size:48.000052px;}
.fs3f{font-size:48.000067px;}
.fs29{font-size:48.000074px;}
.fs24{font-size:48.000078px;}
.fs52{font-size:48.000091px;}
.fs14{font-size:48.000093px;}
.fs19{font-size:48.000098px;}
.fs30{font-size:48.000100px;}
.fs2f{font-size:48.000114px;}
.fs1c{font-size:48.000125px;}
.fs54{font-size:48.000131px;}
.fs3c{font-size:48.000166px;}
.fs3d{font-size:48.000170px;}
.fs39{font-size:48.000178px;}
.fs55{font-size:48.000181px;}
.fs21{font-size:48.000199px;}
.fs2c{font-size:48.000225px;}
.fs2b{font-size:48.000235px;}
.fs42{font-size:48.000236px;}
.fs3e{font-size:48.000254px;}
.fs34{font-size:48.000272px;}
.fs25{font-size:48.000284px;}
.fs33{font-size:48.000287px;}
.fs46{font-size:48.000290px;}
.fs26{font-size:48.000357px;}
.fs1e{font-size:48.000398px;}
.fs1f{font-size:48.000404px;}
.fs4{font-size:54.000000px;}
.fsa{font-size:54.000253px;}
.fs8{font-size:54.000576px;}
.fs2{font-size:60.000000px;}
.fsd{font-size:72.000000px;}
.fsf{font-size:90.000000px;}
.fs1{font-size:134.290200px;}
.fs6{font-size:138.000000px;}
.fs0{font-size:255.151200px;}
.fs11{font-size:294.742800px;}
.fse{font-size:300.506400px;}
.y0{bottom:0.000000px;}
.y2c9{bottom:7.296028px;}
.y35{bottom:19.099440px;}
.y2f{bottom:21.178200px;}
.y32{bottom:21.178426px;}
.y38{bottom:22.358550px;}
.y30{bottom:23.436300px;}
.y33{bottom:23.436550px;}
.y3a{bottom:24.141900px;}
.y36{bottom:31.135646px;}
.y2cb{bottom:47.963431px;}
.y2af{bottom:52.395600px;}
.ye{bottom:52.399650px;}
.y2ca{bottom:62.963488px;}
.y20f{bottom:101.484900px;}
.y276{bottom:101.489400px;}
.y21f{bottom:101.505900px;}
.yd{bottom:101.513400px;}
.y7{bottom:112.016400px;}
.y1d4{bottom:120.236400px;}
.yf7{bottom:120.237900px;}
.y275{bottom:120.240900px;}
.yda{bottom:120.261900px;}
.yc{bottom:120.264900px;}
.yba{bottom:120.266400px;}
.y1de{bottom:123.730800px;}
.y6{bottom:125.516400px;}
.y262{bottom:129.149100px;}
.y3dc{bottom:138.947400px;}
.y241{bottom:138.954900px;}
.y1d3{bottom:138.987900px;}
.yf6{bottom:138.989400px;}
.y274{bottom:138.992400px;}
.y326{bottom:139.000500px;}
.y342{bottom:139.007400px;}
.y21e{bottom:139.008900px;}
.yd9{bottom:139.013400px;}
.yb{bottom:139.014900px;}
.y36f{bottom:139.015500px;}
.y5{bottom:139.016400px;}
.y207{bottom:140.997900px;}
.y309{bottom:141.901350px;}
.y261{bottom:144.149100px;}
.y2c7{bottom:144.561900px;}
.y1c4{bottom:151.022550px;}
.y1c1{bottom:155.439750px;}
.y308{bottom:156.901350px;}
.y3db{bottom:157.698900px;}
.y240{bottom:157.706400px;}
.y1d2{bottom:157.739400px;}
.yf5{bottom:157.740900px;}
.y273{bottom:157.743900px;}
.y1ab{bottom:157.748400px;}
.y325{bottom:157.752000px;}
.y356{bottom:157.756500px;}
.y341{bottom:157.758900px;}
.y2b8{bottom:157.760400px;}
.y9{bottom:157.764900px;}
.y37d{bottom:157.765500px;}
.ya{bottom:157.766400px;}
.y36e{bottom:157.767000px;}
.y25f{bottom:157.770150px;}
.y6f{bottom:162.232650px;}
.y6e{bottom:162.234000px;}
.y1c0{bottom:170.439750px;}
.y6c{bottom:172.866000px;}
.y3da{bottom:176.450400px;}
.y23f{bottom:176.457900px;}
.y386{bottom:176.466900px;}
.y20e{bottom:176.490900px;}
.yf4{bottom:176.492400px;}
.y272{bottom:176.495400px;}
.y1aa{bottom:176.499900px;}
.y324{bottom:176.503500px;}
.y355{bottom:176.508000px;}
.y340{bottom:176.510400px;}
.y21d{bottom:176.511900px;}
.y8{bottom:176.514900px;}
.y4{bottom:176.516400px;}
.y37c{bottom:176.517000px;}
.y36d{bottom:176.518500px;}
.y70{bottom:177.232650px;}
.y6d{bottom:177.234000px;}
.y67{bottom:179.040000px;}
.y260{bottom:179.969100px;}
.y69{bottom:180.366000px;}
.y18c{bottom:183.316800px;}
.y1bf{bottom:185.439750px;}
.y307{bottom:186.901350px;}
.y6b{bottom:187.866000px;}
.y190{bottom:191.565000px;}
.y206{bottom:192.233550px;}
.y208{bottom:192.233850px;}
.y3d9{bottom:195.201900px;}
.y23e{bottom:195.209400px;}
.y385{bottom:195.218400px;}
.y66{bottom:195.240000px;}
.y1d1{bottom:195.242400px;}
.yf3{bottom:195.243900px;}
.y2e4{bottom:195.245400px;}
.y271{bottom:195.246900px;}
.y1a9{bottom:195.251400px;}
.y323{bottom:195.255000px;}
.y354{bottom:195.259500px;}
.y33f{bottom:195.261900px;}
.y2b7{bottom:195.263400px;}
.y3{bottom:195.266400px;}
.y37b{bottom:195.268500px;}
.y68{bottom:195.366000px;}
.yff{bottom:197.647200px;}
.y2c6{bottom:199.969800px;}
.y6a{bottom:202.866000px;}
.y384{bottom:213.969900px;}
.y3eb{bottom:213.989400px;}
.y1d0{bottom:213.993900px;}
.yf2{bottom:213.995400px;}
.y270{bottom:213.998400px;}
.y1a8{bottom:214.002900px;}
.y322{bottom:214.006500px;}
.y3bd{bottom:214.007400px;}
.y353{bottom:214.011000px;}
.y33e{bottom:214.013400px;}
.ya7{bottom:214.014900px;}
.yd8{bottom:214.016400px;}
.y36c{bottom:214.021500px;}
.y2c5{bottom:214.969800px;}
.y306{bottom:216.901350px;}
.y34{bottom:225.067500px;}
.y297{bottom:227.145600px;}
.y1be{bottom:228.879750px;}
.y305{bottom:231.901350px;}
.y293{bottom:232.695900px;}
.y3d8{bottom:232.704900px;}
.y23d{bottom:232.712400px;}
.ya5{bottom:232.718400px;}
.y383{bottom:232.721400px;}
.y3ea{bottom:232.740900px;}
.y20d{bottom:232.745400px;}
.yf1{bottom:232.746900px;}
.y2e3{bottom:232.748400px;}
.y26f{bottom:232.749900px;}
.y1a7{bottom:232.754400px;}
.y321{bottom:232.758000px;}
.y3bc{bottom:232.758900px;}
.y21c{bottom:232.760400px;}
.y352{bottom:232.762500px;}
.y33d{bottom:232.764900px;}
.ya6{bottom:232.766400px;}
.y37a{bottom:232.771500px;}
.y296{bottom:242.145600px;}
.yb7{bottom:242.559750px;}
.y213{bottom:245.709600px;}
.y292{bottom:251.447400px;}
.y3d7{bottom:251.456400px;}
.y23c{bottom:251.463900px;}
.ya4{bottom:251.469900px;}
.y382{bottom:251.472900px;}
.y1cf{bottom:251.496900px;}
.yf0{bottom:251.498400px;}
.y2e2{bottom:251.499900px;}
.y26e{bottom:251.501400px;}
.y1a6{bottom:251.505900px;}
.y320{bottom:251.509500px;}
.y3bb{bottom:251.510400px;}
.y21b{bottom:251.511900px;}
.y351{bottom:251.514000px;}
.y33c{bottom:251.516400px;}
.y36b{bottom:254.008500px;}
.y18b{bottom:255.015600px;}
.yb6{bottom:257.559750px;}
.y304{bottom:261.901350px;}
.y63{bottom:263.533350px;}
.y3a2{bottom:270.170400px;}
.y291{bottom:270.198900px;}
.y3d6{bottom:270.207900px;}
.y23b{bottom:270.215400px;}
.ya3{bottom:270.221400px;}
.y381{bottom:270.224400px;}
.yd7{bottom:270.237900px;}
.y3e9{bottom:270.243900px;}
.y367{bottom:270.246150px;}
.y1ce{bottom:270.248400px;}
.yef{bottom:270.249900px;}
.y2e1{bottom:270.251400px;}
.y26d{bottom:270.252900px;}
.y1a5{bottom:270.257400px;}
.y2b6{bottom:270.260400px;}
.y31f{bottom:270.261000px;}
.y3ba{bottom:270.261900px;}
.y21a{bottom:270.263400px;}
.y350{bottom:270.265500px;}
.y33b{bottom:270.266400px;}
.y65{bottom:271.033350px;}
.y60{bottom:271.038000px;}
.y2c4{bottom:272.749800px;}
.y379{bottom:272.758500px;}
.y303{bottom:276.901350px;}
.y62{bottom:278.533350px;}
.y295{bottom:283.521600px;}
.y64{bottom:286.033350px;}
.y5f{bottom:286.038000px;}
.yfd{bottom:287.527200px;}
.y2c3{bottom:287.749800px;}
.y3a1{bottom:288.921900px;}
.y290{bottom:288.950400px;}
.y3d5{bottom:288.959400px;}
.y23a{bottom:288.966900px;}
.ya2{bottom:288.972900px;}
.y380{bottom:288.975900px;}
.yd6{bottom:288.989400px;}
.y3e8{bottom:288.995400px;}
.y366{bottom:288.997650px;}
.y1cd{bottom:288.999900px;}
.yee{bottom:289.001400px;}
.y2e0{bottom:289.002900px;}
.y26c{bottom:289.004400px;}
.y1a4{bottom:289.008900px;}
.y31e{bottom:289.012500px;}
.y3b9{bottom:289.013400px;}
.y219{bottom:289.014900px;}
.y2b5{bottom:289.016400px;}
.y34f{bottom:289.017000px;}
.y61{bottom:293.533350px;}
.y203{bottom:294.705000px;}
.y205{bottom:294.705150px;}
.y1bd{bottom:301.035750px;}
.y37{bottom:305.779500px;}
.y3a0{bottom:307.673400px;}
.y239{bottom:307.718400px;}
.y37f{bottom:307.727400px;}
.yd5{bottom:307.740900px;}
.y37e{bottom:307.749150px;}
.y20c{bottom:307.751400px;}
.yed{bottom:307.752900px;}
.y2df{bottom:307.754400px;}
.y34a{bottom:307.755900px;}
.y1a3{bottom:307.760400px;}
.y31d{bottom:307.764000px;}
.y3b8{bottom:307.764900px;}
.y218{bottom:307.766400px;}
.y34e{bottom:307.768500px;}
.y33a{bottom:307.771500px;}
.ybc{bottom:313.749000px;}
.y1bc{bottom:316.035750px;}
.y5e{bottom:317.934000px;}
.y10a{bottom:322.114950px;}
.y4e{bottom:324.105600px;}
.y5b{bottom:324.108000px;}
.y50{bottom:324.108750px;}
.y1db{bottom:324.999750px;}
.y10b{bottom:325.448100px;}
.y39f{bottom:326.424900px;}
.y28f{bottom:326.453400px;}
.y3d4{bottom:326.462400px;}
.y238{bottom:326.469900px;}
.ya1{bottom:326.475900px;}
.y32a{bottom:326.478900px;}
.y1f3{bottom:326.480400px;}
.yd4{bottom:326.492400px;}
.y3e7{bottom:326.498400px;}
.y365{bottom:326.500650px;}
.y1cc{bottom:326.502900px;}
.yec{bottom:326.504400px;}
.y2de{bottom:326.505900px;}
.y26b{bottom:326.507400px;}
.y1a2{bottom:326.511900px;}
.y3b7{bottom:326.516400px;}
.y18a{bottom:328.871850px;}
.y302{bottom:331.030800px;}
.y1bb{bottom:331.035750px;}
.y10c{bottom:332.254350px;}
.y5d{bottom:332.934000px;}
.y189{bottom:335.064750px;}
.y10d{bottom:335.575350px;}
.y18f{bottom:337.161000px;}
.y10e{bottom:338.891250px;}
.y188{bottom:339.170700px;}
.y4d{bottom:340.305600px;}
.y5a{bottom:340.308000px;}
.y4f{bottom:340.308750px;}
.y187{bottom:344.965800px;}
.y39e{bottom:345.176400px;}
.y28e{bottom:345.204900px;}
.y3d3{bottom:345.213900px;}
.y2bb{bottom:345.221400px;}
.ya0{bottom:345.227400px;}
.y329{bottom:345.230400px;}
.y1f2{bottom:345.231900px;}
.yd3{bottom:345.243900px;}
.y3e6{bottom:345.249900px;}
.y364{bottom:345.252150px;}
.y1cb{bottom:345.254400px;}
.yeb{bottom:345.255900px;}
.y26a{bottom:345.258900px;}
.y1a1{bottom:345.263400px;}
.y217{bottom:345.266400px;}
.y31c{bottom:345.267000px;}
.y34d{bottom:345.271500px;}
.y10f{bottom:345.357000px;}
.y2c2{bottom:345.529800px;}
.y204{bottom:345.940800px;}
.y301{bottom:346.033800px;}
.y339{bottom:347.758500px;}
.y5c{bottom:347.934000px;}
.y186{bottom:350.853450px;}
.y110{bottom:351.178650px;}
.y185{bottom:354.465300px;}
.y248{bottom:356.733300px;}
.y111{bottom:357.394200px;}
.y184{bottom:358.209600px;}
.y2c1{bottom:360.529800px;}
.y300{bottom:361.036800px;}
.y3c{bottom:361.313550px;}
.y112{bottom:362.623050px;}
.y39d{bottom:363.927900px;}
.y28d{bottom:363.956400px;}
.y3d2{bottom:363.965400px;}
.y237{bottom:363.972900px;}
.y9f{bottom:363.978900px;}
.y328{bottom:363.981900px;}
.y1f1{bottom:363.983400px;}
.y36a{bottom:363.994500px;}
.yd2{bottom:363.995400px;}
.y3fb{bottom:364.001400px;}
.y363{bottom:364.003650px;}
.y1ca{bottom:364.005900px;}
.y378{bottom:364.006650px;}
.yea{bottom:364.007400px;}
.y2dd{bottom:364.008900px;}
.y269{bottom:364.010400px;}
.y1a0{bottom:364.014900px;}
.y3b6{bottom:364.016400px;}
.y31b{bottom:364.018500px;}
.y54{bottom:364.834650px;}
.y183{bottom:364.959150px;}
.y182{bottom:367.312350px;}
.y113{bottom:367.956750px;}
.y181{bottom:369.677700px;}
.y114{bottom:370.317600px;}
.y247{bottom:371.733300px;}
.y180{bottom:372.017250px;}
.y59{bottom:372.334650px;}
.y115{bottom:372.652650px;}
.y2a8{bottom:373.245450px;}
.y17f{bottom:374.331000px;}
.y1ba{bottom:374.475750px;}
.y116{bottom:374.961900px;}
.y2ff{bottom:376.019250px;}
.y17e{bottom:376.618350px;}
.y117{bottom:377.244750px;}
.y3b{bottom:377.513550px;}
.y1dd{bottom:378.149250px;}
.y56{bottom:378.508650px;}
.y118{bottom:379.501200px;}
.y53{bottom:379.834650px;}
.y17d{bottom:381.128400px;}
.y119{bottom:381.730950px;}
.y39c{bottom:382.679400px;}
.y28c{bottom:382.707900px;}
.y3d1{bottom:382.716900px;}
.y236{bottom:382.724400px;}
.y9e{bottom:382.730400px;}
.y327{bottom:382.733400px;}
.y2b4{bottom:382.734900px;}
.yfe{bottom:382.735200px;}
.y369{bottom:382.746000px;}
.yd1{bottom:382.746900px;}
.y3e5{bottom:382.752900px;}
.y362{bottom:382.755150px;}
.y20b{bottom:382.757400px;}
.ye9{bottom:382.758900px;}
.y2dc{bottom:382.760400px;}
.y268{bottom:382.761900px;}
.y19f{bottom:382.766400px;}
.y17c{bottom:383.332050px;}
.y11a{bottom:383.933700px;}
.y34c{bottom:385.258500px;}
.y17b{bottom:385.508550px;}
.y246{bottom:386.733300px;}
.y58{bottom:387.334650px;}
.y17a{bottom:387.657300px;}
.y11b{bottom:388.234050px;}
.y179{bottom:389.778300px;}
.y11c{bottom:390.350250px;}
.y2fe{bottom:391.019250px;}
.y178{bottom:391.871400px;}
.y11d{bottom:392.438400px;}
.y177{bottom:393.936000px;}
.y11e{bottom:394.498200px;}
.y55{bottom:394.708650px;}
.y52{bottom:394.834650px;}
.y176{bottom:395.972100px;}
.y11f{bottom:396.529500px;}
.y175{bottom:397.979550px;}
.y120{bottom:398.532000px;}
.y121{bottom:400.505550px;}
.y39b{bottom:401.430900px;}
.y28b{bottom:401.459400px;}
.y3d0{bottom:401.468400px;}
.y235{bottom:401.475900px;}
.y216{bottom:401.484900px;}
.y1f0{bottom:401.486400px;}
.yd0{bottom:401.498400px;}
.y3e4{bottom:401.504400px;}
.y361{bottom:401.506650px;}
.y1c9{bottom:401.508900px;}
.y377{bottom:401.509650px;}
.ye8{bottom:401.510400px;}
.y2db{bottom:401.511900px;}
.y267{bottom:401.513400px;}
.y31a{bottom:401.521500px;}
.y245{bottom:401.733300px;}
.y174{bottom:401.920050px;}
.y57{bottom:402.334650px;}
.y122{bottom:402.449850px;}
.y173{bottom:403.835700px;}
.y2a7{bottom:404.241450px;}
.y172{bottom:405.721650px;}
.y2fd{bottom:406.019250px;}
.y123{bottom:406.225350px;}
.y171{bottom:407.577600px;}
.y124{bottom:408.076050px;}
.y170{bottom:409.403250px;}
.y51{bottom:409.834650px;}
.y125{bottom:409.896600px;}
.y16f{bottom:411.198600px;}
.y126{bottom:411.686700px;}
.y16e{bottom:412.963200px;}
.y127{bottom:413.446200px;}
.y2d{bottom:414.577200px;}
.y16d{bottom:414.697050px;}
.y128{bottom:415.174800px;}
.y129{bottom:416.872500px;}
.y16c{bottom:418.085100px;}
.y2c0{bottom:418.309800px;}
.y12a{bottom:418.538850px;}
.y16b{bottom:419.720550px;}
.y28a{bottom:420.210900px;}
.y234{bottom:420.227400px;}
.y9d{bottom:420.233400px;}
.y215{bottom:420.236400px;}
.y3b5{bottom:420.236550px;}
.y1ef{bottom:420.237900px;}
.y368{bottom:420.249000px;}
.ycf{bottom:420.249900px;}
.y3e3{bottom:420.255900px;}
.y360{bottom:420.258150px;}
.y19e{bottom:420.260400px;}
.ye7{bottom:420.261900px;}
.y2da{bottom:420.263400px;}
.y266{bottom:420.264900px;}
.y3f4{bottom:420.266400px;}
.y16a{bottom:421.324350px;}
.y12b{bottom:421.750350px;}
.y169{bottom:422.896200px;}
.y12c{bottom:423.316800px;}
.y168{bottom:424.435800px;}
.y12d{bottom:424.851150px;}
.y167{bottom:425.943300px;}
.y12e{bottom:426.353400px;}
.y166{bottom:427.418250px;}
.y12f{bottom:427.822950px;}
.y130{bottom:429.259950px;}
.y165{bottom:430.287900px;}
.y131{bottom:430.664250px;}
.yb9{bottom:431.243250px;}
.y164{bottom:431.659350px;}
.y163{bottom:432.997650px;}
.y2bf{bottom:433.309800px;}
.y132{bottom:433.348350px;}
.y162{bottom:434.302500px;}
.y133{bottom:434.647800px;}
.y161{bottom:435.573750px;}
.y134{bottom:435.913800px;}
.y160{bottom:436.811400px;}
.y135{bottom:437.146050px;}
.y15f{bottom:438.015150px;}
.y136{bottom:438.344550px;}
.y39a{bottom:438.933900px;}
.y202{bottom:438.948900px;}
.y289{bottom:438.962400px;}
.y3cf{bottom:438.971400px;}
.y233{bottom:438.978900px;}
.y9c{bottom:438.984900px;}
.y214{bottom:438.987900px;}
.y3b4{bottom:438.988050px;}
.y1ee{bottom:438.989400px;}
.y318{bottom:439.000500px;}
.yce{bottom:439.001400px;}
.y3e2{bottom:439.007400px;}
.y35f{bottom:439.009650px;}
.y1c8{bottom:439.011900px;}
.y376{bottom:439.012650px;}
.ye6{bottom:439.013400px;}
.y2d9{bottom:439.014900px;}
.y19d{bottom:439.016400px;}
.y15e{bottom:439.184850px;}
.y137{bottom:439.509150px;}
.y138{bottom:440.639850px;}
.y2c{bottom:441.097200px;}
.y15d{bottom:441.437100px;}
.y319{bottom:441.508500px;}
.y139{bottom:441.736200px;}
.y15c{bottom:442.498650px;}
.y1d9{bottom:443.245350px;}
.y15b{bottom:443.525700px;}
.y13a{bottom:443.794350px;}
.y15a{bottom:444.518100px;}
.y13b{bottom:444.781500px;}
.y159{bottom:445.475850px;}
.y13c{bottom:445.734150px;}
.yb8{bottom:446.243250px;}
.y158{bottom:446.398650px;}
.y1b9{bottom:446.631750px;}
.y13d{bottom:446.652000px;}
.y244{bottom:447.369300px;}
.y13e{bottom:447.535050px;}
.y157{bottom:448.159950px;}
.y13f{bottom:448.383150px;}
.y156{bottom:448.971750px;}
.y140{bottom:449.945400px;}
.y155{bottom:450.823200px;}
.y141{bottom:450.852600px;}
.y154{bottom:452.352150px;}
.y142{bottom:452.502000px;}
.y143{bottom:453.236400px;}
.y153{bottom:453.262050px;}
.y144{bottom:453.915600px;}
.y152{bottom:454.465350px;}
.y145{bottom:455.108400px;}
.y151{bottom:455.493150px;}
.y150{bottom:456.013050px;}
.y146{bottom:456.015300px;}
.y14f{bottom:456.514350px;}
.y147{bottom:456.786000px;}
.y14e{bottom:457.136700px;}
.y148{bottom:457.281300px;}
.y14d{bottom:457.290900px;}
.y149{bottom:457.594800px;}
.y14c{bottom:457.675350px;}
.y399{bottom:457.685400px;}
.y201{bottom:457.700400px;}
.y288{bottom:457.713900px;}
.y14a{bottom:457.722600px;}
.y3ce{bottom:457.722900px;}
.y2ba{bottom:457.730400px;}
.y9b{bottom:457.736400px;}
.y211{bottom:457.739400px;}
.y3b3{bottom:457.739550px;}
.y1ed{bottom:457.740900px;}
.y338{bottom:457.744500px;}
.y317{bottom:457.752000px;}
.ycd{bottom:457.752900px;}
.y3e1{bottom:457.758900px;}
.y35e{bottom:457.761150px;}
.y20a{bottom:457.763400px;}
.y375{bottom:457.764150px;}
.ye5{bottom:457.764900px;}
.y2d8{bottom:457.766400px;}
.y349{bottom:457.767900px;}
.y14b{bottom:457.807050px;}
.y23{bottom:457.862400px;}
.y47{bottom:461.076600px;}
.y1b8{bottom:461.631750px;}
.y243{bottom:462.369300px;}
.y4a{bottom:463.002600px;}
.y1c3{bottom:466.071900px;}
.y2b{bottom:467.617200px;}
.y4c{bottom:469.176600px;}
.y1d5{bottom:469.763100px;}
.y1d7{bottom:469.765350px;}
.y44{bottom:473.636250px;}
.y398{bottom:476.436900px;}
.y200{bottom:476.451900px;}
.y3cd{bottom:476.474400px;}
.y232{bottom:476.481900px;}
.y9a{bottom:476.487900px;}
.y210{bottom:476.490900px;}
.y3b2{bottom:476.491050px;}
.y1ec{bottom:476.492400px;}
.y337{bottom:476.496000px;}
.y316{bottom:476.503500px;}
.ycc{bottom:476.504400px;}
.y3fa{bottom:476.510400px;}
.y35d{bottom:476.512650px;}
.y1c7{bottom:476.514900px;}
.y374{bottom:476.515650px;}
.ye4{bottom:476.516400px;}
.y348{bottom:476.519400px;}
.y22{bottom:476.606400px;}
.y1b7{bottom:476.631750px;}
.y46{bottom:477.276600px;}
.y49{bottom:478.002600px;}
.yfc{bottom:482.299200px;}
.y18e{bottom:482.757000px;}
.y2be{bottom:485.017800px;}
.y4b{bottom:485.376600px;}
.y40{bottom:487.309050px;}
.y108{bottom:487.863300px;}
.y43{bottom:488.636250px;}
.yb5{bottom:490.391250px;}
.y2a6{bottom:490.587600px;}
.y48{bottom:493.002600px;}
.y45{bottom:493.476600px;}
.y2a{bottom:494.137200px;}
.y397{bottom:495.188400px;}
.y287{bottom:495.216900px;}
.y3cc{bottom:495.225900px;}
.y231{bottom:495.233400px;}
.y19c{bottom:495.242400px;}
.y1eb{bottom:495.243900px;}
.y336{bottom:495.247500px;}
.y3f3{bottom:495.252900px;}
.y315{bottom:495.255000px;}
.ycb{bottom:495.255900px;}
.y3e0{bottom:495.261900px;}
.y35c{bottom:495.264150px;}
.y1c6{bottom:495.266400px;}
.y373{bottom:495.267150px;}
.y21{bottom:495.350400px;}
.yfb{bottom:497.299200px;}
.y2bd{bottom:500.017800px;}
.ybb{bottom:502.432500px;}
.y3f{bottom:503.509050px;}
.y42{bottom:503.636250px;}
.y2a5{bottom:505.587600px;}
.y2fc{bottom:511.655250px;}
.y396{bottom:513.939900px;}
.y1ff{bottom:513.954900px;}
.y2f4{bottom:513.966900px;}
.y286{bottom:513.968400px;}
.y230{bottom:513.984900px;}
.y99{bottom:513.990900px;}
.y19b{bottom:513.993900px;}
.y3b1{bottom:513.994050px;}
.y1ea{bottom:513.995400px;}
.y335{bottom:513.999000px;}
.y314{bottom:514.006500px;}
.yca{bottom:514.007400px;}
.ye3{bottom:514.011900px;}
.y3df{bottom:514.013400px;}
.y35b{bottom:514.015650px;}
.y265{bottom:514.016400px;}
.y372{bottom:514.018650px;}
.y347{bottom:514.022400px;}
.y20{bottom:514.094400px;}
.y88{bottom:518.099850px;}
.y41{bottom:518.636250px;}
.y1b6{bottom:520.071750px;}
.y29{bottom:520.657200px;}
.y25e{bottom:524.714700px;}
.y2fb{bottom:526.655250px;}
.y25d{bottom:526.953900px;}
.y395{bottom:532.691400px;}
.y1fe{bottom:532.706400px;}
.y2f3{bottom:532.718400px;}
.y285{bottom:532.719900px;}
.y3cb{bottom:532.728900px;}
.y22f{bottom:532.736400px;}
.y98{bottom:532.742400px;}
.y19a{bottom:532.745400px;}
.y3b0{bottom:532.745550px;}
.y2b3{bottom:532.746900px;}
.y334{bottom:532.750500px;}
.y3f2{bottom:532.755900px;}
.y313{bottom:532.758000px;}
.yc9{bottom:532.758900px;}
.ye2{bottom:532.763400px;}
.y3de{bottom:532.764900px;}
.y1c5{bottom:532.766400px;}
.y35a{bottom:532.767150px;}
.y1f{bottom:532.838400px;}
.y87{bottom:533.099850px;}
.y2a4{bottom:534.207600px;}
.y28{bottom:547.177200px;}
.y86{bottom:548.099850px;}
.y2a3{bottom:549.207600px;}
.y394{bottom:551.442900px;}
.y1fd{bottom:551.457900px;}
.y2f2{bottom:551.469900px;}
.y284{bottom:551.471400px;}
.y3ca{bottom:551.480400px;}
.y22e{bottom:551.487900px;}
.y97{bottom:551.493900px;}
.y199{bottom:551.496900px;}
.y3af{bottom:551.497050px;}
.y1e9{bottom:551.498400px;}
.y333{bottom:551.502000px;}
.y2d7{bottom:551.502900px;}
.y3f1{bottom:551.507400px;}
.y312{bottom:551.509500px;}
.yc8{bottom:551.510400px;}
.ye1{bottom:551.514900px;}
.y3dd{bottom:551.516400px;}
.y359{bottom:551.518650px;}
.y371{bottom:551.521650px;}
.y1e{bottom:551.582400px;}
.ybd{bottom:553.780500px;}
.y346{bottom:554.009400px;}
.y2bc{bottom:562.191750px;}
.y85{bottom:563.099850px;}
.y2f1{bottom:570.221400px;}
.y283{bottom:570.222900px;}
.y2b9{bottom:570.239400px;}
.y96{bottom:570.245400px;}
.y198{bottom:570.248400px;}
.y3ae{bottom:570.248550px;}
.y1e8{bottom:570.249900px;}
.y332{bottom:570.253500px;}
.y2d6{bottom:570.254400px;}
.y3f0{bottom:570.258900px;}
.y264{bottom:570.260400px;}
.y311{bottom:570.261000px;}
.yc7{bottom:570.261900px;}
.ye0{bottom:570.266400px;}
.y1d{bottom:570.326400px;}
.y27{bottom:570.793200px;}
.y1b2{bottom:573.259050px;}
.y3e{bottom:578.920050px;}
.y2a2{bottom:580.155600px;}
.y3d{bottom:587.020050px;}
.y393{bottom:588.945900px;}
.y1fc{bottom:588.960900px;}
.y2f0{bottom:588.972900px;}
.y282{bottom:588.974400px;}
.y3c9{bottom:588.983400px;}
.y22d{bottom:588.990900px;}
.ydf{bottom:588.995400px;}
.y197{bottom:588.999900px;}
.y3ad{bottom:589.000050px;}
.y1e7{bottom:589.001400px;}
.y331{bottom:589.005000px;}
.y2d5{bottom:589.005900px;}
.y3ef{bottom:589.010400px;}
.y310{bottom:589.012500px;}
.yc6{bottom:589.013400px;}
.y263{bottom:589.016400px;}
.y358{bottom:589.021650px;}
.y370{bottom:591.508650px;}
.y2a1{bottom:595.155600px;}
.y26{bottom:597.313200px;}
.y392{bottom:607.697400px;}
.y1fb{bottom:607.712400px;}
.y2ef{bottom:607.724400px;}
.y281{bottom:607.725900px;}
.y3c8{bottom:607.734900px;}
.y22c{bottom:607.742400px;}
.yde{bottom:607.746900px;}
.y95{bottom:607.748400px;}
.y196{bottom:607.751400px;}
.y3ac{bottom:607.751550px;}
.y2b2{bottom:607.752900px;}
.y330{bottom:607.756500px;}
.y2d4{bottom:607.757400px;}
.y30f{bottom:607.764000px;}
.yc5{bottom:607.764900px;}
.y345{bottom:607.766400px;}
.y252{bottom:607.809300px;}
.y1c{bottom:607.826400px;}
.y25b{bottom:607.845300px;}
.y2c8{bottom:622.006500px;}
.y25{bottom:622.381200px;}
.y39{bottom:625.504500px;}
.y391{bottom:626.448900px;}
.y1fa{bottom:626.463900px;}
.y2ee{bottom:626.475900px;}
.y280{bottom:626.477400px;}
.y3c7{bottom:626.486400px;}
.y22b{bottom:626.493900px;}
.ydd{bottom:626.498400px;}
.y94{bottom:626.499900px;}
.y195{bottom:626.502900px;}
.y1e6{bottom:626.504400px;}
.y32f{bottom:626.508000px;}
.y2d3{bottom:626.508900px;}
.y3ee{bottom:626.513400px;}
.y30e{bottom:626.515500px;}
.yc4{bottom:626.516400px;}
.y251{bottom:626.553300px;}
.y1b{bottom:626.570400px;}
.y25a{bottom:626.589300px;}
.y2a0{bottom:628.623600px;}
.y357{bottom:629.008650px;}
.y2fa{bottom:632.291250px;}
.y390{bottom:645.200400px;}
.y2ed{bottom:645.227400px;}
.y27f{bottom:645.228900px;}
.y22a{bottom:645.245400px;}
.ydc{bottom:645.249900px;}
.y93{bottom:645.251400px;}
.y194{bottom:645.254400px;}
.y3ab{bottom:645.254550px;}
.y1e5{bottom:645.255900px;}
.y32e{bottom:645.259500px;}
.y2d2{bottom:645.260400px;}
.y3ed{bottom:645.264900px;}
.y30d{bottom:645.267000px;}
.y250{bottom:645.297300px;}
.y1a{bottom:645.314400px;}
.y2f9{bottom:647.291250px;}
.y24{bottom:648.501000px;}
.y71{bottom:648.698100px;}
.y29f{bottom:657.243600px;}
.y1dc{bottom:663.450900px;}
.y38f{bottom:663.951900px;}
.y1f9{bottom:663.966900px;}
.y2ec{bottom:663.978900px;}
.y27e{bottom:663.980400px;}
.y3c6{bottom:663.989400px;}
.y229{bottom:663.996900px;}
.ydb{bottom:664.001400px;}
.y92{bottom:664.002900px;}
.y193{bottom:664.005900px;}
.y3aa{bottom:664.006050px;}
.y1e4{bottom:664.007400px;}
.y32d{bottom:664.011000px;}
.y2d1{bottom:664.011900px;}
.yc3{bottom:664.016400px;}
.y30c{bottom:664.018500px;}
.y24f{bottom:664.041300px;}
.y19{bottom:664.058400px;}
.y259{bottom:664.089300px;}
.y29e{bottom:672.243600px;}
.y38e{bottom:682.703400px;}
.y1f8{bottom:682.718400px;}
.y3c5{bottom:682.740900px;}
.y228{bottom:682.748400px;}
.yb0{bottom:682.752900px;}
.y344{bottom:682.754400px;}
.y192{bottom:682.757400px;}
.y3a9{bottom:682.757550px;}
.y1e3{bottom:682.758900px;}
.y2d0{bottom:682.763400px;}
.y24e{bottom:682.785300px;}
.y18{bottom:682.802400px;}
.y258{bottom:682.833300px;}
.y105{bottom:683.265600px;}
.y1b5{bottom:683.301750px;}
.y29d{bottom:687.243600px;}
.y104{bottom:698.265600px;}
.y38d{bottom:701.454900px;}
.y27d{bottom:701.483400px;}
.y3c4{bottom:701.492400px;}
.y227{bottom:701.499900px;}
.yaf{bottom:701.504400px;}
.y91{bottom:701.505900px;}
.y191{bottom:701.508900px;}
.y2b1{bottom:701.510400px;}
.y32c{bottom:701.514000px;}
.y2cf{bottom:701.514900px;}
.y3ec{bottom:701.516400px;}
.y30b{bottom:701.521500px;}
.y24d{bottom:701.529300px;}
.y17{bottom:701.546400px;}
.y257{bottom:701.577300px;}
.y18d{bottom:704.445600px;}
.y31{bottom:711.294000px;}
.y103{bottom:713.265600px;}
.y29c{bottom:717.315600px;}
.y89{bottom:719.722800px;}
.y1f7{bottom:720.221400px;}
.y2eb{bottom:720.233400px;}
.y27c{bottom:720.234900px;}
.y3c3{bottom:720.243900px;}
.y226{bottom:720.251400px;}
.yae{bottom:720.255900px;}
.y90{bottom:720.257400px;}
.yc2{bottom:720.260400px;}
.y3a8{bottom:720.260550px;}
.y1e2{bottom:720.261900px;}
.y2ce{bottom:720.266400px;}
.y24c{bottom:720.273300px;}
.y16{bottom:720.290400px;}
.y256{bottom:720.321300px;}
.y1b4{bottom:726.321750px;}
.y102{bottom:728.265600px;}
.yb4{bottom:729.211950px;}
.y38c{bottom:738.957900px;}
.y1f6{bottom:738.972900px;}
.y2ea{bottom:738.984900px;}
.y27b{bottom:738.986400px;}
.y1b1{bottom:738.990900px;}
.y3c2{bottom:738.995400px;}
.y225{bottom:739.002900px;}
.yad{bottom:739.007400px;}
.y8f{bottom:739.008900px;}
.y3f9{bottom:739.010400px;}
.yc1{bottom:739.011900px;}
.y3a7{bottom:739.012050px;}
.y1e1{bottom:739.013400px;}
.y2cd{bottom:739.014900px;}
.y2ae{bottom:739.131600px;}
.y32b{bottom:740.758500px;}
.y30a{bottom:741.508500px;}
.y101{bottom:743.265600px;}
.yb3{bottom:744.211950px;}
.y29b{bottom:747.387600px;}
.y1d6{bottom:748.309350px;}
.y2f8{bottom:752.927250px;}
.y2ad{bottom:754.131600px;}
.y106{bottom:756.021600px;}
.y38b{bottom:757.709400px;}
.y1f5{bottom:757.724400px;}
.y2e9{bottom:757.736400px;}
.y27a{bottom:757.737900px;}
.y1b0{bottom:757.742400px;}
.y224{bottom:757.754400px;}
.yac{bottom:757.758900px;}
.y343{bottom:757.760400px;}
.y3f8{bottom:757.761900px;}
.yc0{bottom:757.763400px;}
.y3a6{bottom:757.763550px;}
.y1e0{bottom:757.764900px;}
.y2cc{bottom:757.766400px;}
.y24b{bottom:757.773300px;}
.y15{bottom:757.790400px;}
.y255{bottom:757.821300px;}
.y2f7{bottom:767.927250px;}
.y73{bottom:768.815550px;}
.y2ac{bottom:769.131600px;}
.y100{bottom:771.021600px;}
.y38a{bottom:776.460900px;}
.y1f4{bottom:776.475900px;}
.y2e8{bottom:776.487900px;}
.y279{bottom:776.489400px;}
.y1af{bottom:776.493900px;}
.y3c1{bottom:776.498400px;}
.y223{bottom:776.505900px;}
.yab{bottom:776.510400px;}
.y8e{bottom:776.511900px;}
.y3f7{bottom:776.513400px;}
.ybf{bottom:776.514900px;}
.y3a5{bottom:776.515050px;}
.y1df{bottom:776.516400px;}
.y24a{bottom:776.517300px;}
.y14{bottom:776.534400px;}
.y254{bottom:776.565300px;}
.y1b3{bottom:779.420400px;}
.y2a9{bottom:782.756850px;}
.y72{bottom:783.815550px;}
.y2ab{bottom:784.131600px;}
.y29a{bottom:784.515600px;}
.y389{bottom:795.212400px;}
.y2e7{bottom:795.239400px;}
.y278{bottom:795.240900px;}
.y1ae{bottom:795.245400px;}
.y3c0{bottom:795.249900px;}
.y222{bottom:795.257400px;}
.y249{bottom:795.261300px;}
.yaa{bottom:795.261900px;}
.y8d{bottom:795.263400px;}
.ybe{bottom:795.266400px;}
.y3a4{bottom:795.266550px;}
.y2e{bottom:795.267000px;}
.y13{bottom:795.278400px;}
.y253{bottom:795.309300px;}
.y299{bottom:799.515600px;}
.y8b{bottom:799.577100px;}
.yb2{bottom:800.401200px;}
.y1d8{bottom:804.421350px;}
.y8a{bottom:811.578600px;}
.y388{bottom:813.963900px;}
.y2e6{bottom:813.990900px;}
.y1ad{bottom:813.996900px;}
.y3bf{bottom:814.001400px;}
.y221{bottom:814.008900px;}
.y2b0{bottom:814.010400px;}
.ya9{bottom:814.013400px;}
.y8c{bottom:814.014900px;}
.y3f6{bottom:814.016400px;}
.y12{bottom:814.022400px;}
.y2f6{bottom:814.415250px;}
.y1da{bottom:816.316800px;}
.yfa{bottom:819.163200px;}
.y2aa{bottom:820.071600px;}
.y1c2{bottom:822.490950px;}
.y109{bottom:824.701050px;}
.y107{bottom:824.724000px;}
.y298{bottom:827.271600px;}
.y2f5{bottom:829.415250px;}
.y387{bottom:832.715400px;}
.y2e5{bottom:832.742400px;}
.y277{bottom:832.743900px;}
.y1ac{bottom:832.748400px;}
.y3be{bottom:832.752900px;}
.y220{bottom:832.760400px;}
.ya8{bottom:832.764900px;}
.y11{bottom:832.766400px;}
.y3a3{bottom:832.766550px;}
.y3f5{bottom:832.767900px;}
.yf9{bottom:834.163200px;}
.y212{bottom:838.457550px;}
.y25c{bottom:843.464700px;}
.y242{bottom:845.703900px;}
.y34b{bottom:851.516400px;}
.y2{bottom:887.563650px;}
.y7b{bottom:907.808550px;}
.y83{bottom:907.856550px;}
.y209{bottom:926.514900px;}
.y7a{bottom:926.552550px;}
.y82{bottom:926.600550px;}
.y1{bottom:945.266550px;}
.y79{bottom:945.296550px;}
.y81{bottom:945.344550px;}
.y10{bottom:964.016400px;}
.y294{bottom:964.016550px;}
.y78{bottom:964.040550px;}
.y80{bottom:964.088550px;}
.y77{bottom:982.784550px;}
.y7f{bottom:982.832550px;}
.y76{bottom:1001.528550px;}
.y7e{bottom:1001.576550px;}
.y75{bottom:1020.272550px;}
.y7d{bottom:1020.320550px;}
.yf{bottom:1039.016400px;}
.y74{bottom:1039.016550px;}
.y7c{bottom:1039.064550px;}
.y84{bottom:1065.765150px;}
.yb1{bottom:1077.010650px;}
.yf8{bottom:1078.405500px;}
.h1a{height:30.312000px;}
.ha{height:32.627332px;}
.h10{height:32.627485px;}
.hd{height:32.627680px;}
.h12{height:33.609946px;}
.h64{height:35.616000px;}
.h1c{height:37.776000px;}
.h1f{height:37.776074px;}
.h68{height:37.776143px;}
.h50{height:37.776229px;}
.h5{height:37.890000px;}
.h62{height:40.338000px;}
.h4a{height:40.415696px;}
.h38{height:40.415711px;}
.h51{height:40.415722px;}
.h22{height:40.415733px;}
.h4b{height:40.415778px;}
.h3d{height:40.415788px;}
.h41{height:40.415798px;}
.h58{height:40.415814px;}
.h32{height:40.415823px;}
.h59{height:40.415833px;}
.h1e{height:40.415842px;}
.h4f{height:40.415847px;}
.h43{height:40.415850px;}
.h4e{height:40.415862px;}
.h57{height:40.415872px;}
.h23{height:40.415876px;}
.h33{height:40.415877px;}
.h26{height:40.415882px;}
.h45{height:40.415887px;}
.h42{height:40.415898px;}
.h56{height:40.415914px;}
.h54{height:40.415918px;}
.h2e{height:40.415946px;}
.h2d{height:40.415959px;}
.h5e{height:40.415963px;}
.h35{height:40.415969px;}
.h3c{height:40.415971px;}
.h5b{height:40.415977px;}
.h5a{height:40.415978px;}
.h39{height:40.415980px;}
.h53{height:40.415986px;}
.h40{height:40.415988px;}
.h1d{height:40.415999px;}
.h7{height:40.416000px;}
.h55{height:40.416007px;}
.h28{height:40.416012px;}
.h4d{height:40.416014px;}
.h2b{height:40.416026px;}
.h21{height:40.416035px;}
.h25{height:40.416040px;}
.h52{height:40.416043px;}
.h20{height:40.416044px;}
.h49{height:40.416057px;}
.h34{height:40.416063px;}
.h2f{height:40.416065px;}
.h5c{height:40.416076px;}
.h24{height:40.416083px;}
.h3b{height:40.416084px;}
.h3a{height:40.416096px;}
.h27{height:40.416105px;}
.h5f{height:40.416110px;}
.h46{height:40.416140px;}
.h47{height:40.416143px;}
.h44{height:40.416150px;}
.h69{height:40.416152px;}
.h2c{height:40.416167px;}
.h37{height:40.416190px;}
.h36{height:40.416198px;}
.h4c{height:40.416199px;}
.h48{height:40.416214px;}
.h3f{height:40.416229px;}
.h30{height:40.416239px;}
.h3e{height:40.416242px;}
.h5d{height:40.416245px;}
.h31{height:40.416301px;}
.h29{height:40.416335px;}
.h2a{height:40.416341px;}
.h13{height:42.498000px;}
.h6{height:45.468000px;}
.hf{height:45.468213px;}
.hc{height:45.468485px;}
.h63{height:45.492000px;}
.h4{height:50.520000px;}
.h9{height:56.250000px;}
.hb{height:56.250600px;}
.h61{height:56.664000px;}
.h11{height:57.943500px;}
.h17{height:60.624000px;}
.he{height:63.949500px;}
.h19{height:66.780000px;}
.h66{height:70.416000px;}
.h15{height:72.545400px;}
.h14{height:77.868000px;}
.h67{height:79.510500px;}
.h16{height:100.410600px;}
.h65{height:102.948000px;}
.h3{height:113.072348px;}
.h8{height:116.196000px;}
.h60{height:117.079200px;}
.h2{height:214.837310px;}
.h1b{height:218.699158px;}
.h18{height:222.975749px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:683.973000px;}
.w4{width:684.035100px;}
.w6{width:684.036000px;}
.w7{width:739.848000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.xa{left:7.191000px;}
.x9{left:10.398436px;}
.x1{left:76.535400px;}
.xe5{left:84.976500px;}
.xf1{left:86.855250px;}
.x47{left:88.565400px;}
.x48{left:93.546900px;}
.x4d{left:96.184800px;}
.xef{left:99.729900px;}
.xf0{left:110.556900px;}
.xc{left:117.397950px;}
.xb{left:122.568450px;}
.x49{left:127.191600px;}
.x2{left:132.628500px;}
.x3{left:138.689850px;}
.x8{left:141.909263px;}
.x4a{left:147.194250px;}
.x4b{left:156.790350px;}
.x4{left:176.878200px;}
.x6{left:218.444850px;}
.x7{left:221.431200px;}
.x43{left:240.448800px;}
.x25{left:250.086750px;}
.x3b{left:253.575750px;}
.x23{left:256.254750px;}
.x24{left:258.762750px;}
.x3a{left:259.899750px;}
.x104{left:268.694929px;}
.x44{left:295.282500px;}
.xd{left:390.975450px;}
.x106{left:399.515400px;}
.xf{left:405.690450px;}
.x10{left:419.311950px;}
.x105{left:423.136332px;}
.x26{left:426.088650px;}
.x4c{left:455.518350px;}
.x108{left:463.068900px;}
.x5e{left:466.997400px;}
.x5f{left:471.978900px;}
.x60{left:478.155150px;}
.x61{left:488.982150px;}
.x13{left:542.314800px;}
.x14{left:544.798800px;}
.x11{left:547.222800px;}
.x32{left:550.920300px;}
.x33{left:552.432300px;}
.x12{left:555.514800px;}
.x27{left:557.310150px;}
.x2c{left:696.740250px;}
.x35{left:698.199900px;}
.x17{left:702.004950px;}
.x16{left:704.232450px;}
.x36{left:709.296900px;}
.x15{left:722.025450px;}
.x2b{left:723.267750px;}
.x37{left:829.514400px;}
.x2d{left:831.268950px;}
.x38{left:833.594400px;}
.x2e{left:837.580950px;}
.x19{left:839.717850px;}
.x1a{left:844.373850px;}
.x45{left:852.159150px;}
.x18{left:864.725850px;}
.x46{left:875.473650px;}
.x42{left:968.385750px;}
.x5{left:969.448800px;}
.xf5{left:970.511850px;}
.xde{left:973.254750px;}
.x3e{left:974.939100px;}
.x66{left:977.977500px;}
.xdd{left:979.525500px;}
.x6a{left:980.707200px;}
.x69{left:982.862850px;}
.x3f{left:986.447100px;}
.xe8{left:996.895500px;}
.xe4{left:998.542350px;}
.x2f{left:999.544950px;}
.xe9{left:1006.883850px;}
.x1b{left:1009.885650px;}
.x1c{left:1020.618150px;}
.x62{left:1021.889700px;}
.xe0{left:1035.255750px;}
.xf4{left:1036.380750px;}
.xe1{left:1040.751750px;}
.x57{left:1048.833750px;}
.xe2{left:1052.838600px;}
.x56{left:1065.273750px;}
.xf7{left:1073.888850px;}
.x5b{left:1081.193400px;}
.x6c{left:1082.894100px;}
.x6d{left:1087.916550px;}
.x6e{left:1090.468950px;}
.x6f{left:1093.029750px;}
.x102{left:1094.472600px;}
.x70{left:1098.353250px;}
.xfa{left:1101.000600px;}
.x71{left:1103.383500px;}
.x72{left:1109.046750px;}
.x103{left:1111.069500px;}
.x101{left:1112.724600px;}
.x73{left:1114.030050px;}
.x74{left:1119.404550px;}
.x75{left:1121.845500px;}
.x76{left:1124.310900px;}
.x77{left:1126.800900px;}
.x78{left:1129.314900px;}
.x79{left:1131.852750px;}
.x107{left:1133.112900px;}
.x7a{left:1134.414300px;}
.x7b{left:1136.999100px;}
.x31{left:1141.487250px;}
.x30{left:1144.403250px;}
.x39{left:1145.871750px;}
.x7c{left:1147.589700px;}
.x7d{left:1150.289550px;}
.x51{left:1151.876550px;}
.x7e{left:1153.011000px;}
.x7f{left:1155.753600px;}
.x80{left:1158.517200px;}
.x81{left:1161.301650px;}
.x52{left:1165.832550px;}
.x82{left:1166.947200px;}
.x83{left:1169.794350px;}
.x84{left:1172.661000px;}
.x85{left:1175.546700px;}
.x86{left:1178.451300px;}
.x87{left:1181.374200px;}
.x88{left:1184.315550px;}
.x89{left:1187.274600px;}
.x8a{left:1193.259000px;}
.xfc{left:1195.236600px;}
.x8b{left:1196.271900px;}
.x8c{left:1199.301300px;}
.x8d{left:1202.346900px;}
.x8e{left:1205.408400px;}
.xfb{left:1206.720600px;}
.x8f{left:1208.485350px;}
.x90{left:1211.577450px;}
.xf3{left:1216.022550px;}
.x91{left:1217.816100px;}
.x5a{left:1221.037050px;}
.x92{left:1224.104550px;}
.x67{left:1227.421500px;}
.x6b{left:1231.166850px;}
.x93{left:1233.636300px;}
.x94{left:1236.838500px;}
.x95{left:1240.052700px;}
.x96{left:1246.525050px;}
.x97{left:1249.774200px;}
.x98{left:1253.033700px;}
.x99{left:1256.303250px;}
.x9a{left:1259.582400px;}
.x9b{left:1262.870850px;}
.x9c{left:1269.480450px;}
.x63{left:1272.593700px;}
.xdf{left:1275.283500px;}
.xf6{left:1276.820850px;}
.xe7{left:1277.949000px;}
.x9d{left:1281.758850px;}
.xea{left:1283.663400px;}
.x9e{left:1285.882650px;}
.x9f{left:1290.015900px;}
.x53{left:1295.447550px;}
.x1e{left:1299.136650px;}
.xfd{left:1302.144600px;}
.x55{left:1303.903350px;}
.xa0{left:1305.944850px;}
.x54{left:1309.039350px;}
.xa1{left:1314.317850px;}
.x1d{left:1317.456150px;}
.xa2{left:1321.523550px;}
.x64{left:1322.993700px;}
.x65{left:1324.181700px;}
.xa3{left:1329.088950px;}
.x5c{left:1331.360100px;}
.xa4{left:1332.483000px;}
.x5d{left:1334.667450px;}
.xa5{left:1339.984500px;}
.xa6{left:1348.403400px;}
.x40{left:1353.827100px;}
.xa7{left:1356.698250px;}
.xa8{left:1360.091700px;}
.x41{left:1365.335100px;}
.xa9{left:1367.594550px;}
.xeb{left:1371.049350px;}
.xaa{left:1372.685550px;}
.xab{left:1377.499800px;}
.xac{left:1385.201850px;}
.xad{left:1392.602100px;}
.xae{left:1397.770350px;}
.xaf{left:1405.377450px;}
.xf8{left:1408.712850px;}
.xb0{left:1413.472350px;}
.xb1{left:1416.770100px;}
.xfe{left:1419.936600px;}
.xb2{left:1423.329300px;}
.xb3{left:1426.597350px;}
.x3c{left:1427.852400px;}
.x1f{left:1428.953400px;}
.xec{left:1431.765450px;}
.x34{left:1433.736300px;}
.x20{left:1435.529400px;}
.x2a{left:1437.486150px;}
.xb4{left:1439.565900px;}
.x29{left:1440.942150px;}
.x109{left:1442.480400px;}
.x28{left:1444.290150px;}
.xb5{left:1445.973150px;}
.xb6{left:1449.161100px;}
.xb7{left:1452.336450px;}
.xb8{left:1455.498750px;}
.xb9{left:1458.647700px;}
.xba{left:1461.783000px;}
.x50{left:1463.259000px;}
.xbb{left:1464.904200px;}
.xbc{left:1468.011000px;}
.x4f{left:1469.751000px;}
.xbd{left:1474.166550px;}
.x68{left:1476.865500px;}
.xbe{left:1480.268400px;}
.xbf{left:1483.295100px;}
.xc0{left:1486.305300px;}
.x4e{left:1490.178750px;}
.xc1{left:1492.275000px;}
.xc2{left:1498.161150px;}
.xc3{left:1501.081050px;}
.xc4{left:1503.982350px;}
.xf9{left:1505.420850px;}
.xc5{left:1506.864900px;}
.xc6{left:1509.728250px;}
.xc7{left:1512.572100px;}
.xc8{left:1515.396300px;}
.xc9{left:1518.200400px;}
.xee{left:1519.934700px;}
.xca{left:1523.732100px;}
.xcb{left:1526.470950px;}
.xcc{left:1529.188650px;}
.x59{left:1532.706000px;}
.xcd{left:1534.558950px;}
.xce{left:1537.211100px;}
.xcf{left:1539.840600px;}
.xd0{left:1542.447450px;}
.x58{left:1544.826000px;}
.xd1{left:1550.109600px;}
.xd2{left:1552.619400px;}
.xd3{left:1555.105050px;}
.xd4{left:1557.566550px;}
.xd5{left:1560.003150px;}
.xd6{left:1562.453850px;}
.xd7{left:1568.896500px;}
.xd8{left:1572.382350px;}
.xe{left:1574.925450px;}
.xf2{left:1576.658550px;}
.xd9{left:1580.677350px;}
.xda{left:1585.434150px;}
.xdb{left:1588.702650px;}
.xdc{left:1593.378450px;}
.x22{left:1595.981550px;}
.x21{left:1604.743050px;}
.x3d{left:1607.244150px;}
.xed{left:1609.847700px;}
.xe6{left:1612.953000px;}
.x100{left:1622.868600px;}
.xff{left:1633.608600px;}
.xe3{left:1638.549000px;}
@media print{
.v8{vertical-align:-1.035733pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.294400pt;}
.v6{vertical-align:13.205867pt;}
.v2{vertical-align:24.068800pt;}
.v7{vertical-align:26.666667pt;}
.v1{vertical-align:28.800000pt;}
.v4{vertical-align:44.710400pt;}
.v3{vertical-align:53.328533pt;}
.ls2{letter-spacing:-10.027002pt;}
.ls0{letter-spacing:-3.855618pt;}
.ls2a{letter-spacing:-3.680000pt;}
.ls3d{letter-spacing:-3.066667pt;}
.ls50{letter-spacing:-2.304000pt;}
.ls31{letter-spacing:-2.261333pt;}
.ls56{letter-spacing:-1.962667pt;}
.ls45{letter-spacing:-1.872000pt;}
.ls8{letter-spacing:-1.840000pt;}
.ls16{letter-spacing:-1.664000pt;}
.ls29{letter-spacing:-1.472000pt;}
.ls3c{letter-spacing:-1.349333pt;}
.ls57{letter-spacing:-1.237333pt;}
.ls2f{letter-spacing:-1.226667pt;}
.ls60{letter-spacing:-1.152000pt;}
.ls62{letter-spacing:-1.008000pt;}
.ls4b{letter-spacing:-0.981333pt;}
.ls43{letter-spacing:-0.864000pt;}
.ls5b{letter-spacing:-0.858667pt;}
.ls55{letter-spacing:-0.832000pt;}
.ls42{letter-spacing:-0.768000pt;}
.ls63{letter-spacing:-0.736000pt;}
.ls2e{letter-spacing:-0.672000pt;}
.ls17{letter-spacing:-0.624000pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls51{letter-spacing:-0.554667pt;}
.ls5f{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls59{letter-spacing:-0.469333pt;}
.ls54{letter-spacing:-0.448000pt;}
.ls4c{letter-spacing:-0.432000pt;}
.ls39{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls3f{letter-spacing:-0.341333pt;}
.ls19{letter-spacing:-0.298667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.170667pt;}
.ls61{letter-spacing:-0.144000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.096000pt;}
.ls4f{letter-spacing:-0.085333pt;}
.ls44{letter-spacing:-0.048000pt;}
.ls34{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.144000pt;}
.ls30{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.192000pt;}
.ls5d{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.288001pt;}
.ls1b{letter-spacing:0.298667pt;}
.ls22{letter-spacing:0.336000pt;}
.ls49{letter-spacing:0.340800pt;}
.lsa{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.400000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls58{letter-spacing:0.426668pt;}
.lse{letter-spacing:0.469333pt;}
.ls47{letter-spacing:0.475200pt;}
.ls38{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.528000pt;}
.ls48{letter-spacing:0.542400pt;}
.ls2b{letter-spacing:0.554667pt;}
.ls15{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.576006pt;}
.ls33{letter-spacing:0.597333pt;}
.ls4e{letter-spacing:0.640000pt;}
.ls5e{letter-spacing:0.672000pt;}
.ls3e{letter-spacing:0.682667pt;}
.ls37{letter-spacing:0.720000pt;}
.ls1f{letter-spacing:0.725333pt;}
.ls53{letter-spacing:0.768000pt;}
.ls4d{letter-spacing:0.864000pt;}
.ls1a{letter-spacing:0.938667pt;}
.ls4a{letter-spacing:1.142400pt;}
.ls46{letter-spacing:1.180800pt;}
.ls35{letter-spacing:1.200000pt;}
.ls1e{letter-spacing:1.536000pt;}
.ls36{letter-spacing:1.680000pt;}
.ls26{letter-spacing:17.712000pt;}
.ls2c{letter-spacing:18.336000pt;}
.ls5a{letter-spacing:31.680000pt;}
.ls5c{letter-spacing:32.928000pt;}
.ls2d{letter-spacing:38.496000pt;}
.ls7{letter-spacing:40.917333pt;}
.ls52{letter-spacing:99.862400pt;}
.ls40{letter-spacing:145.245333pt;}
.ls41{letter-spacing:152.845867pt;}
.ls3a{letter-spacing:1115.602667pt;}
.ls3b{letter-spacing:1120.161600pt;}
.ws51{word-spacing:-33.242667pt;}
.ws8{word-spacing:-32.874667pt;}
.ws0{word-spacing:-23.754444pt;}
.ws78{word-spacing:-18.112000pt;}
.ws80{word-spacing:-17.664000pt;}
.wsa7{word-spacing:-17.600000pt;}
.ws28{word-spacing:-17.536000pt;}
.ws81{word-spacing:-17.280000pt;}
.ws92{word-spacing:-15.093333pt;}
.ws68{word-spacing:-14.448000pt;}
.ws98{word-spacing:-14.256000pt;}
.ws19{word-spacing:-14.160000pt;}
.ws2a{word-spacing:-14.112000pt;}
.ws15{word-spacing:-13.968000pt;}
.ws24{word-spacing:-13.920000pt;}
.ws18{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.776000pt;}
.ws1c{word-spacing:-13.728000pt;}
.ws1d{word-spacing:-13.680000pt;}
.ws1f{word-spacing:-13.632000pt;}
.ws66{word-spacing:-13.584000pt;}
.ws14{word-spacing:-13.392000pt;}
.ws50{word-spacing:-13.056000pt;}
.ws20{word-spacing:-13.013333pt;}
.ws9f{word-spacing:-12.912000pt;}
.ws96{word-spacing:-12.816000pt;}
.ws3a{word-spacing:-12.800000pt;}
.wsa0{word-spacing:-12.720000pt;}
.ws6c{word-spacing:-12.714667pt;}
.ws37{word-spacing:-12.672000pt;}
.ws39{word-spacing:-12.629333pt;}
.wsa2{word-spacing:-12.624000pt;}
.ws9e{word-spacing:-12.576000pt;}
.ws45{word-spacing:-12.544000pt;}
.ws29{word-spacing:-12.501333pt;}
.ws42{word-spacing:-12.480000pt;}
.ws3b{word-spacing:-12.458667pt;}
.wsa3{word-spacing:-12.432000pt;}
.wsa{word-spacing:-12.416000pt;}
.ws60{word-spacing:-12.336000pt;}
.ws44{word-spacing:-12.330667pt;}
.ws22{word-spacing:-12.202667pt;}
.ws5e{word-spacing:-12.192000pt;}
.ws95{word-spacing:-12.144000pt;}
.ws62{word-spacing:-12.117333pt;}
.ws97{word-spacing:-12.096000pt;}
.ws4a{word-spacing:-12.032000pt;}
.ws79{word-spacing:-11.952000pt;}
.ws43{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.861333pt;}
.ws67{word-spacing:-11.808000pt;}
.ws1e{word-spacing:-11.776000pt;}
.ws58{word-spacing:-11.733333pt;}
.ws5d{word-spacing:-11.712000pt;}
.ws23{word-spacing:-11.605333pt;}
.wsa4{word-spacing:-11.568000pt;}
.ws48{word-spacing:-11.562667pt;}
.ws27{word-spacing:-11.520000pt;}
.ws9{word-spacing:-11.434667pt;}
.wsa1{word-spacing:-11.424000pt;}
.ws47{word-spacing:-11.349333pt;}
.ws7d{word-spacing:-11.306667pt;}
.ws85{word-spacing:-11.221333pt;}
.ws1b{word-spacing:-10.965333pt;}
.ws46{word-spacing:-10.794667pt;}
.ws52{word-spacing:-10.752000pt;}
.ws61{word-spacing:-10.704000pt;}
.ws7b{word-spacing:-10.624000pt;}
.ws7a{word-spacing:-10.272000pt;}
.ws84{word-spacing:-9.941333pt;}
.ws49{word-spacing:-9.813333pt;}
.ws54{word-spacing:-1.680000pt;}
.ws53{word-spacing:-1.200000pt;}
.ws2f{word-spacing:-0.938667pt;}
.ws86{word-spacing:-0.768000pt;}
.ws5b{word-spacing:-0.725333pt;}
.ws55{word-spacing:-0.720000pt;}
.ws5c{word-spacing:-0.682667pt;}
.ws76{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.597333pt;}
.ws11{word-spacing:-0.576006pt;}
.ws88{word-spacing:-0.554667pt;}
.ws33{word-spacing:-0.528000pt;}
.wsf{word-spacing:-0.469333pt;}
.ws8c{word-spacing:-0.426668pt;}
.wse{word-spacing:-0.426667pt;}
.ws3{word-spacing:-0.400000pt;}
.ws10{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.341333pt;}
.ws8f{word-spacing:-0.336000pt;}
.ws30{word-spacing:-0.298667pt;}
.ws12{word-spacing:-0.288001pt;}
.ws2b{word-spacing:-0.288000pt;}
.ws35{word-spacing:-0.256000pt;}
.wsd{word-spacing:-0.192000pt;}
.ws4b{word-spacing:-0.144000pt;}
.ws73{word-spacing:-0.128000pt;}
.ws4{word-spacing:-0.096000pt;}
.ws38{word-spacing:-0.080000pt;}
.ws7e{word-spacing:-0.048000pt;}
.ws8b{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws74{word-spacing:0.042667pt;}
.ws64{word-spacing:0.048000pt;}
.ws3e{word-spacing:0.096000pt;}
.ws34{word-spacing:0.128000pt;}
.ws4d{word-spacing:0.170667pt;}
.ws31{word-spacing:0.192000pt;}
.wsc{word-spacing:0.213333pt;}
.ws3d{word-spacing:0.240000pt;}
.ws32{word-spacing:0.256000pt;}
.ws2e{word-spacing:0.298667pt;}
.ws89{word-spacing:0.341333pt;}
.ws6{word-spacing:0.384000pt;}
.ws75{word-spacing:0.426667pt;}
.ws71{word-spacing:0.432000pt;}
.ws90{word-spacing:0.469333pt;}
.ws5{word-spacing:0.480000pt;}
.ws56{word-spacing:0.512000pt;}
.ws9a{word-spacing:0.528000pt;}
.wsa5{word-spacing:0.554667pt;}
.ws72{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.624000pt;}
.ws70{word-spacing:0.672000pt;}
.wsa8{word-spacing:0.736000pt;}
.ws63{word-spacing:0.768000pt;}
.ws93{word-spacing:0.858667pt;}
.ws6e{word-spacing:0.981333pt;}
.ws4c{word-spacing:1.226667pt;}
.ws8a{word-spacing:1.237333pt;}
.ws59{word-spacing:1.349333pt;}
.ws3f{word-spacing:1.472000pt;}
.ws2c{word-spacing:1.664000pt;}
.ws6f{word-spacing:1.872000pt;}
.ws87{word-spacing:1.962667pt;}
.ws5a{word-spacing:3.066667pt;}
.ws40{word-spacing:3.680000pt;}
.ws1{word-spacing:3.855618pt;}
.ws26{word-spacing:171.575467pt;}
.ws7c{word-spacing:231.944533pt;}
.ws82{word-spacing:243.976533pt;}
.ws6b{word-spacing:248.994133pt;}
.ws21{word-spacing:320.682133pt;}
.ws83{word-spacing:338.730667pt;}
.ws8e{word-spacing:343.662933pt;}
.ws25{word-spacing:346.018667pt;}
.ws6a{word-spacing:374.946133pt;}
.ws69{word-spacing:628.582400pt;}
.ws16{word-spacing:755.875200pt;}
.ws6d{word-spacing:827.889600pt;}
.ws3c{word-spacing:1750.749867pt;}
.ws94{word-spacing:5692.501333pt;}
.wsa6{word-spacing:5692.842667pt;}
.ws9c{word-spacing:5694.122667pt;}
.ws91{word-spacing:5694.933333pt;}
.ws9d{word-spacing:5695.488000pt;}
.ws8d{word-spacing:5696.298667pt;}
.ws7f{word-spacing:5697.408000pt;}
.ws9b{word-spacing:5698.602667pt;}
.ws77{word-spacing:5702.314667pt;}
.ws99{word-spacing:5702.400000pt;}
.ws65{word-spacing:5710.165333pt;}
.ws57{word-spacing:5711.018667pt;}
.ws5f{word-spacing:5712.256000pt;}
.ws4f{word-spacing:5715.072000pt;}
.ws41{word-spacing:5719.722667pt;}
.ws36{word-spacing:5740.970667pt;}
.ws7{word-spacing:5741.824000pt;}
.ws13{word-spacing:5743.061333pt;}
._12{margin-left:-1171.812800pt;}
._11{margin-left:-56.352000pt;}
._28{margin-left:-42.384000pt;}
._27{margin-left:-41.376000pt;}
._13{margin-left:-35.568000pt;}
._b{margin-left:-31.616000pt;}
._16{margin-left:-30.720000pt;}
._4{margin-left:-26.369988pt;}
._8{margin-left:-9.713962pt;}
._26{margin-left:-8.745207pt;}
._f{margin-left:-7.442742pt;}
._17{margin-left:-5.960064pt;}
._0{margin-left:-4.218500pt;}
._9{margin-left:-3.282961pt;}
._2{margin-left:-1.746368pt;}
._1{width:1.542247pt;}
._a{width:2.871399pt;}
._3{width:4.377261pt;}
._7{width:6.445930pt;}
._6{width:8.129033pt;}
._5{width:9.668894pt;}
._19{width:36.560078pt;}
._1f{width:97.303925pt;}
._1b{width:118.735086pt;}
._1e{width:142.457753pt;}
._24{width:156.939886pt;}
._25{width:157.839467pt;}
._23{width:161.172800pt;}
._20{width:193.871086pt;}
._22{width:209.866341pt;}
._21{width:264.399086pt;}
._1c{width:303.810592pt;}
._1a{width:381.348419pt;}
._14{width:459.306667pt;}
._15{width:545.719392pt;}
._c{width:685.872000pt;}
._d{width:751.282674pt;}
._e{width:752.604713pt;}
._1d{width:835.811200pt;}
._18{width:1879.486795pt;}
._10{width:2136.823857pt;}
.fs10{font-size:32.000000pt;}
.fs7{font-size:34.444267pt;}
.fsb{font-size:34.444428pt;}
.fs9{font-size:34.444634pt;}
.fsc{font-size:35.481600pt;}
.fs3{font-size:40.000000pt;}
.fs40{font-size:42.666345pt;}
.fs2d{font-size:42.666362pt;}
.fs47{font-size:42.666373pt;}
.fs17{font-size:42.666385pt;}
.fs41{font-size:42.666433pt;}
.fs32{font-size:42.666443pt;}
.fs36{font-size:42.666453pt;}
.fs4e{font-size:42.666470pt;}
.fs27{font-size:42.666480pt;}
.fs4f{font-size:42.666491pt;}
.fs13{font-size:42.666500pt;}
.fs45{font-size:42.666505pt;}
.fs38{font-size:42.666508pt;}
.fs44{font-size:42.666521pt;}
.fs4d{font-size:42.666532pt;}
.fs18{font-size:42.666536pt;}
.fs28{font-size:42.666537pt;}
.fs1b{font-size:42.666542pt;}
.fs3a{font-size:42.666548pt;}
.fs37{font-size:42.666559pt;}
.fs4c{font-size:42.666576pt;}
.fs4a{font-size:42.666580pt;}
.fs23{font-size:42.666610pt;}
.fs22{font-size:42.666624pt;}
.fs53{font-size:42.666628pt;}
.fs2a{font-size:42.666634pt;}
.fs31{font-size:42.666636pt;}
.fs51{font-size:42.666643pt;}
.fs50{font-size:42.666644pt;}
.fs2e{font-size:42.666645pt;}
.fs49{font-size:42.666652pt;}
.fs35{font-size:42.666654pt;}
.fs12{font-size:42.666665pt;}
.fs5{font-size:42.666667pt;}
.fs4b{font-size:42.666674pt;}
.fs1d{font-size:42.666679pt;}
.fs43{font-size:42.666682pt;}
.fs20{font-size:42.666694pt;}
.fs16{font-size:42.666704pt;}
.fs3b{font-size:42.666705pt;}
.fs1a{font-size:42.666709pt;}
.fs48{font-size:42.666712pt;}
.fs15{font-size:42.666713pt;}
.fs3f{font-size:42.666726pt;}
.fs29{font-size:42.666733pt;}
.fs24{font-size:42.666736pt;}
.fs52{font-size:42.666747pt;}
.fs14{font-size:42.666750pt;}
.fs19{font-size:42.666754pt;}
.fs30{font-size:42.666755pt;}
.fs2f{font-size:42.666768pt;}
.fs1c{font-size:42.666777pt;}
.fs54{font-size:42.666783pt;}
.fs3c{font-size:42.666814pt;}
.fs3d{font-size:42.666818pt;}
.fs39{font-size:42.666825pt;}
.fs55{font-size:42.666828pt;}
.fs21{font-size:42.666843pt;}
.fs2c{font-size:42.666867pt;}
.fs2b{font-size:42.666875pt;}
.fs42{font-size:42.666877pt;}
.fs3e{font-size:42.666893pt;}
.fs34{font-size:42.666909pt;}
.fs25{font-size:42.666919pt;}
.fs33{font-size:42.666922pt;}
.fs46{font-size:42.666925pt;}
.fs26{font-size:42.666984pt;}
.fs1e{font-size:42.667021pt;}
.fs1f{font-size:42.667026pt;}
.fs4{font-size:48.000000pt;}
.fsa{font-size:48.000225pt;}
.fs8{font-size:48.000512pt;}
.fs2{font-size:53.333333pt;}
.fsd{font-size:64.000000pt;}
.fsf{font-size:80.000000pt;}
.fs1{font-size:119.369067pt;}
.fs6{font-size:122.666667pt;}
.fs0{font-size:226.801067pt;}
.fs11{font-size:261.993600pt;}
.fse{font-size:267.116800pt;}
.y0{bottom:0.000000pt;}
.y2c9{bottom:6.485358pt;}
.y35{bottom:16.977280pt;}
.y2f{bottom:18.825067pt;}
.y32{bottom:18.825267pt;}
.y38{bottom:19.874267pt;}
.y30{bottom:20.832267pt;}
.y33{bottom:20.832489pt;}
.y3a{bottom:21.459467pt;}
.y36{bottom:27.676130pt;}
.y2cb{bottom:42.634161pt;}
.y2af{bottom:46.573867pt;}
.ye{bottom:46.577467pt;}
.y2ca{bottom:55.967545pt;}
.y20f{bottom:90.208800pt;}
.y276{bottom:90.212800pt;}
.y21f{bottom:90.227467pt;}
.yd{bottom:90.234133pt;}
.y7{bottom:99.570133pt;}
.y1d4{bottom:106.876800pt;}
.yf7{bottom:106.878133pt;}
.y275{bottom:106.880800pt;}
.yda{bottom:106.899467pt;}
.yc{bottom:106.902133pt;}
.yba{bottom:106.903467pt;}
.y1de{bottom:109.982933pt;}
.y6{bottom:111.570133pt;}
.y262{bottom:114.799200pt;}
.y3dc{bottom:123.508800pt;}
.y241{bottom:123.515467pt;}
.y1d3{bottom:123.544800pt;}
.yf6{bottom:123.546133pt;}
.y274{bottom:123.548800pt;}
.y326{bottom:123.556000pt;}
.y342{bottom:123.562133pt;}
.y21e{bottom:123.563467pt;}
.yd9{bottom:123.567467pt;}
.yb{bottom:123.568800pt;}
.y36f{bottom:123.569333pt;}
.y5{bottom:123.570133pt;}
.y207{bottom:125.331467pt;}
.y309{bottom:126.134533pt;}
.y261{bottom:128.132533pt;}
.y2c7{bottom:128.499467pt;}
.y1c4{bottom:134.242267pt;}
.y1c1{bottom:138.168667pt;}
.y308{bottom:139.467867pt;}
.y3db{bottom:140.176800pt;}
.y240{bottom:140.183467pt;}
.y1d2{bottom:140.212800pt;}
.yf5{bottom:140.214133pt;}
.y273{bottom:140.216800pt;}
.y1ab{bottom:140.220800pt;}
.y325{bottom:140.224000pt;}
.y356{bottom:140.228000pt;}
.y341{bottom:140.230133pt;}
.y2b8{bottom:140.231467pt;}
.y9{bottom:140.235467pt;}
.y37d{bottom:140.236000pt;}
.ya{bottom:140.236800pt;}
.y36e{bottom:140.237333pt;}
.y25f{bottom:140.240133pt;}
.y6f{bottom:144.206800pt;}
.y6e{bottom:144.208000pt;}
.y1c0{bottom:151.502000pt;}
.y6c{bottom:153.658667pt;}
.y3da{bottom:156.844800pt;}
.y23f{bottom:156.851467pt;}
.y386{bottom:156.859467pt;}
.y20e{bottom:156.880800pt;}
.yf4{bottom:156.882133pt;}
.y272{bottom:156.884800pt;}
.y1aa{bottom:156.888800pt;}
.y324{bottom:156.892000pt;}
.y355{bottom:156.896000pt;}
.y340{bottom:156.898133pt;}
.y21d{bottom:156.899467pt;}
.y8{bottom:156.902133pt;}
.y4{bottom:156.903467pt;}
.y37c{bottom:156.904000pt;}
.y36d{bottom:156.905333pt;}
.y70{bottom:157.540133pt;}
.y6d{bottom:157.541333pt;}
.y67{bottom:159.146667pt;}
.y260{bottom:159.972533pt;}
.y69{bottom:160.325333pt;}
.y18c{bottom:162.948267pt;}
.y1bf{bottom:164.835333pt;}
.y307{bottom:166.134533pt;}
.y6b{bottom:166.992000pt;}
.y190{bottom:170.280000pt;}
.y206{bottom:170.874267pt;}
.y208{bottom:170.874533pt;}
.y3d9{bottom:173.512800pt;}
.y23e{bottom:173.519467pt;}
.y385{bottom:173.527467pt;}
.y66{bottom:173.546667pt;}
.y1d1{bottom:173.548800pt;}
.yf3{bottom:173.550133pt;}
.y2e4{bottom:173.551467pt;}
.y271{bottom:173.552800pt;}
.y1a9{bottom:173.556800pt;}
.y323{bottom:173.560000pt;}
.y354{bottom:173.564000pt;}
.y33f{bottom:173.566133pt;}
.y2b7{bottom:173.567467pt;}
.y3{bottom:173.570133pt;}
.y37b{bottom:173.572000pt;}
.y68{bottom:173.658667pt;}
.yff{bottom:175.686400pt;}
.y2c6{bottom:177.750933pt;}
.y6a{bottom:180.325333pt;}
.y384{bottom:190.195467pt;}
.y3eb{bottom:190.212800pt;}
.y1d0{bottom:190.216800pt;}
.yf2{bottom:190.218133pt;}
.y270{bottom:190.220800pt;}
.y1a8{bottom:190.224800pt;}
.y322{bottom:190.228000pt;}
.y3bd{bottom:190.228800pt;}
.y353{bottom:190.232000pt;}
.y33e{bottom:190.234133pt;}
.ya7{bottom:190.235467pt;}
.yd8{bottom:190.236800pt;}
.y36c{bottom:190.241333pt;}
.y2c5{bottom:191.084267pt;}
.y306{bottom:192.801200pt;}
.y34{bottom:200.060000pt;}
.y297{bottom:201.907200pt;}
.y1be{bottom:203.448667pt;}
.y305{bottom:206.134533pt;}
.y293{bottom:206.840800pt;}
.y3d8{bottom:206.848800pt;}
.y23d{bottom:206.855467pt;}
.ya5{bottom:206.860800pt;}
.y383{bottom:206.863467pt;}
.y3ea{bottom:206.880800pt;}
.y20d{bottom:206.884800pt;}
.yf1{bottom:206.886133pt;}
.y2e3{bottom:206.887467pt;}
.y26f{bottom:206.888800pt;}
.y1a7{bottom:206.892800pt;}
.y321{bottom:206.896000pt;}
.y3bc{bottom:206.896800pt;}
.y21c{bottom:206.898133pt;}
.y352{bottom:206.900000pt;}
.y33d{bottom:206.902133pt;}
.ya6{bottom:206.903467pt;}
.y37a{bottom:206.908000pt;}
.y296{bottom:215.240533pt;}
.yb7{bottom:215.608667pt;}
.y213{bottom:218.408533pt;}
.y292{bottom:223.508800pt;}
.y3d7{bottom:223.516800pt;}
.y23c{bottom:223.523467pt;}
.ya4{bottom:223.528800pt;}
.y382{bottom:223.531467pt;}
.y1cf{bottom:223.552800pt;}
.yf0{bottom:223.554133pt;}
.y2e2{bottom:223.555467pt;}
.y26e{bottom:223.556800pt;}
.y1a6{bottom:223.560800pt;}
.y320{bottom:223.564000pt;}
.y3bb{bottom:223.564800pt;}
.y21b{bottom:223.566133pt;}
.y351{bottom:223.568000pt;}
.y33c{bottom:223.570133pt;}
.y36b{bottom:225.785333pt;}
.y18b{bottom:226.680533pt;}
.yb6{bottom:228.942000pt;}
.y304{bottom:232.801200pt;}
.y63{bottom:234.251867pt;}
.y3a2{bottom:240.151467pt;}
.y291{bottom:240.176800pt;}
.y3d6{bottom:240.184800pt;}
.y23b{bottom:240.191467pt;}
.ya3{bottom:240.196800pt;}
.y381{bottom:240.199467pt;}
.yd7{bottom:240.211467pt;}
.y3e9{bottom:240.216800pt;}
.y367{bottom:240.218800pt;}
.y1ce{bottom:240.220800pt;}
.yef{bottom:240.222133pt;}
.y2e1{bottom:240.223467pt;}
.y26d{bottom:240.224800pt;}
.y1a5{bottom:240.228800pt;}
.y2b6{bottom:240.231467pt;}
.y31f{bottom:240.232000pt;}
.y3ba{bottom:240.232800pt;}
.y21a{bottom:240.234133pt;}
.y350{bottom:240.236000pt;}
.y33b{bottom:240.236800pt;}
.y65{bottom:240.918533pt;}
.y60{bottom:240.922667pt;}
.y2c4{bottom:242.444267pt;}
.y379{bottom:242.452000pt;}
.y303{bottom:246.134533pt;}
.y62{bottom:247.585200pt;}
.y295{bottom:252.019200pt;}
.y64{bottom:254.251867pt;}
.y5f{bottom:254.256000pt;}
.yfd{bottom:255.579733pt;}
.y2c3{bottom:255.777600pt;}
.y3a1{bottom:256.819467pt;}
.y290{bottom:256.844800pt;}
.y3d5{bottom:256.852800pt;}
.y23a{bottom:256.859467pt;}
.ya2{bottom:256.864800pt;}
.y380{bottom:256.867467pt;}
.yd6{bottom:256.879467pt;}
.y3e8{bottom:256.884800pt;}
.y366{bottom:256.886800pt;}
.y1cd{bottom:256.888800pt;}
.yee{bottom:256.890133pt;}
.y2e0{bottom:256.891467pt;}
.y26c{bottom:256.892800pt;}
.y1a4{bottom:256.896800pt;}
.y31e{bottom:256.900000pt;}
.y3b9{bottom:256.900800pt;}
.y219{bottom:256.902133pt;}
.y2b5{bottom:256.903467pt;}
.y34f{bottom:256.904000pt;}
.y61{bottom:260.918533pt;}
.y203{bottom:261.960000pt;}
.y205{bottom:261.960133pt;}
.y1bd{bottom:267.587333pt;}
.y37{bottom:271.804000pt;}
.y3a0{bottom:273.487467pt;}
.y239{bottom:273.527467pt;}
.y37f{bottom:273.535467pt;}
.yd5{bottom:273.547467pt;}
.y37e{bottom:273.554800pt;}
.y20c{bottom:273.556800pt;}
.yed{bottom:273.558133pt;}
.y2df{bottom:273.559467pt;}
.y34a{bottom:273.560800pt;}
.y1a3{bottom:273.564800pt;}
.y31d{bottom:273.568000pt;}
.y3b8{bottom:273.568800pt;}
.y218{bottom:273.570133pt;}
.y34e{bottom:273.572000pt;}
.y33a{bottom:273.574667pt;}
.ybc{bottom:278.888000pt;}
.y1bc{bottom:280.920667pt;}
.y5e{bottom:282.608000pt;}
.y10a{bottom:286.324400pt;}
.y4e{bottom:288.093867pt;}
.y5b{bottom:288.096000pt;}
.y50{bottom:288.096667pt;}
.y1db{bottom:288.888667pt;}
.y10b{bottom:289.287200pt;}
.y39f{bottom:290.155467pt;}
.y28f{bottom:290.180800pt;}
.y3d4{bottom:290.188800pt;}
.y238{bottom:290.195467pt;}
.ya1{bottom:290.200800pt;}
.y32a{bottom:290.203467pt;}
.y1f3{bottom:290.204800pt;}
.yd4{bottom:290.215467pt;}
.y3e7{bottom:290.220800pt;}
.y365{bottom:290.222800pt;}
.y1cc{bottom:290.224800pt;}
.yec{bottom:290.226133pt;}
.y2de{bottom:290.227467pt;}
.y26b{bottom:290.228800pt;}
.y1a2{bottom:290.232800pt;}
.y3b7{bottom:290.236800pt;}
.y18a{bottom:292.330533pt;}
.y302{bottom:294.249600pt;}
.y1bb{bottom:294.254000pt;}
.y10c{bottom:295.337200pt;}
.y5d{bottom:295.941333pt;}
.y189{bottom:297.835333pt;}
.y10d{bottom:298.289200pt;}
.y18f{bottom:299.698667pt;}
.y10e{bottom:301.236667pt;}
.y188{bottom:301.485067pt;}
.y4d{bottom:302.493867pt;}
.y5a{bottom:302.496000pt;}
.y4f{bottom:302.496667pt;}
.y187{bottom:306.636267pt;}
.y39e{bottom:306.823467pt;}
.y28e{bottom:306.848800pt;}
.y3d3{bottom:306.856800pt;}
.y2bb{bottom:306.863467pt;}
.ya0{bottom:306.868800pt;}
.y329{bottom:306.871467pt;}
.y1f2{bottom:306.872800pt;}
.yd3{bottom:306.883467pt;}
.y3e6{bottom:306.888800pt;}
.y364{bottom:306.890800pt;}
.y1cb{bottom:306.892800pt;}
.yeb{bottom:306.894133pt;}
.y26a{bottom:306.896800pt;}
.y1a1{bottom:306.900800pt;}
.y217{bottom:306.903467pt;}
.y31c{bottom:306.904000pt;}
.y34d{bottom:306.908000pt;}
.y10f{bottom:306.984000pt;}
.y2c2{bottom:307.137600pt;}
.y204{bottom:307.502933pt;}
.y301{bottom:307.585600pt;}
.y339{bottom:309.118667pt;}
.y5c{bottom:309.274667pt;}
.y186{bottom:311.869733pt;}
.y110{bottom:312.158800pt;}
.y185{bottom:315.080267pt;}
.y248{bottom:317.096267pt;}
.y111{bottom:317.683733pt;}
.y184{bottom:318.408533pt;}
.y2c1{bottom:320.470933pt;}
.y300{bottom:320.921600pt;}
.y3c{bottom:321.167600pt;}
.y112{bottom:322.331600pt;}
.y39d{bottom:323.491467pt;}
.y28d{bottom:323.516800pt;}
.y3d2{bottom:323.524800pt;}
.y237{bottom:323.531467pt;}
.y9f{bottom:323.536800pt;}
.y328{bottom:323.539467pt;}
.y1f1{bottom:323.540800pt;}
.y36a{bottom:323.550667pt;}
.yd2{bottom:323.551467pt;}
.y3fb{bottom:323.556800pt;}
.y363{bottom:323.558800pt;}
.y1ca{bottom:323.560800pt;}
.y378{bottom:323.561467pt;}
.yea{bottom:323.562133pt;}
.y2dd{bottom:323.563467pt;}
.y269{bottom:323.564800pt;}
.y1a0{bottom:323.568800pt;}
.y3b6{bottom:323.570133pt;}
.y31b{bottom:323.572000pt;}
.y54{bottom:324.297467pt;}
.y183{bottom:324.408133pt;}
.y182{bottom:326.499867pt;}
.y113{bottom:327.072667pt;}
.y181{bottom:328.602400pt;}
.y114{bottom:329.171200pt;}
.y247{bottom:330.429600pt;}
.y180{bottom:330.682000pt;}
.y59{bottom:330.964133pt;}
.y115{bottom:331.246800pt;}
.y2a8{bottom:331.773733pt;}
.y17f{bottom:332.738667pt;}
.y1ba{bottom:332.867333pt;}
.y116{bottom:333.299467pt;}
.y2ff{bottom:334.239333pt;}
.y17e{bottom:334.771867pt;}
.y117{bottom:335.328667pt;}
.y3b{bottom:335.567600pt;}
.y1dd{bottom:336.132667pt;}
.y56{bottom:336.452133pt;}
.y118{bottom:337.334400pt;}
.y53{bottom:337.630800pt;}
.y17d{bottom:338.780800pt;}
.y119{bottom:339.316400pt;}
.y39c{bottom:340.159467pt;}
.y28c{bottom:340.184800pt;}
.y3d1{bottom:340.192800pt;}
.y236{bottom:340.199467pt;}
.y9e{bottom:340.204800pt;}
.y327{bottom:340.207467pt;}
.y2b4{bottom:340.208800pt;}
.yfe{bottom:340.209067pt;}
.y369{bottom:340.218667pt;}
.yd1{bottom:340.219467pt;}
.y3e5{bottom:340.224800pt;}
.y362{bottom:340.226800pt;}
.y20b{bottom:340.228800pt;}
.ye9{bottom:340.230133pt;}
.y2dc{bottom:340.231467pt;}
.y268{bottom:340.232800pt;}
.y19f{bottom:340.236800pt;}
.y17c{bottom:340.739600pt;}
.y11a{bottom:341.274400pt;}
.y34c{bottom:342.452000pt;}
.y17b{bottom:342.674267pt;}
.y246{bottom:343.762933pt;}
.y58{bottom:344.297467pt;}
.y17a{bottom:344.584267pt;}
.y11b{bottom:345.096933pt;}
.y179{bottom:346.469600pt;}
.y11c{bottom:346.978000pt;}
.y2fe{bottom:347.572667pt;}
.y178{bottom:348.330133pt;}
.y11d{bottom:348.834133pt;}
.y177{bottom:350.165333pt;}
.y11e{bottom:350.665067pt;}
.y55{bottom:350.852133pt;}
.y52{bottom:350.964133pt;}
.y176{bottom:351.975200pt;}
.y11f{bottom:352.470667pt;}
.y175{bottom:353.759600pt;}
.y120{bottom:354.250667pt;}
.y121{bottom:356.004933pt;}
.y39b{bottom:356.827467pt;}
.y28b{bottom:356.852800pt;}
.y3d0{bottom:356.860800pt;}
.y235{bottom:356.867467pt;}
.y216{bottom:356.875467pt;}
.y1f0{bottom:356.876800pt;}
.yd0{bottom:356.887467pt;}
.y3e4{bottom:356.892800pt;}
.y361{bottom:356.894800pt;}
.y1c9{bottom:356.896800pt;}
.y377{bottom:356.897467pt;}
.ye8{bottom:356.898133pt;}
.y2db{bottom:356.899467pt;}
.y267{bottom:356.900800pt;}
.y31a{bottom:356.908000pt;}
.y245{bottom:357.096267pt;}
.y174{bottom:357.262267pt;}
.y57{bottom:357.630800pt;}
.y122{bottom:357.733200pt;}
.y173{bottom:358.965067pt;}
.y2a7{bottom:359.325733pt;}
.y172{bottom:360.641467pt;}
.y2fd{bottom:360.906000pt;}
.y123{bottom:361.089200pt;}
.y171{bottom:362.291200pt;}
.y124{bottom:362.734267pt;}
.y170{bottom:363.914000pt;}
.y51{bottom:364.297467pt;}
.y125{bottom:364.352533pt;}
.y16f{bottom:365.509867pt;}
.y126{bottom:365.943733pt;}
.y16e{bottom:367.078400pt;}
.y127{bottom:367.507733pt;}
.y2d{bottom:368.513067pt;}
.y16d{bottom:368.619600pt;}
.y128{bottom:369.044267pt;}
.y129{bottom:370.553333pt;}
.y16c{bottom:371.631200pt;}
.y2c0{bottom:371.830933pt;}
.y12a{bottom:372.034533pt;}
.y16b{bottom:373.084933pt;}
.y28a{bottom:373.520800pt;}
.y234{bottom:373.535467pt;}
.y9d{bottom:373.540800pt;}
.y215{bottom:373.543467pt;}
.y3b5{bottom:373.543600pt;}
.y1ef{bottom:373.544800pt;}
.y368{bottom:373.554667pt;}
.ycf{bottom:373.555467pt;}
.y3e3{bottom:373.560800pt;}
.y360{bottom:373.562800pt;}
.y19e{bottom:373.564800pt;}
.ye7{bottom:373.566133pt;}
.y2da{bottom:373.567467pt;}
.y266{bottom:373.568800pt;}
.y3f4{bottom:373.570133pt;}
.y16a{bottom:374.510533pt;}
.y12b{bottom:374.889200pt;}
.y169{bottom:375.907733pt;}
.y12c{bottom:376.281600pt;}
.y168{bottom:377.276267pt;}
.y12d{bottom:377.645467pt;}
.y167{bottom:378.616267pt;}
.y12e{bottom:378.980800pt;}
.y166{bottom:379.927333pt;}
.y12f{bottom:380.287067pt;}
.y130{bottom:381.564400pt;}
.y165{bottom:382.478133pt;}
.y131{bottom:382.812667pt;}
.yb9{bottom:383.327333pt;}
.y164{bottom:383.697200pt;}
.y163{bottom:384.886800pt;}
.y2bf{bottom:385.164267pt;}
.y132{bottom:385.198533pt;}
.y162{bottom:386.046667pt;}
.y133{bottom:386.353600pt;}
.y161{bottom:387.176667pt;}
.y134{bottom:387.478933pt;}
.y160{bottom:388.276800pt;}
.y135{bottom:388.574267pt;}
.y15f{bottom:389.346800pt;}
.y136{bottom:389.639600pt;}
.y39a{bottom:390.163467pt;}
.y202{bottom:390.176800pt;}
.y289{bottom:390.188800pt;}
.y3cf{bottom:390.196800pt;}
.y233{bottom:390.203467pt;}
.y9c{bottom:390.208800pt;}
.y214{bottom:390.211467pt;}
.y3b4{bottom:390.211600pt;}
.y1ee{bottom:390.212800pt;}
.y318{bottom:390.222667pt;}
.yce{bottom:390.223467pt;}
.y3e2{bottom:390.228800pt;}
.y35f{bottom:390.230800pt;}
.y1c8{bottom:390.232800pt;}
.y376{bottom:390.233467pt;}
.ye6{bottom:390.234133pt;}
.y2d9{bottom:390.235467pt;}
.y19d{bottom:390.236800pt;}
.y15e{bottom:390.386533pt;}
.y137{bottom:390.674800pt;}
.y138{bottom:391.679867pt;}
.y2c{bottom:392.086400pt;}
.y15d{bottom:392.388533pt;}
.y319{bottom:392.452000pt;}
.y139{bottom:392.654400pt;}
.y15c{bottom:393.332133pt;}
.y1d9{bottom:393.995867pt;}
.y15b{bottom:394.245067pt;}
.y13a{bottom:394.483867pt;}
.y15a{bottom:395.127200pt;}
.y13b{bottom:395.361333pt;}
.y159{bottom:395.978533pt;}
.y13c{bottom:396.208133pt;}
.yb8{bottom:396.660667pt;}
.y158{bottom:396.798800pt;}
.y1b9{bottom:397.006000pt;}
.y13d{bottom:397.024000pt;}
.y244{bottom:397.661600pt;}
.y13e{bottom:397.808933pt;}
.y157{bottom:398.364400pt;}
.y13f{bottom:398.562800pt;}
.y156{bottom:399.086000pt;}
.y140{bottom:399.951467pt;}
.y155{bottom:400.731733pt;}
.y141{bottom:400.757867pt;}
.y154{bottom:402.090800pt;}
.y142{bottom:402.224000pt;}
.y143{bottom:402.876800pt;}
.y153{bottom:402.899600pt;}
.y144{bottom:403.480533pt;}
.y152{bottom:403.969200pt;}
.y145{bottom:404.540800pt;}
.y151{bottom:404.882800pt;}
.y150{bottom:405.344933pt;}
.y146{bottom:405.346933pt;}
.y14f{bottom:405.790533pt;}
.y147{bottom:406.032000pt;}
.y14e{bottom:406.343733pt;}
.y148{bottom:406.472267pt;}
.y14d{bottom:406.480800pt;}
.y149{bottom:406.750933pt;}
.y14c{bottom:406.822533pt;}
.y399{bottom:406.831467pt;}
.y201{bottom:406.844800pt;}
.y288{bottom:406.856800pt;}
.y14a{bottom:406.864533pt;}
.y3ce{bottom:406.864800pt;}
.y2ba{bottom:406.871467pt;}
.y9b{bottom:406.876800pt;}
.y211{bottom:406.879467pt;}
.y3b3{bottom:406.879600pt;}
.y1ed{bottom:406.880800pt;}
.y338{bottom:406.884000pt;}
.y317{bottom:406.890667pt;}
.ycd{bottom:406.891467pt;}
.y3e1{bottom:406.896800pt;}
.y35e{bottom:406.898800pt;}
.y20a{bottom:406.900800pt;}
.y375{bottom:406.901467pt;}
.ye5{bottom:406.902133pt;}
.y2d8{bottom:406.903467pt;}
.y349{bottom:406.904800pt;}
.y14b{bottom:406.939600pt;}
.y23{bottom:406.988800pt;}
.y47{bottom:409.845867pt;}
.y1b8{bottom:410.339333pt;}
.y243{bottom:410.994933pt;}
.y4a{bottom:411.557867pt;}
.y1c3{bottom:414.286133pt;}
.y2b{bottom:415.659733pt;}
.y4c{bottom:417.045867pt;}
.y1d5{bottom:417.567200pt;}
.y1d7{bottom:417.569200pt;}
.y44{bottom:421.010000pt;}
.y398{bottom:423.499467pt;}
.y200{bottom:423.512800pt;}
.y3cd{bottom:423.532800pt;}
.y232{bottom:423.539467pt;}
.y9a{bottom:423.544800pt;}
.y210{bottom:423.547467pt;}
.y3b2{bottom:423.547600pt;}
.y1ec{bottom:423.548800pt;}
.y337{bottom:423.552000pt;}
.y316{bottom:423.558667pt;}
.ycc{bottom:423.559467pt;}
.y3fa{bottom:423.564800pt;}
.y35d{bottom:423.566800pt;}
.y1c7{bottom:423.568800pt;}
.y374{bottom:423.569467pt;}
.ye4{bottom:423.570133pt;}
.y348{bottom:423.572800pt;}
.y22{bottom:423.650133pt;}
.y1b7{bottom:423.672667pt;}
.y46{bottom:424.245867pt;}
.y49{bottom:424.891200pt;}
.yfc{bottom:428.710400pt;}
.y18e{bottom:429.117333pt;}
.y2be{bottom:431.126933pt;}
.y4b{bottom:431.445867pt;}
.y40{bottom:433.163600pt;}
.y108{bottom:433.656267pt;}
.y43{bottom:434.343333pt;}
.yb5{bottom:435.903333pt;}
.y2a6{bottom:436.077867pt;}
.y48{bottom:438.224533pt;}
.y45{bottom:438.645867pt;}
.y2a{bottom:439.233067pt;}
.y397{bottom:440.167467pt;}
.y287{bottom:440.192800pt;}
.y3cc{bottom:440.200800pt;}
.y231{bottom:440.207467pt;}
.y19c{bottom:440.215467pt;}
.y1eb{bottom:440.216800pt;}
.y336{bottom:440.220000pt;}
.y3f3{bottom:440.224800pt;}
.y315{bottom:440.226667pt;}
.ycb{bottom:440.227467pt;}
.y3e0{bottom:440.232800pt;}
.y35c{bottom:440.234800pt;}
.y1c6{bottom:440.236800pt;}
.y373{bottom:440.237467pt;}
.y21{bottom:440.311467pt;}
.yfb{bottom:442.043733pt;}
.y2bd{bottom:444.460267pt;}
.ybb{bottom:446.606667pt;}
.y3f{bottom:447.563600pt;}
.y42{bottom:447.676667pt;}
.y2a5{bottom:449.411200pt;}
.y2fc{bottom:454.804667pt;}
.y396{bottom:456.835467pt;}
.y1ff{bottom:456.848800pt;}
.y2f4{bottom:456.859467pt;}
.y286{bottom:456.860800pt;}
.y230{bottom:456.875467pt;}
.y99{bottom:456.880800pt;}
.y19b{bottom:456.883467pt;}
.y3b1{bottom:456.883600pt;}
.y1ea{bottom:456.884800pt;}
.y335{bottom:456.888000pt;}
.y314{bottom:456.894667pt;}
.yca{bottom:456.895467pt;}
.ye3{bottom:456.899467pt;}
.y3df{bottom:456.900800pt;}
.y35b{bottom:456.902800pt;}
.y265{bottom:456.903467pt;}
.y372{bottom:456.905467pt;}
.y347{bottom:456.908800pt;}
.y20{bottom:456.972800pt;}
.y88{bottom:460.533200pt;}
.y41{bottom:461.010000pt;}
.y1b6{bottom:462.286000pt;}
.y29{bottom:462.806400pt;}
.y25e{bottom:466.413067pt;}
.y2fb{bottom:468.138000pt;}
.y25d{bottom:468.403467pt;}
.y395{bottom:473.503467pt;}
.y1fe{bottom:473.516800pt;}
.y2f3{bottom:473.527467pt;}
.y285{bottom:473.528800pt;}
.y3cb{bottom:473.536800pt;}
.y22f{bottom:473.543467pt;}
.y98{bottom:473.548800pt;}
.y19a{bottom:473.551467pt;}
.y3b0{bottom:473.551600pt;}
.y2b3{bottom:473.552800pt;}
.y334{bottom:473.556000pt;}
.y3f2{bottom:473.560800pt;}
.y313{bottom:473.562667pt;}
.yc9{bottom:473.563467pt;}
.ye2{bottom:473.567467pt;}
.y3de{bottom:473.568800pt;}
.y1c5{bottom:473.570133pt;}
.y35a{bottom:473.570800pt;}
.y1f{bottom:473.634133pt;}
.y87{bottom:473.866533pt;}
.y2a4{bottom:474.851200pt;}
.y28{bottom:486.379733pt;}
.y86{bottom:487.199867pt;}
.y2a3{bottom:488.184533pt;}
.y394{bottom:490.171467pt;}
.y1fd{bottom:490.184800pt;}
.y2f2{bottom:490.195467pt;}
.y284{bottom:490.196800pt;}
.y3ca{bottom:490.204800pt;}
.y22e{bottom:490.211467pt;}
.y97{bottom:490.216800pt;}
.y199{bottom:490.219467pt;}
.y3af{bottom:490.219600pt;}
.y1e9{bottom:490.220800pt;}
.y333{bottom:490.224000pt;}
.y2d7{bottom:490.224800pt;}
.y3f1{bottom:490.228800pt;}
.y312{bottom:490.230667pt;}
.yc8{bottom:490.231467pt;}
.ye1{bottom:490.235467pt;}
.y3dd{bottom:490.236800pt;}
.y359{bottom:490.238800pt;}
.y371{bottom:490.241467pt;}
.y1e{bottom:490.295467pt;}
.ybd{bottom:492.249333pt;}
.y346{bottom:492.452800pt;}
.y2bc{bottom:499.726000pt;}
.y85{bottom:500.533200pt;}
.y2f1{bottom:506.863467pt;}
.y283{bottom:506.864800pt;}
.y2b9{bottom:506.879467pt;}
.y96{bottom:506.884800pt;}
.y198{bottom:506.887467pt;}
.y3ae{bottom:506.887600pt;}
.y1e8{bottom:506.888800pt;}
.y332{bottom:506.892000pt;}
.y2d6{bottom:506.892800pt;}
.y3f0{bottom:506.896800pt;}
.y264{bottom:506.898133pt;}
.y311{bottom:506.898667pt;}
.yc7{bottom:506.899467pt;}
.ye0{bottom:506.903467pt;}
.y1d{bottom:506.956800pt;}
.y27{bottom:507.371733pt;}
.y1b2{bottom:509.563600pt;}
.y3e{bottom:514.595600pt;}
.y2a2{bottom:515.693867pt;}
.y3d{bottom:521.795600pt;}
.y393{bottom:523.507467pt;}
.y1fc{bottom:523.520800pt;}
.y2f0{bottom:523.531467pt;}
.y282{bottom:523.532800pt;}
.y3c9{bottom:523.540800pt;}
.y22d{bottom:523.547467pt;}
.ydf{bottom:523.551467pt;}
.y197{bottom:523.555467pt;}
.y3ad{bottom:523.555600pt;}
.y1e7{bottom:523.556800pt;}
.y331{bottom:523.560000pt;}
.y2d5{bottom:523.560800pt;}
.y3ef{bottom:523.564800pt;}
.y310{bottom:523.566667pt;}
.yc6{bottom:523.567467pt;}
.y263{bottom:523.570133pt;}
.y358{bottom:523.574800pt;}
.y370{bottom:525.785467pt;}
.y2a1{bottom:529.027200pt;}
.y26{bottom:530.945067pt;}
.y392{bottom:540.175467pt;}
.y1fb{bottom:540.188800pt;}
.y2ef{bottom:540.199467pt;}
.y281{bottom:540.200800pt;}
.y3c8{bottom:540.208800pt;}
.y22c{bottom:540.215467pt;}
.yde{bottom:540.219467pt;}
.y95{bottom:540.220800pt;}
.y196{bottom:540.223467pt;}
.y3ac{bottom:540.223600pt;}
.y2b2{bottom:540.224800pt;}
.y330{bottom:540.228000pt;}
.y2d4{bottom:540.228800pt;}
.y30f{bottom:540.234667pt;}
.yc5{bottom:540.235467pt;}
.y345{bottom:540.236800pt;}
.y252{bottom:540.274933pt;}
.y1c{bottom:540.290133pt;}
.y25b{bottom:540.306933pt;}
.y2c8{bottom:552.894667pt;}
.y25{bottom:553.227733pt;}
.y39{bottom:556.004000pt;}
.y391{bottom:556.843467pt;}
.y1fa{bottom:556.856800pt;}
.y2ee{bottom:556.867467pt;}
.y280{bottom:556.868800pt;}
.y3c7{bottom:556.876800pt;}
.y22b{bottom:556.883467pt;}
.ydd{bottom:556.887467pt;}
.y94{bottom:556.888800pt;}
.y195{bottom:556.891467pt;}
.y1e6{bottom:556.892800pt;}
.y32f{bottom:556.896000pt;}
.y2d3{bottom:556.896800pt;}
.y3ee{bottom:556.900800pt;}
.y30e{bottom:556.902667pt;}
.yc4{bottom:556.903467pt;}
.y251{bottom:556.936267pt;}
.y1b{bottom:556.951467pt;}
.y25a{bottom:556.968267pt;}
.y2a0{bottom:558.776533pt;}
.y357{bottom:559.118800pt;}
.y2fa{bottom:562.036667pt;}
.y390{bottom:573.511467pt;}
.y2ed{bottom:573.535467pt;}
.y27f{bottom:573.536800pt;}
.y22a{bottom:573.551467pt;}
.ydc{bottom:573.555467pt;}
.y93{bottom:573.556800pt;}
.y194{bottom:573.559467pt;}
.y3ab{bottom:573.559600pt;}
.y1e5{bottom:573.560800pt;}
.y32e{bottom:573.564000pt;}
.y2d2{bottom:573.564800pt;}
.y3ed{bottom:573.568800pt;}
.y30d{bottom:573.570667pt;}
.y250{bottom:573.597600pt;}
.y1a{bottom:573.612800pt;}
.y2f9{bottom:575.370000pt;}
.y24{bottom:576.445333pt;}
.y71{bottom:576.620533pt;}
.y29f{bottom:584.216533pt;}
.y1dc{bottom:589.734133pt;}
.y38f{bottom:590.179467pt;}
.y1f9{bottom:590.192800pt;}
.y2ec{bottom:590.203467pt;}
.y27e{bottom:590.204800pt;}
.y3c6{bottom:590.212800pt;}
.y229{bottom:590.219467pt;}
.ydb{bottom:590.223467pt;}
.y92{bottom:590.224800pt;}
.y193{bottom:590.227467pt;}
.y3aa{bottom:590.227600pt;}
.y1e4{bottom:590.228800pt;}
.y32d{bottom:590.232000pt;}
.y2d1{bottom:590.232800pt;}
.yc3{bottom:590.236800pt;}
.y30c{bottom:590.238667pt;}
.y24f{bottom:590.258933pt;}
.y19{bottom:590.274133pt;}
.y259{bottom:590.301600pt;}
.y29e{bottom:597.549867pt;}
.y38e{bottom:606.847467pt;}
.y1f8{bottom:606.860800pt;}
.y3c5{bottom:606.880800pt;}
.y228{bottom:606.887467pt;}
.yb0{bottom:606.891467pt;}
.y344{bottom:606.892800pt;}
.y192{bottom:606.895467pt;}
.y3a9{bottom:606.895600pt;}
.y1e3{bottom:606.896800pt;}
.y2d0{bottom:606.900800pt;}
.y24e{bottom:606.920267pt;}
.y18{bottom:606.935467pt;}
.y258{bottom:606.962933pt;}
.y105{bottom:607.347200pt;}
.y1b5{bottom:607.379333pt;}
.y29d{bottom:610.883200pt;}
.y104{bottom:620.680533pt;}
.y38d{bottom:623.515467pt;}
.y27d{bottom:623.540800pt;}
.y3c4{bottom:623.548800pt;}
.y227{bottom:623.555467pt;}
.yaf{bottom:623.559467pt;}
.y91{bottom:623.560800pt;}
.y191{bottom:623.563467pt;}
.y2b1{bottom:623.564800pt;}
.y32c{bottom:623.568000pt;}
.y2cf{bottom:623.568800pt;}
.y3ec{bottom:623.570133pt;}
.y30b{bottom:623.574667pt;}
.y24d{bottom:623.581600pt;}
.y17{bottom:623.596800pt;}
.y257{bottom:623.624267pt;}
.y18d{bottom:626.173867pt;}
.y31{bottom:632.261333pt;}
.y103{bottom:634.013867pt;}
.y29c{bottom:637.613867pt;}
.y89{bottom:639.753600pt;}
.y1f7{bottom:640.196800pt;}
.y2eb{bottom:640.207467pt;}
.y27c{bottom:640.208800pt;}
.y3c3{bottom:640.216800pt;}
.y226{bottom:640.223467pt;}
.yae{bottom:640.227467pt;}
.y90{bottom:640.228800pt;}
.yc2{bottom:640.231467pt;}
.y3a8{bottom:640.231600pt;}
.y1e2{bottom:640.232800pt;}
.y2ce{bottom:640.236800pt;}
.y24c{bottom:640.242933pt;}
.y16{bottom:640.258133pt;}
.y256{bottom:640.285600pt;}
.y1b4{bottom:645.619333pt;}
.y102{bottom:647.347200pt;}
.yb4{bottom:648.188400pt;}
.y38c{bottom:656.851467pt;}
.y1f6{bottom:656.864800pt;}
.y2ea{bottom:656.875467pt;}
.y27b{bottom:656.876800pt;}
.y1b1{bottom:656.880800pt;}
.y3c2{bottom:656.884800pt;}
.y225{bottom:656.891467pt;}
.yad{bottom:656.895467pt;}
.y8f{bottom:656.896800pt;}
.y3f9{bottom:656.898133pt;}
.yc1{bottom:656.899467pt;}
.y3a7{bottom:656.899600pt;}
.y1e1{bottom:656.900800pt;}
.y2cd{bottom:656.902133pt;}
.y2ae{bottom:657.005867pt;}
.y32b{bottom:658.452000pt;}
.y30a{bottom:659.118667pt;}
.y101{bottom:660.680533pt;}
.yb3{bottom:661.521733pt;}
.y29b{bottom:664.344533pt;}
.y1d6{bottom:665.163867pt;}
.y2f8{bottom:669.268667pt;}
.y2ad{bottom:670.339200pt;}
.y106{bottom:672.019200pt;}
.y38b{bottom:673.519467pt;}
.y1f5{bottom:673.532800pt;}
.y2e9{bottom:673.543467pt;}
.y27a{bottom:673.544800pt;}
.y1b0{bottom:673.548800pt;}
.y224{bottom:673.559467pt;}
.yac{bottom:673.563467pt;}
.y343{bottom:673.564800pt;}
.y3f8{bottom:673.566133pt;}
.yc0{bottom:673.567467pt;}
.y3a6{bottom:673.567600pt;}
.y1e0{bottom:673.568800pt;}
.y2cc{bottom:673.570133pt;}
.y24b{bottom:673.576267pt;}
.y15{bottom:673.591467pt;}
.y255{bottom:673.618933pt;}
.y2f7{bottom:682.602000pt;}
.y73{bottom:683.391600pt;}
.y2ac{bottom:683.672533pt;}
.y100{bottom:685.352533pt;}
.y38a{bottom:690.187467pt;}
.y1f4{bottom:690.200800pt;}
.y2e8{bottom:690.211467pt;}
.y279{bottom:690.212800pt;}
.y1af{bottom:690.216800pt;}
.y3c1{bottom:690.220800pt;}
.y223{bottom:690.227467pt;}
.yab{bottom:690.231467pt;}
.y8e{bottom:690.232800pt;}
.y3f7{bottom:690.234133pt;}
.ybf{bottom:690.235467pt;}
.y3a5{bottom:690.235600pt;}
.y1df{bottom:690.236800pt;}
.y24a{bottom:690.237600pt;}
.y14{bottom:690.252800pt;}
.y254{bottom:690.280267pt;}
.y1b3{bottom:692.818133pt;}
.y2a9{bottom:695.783867pt;}
.y72{bottom:696.724933pt;}
.y2ab{bottom:697.005867pt;}
.y29a{bottom:697.347200pt;}
.y389{bottom:706.855467pt;}
.y2e7{bottom:706.879467pt;}
.y278{bottom:706.880800pt;}
.y1ae{bottom:706.884800pt;}
.y3c0{bottom:706.888800pt;}
.y222{bottom:706.895467pt;}
.y249{bottom:706.898933pt;}
.yaa{bottom:706.899467pt;}
.y8d{bottom:706.900800pt;}
.ybe{bottom:706.903467pt;}
.y3a4{bottom:706.903600pt;}
.y2e{bottom:706.904000pt;}
.y13{bottom:706.914133pt;}
.y253{bottom:706.941600pt;}
.y299{bottom:710.680533pt;}
.y8b{bottom:710.735200pt;}
.yb2{bottom:711.467733pt;}
.y1d8{bottom:715.041200pt;}
.y8a{bottom:721.403200pt;}
.y388{bottom:723.523467pt;}
.y2e6{bottom:723.547467pt;}
.y1ad{bottom:723.552800pt;}
.y3bf{bottom:723.556800pt;}
.y221{bottom:723.563467pt;}
.y2b0{bottom:723.564800pt;}
.ya9{bottom:723.567467pt;}
.y8c{bottom:723.568800pt;}
.y3f6{bottom:723.570133pt;}
.y12{bottom:723.575467pt;}
.y2f6{bottom:723.924667pt;}
.y1da{bottom:725.614933pt;}
.yfa{bottom:728.145067pt;}
.y2aa{bottom:728.952533pt;}
.y1c2{bottom:731.103067pt;}
.y109{bottom:733.067600pt;}
.y107{bottom:733.088000pt;}
.y298{bottom:735.352533pt;}
.y2f5{bottom:737.258000pt;}
.y387{bottom:740.191467pt;}
.y2e5{bottom:740.215467pt;}
.y277{bottom:740.216800pt;}
.y1ac{bottom:740.220800pt;}
.y3be{bottom:740.224800pt;}
.y220{bottom:740.231467pt;}
.ya8{bottom:740.235467pt;}
.y11{bottom:740.236800pt;}
.y3a3{bottom:740.236933pt;}
.y3f5{bottom:740.238133pt;}
.yf9{bottom:741.478400pt;}
.y212{bottom:745.295600pt;}
.y25c{bottom:749.746400pt;}
.y242{bottom:751.736800pt;}
.y34b{bottom:756.903467pt;}
.y2{bottom:788.945467pt;}
.y7b{bottom:806.940933pt;}
.y83{bottom:806.983600pt;}
.y209{bottom:823.568800pt;}
.y7a{bottom:823.602267pt;}
.y82{bottom:823.644933pt;}
.y1{bottom:840.236933pt;}
.y79{bottom:840.263600pt;}
.y81{bottom:840.306267pt;}
.y10{bottom:856.903467pt;}
.y294{bottom:856.903600pt;}
.y78{bottom:856.924933pt;}
.y80{bottom:856.967600pt;}
.y77{bottom:873.586267pt;}
.y7f{bottom:873.628933pt;}
.y76{bottom:890.247600pt;}
.y7e{bottom:890.290267pt;}
.y75{bottom:906.908933pt;}
.y7d{bottom:906.951600pt;}
.yf{bottom:923.570133pt;}
.y74{bottom:923.570267pt;}
.y7c{bottom:923.612933pt;}
.y84{bottom:947.346800pt;}
.yb1{bottom:957.342800pt;}
.yf8{bottom:958.582667pt;}
.h1a{height:26.944000pt;}
.ha{height:29.002073pt;}
.h10{height:29.002209pt;}
.hd{height:29.002382pt;}
.h12{height:29.875507pt;}
.h64{height:31.658667pt;}
.h1c{height:33.578667pt;}
.h1f{height:33.578732pt;}
.h68{height:33.578793pt;}
.h50{height:33.578870pt;}
.h5{height:33.680000pt;}
.h62{height:35.856000pt;}
.h4a{height:35.925063pt;}
.h38{height:35.925077pt;}
.h51{height:35.925086pt;}
.h22{height:35.925096pt;}
.h4b{height:35.925136pt;}
.h3d{height:35.925145pt;}
.h41{height:35.925154pt;}
.h58{height:35.925168pt;}
.h32{height:35.925176pt;}
.h59{height:35.925185pt;}
.h1e{height:35.925193pt;}
.h4f{height:35.925197pt;}
.h43{height:35.925200pt;}
.h4e{height:35.925211pt;}
.h57{height:35.925220pt;}
.h23{height:35.925223pt;}
.h33{height:35.925224pt;}
.h26{height:35.925229pt;}
.h45{height:35.925233pt;}
.h42{height:35.925243pt;}
.h56{height:35.925257pt;}
.h54{height:35.925261pt;}
.h2e{height:35.925286pt;}
.h2d{height:35.925297pt;}
.h5e{height:35.925301pt;}
.h35{height:35.925306pt;}
.h3c{height:35.925308pt;}
.h5b{height:35.925313pt;}
.h5a{height:35.925314pt;}
.h39{height:35.925315pt;}
.h53{height:35.925321pt;}
.h40{height:35.925323pt;}
.h1d{height:35.925332pt;}
.h7{height:35.925333pt;}
.h55{height:35.925339pt;}
.h28{height:35.925344pt;}
.h4d{height:35.925346pt;}
.h2b{height:35.925357pt;}
.h21{height:35.925365pt;}
.h25{height:35.925369pt;}
.h52{height:35.925371pt;}
.h20{height:35.925372pt;}
.h49{height:35.925384pt;}
.h34{height:35.925389pt;}
.h2f{height:35.925391pt;}
.h5c{height:35.925401pt;}
.h24{height:35.925407pt;}
.h3b{height:35.925408pt;}
.h3a{height:35.925419pt;}
.h27{height:35.925427pt;}
.h5f{height:35.925431pt;}
.h46{height:35.925457pt;}
.h47{height:35.925460pt;}
.h44{height:35.925467pt;}
.h69{height:35.925469pt;}
.h2c{height:35.925482pt;}
.h37{height:35.925502pt;}
.h36{height:35.925509pt;}
.h4c{height:35.925510pt;}
.h48{height:35.925524pt;}
.h3f{height:35.925537pt;}
.h30{height:35.925546pt;}
.h3e{height:35.925548pt;}
.h5d{height:35.925551pt;}
.h31{height:35.925601pt;}
.h29{height:35.925631pt;}
.h2a{height:35.925636pt;}
.h13{height:37.776000pt;}
.h6{height:40.416000pt;}
.hf{height:40.416190pt;}
.hc{height:40.416431pt;}
.h63{height:40.437333pt;}
.h4{height:44.906667pt;}
.h9{height:50.000000pt;}
.hb{height:50.000533pt;}
.h61{height:50.368000pt;}
.h11{height:51.505333pt;}
.h17{height:53.888000pt;}
.he{height:56.844000pt;}
.h19{height:59.360000pt;}
.h66{height:62.592000pt;}
.h15{height:64.484800pt;}
.h14{height:69.216000pt;}
.h67{height:70.676000pt;}
.h16{height:89.253867pt;}
.h65{height:91.509333pt;}
.h3{height:100.508754pt;}
.h8{height:103.285333pt;}
.h60{height:104.070400pt;}
.h2{height:190.966498pt;}
.h1b{height:194.399251pt;}
.h18{height:198.200666pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:607.976000pt;}
.w4{width:608.031200pt;}
.w6{width:608.032000pt;}
.w7{width:657.642667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.xa{left:6.392000pt;}
.x9{left:9.243055pt;}
.x1{left:68.031467pt;}
.xe5{left:75.534667pt;}
.xf1{left:77.204667pt;}
.x47{left:78.724800pt;}
.x48{left:83.152800pt;}
.x4d{left:85.497600pt;}
.xef{left:88.648800pt;}
.xf0{left:98.272800pt;}
.xc{left:104.353733pt;}
.xb{left:108.949733pt;}
.x49{left:113.059200pt;}
.x2{left:117.892000pt;}
.x3{left:123.279867pt;}
.x8{left:126.141567pt;}
.x4a{left:130.839333pt;}
.x4b{left:139.369200pt;}
.x4{left:157.225067pt;}
.x6{left:194.173200pt;}
.x7{left:196.827733pt;}
.x43{left:213.732267pt;}
.x25{left:222.299333pt;}
.x3b{left:225.400667pt;}
.x23{left:227.782000pt;}
.x24{left:230.011333pt;}
.x3a{left:231.022000pt;}
.x104{left:238.839937pt;}
.x44{left:262.473333pt;}
.xd{left:347.533733pt;}
.x106{left:355.124800pt;}
.xf{left:360.613733pt;}
.x10{left:372.721733pt;}
.x105{left:376.121184pt;}
.x26{left:378.745467pt;}
.x4c{left:404.905200pt;}
.x108{left:411.616800pt;}
.x5e{left:415.108800pt;}
.x5f{left:419.536800pt;}
.x60{left:425.026800pt;}
.x61{left:434.650800pt;}
.x13{left:482.057600pt;}
.x14{left:484.265600pt;}
.x11{left:486.420267pt;}
.x32{left:489.706933pt;}
.x33{left:491.050933pt;}
.x12{left:493.790933pt;}
.x27{left:495.386800pt;}
.x2c{left:619.324667pt;}
.x35{left:620.622133pt;}
.x17{left:624.004400pt;}
.x16{left:625.984400pt;}
.x36{left:630.486133pt;}
.x15{left:641.800400pt;}
.x2b{left:642.904667pt;}
.x37{left:737.346133pt;}
.x2d{left:738.905733pt;}
.x38{left:740.972800pt;}
.x2e{left:744.516400pt;}
.x19{left:746.415867pt;}
.x1a{left:750.554533pt;}
.x45{left:757.474800pt;}
.x18{left:768.645200pt;}
.x46{left:778.198800pt;}
.x42{left:860.787333pt;}
.x5{left:861.732267pt;}
.xf5{left:862.677200pt;}
.xde{left:865.115333pt;}
.x3e{left:866.612533pt;}
.x66{left:869.313333pt;}
.xdd{left:870.689333pt;}
.x6a{left:871.739733pt;}
.x69{left:873.655867pt;}
.x3f{left:876.841867pt;}
.xe8{left:886.129333pt;}
.xe4{left:887.593200pt;}
.x2f{left:888.484400pt;}
.xe9{left:895.007867pt;}
.x1b{left:897.676133pt;}
.x1c{left:907.216133pt;}
.x62{left:908.346400pt;}
.xe0{left:920.227333pt;}
.xf4{left:921.227333pt;}
.xe1{left:925.112667pt;}
.x57{left:932.296667pt;}
.xe2{left:935.856533pt;}
.x56{left:946.910000pt;}
.xf7{left:954.567867pt;}
.x5b{left:961.060800pt;}
.x6c{left:962.572533pt;}
.x6d{left:967.036933pt;}
.x6e{left:969.305733pt;}
.x6f{left:971.582000pt;}
.x102{left:972.864533pt;}
.x70{left:976.314000pt;}
.xfa{left:978.667200pt;}
.x71{left:980.785333pt;}
.x72{left:985.819333pt;}
.x103{left:987.617333pt;}
.x101{left:989.088533pt;}
.x73{left:990.248933pt;}
.x74{left:995.026267pt;}
.x75{left:997.196000pt;}
.x76{left:999.387467pt;}
.x77{left:1001.600800pt;}
.x78{left:1003.835467pt;}
.x79{left:1006.091333pt;}
.x107{left:1007.211467pt;}
.x7a{left:1008.368267pt;}
.x7b{left:1010.665867pt;}
.x31{left:1014.655333pt;}
.x30{left:1017.247333pt;}
.x39{left:1018.552667pt;}
.x7c{left:1020.079733pt;}
.x7d{left:1022.479600pt;}
.x51{left:1023.890267pt;}
.x7e{left:1024.898667pt;}
.x7f{left:1027.336533pt;}
.x80{left:1029.793067pt;}
.x81{left:1032.268133pt;}
.x52{left:1036.295600pt;}
.x82{left:1037.286400pt;}
.x83{left:1039.817200pt;}
.x84{left:1042.365333pt;}
.x85{left:1044.930400pt;}
.x86{left:1047.512267pt;}
.x87{left:1050.110400pt;}
.x88{left:1052.724933pt;}
.x89{left:1055.355200pt;}
.x8a{left:1060.674667pt;}
.xfc{left:1062.432533pt;}
.x8b{left:1063.352800pt;}
.x8c{left:1066.045600pt;}
.x8d{left:1068.752800pt;}
.x8e{left:1071.474133pt;}
.xfb{left:1072.640533pt;}
.x8f{left:1074.209200pt;}
.x90{left:1076.957733pt;}
.xf3{left:1080.908933pt;}
.x91{left:1082.503200pt;}
.x5a{left:1085.366267pt;}
.x92{left:1088.092933pt;}
.x67{left:1091.041333pt;}
.x6b{left:1094.370533pt;}
.x93{left:1096.565600pt;}
.x94{left:1099.412000pt;}
.x95{left:1102.269067pt;}
.x96{left:1108.022267pt;}
.x97{left:1110.910400pt;}
.x98{left:1113.807733pt;}
.x99{left:1116.714000pt;}
.x9a{left:1119.628800pt;}
.x9b{left:1122.551867pt;}
.x9c{left:1128.427067pt;}
.x63{left:1131.194400pt;}
.xdf{left:1133.585333pt;}
.xf6{left:1134.951867pt;}
.xe7{left:1135.954667pt;}
.x9d{left:1139.341200pt;}
.xea{left:1141.034133pt;}
.x9e{left:1143.006800pt;}
.x9f{left:1146.680800pt;}
.x53{left:1151.508933pt;}
.x1e{left:1154.788133pt;}
.xfd{left:1157.461867pt;}
.x55{left:1159.025200pt;}
.xa0{left:1160.839867pt;}
.x54{left:1163.590533pt;}
.xa1{left:1168.282533pt;}
.x1d{left:1171.072133pt;}
.xa2{left:1174.687600pt;}
.x64{left:1175.994400pt;}
.x65{left:1177.050400pt;}
.xa3{left:1181.412400pt;}
.x5c{left:1183.431200pt;}
.xa4{left:1184.429333pt;}
.x5d{left:1186.371067pt;}
.xa5{left:1191.097333pt;}
.xa6{left:1198.580800pt;}
.x40{left:1203.401867pt;}
.xa7{left:1205.954000pt;}
.xa8{left:1208.970400pt;}
.x41{left:1213.631200pt;}
.xa9{left:1215.639600pt;}
.xeb{left:1218.710533pt;}
.xaa{left:1220.164933pt;}
.xab{left:1224.444267pt;}
.xac{left:1231.290533pt;}
.xad{left:1237.868533pt;}
.xae{left:1242.462533pt;}
.xaf{left:1249.224400pt;}
.xf8{left:1252.189200pt;}
.xb0{left:1256.419867pt;}
.xb1{left:1259.351200pt;}
.xfe{left:1262.165867pt;}
.xb2{left:1265.181600pt;}
.xb3{left:1268.086533pt;}
.x3c{left:1269.202133pt;}
.x1f{left:1270.180800pt;}
.xec{left:1272.680400pt;}
.x34{left:1274.432267pt;}
.x20{left:1276.026133pt;}
.x2a{left:1277.765467pt;}
.xb4{left:1279.614133pt;}
.x29{left:1280.837467pt;}
.x109{left:1282.204800pt;}
.x28{left:1283.813467pt;}
.xb5{left:1285.309467pt;}
.xb6{left:1288.143200pt;}
.xb7{left:1290.965733pt;}
.xb8{left:1293.776667pt;}
.xb9{left:1296.575733pt;}
.xba{left:1299.362667pt;}
.x50{left:1300.674667pt;}
.xbb{left:1302.137067pt;}
.xbc{left:1304.898667pt;}
.x4f{left:1306.445333pt;}
.xbd{left:1310.370267pt;}
.x68{left:1312.769333pt;}
.xbe{left:1315.794133pt;}
.xbf{left:1318.484533pt;}
.xc0{left:1321.160267pt;}
.x4e{left:1324.603333pt;}
.xc1{left:1326.466667pt;}
.xc2{left:1331.698800pt;}
.xc3{left:1334.294267pt;}
.xc4{left:1336.873200pt;}
.xf9{left:1338.151867pt;}
.xc5{left:1339.435467pt;}
.xc6{left:1341.980667pt;}
.xc7{left:1344.508533pt;}
.xc8{left:1347.018933pt;}
.xc9{left:1349.511467pt;}
.xee{left:1351.053067pt;}
.xca{left:1354.428533pt;}
.xcb{left:1356.863067pt;}
.xcc{left:1359.278800pt;}
.x59{left:1362.405333pt;}
.xcd{left:1364.052400pt;}
.xce{left:1366.409867pt;}
.xcf{left:1368.747200pt;}
.xd0{left:1371.064400pt;}
.x58{left:1373.178667pt;}
.xd1{left:1377.875200pt;}
.xd2{left:1380.106133pt;}
.xd3{left:1382.315600pt;}
.xd4{left:1384.503600pt;}
.xd5{left:1386.669467pt;}
.xd6{left:1388.847867pt;}
.xd7{left:1394.574667pt;}
.xd8{left:1397.673200pt;}
.xe{left:1399.933733pt;}
.xf2{left:1401.474267pt;}
.xd9{left:1405.046533pt;}
.xda{left:1409.274800pt;}
.xdb{left:1412.180133pt;}
.xdc{left:1416.336400pt;}
.x22{left:1418.650267pt;}
.x21{left:1426.438267pt;}
.x3d{left:1428.661467pt;}
.xed{left:1430.975733pt;}
.xe6{left:1433.736000pt;}
.x100{left:1442.549867pt;}
.xff{left:1452.096533pt;}
.xe3{left:1456.488000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  