
    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_ed35a889ef29ffb4e1c91bbe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_f40558eb8c3591a2b208b48f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909668;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_0ca6106408bc7d870dd8e819.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911621;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_34278c67dec6d80d7edfa9c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.936035;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_12dda7b96fa9b0d71d15c99b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_11e31d28b6d0cef9793a29b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_873b4955f1270542db02f6b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906250;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_43978f053b873dbadc914bc0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.991211;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_1f27e7a9e2ae86f9099b8809.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884766;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_c545d9ea0d65d0328ffa7d48.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.979004;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_50926dc9d2c2a5672498bbf2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.585840;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_603bded541f633fcef657cad.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911621;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_2b294b6ad8b53f1528045162.woff2')format("woff");}.fff{font-family:fff;line-height:0.712402;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_5796cef96c73814b1c8f38b2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.887971;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_d408238ab3b89c708f6d5b4a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908691;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_2401cf445c8e2b96079a6df8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909668;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_e373c2c7344dd4e3f7880f0b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.906250;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_1e7c19c5ff96744c884222e6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.897461;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_ded428281421db5d25b11fe2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906738;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_bee554d612f08f3c5a95e9e8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.053000;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_c39bd7c322c4c0fd5b2929b1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.689941;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_ec299f4e4c9ebcc9693a3847.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.984863;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_ab69187f9776bd73a729434d.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.018066;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_f462caa05a395b5ffb6c229f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.909668;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_ca2e2272a7437124cd9df4c7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.080078;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_dac977b6198aef14b7f80324.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.686523;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_c7d487c73e148d1a817f5625.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.745117;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_2e88b7665c354e5c48f1785b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.833008;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_3b403c420cc909f68b5d364a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.881836;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_0a6a3ea271b8f320c2eec167.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.906738;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_e2d5d6e1d33344791e985234.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.699219;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_612766cb150bb178bc76d3a2.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.688477;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_b256182754b6ef7f737e75c4.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.690430;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_d14d0c20474ef6db5f749775.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.734375;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_0ac982b3384dcc25dd9ba761.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.691406;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_5a09f5e9e0d2853f3bf46bb6.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.033203;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_52aafd13473100b65c9a6df9.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.908691;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;}
