
    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_251a27b224f4297a4ad3499d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_70f3857d604d2bcd6397524f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_995ed512d4e6b18c3e757382.woff')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_7359538e1772846b90a7381a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_e4b449408278781187b98ab5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_19846a5aac6fbefb2d77845a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_b5c5b435bf5349dfa30467b2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_f6627f6efde829d93fe49b44.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_ef9aafaaa488b0fa5e27b076.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_5825515975b47bec69255b5f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ec6e38e78e55f1f30f06c00d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_c8164a19e7be4b1c27145c50.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_274818d77bc8e5e79484e567.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_ae26c5344d219681753df9d3.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;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_93f851b57211bdcb20ffbd92.woff')format("woff");}.fff{font-family:fff;line-height:1.239258;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_6117454d4018de3ddf86e507.woff')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_85441912616c9e3d102d52e2.woff')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_ae26c5344d219681753df9d3.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_93f851b57211bdcb20ffbd92.woff')format("woff");}.ff13{font-family:ff13;line-height:1.239258;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_6117454d4018de3ddf86e507.woff')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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:ff15;src:url('chunks/assets/font_4d515455d77956c0fbb80211.woff')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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:ff16;src:url('chunks/assets/font_a86ba079428612f60611f37b.woff')format("woff");}.ff16{font-family:ff16;line-height:1.432129;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:ff17;src:url('chunks/assets/font_f996aec8fd01d20cb359d332.woff')format("woff");}.ff17{font-family:ff17;line-height:1.432129;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:ff18;src:url('chunks/assets/font_f4d9331faea786480d02abab.woff')format("woff");}.ff18{font-family:ff18;line-height:1.239258;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:ff19;src:url('chunks/assets/font_bf2c4577fa37efe6234de11e.woff')format("woff");}.ff19{font-family:ff19;line-height:1.432129;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:ff1a;src:url('chunks/assets/font_201065e07d236c4f77e8d203.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;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:ff1b;src:url('chunks/assets/font_0fd6132edd0ec7581a73d3dd.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.239258;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:ff1c;src:url('chunks/assets/font_7413f5152b67ad0e6b2afe7a.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;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:ff1d;src:url('chunks/assets/font_49dc70da49af9e28ffee5c08.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;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:ff1e;src:url('chunks/assets/font_7413f5152b67ad0e6b2afe7a.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;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:ff1f;src:url('chunks/assets/font_defe65017083dfa81ac3b739.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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:ff20;src:url('chunks/assets/font_62d11070f187023b292640ac.woff')format("woff");}.ff20{font-family:ff20;line-height:1.432129;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:ff21;src:url('chunks/assets/font_2fae8c474a0ad8e8bea4a90d.woff')format("woff");}.ff21{font-family:ff21;line-height:1.432129;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:ff22;src:url('chunks/assets/font_a8deecdf7024f2dab6a7fdd8.woff')format("woff");}.ff22{font-family:ff22;line-height:1.432129;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:ff23;src:url('chunks/assets/font_00e5b3b92a894c14c7eabb9d.woff')format("woff");}.ff23{font-family:ff23;line-height:1.432129;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:ff24;src:url('chunks/assets/font_c43a440d8135d3a6b1c5d977.woff')format("woff");}.ff24{font-family:ff24;line-height:1.432129;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:ff25;src:url('chunks/assets/font_2b6f5978130b2f18f5acd2c9.woff')format("woff");}.ff25{font-family:ff25;line-height:1.432129;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:ff26;src:url('chunks/assets/font_ec1fb8dbfd6cbeb32235017b.woff')format("woff");}.ff26{font-family:ff26;line-height:1.239258;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:ff27;src:url('chunks/assets/font_49dc70da49af9e28ffee5c08.woff')format("woff");}.ff27{font-family:ff27;line-height:1.432129;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:ff28;src:url('chunks/assets/font_3ebf49105c8096795a7a34a7.woff')format("woff");}.ff28{font-family:ff28;line-height:1.432129;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:ff29;src:url('chunks/assets/font_381d244de844dcc5b2d48a91.woff')format("woff");}.ff29{font-family:ff29;line-height:1.239258;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:ff2a;src:url('chunks/assets/font_defe65017083dfa81ac3b739.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m5{transform:matrix(0.216487,-0.125034,0.125034,0.216487,0,0);-ms-transform:matrix(0.216487,-0.125034,0.125034,0.216487,0,0);-webkit-transform:matrix(0.216487,-0.125034,0.125034,0.216487,0,0);}
.m6{transform:matrix(0.216487,-0.125034,0.125034,0.216487,0,0);-ms-transform:matrix(0.216487,-0.125034,0.125034,0.216487,0,0);-webkit-transform:matrix(0.216487,-0.125034,0.125034,0.216487,0,0);}
.m7{transform:matrix(0.216520,-0.124976,0.124976,0.216520,0,0);-ms-transform:matrix(0.216520,-0.124976,0.124976,0.216520,0,0);-webkit-transform:matrix(0.216520,-0.124976,0.124976,0.216520,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);}
.m1{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);}
.v7{vertical-align:-30.476324px;}
.v4{vertical-align:-11.198795px;}
.v3{vertical-align:-8.921250px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.v5{vertical-align:3.510000px;}
.v1{vertical-align:19.353750px;}
.v6{vertical-align:30.476324px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003810px;}
.lse{letter-spacing:0.004875px;}
.ls13{letter-spacing:0.009750px;}
.lsf{letter-spacing:0.011143px;}
.ls11{letter-spacing:0.012001px;}
.ls12{letter-spacing:0.019500px;}
.ls15{letter-spacing:0.022286px;}
.ls10{letter-spacing:0.024001px;}
.ls7{letter-spacing:0.039000px;}
.ls16{letter-spacing:0.044572px;}
.ls0{letter-spacing:29.887800px;}
.ls5{letter-spacing:31.377810px;}
.ls3{letter-spacing:31.383810px;}
.ls4{letter-spacing:62.763810px;}
.ls6{letter-spacing:94.149810px;}
.ls14{letter-spacing:125.529810px;}
.ls8{letter-spacing:156.909810px;}
.lsd{letter-spacing:188.289810px;}
.lsc{letter-spacing:188.295810px;}
.lsb{letter-spacing:470.733810px;}
.ls9{letter-spacing:564.879810px;}
.lsa{letter-spacing:564.885810px;}
.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;}
}
.ws15{word-spacing:-31.382190px;}
.ws3{word-spacing:-24.101616px;}
.ws68{word-spacing:-21.000000px;}
.wsb3{word-spacing:-19.500390px;}
.ws90{word-spacing:-18.372919px;}
.ws6a{word-spacing:-18.348000px;}
.wsac{word-spacing:-17.060055px;}
.ws86{word-spacing:-17.037769px;}
.ws77{word-spacing:-16.737168px;}
.ws27{word-spacing:-16.680834px;}
.ws3a{word-spacing:-16.680334px;}
.ws69{word-spacing:-16.500000px;}
.ws5{word-spacing:-15.481880px;}
.ws9e{word-spacing:-14.927250px;}
.ws49{word-spacing:-14.907750px;}
.wsb5{word-spacing:-13.928850px;}
.ws74{word-spacing:-13.552500px;}
.wsb1{word-spacing:-12.393515px;}
.wsad{word-spacing:-12.391105px;}
.ws75{word-spacing:-12.187500px;}
.wsb4{word-spacing:-11.143080px;}
.ws48{word-spacing:-10.848029px;}
.ws85{word-spacing:-10.842770px;}
.ws46{word-spacing:-10.842000px;}
.wsab{word-spacing:-10.839296px;}
.wsc{word-spacing:-10.776582px;}
.ws73{word-spacing:-9.484194px;}
.ws47{word-spacing:-7.312500px;}
.ws14{word-spacing:-2.151922px;}
.ws9b{word-spacing:-2.092146px;}
.wsa3{word-spacing:-1.578086px;}
.ws12{word-spacing:-1.494390px;}
.wsb6{word-spacing:-0.812950px;}
.ws79{word-spacing:-0.602540px;}
.wsf{word-spacing:-0.239102px;}
.ws9a{word-spacing:-0.179327px;}
.ws22{word-spacing:-0.059776px;}
.ws9d{word-spacing:-0.004950px;}
.ws32{word-spacing:-0.004380px;}
.ws9c{word-spacing:-0.003900px;}
.ws81{word-spacing:-0.003420px;}
.ws39{word-spacing:-0.003330px;}
.ws4d{word-spacing:-0.002850px;}
.ws38{word-spacing:-0.002760px;}
.ws82{word-spacing:-0.002370px;}
.ws7c{word-spacing:-0.002280px;}
.ws60{word-spacing:-0.001800px;}
.ws4f{word-spacing:-0.001710px;}
.ws2a{word-spacing:-0.001230px;}
.ws24{word-spacing:-0.001140px;}
.ws83{word-spacing:-0.000750px;}
.ws55{word-spacing:-0.000660px;}
.ws1f{word-spacing:-0.000570px;}
.ws30{word-spacing:-0.000180px;}
.ws2c{word-spacing:-0.000090px;}
.wsd{word-spacing:0.000000px;}
.ws35{word-spacing:0.000390px;}
.ws3d{word-spacing:0.000480px;}
.ws5b{word-spacing:0.000870px;}
.ws29{word-spacing:0.000960px;}
.ws23{word-spacing:0.001050px;}
.ws3c{word-spacing:0.001440px;}
.ws40{word-spacing:0.001530px;}
.ws50{word-spacing:0.001620px;}
.ws37{word-spacing:0.002010px;}
.ws2b{word-spacing:0.002100px;}
.ws45{word-spacing:0.002490px;}
.ws21{word-spacing:0.002580px;}
.ws36{word-spacing:0.002670px;}
.ws96{word-spacing:0.003060px;}
.ws25{word-spacing:0.003150px;}
.ws3e{word-spacing:0.003240px;}
.ws3b{word-spacing:0.003630px;}
.ws33{word-spacing:0.003720px;}
.ws26{word-spacing:0.004200px;}
.ws57{word-spacing:0.004290px;}
.ws20{word-spacing:0.004770px;}
.ws42{word-spacing:0.004860px;}
.ws58{word-spacing:0.005250px;}
.ws7e{word-spacing:0.005340px;}
.ws31{word-spacing:0.005430px;}
.ws41{word-spacing:0.005910px;}
.ws91{word-spacing:0.006300px;}
.ws5a{word-spacing:0.006390px;}
.ws59{word-spacing:0.007440px;}
.ws92{word-spacing:0.008010px;}
.ws34{word-spacing:0.056356px;}
.ws6f{word-spacing:0.057496px;}
.ws4e{word-spacing:0.058066px;}
.ws7f{word-spacing:0.059116px;}
.ws51{word-spacing:0.060166px;}
.ws7d{word-spacing:0.060256px;}
.ws56{word-spacing:0.061306px;}
.ws66{word-spacing:0.061876px;}
.ws13{word-spacing:1.255288px;}
.wsa4{word-spacing:1.733492px;}
.ws1{word-spacing:2.169140px;}
.ws0{word-spacing:2.272433px;}
.wsb0{word-spacing:2.343209px;}
.ws6c{word-spacing:2.391030px;}
.ws99{word-spacing:2.438861px;}
.ws10{word-spacing:2.809453px;}
.ws5d{word-spacing:3.108331px;}
.ws8{word-spacing:3.168107px;}
.ws2{word-spacing:3.227904px;}
.ws5c{word-spacing:3.490904px;}
.ws28{word-spacing:3.538724px;}
.wsa1{word-spacing:3.682186px;}
.wsa7{word-spacing:4.016947px;}
.ws1c{word-spacing:4.782048px;}
.ws89{word-spacing:5.200477px;}
.ws87{word-spacing:5.212445px;}
.ws54{word-spacing:6.073216px;}
.ws6{word-spacing:6.156887px;}
.ws98{word-spacing:6.283636px;}
.ws16{word-spacing:6.742733px;}
.ws1b{word-spacing:6.814464px;}
.ws44{word-spacing:7.292623px;}
.ws11{word-spacing:7.352399px;}
.ws4b{word-spacing:7.460014px;}
.wsa6{word-spacing:7.919102px;}
.ws1a{word-spacing:8.177334px;}
.ws7a{word-spacing:8.607686px;}
.ws6e{word-spacing:8.906564px;}
.ws9{word-spacing:9.564096px;}
.ws18{word-spacing:9.743423px;}
.ws17{word-spacing:9.803198px;}
.wsb{word-spacing:9.862974px;}
.ws7b{word-spacing:11.118262px;}
.ws88{word-spacing:11.190036px;}
.wsa9{word-spacing:11.775793px;}
.wsa8{word-spacing:12.194222px;}
.ws6d{word-spacing:12.911616px;}
.ws4a{word-spacing:13.138125px;}
.ws7{word-spacing:13.150632px;}
.ws1d{word-spacing:14.645022px;}
.wsb2{word-spacing:14.987443px;}
.wsb7{word-spacing:15.043158px;}
.ws19{word-spacing:17.215440px;}
.ws43{word-spacing:24.359848px;}
.ws94{word-spacing:31.380390px;}
.ws2e{word-spacing:31.381530px;}
.ws95{word-spacing:31.383720px;}
.ws8b{word-spacing:31.384200px;}
.wsaa{word-spacing:31.385340px;}
.ws3f{word-spacing:31.385430px;}
.ws61{word-spacing:35.327380px;}
.ws4{word-spacing:38.555262px;}
.ws76{word-spacing:54.993552px;}
.wsa2{word-spacing:56.009737px;}
.wse{word-spacing:61.975584px;}
.ws93{word-spacing:62.762580px;}
.ws2d{word-spacing:62.763720px;}
.ws8c{word-spacing:62.764380px;}
.ws71{word-spacing:62.766960px;}
.ws62{word-spacing:82.848982px;}
.wsa5{word-spacing:84.343372px;}
.ws84{word-spacing:94.144860px;}
.ws80{word-spacing:94.148100px;}
.ws2f{word-spacing:94.148580px;}
.ws65{word-spacing:94.150860px;}
.ws1e{word-spacing:94.151340px;}
.ws64{word-spacing:96.358267px;}
.ws9f{word-spacing:119.242500px;}
.wsa0{word-spacing:121.953000px;}
.ws8d{word-spacing:125.530200px;}
.ws8a{word-spacing:125.533530px;}
.ws78{word-spacing:132.582281px;}
.wsae{word-spacing:136.335584px;}
.wsaf{word-spacing:139.377645px;}
.ws53{word-spacing:146.760000px;}
.ws6b{word-spacing:148.434000px;}
.ws4c{word-spacing:156.912390px;}
.ws72{word-spacing:156.913530px;}
.ws8e{word-spacing:188.296860px;}
.ws63{word-spacing:216.006854px;}
.ws70{word-spacing:313.824480px;}
.ws97{word-spacing:368.036584px;}
.ws5e{word-spacing:377.188015px;}
.ws5f{word-spacing:377.192215px;}
.ws52{word-spacing:399.000000px;}
.ws8f{word-spacing:458.746936px;}
.ws67{word-spacing:645.612000px;}
.wsa{word-spacing:2341.032353px;}
._64{margin-left:-259.539176px;}
._65{margin-left:-229.426058px;}
._66{margin-left:-129.892379px;}
._42{margin-left:-82.406634px;}
._67{margin-left:-68.012674px;}
._68{margin-left:-44.819814px;}
._e{margin-left:-34.908950px;}
._d{margin-left:-31.561517px;}
._b{margin-left:-29.887800px;}
._25{margin-left:-28.214083px;}
._c{margin-left:-9.922750px;}
._3{margin-left:-7.953515px;}
._6{margin-left:-6.455795px;}
._7{margin-left:-5.164660px;}
._32{margin-left:-3.993006px;}
._0{margin-left:-2.582310px;}
._5{margin-left:-1.219444px;}
._1c{width:1.004299px;}
._1{width:2.582310px;}
._f{width:4.485725px;}
._87{width:11.500904px;}
._27{width:15.493766px;}
._28{width:18.530436px;}
._15{width:19.965050px;}
._23{width:21.889756px;}
._2a{width:23.874413px;}
._29{width:26.304624px;}
._21{width:27.329335px;}
._1e{width:29.333668px;}
._12{width:30.485556px;}
._86{width:31.693027px;}
._33{width:34.191824px;}
._20{width:37.419526px;}
._19{width:39.289304px;}
._2{width:41.523545px;}
._85{width:42.866440px;}
._18{width:44.514932px;}
._16{width:47.196502px;}
._5b{width:49.150081px;}
._1b{width:51.707256px;}
._1d{width:53.448372px;}
._11{width:55.292430px;}
._22{width:57.101378px;}
._14{width:61.030888px;}
._2d{width:62.764380px;}
._10{width:65.792995px;}
._2b{width:71.731200px;}
._31{width:75.489704px;}
._41{width:77.528953px;}
._2c{width:86.077200px;}
._40{width:88.897796px;}
._3f{width:91.456668px;}
._24{width:94.139884px;}
._17{width:95.649797px;}
._4f{width:102.924746px;}
._70{width:111.780372px;}
._43{width:113.633416px;}
._72{width:118.176361px;}
._54{width:122.515528px;}
._3b{width:125.528760px;}
._4c{width:129.258469px;}
._8a{width:131.939501px;}
._3e{width:134.674427px;}
._7e{width:136.886124px;}
._6b{width:137.962085px;}
._77{width:139.277148px;}
._4e{width:149.633942px;}
._5a{width:150.902947px;}
._1a{width:152.651267px;}
._2e{width:156.910950px;}
._83{width:158.594694px;}
._4{width:161.682112px;}
._35{width:164.404620px;}
._89{width:167.356712px;}
._55{width:172.871035px;}
._8{width:180.762624px;}
._51{width:182.889908px;}
._34{width:188.291910px;}
._71{width:191.004342px;}
._6f{width:195.295417px;}
._53{width:202.801183px;}
._76{width:207.333908px;}
._7f{width:209.884590px;}
._6c{width:216.247745px;}
._9{width:218.997308px;}
._78{width:221.451218px;}
._7d{width:226.613783px;}
._44{width:231.997452px;}
._61{width:235.516200px;}
._74{width:241.324200px;}
._88{width:245.441358px;}
._62{width:249.447366px;}
._30{width:251.063910px;}
._75{width:255.415183px;}
._6a{width:263.279383px;}
._45{width:265.671948px;}
._81{width:269.650200px;}
._6d{width:276.023345px;}
._69{width:281.093383px;}
._3a{width:282.440670px;}
._7c{width:283.862814px;}
._82{width:286.741183px;}
._3c{width:312.802072px;}
._2f{width:313.828290px;}
._63{width:345.207720px;}
._48{width:364.033183px;}
._36{width:365.180120px;}
._26{width:367.433927px;}
._13{width:371.107230px;}
._57{width:376.589340px;}
._52{width:381.167615px;}
._6e{width:395.785360px;}
._38{width:400.389158px;}
._39{width:407.971620px;}
._4a{width:428.611619px;}
._58{width:439.353720px;}
._7b{width:440.607232px;}
._1f{width:447.772380px;}
._60{width:460.285684px;}
._5e{width:470.740200px;}
._3d{width:478.306234px;}
._59{width:502.119720px;}
._37{width:531.911711px;}
._79{width:563.206987px;}
._4b{width:614.779799px;}
._5d{width:627.651150px;}
._46{width:646.787149px;}
._7a{width:651.029303px;}
._4d{width:652.803142px;}
._73{width:683.176616px;}
._5f{width:691.308354px;}
._50{width:692.494140px;}
._56{width:721.795620px;}
._80{width:738.530084px;}
._47{width:822.999142px;}
._49{width:862.690140px;}
._84{width:925.316875px;}
._5c{width:1004.233620px;}
._a{width:2304.991296px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,207);}
.fc4{color:rgb(207,92,0);}
.fc3{color:rgb(79,153,5);}
.fc2{color:rgb(143,89,3);}
.fc1{color:rgb(33,74,135);}
.fc8{color:rgb(26,26,26);}
.fc7{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:29.250000px;}
.fs16{font-size:34.115806px;}
.fs17{font-size:34.125000px;}
.fs22{font-size:38.990272px;}
.fsb{font-size:39.000000px;}
.fs23{font-size:39.000780px;}
.fs1b{font-size:39.002770px;}
.fsd{font-size:39.021688px;}
.fs15{font-size:43.875000px;}
.fs1a{font-size:44.572320px;}
.fs24{font-size:44.580990px;}
.fs7{font-size:47.820600px;}
.fs10{font-size:48.000000px;}
.fs9{font-size:48.000960px;}
.fs6{font-size:48.002400px;}
.fs18{font-size:48.750000px;}
.fs1e{font-size:50.143860px;}
.fse{font-size:53.625000px;}
.fs13{font-size:54.000000px;}
.fs20{font-size:54.002700px;}
.fs1d{font-size:55.715400px;}
.fsf{font-size:58.500000px;}
.fs3{font-size:59.775600px;}
.fs12{font-size:60.000000px;}
.fsa{font-size:60.001200px;}
.fs5{font-size:60.003000px;}
.fs1c{font-size:61.286940px;}
.fs19{font-size:63.375000px;}
.fs11{font-size:66.000000px;}
.fs21{font-size:66.003300px;}
.fs1f{font-size:66.858480px;}
.fs1{font-size:71.731200px;}
.fs8{font-size:78.001560px;}
.fs4{font-size:78.003900px;}
.fs14{font-size:84.000000px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1da{bottom:6.057187px;}
.y1d8{bottom:6.069375px;}
.y33a{bottom:6.203437px;}
.y3ad{bottom:7.089785px;}
.yf8{bottom:7.592812px;}
.y1e8{bottom:8.750625px;}
.y348{bottom:9.018750px;}
.y295{bottom:10.307349px;}
.y13a{bottom:11.100000px;}
.y2db{bottom:11.100555px;}
.yff{bottom:16.014375px;}
.yfa{bottom:17.172188px;}
.yf9{bottom:18.525000px;}
.yfd{bottom:20.231250px;}
.yf7{bottom:20.999062px;}
.y1dc{bottom:22.169062px;}
.yfc{bottom:22.595625px;}
.y33d{bottom:23.302500px;}
.y33c{bottom:24.667500px;}
.yfb{bottom:25.983750px;}
.y28f{bottom:26.297669px;}
.y3b0{bottom:26.631961px;}
.y3e9{bottom:26.896609px;}
.y1dd{bottom:26.910000px;}
.y3ea{bottom:27.035898px;}
.yfe{bottom:27.129375px;}
.y3af{bottom:28.191992px;}
.y139{bottom:29.325000px;}
.y2da{bottom:29.326466px;}
.y3f6{bottom:35.490710px;}
.y290{bottom:37.788970px;}
.y2d2{bottom:40.367018px;}
.y291{bottom:48.723117px;}
.y18f{bottom:58.515000px;}
.y292{bottom:58.863320px;}
.y136{bottom:61.260000px;}
.y1c{bottom:63.168000px;}
.y293{bottom:66.412757px;}
.y344{bottom:68.822812px;}
.y294{bottom:72.276803px;}
.y3b1{bottom:79.143726px;}
.y73{bottom:79.698985px;}
.y1e4{bottom:82.996875px;}
.yf0{bottom:86.238750px;}
.y2d3{bottom:86.659333px;}
.y3ef{bottom:86.748878px;}
.y3e2{bottom:88.615344px;}
.y7d{bottom:93.724686px;}
.y2dc{bottom:94.144707px;}
.y345{bottom:107.664375px;}
.y161{bottom:108.000000px;}
.y2a1{bottom:109.275000px;}
.y256{bottom:112.782000px;}
.y1fb{bottom:113.709000px;}
.y18d{bottom:115.276500px;}
.y14e{bottom:115.890000px;}
.y241{bottom:115.905000px;}
.y70{bottom:116.682000px;}
.y3df{bottom:116.697000px;}
.y1a3{bottom:117.187500px;}
.y285{bottom:117.336632px;}
.y374{bottom:120.159000px;}
.yb0{bottom:120.624000px;}
.y382{bottom:123.262500px;}
.y349{bottom:123.471563px;}
.y7c{bottom:123.561178px;}
.y3ab{bottom:123.909000px;}
.y47{bottom:125.632500px;}
.y160{bottom:125.932500px;}
.y134{bottom:126.694500px;}
.y2a0{bottom:127.207500px;}
.y217{bottom:127.579500px;}
.y1d6{bottom:127.741500px;}
.y3b5{bottom:128.396139px;}
.yf1{bottom:130.418437px;}
.y255{bottom:130.714500px;}
.y1fa{bottom:131.641500px;}
.y2d4{bottom:132.951647px;}
.y18c{bottom:133.209000px;}
.y240{bottom:133.837500px;}
.y1e5{bottom:134.050313px;}
.y6f{bottom:134.614500px;}
.y3de{bottom:134.629500px;}
.y1a2{bottom:135.121500px;}
.yee{bottom:137.017500px;}
.y373{bottom:138.091500px;}
.yaf{bottom:138.556500px;}
.y190{bottom:140.100000px;}
.y3aa{bottom:141.841500px;}
.y1b{bottom:142.617000px;}
.y46{bottom:143.566500px;}
.y15f{bottom:143.865000px;}
.y133{bottom:144.627000px;}
.y29f{bottom:145.141500px;}
.y3f0{bottom:145.389336px;}
.y216{bottom:145.512000px;}
.y1d5{bottom:145.674000px;}
.y346{bottom:146.505938px;}
.y3e3{bottom:146.963296px;}
.y254{bottom:148.647000px;}
.y381{bottom:148.705500px;}
.y1f9{bottom:149.574000px;}
.y18b{bottom:151.141500px;}
.y14d{bottom:151.756500px;}
.y23f{bottom:151.771500px;}
.y338{bottom:151.786500px;}
.y6e{bottom:152.547000px;}
.y3dd{bottom:152.563500px;}
.y1a1{bottom:153.054000px;}
.y7b{bottom:153.397670px;}
.yed{bottom:154.950000px;}
.y372{bottom:156.025500px;}
.yae{bottom:156.489000px;}
.y2f1{bottom:159.717000px;}
.y3a9{bottom:159.775500px;}
.y195{bottom:160.365000px;}
.y45{bottom:161.499000px;}
.y286{bottom:161.672162px;}
.y283{bottom:161.799000px;}
.y132{bottom:162.561000px;}
.y215{bottom:163.446000px;}
.y1d4{bottom:163.606500px;}
.y3b2{bottom:165.641884px;}
.y137{bottom:165.795000px;}
.y253{bottom:166.581000px;}
.y1f8{bottom:167.506500px;}
.y18a{bottom:169.074000px;}
.y1a{bottom:169.516500px;}
.y14c{bottom:169.689000px;}
.y327{bottom:169.704000px;}
.y6d{bottom:170.479500px;}
.y3dc{bottom:170.496000px;}
.y1e9{bottom:170.868750px;}
.yec{bottom:172.882500px;}
.y2cc{bottom:173.602500px;}
.y371{bottom:173.958000px;}
.yad{bottom:174.421500px;}
.y7e{bottom:175.553777px;}
.y2f0{bottom:177.649500px;}
.yb3{bottom:179.223584px;}
.y2d5{bottom:179.243962px;}
.y44{bottom:179.431500px;}
.y282{bottom:179.731500px;}
.y131{bottom:180.493500px;}
.y214{bottom:181.378500px;}
.y1d3{bottom:181.539000px;}
.y29e{bottom:181.701000px;}
.y3f7{bottom:181.799350px;}
.y3eb{bottom:182.802227px;}
.y7a{bottom:183.219161px;}
.y252{bottom:184.513500px;}
.y1e6{bottom:185.103750px;}
.y347{bottom:185.347500px;}
.y1f7{bottom:185.439000px;}
.y380{bottom:185.842500px;}
.y189{bottom:187.008000px;}
.y19{bottom:187.449000px;}
.y14b{bottom:187.621500px;}
.y23e{bottom:187.636500px;}
.y337{bottom:187.651500px;}
.y6c{bottom:188.413500px;}
.y3db{bottom:188.428500px;}
.y1a0{bottom:188.919000px;}
.y13b{bottom:189.735000px;}
.yeb{bottom:190.815000px;}
.y2cb{bottom:191.535000px;}
.y370{bottom:191.890500px;}
.y15e{bottom:192.177000px;}
.yac{bottom:192.355500px;}
.y3a8{bottom:195.640500px;}
.y43{bottom:197.364000px;}
.y281{bottom:197.664000px;}
.y130{bottom:198.426000px;}
.y213{bottom:199.311000px;}
.y1d2{bottom:199.471500px;}
.y314{bottom:199.725000px;}
.ybd{bottom:201.784036px;}
.y251{bottom:202.446000px;}
.y1f6{bottom:203.373000px;}
.yf2{bottom:203.433750px;}
.y3f1{bottom:204.029795px;}
.y188{bottom:204.940500px;}
.y3e4{bottom:205.311249px;}
.y14a{bottom:205.554000px;}
.y23d{bottom:205.569000px;}
.y336{bottom:205.584000px;}
.yc5{bottom:205.684500px;}
.y287{bottom:206.007691px;}
.y6b{bottom:206.346000px;}
.y2ca{bottom:209.469000px;}
.y36f{bottom:209.823000px;}
.yab{bottom:210.288000px;}
.y7f{bottom:211.000550px;}
.y79{bottom:213.055652px;}
.y3a7{bottom:213.573000px;}
.y18{bottom:214.348500px;}
.y42{bottom:215.296500px;}
.y280{bottom:215.596500px;}
.y12f{bottom:216.358500px;}
.y1d1{bottom:217.404000px;}
.y250{bottom:220.378500px;}
.y1f5{bottom:221.305500px;}
.y191{bottom:221.685000px;}
.y187{bottom:222.873000px;}
.y149{bottom:223.486500px;}
.y326{bottom:223.501500px;}
.y335{bottom:223.516500px;}
.y6a{bottom:224.278500px;}
.y212{bottom:224.754000px;}
.y19f{bottom:224.784000px;}
.yea{bottom:225.439500px;}
.y2d6{bottom:225.536276px;}
.y29d{bottom:226.402500px;}
.y2ef{bottom:227.398500px;}
.y2c9{bottom:227.401500px;}
.y36e{bottom:227.755500px;}
.yaa{bottom:228.220500px;}
.y15d{bottom:229.744500px;}
.yb1{bottom:230.564511px;}
.y100{bottom:231.172500px;}
.y3a6{bottom:231.505500px;}
.y41{bottom:233.229000px;}
.y27f{bottom:233.529000px;}
.y37f{bottom:233.574000px;}
.y12e{bottom:234.291000px;}
.y1d0{bottom:235.338000px;}
.y1e7{bottom:236.145000px;}
.y24f{bottom:238.311000px;}
.y313{bottom:238.489500px;}
.y1f4{bottom:239.238000px;}
.y186{bottom:240.805500px;}
.y148{bottom:241.419000px;}
.y23c{bottom:241.434000px;}
.y334{bottom:241.449000px;}
.y19e{bottom:242.718000px;}
.y3da{bottom:242.809500px;}
.y78{bottom:242.892144px;}
.y296{bottom:243.030575px;}
.ye9{bottom:243.373500px;}
.y2ee{bottom:245.331000px;}
.y2c8{bottom:245.334000px;}
.y36d{bottom:245.688000px;}
.ya9{bottom:246.153000px;}
.y80{bottom:246.447322px;}
.y3ee{bottom:247.111728px;}
.y15c{bottom:247.677000px;}
.ybc{bottom:248.659973px;}
.y288{bottom:250.343221px;}
.y40{bottom:251.163000px;}
.y27e{bottom:251.461500px;}
.y3b3{bottom:252.140043px;}
.y12d{bottom:252.223500px;}
.y33f{bottom:253.049062px;}
.y1cf{bottom:253.270500px;}
.y29c{bottom:253.302000px;}
.y33e{bottom:254.414062px;}
.y17{bottom:256.191000px;}
.y24e{bottom:256.243500px;}
.y312{bottom:256.422000px;}
.y1f3{bottom:257.170500px;}
.y185{bottom:258.738000px;}
.y147{bottom:259.353000px;}
.y23b{bottom:259.368000px;}
.y333{bottom:259.383000px;}
.y69{bottom:260.143500px;}
.y19d{bottom:260.650500px;}
.y211{bottom:261.891000px;}
.y3f2{bottom:262.656324px;}
.y2ed{bottom:263.263500px;}
.y2c7{bottom:263.266500px;}
.y36c{bottom:263.622000px;}
.y3e5{bottom:263.659202px;}
.y3a5{bottom:267.372000px;}
.y3f{bottom:269.095500px;}
.y27d{bottom:269.395500px;}
.y12c{bottom:270.157500px;}
.y138{bottom:270.330000px;}
.y1ce{bottom:271.203000px;}
.y2d7{bottom:271.843592px;}
.y37e{bottom:272.338500px;}
.y77{bottom:272.713635px;}
.y24d{bottom:274.177500px;}
.y1f2{bottom:275.103000px;}
.y1de{bottom:275.145000px;}
.y2a4{bottom:275.728500px;}
.yf3{bottom:276.570938px;}
.y184{bottom:276.670500px;}
.y146{bottom:277.285500px;}
.y23a{bottom:277.300500px;}
.y332{bottom:277.315500px;}
.y68{bottom:278.076000px;}
.y1df{bottom:279.885937px;}
.ye8{bottom:279.933000px;}
.y2c6{bottom:281.199000px;}
.y36b{bottom:281.554500px;}
.y81{bottom:281.894094px;}
.ya8{bottom:282.018000px;}
.y16{bottom:283.090500px;}
.y3a4{bottom:285.304500px;}
.y3e{bottom:287.028000px;}
.y27c{bottom:287.328000px;}
.y12b{bottom:288.090000px;}
.y1cd{bottom:289.135500px;}
.y2a3{bottom:289.924500px;}
.y37d{bottom:290.271000px;}
.y24c{bottom:292.110000px;}
.y1f1{bottom:293.035500px;}
.y183{bottom:294.604500px;}
.y289{bottom:294.678751px;}
.y145{bottom:295.218000px;}
.y239{bottom:295.233000px;}
.y331{bottom:295.248000px;}
.y19c{bottom:295.275000px;}
.ybb{bottom:295.535911px;}
.y15b{bottom:295.987500px;}
.y67{bottom:296.010000px;}
.y3d9{bottom:298.431000px;}
.y340{bottom:298.557188px;}
.y2ec{bottom:299.130000px;}
.y2c5{bottom:299.131500px;}
.ya7{bottom:299.952000px;}
.y15{bottom:301.023000px;}
.y76{bottom:302.550127px;}
.y3a3{bottom:303.237000px;}
.y192{bottom:303.270000px;}
.y3d{bottom:304.960500px;}
.y27b{bottom:305.260500px;}
.y12a{bottom:306.022500px;}
.y311{bottom:306.171000px;}
.y1cc{bottom:307.068000px;}
.y2d0{bottom:309.525476px;}
.y210{bottom:309.622500px;}
.y24b{bottom:310.042500px;}
.y1f0{bottom:310.969500px;}
.y182{bottom:312.537000px;}
.y144{bottom:313.150500px;}
.y325{bottom:313.165500px;}
.y330{bottom:313.180500px;}
.y19b{bottom:313.207500px;}
.y103{bottom:313.341000px;}
.y15a{bottom:313.921500px;}
.y66{bottom:313.942500px;}
.y2a2{bottom:314.806968px;}
.y2eb{bottom:317.062500px;}
.y2c4{bottom:317.065500px;}
.y82{bottom:317.325865px;}
.y36a{bottom:317.419500px;}
.ya6{bottom:317.884500px;}
.y2d8{bottom:318.135906px;}
.y3a2{bottom:321.169500px;}
.y3f3{bottom:321.296783px;}
.y3e6{bottom:322.007154px;}
.y3c{bottom:322.893000px;}
.y27a{bottom:323.193000px;}
.y129{bottom:323.955000px;}
.ye7{bottom:324.634500px;}
.y1cb{bottom:325.000500px;}
.y3b8{bottom:325.872000px;}
.y3e1{bottom:326.102236px;}
.y102{bottom:327.537000px;}
.y24a{bottom:327.975000px;}
.y181{bottom:330.469500px;}
.y143{bottom:331.083000px;}
.y238{bottom:331.098000px;}
.y32f{bottom:331.113000px;}
.y29b{bottom:331.570500px;}
.y159{bottom:331.854000px;}
.y65{bottom:331.875000px;}
.y75{bottom:332.386619px;}
.y3d8{bottom:334.296000px;}
.y2ea{bottom:334.995000px;}
.y2c3{bottom:334.998000px;}
.y369{bottom:335.352000px;}
.ya5{bottom:335.817000px;}
.y1e0{bottom:335.972813px;}
.y341{bottom:337.398750px;}
.y3b4{bottom:338.624272px;}
.y28a{bottom:339.014280px;}
.y3a1{bottom:339.102000px;}
.y37c{bottom:340.020000px;}
.y3b7{bottom:340.068000px;}
.y85{bottom:340.678500px;}
.y3b{bottom:340.825500px;}
.y279{bottom:341.125500px;}
.y128{bottom:341.887500px;}
.y310{bottom:342.036000px;}
.yba{bottom:342.411848px;}
.y14{bottom:342.867000px;}
.y1ca{bottom:342.934500px;}
.y249{bottom:345.907500px;}
.y1ef{bottom:346.834500px;}
.y20f{bottom:348.387000px;}
.y180{bottom:348.402000px;}
.y142{bottom:349.015500px;}
.y237{bottom:349.030500px;}
.y32e{bottom:349.045500px;}
.yf4{bottom:349.586250px;}
.y19a{bottom:349.768500px;}
.y64{bottom:349.807500px;}
.ye6{bottom:351.534000px;}
.y3d7{bottom:352.228500px;}
.yef{bottom:352.418437px;}
.y83{bottom:352.772638px;}
.y2e9{bottom:352.927500px;}
.y368{bottom:353.284500px;}
.y3a0{bottom:357.034500px;}
.y3a{bottom:358.759500px;}
.y278{bottom:359.058000px;}
.y127{bottom:359.820000px;}
.y30f{bottom:359.968500px;}
.y1c9{bottom:360.867000px;}
.y74{bottom:362.223110px;}
.y248{bottom:363.840000px;}
.y2d9{bottom:364.428221px;}
.y1ee{bottom:364.767000px;}
.y3ae{bottom:364.950220px;}
.y71{bottom:365.560778px;}
.y20e{bottom:366.319500px;}
.y17f{bottom:366.334500px;}
.y236{bottom:366.964500px;}
.y32d{bottom:366.979500px;}
.y13{bottom:369.766500px;}
.y3d6{bottom:370.162500px;}
.y199{bottom:370.690500px;}
.ya4{bottom:371.682000px;}
.y2c2{bottom:372.030000px;}
.y39f{bottom:374.968500px;}
.y37b{bottom:375.885000px;}
.y342{bottom:376.240312px;}
.y39{bottom:376.692000px;}
.y277{bottom:376.992000px;}
.y126{bottom:377.754000px;}
.y30e{bottom:377.901000px;}
.y1c8{bottom:378.799500px;}
.y3f4{bottom:379.937241px;}
.y3e7{bottom:380.355107px;}
.y29a{bottom:380.572500px;}
.y158{bottom:380.739000px;}
.y247{bottom:381.774000px;}
.y141{bottom:382.002000px;}
.y1ed{bottom:382.699500px;}
.y28b{bottom:383.349810px;}
.y17e{bottom:384.267000px;}
.y63{bottom:384.522000px;}
.y193{bottom:384.840000px;}
.y324{bottom:384.897000px;}
.y32c{bottom:384.912000px;}
.y1e1{bottom:387.026250px;}
.y2e8{bottom:388.794000px;}
.y367{bottom:389.151000px;}
.yb9{bottom:389.287786px;}
.ya3{bottom:389.614500px;}
.y2c1{bottom:389.962500px;}
.y39e{bottom:392.901000px;}
.y37a{bottom:393.817500px;}
.y38{bottom:394.624500px;}
.y299{bottom:394.768500px;}
.y276{bottom:394.924500px;}
.y125{bottom:395.686500px;}
.y30d{bottom:395.835000px;}
.y1c7{bottom:396.732000px;}
.y157{bottom:398.673000px;}
.y13c{bottom:398.715000px;}
.y2dd{bottom:398.734936px;}
.y246{bottom:399.706500px;}
.y140{bottom:399.934500px;}
.y1ec{bottom:400.632000px;}
.y17d{bottom:402.201000px;}
.y62{bottom:402.454500px;}
.y235{bottom:402.829500px;}
.y32b{bottom:402.844500px;}
.y3d5{bottom:406.027500px;}
.y2e7{bottom:406.726500px;}
.y366{bottom:407.083500px;}
.ya2{bottom:407.548500px;}
.y2c0{bottom:407.896500px;}
.y39d{bottom:410.833500px;}
.y12{bottom:411.609000px;}
.y379{bottom:411.751500px;}
.y37{bottom:412.557000px;}
.y275{bottom:412.857000px;}
.y124{bottom:413.619000px;}
.y30c{bottom:413.767500px;}
.y1c6{bottom:414.664500px;}
.y343{bottom:415.081875px;}
.y20d{bottom:416.068500px;}
.y1eb{bottom:418.566000px;}
.y284{bottom:419.650558px;}
.y17c{bottom:420.133500px;}
.y234{bottom:420.762000px;}
.y32a{bottom:420.777000px;}
.yf5{bottom:422.662500px;}
.y3d4{bottom:423.960000px;}
.y156{bottom:424.114500px;}
.y2e6{bottom:424.659000px;}
.y365{bottom:425.016000px;}
.ya1{bottom:425.481000px;}
.y2bf{bottom:425.829000px;}
.y3ed{bottom:426.390378px;}
.y28c{bottom:427.685339px;}
.y3e0{bottom:428.382203px;}
.y39c{bottom:428.766000px;}
.y378{bottom:429.684000px;}
.ye5{bottom:429.699000px;}
.y36{bottom:430.489500px;}
.y274{bottom:430.789500px;}
.y123{bottom:431.551500px;}
.y30b{bottom:431.700000px;}
.y1c5{bottom:432.598500px;}
.y84{bottom:433.116655px;}
.y198{bottom:434.736000px;}
.y13f{bottom:436.084500px;}
.yb8{bottom:436.178723px;}
.y17b{bottom:438.066000px;}
.y1e2{bottom:438.079687px;}
.y11{bottom:438.508500px;}
.y3f5{bottom:438.563771px;}
.y233{bottom:438.694500px;}
.y3e8{bottom:438.703060px;}
.y329{bottom:438.709500px;}
.y61{bottom:439.015500px;}
.y3d3{bottom:441.892500px;}
.y2e5{bottom:442.591500px;}
.y364{bottom:442.948500px;}
.ya0{bottom:443.413500px;}
.y2be{bottom:443.761500px;}
.ybe{bottom:446.993940px;}
.y377{bottom:447.616500px;}
.y273{bottom:448.722000px;}
.y197{bottom:448.933500px;}
.y245{bottom:449.454000px;}
.y122{bottom:449.484000px;}
.y30a{bottom:449.632500px;}
.y1c4{bottom:450.531000px;}
.y20c{bottom:451.933500px;}
.y17a{bottom:455.998500px;}
.y232{bottom:456.627000px;}
.y328{bottom:456.642000px;}
.y3d2{bottom:459.825000px;}
.y2e4{bottom:460.524000px;}
.y363{bottom:460.881000px;}
.y155{bottom:461.253000px;}
.y2bd{bottom:461.694000px;}
.y39b{bottom:464.631000px;}
.y1ea{bottom:465.232500px;}
.y10{bottom:465.406500px;}
.y376{bottom:465.549000px;}
.y194{bottom:466.425000px;}
.y272{bottom:466.654500px;}
.y35{bottom:467.050500px;}
.y244{bottom:467.388000px;}
.y121{bottom:467.416500px;}
.y309{bottom:467.565000px;}
.y1c3{bottom:468.463500px;}
.y72{bottom:468.518425px;}
.y20b{bottom:469.866000px;}
.y3b6{bottom:470.530482px;}
.y28d{bottom:472.020869px;}
.y18e{bottom:473.814000px;}
.y179{bottom:473.931000px;}
.y231{bottom:474.561000px;}
.y3d1{bottom:477.759000px;}
.y362{bottom:478.815000px;}
.y9f{bottom:479.278500px;}
.y2bc{bottom:479.626500px;}
.y3ec{bottom:482.495364px;}
.y39a{bottom:482.565000px;}
.yb7{bottom:483.054661px;}
.y375{bottom:483.481500px;}
.y271{bottom:484.588500px;}
.ybf{bottom:484.629692px;}
.ye4{bottom:485.320500px;}
.y120{bottom:485.350500px;}
.y308{bottom:485.497500px;}
.y1c2{bottom:486.396000px;}
.y20a{bottom:487.800000px;}
.y1e3{bottom:489.133125px;}
.y1db{bottom:490.114031px;}
.y178{bottom:491.863500px;}
.yf{bottom:492.306000px;}
.y323{bottom:492.493500px;}
.y3d0{bottom:495.691500px;}
.yf6{bottom:495.738750px;}
.y2e3{bottom:496.390500px;}
.y361{bottom:496.747500px;}
.y9e{bottom:497.212500px;}
.y13e{bottom:498.958500px;}
.y34a{bottom:499.455938px;}
.y399{bottom:500.497500px;}
.y270{bottom:502.521000px;}
.ye3{bottom:503.253000px;}
.y11f{bottom:503.283000px;}
.y1c1{bottom:504.328500px;}
.y209{bottom:505.732500px;}
.y196{bottom:506.715000px;}
.y154{bottom:507.067500px;}
.y60{bottom:509.697000px;}
.y177{bottom:509.797500px;}
.y101{bottom:509.925000px;}
.y230{bottom:510.426000px;}
.y13d{bottom:513.154500px;}
.y3cf{bottom:513.624000px;}
.y2e2{bottom:514.323000px;}
.y360{bottom:514.680000px;}
.y9d{bottom:515.145000px;}
.y28e{bottom:516.342469px;}
.y398{bottom:518.430000px;}
.y26f{bottom:520.453500px;}
.y243{bottom:521.185500px;}
.y11e{bottom:521.215500px;}
.y307{bottom:521.364000px;}
.y1c0{bottom:522.261000px;}
.yc0{bottom:522.265445px;}
.y208{bottom:523.665000px;}
.y153{bottom:525.001500px;}
.y34{bottom:525.672000px;}
.y2bb{bottom:527.296500px;}
.y5f{bottom:527.629500px;}
.y176{bottom:527.730000px;}
.y22f{bottom:528.358500px;}
.yb6{bottom:529.930598px;}
.y3ce{bottom:531.556500px;}
.y2e1{bottom:532.255500px;}
.y35f{bottom:532.612500px;}
.ye{bottom:534.150000px;}
.y397{bottom:536.362500px;}
.y135{bottom:538.036500px;}
.y26e{bottom:538.386000px;}
.ye2{bottom:539.118000px;}
.y11d{bottom:539.148000px;}
.y306{bottom:539.296500px;}
.y1bf{bottom:540.195000px;}
.y207{bottom:541.597500px;}
.y33{bottom:543.604500px;}
.y5e{bottom:545.562000px;}
.y175{bottom:545.662500px;}
.y22e{bottom:546.291000px;}
.y297{bottom:548.197749px;}
.y3cd{bottom:549.489000px;}
.y2e0{bottom:550.188000px;}
.y35e{bottom:550.545000px;}
.y9c{bottom:551.010000px;}
.y26d{bottom:556.318500px;}
.ye1{bottom:557.050500px;}
.y11c{bottom:557.080500px;}
.y305{bottom:557.229000px;}
.y1be{bottom:558.127500px;}
.y206{bottom:559.530000px;}
.yc1{bottom:559.901198px;}
.yd{bottom:561.048000px;}
.y32{bottom:561.537000px;}
.y152{bottom:562.567500px;}
.y5d{bottom:563.494500px;}
.y174{bottom:563.595000px;}
.y22d{bottom:564.223500px;}
.y2ba{bottom:564.330000px;}
.y3cc{bottom:567.421500px;}
.y2df{bottom:568.120500px;}
.y35d{bottom:568.477500px;}
.y9b{bottom:568.942500px;}
.y396{bottom:572.229000px;}
.y26c{bottom:574.251000px;}
.ye0{bottom:574.984500px;}
.y11b{bottom:575.013000px;}
.y304{bottom:575.161500px;}
.y1bd{bottom:576.060000px;}
.y339{bottom:576.619688px;}
.yb5{bottom:576.806536px;}
.y31{bottom:579.469500px;}
.y5c{bottom:581.427000px;}
.y22c{bottom:582.157500px;}
.y298{bottom:582.783084px;}
.y3cb{bottom:585.355500px;}
.y35c{bottom:586.411500px;}
.y9a{bottom:586.875000px;}
.yc{bottom:587.947500px;}
.y395{bottom:590.161500px;}
.y26b{bottom:592.185000px;}
.y242{bottom:592.917000px;}
.y11a{bottom:592.947000px;}
.y303{bottom:593.094000px;}
.y2ce{bottom:593.992500px;}
.y30{bottom:597.403500px;}
.yc2{bottom:597.536950px;}
.y5b{bottom:599.361000px;}
.y22b{bottom:600.090000px;}
.y3ca{bottom:603.288000px;}
.y35b{bottom:604.344000px;}
.y99{bottom:604.809000px;}
.y394{bottom:608.094000px;}
.y205{bottom:609.285000px;}
.y26a{bottom:610.117500px;}
.ydf{bottom:610.849500px;}
.y119{bottom:610.879500px;}
.y1bc{bottom:611.925000px;}
.y2b9{bottom:612.000000px;}
.y173{bottom:613.425000px;}
.yb{bottom:614.847000px;}
.y2f{bottom:615.336000px;}
.y22a{bottom:618.022500px;}
.y3c9{bottom:621.220500px;}
.y35a{bottom:622.276500px;}
.y98{bottom:622.741500px;}
.y2de{bottom:623.100000px;}
.yb4{bottom:623.682473px;}
.y204{bottom:627.217500px;}
.y269{bottom:628.050000px;}
.yde{bottom:628.782000px;}
.y302{bottom:628.960500px;}
.y1bb{bottom:629.857500px;}
.y2b8{bottom:629.932500px;}
.y172{bottom:631.357500px;}
.y2e{bottom:633.268500px;}
.yc3{bottom:635.172703px;}
.y5a{bottom:635.226000px;}
.y229{bottom:635.955000px;}
.y3c8{bottom:639.153000px;}
.y359{bottom:640.209000px;}
.y97{bottom:640.674000px;}
.y393{bottom:643.959000px;}
.y203{bottom:645.150000px;}
.y268{bottom:645.982500px;}
.ydd{bottom:646.714500px;}
.y118{bottom:646.744500px;}
.y301{bottom:646.893000px;}
.y1ba{bottom:647.791500px;}
.y2b7{bottom:647.865000px;}
.y2d1{bottom:647.981399px;}
.y171{bottom:649.290000px;}
.y2d{bottom:651.201000px;}
.y59{bottom:653.158500px;}
.y228{bottom:653.887500px;}
.ya{bottom:656.689500px;}
.y3c7{bottom:657.085500px;}
.y358{bottom:658.141500px;}
.y96{bottom:658.606500px;}
.y392{bottom:661.891500px;}
.y202{bottom:663.082500px;}
.y267{bottom:663.915000px;}
.ydc{bottom:664.647000px;}
.y117{bottom:664.677000px;}
.y300{bottom:664.825500px;}
.y1b9{bottom:665.724000px;}
.y2b6{bottom:665.799000px;}
.y170{bottom:667.222500px;}
.y2c{bottom:669.133500px;}
.y227{bottom:671.820000px;}
.y3c6{bottom:675.018000px;}
.y357{bottom:676.074000px;}
.y95{bottom:676.539000px;}
.y391{bottom:679.825500px;}
.y266{bottom:681.847500px;}
.ydb{bottom:682.581000px;}
.y116{bottom:682.609500px;}
.y9{bottom:683.589000px;}
.y1b8{bottom:683.656500px;}
.y2b5{bottom:683.731500px;}
.y201{bottom:688.525500px;}
.y58{bottom:689.023500px;}
.y226{bottom:689.754000px;}
.y2cf{bottom:692.653633px;}
.y16f{bottom:692.665500px;}
.y3c5{bottom:692.952000px;}
.y356{bottom:694.008000px;}
.y94{bottom:694.471500px;}
.y390{bottom:697.758000px;}
.y265{bottom:699.781500px;}
.yda{bottom:700.513500px;}
.y115{bottom:700.543500px;}
.y2ff{bottom:700.690500px;}
.y1b7{bottom:701.589000px;}
.y322{bottom:704.860500px;}
.y2b{bottom:704.910000px;}
.y57{bottom:706.957500px;}
.y225{bottom:707.686500px;}
.y3c4{bottom:710.884500px;}
.y355{bottom:711.940500px;}
.y93{bottom:712.405500px;}
.yc4{bottom:713.909278px;}
.y38f{bottom:715.690500px;}
.yd9{bottom:718.446000px;}
.y114{bottom:718.476000px;}
.y2fe{bottom:718.624500px;}
.y1b6{bottom:719.521500px;}
.y2b4{bottom:719.596500px;}
.y321{bottom:722.793000px;}
.y56{bottom:724.890000px;}
.y8{bottom:725.431500px;}
.y224{bottom:725.619000px;}
.y200{bottom:725.664000px;}
.y3c3{bottom:728.817000px;}
.y16e{bottom:729.804000px;}
.y92{bottom:730.338000px;}
.y2a{bottom:731.809500px;}
.y38e{bottom:733.623000px;}
.yd8{bottom:736.378500px;}
.y113{bottom:736.408500px;}
.y2fd{bottom:736.557000px;}
.y1b5{bottom:737.454000px;}
.y2b3{bottom:737.529000px;}
.y1d7{bottom:737.556844px;}
.yb2{bottom:738.509770px;}
.y320{bottom:740.725500px;}
.y55{bottom:742.822500px;}
.y223{bottom:743.551500px;}
.y264{bottom:743.986500px;}
.y3c2{bottom:746.749500px;}
.y354{bottom:747.715500px;}
.y91{bottom:748.270500px;}
.y29{bottom:749.742000px;}
.y38d{bottom:751.555500px;}
.y3fd{bottom:752.746500px;}
.yd7{bottom:754.311000px;}
.y112{bottom:754.341000px;}
.y2fc{bottom:754.489500px;}
.y1b4{bottom:755.388000px;}
.y2b2{bottom:755.461500px;}
.y54{bottom:760.755000px;}
.y222{bottom:761.484000px;}
.y3c1{bottom:764.682000px;}
.y353{bottom:765.648000px;}
.y3fc{bottom:770.679000px;}
.yd6{bottom:772.243500px;}
.y151{bottom:772.273500px;}
.y2fb{bottom:772.422000px;}
.y1b3{bottom:773.320500px;}
.y1ff{bottom:773.395500px;}
.y28{bottom:776.640000px;}
.y31f{bottom:776.866500px;}
.y16d{bottom:777.534000px;}
.y263{bottom:778.132500px;}
.y53{bottom:778.687500px;}
.y221{bottom:779.416500px;}
.y3c0{bottom:782.614500px;}
.y90{bottom:782.970000px;}
.y3ac{bottom:783.456448px;}
.y38c{bottom:786.181500px;}
.yd5{bottom:790.177500px;}
.y111{bottom:790.206000px;}
.y2fa{bottom:790.354500px;}
.y1b2{bottom:791.253000px;}
.y1fe{bottom:791.328000px;}
.y27{bottom:794.574000px;}
.y16c{bottom:795.466500px;}
.y262{bottom:796.065000px;}
.y3fb{bottom:796.122000px;}
.y52{bottom:796.620000px;}
.y220{bottom:797.350500px;}
.y31e{bottom:797.788500px;}
.y7{bottom:798.784500px;}
.y3bf{bottom:800.548500px;}
.y8f{bottom:800.902500px;}
.y352{bottom:802.209000px;}
.y38b{bottom:804.114000px;}
.y33b{bottom:806.354062px;}
.yd4{bottom:808.110000px;}
.y110{bottom:808.140000px;}
.y2f9{bottom:808.287000px;}
.y2cd{bottom:809.185500px;}
.y2b1{bottom:809.260500px;}
.y261{bottom:813.997500px;}
.y3be{bottom:818.481000px;}
.y26{bottom:821.472000px;}
.y38a{bottom:822.046500px;}
.yd3{bottom:826.042500px;}
.y10f{bottom:826.072500px;}
.y2f8{bottom:826.221000px;}
.y1b1{bottom:827.118000px;}
.y1fd{bottom:830.092500px;}
.y260{bottom:831.930000px;}
.y51{bottom:832.486500px;}
.y21f{bottom:833.215500px;}
.y3fa{bottom:833.260500px;}
.y16b{bottom:834.231000px;}
.y3bd{bottom:836.413500px;}
.y8e{bottom:837.463500px;}
.y25{bottom:839.406000px;}
.y31d{bottom:842.071500px;}
.y6{bottom:842.391000px;}
.yd2{bottom:843.975000px;}
.y10e{bottom:844.005000px;}
.y2f7{bottom:844.153500px;}
.y1b0{bottom:845.050500px;}
.y2b0{bottom:845.125500px;}
.y1fc{bottom:848.025000px;}
.y25f{bottom:849.862500px;}
.y50{bottom:850.419000px;}
.y21e{bottom:851.148000px;}
.y16a{bottom:852.165000px;}
.y3bc{bottom:854.346000px;}
.y24{bottom:857.338500px;}
.y389{bottom:858.607500px;}
.yd1{bottom:861.907500px;}
.y10d{bottom:861.937500px;}
.y2f6{bottom:862.086000px;}
.y351{bottom:862.182000px;}
.y1af{bottom:862.984500px;}
.y2af{bottom:863.058000px;}
.y5{bottom:863.313000px;}
.y25e{bottom:867.796500px;}
.y4f{bottom:868.351500px;}
.y31c{bottom:868.971000px;}
.y21d{bottom:869.080500px;}
.y3bb{bottom:872.278500px;}
.y388{bottom:879.528000px;}
.yd0{bottom:879.840000px;}
.y150{bottom:879.870000px;}
.y350{bottom:880.114500px;}
.y1ae{bottom:880.917000px;}
.y2ae{bottom:880.992000px;}
.y4{bottom:884.233500px;}
.y23{bottom:884.236500px;}
.y25d{bottom:885.729000px;}
.y4e{bottom:886.284000px;}
.y21c{bottom:887.013000px;}
.y3ba{bottom:890.211000px;}
.ycf{bottom:897.774000px;}
.y10c{bottom:897.802500px;}
.y34f{bottom:898.047000px;}
.y1ad{bottom:898.849500px;}
.y2ad{bottom:898.924500px;}
.y169{bottom:901.912500px;}
.y22{bottom:902.170500px;}
.y25c{bottom:903.661500px;}
.y4d{bottom:904.216500px;}
.y8d{bottom:908.145000px;}
.y2f5{bottom:912.991500px;}
.yce{bottom:915.706500px;}
.y10b{bottom:915.736500px;}
.y34e{bottom:915.979500px;}
.y1ac{bottom:916.782000px;}
.y2ac{bottom:916.857000px;}
.y168{bottom:919.845000px;}
.y21{bottom:920.103000px;}
.y21b{bottom:921.153000px;}
.y25b{bottom:921.594000px;}
.y387{bottom:924.229500px;}
.y8c{bottom:926.077500px;}
.y2f4{bottom:930.924000px;}
.ycd{bottom:933.639000px;}
.y14f{bottom:933.669000px;}
.y1ab{bottom:934.714500px;}
.y2ab{bottom:934.789500px;}
.y31b{bottom:935.751000px;}
.y3{bottom:936.538500px;}
.y3f9{bottom:937.689000px;}
.y167{bottom:937.779000px;}
.y20{bottom:938.035500px;}
.y4c{bottom:938.842500px;}
.y21a{bottom:939.085500px;}
.y25a{bottom:939.526500px;}
.y34d{bottom:941.422500px;}
.y8b{bottom:944.010000px;}
.y386{bottom:951.129000px;}
.ycc{bottom:951.571500px;}
.y10a{bottom:951.601500px;}
.y1aa{bottom:952.647000px;}
.y2aa{bottom:952.722000px;}
.y31a{bottom:953.683500px;}
.y3f8{bottom:955.621500px;}
.y166{bottom:955.711500px;}
.y2f3{bottom:956.367000px;}
.y4b{bottom:956.775000px;}
.y219{bottom:957.018000px;}
.y259{bottom:957.459000px;}
.y8a{bottom:961.942500px;}
.y2{bottom:969.414000px;}
.ycb{bottom:969.504000px;}
.y109{bottom:969.534000px;}
.y1a9{bottom:970.581000px;}
.y2a9{bottom:970.654500px;}
.y319{bottom:971.616000px;}
.y165{bottom:973.644000px;}
.y258{bottom:975.393000px;}
.y34c{bottom:978.561000px;}
.y1f{bottom:979.749000px;}
.y89{bottom:979.875000px;}
.yca{bottom:987.436500px;}
.y108{bottom:987.466500px;}
.y1a8{bottom:988.513500px;}
.y2a8{bottom:988.588500px;}
.y318{bottom:989.548500px;}
.y1d9{bottom:990.544969px;}
.y257{bottom:993.325500px;}
.y4a{bottom:993.336000px;}
.y218{bottom:993.457500px;}
.y2f2{bottom:993.504000px;}
.y88{bottom:997.807500px;}
.y1{bottom:1002.291000px;}
.yc9{bottom:1005.370500px;}
.y107{bottom:1005.400500px;}
.y1a7{bottom:1006.446000px;}
.y2a7{bottom:1006.521000px;}
.y317{bottom:1007.481000px;}
.y164{bottom:1011.258000px;}
.y3b9{bottom:1015.741500px;}
.y385{bottom:1018.689000px;}
.yc8{bottom:1023.303000px;}
.y106{bottom:1023.333000px;}
.y1a6{bottom:1024.378500px;}
.y34b{bottom:1026.291000px;}
.y163{bottom:1029.190500px;}
.y316{bottom:1032.924000px;}
.y87{bottom:1033.674000px;}
.y384{bottom:1036.623000px;}
.y49{bottom:1038.037500px;}
.y1e{bottom:1038.157500px;}
.yc7{bottom:1041.235500px;}
.y105{bottom:1041.265500px;}
.y1a5{bottom:1042.311000px;}
.y2a6{bottom:1042.386000px;}
.y162{bottom:1047.123000px;}
.y86{bottom:1051.606500px;}
.yc6{bottom:1059.168000px;}
.y104{bottom:1059.198000px;}
.y1a4{bottom:1060.243500px;}
.y2a5{bottom:1060.318500px;}
.y383{bottom:1062.064500px;}
.y48{bottom:1064.937000px;}
.y1d{bottom:1065.055500px;}
.y315{bottom:1070.062500px;}
.h1d{height:19.999688px;}
.h2d{height:21.145312px;}
.h2e{height:24.166555px;}
.h1f{height:35.581719px;}
.h20{height:35.591309px;}
.hb{height:35.865450px;}
.h30{height:40.665636px;}
.h11{height:40.675781px;}
.h31{height:40.676595px;}
.h25{height:40.678670px;}
.h14{height:40.698401px;}
.h5{height:41.484266px;}
.h4{height:44.831700px;}
.h1e{height:45.760254px;}
.h24{height:46.487537px;}
.h34{height:46.496579px;}
.h12{height:49.860586px;}
.h13{height:49.909336px;}
.h18{height:50.062500px;}
.he{height:50.063501px;}
.ha{height:50.065003px;}
.h21{height:50.844727px;}
.h2{height:51.216077px;}
.h33{height:52.298479px;}
.h6{height:53.798400px;}
.h15{height:55.929199px;}
.h2a{height:56.323129px;}
.h27{height:58.109421px;}
.h22{height:58.702332px;}
.h16{height:61.013672px;}
.h1a{height:62.578125px;}
.hf{height:62.579377px;}
.h9{height:62.581254px;}
.h26{height:63.920363px;}
.h3{height:64.557900px;}
.h19{height:68.835938px;}
.h2c{height:68.839379px;}
.h28{height:69.731305px;}
.h1{height:73.027727px;}
.h1c{height:77.806641px;}
.hd{height:81.353190px;}
.h8{height:81.355630px;}
.h35{height:82.083801px;}
.h29{height:324.076203px;}
.h32{height:408.449597px;}
.h36{height:410.441423px;}
.h17{height:432.000000px;}
.h2b{height:432.021600px;}
.h7{height:486.024300px;}
.h2f{height:501.438600px;}
.h10{height:526.500000px;}
.h1b{height:540.000000px;}
.h23{height:601.726320px;}
.hc{height:756.015120px;}
.h0{height:1188.000000px;}
.w9{width:211.802093px;}
.w8{width:323.821875px;}
.w5{width:324.601875px;}
.w4{width:540.000000px;}
.w7{width:589.529475px;}
.wa{width:638.846705px;}
.w2{width:648.012960px;}
.w1{width:648.032400px;}
.w3{width:702.000000px;}
.w6{width:702.014040px;}
.w0{width:918.000000px;}
.x4b{left:-3.840000px;}
.x0{left:0.000000px;}
.x93{left:15.953437px;}
.x3c{left:17.391563px;}
.x4a{left:19.320000px;}
.x60{left:21.600000px;}
.xa6{left:23.929764px;}
.x30{left:25.069688px;}
.x47{left:26.685000px;}
.x74{left:28.442712px;}
.x6b{left:30.456563px;}
.x46{left:33.360000px;}
.x75{left:34.947485px;}
.x82{left:37.636882px;}
.x5e{left:39.660000px;}
.x9d{left:42.343704px;}
.x9b{left:45.045901px;}
.x5d{left:46.320000px;}
.x45{left:53.370000px;}
.x31{left:56.001562px;}
.x48{left:60.105000px;}
.x65{left:64.849687px;}
.x9f{left:66.426686px;}
.x63{left:77.293125px;}
.x12{left:78.918946px;}
.x67{left:80.327813px;}
.x25{left:84.916698px;}
.xa0{left:93.810805px;}
.x32{left:98.182500px;}
.x13{left:100.865043px;}
.x26{left:101.942039px;}
.x8f{left:104.678437px;}
.x8{left:108.000000px;}
.x66{left:110.053125px;}
.x6d{left:111.087000px;}
.x84{left:114.770738px;}
.x61{left:115.980000px;}
.x1{left:117.699000px;}
.x90{left:121.984688px;}
.xe{left:123.691500px;}
.x2{left:126.888000px;}
.x8e{left:127.968750px;}
.x9{left:130.416000px;}
.x98{left:131.536500px;}
.x85{left:133.633500px;}
.x11{left:134.986349px;}
.x20{left:139.383000px;}
.xc{left:141.634500px;}
.x4{left:142.795500px;}
.x33{left:145.116562px;}
.x96{left:147.228000px;}
.x14{left:148.342417px;}
.x27{left:149.417988px;}
.x62{left:151.738500px;}
.x9a{left:153.798059px;}
.x24{left:155.073000px;}
.x5c{left:162.919500px;}
.xa{left:164.787000px;}
.x76{left:169.291243px;}
.x4c{left:170.764500px;}
.x5{left:172.002000px;}
.xf{left:178.609500px;}
.x10{left:186.456000px;}
.x44{left:189.000000px;}
.xa4{left:193.987094px;}
.x15{left:195.834791px;}
.x28{left:196.908938px;}
.x6f{left:201.754500px;}
.x72{left:209.992500px;}
.xa7{left:212.331389px;}
.x34{left:216.401250px;}
.x3f{left:217.837500px;}
.x4d{left:225.684000px;}
.x6{left:227.002500px;}
.x88{left:228.325500px;}
.x7b{left:232.054641px;}
.x73{left:233.529000px;}
.x68{left:236.084062px;}
.x52{left:238.896000px;}
.x5f{left:239.955000px;}
.x2f{left:241.404000px;}
.x16{left:243.327166px;}
.x29{left:244.399888px;}
.x83{left:247.422371px;}
.x21{left:249.220500px;}
.x87{left:255.726000px;}
.x6e{left:257.065500px;}
.x1f{left:260.544000px;}
.x41{left:264.912000px;}
.x91{left:266.820938px;}
.x4f{left:270.220500px;}
.x22{left:272.757000px;}
.x35{left:275.388750px;}
.x49{left:279.030000px;}
.xd{left:280.602000px;}
.x77{left:284.691765px;}
.x8a{left:288.448500px;}
.x17{left:290.804540px;}
.x2a{left:291.875837px;}
.xa3{left:293.856948px;}
.x23{left:296.293500px;}
.x94{left:302.067188px;}
.x81{left:304.140000px;}
.x6c{left:311.914688px;}
.x95{left:314.011500px;}
.x3d{left:324.150937px;}
.x3e{left:325.589063px;}
.x80{left:327.676500px;}
.x4e{left:332.806500px;}
.x7c{left:334.543119px;}
.x36{left:335.741250px;}
.x18{left:338.296914px;}
.x2b{left:339.366787px;}
.x89{left:343.368000px;}
.x8b{left:346.663500px;}
.xa2{left:349.154483px;}
.x42{left:351.213000px;}
.x51{left:353.430000px;}
.x70{left:355.045500px;}
.x40{left:359.058000px;}
.x9c{left:372.536719px;}
.x3{left:373.900500px;}
.x50{left:382.596000px;}
.x19{left:385.789289px;}
.x2c{left:386.842737px;}
.x53{left:391.990500px;}
.x78{left:399.298343px;}
.x37{left:404.893125px;}
.x97{left:406.132500px;}
.x69{left:410.986875px;}
.x7{left:417.450000px;}
.x5b{left:421.822500px;}
.x71{left:425.824500px;}
.x7e{left:429.669000px;}
.x1a{left:433.266662px;}
.x2d{left:434.333686px;}
.x7d{left:437.514000px;}
.x86{left:445.360500px;}
.x43{left:451.528500px;}
.xb{left:455.263500px;}
.x54{left:460.500000px;}
.x38{left:461.857500px;}
.x64{left:479.329969px;}
.x1b{left:480.759037px;}
.x2e{left:481.824636px;}
.xa5{left:484.626478px;}
.xa8{left:487.844042px;}
.x8d{left:492.433500px;}
.x79{left:511.314155px;}
.x1c{left:514.390718px;}
.x7f{left:515.970000px;}
.x39{left:519.845625px;}
.xa1{left:531.288126px;}
.x55{left:552.696000px;}
.x6a{left:566.743125px;}
.x1e{left:569.113454px;}
.x3a{left:587.084062px;}
.x9e{left:591.275380px;}
.x92{left:596.712188px;}
.x7a{left:621.644576px;}
.x57{left:624.082500px;}
.x1d{left:625.921295px;}
.x3b{left:636.321563px;}
.x56{left:668.092500px;}
.x59{left:695.469000px;}
.x58{left:739.479000px;}
.x5a{left:802.447500px;}
.x99{left:814.102500px;}
.x8c{left:931.786500px;}
@media print{
.v7{vertical-align:-27.090066pt;}
.v4{vertical-align:-9.954485pt;}
.v3{vertical-align:-7.930000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.v5{vertical-align:3.120000pt;}
.v1{vertical-align:17.203333pt;}
.v6{vertical-align:27.090066pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003387pt;}
.lse{letter-spacing:0.004333pt;}
.ls13{letter-spacing:0.008667pt;}
.lsf{letter-spacing:0.009905pt;}
.ls11{letter-spacing:0.010667pt;}
.ls12{letter-spacing:0.017333pt;}
.ls15{letter-spacing:0.019810pt;}
.ls10{letter-spacing:0.021334pt;}
.ls7{letter-spacing:0.034667pt;}
.ls16{letter-spacing:0.039620pt;}
.ls0{letter-spacing:26.566933pt;}
.ls5{letter-spacing:27.891387pt;}
.ls3{letter-spacing:27.896720pt;}
.ls4{letter-spacing:55.790053pt;}
.ls6{letter-spacing:83.688720pt;}
.ls14{letter-spacing:111.582053pt;}
.ls8{letter-spacing:139.475387pt;}
.lsd{letter-spacing:167.368720pt;}
.lsc{letter-spacing:167.374053pt;}
.lsb{letter-spacing:418.430053pt;}
.ls9{letter-spacing:502.115387pt;}
.lsa{letter-spacing:502.120720pt;}
.ws15{word-spacing:-27.895280pt;}
.ws3{word-spacing:-21.423659pt;}
.ws68{word-spacing:-18.666667pt;}
.wsb3{word-spacing:-17.333680pt;}
.ws90{word-spacing:-16.331483pt;}
.ws6a{word-spacing:-16.309333pt;}
.wsac{word-spacing:-15.164494pt;}
.ws86{word-spacing:-15.144684pt;}
.ws77{word-spacing:-14.877483pt;}
.ws27{word-spacing:-14.827408pt;}
.ws3a{word-spacing:-14.826963pt;}
.ws69{word-spacing:-14.666667pt;}
.ws5{word-spacing:-13.761671pt;}
.ws9e{word-spacing:-13.268667pt;}
.ws49{word-spacing:-13.251333pt;}
.wsb5{word-spacing:-12.381200pt;}
.ws74{word-spacing:-12.046667pt;}
.wsb1{word-spacing:-11.016458pt;}
.wsad{word-spacing:-11.014316pt;}
.ws75{word-spacing:-10.833333pt;}
.wsb4{word-spacing:-9.904960pt;}
.ws48{word-spacing:-9.642693pt;}
.ws85{word-spacing:-9.638018pt;}
.ws46{word-spacing:-9.637333pt;}
.wsab{word-spacing:-9.634929pt;}
.wsc{word-spacing:-9.579184pt;}
.ws73{word-spacing:-8.430395pt;}
.ws47{word-spacing:-6.500000pt;}
.ws14{word-spacing:-1.912819pt;}
.ws9b{word-spacing:-1.859685pt;}
.wsa3{word-spacing:-1.402743pt;}
.ws12{word-spacing:-1.328347pt;}
.wsb6{word-spacing:-0.722622pt;}
.ws79{word-spacing:-0.535591pt;}
.wsf{word-spacing:-0.212535pt;}
.ws9a{word-spacing:-0.159402pt;}
.ws22{word-spacing:-0.053134pt;}
.ws9d{word-spacing:-0.004400pt;}
.ws32{word-spacing:-0.003893pt;}
.ws9c{word-spacing:-0.003467pt;}
.ws81{word-spacing:-0.003040pt;}
.ws39{word-spacing:-0.002960pt;}
.ws4d{word-spacing:-0.002533pt;}
.ws38{word-spacing:-0.002453pt;}
.ws82{word-spacing:-0.002107pt;}
.ws7c{word-spacing:-0.002027pt;}
.ws60{word-spacing:-0.001600pt;}
.ws4f{word-spacing:-0.001520pt;}
.ws2a{word-spacing:-0.001093pt;}
.ws24{word-spacing:-0.001013pt;}
.ws83{word-spacing:-0.000667pt;}
.ws55{word-spacing:-0.000587pt;}
.ws1f{word-spacing:-0.000507pt;}
.ws30{word-spacing:-0.000160pt;}
.ws2c{word-spacing:-0.000080pt;}
.wsd{word-spacing:0.000000pt;}
.ws35{word-spacing:0.000347pt;}
.ws3d{word-spacing:0.000427pt;}
.ws5b{word-spacing:0.000773pt;}
.ws29{word-spacing:0.000853pt;}
.ws23{word-spacing:0.000933pt;}
.ws3c{word-spacing:0.001280pt;}
.ws40{word-spacing:0.001360pt;}
.ws50{word-spacing:0.001440pt;}
.ws37{word-spacing:0.001787pt;}
.ws2b{word-spacing:0.001867pt;}
.ws45{word-spacing:0.002213pt;}
.ws21{word-spacing:0.002293pt;}
.ws36{word-spacing:0.002373pt;}
.ws96{word-spacing:0.002720pt;}
.ws25{word-spacing:0.002800pt;}
.ws3e{word-spacing:0.002880pt;}
.ws3b{word-spacing:0.003227pt;}
.ws33{word-spacing:0.003307pt;}
.ws26{word-spacing:0.003733pt;}
.ws57{word-spacing:0.003813pt;}
.ws20{word-spacing:0.004240pt;}
.ws42{word-spacing:0.004320pt;}
.ws58{word-spacing:0.004667pt;}
.ws7e{word-spacing:0.004747pt;}
.ws31{word-spacing:0.004827pt;}
.ws41{word-spacing:0.005253pt;}
.ws91{word-spacing:0.005600pt;}
.ws5a{word-spacing:0.005680pt;}
.ws59{word-spacing:0.006613pt;}
.ws92{word-spacing:0.007120pt;}
.ws34{word-spacing:0.050094pt;}
.ws6f{word-spacing:0.051107pt;}
.ws4e{word-spacing:0.051614pt;}
.ws7f{word-spacing:0.052547pt;}
.ws51{word-spacing:0.053481pt;}
.ws7d{word-spacing:0.053561pt;}
.ws56{word-spacing:0.054494pt;}
.ws66{word-spacing:0.055001pt;}
.ws13{word-spacing:1.115811pt;}
.wsa4{word-spacing:1.540882pt;}
.ws1{word-spacing:1.928125pt;}
.ws0{word-spacing:2.019940pt;}
.wsb0{word-spacing:2.082853pt;}
.ws6c{word-spacing:2.125360pt;}
.ws99{word-spacing:2.167876pt;}
.ws10{word-spacing:2.497292pt;}
.ws5d{word-spacing:2.762961pt;}
.ws8{word-spacing:2.816095pt;}
.ws2{word-spacing:2.869248pt;}
.ws5c{word-spacing:3.103026pt;}
.ws28{word-spacing:3.145533pt;}
.wsa1{word-spacing:3.273054pt;}
.wsa7{word-spacing:3.570620pt;}
.ws1c{word-spacing:4.250709pt;}
.ws89{word-spacing:4.622646pt;}
.ws87{word-spacing:4.633285pt;}
.ws54{word-spacing:5.398414pt;}
.ws6{word-spacing:5.472788pt;}
.ws98{word-spacing:5.585454pt;}
.ws16{word-spacing:5.993540pt;}
.ws1b{word-spacing:6.057301pt;}
.ws44{word-spacing:6.482332pt;}
.ws11{word-spacing:6.535466pt;}
.ws4b{word-spacing:6.631123pt;}
.wsa6{word-spacing:7.039202pt;}
.ws1a{word-spacing:7.268741pt;}
.ws7a{word-spacing:7.651277pt;}
.ws6e{word-spacing:7.916946pt;}
.ws9{word-spacing:8.501419pt;}
.ws18{word-spacing:8.660820pt;}
.ws17{word-spacing:8.713954pt;}
.wsb{word-spacing:8.767088pt;}
.ws7b{word-spacing:9.882899pt;}
.ws88{word-spacing:9.946699pt;}
.wsa9{word-spacing:10.467372pt;}
.wsa8{word-spacing:10.839309pt;}
.ws6d{word-spacing:11.476992pt;}
.ws4a{word-spacing:11.678333pt;}
.ws7{word-spacing:11.689451pt;}
.ws1d{word-spacing:13.017797pt;}
.wsb2{word-spacing:13.322171pt;}
.wsb7{word-spacing:13.371696pt;}
.ws19{word-spacing:15.302613pt;}
.ws43{word-spacing:21.653198pt;}
.ws94{word-spacing:27.893680pt;}
.ws2e{word-spacing:27.894693pt;}
.ws95{word-spacing:27.896640pt;}
.ws8b{word-spacing:27.897067pt;}
.wsaa{word-spacing:27.898080pt;}
.ws3f{word-spacing:27.898160pt;}
.ws61{word-spacing:31.402115pt;}
.ws4{word-spacing:34.271344pt;}
.ws76{word-spacing:48.883157pt;}
.wsa2{word-spacing:49.786433pt;}
.wse{word-spacing:55.089408pt;}
.ws93{word-spacing:55.788960pt;}
.ws2d{word-spacing:55.789973pt;}
.ws8c{word-spacing:55.790560pt;}
.ws71{word-spacing:55.792853pt;}
.ws62{word-spacing:73.643539pt;}
.wsa5{word-spacing:74.971886pt;}
.ws84{word-spacing:83.684320pt;}
.ws80{word-spacing:83.687200pt;}
.ws2f{word-spacing:83.687627pt;}
.ws65{word-spacing:83.689653pt;}
.ws1e{word-spacing:83.690080pt;}
.ws64{word-spacing:85.651793pt;}
.ws9f{word-spacing:105.993333pt;}
.wsa0{word-spacing:108.402667pt;}
.ws8d{word-spacing:111.582400pt;}
.ws8a{word-spacing:111.585360pt;}
.ws78{word-spacing:117.850916pt;}
.wsae{word-spacing:121.187186pt;}
.wsaf{word-spacing:123.891240pt;}
.ws53{word-spacing:130.453333pt;}
.ws6b{word-spacing:131.941333pt;}
.ws4c{word-spacing:139.477680pt;}
.ws72{word-spacing:139.478693pt;}
.ws8e{word-spacing:167.374987pt;}
.ws63{word-spacing:192.006093pt;}
.ws70{word-spacing:278.955093pt;}
.ws97{word-spacing:327.143630pt;}
.ws5e{word-spacing:335.278236pt;}
.ws5f{word-spacing:335.281969pt;}
.ws52{word-spacing:354.666667pt;}
.ws8f{word-spacing:407.775054pt;}
.ws67{word-spacing:573.877333pt;}
.wsa{word-spacing:2080.917647pt;}
._64{margin-left:-230.701490pt;}
._65{margin-left:-203.934274pt;}
._66{margin-left:-115.459892pt;}
._42{margin-left:-73.250341pt;}
._67{margin-left:-60.455710pt;}
._68{margin-left:-39.839835pt;}
._e{margin-left:-31.030178pt;}
._d{margin-left:-28.054682pt;}
._b{margin-left:-26.566933pt;}
._25{margin-left:-25.079185pt;}
._c{margin-left:-8.820222pt;}
._3{margin-left:-7.069791pt;}
._6{margin-left:-5.738484pt;}
._7{margin-left:-4.590809pt;}
._32{margin-left:-3.549339pt;}
._0{margin-left:-2.295387pt;}
._5{margin-left:-1.083950pt;}
._1c{width:0.892710pt;}
._1{width:2.295387pt;}
._f{width:3.987311pt;}
._87{width:10.223026pt;}
._27{width:13.772237pt;}
._28{width:16.471499pt;}
._15{width:17.746711pt;}
._23{width:19.457561pt;}
._2a{width:21.221700pt;}
._29{width:23.381888pt;}
._21{width:24.292742pt;}
._1e{width:26.074371pt;}
._12{width:27.098272pt;}
._86{width:28.171580pt;}
._33{width:30.392732pt;}
._20{width:33.261801pt;}
._19{width:34.923826pt;}
._2{width:36.909818pt;}
._85{width:38.103502pt;}
._18{width:39.568829pt;}
._16{width:41.952446pt;}
._5b{width:43.688961pt;}
._1b{width:45.962005pt;}
._1d{width:47.509664pt;}
._11{width:49.148827pt;}
._22{width:50.756781pt;}
._14{width:54.249678pt;}
._2d{width:55.790560pt;}
._10{width:58.482662pt;}
._2b{width:63.761067pt;}
._31{width:67.101959pt;}
._41{width:68.914625pt;}
._2c{width:76.513067pt;}
._40{width:79.020263pt;}
._3f{width:81.294816pt;}
._24{width:83.679897pt;}
._17{width:85.022042pt;}
._4f{width:91.488663pt;}
._70{width:99.360331pt;}
._43{width:101.007481pt;}
._72{width:105.045654pt;}
._54{width:108.902691pt;}
._3b{width:111.581120pt;}
._4c{width:114.896417pt;}
._8a{width:117.279556pt;}
._3e{width:119.710602pt;}
._7e{width:121.676555pt;}
._6b{width:122.632964pt;}
._77{width:123.801909pt;}
._4e{width:133.007949pt;}
._5a{width:134.135953pt;}
._1a{width:135.690015pt;}
._2e{width:139.476400pt;}
._83{width:140.973061pt;}
._4{width:143.717433pt;}
._35{width:146.137440pt;}
._89{width:148.761522pt;}
._55{width:153.663142pt;}
._8{width:160.677888pt;}
._51{width:162.568807pt;}
._34{width:167.370587pt;}
._71{width:169.781637pt;}
._6f{width:173.595926pt;}
._53{width:180.267718pt;}
._76{width:184.296807pt;}
._7f{width:186.564080pt;}
._6c{width:192.220218pt;}
._9{width:194.664274pt;}
._78{width:196.845527pt;}
._7d{width:201.434474pt;}
._44{width:206.219957pt;}
._61{width:209.347733pt;}
._74{width:214.510400pt;}
._88{width:218.170096pt;}
._62{width:221.730992pt;}
._30{width:223.167920pt;}
._75{width:227.035718pt;}
._6a{width:234.026118pt;}
._45{width:236.152843pt;}
._81{width:239.689067pt;}
._6d{width:245.354084pt;}
._69{width:249.860785pt;}
._3a{width:251.058373pt;}
._7c{width:252.322501pt;}
._82{width:254.881052pt;}
._3c{width:278.046286pt;}
._2f{width:278.958480pt;}
._63{width:306.851307pt;}
._48{width:323.585052pt;}
._36{width:324.604551pt;}
._26{width:326.607935pt;}
._13{width:329.873093pt;}
._57{width:334.746080pt;}
._52{width:338.815658pt;}
._6e{width:351.809209pt;}
._38{width:355.901474pt;}
._39{width:362.641440pt;}
._4a{width:380.988106pt;}
._58{width:390.536640pt;}
._7b{width:391.650873pt;}
._1f{width:398.019893pt;}
._60{width:409.142830pt;}
._5e{width:418.435733pt;}
._3d{width:425.161097pt;}
._59{width:446.328640pt;}
._37{width:472.810410pt;}
._79{width:500.628433pt;}
._4b{width:546.470932pt;}
._5d{width:557.912133pt;}
._46{width:574.921910pt;}
._7a{width:578.692714pt;}
._4d{width:580.269459pt;}
._73{width:607.268103pt;}
._5f{width:614.496315pt;}
._50{width:615.550347pt;}
._56{width:641.596107pt;}
._80{width:656.471186pt;}
._47{width:731.554793pt;}
._49{width:766.835680pt;}
._84{width:822.503889pt;}
._5c{width:892.652107pt;}
._a{width:2048.881152pt;}
.fsc{font-size:26.000000pt;}
.fs16{font-size:30.325161pt;}
.fs17{font-size:30.333333pt;}
.fs22{font-size:34.658020pt;}
.fsb{font-size:34.666667pt;}
.fs23{font-size:34.667360pt;}
.fs1b{font-size:34.669129pt;}
.fsd{font-size:34.685945pt;}
.fs15{font-size:39.000000pt;}
.fs1a{font-size:39.619840pt;}
.fs24{font-size:39.627547pt;}
.fs7{font-size:42.507200pt;}
.fs10{font-size:42.666667pt;}
.fs9{font-size:42.667520pt;}
.fs6{font-size:42.668800pt;}
.fs18{font-size:43.333333pt;}
.fs1e{font-size:44.572320pt;}
.fse{font-size:47.666667pt;}
.fs13{font-size:48.000000pt;}
.fs20{font-size:48.002400pt;}
.fs1d{font-size:49.524800pt;}
.fsf{font-size:52.000000pt;}
.fs3{font-size:53.133867pt;}
.fs12{font-size:53.333333pt;}
.fsa{font-size:53.334400pt;}
.fs5{font-size:53.336000pt;}
.fs1c{font-size:54.477280pt;}
.fs19{font-size:56.333333pt;}
.fs11{font-size:58.666667pt;}
.fs21{font-size:58.669600pt;}
.fs1f{font-size:59.429760pt;}
.fs1{font-size:63.761067pt;}
.fs8{font-size:69.334720pt;}
.fs4{font-size:69.336800pt;}
.fs14{font-size:74.666667pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1da{bottom:5.384167pt;}
.y1d8{bottom:5.395000pt;}
.y33a{bottom:5.514167pt;}
.y3ad{bottom:6.302031pt;}
.yf8{bottom:6.749167pt;}
.y1e8{bottom:7.778333pt;}
.y348{bottom:8.016667pt;}
.y295{bottom:9.162088pt;}
.y13a{bottom:9.866667pt;}
.y2db{bottom:9.867160pt;}
.yff{bottom:14.235000pt;}
.yfa{bottom:15.264167pt;}
.yf9{bottom:16.466667pt;}
.yfd{bottom:17.983333pt;}
.yf7{bottom:18.665833pt;}
.y1dc{bottom:19.705833pt;}
.yfc{bottom:20.085000pt;}
.y33d{bottom:20.713333pt;}
.y33c{bottom:21.926667pt;}
.yfb{bottom:23.096667pt;}
.y28f{bottom:23.375706pt;}
.y3b0{bottom:23.672854pt;}
.y3e9{bottom:23.908097pt;}
.y1dd{bottom:23.920000pt;}
.y3ea{bottom:24.031909pt;}
.yfe{bottom:24.115000pt;}
.y3af{bottom:25.059549pt;}
.y139{bottom:26.066667pt;}
.y2da{bottom:26.067970pt;}
.y3f6{bottom:31.547298pt;}
.y290{bottom:33.590196pt;}
.y2d2{bottom:35.881794pt;}
.y291{bottom:43.309438pt;}
.y18f{bottom:52.013333pt;}
.y292{bottom:52.322951pt;}
.y136{bottom:54.453333pt;}
.y1c{bottom:56.149333pt;}
.y293{bottom:59.033562pt;}
.y344{bottom:61.175833pt;}
.y294{bottom:64.246047pt;}
.y3b1{bottom:70.349978pt;}
.y73{bottom:70.843542pt;}
.y1e4{bottom:73.775000pt;}
.yf0{bottom:76.656667pt;}
.y2d3{bottom:77.030518pt;}
.y3ef{bottom:77.110114pt;}
.y3e2{bottom:78.769194pt;}
.y7d{bottom:83.310832pt;}
.y2dc{bottom:83.684184pt;}
.y345{bottom:95.701667pt;}
.y161{bottom:96.000000pt;}
.y2a1{bottom:97.133333pt;}
.y256{bottom:100.250667pt;}
.y1fb{bottom:101.074667pt;}
.y18d{bottom:102.468000pt;}
.y14e{bottom:103.013333pt;}
.y241{bottom:103.026667pt;}
.y70{bottom:103.717333pt;}
.y3df{bottom:103.730667pt;}
.y1a3{bottom:104.166667pt;}
.y285{bottom:104.299229pt;}
.y374{bottom:106.808000pt;}
.yb0{bottom:107.221333pt;}
.y382{bottom:109.566667pt;}
.y349{bottom:109.752500pt;}
.y7c{bottom:109.832158pt;}
.y3ab{bottom:110.141333pt;}
.y47{bottom:111.673333pt;}
.y160{bottom:111.940000pt;}
.y134{bottom:112.617333pt;}
.y2a0{bottom:113.073333pt;}
.y217{bottom:113.404000pt;}
.y1d6{bottom:113.548000pt;}
.y3b5{bottom:114.129902pt;}
.yf1{bottom:115.927500pt;}
.y255{bottom:116.190667pt;}
.y1fa{bottom:117.014667pt;}
.y2d4{bottom:118.179242pt;}
.y18c{bottom:118.408000pt;}
.y240{bottom:118.966667pt;}
.y1e5{bottom:119.155833pt;}
.y6f{bottom:119.657333pt;}
.y3de{bottom:119.670667pt;}
.y1a2{bottom:120.108000pt;}
.yee{bottom:121.793333pt;}
.y373{bottom:122.748000pt;}
.yaf{bottom:123.161333pt;}
.y190{bottom:124.533333pt;}
.y3aa{bottom:126.081333pt;}
.y1b{bottom:126.770667pt;}
.y46{bottom:127.614667pt;}
.y15f{bottom:127.880000pt;}
.y133{bottom:128.557333pt;}
.y29f{bottom:129.014667pt;}
.y3f0{bottom:129.234966pt;}
.y216{bottom:129.344000pt;}
.y1d5{bottom:129.488000pt;}
.y346{bottom:130.227500pt;}
.y3e3{bottom:130.634041pt;}
.y254{bottom:132.130667pt;}
.y381{bottom:132.182667pt;}
.y1f9{bottom:132.954667pt;}
.y18b{bottom:134.348000pt;}
.y14d{bottom:134.894667pt;}
.y23f{bottom:134.908000pt;}
.y338{bottom:134.921333pt;}
.y6e{bottom:135.597333pt;}
.y3dd{bottom:135.612000pt;}
.y1a1{bottom:136.048000pt;}
.y7b{bottom:136.353484pt;}
.yed{bottom:137.733333pt;}
.y372{bottom:138.689333pt;}
.yae{bottom:139.101333pt;}
.y2f1{bottom:141.970667pt;}
.y3a9{bottom:142.022667pt;}
.y195{bottom:142.546667pt;}
.y45{bottom:143.554667pt;}
.y286{bottom:143.708588pt;}
.y283{bottom:143.821333pt;}
.y132{bottom:144.498667pt;}
.y215{bottom:145.285333pt;}
.y1d4{bottom:145.428000pt;}
.y3b2{bottom:147.237230pt;}
.y137{bottom:147.373333pt;}
.y253{bottom:148.072000pt;}
.y1f8{bottom:148.894667pt;}
.y18a{bottom:150.288000pt;}
.y1a{bottom:150.681333pt;}
.y14c{bottom:150.834667pt;}
.y327{bottom:150.848000pt;}
.y6d{bottom:151.537333pt;}
.y3dc{bottom:151.552000pt;}
.y1e9{bottom:151.883333pt;}
.yec{bottom:153.673333pt;}
.y2cc{bottom:154.313333pt;}
.y371{bottom:154.629333pt;}
.yad{bottom:155.041333pt;}
.y7e{bottom:156.047802pt;}
.y2f0{bottom:157.910667pt;}
.yb3{bottom:159.309853pt;}
.y2d5{bottom:159.327966pt;}
.y44{bottom:159.494667pt;}
.y282{bottom:159.761333pt;}
.y131{bottom:160.438667pt;}
.y214{bottom:161.225333pt;}
.y1d3{bottom:161.368000pt;}
.y29e{bottom:161.512000pt;}
.y3f7{bottom:161.599422pt;}
.y3eb{bottom:162.490869pt;}
.y7a{bottom:162.861476pt;}
.y252{bottom:164.012000pt;}
.y1e6{bottom:164.536667pt;}
.y347{bottom:164.753333pt;}
.y1f7{bottom:164.834667pt;}
.y380{bottom:165.193333pt;}
.y189{bottom:166.229333pt;}
.y19{bottom:166.621333pt;}
.y14b{bottom:166.774667pt;}
.y23e{bottom:166.788000pt;}
.y337{bottom:166.801333pt;}
.y6c{bottom:167.478667pt;}
.y3db{bottom:167.492000pt;}
.y1a0{bottom:167.928000pt;}
.y13b{bottom:168.653333pt;}
.yeb{bottom:169.613333pt;}
.y2cb{bottom:170.253333pt;}
.y370{bottom:170.569333pt;}
.y15e{bottom:170.824000pt;}
.yac{bottom:170.982667pt;}
.y3a8{bottom:173.902667pt;}
.y43{bottom:175.434667pt;}
.y281{bottom:175.701333pt;}
.y130{bottom:176.378667pt;}
.y213{bottom:177.165333pt;}
.y1d2{bottom:177.308000pt;}
.y314{bottom:177.533333pt;}
.ybd{bottom:179.363587pt;}
.y251{bottom:179.952000pt;}
.y1f6{bottom:180.776000pt;}
.yf2{bottom:180.830000pt;}
.y3f1{bottom:181.359818pt;}
.y188{bottom:182.169333pt;}
.y3e4{bottom:182.498888pt;}
.y14a{bottom:182.714667pt;}
.y23d{bottom:182.728000pt;}
.y336{bottom:182.741333pt;}
.yc5{bottom:182.830667pt;}
.y287{bottom:183.117948pt;}
.y6b{bottom:183.418667pt;}
.y2ca{bottom:186.194667pt;}
.y36f{bottom:186.509333pt;}
.yab{bottom:186.922667pt;}
.y7f{bottom:187.556044pt;}
.y79{bottom:189.382802pt;}
.y3a7{bottom:189.842667pt;}
.y18{bottom:190.532000pt;}
.y42{bottom:191.374667pt;}
.y280{bottom:191.641333pt;}
.y12f{bottom:192.318667pt;}
.y1d1{bottom:193.248000pt;}
.y250{bottom:195.892000pt;}
.y1f5{bottom:196.716000pt;}
.y191{bottom:197.053333pt;}
.y187{bottom:198.109333pt;}
.y149{bottom:198.654667pt;}
.y326{bottom:198.668000pt;}
.y335{bottom:198.681333pt;}
.y6a{bottom:199.358667pt;}
.y212{bottom:199.781333pt;}
.y19f{bottom:199.808000pt;}
.yea{bottom:200.390667pt;}
.y2d6{bottom:200.476690pt;}
.y29d{bottom:201.246667pt;}
.y2ef{bottom:202.132000pt;}
.y2c9{bottom:202.134667pt;}
.y36e{bottom:202.449333pt;}
.yaa{bottom:202.862667pt;}
.y15d{bottom:204.217333pt;}
.yb1{bottom:204.946232pt;}
.y100{bottom:205.486667pt;}
.y3a6{bottom:205.782667pt;}
.y41{bottom:207.314667pt;}
.y27f{bottom:207.581333pt;}
.y37f{bottom:207.621333pt;}
.y12e{bottom:208.258667pt;}
.y1d0{bottom:209.189333pt;}
.y1e7{bottom:209.906667pt;}
.y24f{bottom:211.832000pt;}
.y313{bottom:211.990667pt;}
.y1f4{bottom:212.656000pt;}
.y186{bottom:214.049333pt;}
.y148{bottom:214.594667pt;}
.y23c{bottom:214.608000pt;}
.y334{bottom:214.621333pt;}
.y19e{bottom:215.749333pt;}
.y3da{bottom:215.830667pt;}
.y78{bottom:215.904128pt;}
.y296{bottom:216.027178pt;}
.ye9{bottom:216.332000pt;}
.y2ee{bottom:218.072000pt;}
.y2c8{bottom:218.074667pt;}
.y36d{bottom:218.389333pt;}
.ya9{bottom:218.802667pt;}
.y80{bottom:219.064286pt;}
.y3ee{bottom:219.654869pt;}
.y15c{bottom:220.157333pt;}
.ybc{bottom:221.031087pt;}
.y288{bottom:222.527308pt;}
.y40{bottom:223.256000pt;}
.y27e{bottom:223.521333pt;}
.y3b3{bottom:224.124482pt;}
.y12d{bottom:224.198667pt;}
.y33f{bottom:224.932500pt;}
.y1cf{bottom:225.129333pt;}
.y29c{bottom:225.157333pt;}
.y33e{bottom:226.145833pt;}
.y17{bottom:227.725333pt;}
.y24e{bottom:227.772000pt;}
.y312{bottom:227.930667pt;}
.y1f3{bottom:228.596000pt;}
.y185{bottom:229.989333pt;}
.y147{bottom:230.536000pt;}
.y23b{bottom:230.549333pt;}
.y333{bottom:230.562667pt;}
.y69{bottom:231.238667pt;}
.y19d{bottom:231.689333pt;}
.y211{bottom:232.792000pt;}
.y3f2{bottom:233.472288pt;}
.y2ed{bottom:234.012000pt;}
.y2c7{bottom:234.014667pt;}
.y36c{bottom:234.330667pt;}
.y3e5{bottom:234.363735pt;}
.y3a5{bottom:237.664000pt;}
.y3f{bottom:239.196000pt;}
.y27d{bottom:239.462667pt;}
.y12c{bottom:240.140000pt;}
.y138{bottom:240.293333pt;}
.y1ce{bottom:241.069333pt;}
.y2d7{bottom:241.638748pt;}
.y37e{bottom:242.078667pt;}
.y77{bottom:242.412120pt;}
.y24d{bottom:243.713333pt;}
.y1f2{bottom:244.536000pt;}
.y1de{bottom:244.573333pt;}
.y2a4{bottom:245.092000pt;}
.yf3{bottom:245.840833pt;}
.y184{bottom:245.929333pt;}
.y146{bottom:246.476000pt;}
.y23a{bottom:246.489333pt;}
.y332{bottom:246.502667pt;}
.y68{bottom:247.178667pt;}
.y1df{bottom:248.787500pt;}
.ye8{bottom:248.829333pt;}
.y2c6{bottom:249.954667pt;}
.y36b{bottom:250.270667pt;}
.y81{bottom:250.572528pt;}
.ya8{bottom:250.682667pt;}
.y16{bottom:251.636000pt;}
.y3a4{bottom:253.604000pt;}
.y3e{bottom:255.136000pt;}
.y27c{bottom:255.402667pt;}
.y12b{bottom:256.080000pt;}
.y1cd{bottom:257.009333pt;}
.y2a3{bottom:257.710667pt;}
.y37d{bottom:258.018667pt;}
.y24c{bottom:259.653333pt;}
.y1f1{bottom:260.476000pt;}
.y183{bottom:261.870667pt;}
.y289{bottom:261.936667pt;}
.y145{bottom:262.416000pt;}
.y239{bottom:262.429333pt;}
.y331{bottom:262.442667pt;}
.y19c{bottom:262.466667pt;}
.ybb{bottom:262.698587pt;}
.y15b{bottom:263.100000pt;}
.y67{bottom:263.120000pt;}
.y3d9{bottom:265.272000pt;}
.y340{bottom:265.384167pt;}
.y2ec{bottom:265.893333pt;}
.y2c5{bottom:265.894667pt;}
.ya7{bottom:266.624000pt;}
.y15{bottom:267.576000pt;}
.y76{bottom:268.933446pt;}
.y3a3{bottom:269.544000pt;}
.y192{bottom:269.573333pt;}
.y3d{bottom:271.076000pt;}
.y27b{bottom:271.342667pt;}
.y12a{bottom:272.020000pt;}
.y311{bottom:272.152000pt;}
.y1cc{bottom:272.949333pt;}
.y2d0{bottom:275.133756pt;}
.y210{bottom:275.220000pt;}
.y24b{bottom:275.593333pt;}
.y1f0{bottom:276.417333pt;}
.y182{bottom:277.810667pt;}
.y144{bottom:278.356000pt;}
.y325{bottom:278.369333pt;}
.y330{bottom:278.382667pt;}
.y19b{bottom:278.406667pt;}
.y103{bottom:278.525333pt;}
.y15a{bottom:279.041333pt;}
.y66{bottom:279.060000pt;}
.y2a2{bottom:279.828416pt;}
.y2eb{bottom:281.833333pt;}
.y2c4{bottom:281.836000pt;}
.y82{bottom:282.067436pt;}
.y36a{bottom:282.150667pt;}
.ya6{bottom:282.564000pt;}
.y2d8{bottom:282.787472pt;}
.y3a2{bottom:285.484000pt;}
.y3f3{bottom:285.597140pt;}
.y3e6{bottom:286.228582pt;}
.y3c{bottom:287.016000pt;}
.y27a{bottom:287.282667pt;}
.y129{bottom:287.960000pt;}
.ye7{bottom:288.564000pt;}
.y1cb{bottom:288.889333pt;}
.y3b8{bottom:289.664000pt;}
.y3e1{bottom:289.868654pt;}
.y102{bottom:291.144000pt;}
.y24a{bottom:291.533333pt;}
.y181{bottom:293.750667pt;}
.y143{bottom:294.296000pt;}
.y238{bottom:294.309333pt;}
.y32f{bottom:294.322667pt;}
.y29b{bottom:294.729333pt;}
.y159{bottom:294.981333pt;}
.y65{bottom:295.000000pt;}
.y75{bottom:295.454772pt;}
.y3d8{bottom:297.152000pt;}
.y2ea{bottom:297.773333pt;}
.y2c3{bottom:297.776000pt;}
.y369{bottom:298.090667pt;}
.ya5{bottom:298.504000pt;}
.y1e0{bottom:298.642500pt;}
.y341{bottom:299.910000pt;}
.y3b4{bottom:300.999353pt;}
.y28a{bottom:301.346027pt;}
.y3a1{bottom:301.424000pt;}
.y37c{bottom:302.240000pt;}
.y3b7{bottom:302.282667pt;}
.y85{bottom:302.825333pt;}
.y3b{bottom:302.956000pt;}
.y279{bottom:303.222667pt;}
.y128{bottom:303.900000pt;}
.y310{bottom:304.032000pt;}
.yba{bottom:304.366087pt;}
.y14{bottom:304.770667pt;}
.y1ca{bottom:304.830667pt;}
.y249{bottom:307.473333pt;}
.y1ef{bottom:308.297333pt;}
.y20f{bottom:309.677333pt;}
.y180{bottom:309.690667pt;}
.y142{bottom:310.236000pt;}
.y237{bottom:310.249333pt;}
.y32e{bottom:310.262667pt;}
.yf4{bottom:310.743333pt;}
.y19a{bottom:310.905333pt;}
.y64{bottom:310.940000pt;}
.ye6{bottom:312.474667pt;}
.y3d7{bottom:313.092000pt;}
.yef{bottom:313.260833pt;}
.y83{bottom:313.575678pt;}
.y2e9{bottom:313.713333pt;}
.y368{bottom:314.030667pt;}
.y3a0{bottom:317.364000pt;}
.y3a{bottom:318.897333pt;}
.y278{bottom:319.162667pt;}
.y127{bottom:319.840000pt;}
.y30f{bottom:319.972000pt;}
.y1c9{bottom:320.770667pt;}
.y74{bottom:321.976098pt;}
.y248{bottom:323.413333pt;}
.y2d9{bottom:323.936196pt;}
.y1ee{bottom:324.237333pt;}
.y3ae{bottom:324.400196pt;}
.y71{bottom:324.942914pt;}
.y20e{bottom:325.617333pt;}
.y17f{bottom:325.630667pt;}
.y236{bottom:326.190667pt;}
.y32d{bottom:326.204000pt;}
.y13{bottom:328.681333pt;}
.y3d6{bottom:329.033333pt;}
.y199{bottom:329.502667pt;}
.ya4{bottom:330.384000pt;}
.y2c2{bottom:330.693333pt;}
.y39f{bottom:333.305333pt;}
.y37b{bottom:334.120000pt;}
.y342{bottom:334.435833pt;}
.y39{bottom:334.837333pt;}
.y277{bottom:335.104000pt;}
.y126{bottom:335.781333pt;}
.y30e{bottom:335.912000pt;}
.y1c8{bottom:336.710667pt;}
.y3f4{bottom:337.721992pt;}
.y3e7{bottom:338.093428pt;}
.y29a{bottom:338.286667pt;}
.y158{bottom:338.434667pt;}
.y247{bottom:339.354667pt;}
.y141{bottom:339.557333pt;}
.y1ed{bottom:340.177333pt;}
.y28b{bottom:340.755386pt;}
.y17e{bottom:341.570667pt;}
.y63{bottom:341.797333pt;}
.y193{bottom:342.080000pt;}
.y324{bottom:342.130667pt;}
.y32c{bottom:342.144000pt;}
.y1e1{bottom:344.023333pt;}
.y2e8{bottom:345.594667pt;}
.y367{bottom:345.912000pt;}
.yb9{bottom:346.033587pt;}
.ya3{bottom:346.324000pt;}
.y2c1{bottom:346.633333pt;}
.y39e{bottom:349.245333pt;}
.y37a{bottom:350.060000pt;}
.y38{bottom:350.777333pt;}
.y299{bottom:350.905333pt;}
.y276{bottom:351.044000pt;}
.y125{bottom:351.721333pt;}
.y30d{bottom:351.853333pt;}
.y1c7{bottom:352.650667pt;}
.y157{bottom:354.376000pt;}
.y13c{bottom:354.413333pt;}
.y2dd{bottom:354.431054pt;}
.y246{bottom:355.294667pt;}
.y140{bottom:355.497333pt;}
.y1ec{bottom:356.117333pt;}
.y17d{bottom:357.512000pt;}
.y62{bottom:357.737333pt;}
.y235{bottom:358.070667pt;}
.y32b{bottom:358.084000pt;}
.y3d5{bottom:360.913333pt;}
.y2e7{bottom:361.534667pt;}
.y366{bottom:361.852000pt;}
.ya2{bottom:362.265333pt;}
.y2c0{bottom:362.574667pt;}
.y39d{bottom:365.185333pt;}
.y12{bottom:365.874667pt;}
.y379{bottom:366.001333pt;}
.y37{bottom:366.717333pt;}
.y275{bottom:366.984000pt;}
.y124{bottom:367.661333pt;}
.y30c{bottom:367.793333pt;}
.y1c6{bottom:368.590667pt;}
.y343{bottom:368.961667pt;}
.y20d{bottom:369.838667pt;}
.y1eb{bottom:372.058667pt;}
.y284{bottom:373.022718pt;}
.y17c{bottom:373.452000pt;}
.y234{bottom:374.010667pt;}
.y32a{bottom:374.024000pt;}
.yf5{bottom:375.700000pt;}
.y3d4{bottom:376.853333pt;}
.y156{bottom:376.990667pt;}
.y2e6{bottom:377.474667pt;}
.y365{bottom:377.792000pt;}
.ya1{bottom:378.205333pt;}
.y2bf{bottom:378.514667pt;}
.y3ed{bottom:379.013669pt;}
.y28c{bottom:380.164746pt;}
.y3e0{bottom:380.784181pt;}
.y39c{bottom:381.125333pt;}
.y378{bottom:381.941333pt;}
.ye5{bottom:381.954667pt;}
.y36{bottom:382.657333pt;}
.y274{bottom:382.924000pt;}
.y123{bottom:383.601333pt;}
.y30b{bottom:383.733333pt;}
.y1c5{bottom:384.532000pt;}
.y84{bottom:384.992582pt;}
.y198{bottom:386.432000pt;}
.y13f{bottom:387.630667pt;}
.yb8{bottom:387.714421pt;}
.y17b{bottom:389.392000pt;}
.y1e2{bottom:389.404167pt;}
.y11{bottom:389.785333pt;}
.y3f5{bottom:389.834463pt;}
.y233{bottom:389.950667pt;}
.y3e8{bottom:389.958275pt;}
.y329{bottom:389.964000pt;}
.y61{bottom:390.236000pt;}
.y3d3{bottom:392.793333pt;}
.y2e5{bottom:393.414667pt;}
.y364{bottom:393.732000pt;}
.ya0{bottom:394.145333pt;}
.y2be{bottom:394.454667pt;}
.ybe{bottom:397.327946pt;}
.y377{bottom:397.881333pt;}
.y273{bottom:398.864000pt;}
.y197{bottom:399.052000pt;}
.y245{bottom:399.514667pt;}
.y122{bottom:399.541333pt;}
.y30a{bottom:399.673333pt;}
.y1c4{bottom:400.472000pt;}
.y20c{bottom:401.718667pt;}
.y17a{bottom:405.332000pt;}
.y232{bottom:405.890667pt;}
.y328{bottom:405.904000pt;}
.y3d2{bottom:408.733333pt;}
.y2e4{bottom:409.354667pt;}
.y363{bottom:409.672000pt;}
.y155{bottom:410.002667pt;}
.y2bd{bottom:410.394667pt;}
.y39b{bottom:413.005333pt;}
.y1ea{bottom:413.540000pt;}
.y10{bottom:413.694667pt;}
.y376{bottom:413.821333pt;}
.y194{bottom:414.600000pt;}
.y272{bottom:414.804000pt;}
.y35{bottom:415.156000pt;}
.y244{bottom:415.456000pt;}
.y121{bottom:415.481333pt;}
.y309{bottom:415.613333pt;}
.y1c3{bottom:416.412000pt;}
.y72{bottom:416.460822pt;}
.y20b{bottom:417.658667pt;}
.y3b6{bottom:418.249317pt;}
.y28d{bottom:419.574106pt;}
.y18e{bottom:421.168000pt;}
.y179{bottom:421.272000pt;}
.y231{bottom:421.832000pt;}
.y3d1{bottom:424.674667pt;}
.y362{bottom:425.613333pt;}
.y9f{bottom:426.025333pt;}
.y2bc{bottom:426.334667pt;}
.y3ec{bottom:428.884768pt;}
.y39a{bottom:428.946667pt;}
.yb7{bottom:429.381921pt;}
.y375{bottom:429.761333pt;}
.y271{bottom:430.745333pt;}
.ybf{bottom:430.781949pt;}
.ye4{bottom:431.396000pt;}
.y120{bottom:431.422667pt;}
.y308{bottom:431.553333pt;}
.y1c2{bottom:432.352000pt;}
.y20a{bottom:433.600000pt;}
.y1e3{bottom:434.785000pt;}
.y1db{bottom:435.656917pt;}
.y178{bottom:437.212000pt;}
.yf{bottom:437.605333pt;}
.y323{bottom:437.772000pt;}
.y3d0{bottom:440.614667pt;}
.yf6{bottom:440.656667pt;}
.y2e3{bottom:441.236000pt;}
.y361{bottom:441.553333pt;}
.y9e{bottom:441.966667pt;}
.y13e{bottom:443.518667pt;}
.y34a{bottom:443.960833pt;}
.y399{bottom:444.886667pt;}
.y270{bottom:446.685333pt;}
.ye3{bottom:447.336000pt;}
.y11f{bottom:447.362667pt;}
.y1c1{bottom:448.292000pt;}
.y209{bottom:449.540000pt;}
.y196{bottom:450.413333pt;}
.y154{bottom:450.726667pt;}
.y60{bottom:453.064000pt;}
.y177{bottom:453.153333pt;}
.y101{bottom:453.266667pt;}
.y230{bottom:453.712000pt;}
.y13d{bottom:456.137333pt;}
.y3cf{bottom:456.554667pt;}
.y2e2{bottom:457.176000pt;}
.y360{bottom:457.493333pt;}
.y9d{bottom:457.906667pt;}
.y28e{bottom:458.971084pt;}
.y398{bottom:460.826667pt;}
.y26f{bottom:462.625333pt;}
.y243{bottom:463.276000pt;}
.y11e{bottom:463.302667pt;}
.y307{bottom:463.434667pt;}
.y1c0{bottom:464.232000pt;}
.yc0{bottom:464.235951pt;}
.y208{bottom:465.480000pt;}
.y153{bottom:466.668000pt;}
.y34{bottom:467.264000pt;}
.y2bb{bottom:468.708000pt;}
.y5f{bottom:469.004000pt;}
.y176{bottom:469.093333pt;}
.y22f{bottom:469.652000pt;}
.yb6{bottom:471.049421pt;}
.y3ce{bottom:472.494667pt;}
.y2e1{bottom:473.116000pt;}
.y35f{bottom:473.433333pt;}
.ye{bottom:474.800000pt;}
.y397{bottom:476.766667pt;}
.y135{bottom:478.254667pt;}
.y26e{bottom:478.565333pt;}
.ye2{bottom:479.216000pt;}
.y11d{bottom:479.242667pt;}
.y306{bottom:479.374667pt;}
.y1bf{bottom:480.173333pt;}
.y207{bottom:481.420000pt;}
.y33{bottom:483.204000pt;}
.y5e{bottom:484.944000pt;}
.y175{bottom:485.033333pt;}
.y22e{bottom:485.592000pt;}
.y297{bottom:487.286888pt;}
.y3cd{bottom:488.434667pt;}
.y2e0{bottom:489.056000pt;}
.y35e{bottom:489.373333pt;}
.y9c{bottom:489.786667pt;}
.y26d{bottom:494.505333pt;}
.ye1{bottom:495.156000pt;}
.y11c{bottom:495.182667pt;}
.y305{bottom:495.314667pt;}
.y1be{bottom:496.113333pt;}
.y206{bottom:497.360000pt;}
.yc1{bottom:497.689954pt;}
.yd{bottom:498.709333pt;}
.y32{bottom:499.144000pt;}
.y152{bottom:500.060000pt;}
.y5d{bottom:500.884000pt;}
.y174{bottom:500.973333pt;}
.y22d{bottom:501.532000pt;}
.y2ba{bottom:501.626667pt;}
.y3cc{bottom:504.374667pt;}
.y2df{bottom:504.996000pt;}
.y35d{bottom:505.313333pt;}
.y9b{bottom:505.726667pt;}
.y396{bottom:508.648000pt;}
.y26c{bottom:510.445333pt;}
.ye0{bottom:511.097333pt;}
.y11b{bottom:511.122667pt;}
.y304{bottom:511.254667pt;}
.y1bd{bottom:512.053333pt;}
.y339{bottom:512.550833pt;}
.yb5{bottom:512.716921pt;}
.y31{bottom:515.084000pt;}
.y5c{bottom:516.824000pt;}
.y22c{bottom:517.473333pt;}
.y298{bottom:518.029408pt;}
.y3cb{bottom:520.316000pt;}
.y35c{bottom:521.254667pt;}
.y9a{bottom:521.666667pt;}
.yc{bottom:522.620000pt;}
.y395{bottom:524.588000pt;}
.y26b{bottom:526.386667pt;}
.y242{bottom:527.037333pt;}
.y11a{bottom:527.064000pt;}
.y303{bottom:527.194667pt;}
.y2ce{bottom:527.993333pt;}
.y30{bottom:531.025333pt;}
.yc2{bottom:531.143956pt;}
.y5b{bottom:532.765333pt;}
.y22b{bottom:533.413333pt;}
.y3ca{bottom:536.256000pt;}
.y35b{bottom:537.194667pt;}
.y99{bottom:537.608000pt;}
.y394{bottom:540.528000pt;}
.y205{bottom:541.586667pt;}
.y26a{bottom:542.326667pt;}
.ydf{bottom:542.977333pt;}
.y119{bottom:543.004000pt;}
.y1bc{bottom:543.933333pt;}
.y2b9{bottom:544.000000pt;}
.y173{bottom:545.266667pt;}
.yb{bottom:546.530667pt;}
.y2f{bottom:546.965333pt;}
.y22a{bottom:549.353333pt;}
.y3c9{bottom:552.196000pt;}
.y35a{bottom:553.134667pt;}
.y98{bottom:553.548000pt;}
.y2de{bottom:553.866667pt;}
.yb4{bottom:554.384421pt;}
.y204{bottom:557.526667pt;}
.y269{bottom:558.266667pt;}
.yde{bottom:558.917333pt;}
.y302{bottom:559.076000pt;}
.y1bb{bottom:559.873333pt;}
.y2b8{bottom:559.940000pt;}
.y172{bottom:561.206667pt;}
.y2e{bottom:562.905333pt;}
.yc3{bottom:564.597958pt;}
.y5a{bottom:564.645333pt;}
.y229{bottom:565.293333pt;}
.y3c8{bottom:568.136000pt;}
.y359{bottom:569.074667pt;}
.y97{bottom:569.488000pt;}
.y393{bottom:572.408000pt;}
.y203{bottom:573.466667pt;}
.y268{bottom:574.206667pt;}
.ydd{bottom:574.857333pt;}
.y118{bottom:574.884000pt;}
.y301{bottom:575.016000pt;}
.y1ba{bottom:575.814667pt;}
.y2b7{bottom:575.880000pt;}
.y2d1{bottom:575.983466pt;}
.y171{bottom:577.146667pt;}
.y2d{bottom:578.845333pt;}
.y59{bottom:580.585333pt;}
.y228{bottom:581.233333pt;}
.ya{bottom:583.724000pt;}
.y3c7{bottom:584.076000pt;}
.y358{bottom:585.014667pt;}
.y96{bottom:585.428000pt;}
.y392{bottom:588.348000pt;}
.y202{bottom:589.406667pt;}
.y267{bottom:590.146667pt;}
.ydc{bottom:590.797333pt;}
.y117{bottom:590.824000pt;}
.y300{bottom:590.956000pt;}
.y1b9{bottom:591.754667pt;}
.y2b6{bottom:591.821333pt;}
.y170{bottom:593.086667pt;}
.y2c{bottom:594.785333pt;}
.y227{bottom:597.173333pt;}
.y3c6{bottom:600.016000pt;}
.y357{bottom:600.954667pt;}
.y95{bottom:601.368000pt;}
.y391{bottom:604.289333pt;}
.y266{bottom:606.086667pt;}
.ydb{bottom:606.738667pt;}
.y116{bottom:606.764000pt;}
.y9{bottom:607.634667pt;}
.y1b8{bottom:607.694667pt;}
.y2b5{bottom:607.761333pt;}
.y201{bottom:612.022667pt;}
.y58{bottom:612.465333pt;}
.y226{bottom:613.114667pt;}
.y2cf{bottom:615.692118pt;}
.y16f{bottom:615.702667pt;}
.y3c5{bottom:615.957333pt;}
.y356{bottom:616.896000pt;}
.y94{bottom:617.308000pt;}
.y390{bottom:620.229333pt;}
.y265{bottom:622.028000pt;}
.yda{bottom:622.678667pt;}
.y115{bottom:622.705333pt;}
.y2ff{bottom:622.836000pt;}
.y1b7{bottom:623.634667pt;}
.y322{bottom:626.542667pt;}
.y2b{bottom:626.586667pt;}
.y57{bottom:628.406667pt;}
.y225{bottom:629.054667pt;}
.y3c4{bottom:631.897333pt;}
.y355{bottom:632.836000pt;}
.y93{bottom:633.249333pt;}
.yc4{bottom:634.586025pt;}
.y38f{bottom:636.169333pt;}
.yd9{bottom:638.618667pt;}
.y114{bottom:638.645333pt;}
.y2fe{bottom:638.777333pt;}
.y1b6{bottom:639.574667pt;}
.y2b4{bottom:639.641333pt;}
.y321{bottom:642.482667pt;}
.y56{bottom:644.346667pt;}
.y8{bottom:644.828000pt;}
.y224{bottom:644.994667pt;}
.y200{bottom:645.034667pt;}
.y3c3{bottom:647.837333pt;}
.y16e{bottom:648.714667pt;}
.y92{bottom:649.189333pt;}
.y2a{bottom:650.497333pt;}
.y38e{bottom:652.109333pt;}
.yd8{bottom:654.558667pt;}
.y113{bottom:654.585333pt;}
.y2fd{bottom:654.717333pt;}
.y1b5{bottom:655.514667pt;}
.y2b3{bottom:655.581333pt;}
.y1d7{bottom:655.606083pt;}
.yb2{bottom:656.453129pt;}
.y320{bottom:658.422667pt;}
.y55{bottom:660.286667pt;}
.y223{bottom:660.934667pt;}
.y264{bottom:661.321333pt;}
.y3c2{bottom:663.777333pt;}
.y354{bottom:664.636000pt;}
.y91{bottom:665.129333pt;}
.y29{bottom:666.437333pt;}
.y38d{bottom:668.049333pt;}
.y3fd{bottom:669.108000pt;}
.yd7{bottom:670.498667pt;}
.y112{bottom:670.525333pt;}
.y2fc{bottom:670.657333pt;}
.y1b4{bottom:671.456000pt;}
.y2b2{bottom:671.521333pt;}
.y54{bottom:676.226667pt;}
.y222{bottom:676.874667pt;}
.y3c1{bottom:679.717333pt;}
.y353{bottom:680.576000pt;}
.y3fc{bottom:685.048000pt;}
.yd6{bottom:686.438667pt;}
.y151{bottom:686.465333pt;}
.y2fb{bottom:686.597333pt;}
.y1b3{bottom:687.396000pt;}
.y1ff{bottom:687.462667pt;}
.y28{bottom:690.346667pt;}
.y31f{bottom:690.548000pt;}
.y16d{bottom:691.141333pt;}
.y263{bottom:691.673333pt;}
.y53{bottom:692.166667pt;}
.y221{bottom:692.814667pt;}
.y3c0{bottom:695.657333pt;}
.y90{bottom:695.973333pt;}
.y3ac{bottom:696.405731pt;}
.y38c{bottom:698.828000pt;}
.yd5{bottom:702.380000pt;}
.y111{bottom:702.405333pt;}
.y2fa{bottom:702.537333pt;}
.y1b2{bottom:703.336000pt;}
.y1fe{bottom:703.402667pt;}
.y27{bottom:706.288000pt;}
.y16c{bottom:707.081333pt;}
.y262{bottom:707.613333pt;}
.y3fb{bottom:707.664000pt;}
.y52{bottom:708.106667pt;}
.y220{bottom:708.756000pt;}
.y31e{bottom:709.145333pt;}
.y7{bottom:710.030667pt;}
.y3bf{bottom:711.598667pt;}
.y8f{bottom:711.913333pt;}
.y352{bottom:713.074667pt;}
.y38b{bottom:714.768000pt;}
.y33b{bottom:716.759167pt;}
.yd4{bottom:718.320000pt;}
.y110{bottom:718.346667pt;}
.y2f9{bottom:718.477333pt;}
.y2cd{bottom:719.276000pt;}
.y2b1{bottom:719.342667pt;}
.y261{bottom:723.553333pt;}
.y3be{bottom:727.538667pt;}
.y26{bottom:730.197333pt;}
.y38a{bottom:730.708000pt;}
.yd3{bottom:734.260000pt;}
.y10f{bottom:734.286667pt;}
.y2f8{bottom:734.418667pt;}
.y1b1{bottom:735.216000pt;}
.y1fd{bottom:737.860000pt;}
.y260{bottom:739.493333pt;}
.y51{bottom:739.988000pt;}
.y21f{bottom:740.636000pt;}
.y3fa{bottom:740.676000pt;}
.y16b{bottom:741.538667pt;}
.y3bd{bottom:743.478667pt;}
.y8e{bottom:744.412000pt;}
.y25{bottom:746.138667pt;}
.y31d{bottom:748.508000pt;}
.y6{bottom:748.792000pt;}
.yd2{bottom:750.200000pt;}
.y10e{bottom:750.226667pt;}
.y2f7{bottom:750.358667pt;}
.y1b0{bottom:751.156000pt;}
.y2b0{bottom:751.222667pt;}
.y1fc{bottom:753.800000pt;}
.y25f{bottom:755.433333pt;}
.y50{bottom:755.928000pt;}
.y21e{bottom:756.576000pt;}
.y16a{bottom:757.480000pt;}
.y3bc{bottom:759.418667pt;}
.y24{bottom:762.078667pt;}
.y389{bottom:763.206667pt;}
.yd1{bottom:766.140000pt;}
.y10d{bottom:766.166667pt;}
.y2f6{bottom:766.298667pt;}
.y351{bottom:766.384000pt;}
.y1af{bottom:767.097333pt;}
.y2af{bottom:767.162667pt;}
.y5{bottom:767.389333pt;}
.y25e{bottom:771.374667pt;}
.y4f{bottom:771.868000pt;}
.y31c{bottom:772.418667pt;}
.y21d{bottom:772.516000pt;}
.y3bb{bottom:775.358667pt;}
.y388{bottom:781.802667pt;}
.yd0{bottom:782.080000pt;}
.y150{bottom:782.106667pt;}
.y350{bottom:782.324000pt;}
.y1ae{bottom:783.037333pt;}
.y2ae{bottom:783.104000pt;}
.y4{bottom:785.985333pt;}
.y23{bottom:785.988000pt;}
.y25d{bottom:787.314667pt;}
.y4e{bottom:787.808000pt;}
.y21c{bottom:788.456000pt;}
.y3ba{bottom:791.298667pt;}
.ycf{bottom:798.021333pt;}
.y10c{bottom:798.046667pt;}
.y34f{bottom:798.264000pt;}
.y1ad{bottom:798.977333pt;}
.y2ad{bottom:799.044000pt;}
.y169{bottom:801.700000pt;}
.y22{bottom:801.929333pt;}
.y25c{bottom:803.254667pt;}
.y4d{bottom:803.748000pt;}
.y8d{bottom:807.240000pt;}
.y2f5{bottom:811.548000pt;}
.yce{bottom:813.961333pt;}
.y10b{bottom:813.988000pt;}
.y34e{bottom:814.204000pt;}
.y1ac{bottom:814.917333pt;}
.y2ac{bottom:814.984000pt;}
.y168{bottom:817.640000pt;}
.y21{bottom:817.869333pt;}
.y21b{bottom:818.802667pt;}
.y25b{bottom:819.194667pt;}
.y387{bottom:821.537333pt;}
.y8c{bottom:823.180000pt;}
.y2f4{bottom:827.488000pt;}
.ycd{bottom:829.901333pt;}
.y14f{bottom:829.928000pt;}
.y1ab{bottom:830.857333pt;}
.y2ab{bottom:830.924000pt;}
.y31b{bottom:831.778667pt;}
.y3{bottom:832.478667pt;}
.y3f9{bottom:833.501333pt;}
.y167{bottom:833.581333pt;}
.y20{bottom:833.809333pt;}
.y4c{bottom:834.526667pt;}
.y21a{bottom:834.742667pt;}
.y25a{bottom:835.134667pt;}
.y34d{bottom:836.820000pt;}
.y8b{bottom:839.120000pt;}
.y386{bottom:845.448000pt;}
.ycc{bottom:845.841333pt;}
.y10a{bottom:845.868000pt;}
.y1aa{bottom:846.797333pt;}
.y2aa{bottom:846.864000pt;}
.y31a{bottom:847.718667pt;}
.y3f8{bottom:849.441333pt;}
.y166{bottom:849.521333pt;}
.y2f3{bottom:850.104000pt;}
.y4b{bottom:850.466667pt;}
.y219{bottom:850.682667pt;}
.y259{bottom:851.074667pt;}
.y8a{bottom:855.060000pt;}
.y2{bottom:861.701333pt;}
.ycb{bottom:861.781333pt;}
.y109{bottom:861.808000pt;}
.y1a9{bottom:862.738667pt;}
.y2a9{bottom:862.804000pt;}
.y319{bottom:863.658667pt;}
.y165{bottom:865.461333pt;}
.y258{bottom:867.016000pt;}
.y34c{bottom:869.832000pt;}
.y1f{bottom:870.888000pt;}
.y89{bottom:871.000000pt;}
.yca{bottom:877.721333pt;}
.y108{bottom:877.748000pt;}
.y1a8{bottom:878.678667pt;}
.y2a8{bottom:878.745333pt;}
.y318{bottom:879.598667pt;}
.y1d9{bottom:880.484417pt;}
.y257{bottom:882.956000pt;}
.y4a{bottom:882.965333pt;}
.y218{bottom:883.073333pt;}
.y2f2{bottom:883.114667pt;}
.y88{bottom:886.940000pt;}
.y1{bottom:890.925333pt;}
.yc9{bottom:893.662667pt;}
.y107{bottom:893.689333pt;}
.y1a7{bottom:894.618667pt;}
.y2a7{bottom:894.685333pt;}
.y317{bottom:895.538667pt;}
.y164{bottom:898.896000pt;}
.y3b9{bottom:902.881333pt;}
.y385{bottom:905.501333pt;}
.yc8{bottom:909.602667pt;}
.y106{bottom:909.629333pt;}
.y1a6{bottom:910.558667pt;}
.y34b{bottom:912.258667pt;}
.y163{bottom:914.836000pt;}
.y316{bottom:918.154667pt;}
.y87{bottom:918.821333pt;}
.y384{bottom:921.442667pt;}
.y49{bottom:922.700000pt;}
.y1e{bottom:922.806667pt;}
.yc7{bottom:925.542667pt;}
.y105{bottom:925.569333pt;}
.y1a5{bottom:926.498667pt;}
.y2a6{bottom:926.565333pt;}
.y162{bottom:930.776000pt;}
.y86{bottom:934.761333pt;}
.yc6{bottom:941.482667pt;}
.y104{bottom:941.509333pt;}
.y1a4{bottom:942.438667pt;}
.y2a5{bottom:942.505333pt;}
.y383{bottom:944.057333pt;}
.y48{bottom:946.610667pt;}
.y1d{bottom:946.716000pt;}
.y315{bottom:951.166667pt;}
.h1d{height:17.777500pt;}
.h2d{height:18.795833pt;}
.h2e{height:21.481382pt;}
.h1f{height:31.628195pt;}
.h20{height:31.636719pt;}
.hb{height:31.880400pt;}
.h30{height:36.147232pt;}
.h11{height:36.156250pt;}
.h31{height:36.156973pt;}
.h25{height:36.158818pt;}
.h14{height:36.176356pt;}
.h5{height:36.874903pt;}
.h4{height:39.850400pt;}
.h1e{height:40.675781pt;}
.h24{height:41.322255pt;}
.h34{height:41.330293pt;}
.h12{height:44.320521pt;}
.h13{height:44.363854pt;}
.h18{height:44.500000pt;}
.he{height:44.500890pt;}
.ha{height:44.502225pt;}
.h21{height:45.195312pt;}
.h2{height:45.525402pt;}
.h33{height:46.487537pt;}
.h6{height:47.820800pt;}
.h15{height:49.714844pt;}
.h2a{height:50.065003pt;}
.h27{height:51.652819pt;}
.h22{height:52.179850pt;}
.h16{height:54.234375pt;}
.h1a{height:55.625000pt;}
.hf{height:55.626112pt;}
.h9{height:55.627781pt;}
.h26{height:56.818101pt;}
.h3{height:57.384800pt;}
.h19{height:61.187500pt;}
.h2c{height:61.190559pt;}
.h28{height:61.983383pt;}
.h1{height:64.913535pt;}
.h1c{height:69.161458pt;}
.hd{height:72.313946pt;}
.h8{height:72.316116pt;}
.h35{height:72.963379pt;}
.h29{height:288.067736pt;}
.h32{height:363.066309pt;}
.h36{height:364.836820pt;}
.h17{height:384.000000pt;}
.h2b{height:384.019200pt;}
.h7{height:432.021600pt;}
.h2f{height:445.723200pt;}
.h10{height:468.000000pt;}
.h1b{height:480.000000pt;}
.h23{height:534.867840pt;}
.hc{height:672.013440pt;}
.h0{height:1056.000000pt;}
.w9{width:188.268527pt;}
.w8{width:287.841667pt;}
.w5{width:288.535000pt;}
.w4{width:480.000000pt;}
.w7{width:524.026200pt;}
.wa{width:567.863738pt;}
.w2{width:576.011520pt;}
.w1{width:576.028800pt;}
.w3{width:624.000000pt;}
.w6{width:624.012480pt;}
.w0{width:816.000000pt;}
.x4b{left:-3.413333pt;}
.x0{left:0.000000pt;}
.x93{left:14.180833pt;}
.x3c{left:15.459167pt;}
.x4a{left:17.173333pt;}
.x60{left:19.200000pt;}
.xa6{left:21.270902pt;}
.x30{left:22.284167pt;}
.x47{left:23.720000pt;}
.x74{left:25.282410pt;}
.x6b{left:27.072500pt;}
.x46{left:29.653333pt;}
.x75{left:31.064431pt;}
.x82{left:33.455006pt;}
.x5e{left:35.253333pt;}
.x9d{left:37.638848pt;}
.x9b{left:40.040801pt;}
.x5d{left:41.173333pt;}
.x45{left:47.440000pt;}
.x31{left:49.779167pt;}
.x48{left:53.426667pt;}
.x65{left:57.644167pt;}
.x9f{left:59.045943pt;}
.x63{left:68.705000pt;}
.x12{left:70.150174pt;}
.x67{left:71.402500pt;}
.x25{left:75.481510pt;}
.xa0{left:83.387382pt;}
.x32{left:87.273333pt;}
.x13{left:89.657816pt;}
.x26{left:90.615146pt;}
.x8f{left:93.047500pt;}
.x8{left:96.000000pt;}
.x66{left:97.825000pt;}
.x6d{left:98.744000pt;}
.x84{left:102.018434pt;}
.x61{left:103.093333pt;}
.x1{left:104.621333pt;}
.x90{left:108.430833pt;}
.xe{left:109.948000pt;}
.x2{left:112.789333pt;}
.x8e{left:113.750000pt;}
.x9{left:115.925333pt;}
.x98{left:116.921333pt;}
.x85{left:118.785333pt;}
.x11{left:119.987866pt;}
.x20{left:123.896000pt;}
.xc{left:125.897333pt;}
.x4{left:126.929333pt;}
.x33{left:128.992500pt;}
.x96{left:130.869333pt;}
.x14{left:131.859926pt;}
.x27{left:132.815990pt;}
.x62{left:134.878667pt;}
.x9a{left:136.709386pt;}
.x24{left:137.842667pt;}
.x5c{left:144.817333pt;}
.xa{left:146.477333pt;}
.x76{left:150.481105pt;}
.x4c{left:151.790667pt;}
.x5{left:152.890667pt;}
.xf{left:158.764000pt;}
.x10{left:165.738667pt;}
.x44{left:168.000000pt;}
.xa4{left:172.432972pt;}
.x15{left:174.075370pt;}
.x28{left:175.030167pt;}
.x6f{left:179.337333pt;}
.x72{left:186.660000pt;}
.xa7{left:188.739013pt;}
.x34{left:192.356667pt;}
.x3f{left:193.633333pt;}
.x4d{left:200.608000pt;}
.x6{left:201.780000pt;}
.x88{left:202.956000pt;}
.x7b{left:206.270792pt;}
.x73{left:207.581333pt;}
.x68{left:209.852500pt;}
.x52{left:212.352000pt;}
.x5f{left:213.293333pt;}
.x2f{left:214.581333pt;}
.x16{left:216.290814pt;}
.x29{left:217.244345pt;}
.x83{left:219.930996pt;}
.x21{left:221.529333pt;}
.x87{left:227.312000pt;}
.x6e{left:228.502667pt;}
.x1f{left:231.594667pt;}
.x41{left:235.477333pt;}
.x91{left:237.174167pt;}
.x4f{left:240.196000pt;}
.x22{left:242.450667pt;}
.x35{left:244.790000pt;}
.x49{left:248.026667pt;}
.xd{left:249.424000pt;}
.x77{left:253.059347pt;}
.x8a{left:256.398667pt;}
.x17{left:258.492924pt;}
.x2a{left:259.445189pt;}
.xa3{left:261.206176pt;}
.x23{left:263.372000pt;}
.x94{left:268.504167pt;}
.x81{left:270.346667pt;}
.x6c{left:277.257500pt;}
.x95{left:279.121333pt;}
.x3d{left:288.134167pt;}
.x3e{left:289.412500pt;}
.x80{left:291.268000pt;}
.x4e{left:295.828000pt;}
.x7c{left:297.371662pt;}
.x36{left:298.436667pt;}
.x18{left:300.708368pt;}
.x2b{left:301.659366pt;}
.x89{left:305.216000pt;}
.x8b{left:308.145333pt;}
.xa2{left:310.359540pt;}
.x42{left:312.189333pt;}
.x51{left:314.160000pt;}
.x70{left:315.596000pt;}
.x40{left:319.162667pt;}
.x9c{left:331.143750pt;}
.x3{left:332.356000pt;}
.x50{left:340.085333pt;}
.x19{left:342.923812pt;}
.x2c{left:343.860210pt;}
.x53{left:348.436000pt;}
.x78{left:354.931860pt;}
.x37{left:359.905000pt;}
.x97{left:361.006667pt;}
.x69{left:365.321667pt;}
.x7{left:371.066667pt;}
.x5b{left:374.953333pt;}
.x71{left:378.510667pt;}
.x7e{left:381.928000pt;}
.x1a{left:385.125922pt;}
.x2d{left:386.074388pt;}
.x7d{left:388.901333pt;}
.x86{left:395.876000pt;}
.x43{left:401.358667pt;}
.xb{left:404.678667pt;}
.x54{left:409.333333pt;}
.x38{left:410.540000pt;}
.x64{left:426.071083pt;}
.x1b{left:427.341366pt;}
.x2e{left:428.288566pt;}
.xa5{left:430.779092pt;}
.xa8{left:433.639149pt;}
.x8d{left:437.718667pt;}
.x79{left:454.501471pt;}
.x1c{left:457.236194pt;}
.x7f{left:458.640000pt;}
.x39{left:462.085000pt;}
.xa1{left:472.256112pt;}
.x55{left:491.285333pt;}
.x6a{left:503.771667pt;}
.x1e{left:505.878626pt;}
.x3a{left:521.852500pt;}
.x9e{left:525.578115pt;}
.x92{left:530.410833pt;}
.x7a{left:552.572956pt;}
.x57{left:554.740000pt;}
.x1d{left:556.374484pt;}
.x3b{left:565.619167pt;}
.x56{left:593.860000pt;}
.x59{left:618.194667pt;}
.x58{left:657.314667pt;}
.x5a{left:713.286667pt;}
.x99{left:723.646667pt;}
.x8c{left:828.254667pt;}
}




    .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; }
  