.md{transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229876,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248503,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,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);}
.m10{transform:matrix(3.903333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.903333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.903333,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-45.719400px;}
.v7{vertical-align:-31.679400px;}
.v3{vertical-align:-13.680000px;}
.v5{vertical-align:-2.878200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.v4{vertical-align:2.880000px;}
.v6{vertical-align:16.919400px;}
.v2{vertical-align:28.799820px;}
.ls11{letter-spacing:-7.160400px;}
.ls9d{letter-spacing:-5.761224px;}
.lsa2{letter-spacing:-5.040432px;}
.ls12{letter-spacing:-4.326912px;}
.lsa3{letter-spacing:-4.324752px;}
.ls96{letter-spacing:-4.319640px;}
.ls88{letter-spacing:-3.961800px;}
.ls7{letter-spacing:-3.960000px;}
.ls90{letter-spacing:-3.614184px;}
.ls16{letter-spacing:-3.609072px;}
.ls9a{letter-spacing:-3.603960px;}
.ls99{letter-spacing:-3.598848px;}
.ls8{letter-spacing:-3.595500px;}
.ls13{letter-spacing:-3.511296px;}
.ls47{letter-spacing:-3.316104px;}
.ls22{letter-spacing:-3.297996px;}
.ls94{letter-spacing:-3.251232px;}
.ls81{letter-spacing:-3.246120px;}
.ls85{letter-spacing:-3.241008px;}
.ls87{letter-spacing:-3.092760px;}
.ls26{letter-spacing:-2.952072px;}
.ls28{letter-spacing:-2.946384px;}
.ls24{letter-spacing:-2.931552px;}
.ls8c{letter-spacing:-2.888280px;}
.ls1d{letter-spacing:-2.883168px;}
.ls9f{letter-spacing:-2.878056px;}
.ls2c{letter-spacing:-2.582352px;}
.ls2e{letter-spacing:-2.576664px;}
.ls21{letter-spacing:-2.565108px;}
.ls8f{letter-spacing:-2.530440px;}
.ls61{letter-spacing:-2.527200px;}
.ls84{letter-spacing:-2.525328px;}
.ls5f{letter-spacing:-2.521800px;}
.ls8e{letter-spacing:-2.520216px;}
.lsf{letter-spacing:-2.519100px;}
.ls3b{letter-spacing:-2.518488px;}
.ls92{letter-spacing:-2.515104px;}
.ls44{letter-spacing:-2.513700px;}
.ls34{letter-spacing:-2.377584px;}
.ls35{letter-spacing:-2.360520px;}
.ls2d{letter-spacing:-2.218320px;}
.ls9{letter-spacing:-2.212632px;}
.ls3a{letter-spacing:-2.206944px;}
.lsa0{letter-spacing:-2.172600px;}
.ls82{letter-spacing:-2.167488px;}
.ls89{letter-spacing:-2.162376px;}
.ls1b{letter-spacing:-2.157264px;}
.ls8b{letter-spacing:-2.152152px;}
.ls8d{letter-spacing:-2.147040px;}
.ls36{letter-spacing:-1.956672px;}
.ls38{letter-spacing:-1.848600px;}
.lsa{letter-spacing:-1.842912px;}
.ls27{letter-spacing:-1.837224px;}
.ls23{letter-spacing:-1.832220px;}
.ls7a{letter-spacing:-1.813968px;}
.ls9e{letter-spacing:-1.809648px;}
.ls1c{letter-spacing:-1.804536px;}
.ls7f{letter-spacing:-1.799424px;}
.lsa1{letter-spacing:-1.794312px;}
.ls9b{letter-spacing:-1.789200px;}
.ls63{letter-spacing:-1.729152px;}
.ls3e{letter-spacing:-1.666584px;}
.ls3f{letter-spacing:-1.655208px;}
.ls62{letter-spacing:-1.649520px;}
.ls5e{letter-spacing:-1.638144px;}
.ls40{letter-spacing:-1.632456px;}
.ls5d{letter-spacing:-1.604016px;}
.ls32{letter-spacing:-1.478880px;}
.ls5{letter-spacing:-1.473192px;}
.ls48{letter-spacing:-1.455948px;}
.ls72{letter-spacing:-1.454112px;}
.lsa4{letter-spacing:-1.451808px;}
.ls7b{letter-spacing:-1.447200px;}
.ls1a{letter-spacing:-1.446696px;}
.ls17{letter-spacing:-1.441584px;}
.ls95{letter-spacing:-1.431360px;}
.ls8a{letter-spacing:-1.426248px;}
.ls20{letter-spacing:-1.115604px;}
.ls45{letter-spacing:-1.114848px;}
.lsc{letter-spacing:-1.109160px;}
.ls2f{letter-spacing:-1.103472px;}
.ls59{letter-spacing:-1.094256px;}
.ls55{letter-spacing:-1.090800px;}
.ls91{letter-spacing:-1.088856px;}
.ls41{letter-spacing:-1.086876px;}
.ls57{letter-spacing:-1.085400px;}
.ls1e{letter-spacing:-1.083744px;}
.ls86{letter-spacing:-1.078632px;}
.ls14{letter-spacing:-1.075500px;}
.ls83{letter-spacing:-1.073520px;}
.ls98{letter-spacing:-1.068408px;}
.ls5b{letter-spacing:-1.006776px;}
.ls5a{letter-spacing:-0.966960px;}
.ls31{letter-spacing:-0.745128px;}
.lsb{letter-spacing:-0.739440px;}
.ls56{letter-spacing:-0.738072px;}
.ls64{letter-spacing:-0.733752px;}
.ls43{letter-spacing:-0.727776px;}
.ls80{letter-spacing:-0.725904px;}
.ls37{letter-spacing:-0.722376px;}
.ls10{letter-spacing:-0.719316px;}
.ls18{letter-spacing:-0.715680px;}
.ls19{letter-spacing:-0.710568px;}
.ls33{letter-spacing:-0.392472px;}
.ls77{letter-spacing:-0.381096px;}
.ls4{letter-spacing:-0.375408px;}
.ls25{letter-spacing:-0.369720px;}
.ls42{letter-spacing:-0.368676px;}
.lse{letter-spacing:-0.366444px;}
.ls74{letter-spacing:-0.353916px;}
.ls53{letter-spacing:-0.341280px;}
.ls7d{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:-0.093600px;}
.ls39{letter-spacing:-0.092232px;}
.ls54{letter-spacing:-0.073944px;}
.ls3{letter-spacing:-0.072000px;}
.ls3d{letter-spacing:-0.064800px;}
.ls7e{letter-spacing:-0.050400px;}
.ls46{letter-spacing:-0.043200px;}
.ls7c{letter-spacing:-0.028800px;}
.ls29{letter-spacing:-0.011376px;}
.ls2b{letter-spacing:-0.006588px;}
.ls6{letter-spacing:-0.005688px;}
.ls3c{letter-spacing:-0.004788px;}
.lsd{letter-spacing:-0.004212px;}
.ls0{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.004788px;}
.ls70{letter-spacing:0.007200px;}
.ls5c{letter-spacing:0.009576px;}
.ls71{letter-spacing:0.367200px;}
.ls6f{letter-spacing:1.060200px;}
.ls75{letter-spacing:1.061748px;}
.ls52{letter-spacing:1.062000px;}
.ls51{letter-spacing:1.063800px;}
.ls49{letter-spacing:1.098000px;}
.ls68{letter-spacing:1.420200px;}
.ls67{letter-spacing:1.422000px;}
.ls66{letter-spacing:1.423800px;}
.ls6c{letter-spacing:1.448892px;}
.ls79{letter-spacing:1.450440px;}
.ls6b{letter-spacing:1.454904px;}
.ls58{letter-spacing:1.791936px;}
.ls6a{letter-spacing:1.809612px;}
.ls78{letter-spacing:1.810296px;}
.ls6d{letter-spacing:2.159136px;}
.ls69{letter-spacing:2.489616px;}
.ls76{letter-spacing:3.246480px;}
.ls73{letter-spacing:4.681800px;}
.ls97{letter-spacing:5.045544px;}
.ls50{letter-spacing:5.056200px;}
.ls4b{letter-spacing:5.058000px;}
.ls4e{letter-spacing:5.059800px;}
.ls1f{letter-spacing:6.124176px;}
.ls4f{letter-spacing:6.139800px;}
.ls4d{letter-spacing:6.496200px;}
.ls15{letter-spacing:9.499392px;}
.ls93{letter-spacing:10.085976px;}
.ls4a{letter-spacing:10.098000px;}
.ls4c{letter-spacing:10.440000px;}
.ls9c{letter-spacing:10.443816px;}
.ls6e{letter-spacing:12.610368px;}
.ls65{letter-spacing:18.007992px;}
.ls2{letter-spacing:20.520864px;}
.ls30{letter-spacing:496.664784px;}
.ls1{letter-spacing:689.399100px;}
.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;}
}
.ws17{word-spacing:-14.328072px;}
.ws21{word-spacing:-14.322384px;}
.ws47{word-spacing:-12.933360px;}
.ws46{word-spacing:-12.222792px;}
.ws1b{word-spacing:-11.869452px;}
.ws44{word-spacing:-11.849616px;}
.ws4{word-spacing:-11.491776px;}
.ws45{word-spacing:-11.486664px;}
.ws43{word-spacing:-10.781208px;}
.ws5{word-spacing:-10.776096px;}
.ws6{word-spacing:-10.656360px;}
.ws2{word-spacing:-10.441548px;}
.ws1{word-spacing:-10.079316px;}
.ws3{word-spacing:-9.324288px;}
.ws7{word-spacing:-8.824140px;}
.ws4f{word-spacing:-8.644392px;}
.ws37{word-spacing:-4.735800px;}
.ws41{word-spacing:-1.828656px;}
.ws3b{word-spacing:-1.509012px;}
.ws48{word-spacing:-0.731016px;}
.wsd{word-spacing:-0.725904px;}
.ws50{word-spacing:-0.720792px;}
.ws34{word-spacing:-0.421200px;}
.ws1f{word-spacing:-0.381096px;}
.ws8{word-spacing:-0.375408px;}
.ws18{word-spacing:-0.369720px;}
.wsc{word-spacing:-0.368064px;}
.ws4e{word-spacing:-0.362952px;}
.wsf{word-spacing:-0.357840px;}
.ws4a{word-spacing:-0.352728px;}
.ws29{word-spacing:-0.108072px;}
.ws16{word-spacing:-0.056880px;}
.ws24{word-spacing:-0.054000px;}
.wsa{word-spacing:-0.040500px;}
.ws33{word-spacing:-0.036720px;}
.ws28{word-spacing:-0.013176px;}
.ws13{word-spacing:-0.011376px;}
.ws11{word-spacing:-0.005688px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.005112px;}
.ws9{word-spacing:0.008424px;}
.ws10{word-spacing:0.012636px;}
.ws1c{word-spacing:0.014364px;}
.ws20{word-spacing:0.019152px;}
.ws19{word-spacing:0.079056px;}
.ws14{word-spacing:0.335592px;}
.ws51{word-spacing:0.357840px;}
.ws32{word-spacing:0.358344px;}
.ws49{word-spacing:0.362952px;}
.ws12{word-spacing:0.364032px;}
.wse{word-spacing:0.368064px;}
.ws52{word-spacing:0.373176px;}
.ws42{word-spacing:0.396000px;}
.ws4c{word-spacing:0.710568px;}
.ws27{word-spacing:1.057536px;}
.ws4b{word-spacing:1.093968px;}
.ws38{word-spacing:1.417392px;}
.ws3f{word-spacing:1.777248px;}
.ws4d{word-spacing:1.799424px;}
.ws15{word-spacing:1.899792px;}
.ws35{word-spacing:4.621392px;}
.ws3a{word-spacing:4.701384px;}
.ws25{word-spacing:4.981392px;}
.ws39{word-spacing:5.674860px;}
.ws23{word-spacing:8.278200px;}
.ws3d{word-spacing:8.285544px;}
.ws40{word-spacing:9.363600px;}
.ws26{word-spacing:11.179728px;}
.ws3e{word-spacing:11.853864px;}
.ws36{word-spacing:11.899296px;}
.ws3c{word-spacing:16.911720px;}
.ws22{word-spacing:17.978616px;}
.ws1e{word-spacing:99.360576px;}
.ws1d{word-spacing:151.568928px;}
.ws2f{word-spacing:287.639100px;}
.ws2a{word-spacing:317.157120px;}
.ws2c{word-spacing:324.980712px;}
.ws2d{word-spacing:329.768712px;}
.ws31{word-spacing:335.844684px;}
.ws2e{word-spacing:338.688756px;}
.ws30{word-spacing:345.162132px;}
.ws2b{word-spacing:383.341644px;}
.ws1a{word-spacing:1027.447344px;}
._c{margin-left:-731.065716px;}
._25{margin-left:-17.177760px;}
._13{margin-left:-12.774384px;}
._49{margin-left:-11.149272px;}
._48{margin-left:-9.922896px;}
._18{margin-left:-8.286552px;}
._16{margin-left:-7.207920px;}
._17{margin-left:-6.098616px;}
._45{margin-left:-4.840956px;}
._12{margin-left:-3.338496px;}
._5{margin-left:-2.189592px;}
._7{margin-left:-1.100520px;}
._2{width:1.086408px;}
._4{width:2.113092px;}
._e{width:3.256776px;}
._46{width:4.476312px;}
._47{width:6.654780px;}
._14{width:7.661628px;}
._0{width:8.844840px;}
._1{width:9.942624px;}
._3{width:11.785536px;}
._15{width:13.710384px;}
._9{width:15.488424px;}
._11{width:17.002152px;}
._10{width:18.112932px;}
._f{width:19.300284px;}
._21{width:20.607624px;}
._1c{width:21.711096px;}
._6{width:23.089500px;}
._d{width:24.361380px;}
._1a{width:25.396920px;}
._1b{width:26.494704px;}
._24{width:27.592488px;}
._22{width:28.684584px;}
._1d{width:29.805120px;}
._1f{width:31.278312px;}
._1e{width:32.376096px;}
._19{width:33.485256px;}
._26{width:34.600104px;}
._40{width:35.675136px;}
._27{width:36.795672px;}
._a{width:40.470120px;}
._b{width:41.573592px;}
._8{width:45.259416px;}
._20{width:47.090952px;}
._23{width:48.171672px;}
._34{width:49.694652px;}
._39{width:68.406156px;}
._3e{width:105.848784px;}
._37{width:122.735592px;}
._35{width:126.331380px;}
._31{width:134.973720px;}
._2e{width:136.788372px;}
._2f{width:138.200832px;}
._36{width:144.702936px;}
._3a{width:148.308300px;}
._3c{width:156.941064px;}
._30{width:168.820092px;}
._3d{width:177.466500px;}
._29{width:179.248824px;}
._3f{width:181.469268px;}
._32{width:188.972784px;}
._2d{width:190.801800px;}
._3b{width:206.276616px;}
._33{width:219.218580px;}
._38{width:231.102396px;}
._2c{width:240.108624px;}
._2b{width:248.051916px;}
._28{width:321.504624px;}
._41{width:330.118236px;}
._44{width:340.891236px;}
._43{width:346.301676px;}
._42{width:353.153304px;}
._2a{width:420.439536px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:4.680000px;}
.fs10{font-size:36.720000px;}
.fs12{font-size:40.680000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:42.120000px;}
.fsb{font-size:44.280000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsf{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs11{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:65.880000px;}
.fsa{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:2.519850px;}
.y40{bottom:2.699850px;}
.y43{bottom:3.239850px;}
.y3c{bottom:5.399850px;}
.y5e{bottom:66.167850px;}
.y6{bottom:66.525004px;}
.y60{bottom:73.817448px;}
.y5b{bottom:74.178000px;}
.y5d{bottom:76.697850px;}
.y5a{bottom:87.137850px;}
.y5{bottom:97.125005px;}
.y2a{bottom:116.387850px;}
.y10f{bottom:117.737850px;}
.y28c{bottom:119.262342px;}
.y148{bottom:120.796464px;}
.y1f5{bottom:120.796545px;}
.y191{bottom:120.796563px;}
.y2c4{bottom:122.957850px;}
.y8c{bottom:124.033206px;}
.y155{bottom:124.036878px;}
.y25e{bottom:124.847094px;}
.y1d8{bottom:126.014718px;}
.y17c{bottom:126.195258px;}
.yb4{bottom:128.087742px;}
.y21b{bottom:129.254610px;}
.y208{bottom:129.256122px;}
.y241{bottom:131.235366px;}
.y29{bottom:131.597850px;}
.y33{bottom:131.776986px;}
.y28b{bottom:133.932504px;}
.y2c3{bottom:137.615700px;}
.y23{bottom:139.264499px;}
.y147{bottom:141.316635px;}
.y1f4{bottom:141.316716px;}
.y190{bottom:141.316734px;}
.y8b{bottom:144.103314px;}
.y154{bottom:144.106986px;}
.y25d{bottom:144.917202px;}
.y1d7{bottom:146.084826px;}
.y17b{bottom:146.265366px;}
.yb3{bottom:148.157850px;}
.y28a{bottom:148.602666px;}
.y21a{bottom:149.324718px;}
.y207{bottom:149.326230px;}
.y28{bottom:149.687850px;}
.y240{bottom:151.305474px;}
.y32{bottom:151.847094px;}
.y2c2{bottom:152.285862px;}
.y146{bottom:161.747031px;}
.y1f3{bottom:161.747112px;}
.y18f{bottom:161.747130px;}
.y8a{bottom:164.173422px;}
.y153{bottom:164.177094px;}
.y25c{bottom:164.987310px;}
.y1d6{bottom:166.154934px;}
.y17a{bottom:166.335474px;}
.y289{bottom:167.772666px;}
.yb1{bottom:168.225690px;}
.yb2{bottom:168.227850px;}
.y145{bottom:168.946986px;}
.y219{bottom:169.394826px;}
.y206{bottom:169.396338px;}
.y23f{bottom:171.375582px;}
.y2c1{bottom:171.455862px;}
.y31{bottom:171.917202px;}
.y1f2{bottom:182.267283px;}
.y18e{bottom:182.267301px;}
.y288{bottom:182.442828px;}
.y89{bottom:184.243530px;}
.y152{bottom:184.247202px;}
.y25b{bottom:185.057418px;}
.y2c0{bottom:186.126024px;}
.y1d5{bottom:186.225042px;}
.y179{bottom:186.405582px;}
.yd4{bottom:188.027310px;}
.yb0{bottom:188.295798px;}
.y218{bottom:189.464934px;}
.y205{bottom:189.466446px;}
.y23e{bottom:191.445690px;}
.y30{bottom:191.987310px;}
.y27{bottom:192.257634px;}
.y144{bottom:196.667112px;}
.y1a{bottom:196.933500px;}
.y287{bottom:197.112990px;}
.y2bf{bottom:200.796186px;}
.y1f1{bottom:202.787454px;}
.y18d{bottom:202.787472px;}
.y88{bottom:204.313638px;}
.y151{bottom:204.317310px;}
.y25a{bottom:205.127526px;}
.y1d4{bottom:206.295150px;}
.y178{bottom:206.475690px;}
.yd3{bottom:208.097418px;}
.yaf{bottom:208.365906px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y217{bottom:209.535042px;}
.y204{bottom:209.536554px;}
.y286{bottom:211.783152px;}
.y2f{bottom:212.057418px;}
.y26{bottom:212.327742px;}
.y143{bottom:217.187283px;}
.y2be{bottom:219.966186px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y1f0{bottom:223.217850px;}
.y18c{bottom:223.217868px;}
.y87{bottom:224.383746px;}
.y150{bottom:224.387418px;}
.y259{bottom:225.197634px;}
.y1d3{bottom:226.365258px;}
.y285{bottom:226.453314px;}
.y177{bottom:226.545798px;}
.yd2{bottom:228.167526px;}
.yae{bottom:228.436014px;}
.y216{bottom:229.605150px;}
.y203{bottom:229.606662px;}
.y23d{bottom:231.585906px;}
.y2e{bottom:232.127526px;}
.y25{bottom:232.397850px;}
.y2bd{bottom:234.636348px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y142{bottom:237.617679px;}
.y2f5{bottom:239.141544px;}
.y18b{bottom:243.738039px;}
.y86{bottom:244.453854px;}
.y14f{bottom:244.457526px;}
.y258{bottom:245.267742px;}
.y284{bottom:245.623314px;}
.y1d2{bottom:246.435366px;}
.y176{bottom:246.615906px;}
.yd1{bottom:248.237634px;}
.yad{bottom:248.506122px;}
.y1f6{bottom:249.137850px;}
.y2bc{bottom:249.306510px;}
.y325{bottom:249.317202px;}
.y215{bottom:249.675258px;}
.y202{bottom:249.676770px;}
.y23c{bottom:251.656014px;}
.y2d{bottom:252.197634px;}
.y2f4{bottom:253.811706px;}
.y141{bottom:258.137850px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y283{bottom:260.293476px;}
.y324{bottom:263.987364px;}
.y85{bottom:264.523962px;}
.y14e{bottom:264.527634px;}
.y257{bottom:265.337850px;}
.y1d1{bottom:266.505474px;}
.y175{bottom:266.686014px;}
.yd0{bottom:268.307742px;}
.y2bb{bottom:268.476510px;}
.y2f3{bottom:268.481868px;}
.yac{bottom:268.576230px;}
.y192{bottom:269.657850px;}
.y214{bottom:269.745366px;}
.y201{bottom:269.746878px;}
.y23b{bottom:271.726122px;}
.y2c{bottom:272.267742px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y282{bottom:274.963638px;}
.y323{bottom:278.657526px;}
.y2ba{bottom:283.146672px;}
.y2f2{bottom:283.152030px;}
.y149{bottom:284.057850px;}
.y84{bottom:284.594070px;}
.y14d{bottom:284.597742px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1d0{bottom:286.575582px;}
.y174{bottom:286.756122px;}
.ycf{bottom:288.377850px;}
.yab{bottom:288.646338px;}
.y24{bottom:289.097850px;}
.y281{bottom:289.633800px;}
.y213{bottom:289.815474px;}
.y200{bottom:289.816986px;}
.y23a{bottom:291.796230px;}
.y2b{bottom:292.337850px;}
.y322{bottom:293.327688px;}
.y2b9{bottom:297.816834px;}
.y2f1{bottom:302.322030px;}
.y83{bottom:304.664178px;}
.y14c{bottom:304.667850px;}
.y1cf{bottom:306.645690px;}
.y173{bottom:306.826230px;}
.yce{bottom:308.447094px;}
.yaa{bottom:308.716446px;}
.y280{bottom:308.803800px;}
.y1ef{bottom:309.885582px;}
.y1ff{bottom:309.887094px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y239{bottom:311.866338px;}
.y2b8{bottom:312.486996px;}
.y321{bottom:312.497688px;}
.y2f0{bottom:316.992192px;}
.y18a{bottom:321.857850px;}
.y256{bottom:322.127850px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y27f{bottom:323.473962px;}
.y82{bottom:324.734286px;}
.y14b{bottom:324.737850px;}
.y1ce{bottom:326.715798px;}
.y172{bottom:326.896338px;}
.y320{bottom:327.156126px;}
.y2b7{bottom:327.157158px;}
.ycd{bottom:328.517202px;}
.ya9{bottom:328.786554px;}
.y1ee{bottom:329.955690px;}
.y1fe{bottom:329.957202px;}
.y2ef{bottom:331.662354px;}
.y238{bottom:331.936446px;}
.y11f{bottom:333.016770px;}
.y27e{bottom:338.144124px;}
.y31f{bottom:341.826288px;}
.y140{bottom:344.803728px;}
.y81{bottom:344.804394px;}
.y2b6{bottom:346.327158px;}
.y2ee{bottom:346.332516px;}
.y1cd{bottom:346.785906px;}
.y171{bottom:346.966446px;}
.y11{bottom:348.133500px;}
.ycc{bottom:348.587310px;}
.ya8{bottom:348.856662px;}
.y1ed{bottom:350.025798px;}
.y1fd{bottom:350.027310px;}
.y237{bottom:352.006554px;}
.y11e{bottom:353.086878px;}
.y31e{bottom:356.496450px;}
.y27d{bottom:357.314124px;}
.y2b5{bottom:360.997320px;}
.y13f{bottom:364.873836px;}
.y80{bottom:364.874502px;}
.y2ed{bottom:365.502516px;}
.y1cc{bottom:366.856014px;}
.y170{bottom:367.036554px;}
.ycb{bottom:368.657418px;}
.ya7{bottom:368.926770px;}
.y1ec{bottom:370.095906px;}
.y1fc{bottom:370.097418px;}
.y27c{bottom:371.984286px;}
.y236{bottom:372.076662px;}
.y11d{bottom:373.156986px;}
.y31d{bottom:375.666450px;}
.y2b4{bottom:375.667482px;}
.y59{bottom:378.467850px;}
.y2ec{bottom:380.172678px;}
.y13e{bottom:384.943944px;}
.y7f{bottom:384.944610px;}
.y27b{bottom:386.654448px;}
.y10{bottom:386.785499px;}
.y1cb{bottom:386.926122px;}
.y16f{bottom:387.106662px;}
.yca{bottom:388.727526px;}
.ya6{bottom:388.996878px;}
.y1eb{bottom:390.166014px;}
.y1fb{bottom:390.167526px;}
.y31c{bottom:390.336612px;}
.y235{bottom:392.146770px;}
.y11c{bottom:393.227094px;}
.y2b3{bottom:394.837482px;}
.y2eb{bottom:394.842840px;}
.y27a{bottom:401.324610px;}
.y31b{bottom:405.006774px;}
.y13d{bottom:405.014052px;}
.y7e{bottom:405.014718px;}
.y10e{bottom:405.017310px;}
.y255{bottom:405.557310px;}
.y1ca{bottom:406.996230px;}
.y16e{bottom:407.176770px;}
.yf{bottom:408.044999px;}
.yf1{bottom:408.795042px;}
.yc9{bottom:408.797634px;}
.ya5{bottom:409.066986px;}
.y2b2{bottom:409.507644px;}
.y1ea{bottom:410.236122px;}
.y1fa{bottom:410.237634px;}
.y234{bottom:412.216878px;}
.y11b{bottom:413.297202px;}
.y2ea{bottom:414.012840px;}
.y279{bottom:415.994772px;}
.y31a{bottom:419.676936px;}
.y2b1{bottom:424.177806px;}
.y58{bottom:424.638912px;}
.y13c{bottom:425.084160px;}
.y7d{bottom:425.084826px;}
.y10d{bottom:425.087418px;}
.y254{bottom:425.627418px;}
.y1c9{bottom:427.066338px;}
.y16d{bottom:427.246878px;}
.y2e9{bottom:428.683002px;}
.yf0{bottom:428.865150px;}
.yc8{bottom:428.867742px;}
.ya4{bottom:429.137094px;}
.y1e9{bottom:430.306230px;}
.y1f9{bottom:430.307742px;}
.y233{bottom:432.286986px;}
.y11a{bottom:433.367310px;}
.y319{bottom:434.347098px;}
.y278{bottom:435.164772px;}
.y2b0{bottom:438.847968px;}
.y57{bottom:439.848390px;}
.y2e8{bottom:443.353164px;}
.y13b{bottom:445.154268px;}
.y7c{bottom:445.154934px;}
.y10c{bottom:445.157526px;}
.y253{bottom:445.697526px;}
.y198{bottom:447.047418px;}
.y1b1{bottom:447.047526px;}
.y1c8{bottom:447.136446px;}
.y16c{bottom:447.316986px;}
.yef{bottom:448.935258px;}
.yc7{bottom:448.937850px;}
.y318{bottom:449.017260px;}
.ya3{bottom:449.207202px;}
.y277{bottom:449.834934px;}
.y1e8{bottom:450.376338px;}
.y1f8{bottom:450.377850px;}
.y232{bottom:452.357094px;}
.y119{bottom:453.437418px;}
.y2af{bottom:453.518130px;}
.y56{bottom:455.148606px;}
.y2e7{bottom:458.023326px;}
.y317{bottom:463.687422px;}
.y276{bottom:464.505096px;}
.y13a{bottom:465.224376px;}
.y7b{bottom:465.225042px;}
.y10b{bottom:465.227634px;}
.y252{bottom:465.767634px;}
.y197{bottom:467.117526px;}
.y1b0{bottom:467.117634px;}
.y1c7{bottom:467.206554px;}
.y16b{bottom:467.387094px;}
.y2ae{bottom:468.188292px;}
.yee{bottom:469.005366px;}
.yc6{bottom:469.007310px;}
.ya2{bottom:469.277310px;}
.y1e7{bottom:470.446446px;}
.y55{bottom:470.448822px;}
.y231{bottom:472.427202px;}
.y2e6{bottom:472.693488px;}
.y118{bottom:473.507526px;}
.y275{bottom:479.175258px;}
.y316{bottom:482.857422px;}
.ye{bottom:484.864502px;}
.y139{bottom:485.294484px;}
.y7a{bottom:485.295150px;}
.y10a{bottom:485.297742px;}
.y54{bottom:485.658300px;}
.y251{bottom:485.837742px;}
.y1f7{bottom:485.927850px;}
.y196{bottom:487.187634px;}
.y1af{bottom:487.187742px;}
.y1c6{bottom:487.276662px;}
.y2ad{bottom:487.358292px;}
.y16a{bottom:487.457202px;}
.yed{bottom:489.075474px;}
.yc5{bottom:489.077418px;}
.ya1{bottom:489.347418px;}
.y1e6{bottom:490.516554px;}
.y2e5{bottom:491.863488px;}
.y230{bottom:492.497310px;}
.y117{bottom:493.577634px;}
.y274{bottom:493.845420px;}
.y315{bottom:497.527584px;}
.y53{bottom:500.958516px;}
.y2ac{bottom:502.028454px;}
.yd{bottom:502.864502px;}
.y138{bottom:505.364592px;}
.y79{bottom:505.365258px;}
.y109{bottom:505.367850px;}
.y250{bottom:505.907850px;}
.y2e4{bottom:506.533650px;}
.y195{bottom:507.257742px;}
.y1ae{bottom:507.257850px;}
.y1c5{bottom:507.346770px;}
.y169{bottom:507.527310px;}
.yec{bottom:509.145582px;}
.yc4{bottom:509.147526px;}
.ya0{bottom:509.417526px;}
.y1e5{bottom:510.586662px;}
.y314{bottom:512.197746px;}
.y22f{bottom:512.567418px;}
.y273{bottom:513.015420px;}
.y116{bottom:513.647742px;}
.y52{bottom:516.258732px;}
.y2ab{bottom:516.698616px;}
.yc{bottom:520.864502px;}
.y2e3{bottom:521.203812px;}
.y137{bottom:525.434700px;}
.y78{bottom:525.435366px;}
.y194{bottom:527.327850px;}
.y1c4{bottom:527.416878px;}
.y168{bottom:527.597418px;}
.y272{bottom:527.685582px;}
.yeb{bottom:529.215690px;}
.yc3{bottom:529.217634px;}
.y9f{bottom:529.487634px;}
.y1e4{bottom:530.656770px;}
.y313{bottom:531.367746px;}
.y2aa{bottom:531.368778px;}
.y51{bottom:531.468210px;}
.y22e{bottom:532.637526px;}
.y115{bottom:533.717850px;}
.y2e2{bottom:535.873974px;}
.yb{bottom:538.864499px;}
.y271{bottom:542.355744px;}
.y1ad{bottom:543.617850px;}
.y108{bottom:545.503278px;}
.y136{bottom:545.504808px;}
.y77{bottom:545.505474px;}
.y312{bottom:546.037908px;}
.y50{bottom:546.768426px;}
.y1c3{bottom:547.486986px;}
.y167{bottom:547.667526px;}
.yea{bottom:549.285798px;}
.yc2{bottom:549.287742px;}
.y9e{bottom:549.557742px;}
.y2a9{bottom:550.538778px;}
.y2e1{bottom:550.544136px;}
.y1e3{bottom:550.726878px;}
.y22d{bottom:552.707634px;}
.ya{bottom:556.864499px;}
.y270{bottom:557.025906px;}
.y311{bottom:560.708070px;}
.y4f{bottom:562.068642px;}
.y24f{bottom:562.697850px;}
.y193{bottom:563.687850px;}
.y2a8{bottom:565.208940px;}
.y107{bottom:565.573386px;}
.y135{bottom:565.574916px;}
.y76{bottom:565.575582px;}
.y1c2{bottom:567.557094px;}
.y166{bottom:567.737634px;}
.ye9{bottom:569.355906px;}
.yc1{bottom:569.357850px;}
.y9d{bottom:569.627850px;}
.y2e0{bottom:569.714136px;}
.y1e2{bottom:570.796986px;}
.y22c{bottom:572.777742px;}
.y26f{bottom:576.195906px;}
.y4e{bottom:577.278120px;}
.y310{bottom:579.878070px;}
.y2a7{bottom:579.879102px;}
.y2df{bottom:584.384298px;}
.y106{bottom:585.643494px;}
.y134{bottom:585.645024px;}
.y75{bottom:585.645690px;}
.y1c1{bottom:587.627202px;}
.y165{bottom:587.807742px;}
.ye8{bottom:589.426014px;}
.y114{bottom:590.417850px;}
.y26e{bottom:590.866068px;}
.y1e1{bottom:590.867094px;}
.y4d{bottom:592.578336px;}
.y22b{bottom:592.847850px;}
.y30f{bottom:594.548232px;}
.y2a6{bottom:594.549264px;}
.y2de{bottom:599.054460px;}
.y26d{bottom:605.536230px;}
.y105{bottom:605.713602px;}
.y133{bottom:605.715132px;}
.y1ac{bottom:605.715600px;}
.y74{bottom:605.715798px;}
.y9c{bottom:605.988264px;}
.y1c0{bottom:607.697310px;}
.y164{bottom:607.877850px;}
.y4c{bottom:607.878552px;}
.y30e{bottom:609.218394px;}
.ye7{bottom:609.496122px;}
.yc0{bottom:609.497094px;}
.y1e0{bottom:610.937202px;}
.y2a5{bottom:613.719264px;}
.y2dd{bottom:613.724622px;}
.y4b{bottom:623.088030px;}
.y9b{bottom:624.167850px;}
.y26c{bottom:624.706230px;}
.y104{bottom:625.783710px;}
.y132{bottom:625.785240px;}
.y1ab{bottom:625.785708px;}
.y73{bottom:625.785906px;}
.y1bf{bottom:627.767418px;}
.y30d{bottom:628.388394px;}
.y2a4{bottom:628.389426px;}
.ye6{bottom:629.566230px;}
.ybf{bottom:629.567202px;}
.y1df{bottom:631.007310px;}
.y2dc{bottom:632.894622px;}
.y4a{bottom:638.388246px;}
.y26b{bottom:639.376392px;}
.y30c{bottom:643.058556px;}
.y2a3{bottom:643.059588px;}
.y163{bottom:644.237850px;}
.y9{bottom:645.510000px;}
.y103{bottom:645.853818px;}
.y131{bottom:645.855348px;}
.y1aa{bottom:645.855816px;}
.y72{bottom:645.856014px;}
.y24e{bottom:646.127634px;}
.y2db{bottom:647.564784px;}
.y1be{bottom:647.837526px;}
.ye5{bottom:649.636338px;}
.ybe{bottom:649.637310px;}
.y22a{bottom:649.637850px;}
.y1de{bottom:651.077418px;}
.y49{bottom:653.688462px;}
.y26a{bottom:654.046554px;}
.y2a2{bottom:657.729750px;}
.y30b{bottom:662.228556px;}
.y2da{bottom:662.234946px;}
.y9a{bottom:662.777850px;}
.y102{bottom:665.923926px;}
.y130{bottom:665.925456px;}
.y1a9{bottom:665.925924px;}
.y71{bottom:665.926122px;}
.y24d{bottom:666.197742px;}
.y8{bottom:666.771000px;}
.y1bd{bottom:667.907634px;}
.y269{bottom:668.716716px;}
.y48{bottom:668.897940px;}
.ye4{bottom:669.706446px;}
.ybd{bottom:669.707418px;}
.y1dd{bottom:671.147526px;}
.y2a1{bottom:672.399912px;}
.y113{bottom:673.937526px;}
.y30a{bottom:676.898718px;}
.y2d9{bottom:676.905108px;}
.y162{bottom:682.847850px;}
.y47{bottom:684.198156px;}
.y101{bottom:685.994034px;}
.y12f{bottom:685.995564px;}
.y1a8{bottom:685.996032px;}
.y70{bottom:685.996230px;}
.y24c{bottom:686.267850px;}
.y268{bottom:687.886716px;}
.y1bc{bottom:687.977742px;}
.ye3{bottom:689.776554px;}
.ybc{bottom:689.777526px;}
.y1dc{bottom:691.217634px;}
.y309{bottom:691.568880px;}
.y2a0{bottom:691.569912px;}
.y2d8{bottom:691.575270px;}
.y112{bottom:694.007634px;}
.y46{bottom:699.498372px;}
.y267{bottom:702.556878px;}
.y100{bottom:706.064142px;}
.y12e{bottom:706.065672px;}
.y1a7{bottom:706.066140px;}
.y6f{bottom:706.066338px;}
.y308{bottom:706.239042px;}
.y29f{bottom:706.240074px;}
.y1bb{bottom:708.047850px;}
.ye2{bottom:709.846662px;}
.ybb{bottom:709.847634px;}
.y2d7{bottom:710.745270px;}
.y1db{bottom:711.287742px;}
.y111{bottom:714.077742px;}
.y45{bottom:714.707850px;}
.y266{bottom:717.227040px;}
.y307{bottom:720.909204px;}
.y29e{bottom:720.910236px;}
.y2d6{bottom:725.415432px;}
.yff{bottom:726.134250px;}
.y12d{bottom:726.135780px;}
.y1a6{bottom:726.136248px;}
.y6e{bottom:726.136446px;}
.y7{bottom:726.298500px;}
.ye1{bottom:729.916770px;}
.yba{bottom:729.917742px;}
.y1da{bottom:731.357850px;}
.y265{bottom:731.897202px;}
.y110{bottom:734.147850px;}
.y229{bottom:736.307850px;}
.y42{bottom:739.008000px;}
.y306{bottom:740.079204px;}
.y29d{bottom:740.080236px;}
.y2d5{bottom:740.085594px;}
.y44{bottom:742.247850px;}
.y24b{bottom:743.057850px;}
.y1ba{bottom:744.408264px;}
.y99{bottom:746.202288px;}
.yfe{bottom:746.204358px;}
.y189{bottom:746.205132px;}
.y12c{bottom:746.205888px;}
.y1a5{bottom:746.206356px;}
.y6d{bottom:746.206554px;}
.ye0{bottom:749.986878px;}
.yb9{bottom:749.987850px;}
.y264{bottom:751.067202px;}
.y4{bottom:752.599495px;}
.y305{bottom:754.749366px;}
.y29c{bottom:754.750398px;}
.y2d4{bottom:754.755756px;}
.y228{bottom:757.637850px;}
.y1b9{bottom:762.587850px;}
.y263{bottom:765.737364px;}
.y98{bottom:766.272396px;}
.yfd{bottom:766.274466px;}
.y188{bottom:766.275240px;}
.y12b{bottom:766.275996px;}
.y161{bottom:766.276068px;}
.y1a4{bottom:766.276464px;}
.y6c{bottom:766.276662px;}
.y1d9{bottom:766.907850px;}
.y304{bottom:769.419528px;}
.y29b{bottom:769.420560px;}
.y2d3{bottom:769.425918px;}
.ydf{bottom:770.056986px;}
.y226{bottom:779.597850px;}
.y262{bottom:780.407526px;}
.y14a{bottom:783.197850px;}
.y303{bottom:784.089690px;}
.y29a{bottom:784.090722px;}
.y225{bottom:784.367850px;}
.y97{bottom:786.342504px;}
.yfc{bottom:786.344574px;}
.y187{bottom:786.345348px;}
.y12a{bottom:786.346104px;}
.y160{bottom:786.346176px;}
.y1a3{bottom:786.346572px;}
.y6b{bottom:786.346770px;}
.yb8{bottom:786.348264px;}
.y223{bottom:788.147850px;}
.y224{bottom:788.417850px;}
.y2d2{bottom:788.595918px;}
.y3f{bottom:789.678000px;}
.yde{bottom:790.127094px;}
.y41{bottom:792.377850px;}
.y261{bottom:795.077688px;}
.y299{bottom:798.760884px;}
.y227{bottom:799.847850px;}
.y302{bottom:803.259690px;}
.y2d1{bottom:803.266080px;}
.yb7{bottom:804.527850px;}
.y96{bottom:806.412612px;}
.yfb{bottom:806.414682px;}
.y212{bottom:806.415366px;}
.y186{bottom:806.415456px;}
.y129{bottom:806.416212px;}
.y15f{bottom:806.416284px;}
.y1a2{bottom:806.416680px;}
.y6a{bottom:806.416878px;}
.y260{bottom:809.747850px;}
.ydd{bottom:810.197202px;}
.y301{bottom:817.929852px;}
.y298{bottom:817.930884px;}
.y2d0{bottom:817.936242px;}
.y221{bottom:818.567850px;}
.y21f{bottom:820.997850px;}
.y220{bottom:822.077850px;}
.y3d{bottom:822.347850px;}
.y222{bottom:822.707850px;}
.y1b8{bottom:824.687418px;}
.y95{bottom:826.482720px;}
.y24a{bottom:826.483872px;}
.yfa{bottom:826.484790px;}
.y211{bottom:826.485474px;}
.y185{bottom:826.485564px;}
.y128{bottom:826.486320px;}
.y15e{bottom:826.486392px;}
.y1a1{bottom:826.486788px;}
.y69{bottom:826.486986px;}
.y3e{bottom:829.907850px;}
.ydc{bottom:830.267310px;}
.y300{bottom:832.600014px;}
.y297{bottom:832.601046px;}
.y2cf{bottom:832.606404px;}
.y1b7{bottom:844.757526px;}
.y21e{bottom:845.297850px;}
.y94{bottom:846.552828px;}
.y249{bottom:846.553980px;}
.yf9{bottom:846.554898px;}
.y210{bottom:846.555582px;}
.y184{bottom:846.555672px;}
.y127{bottom:846.556428px;}
.y15d{bottom:846.556500px;}
.y1a0{bottom:846.556896px;}
.y68{bottom:846.557094px;}
.y2ff{bottom:847.270176px;}
.y296{bottom:847.271208px;}
.ydb{bottom:850.337418px;}
.y2ce{bottom:851.776404px;}
.y3b{bottom:855.648000px;}
.y3a{bottom:861.047850px;}
.y295{bottom:861.941370px;}
.y25f{bottom:863.477850px;}
.y21d{bottom:864.737850px;}
.y1b6{bottom:864.827634px;}
.y2fe{bottom:866.440176px;}
.y2cd{bottom:866.446566px;}
.y93{bottom:866.622936px;}
.y248{bottom:866.624088px;}
.yf8{bottom:866.625006px;}
.y20f{bottom:866.625690px;}
.y183{bottom:866.625780px;}
.y126{bottom:866.626536px;}
.y15c{bottom:866.626608px;}
.y19f{bottom:866.627004px;}
.y67{bottom:866.627202px;}
.yb6{bottom:866.627850px;}
.yda{bottom:870.407526px;}
.y294{bottom:876.611532px;}
.y3{bottom:879.369000px;}
.y2fd{bottom:881.110338px;}
.y2cc{bottom:881.116728px;}
.y1b5{bottom:884.897742px;}
.y92{bottom:886.693044px;}
.y247{bottom:886.694196px;}
.yf7{bottom:886.695114px;}
.y20e{bottom:886.695798px;}
.y182{bottom:886.695888px;}
.y125{bottom:886.696644px;}
.y15b{bottom:886.696716px;}
.y19e{bottom:886.697112px;}
.y66{bottom:886.697310px;}
.yb5{bottom:886.697850px;}
.y21c{bottom:887.327850px;}
.yd9{bottom:890.477634px;}
.y2fc{bottom:895.780500px;}
.y293{bottom:895.781532px;}
.y2cb{bottom:895.786890px;}
.y1b4{bottom:904.967850px;}
.y91{bottom:906.763152px;}
.y246{bottom:906.764304px;}
.yf6{bottom:906.765222px;}
.y20d{bottom:906.765906px;}
.y181{bottom:906.765996px;}
.y124{bottom:906.766752px;}
.y15a{bottom:906.766824px;}
.y19d{bottom:906.767220px;}
.y65{bottom:906.767418px;}
.y2fb{bottom:910.450662px;}
.y292{bottom:910.451694px;}
.y2ca{bottom:910.457052px;}
.yd8{bottom:910.547742px;}
.y291{bottom:925.121856px;}
.y39{bottom:926.567652px;}
.y90{bottom:926.833260px;}
.y245{bottom:926.834412px;}
.yf5{bottom:926.835330px;}
.y20c{bottom:926.836014px;}
.y180{bottom:926.836104px;}
.y123{bottom:926.836860px;}
.y159{bottom:926.836932px;}
.y19c{bottom:926.837328px;}
.y64{bottom:926.837526px;}
.y2fa{bottom:929.620662px;}
.y2c9{bottom:929.627052px;}
.yd7{bottom:930.617850px;}
.y38{bottom:939.167850px;}
.y290{bottom:939.792018px;}
.y2f9{bottom:944.290824px;}
.y2c8{bottom:944.297214px;}
.y2{bottom:945.126001px;}
.y8f{bottom:946.903368px;}
.y244{bottom:946.904520px;}
.yf4{bottom:946.905438px;}
.y20b{bottom:946.906122px;}
.y17f{bottom:946.906212px;}
.y122{bottom:946.906968px;}
.y158{bottom:946.907040px;}
.y19b{bottom:946.907436px;}
.y63{bottom:946.907634px;}
.y1b3{bottom:947.267700px;}
.y2f8{bottom:958.960986px;}
.y28f{bottom:958.962018px;}
.y2c7{bottom:958.967376px;}
.y37{bottom:963.287850px;}
.y1{bottom:966.726000px;}
.y8e{bottom:966.973476px;}
.y243{bottom:966.974628px;}
.yf3{bottom:966.975546px;}
.y20a{bottom:966.976230px;}
.y17e{bottom:966.976320px;}
.y121{bottom:966.977076px;}
.y157{bottom:966.977148px;}
.y19a{bottom:966.977544px;}
.y62{bottom:966.977742px;}
.yd6{bottom:966.978264px;}
.y2f7{bottom:973.631148px;}
.y28e{bottom:973.632180px;}
.y2c6{bottom:973.637538px;}
.yd5{bottom:985.157850px;}
.y8d{bottom:987.043584px;}
.y242{bottom:987.044736px;}
.yf2{bottom:987.045654px;}
.y209{bottom:987.046338px;}
.y17d{bottom:987.046428px;}
.y120{bottom:987.047184px;}
.y156{bottom:987.047256px;}
.y199{bottom:987.047652px;}
.y61{bottom:987.047850px;}
.y1b2{bottom:987.677850px;}
.y2f6{bottom:988.301310px;}
.y28d{bottom:988.302342px;}
.y2c5{bottom:988.307700px;}
.y36{bottom:1000.637304px;}
.y35{bottom:1013.237502px;}
.y34{bottom:1025.837700px;}
.y5f{bottom:1032.767700px;}
.h17{height:11.880000px;}
.h12{height:12.780000px;}
.h1d{height:14.396484px;}
.h13{height:14.670000px;}
.hf{height:24.660000px;}
.h19{height:26.790480px;}
.hc{height:29.163164px;}
.h23{height:29.516836px;}
.h11{height:30.247910px;}
.hb{height:31.311035px;}
.h7{height:32.130000px;}
.h14{height:33.244805px;}
.h16{height:33.478594px;}
.h26{height:33.486328px;}
.hd{height:33.852305px;}
.h15{height:35.644219px;}
.h27{height:35.691115px;}
.h1b{height:36.868535px;}
.h20{height:37.441406px;}
.h1a{height:38.521758px;}
.ha{height:39.604922px;}
.h25{height:39.961406px;}
.h1f{height:39.962006px;}
.h21{height:40.320806px;}
.h1e{height:40.321406px;}
.h24{height:40.510547px;}
.h22{height:41.391211px;}
.h18{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h9{height:50.027344px;}
.h10{height:50.760000px;}
.h2{height:55.080000px;}
.he{height:59.761230px;}
.h1c{height:62.278414px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:90.090000px;}
.w5{width:144.360000px;}
.w7{width:487.980000px;}
.w4{width:620.100000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x29{left:90.900000px;}
.x21{left:93.059775px;}
.x10{left:96.120000px;}
.x7{left:99.810266px;}
.x1{left:102.045000px;}
.x6{left:104.310000px;}
.x2{left:106.297500px;}
.x1e{left:107.550504px;}
.x28{left:112.409631px;}
.x2e{left:115.830000px;}
.x26{left:117.089901px;}
.x37{left:119.700681px;}
.x36{left:121.950056px;}
.x12{left:132.300000px;}
.x27{left:134.369793px;}
.x2d{left:136.350819px;}
.x2c{left:137.699838px;}
.x11{left:138.780000px;}
.x35{left:146.880000px;}
.x20{left:152.820000px;}
.x33{left:164.610000px;}
.x34{left:166.590000px;}
.x2f{left:169.830000px;}
.x30{left:181.080000px;}
.x9{left:183.240000px;}
.x23{left:200.340000px;}
.x4{left:203.484001px;}
.x31{left:221.220000px;}
.x24{left:234.720288px;}
.x2b{left:243.450000px;}
.xa{left:252.180000px;}
.x22{left:267.210108px;}
.xe{left:272.430000px;}
.xf{left:277.650000px;}
.x32{left:295.290000px;}
.xc{left:305.099865px;}
.x17{left:315.630000px;}
.x25{left:319.950279px;}
.xb{left:401.760000px;}
.x8{left:416.610000px;}
.x15{left:431.640000px;}
.x14{left:436.860234px;}
.x2a{left:442.260000px;}
.x3{left:454.959000px;}
.x1c{left:456.480000px;}
.x1a{left:458.010000px;}
.x1d{left:462.060287px;}
.x1b{left:463.590287px;}
.x1f{left:466.200139px;}
.x13{left:486.090000px;}
.x16{left:563.490000px;}
.x19{left:574.020000px;}
.xd{left:610.920000px;}
.x18{left:694.169811px;}
@media print{
.v8{vertical-align:-40.639467pt;}
.v7{vertical-align:-28.159467pt;}
.v3{vertical-align:-12.160000pt;}
.v5{vertical-align:-2.558400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.v4{vertical-align:2.560000pt;}
.v6{vertical-align:15.039467pt;}
.v2{vertical-align:25.599840pt;}
.ls11{letter-spacing:-6.364800pt;}
.ls9d{letter-spacing:-5.121088pt;}
.lsa2{letter-spacing:-4.480384pt;}
.ls12{letter-spacing:-3.846144pt;}
.lsa3{letter-spacing:-3.844224pt;}
.ls96{letter-spacing:-3.839680pt;}
.ls88{letter-spacing:-3.521600pt;}
.ls7{letter-spacing:-3.520000pt;}
.ls90{letter-spacing:-3.212608pt;}
.ls16{letter-spacing:-3.208064pt;}
.ls9a{letter-spacing:-3.203520pt;}
.ls99{letter-spacing:-3.198976pt;}
.ls8{letter-spacing:-3.196000pt;}
.ls13{letter-spacing:-3.121152pt;}
.ls47{letter-spacing:-2.947648pt;}
.ls22{letter-spacing:-2.931552pt;}
.ls94{letter-spacing:-2.889984pt;}
.ls81{letter-spacing:-2.885440pt;}
.ls85{letter-spacing:-2.880896pt;}
.ls87{letter-spacing:-2.749120pt;}
.ls26{letter-spacing:-2.624064pt;}
.ls28{letter-spacing:-2.619008pt;}
.ls24{letter-spacing:-2.605824pt;}
.ls8c{letter-spacing:-2.567360pt;}
.ls1d{letter-spacing:-2.562816pt;}
.ls9f{letter-spacing:-2.558272pt;}
.ls2c{letter-spacing:-2.295424pt;}
.ls2e{letter-spacing:-2.290368pt;}
.ls21{letter-spacing:-2.280096pt;}
.ls8f{letter-spacing:-2.249280pt;}
.ls61{letter-spacing:-2.246400pt;}
.ls84{letter-spacing:-2.244736pt;}
.ls5f{letter-spacing:-2.241600pt;}
.ls8e{letter-spacing:-2.240192pt;}
.lsf{letter-spacing:-2.239200pt;}
.ls3b{letter-spacing:-2.238656pt;}
.ls92{letter-spacing:-2.235648pt;}
.ls44{letter-spacing:-2.234400pt;}
.ls34{letter-spacing:-2.113408pt;}
.ls35{letter-spacing:-2.098240pt;}
.ls2d{letter-spacing:-1.971840pt;}
.ls9{letter-spacing:-1.966784pt;}
.ls3a{letter-spacing:-1.961728pt;}
.lsa0{letter-spacing:-1.931200pt;}
.ls82{letter-spacing:-1.926656pt;}
.ls89{letter-spacing:-1.922112pt;}
.ls1b{letter-spacing:-1.917568pt;}
.ls8b{letter-spacing:-1.913024pt;}
.ls8d{letter-spacing:-1.908480pt;}
.ls36{letter-spacing:-1.739264pt;}
.ls38{letter-spacing:-1.643200pt;}
.lsa{letter-spacing:-1.638144pt;}
.ls27{letter-spacing:-1.633088pt;}
.ls23{letter-spacing:-1.628640pt;}
.ls7a{letter-spacing:-1.612416pt;}
.ls9e{letter-spacing:-1.608576pt;}
.ls1c{letter-spacing:-1.604032pt;}
.ls7f{letter-spacing:-1.599488pt;}
.lsa1{letter-spacing:-1.594944pt;}
.ls9b{letter-spacing:-1.590400pt;}
.ls63{letter-spacing:-1.537024pt;}
.ls3e{letter-spacing:-1.481408pt;}
.ls3f{letter-spacing:-1.471296pt;}
.ls62{letter-spacing:-1.466240pt;}
.ls5e{letter-spacing:-1.456128pt;}
.ls40{letter-spacing:-1.451072pt;}
.ls5d{letter-spacing:-1.425792pt;}
.ls32{letter-spacing:-1.314560pt;}
.ls5{letter-spacing:-1.309504pt;}
.ls48{letter-spacing:-1.294176pt;}
.ls72{letter-spacing:-1.292544pt;}
.lsa4{letter-spacing:-1.290496pt;}
.ls7b{letter-spacing:-1.286400pt;}
.ls1a{letter-spacing:-1.285952pt;}
.ls17{letter-spacing:-1.281408pt;}
.ls95{letter-spacing:-1.272320pt;}
.ls8a{letter-spacing:-1.267776pt;}
.ls20{letter-spacing:-0.991648pt;}
.ls45{letter-spacing:-0.990976pt;}
.lsc{letter-spacing:-0.985920pt;}
.ls2f{letter-spacing:-0.980864pt;}
.ls59{letter-spacing:-0.972672pt;}
.ls55{letter-spacing:-0.969600pt;}
.ls91{letter-spacing:-0.967872pt;}
.ls41{letter-spacing:-0.966112pt;}
.ls57{letter-spacing:-0.964800pt;}
.ls1e{letter-spacing:-0.963328pt;}
.ls86{letter-spacing:-0.958784pt;}
.ls14{letter-spacing:-0.956000pt;}
.ls83{letter-spacing:-0.954240pt;}
.ls98{letter-spacing:-0.949696pt;}
.ls5b{letter-spacing:-0.894912pt;}
.ls5a{letter-spacing:-0.859520pt;}
.ls31{letter-spacing:-0.662336pt;}
.lsb{letter-spacing:-0.657280pt;}
.ls56{letter-spacing:-0.656064pt;}
.ls64{letter-spacing:-0.652224pt;}
.ls43{letter-spacing:-0.646912pt;}
.ls80{letter-spacing:-0.645248pt;}
.ls37{letter-spacing:-0.642112pt;}
.ls10{letter-spacing:-0.639392pt;}
.ls18{letter-spacing:-0.636160pt;}
.ls19{letter-spacing:-0.631616pt;}
.ls33{letter-spacing:-0.348864pt;}
.ls77{letter-spacing:-0.338752pt;}
.ls4{letter-spacing:-0.333696pt;}
.ls25{letter-spacing:-0.328640pt;}
.ls42{letter-spacing:-0.327712pt;}
.lse{letter-spacing:-0.325728pt;}
.ls74{letter-spacing:-0.314592pt;}
.ls53{letter-spacing:-0.303360pt;}
.ls7d{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:-0.083200pt;}
.ls39{letter-spacing:-0.081984pt;}
.ls54{letter-spacing:-0.065728pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls3d{letter-spacing:-0.057600pt;}
.ls7e{letter-spacing:-0.044800pt;}
.ls46{letter-spacing:-0.038400pt;}
.ls7c{letter-spacing:-0.025600pt;}
.ls29{letter-spacing:-0.010112pt;}
.ls2b{letter-spacing:-0.005856pt;}
.ls6{letter-spacing:-0.005056pt;}
.ls3c{letter-spacing:-0.004256pt;}
.lsd{letter-spacing:-0.003744pt;}
.ls0{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.004256pt;}
.ls70{letter-spacing:0.006400pt;}
.ls5c{letter-spacing:0.008512pt;}
.ls71{letter-spacing:0.326400pt;}
.ls6f{letter-spacing:0.942400pt;}
.ls75{letter-spacing:0.943776pt;}
.ls52{letter-spacing:0.944000pt;}
.ls51{letter-spacing:0.945600pt;}
.ls49{letter-spacing:0.976000pt;}
.ls68{letter-spacing:1.262400pt;}
.ls67{letter-spacing:1.264000pt;}
.ls66{letter-spacing:1.265600pt;}
.ls6c{letter-spacing:1.287904pt;}
.ls79{letter-spacing:1.289280pt;}
.ls6b{letter-spacing:1.293248pt;}
.ls58{letter-spacing:1.592832pt;}
.ls6a{letter-spacing:1.608544pt;}
.ls78{letter-spacing:1.609152pt;}
.ls6d{letter-spacing:1.919232pt;}
.ls69{letter-spacing:2.212992pt;}
.ls76{letter-spacing:2.885760pt;}
.ls73{letter-spacing:4.161600pt;}
.ls97{letter-spacing:4.484928pt;}
.ls50{letter-spacing:4.494400pt;}
.ls4b{letter-spacing:4.496000pt;}
.ls4e{letter-spacing:4.497600pt;}
.ls1f{letter-spacing:5.443712pt;}
.ls4f{letter-spacing:5.457600pt;}
.ls4d{letter-spacing:5.774400pt;}
.ls15{letter-spacing:8.443904pt;}
.ls93{letter-spacing:8.965312pt;}
.ls4a{letter-spacing:8.976000pt;}
.ls4c{letter-spacing:9.280000pt;}
.ls9c{letter-spacing:9.283392pt;}
.ls6e{letter-spacing:11.209216pt;}
.ls65{letter-spacing:16.007104pt;}
.ls2{letter-spacing:18.240768pt;}
.ls30{letter-spacing:441.479808pt;}
.ls1{letter-spacing:612.799200pt;}
.ws17{word-spacing:-12.736064pt;}
.ws21{word-spacing:-12.731008pt;}
.ws47{word-spacing:-11.496320pt;}
.ws46{word-spacing:-10.864704pt;}
.ws1b{word-spacing:-10.550624pt;}
.ws44{word-spacing:-10.532992pt;}
.ws4{word-spacing:-10.214912pt;}
.ws45{word-spacing:-10.210368pt;}
.ws43{word-spacing:-9.583296pt;}
.ws5{word-spacing:-9.578752pt;}
.ws6{word-spacing:-9.472320pt;}
.ws2{word-spacing:-9.281376pt;}
.ws1{word-spacing:-8.959392pt;}
.ws3{word-spacing:-8.288256pt;}
.ws7{word-spacing:-7.843680pt;}
.ws4f{word-spacing:-7.683904pt;}
.ws37{word-spacing:-4.209600pt;}
.ws41{word-spacing:-1.625472pt;}
.ws3b{word-spacing:-1.341344pt;}
.ws48{word-spacing:-0.649792pt;}
.wsd{word-spacing:-0.645248pt;}
.ws50{word-spacing:-0.640704pt;}
.ws34{word-spacing:-0.374400pt;}
.ws1f{word-spacing:-0.338752pt;}
.ws8{word-spacing:-0.333696pt;}
.ws18{word-spacing:-0.328640pt;}
.wsc{word-spacing:-0.327168pt;}
.ws4e{word-spacing:-0.322624pt;}
.wsf{word-spacing:-0.318080pt;}
.ws4a{word-spacing:-0.313536pt;}
.ws29{word-spacing:-0.096064pt;}
.ws16{word-spacing:-0.050560pt;}
.ws24{word-spacing:-0.048000pt;}
.wsa{word-spacing:-0.036000pt;}
.ws33{word-spacing:-0.032640pt;}
.ws28{word-spacing:-0.011712pt;}
.ws13{word-spacing:-0.010112pt;}
.ws11{word-spacing:-0.005056pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.004544pt;}
.ws9{word-spacing:0.007488pt;}
.ws10{word-spacing:0.011232pt;}
.ws1c{word-spacing:0.012768pt;}
.ws20{word-spacing:0.017024pt;}
.ws19{word-spacing:0.070272pt;}
.ws14{word-spacing:0.298304pt;}
.ws51{word-spacing:0.318080pt;}
.ws32{word-spacing:0.318528pt;}
.ws49{word-spacing:0.322624pt;}
.ws12{word-spacing:0.323584pt;}
.wse{word-spacing:0.327168pt;}
.ws52{word-spacing:0.331712pt;}
.ws42{word-spacing:0.352000pt;}
.ws4c{word-spacing:0.631616pt;}
.ws27{word-spacing:0.940032pt;}
.ws4b{word-spacing:0.972416pt;}
.ws38{word-spacing:1.259904pt;}
.ws3f{word-spacing:1.579776pt;}
.ws4d{word-spacing:1.599488pt;}
.ws15{word-spacing:1.688704pt;}
.ws35{word-spacing:4.107904pt;}
.ws3a{word-spacing:4.179008pt;}
.ws25{word-spacing:4.427904pt;}
.ws39{word-spacing:5.044320pt;}
.ws23{word-spacing:7.358400pt;}
.ws3d{word-spacing:7.364928pt;}
.ws40{word-spacing:8.323200pt;}
.ws26{word-spacing:9.937536pt;}
.ws3e{word-spacing:10.536768pt;}
.ws36{word-spacing:10.577152pt;}
.ws3c{word-spacing:15.032640pt;}
.ws22{word-spacing:15.980992pt;}
.ws1e{word-spacing:88.320512pt;}
.ws1d{word-spacing:134.727936pt;}
.ws2f{word-spacing:255.679200pt;}
.ws2a{word-spacing:281.917440pt;}
.ws2c{word-spacing:288.871744pt;}
.ws2d{word-spacing:293.127744pt;}
.ws31{word-spacing:298.528608pt;}
.ws2e{word-spacing:301.056672pt;}
.ws30{word-spacing:306.810784pt;}
.ws2b{word-spacing:340.748128pt;}
.ws1a{word-spacing:913.286528pt;}
._c{margin-left:-649.836192pt;}
._25{margin-left:-15.269120pt;}
._13{margin-left:-11.355008pt;}
._49{margin-left:-9.910464pt;}
._48{margin-left:-8.820352pt;}
._18{margin-left:-7.365824pt;}
._16{margin-left:-6.407040pt;}
._17{margin-left:-5.420992pt;}
._45{margin-left:-4.303072pt;}
._12{margin-left:-2.967552pt;}
._5{margin-left:-1.946304pt;}
._7{margin-left:-0.978240pt;}
._2{width:0.965696pt;}
._4{width:1.878304pt;}
._e{width:2.894912pt;}
._46{width:3.978944pt;}
._47{width:5.915360pt;}
._14{width:6.810336pt;}
._0{width:7.862080pt;}
._1{width:8.837888pt;}
._3{width:10.476032pt;}
._15{width:12.187008pt;}
._9{width:13.767488pt;}
._11{width:15.113024pt;}
._10{width:16.100384pt;}
._f{width:17.155808pt;}
._21{width:18.317888pt;}
._1c{width:19.298752pt;}
._6{width:20.524000pt;}
._d{width:21.654560pt;}
._1a{width:22.575040pt;}
._1b{width:23.550848pt;}
._24{width:24.526656pt;}
._22{width:25.497408pt;}
._1d{width:26.493440pt;}
._1f{width:27.802944pt;}
._1e{width:28.778752pt;}
._19{width:29.764672pt;}
._26{width:30.755648pt;}
._40{width:31.711232pt;}
._27{width:32.707264pt;}
._a{width:35.973440pt;}
._b{width:36.954304pt;}
._8{width:40.230592pt;}
._20{width:41.858624pt;}
._23{width:42.819264pt;}
._34{width:44.173024pt;}
._39{width:60.805472pt;}
._3e{width:94.087808pt;}
._37{width:109.098304pt;}
._35{width:112.294560pt;}
._31{width:119.976640pt;}
._2e{width:121.589664pt;}
._2f{width:122.845184pt;}
._36{width:128.624832pt;}
._3a{width:131.829600pt;}
._3c{width:139.503168pt;}
._30{width:150.062304pt;}
._3d{width:157.748000pt;}
._29{width:159.332288pt;}
._3f{width:161.306016pt;}
._32{width:167.975808pt;}
._2d{width:169.601600pt;}
._3b{width:183.356992pt;}
._33{width:194.860960pt;}
._38{width:205.424352pt;}
._2c{width:213.429888pt;}
._2b{width:220.490592pt;}
._28{width:285.781888pt;}
._41{width:293.438432pt;}
._44{width:303.014432pt;}
._43{width:307.823712pt;}
._42{width:313.914048pt;}
._2a{width:373.724032pt;}
.fs9{font-size:4.160000pt;}
.fs10{font-size:32.640000pt;}
.fs12{font-size:36.160000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:37.440000pt;}
.fsb{font-size:39.360000pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsf{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs11{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.560000pt;}
.fsa{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.239867pt;}
.y40{bottom:2.399867pt;}
.y43{bottom:2.879867pt;}
.y3c{bottom:4.799867pt;}
.y5e{bottom:58.815867pt;}
.y6{bottom:59.133337pt;}
.y60{bottom:65.615509pt;}
.y5b{bottom:65.936000pt;}
.y5d{bottom:68.175867pt;}
.y5a{bottom:77.455867pt;}
.y5{bottom:86.333337pt;}
.y2a{bottom:103.455867pt;}
.y10f{bottom:104.655867pt;}
.y28c{bottom:106.010971pt;}
.y148{bottom:107.374635pt;}
.y1f5{bottom:107.374707pt;}
.y191{bottom:107.374723pt;}
.y2c4{bottom:109.295867pt;}
.y8c{bottom:110.251739pt;}
.y155{bottom:110.255003pt;}
.y25e{bottom:110.975195pt;}
.y1d8{bottom:112.013083pt;}
.y17c{bottom:112.173563pt;}
.yb4{bottom:113.855771pt;}
.y21b{bottom:114.892987pt;}
.y208{bottom:114.894331pt;}
.y241{bottom:116.653659pt;}
.y29{bottom:116.975867pt;}
.y33{bottom:117.135099pt;}
.y28b{bottom:119.051115pt;}
.y2c3{bottom:122.325067pt;}
.y23{bottom:123.790666pt;}
.y147{bottom:125.614787pt;}
.y1f4{bottom:125.614859pt;}
.y190{bottom:125.614875pt;}
.y8b{bottom:128.091835pt;}
.y154{bottom:128.095099pt;}
.y25d{bottom:128.815291pt;}
.y1d7{bottom:129.853179pt;}
.y17b{bottom:130.013659pt;}
.yb3{bottom:131.695867pt;}
.y28a{bottom:132.091259pt;}
.y21a{bottom:132.733083pt;}
.y207{bottom:132.734427pt;}
.y28{bottom:133.055867pt;}
.y240{bottom:134.493755pt;}
.y32{bottom:134.975195pt;}
.y2c2{bottom:135.365211pt;}
.y146{bottom:143.775139pt;}
.y1f3{bottom:143.775211pt;}
.y18f{bottom:143.775227pt;}
.y8a{bottom:145.931931pt;}
.y153{bottom:145.935195pt;}
.y25c{bottom:146.655387pt;}
.y1d6{bottom:147.693275pt;}
.y17a{bottom:147.853755pt;}
.y289{bottom:149.131259pt;}
.yb1{bottom:149.533947pt;}
.yb2{bottom:149.535867pt;}
.y145{bottom:150.175099pt;}
.y219{bottom:150.573179pt;}
.y206{bottom:150.574523pt;}
.y23f{bottom:152.333851pt;}
.y2c1{bottom:152.405211pt;}
.y31{bottom:152.815291pt;}
.y1f2{bottom:162.015363pt;}
.y18e{bottom:162.015379pt;}
.y288{bottom:162.171403pt;}
.y89{bottom:163.772027pt;}
.y152{bottom:163.775291pt;}
.y25b{bottom:164.495483pt;}
.y2c0{bottom:165.445355pt;}
.y1d5{bottom:165.533371pt;}
.y179{bottom:165.693851pt;}
.yd4{bottom:167.135387pt;}
.yb0{bottom:167.374043pt;}
.y218{bottom:168.413275pt;}
.y205{bottom:168.414619pt;}
.y23e{bottom:170.173947pt;}
.y30{bottom:170.655387pt;}
.y27{bottom:170.895675pt;}
.y144{bottom:174.815211pt;}
.y1a{bottom:175.052000pt;}
.y287{bottom:175.211547pt;}
.y2bf{bottom:178.485499pt;}
.y1f1{bottom:180.255515pt;}
.y18d{bottom:180.255531pt;}
.y88{bottom:181.612123pt;}
.y151{bottom:181.615387pt;}
.y25a{bottom:182.335579pt;}
.y1d4{bottom:183.373467pt;}
.y178{bottom:183.533947pt;}
.yd3{bottom:184.975483pt;}
.yaf{bottom:185.214139pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y217{bottom:186.253371pt;}
.y204{bottom:186.254715pt;}
.y286{bottom:188.251691pt;}
.y2f{bottom:188.495483pt;}
.y26{bottom:188.735771pt;}
.y143{bottom:193.055363pt;}
.y2be{bottom:195.525499pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y1f0{bottom:198.415867pt;}
.y18c{bottom:198.415883pt;}
.y87{bottom:199.452219pt;}
.y150{bottom:199.455483pt;}
.y259{bottom:200.175675pt;}
.y1d3{bottom:201.213563pt;}
.y285{bottom:201.291835pt;}
.y177{bottom:201.374043pt;}
.yd2{bottom:202.815579pt;}
.yae{bottom:203.054235pt;}
.y216{bottom:204.093467pt;}
.y203{bottom:204.094811pt;}
.y23d{bottom:205.854139pt;}
.y2e{bottom:206.335579pt;}
.y25{bottom:206.575867pt;}
.y2bd{bottom:208.565643pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y142{bottom:211.215715pt;}
.y2f5{bottom:212.570261pt;}
.y18b{bottom:216.656035pt;}
.y86{bottom:217.292315pt;}
.y14f{bottom:217.295579pt;}
.y258{bottom:218.015771pt;}
.y284{bottom:218.331835pt;}
.y1d2{bottom:219.053659pt;}
.y176{bottom:219.214139pt;}
.yd1{bottom:220.655675pt;}
.yad{bottom:220.894331pt;}
.y1f6{bottom:221.455867pt;}
.y2bc{bottom:221.605787pt;}
.y325{bottom:221.615291pt;}
.y215{bottom:221.933563pt;}
.y202{bottom:221.934907pt;}
.y23c{bottom:223.694235pt;}
.y2d{bottom:224.175675pt;}
.y2f4{bottom:225.610405pt;}
.y141{bottom:229.455867pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y283{bottom:231.371979pt;}
.y324{bottom:234.655435pt;}
.y85{bottom:235.132411pt;}
.y14e{bottom:235.135675pt;}
.y257{bottom:235.855867pt;}
.y1d1{bottom:236.893755pt;}
.y175{bottom:237.054235pt;}
.yd0{bottom:238.495771pt;}
.y2bb{bottom:238.645787pt;}
.y2f3{bottom:238.650549pt;}
.yac{bottom:238.734427pt;}
.y192{bottom:239.695867pt;}
.y214{bottom:239.773659pt;}
.y201{bottom:239.775003pt;}
.y23b{bottom:241.534331pt;}
.y2c{bottom:242.015771pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y282{bottom:244.412123pt;}
.y323{bottom:247.695579pt;}
.y2ba{bottom:251.685931pt;}
.y2f2{bottom:251.690693pt;}
.y149{bottom:252.495867pt;}
.y84{bottom:252.972507pt;}
.y14d{bottom:252.975771pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1d0{bottom:254.733851pt;}
.y174{bottom:254.894331pt;}
.ycf{bottom:256.335867pt;}
.yab{bottom:256.574523pt;}
.y24{bottom:256.975867pt;}
.y281{bottom:257.452267pt;}
.y213{bottom:257.613755pt;}
.y200{bottom:257.615099pt;}
.y23a{bottom:259.374427pt;}
.y2b{bottom:259.855867pt;}
.y322{bottom:260.735723pt;}
.y2b9{bottom:264.726075pt;}
.y2f1{bottom:268.730693pt;}
.y83{bottom:270.812603pt;}
.y14c{bottom:270.815867pt;}
.y1cf{bottom:272.573947pt;}
.y173{bottom:272.734427pt;}
.yce{bottom:274.175195pt;}
.yaa{bottom:274.414619pt;}
.y280{bottom:274.492267pt;}
.y1ef{bottom:275.453851pt;}
.y1ff{bottom:275.455195pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y239{bottom:277.214523pt;}
.y2b8{bottom:277.766219pt;}
.y321{bottom:277.775723pt;}
.y2f0{bottom:281.770837pt;}
.y18a{bottom:286.095867pt;}
.y256{bottom:286.335867pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y27f{bottom:287.532411pt;}
.y82{bottom:288.652699pt;}
.y14b{bottom:288.655867pt;}
.y1ce{bottom:290.414043pt;}
.y172{bottom:290.574523pt;}
.y320{bottom:290.805445pt;}
.y2b7{bottom:290.806363pt;}
.ycd{bottom:292.015291pt;}
.ya9{bottom:292.254715pt;}
.y1ee{bottom:293.293947pt;}
.y1fe{bottom:293.295291pt;}
.y2ef{bottom:294.810981pt;}
.y238{bottom:295.054619pt;}
.y11f{bottom:296.014907pt;}
.y27e{bottom:300.572555pt;}
.y31f{bottom:303.845589pt;}
.y140{bottom:306.492203pt;}
.y81{bottom:306.492795pt;}
.y2b6{bottom:307.846363pt;}
.y2ee{bottom:307.851125pt;}
.y1cd{bottom:308.254139pt;}
.y171{bottom:308.414619pt;}
.y11{bottom:309.452000pt;}
.ycc{bottom:309.855387pt;}
.ya8{bottom:310.094811pt;}
.y1ed{bottom:311.134043pt;}
.y1fd{bottom:311.135387pt;}
.y237{bottom:312.894715pt;}
.y11e{bottom:313.855003pt;}
.y31e{bottom:316.885733pt;}
.y27d{bottom:317.612555pt;}
.y2b5{bottom:320.886507pt;}
.y13f{bottom:324.332299pt;}
.y80{bottom:324.332891pt;}
.y2ed{bottom:324.891125pt;}
.y1cc{bottom:326.094235pt;}
.y170{bottom:326.254715pt;}
.ycb{bottom:327.695483pt;}
.ya7{bottom:327.934907pt;}
.y1ec{bottom:328.974139pt;}
.y1fc{bottom:328.975483pt;}
.y27c{bottom:330.652699pt;}
.y236{bottom:330.734811pt;}
.y11d{bottom:331.695099pt;}
.y31d{bottom:333.925733pt;}
.y2b4{bottom:333.926651pt;}
.y59{bottom:336.415867pt;}
.y2ec{bottom:337.931269pt;}
.y13e{bottom:342.172395pt;}
.y7f{bottom:342.172987pt;}
.y27b{bottom:343.692843pt;}
.y10{bottom:343.809333pt;}
.y1cb{bottom:343.934331pt;}
.y16f{bottom:344.094811pt;}
.yca{bottom:345.535579pt;}
.ya6{bottom:345.775003pt;}
.y1eb{bottom:346.814235pt;}
.y1fb{bottom:346.815579pt;}
.y31c{bottom:346.965877pt;}
.y235{bottom:348.574907pt;}
.y11c{bottom:349.535195pt;}
.y2b3{bottom:350.966651pt;}
.y2eb{bottom:350.971413pt;}
.y27a{bottom:356.732987pt;}
.y31b{bottom:360.006021pt;}
.y13d{bottom:360.012491pt;}
.y7e{bottom:360.013083pt;}
.y10e{bottom:360.015387pt;}
.y255{bottom:360.495387pt;}
.y1ca{bottom:361.774427pt;}
.y16e{bottom:361.934907pt;}
.yf{bottom:362.706666pt;}
.yf1{bottom:363.373371pt;}
.yc9{bottom:363.375675pt;}
.ya5{bottom:363.615099pt;}
.y2b2{bottom:364.006795pt;}
.y1ea{bottom:364.654331pt;}
.y1fa{bottom:364.655675pt;}
.y234{bottom:366.415003pt;}
.y11b{bottom:367.375291pt;}
.y2ea{bottom:368.011413pt;}
.y279{bottom:369.773131pt;}
.y31a{bottom:373.046165pt;}
.y2b1{bottom:377.046939pt;}
.y58{bottom:377.456811pt;}
.y13c{bottom:377.852587pt;}
.y7d{bottom:377.853179pt;}
.y10d{bottom:377.855483pt;}
.y254{bottom:378.335483pt;}
.y1c9{bottom:379.614523pt;}
.y16d{bottom:379.775003pt;}
.y2e9{bottom:381.051557pt;}
.yf0{bottom:381.213467pt;}
.yc8{bottom:381.215771pt;}
.ya4{bottom:381.455195pt;}
.y1e9{bottom:382.494427pt;}
.y1f9{bottom:382.495771pt;}
.y233{bottom:384.255099pt;}
.y11a{bottom:385.215387pt;}
.y319{bottom:386.086309pt;}
.y278{bottom:386.813131pt;}
.y2b0{bottom:390.087083pt;}
.y57{bottom:390.976347pt;}
.y2e8{bottom:394.091701pt;}
.y13b{bottom:395.692683pt;}
.y7c{bottom:395.693275pt;}
.y10c{bottom:395.695579pt;}
.y253{bottom:396.175579pt;}
.y198{bottom:397.375483pt;}
.y1b1{bottom:397.375579pt;}
.y1c8{bottom:397.454619pt;}
.y16c{bottom:397.615099pt;}
.yef{bottom:399.053563pt;}
.yc7{bottom:399.055867pt;}
.y318{bottom:399.126453pt;}
.ya3{bottom:399.295291pt;}
.y277{bottom:399.853275pt;}
.y1e8{bottom:400.334523pt;}
.y1f8{bottom:400.335867pt;}
.y232{bottom:402.095195pt;}
.y119{bottom:403.055483pt;}
.y2af{bottom:403.127227pt;}
.y56{bottom:404.576539pt;}
.y2e7{bottom:407.131845pt;}
.y317{bottom:412.166597pt;}
.y276{bottom:412.893419pt;}
.y13a{bottom:413.532779pt;}
.y7b{bottom:413.533371pt;}
.y10b{bottom:413.535675pt;}
.y252{bottom:414.015675pt;}
.y197{bottom:415.215579pt;}
.y1b0{bottom:415.215675pt;}
.y1c7{bottom:415.294715pt;}
.y16b{bottom:415.455195pt;}
.y2ae{bottom:416.167371pt;}
.yee{bottom:416.893659pt;}
.yc6{bottom:416.895387pt;}
.ya2{bottom:417.135387pt;}
.y1e7{bottom:418.174619pt;}
.y55{bottom:418.176731pt;}
.y231{bottom:419.935291pt;}
.y2e6{bottom:420.171989pt;}
.y118{bottom:420.895579pt;}
.y275{bottom:425.933563pt;}
.y316{bottom:429.206597pt;}
.ye{bottom:430.990669pt;}
.y139{bottom:431.372875pt;}
.y7a{bottom:431.373467pt;}
.y10a{bottom:431.375771pt;}
.y54{bottom:431.696267pt;}
.y251{bottom:431.855771pt;}
.y1f7{bottom:431.935867pt;}
.y196{bottom:433.055675pt;}
.y1af{bottom:433.055771pt;}
.y1c6{bottom:433.134811pt;}
.y2ad{bottom:433.207371pt;}
.y16a{bottom:433.295291pt;}
.yed{bottom:434.733755pt;}
.yc5{bottom:434.735483pt;}
.ya1{bottom:434.975483pt;}
.y1e6{bottom:436.014715pt;}
.y2e5{bottom:437.211989pt;}
.y230{bottom:437.775387pt;}
.y117{bottom:438.735675pt;}
.y274{bottom:438.973707pt;}
.y315{bottom:442.246741pt;}
.y53{bottom:445.296459pt;}
.y2ac{bottom:446.247515pt;}
.yd{bottom:446.990669pt;}
.y138{bottom:449.212971pt;}
.y79{bottom:449.213563pt;}
.y109{bottom:449.215867pt;}
.y250{bottom:449.695867pt;}
.y2e4{bottom:450.252133pt;}
.y195{bottom:450.895771pt;}
.y1ae{bottom:450.895867pt;}
.y1c5{bottom:450.974907pt;}
.y169{bottom:451.135387pt;}
.yec{bottom:452.573851pt;}
.yc4{bottom:452.575579pt;}
.ya0{bottom:452.815579pt;}
.y1e5{bottom:453.854811pt;}
.y314{bottom:455.286885pt;}
.y22f{bottom:455.615483pt;}
.y273{bottom:456.013707pt;}
.y116{bottom:456.575771pt;}
.y52{bottom:458.896651pt;}
.y2ab{bottom:459.287659pt;}
.yc{bottom:462.990669pt;}
.y2e3{bottom:463.292277pt;}
.y137{bottom:467.053067pt;}
.y78{bottom:467.053659pt;}
.y194{bottom:468.735867pt;}
.y1c4{bottom:468.815003pt;}
.y168{bottom:468.975483pt;}
.y272{bottom:469.053851pt;}
.yeb{bottom:470.413947pt;}
.yc3{bottom:470.415675pt;}
.y9f{bottom:470.655675pt;}
.y1e4{bottom:471.694907pt;}
.y313{bottom:472.326885pt;}
.y2aa{bottom:472.327803pt;}
.y51{bottom:472.416187pt;}
.y22e{bottom:473.455579pt;}
.y115{bottom:474.415867pt;}
.y2e2{bottom:476.332421pt;}
.yb{bottom:478.990666pt;}
.y271{bottom:482.093995pt;}
.y1ad{bottom:483.215867pt;}
.y108{bottom:484.891803pt;}
.y136{bottom:484.893163pt;}
.y77{bottom:484.893755pt;}
.y312{bottom:485.367029pt;}
.y50{bottom:486.016379pt;}
.y1c3{bottom:486.655099pt;}
.y167{bottom:486.815579pt;}
.yea{bottom:488.254043pt;}
.yc2{bottom:488.255771pt;}
.y9e{bottom:488.495771pt;}
.y2a9{bottom:489.367803pt;}
.y2e1{bottom:489.372565pt;}
.y1e3{bottom:489.535003pt;}
.y22d{bottom:491.295675pt;}
.ya{bottom:494.990666pt;}
.y270{bottom:495.134139pt;}
.y311{bottom:498.407173pt;}
.y4f{bottom:499.616571pt;}
.y24f{bottom:500.175867pt;}
.y193{bottom:501.055867pt;}
.y2a8{bottom:502.407947pt;}
.y107{bottom:502.731899pt;}
.y135{bottom:502.733259pt;}
.y76{bottom:502.733851pt;}
.y1c2{bottom:504.495195pt;}
.y166{bottom:504.655675pt;}
.ye9{bottom:506.094139pt;}
.yc1{bottom:506.095867pt;}
.y9d{bottom:506.335867pt;}
.y2e0{bottom:506.412565pt;}
.y1e2{bottom:507.375099pt;}
.y22c{bottom:509.135771pt;}
.y26f{bottom:512.174139pt;}
.y4e{bottom:513.136107pt;}
.y310{bottom:515.447173pt;}
.y2a7{bottom:515.448091pt;}
.y2df{bottom:519.452709pt;}
.y106{bottom:520.571995pt;}
.y134{bottom:520.573355pt;}
.y75{bottom:520.573947pt;}
.y1c1{bottom:522.335291pt;}
.y165{bottom:522.495771pt;}
.ye8{bottom:523.934235pt;}
.y114{bottom:524.815867pt;}
.y26e{bottom:525.214283pt;}
.y1e1{bottom:525.215195pt;}
.y4d{bottom:526.736299pt;}
.y22b{bottom:526.975867pt;}
.y30f{bottom:528.487317pt;}
.y2a6{bottom:528.488235pt;}
.y2de{bottom:532.492853pt;}
.y26d{bottom:538.254427pt;}
.y105{bottom:538.412091pt;}
.y133{bottom:538.413451pt;}
.y1ac{bottom:538.413867pt;}
.y74{bottom:538.414043pt;}
.y9c{bottom:538.656235pt;}
.y1c0{bottom:540.175387pt;}
.y164{bottom:540.335867pt;}
.y4c{bottom:540.336491pt;}
.y30e{bottom:541.527461pt;}
.ye7{bottom:541.774331pt;}
.yc0{bottom:541.775195pt;}
.y1e0{bottom:543.055291pt;}
.y2a5{bottom:545.528235pt;}
.y2dd{bottom:545.532997pt;}
.y4b{bottom:553.856027pt;}
.y9b{bottom:554.815867pt;}
.y26c{bottom:555.294427pt;}
.y104{bottom:556.252187pt;}
.y132{bottom:556.253547pt;}
.y1ab{bottom:556.253963pt;}
.y73{bottom:556.254139pt;}
.y1bf{bottom:558.015483pt;}
.y30d{bottom:558.567461pt;}
.y2a4{bottom:558.568379pt;}
.ye6{bottom:559.614427pt;}
.ybf{bottom:559.615291pt;}
.y1df{bottom:560.895387pt;}
.y2dc{bottom:562.572997pt;}
.y4a{bottom:567.456219pt;}
.y26b{bottom:568.334571pt;}
.y30c{bottom:571.607605pt;}
.y2a3{bottom:571.608523pt;}
.y163{bottom:572.655867pt;}
.y9{bottom:573.786667pt;}
.y103{bottom:574.092283pt;}
.y131{bottom:574.093643pt;}
.y1aa{bottom:574.094059pt;}
.y72{bottom:574.094235pt;}
.y24e{bottom:574.335675pt;}
.y2db{bottom:575.613141pt;}
.y1be{bottom:575.855579pt;}
.ye5{bottom:577.454523pt;}
.ybe{bottom:577.455387pt;}
.y22a{bottom:577.455867pt;}
.y1de{bottom:578.735483pt;}
.y49{bottom:581.056411pt;}
.y26a{bottom:581.374715pt;}
.y2a2{bottom:584.648667pt;}
.y30b{bottom:588.647605pt;}
.y2da{bottom:588.653285pt;}
.y9a{bottom:589.135867pt;}
.y102{bottom:591.932379pt;}
.y130{bottom:591.933739pt;}
.y1a9{bottom:591.934155pt;}
.y71{bottom:591.934331pt;}
.y24d{bottom:592.175771pt;}
.y8{bottom:592.685334pt;}
.y1bd{bottom:593.695675pt;}
.y269{bottom:594.414859pt;}
.y48{bottom:594.575947pt;}
.ye4{bottom:595.294619pt;}
.ybd{bottom:595.295483pt;}
.y1dd{bottom:596.575579pt;}
.y2a1{bottom:597.688811pt;}
.y113{bottom:599.055579pt;}
.y30a{bottom:601.687749pt;}
.y2d9{bottom:601.693429pt;}
.y162{bottom:606.975867pt;}
.y47{bottom:608.176139pt;}
.y101{bottom:609.772475pt;}
.y12f{bottom:609.773835pt;}
.y1a8{bottom:609.774251pt;}
.y70{bottom:609.774427pt;}
.y24c{bottom:610.015867pt;}
.y268{bottom:611.454859pt;}
.y1bc{bottom:611.535771pt;}
.ye3{bottom:613.134715pt;}
.ybc{bottom:613.135579pt;}
.y1dc{bottom:614.415675pt;}
.y309{bottom:614.727893pt;}
.y2a0{bottom:614.728811pt;}
.y2d8{bottom:614.733573pt;}
.y112{bottom:616.895675pt;}
.y46{bottom:621.776331pt;}
.y267{bottom:624.495003pt;}
.y100{bottom:627.612571pt;}
.y12e{bottom:627.613931pt;}
.y1a7{bottom:627.614347pt;}
.y6f{bottom:627.614523pt;}
.y308{bottom:627.768037pt;}
.y29f{bottom:627.768955pt;}
.y1bb{bottom:629.375867pt;}
.ye2{bottom:630.974811pt;}
.ybb{bottom:630.975675pt;}
.y2d7{bottom:631.773573pt;}
.y1db{bottom:632.255771pt;}
.y111{bottom:634.735771pt;}
.y45{bottom:635.295867pt;}
.y266{bottom:637.535147pt;}
.y307{bottom:640.808181pt;}
.y29e{bottom:640.809099pt;}
.y2d6{bottom:644.813717pt;}
.yff{bottom:645.452667pt;}
.y12d{bottom:645.454027pt;}
.y1a6{bottom:645.454443pt;}
.y6e{bottom:645.454619pt;}
.y7{bottom:645.598667pt;}
.ye1{bottom:648.814907pt;}
.yba{bottom:648.815771pt;}
.y1da{bottom:650.095867pt;}
.y265{bottom:650.575291pt;}
.y110{bottom:652.575867pt;}
.y229{bottom:654.495867pt;}
.y42{bottom:656.896000pt;}
.y306{bottom:657.848181pt;}
.y29d{bottom:657.849099pt;}
.y2d5{bottom:657.853861pt;}
.y44{bottom:659.775867pt;}
.y24b{bottom:660.495867pt;}
.y1ba{bottom:661.696235pt;}
.y99{bottom:663.290923pt;}
.yfe{bottom:663.292763pt;}
.y189{bottom:663.293451pt;}
.y12c{bottom:663.294123pt;}
.y1a5{bottom:663.294539pt;}
.y6d{bottom:663.294715pt;}
.ye0{bottom:666.655003pt;}
.yb9{bottom:666.655867pt;}
.y264{bottom:667.615291pt;}
.y4{bottom:668.977329pt;}
.y305{bottom:670.888325pt;}
.y29c{bottom:670.889243pt;}
.y2d4{bottom:670.894005pt;}
.y228{bottom:673.455867pt;}
.y1b9{bottom:677.855867pt;}
.y263{bottom:680.655435pt;}
.y98{bottom:681.131019pt;}
.yfd{bottom:681.132859pt;}
.y188{bottom:681.133547pt;}
.y12b{bottom:681.134219pt;}
.y161{bottom:681.134283pt;}
.y1a4{bottom:681.134635pt;}
.y6c{bottom:681.134811pt;}
.y1d9{bottom:681.695867pt;}
.y304{bottom:683.928469pt;}
.y29b{bottom:683.929387pt;}
.y2d3{bottom:683.934149pt;}
.ydf{bottom:684.495099pt;}
.y226{bottom:692.975867pt;}
.y262{bottom:693.695579pt;}
.y14a{bottom:696.175867pt;}
.y303{bottom:696.968613pt;}
.y29a{bottom:696.969531pt;}
.y225{bottom:697.215867pt;}
.y97{bottom:698.971115pt;}
.yfc{bottom:698.972955pt;}
.y187{bottom:698.973643pt;}
.y12a{bottom:698.974315pt;}
.y160{bottom:698.974379pt;}
.y1a3{bottom:698.974731pt;}
.y6b{bottom:698.974907pt;}
.yb8{bottom:698.976235pt;}
.y223{bottom:700.575867pt;}
.y224{bottom:700.815867pt;}
.y2d2{bottom:700.974149pt;}
.y3f{bottom:701.936000pt;}
.yde{bottom:702.335195pt;}
.y41{bottom:704.335867pt;}
.y261{bottom:706.735723pt;}
.y299{bottom:710.009675pt;}
.y227{bottom:710.975867pt;}
.y302{bottom:714.008613pt;}
.y2d1{bottom:714.014293pt;}
.yb7{bottom:715.135867pt;}
.y96{bottom:716.811211pt;}
.yfb{bottom:716.813051pt;}
.y212{bottom:716.813659pt;}
.y186{bottom:716.813739pt;}
.y129{bottom:716.814411pt;}
.y15f{bottom:716.814475pt;}
.y1a2{bottom:716.814827pt;}
.y6a{bottom:716.815003pt;}
.y260{bottom:719.775867pt;}
.ydd{bottom:720.175291pt;}
.y301{bottom:727.048757pt;}
.y298{bottom:727.049675pt;}
.y2d0{bottom:727.054437pt;}
.y221{bottom:727.615867pt;}
.y21f{bottom:729.775867pt;}
.y220{bottom:730.735867pt;}
.y3d{bottom:730.975867pt;}
.y222{bottom:731.295867pt;}
.y1b8{bottom:733.055483pt;}
.y95{bottom:734.651307pt;}
.y24a{bottom:734.652331pt;}
.yfa{bottom:734.653147pt;}
.y211{bottom:734.653755pt;}
.y185{bottom:734.653835pt;}
.y128{bottom:734.654507pt;}
.y15e{bottom:734.654571pt;}
.y1a1{bottom:734.654923pt;}
.y69{bottom:734.655099pt;}
.y3e{bottom:737.695867pt;}
.ydc{bottom:738.015387pt;}
.y300{bottom:740.088901pt;}
.y297{bottom:740.089819pt;}
.y2cf{bottom:740.094581pt;}
.y1b7{bottom:750.895579pt;}
.y21e{bottom:751.375867pt;}
.y94{bottom:752.491403pt;}
.y249{bottom:752.492427pt;}
.yf9{bottom:752.493243pt;}
.y210{bottom:752.493851pt;}
.y184{bottom:752.493931pt;}
.y127{bottom:752.494603pt;}
.y15d{bottom:752.494667pt;}
.y1a0{bottom:752.495019pt;}
.y68{bottom:752.495195pt;}
.y2ff{bottom:753.129045pt;}
.y296{bottom:753.129963pt;}
.ydb{bottom:755.855483pt;}
.y2ce{bottom:757.134581pt;}
.y3b{bottom:760.576000pt;}
.y3a{bottom:765.375867pt;}
.y295{bottom:766.170107pt;}
.y25f{bottom:767.535867pt;}
.y21d{bottom:768.655867pt;}
.y1b6{bottom:768.735675pt;}
.y2fe{bottom:770.169045pt;}
.y2cd{bottom:770.174725pt;}
.y93{bottom:770.331499pt;}
.y248{bottom:770.332523pt;}
.yf8{bottom:770.333339pt;}
.y20f{bottom:770.333947pt;}
.y183{bottom:770.334027pt;}
.y126{bottom:770.334699pt;}
.y15c{bottom:770.334763pt;}
.y19f{bottom:770.335115pt;}
.y67{bottom:770.335291pt;}
.yb6{bottom:770.335867pt;}
.yda{bottom:773.695579pt;}
.y294{bottom:779.210251pt;}
.y3{bottom:781.661334pt;}
.y2fd{bottom:783.209189pt;}
.y2cc{bottom:783.214869pt;}
.y1b5{bottom:786.575771pt;}
.y92{bottom:788.171595pt;}
.y247{bottom:788.172619pt;}
.yf7{bottom:788.173435pt;}
.y20e{bottom:788.174043pt;}
.y182{bottom:788.174123pt;}
.y125{bottom:788.174795pt;}
.y15b{bottom:788.174859pt;}
.y19e{bottom:788.175211pt;}
.y66{bottom:788.175387pt;}
.yb5{bottom:788.175867pt;}
.y21c{bottom:788.735867pt;}
.yd9{bottom:791.535675pt;}
.y2fc{bottom:796.249333pt;}
.y293{bottom:796.250251pt;}
.y2cb{bottom:796.255013pt;}
.y1b4{bottom:804.415867pt;}
.y91{bottom:806.011691pt;}
.y246{bottom:806.012715pt;}
.yf6{bottom:806.013531pt;}
.y20d{bottom:806.014139pt;}
.y181{bottom:806.014219pt;}
.y124{bottom:806.014891pt;}
.y15a{bottom:806.014955pt;}
.y19d{bottom:806.015307pt;}
.y65{bottom:806.015483pt;}
.y2fb{bottom:809.289477pt;}
.y292{bottom:809.290395pt;}
.y2ca{bottom:809.295157pt;}
.yd8{bottom:809.375771pt;}
.y291{bottom:822.330539pt;}
.y39{bottom:823.615691pt;}
.y90{bottom:823.851787pt;}
.y245{bottom:823.852811pt;}
.yf5{bottom:823.853627pt;}
.y20c{bottom:823.854235pt;}
.y180{bottom:823.854315pt;}
.y123{bottom:823.854987pt;}
.y159{bottom:823.855051pt;}
.y19c{bottom:823.855403pt;}
.y64{bottom:823.855579pt;}
.y2fa{bottom:826.329477pt;}
.y2c9{bottom:826.335157pt;}
.yd7{bottom:827.215867pt;}
.y38{bottom:834.815867pt;}
.y290{bottom:835.370683pt;}
.y2f9{bottom:839.369621pt;}
.y2c8{bottom:839.375301pt;}
.y2{bottom:840.112001pt;}
.y8f{bottom:841.691883pt;}
.y244{bottom:841.692907pt;}
.yf4{bottom:841.693723pt;}
.y20b{bottom:841.694331pt;}
.y17f{bottom:841.694411pt;}
.y122{bottom:841.695083pt;}
.y158{bottom:841.695147pt;}
.y19b{bottom:841.695499pt;}
.y63{bottom:841.695675pt;}
.y1b3{bottom:842.015733pt;}
.y2f8{bottom:852.409765pt;}
.y28f{bottom:852.410683pt;}
.y2c7{bottom:852.415445pt;}
.y37{bottom:856.255867pt;}
.y1{bottom:859.312000pt;}
.y8e{bottom:859.531979pt;}
.y243{bottom:859.533003pt;}
.yf3{bottom:859.533819pt;}
.y20a{bottom:859.534427pt;}
.y17e{bottom:859.534507pt;}
.y121{bottom:859.535179pt;}
.y157{bottom:859.535243pt;}
.y19a{bottom:859.535595pt;}
.y62{bottom:859.535771pt;}
.yd6{bottom:859.536235pt;}
.y2f7{bottom:865.449909pt;}
.y28e{bottom:865.450827pt;}
.y2c6{bottom:865.455589pt;}
.yd5{bottom:875.695867pt;}
.y8d{bottom:877.372075pt;}
.y242{bottom:877.373099pt;}
.yf2{bottom:877.373915pt;}
.y209{bottom:877.374523pt;}
.y17d{bottom:877.374603pt;}
.y120{bottom:877.375275pt;}
.y156{bottom:877.375339pt;}
.y199{bottom:877.375691pt;}
.y61{bottom:877.375867pt;}
.y1b2{bottom:877.935867pt;}
.y2f6{bottom:878.490053pt;}
.y28d{bottom:878.490971pt;}
.y2c5{bottom:878.495733pt;}
.y36{bottom:889.455381pt;}
.y35{bottom:900.655557pt;}
.y34{bottom:911.855733pt;}
.y5f{bottom:918.015733pt;}
.h17{height:10.560000pt;}
.h12{height:11.360000pt;}
.h1d{height:12.796875pt;}
.h13{height:13.040000pt;}
.hf{height:21.920000pt;}
.h19{height:23.813760pt;}
.hc{height:25.922812pt;}
.h23{height:26.237188pt;}
.h11{height:26.887031pt;}
.hb{height:27.832031pt;}
.h7{height:28.560000pt;}
.h14{height:29.550937pt;}
.h16{height:29.758750pt;}
.h26{height:29.765625pt;}
.hd{height:30.090937pt;}
.h15{height:31.683750pt;}
.h27{height:31.725435pt;}
.h1b{height:32.772031pt;}
.h20{height:33.281250pt;}
.h1a{height:34.241563pt;}
.ha{height:35.204375pt;}
.h25{height:35.521250pt;}
.h1f{height:35.521783pt;}
.h21{height:35.840717pt;}
.h1e{height:35.841250pt;}
.h24{height:36.009375pt;}
.h22{height:36.792187pt;}
.h18{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h9{height:44.468750pt;}
.h10{height:45.120000pt;}
.h2{height:48.960000pt;}
.he{height:53.121094pt;}
.h1c{height:55.358590pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:80.080000pt;}
.w5{width:128.320000pt;}
.w7{width:433.760000pt;}
.w4{width:551.200000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x29{left:80.800000pt;}
.x21{left:82.719800pt;}
.x10{left:85.440000pt;}
.x7{left:88.720237pt;}
.x1{left:90.706667pt;}
.x6{left:92.720000pt;}
.x2{left:94.486667pt;}
.x1e{left:95.600448pt;}
.x28{left:99.919672pt;}
.x2e{left:102.960000pt;}
.x26{left:104.079912pt;}
.x37{left:106.400605pt;}
.x36{left:108.400049pt;}
.x12{left:117.600000pt;}
.x27{left:119.439816pt;}
.x2d{left:121.200728pt;}
.x2c{left:122.399856pt;}
.x11{left:123.360000pt;}
.x35{left:130.560000pt;}
.x20{left:135.840000pt;}
.x33{left:146.320000pt;}
.x34{left:148.080000pt;}
.x2f{left:150.960000pt;}
.x30{left:160.960000pt;}
.x9{left:162.880000pt;}
.x23{left:178.080000pt;}
.x4{left:180.874667pt;}
.x31{left:196.640000pt;}
.x24{left:208.640256pt;}
.x2b{left:216.400000pt;}
.xa{left:224.160000pt;}
.x22{left:237.520096pt;}
.xe{left:242.160000pt;}
.xf{left:246.800000pt;}
.x32{left:262.480000pt;}
.xc{left:271.199880pt;}
.x17{left:280.560000pt;}
.x25{left:284.400248pt;}
.xb{left:357.120000pt;}
.x8{left:370.320000pt;}
.x15{left:383.680000pt;}
.x14{left:388.320208pt;}
.x2a{left:393.120000pt;}
.x3{left:404.408000pt;}
.x1c{left:405.760000pt;}
.x1a{left:407.120000pt;}
.x1d{left:410.720256pt;}
.x1b{left:412.080256pt;}
.x1f{left:414.400123pt;}
.x13{left:432.080000pt;}
.x16{left:500.880000pt;}
.x19{left:510.240000pt;}
.xd{left:543.040000pt;}
.x18{left:617.039832pt;}
}




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