
    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_1b4aa82ab85ca6411fd394b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bbece87426d80330ee8136bf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2da63771a9cb5f49477d72eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.696000;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_2c2f59a4ed9684b7c287a332.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_f708c1d2c1d63ffcdec8ceb0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694000;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_fbf215022070cb3ddbf826d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_84c5b2b88fb864ad2d80986e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5ebd7d8865c8f6ba1c655018.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7012056d73387c4e05a3cd74.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.902000;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_f92e434daaffae9384193c2f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.042000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f4726dcf74ea445aff947471.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;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_75c684ec787bc42a0060f237.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.106000;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_4e6f0f0ef86c2483552b40c7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.049000;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_40fa18477b1e57ed95e6c925.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.922852;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_622e57045ff53596d0ecd578.woff2')format("woff");}.fff{font-family:fff;line-height:0.768555;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_a12c55b0261d01f8650cc2b9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c664445634895e044b103d9f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.897000;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_45f33c4d231c27bd8ad5f08e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003906;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_9b130d35b70faf546d6da3fe.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.172363;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_bc07452e1cada7200929021d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.172363;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_58ce451fba8f706609e087e1.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.402354;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_6b854a9a78c3586ca35e6b52.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.402354;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_39da1105fc13fb7d02ca0a61.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.402354;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_a827be2b125ec4ee1b3a9ddf.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.402354;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_059ced3deb77130fe43a01e6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.402354;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_4d494bee29e840dc2203c7cd.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.402354;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_825ef6b50985ee17374105f7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;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_059ced3deb77130fe43a01e6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.402354;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_483b6c208805a3f10024632e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.402354;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_7e689c2c55c83886bdd168d3.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.402354;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_fa5a6ebedbf35f54ec0bca23.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.402354;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_5cdbf0064867745cb283eb30.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.402354;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_6fda8dcc03c67ab5f001da5a.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.402354;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_5f02091c9caaea40f3a9ef8b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.402354;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_a8346e54f0c708de3b16fcd3.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.402354;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_6fda8dcc03c67ab5f001da5a.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.402354;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_b25650ed40a9f09b4549318e.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.402354;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_2e4c9a49d46022b60c58906e.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.402354;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_dc5f21a18de4408a5dcfadb7.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_2649b3de28b52f97aaefcf54.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_8e465c6c6539db89acf48eac.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_da2e2ab2b1642195e35bdde3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.402354;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:ff2b;src:url('chunks/assets/font_e1309d767e777cdd15dc7aec.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.402354;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:ff2c;src:url('chunks/assets/font_4422e0e18867759bc9563151.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.402354;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:ff2d;src:url('chunks/assets/font_9f8036736561e3bf04dff8fc.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.402354;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:ff2e;src:url('chunks/assets/font_b2c2fa761da3637df6282383.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.402354;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:ff2f;src:url('chunks/assets/font_24ba11b63be1032e6d7cffe6.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.402354;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:ff30;src:url('chunks/assets/font_ddb8ee6ad6610b05e4a6c6b4.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.402354;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:ff31;src:url('chunks/assets/font_4422e0e18867759bc9563151.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.402354;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:ff32;src:url('chunks/assets/font_26401787deb2839332b9e058.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.402354;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:ff33;src:url('chunks/assets/font_5232ad34e24390fc59780b4b.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.402354;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:ff34;src:url('chunks/assets/font_e309cc7525f378513ced5af0.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.402354;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:ff35;src:url('chunks/assets/font_d0daebe3db8f3c0968c99417.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.686000;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:ff36;src:url('chunks/assets/font_32befed97bb8fd5013b3a952.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.052000;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:ff37;src:url('chunks/assets/font_49bdef32c53f6eab259cdeca.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.402354;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:ff38;src:url('chunks/assets/font_892371923c519ae582abc227.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.402354;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:ff39;src:url('chunks/assets/font_2482df6d8410850d2a16d626.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.402354;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:ff3a;src:url('chunks/assets/font_767dff8b8d02a30c800c302b.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.402354;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:ff3b;src:url('chunks/assets/font_966e6a6d81bb2cdf8d44ca93.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.402354;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:ff3c;src:url('chunks/assets/font_b3fc3ce159637c5e697c2027.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.402354;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:ff3d;src:url('chunks/assets/font_966e6a6d81bb2cdf8d44ca93.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.402354;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:ff3e;src:url('chunks/assets/font_bebffad1df39ddbec65223e1.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.402354;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:ff3f;src:url('chunks/assets/font_d99bfc254b740dd20f59596e.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.402354;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:ff40;src:url('chunks/assets/font_5d5d6b129af8a25452b84ea4.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.402354;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:ff41;src:url('chunks/assets/font_4607d02a4c6998dfd9bfca57.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.402354;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:ff42;src:url('chunks/assets/font_801a0c6728a050a1c283baa7.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.402354;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:ff43;src:url('chunks/assets/font_5fbb73676aef2bc62a962938.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.402354;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:ff44;src:url('chunks/assets/font_0d73b695e0c1faec8bd6bfaa.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.402354;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:ff45;src:url('chunks/assets/font_4607d02a4c6998dfd9bfca57.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.402354;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:ff46;src:url('chunks/assets/font_7b3195facdf759d966e7b1af.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.402354;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:ff47;src:url('chunks/assets/font_d3da393a1d57e40f45b20d11.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.402354;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:ff48;src:url('chunks/assets/font_aed4104a0819c2affbb24636.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.402354;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:ff49;src:url('chunks/assets/font_de21c7519a4b5f2b7530be8a.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.402354;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:ff4a;src:url('chunks/assets/font_fd7be1a14a4467ab70ec7c09.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.402354;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:ff4b;src:url('chunks/assets/font_b01b4e5376fcf16eb064c0d5.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.402354;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:ff4c;src:url('chunks/assets/font_3fccf078bc1ebc351267c299.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.402354;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:ff4d;src:url('chunks/assets/font_de21c7519a4b5f2b7530be8a.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.402354;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:ff4e;src:url('chunks/assets/font_2258d8494d7c6e500e804374.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.738000;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:ff4f;src:url('chunks/assets/font_6b806880504331c9e2b2f67b.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.899000;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;}
.m3{transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249999,0.250000,0.000000,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.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-21.690000px;}
.v4{vertical-align:-11.198592px;}
.v2{vertical-align:-8.970000px;}
.v6{vertical-align:-7.202135px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.947584px;}
.v5{vertical-align:19.034214px;}
.v8{vertical-align:20.301740px;}
.v3{vertical-align:21.690000px;}
.ls12{letter-spacing:-0.235116px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000017px;}
.ls2a{letter-spacing:0.000141px;}
.ls7{letter-spacing:0.000255px;}
.ls5{letter-spacing:0.000493px;}
.lsa{letter-spacing:0.000564px;}
.ls8{letter-spacing:0.000612px;}
.ls26{letter-spacing:0.000620px;}
.lsf{letter-spacing:0.002338px;}
.ls9{letter-spacing:0.006017px;}
.ls28{letter-spacing:0.006141px;}
.lsc{letter-spacing:0.083970px;}
.ls11{letter-spacing:0.098279px;}
.ls2{letter-spacing:2.984525px;}
.ls25{letter-spacing:2.988532px;}
.ls6{letter-spacing:2.990525px;}
.ls3{letter-spacing:8.465346px;}
.ls22{letter-spacing:14.370401px;}
.ls1c{letter-spacing:14.381691px;}
.ls16{letter-spacing:14.404270px;}
.ls0{letter-spacing:16.932141px;}
.ls1{letter-spacing:16.938141px;}
.ls21{letter-spacing:17.449773px;}
.ls1b{letter-spacing:17.463481px;}
.ls15{letter-spacing:17.490899px;}
.ls29{letter-spacing:17.946532px;}
.ls27{letter-spacing:17.952532px;}
.ls20{letter-spacing:20.015916px;}
.ls1a{letter-spacing:20.031640px;}
.ls14{letter-spacing:20.063090px;}
.lsb{letter-spacing:21.368525px;}
.ls1f{letter-spacing:21.555602px;}
.ls19{letter-spacing:21.572536px;}
.ls13{letter-spacing:21.606405px;}
.ls2b{letter-spacing:21.776525px;}
.ls10{letter-spacing:21.902525px;}
.ls2d{letter-spacing:22.972643px;}
.ls2c{letter-spacing:23.045219px;}
.ls2f{letter-spacing:23.504865px;}
.ls2e{letter-spacing:23.559297px;}
.lsd{letter-spacing:29.342525px;}
.ls23{letter-spacing:29.767259px;}
.ls1d{letter-spacing:29.790645px;}
.ls17{letter-spacing:29.837416px;}
.ls31{letter-spacing:33.768538px;}
.ls30{letter-spacing:52.356538px;}
.ls24{letter-spacing:744.694709px;}
.ls1e{letter-spacing:745.279750px;}
.ls18{letter-spacing:746.449833px;}
.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;}
}
.ws68{word-spacing:-33.588000px;}
.ws114{word-spacing:-30.545332px;}
.ws54{word-spacing:-29.881822px;}
.ws94{word-spacing:-25.397521px;}
.ws80{word-spacing:-21.644987px;}
.ws87{word-spacing:-21.611058px;}
.ws8d{word-spacing:-21.594094px;}
.ws81{word-spacing:-20.099615px;}
.ws88{word-spacing:-20.068108px;}
.ws8e{word-spacing:-20.052355px;}
.wsaf{word-spacing:-16.372537px;}
.wse8{word-spacing:-16.312761px;}
.wsc8{word-spacing:-16.133434px;}
.wsbe{word-spacing:-16.073659px;}
.ws10e{word-spacing:-16.013883px;}
.ws101{word-spacing:-15.774781px;}
.ws2b{word-spacing:-15.715005px;}
.wse4{word-spacing:-15.475903px;}
.ws1b{word-spacing:-15.063451px;}
.ws102{word-spacing:-14.878147px;}
.wsa3{word-spacing:-14.818371px;}
.ws104{word-spacing:-14.758596px;}
.ws2f{word-spacing:-14.698820px;}
.wsce{word-spacing:-14.519493px;}
.ws105{word-spacing:-14.459718px;}
.ws42{word-spacing:-14.220615px;}
.wse3{word-spacing:-13.682635px;}
.ws5f{word-spacing:-13.633653px;}
.ws12{word-spacing:-13.628837px;}
.ws3e{word-spacing:-13.503308px;}
.ws10c{word-spacing:-13.323981px;}
.wsd7{word-spacing:-13.298909px;}
.wsa4{word-spacing:-13.204430px;}
.ws2a{word-spacing:-13.084879px;}
.ws11{word-spacing:-12.911530px;}
.ws10d{word-spacing:-12.905552px;}
.ws7b{word-spacing:-12.726225px;}
.wsad{word-spacing:-12.666450px;}
.wsae{word-spacing:-12.606674px;}
.wseb{word-spacing:-12.487123px;}
.ws76{word-spacing:-12.427347px;}
.wsf4{word-spacing:-12.367572px;}
.wsec{word-spacing:-12.248020px;}
.ws1a{word-spacing:-12.134447px;}
.ws44{word-spacing:-12.128469px;}
.ws15{word-spacing:-12.074671px;}
.wsca{word-spacing:-11.949142px;}
.ws55{word-spacing:-11.889367px;}
.ws113{word-spacing:-11.716018px;}
.wsc0{word-spacing:-11.590489px;}
.ws53{word-spacing:-11.530713px;}
.wsaa{word-spacing:-11.470938px;}
.ws7a{word-spacing:-11.411162px;}
.ws43{word-spacing:-11.231835px;}
.wsf2{word-spacing:-11.172060px;}
.wsc6{word-spacing:-11.112284px;}
.ws61{word-spacing:-11.052508px;}
.wse5{word-spacing:-10.992733px;}
.ws75{word-spacing:-10.932957px;}
.wsde{word-spacing:-10.907879px;}
.wsa2{word-spacing:-10.813406px;}
.ws34{word-spacing:-10.753630px;}
.ws10{word-spacing:-10.699832px;}
.wsc1{word-spacing:-10.514528px;}
.wsf{word-spacing:-10.460730px;}
.ws38{word-spacing:-10.454752px;}
.ws92{word-spacing:-10.429673px;}
.wscd{word-spacing:-10.394977px;}
.wscb{word-spacing:-10.335201px;}
.ws52{word-spacing:-10.275426px;}
.wsc{word-spacing:-10.221628px;}
.ws7e{word-spacing:-10.215650px;}
.ws65{word-spacing:-10.198313px;}
.wsf6{word-spacing:-10.155874px;}
.wsf9{word-spacing:-10.096099px;}
.ws4{word-spacing:-9.976548px;}
.ws31{word-spacing:-9.916772px;}
.wsf8{word-spacing:-9.856996px;}
.ws22{word-spacing:-9.797221px;}
.wsb2{word-spacing:-9.737445px;}
.wsb0{word-spacing:-9.498343px;}
.wsc9{word-spacing:-9.319016px;}
.ws27{word-spacing:-9.259240px;}
.wsef{word-spacing:-9.199465px;}
.wsa{word-spacing:-9.145667px;}
.ws33{word-spacing:-9.139689px;}
.ws70{word-spacing:-9.079914px;}
.wsfe{word-spacing:-9.020138px;}
.wsbb{word-spacing:-8.960362px;}
.wsa0{word-spacing:-8.840811px;}
.ws19{word-spacing:-8.787013px;}
.wsb8{word-spacing:-8.781036px;}
.wsba{word-spacing:-8.721260px;}
.wsdf{word-spacing:-8.601709px;}
.ws47{word-spacing:-8.541933px;}
.ws73{word-spacing:-8.488184px;}
.ws74{word-spacing:-8.482158px;}
.ws60{word-spacing:-8.469028px;}
.ws78{word-spacing:-8.422382px;}
.ws85{word-spacing:-8.421208px;}
.ws3d{word-spacing:-8.362606px;}
.ws6b{word-spacing:-8.277746px;}
.ws77{word-spacing:-8.243055px;}
.wse1{word-spacing:-8.183280px;}
.wsd8{word-spacing:-8.134284px;}
.wscf{word-spacing:-8.123504px;}
.wsfa{word-spacing:-8.003953px;}
.ws5e{word-spacing:-7.990822px;}
.ws35{word-spacing:-7.944177px;}
.wsb5{word-spacing:-7.884402px;}
.wsd{word-spacing:-7.830604px;}
.ws37{word-spacing:-7.824626px;}
.ws41{word-spacing:-7.764850px;}
.ws57{word-spacing:-7.705075px;}
.wsc3{word-spacing:-7.703899px;}
.wsab{word-spacing:-7.645299px;}
.ws66{word-spacing:-7.590888px;}
.wsbc{word-spacing:-7.585524px;}
.wsfc{word-spacing:-7.525748px;}
.ws4e{word-spacing:-7.465972px;}
.ws56{word-spacing:-7.406197px;}
.ws67{word-spacing:-7.355772px;}
.ws18{word-spacing:-7.352399px;}
.ws9a{word-spacing:-7.346421px;}
.ws2c{word-spacing:-7.226870px;}
.wsc4{word-spacing:-7.177872px;}
.ws9b{word-spacing:-7.167094px;}
.wsb7{word-spacing:-7.107319px;}
.wsb1{word-spacing:-7.047543px;}
.wsf1{word-spacing:-6.868216px;}
.ws69{word-spacing:-6.747487px;}
.ws6e{word-spacing:-6.688890px;}
.wsa7{word-spacing:-6.629114px;}
.ws16{word-spacing:-6.575316px;}
.wsa1{word-spacing:-6.569338px;}
.wsbf{word-spacing:-6.509563px;}
.ws63{word-spacing:-6.449787px;}
.ws21{word-spacing:-6.210685px;}
.wsb4{word-spacing:-6.150909px;}
.ws30{word-spacing:-6.091134px;}
.ws6c{word-spacing:-6.031358px;}
.wsf7{word-spacing:-5.971582px;}
.wsdd{word-spacing:-5.934536px;}
.ws7c{word-spacing:-5.911807px;}
.ws3a{word-spacing:-5.852031px;}
.ws72{word-spacing:-5.792256px;}
.wse0{word-spacing:-5.732480px;}
.ws36{word-spacing:-5.553153px;}
.ws12f{word-spacing:-5.493378px;}
.ws64{word-spacing:-5.433602px;}
.ws71{word-spacing:-5.314051px;}
.wsb3{word-spacing:-5.254275px;}
.ws17{word-spacing:-5.200477px;}
.ws97{word-spacing:-5.134724px;}
.wsfb{word-spacing:-5.074948px;}
.ws3b{word-spacing:-5.015173px;}
.ws4b{word-spacing:-4.955397px;}
.wsc7{word-spacing:-4.895622px;}
.wsa6{word-spacing:-4.835846px;}
.ws9f{word-spacing:-4.776070px;}
.wsee{word-spacing:-4.716295px;}
.ws9d{word-spacing:-4.656519px;}
.ws14{word-spacing:-4.602721px;}
.wsb9{word-spacing:-4.596744px;}
.wsd0{word-spacing:-4.536968px;}
.wsac{word-spacing:-4.417417px;}
.ws11c{word-spacing:-4.297866px;}
.ws58{word-spacing:-4.118539px;}
.wsc5{word-spacing:-3.998988px;}
.ws98{word-spacing:-3.879436px;}
.ws7d{word-spacing:-3.700110px;}
.ws28{word-spacing:-3.640334px;}
.ws39{word-spacing:-3.520783px;}
.ws25{word-spacing:-3.221905px;}
.ws13{word-spacing:-3.048556px;}
.wsa5{word-spacing:-2.923027px;}
.wsf0{word-spacing:-2.743700px;}
.ws32{word-spacing:-2.624149px;}
.wsfd{word-spacing:-2.564373px;}
.wse7{word-spacing:-2.504598px;}
.ws99{word-spacing:-2.325271px;}
.ws3c{word-spacing:-2.265495px;}
.ws139{word-spacing:-2.205720px;}
.wse6{word-spacing:-2.145944px;}
.wsea{word-spacing:-2.086168px;}
.ws79{word-spacing:-2.026393px;}
.ws6d{word-spacing:-1.906842px;}
.ws4a{word-spacing:-1.787290px;}
.wse2{word-spacing:-1.727515px;}
.wse{word-spacing:-1.554166px;}
.ws12b{word-spacing:-1.548188px;}
.wsf3{word-spacing:-1.488412px;}
.ws9{word-spacing:-1.434614px;}
.ws62{word-spacing:-1.428637px;}
.ws130{word-spacing:-1.309086px;}
.ws9e{word-spacing:-1.249310px;}
.wsb6{word-spacing:-1.129759px;}
.wsf5{word-spacing:-1.010208px;}
.wsa9{word-spacing:-0.950432px;}
.wsbd{word-spacing:-0.830881px;}
.ws11d{word-spacing:-0.771105px;}
.wsa8{word-spacing:-0.472227px;}
.ws10a{word-spacing:-0.233125px;}
.ws103{word-spacing:-0.173349px;}
.ws5b{word-spacing:-0.144893px;}
.ws23{word-spacing:-0.113574px;}
.ws1c{word-spacing:-0.086077px;}
.ws1e{word-spacing:-0.059776px;}
.ws93{word-spacing:-0.047821px;}
.ws5a{word-spacing:-0.046614px;}
.ws59{word-spacing:-0.043745px;}
.ws51{word-spacing:-0.041843px;}
.ws95{word-spacing:-0.035866px;}
.ws5c{word-spacing:-0.031216px;}
.ws40{word-spacing:0.000000px;}
.ws4c{word-spacing:0.005978px;}
.ws49{word-spacing:0.484182px;}
.ws126{word-spacing:0.783060px;}
.wsed{word-spacing:1.141714px;}
.ws6a{word-spacing:1.190733px;}
.ws4d{word-spacing:1.201490px;}
.ws106{word-spacing:1.321041px;}
.ws96{word-spacing:1.978572px;}
.ws8{word-spacing:2.092146px;}
.ws112{word-spacing:2.450800px;}
.wse9{word-spacing:2.456777px;}
.ws111{word-spacing:2.636104px;}
.wsb{word-spacing:2.749678px;}
.ws10f{word-spacing:2.815431px;}
.ws24{word-spacing:2.994758px;}
.ws48{word-spacing:3.174084px;}
.ws125{word-spacing:3.227882px;}
.ws29{word-spacing:3.353411px;}
.ws6{word-spacing:3.407209px;}
.ws46{word-spacing:3.413187px;}
.ws9c{word-spacing:3.472962px;}
.ws26{word-spacing:3.592514px;}
.ws6f{word-spacing:3.652289px;}
.ws4f{word-spacing:3.771840px;}
.ws13a{word-spacing:4.369596px;}
.wsff{word-spacing:4.548923px;}
.ws20{word-spacing:5.804211px;}
.ws115{word-spacing:6.222640px;}
.ws122{word-spacing:6.581294px;}
.ws123{word-spacing:6.880172px;}
.ws100{word-spacing:7.179050px;}
.ws91{word-spacing:8.686394px;}
.ws8b{word-spacing:8.693218px;}
.ws84{word-spacing:8.706867px;}
.ws138{word-spacing:8.912542px;}
.ws12c{word-spacing:10.765586px;}
.ws137{word-spacing:11.184015px;}
.wsd5{word-spacing:11.445299px;}
.wsd6{word-spacing:11.452409px;}
.wsd2{word-spacing:11.481457px;}
.wsd3{word-spacing:11.488590px;}
.wsdc{word-spacing:11.717735px;}
.wsda{word-spacing:11.744870px;}
.ws10b{word-spacing:13.515263px;}
.ws50{word-spacing:13.814141px;}
.ws110{word-spacing:14.411897px;}
.ws2e{word-spacing:15.129204px;}
.ws12e{word-spacing:15.248756px;}
.ws124{word-spacing:15.368307px;}
.ws7{word-spacing:16.199188px;}
.ws121{word-spacing:16.683370px;}
.ws109{word-spacing:16.802921px;}
.ws0{word-spacing:16.880672px;}
.ws1{word-spacing:16.886097px;}
.ws136{word-spacing:17.281126px;}
.ws5d{word-spacing:19.462984px;}
.ws2d{word-spacing:20.568784px;}
.ws11e{word-spacing:20.927438px;}
.ws108{word-spacing:21.046989px;}
.ws132{word-spacing:21.704520px;}
.ws11f{word-spacing:21.818094px;}
.ws12d{word-spacing:21.913826px;}
.ws1d{word-spacing:23.192933px;}
.ws120{word-spacing:23.736891px;}
.ws117{word-spacing:24.513974px;}
.ws133{word-spacing:24.753076px;}
.ws3{word-spacing:25.034189px;}
.wsc2{word-spacing:25.643068px;}
.ws107{word-spacing:27.024549px;}
.ws90{word-spacing:27.675853px;}
.ws8a{word-spacing:27.697595px;}
.ws83{word-spacing:27.741080px;}
.ws12a{word-spacing:28.220061px;}
.ws129{word-spacing:29.893778px;}
.ws8f{word-spacing:31.268453px;}
.ws89{word-spacing:31.293018px;}
.ws82{word-spacing:31.342148px;}
.ws45{word-spacing:31.504255px;}
.ws128{word-spacing:32.105475px;}
.ws5{word-spacing:33.870369px;}
.ws116{word-spacing:34.795377px;}
.ws135{word-spacing:35.273582px;}
.ws118{word-spacing:38.979669px;}
.ws2{word-spacing:39.974159px;}
.wscc{word-spacing:46.330787px;}
.ws131{word-spacing:59.237105px;}
.ws127{word-spacing:71.198717px;}
.ws8c{word-spacing:72.839970px;}
.ws86{word-spacing:72.897194px;}
.ws7f{word-spacing:73.011642px;}
.ws134{word-spacing:74.885798px;}
.wsd4{word-spacing:92.396517px;}
.wsd1{word-spacing:92.688418px;}
.wsdb{word-spacing:94.537127px;}
.wsd9{word-spacing:94.756053px;}
.ws11a{word-spacing:95.640960px;}
.ws119{word-spacing:103.914182px;}
.ws1f{word-spacing:136.604516px;}
.ws11b{word-spacing:153.689045px;}
.ws3f{word-spacing:1198.057617px;}
._3b{margin-left:-23.301768px;}
._25{margin-left:-21.606405px;}
._28{margin-left:-20.231223px;}
._2{margin-left:-12.808258px;}
._4{margin-left:-9.606193px;}
._5{margin-left:-7.557616px;}
._9{margin-left:-5.818434px;}
._7{margin-left:-4.343415px;}
._3{margin-left:-3.202064px;}
._1{margin-left:-1.434618px;}
._8{width:1.494394px;}
._f{width:3.142289px;}
._2c{width:7.332727px;}
._2d{width:8.575708px;}
._2a{width:11.198660px;}
._27{width:12.860955px;}
._2e{width:14.223637px;}
._16{width:15.302554px;}
._18{width:16.378511px;}
._2f{width:17.933562px;}
._e{width:19.084696px;}
._20{width:20.107894px;}
._2b{width:21.804133px;}
._26{width:23.149719px;}
._11{width:24.368241px;}
._15{width:25.524181px;}
._a{width:26.600142px;}
._d{width:27.606788px;}
._10{width:28.666470px;}
._19{width:30.445981px;}
._29{width:31.520760px;}
._46{width:33.055910px;}
._17{width:34.072092px;}
._31{width:35.207825px;}
._3a{width:36.214077px;}
._1f{width:38.196608px;}
._12{width:40.249183px;}
._1b{width:41.544042px;}
._3f{width:43.178554px;}
._3e{width:44.898858px;}
._1c{width:45.907661px;}
._14{width:47.601578px;}
._41{width:49.064186px;}
._c{width:50.450606px;}
._1e{width:51.765677px;}
._45{width:53.020961px;}
._30{width:55.053328px;}
._13{width:56.926572px;}
._43{width:58.749566px;}
._1d{width:60.134254px;}
._b{width:63.063258px;}
._42{width:64.637628px;}
._35{width:71.735648px;}
._36{width:74.574959px;}
._34{width:75.965205px;}
._48{width:78.565342px;}
._37{width:80.148959px;}
._6{width:84.049210px;}
._24{width:107.517584px;}
._40{width:119.560550px;}
._47{width:120.786287px;}
._22{width:122.109202px;}
._39{width:127.846094px;}
._23{width:129.123989px;}
._3d{width:130.698004px;}
._1a{width:136.690594px;}
._38{width:150.342617px;}
._3c{width:153.696366px;}
._44{width:225.439681px;}
._33{width:281.969619px;}
._32{width:798.697458px;}
._21{width:1198.232514px;}
._0{width:1533.080615px;}
.fc6{color:rgb(255,255,0);}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(146,208,80);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs23{font-size:21.555602px;}
.fs1b{font-size:21.572536px;}
.fs13{font-size:21.606405px;}
.fs21{font-size:26.174659px;}
.fs19{font-size:26.195222px;}
.fs11{font-size:26.236348px;}
.fs22{font-size:27.201116px;}
.fs1a{font-size:27.222486px;}
.fs12{font-size:27.265225px;}
.fs9{font-size:31.216075px;}
.fs20{font-size:31.820174px;}
.fs18{font-size:31.845172px;}
.fs10{font-size:31.895169px;}
.fsb{font-size:33.588000px;}
.fs2c{font-size:33.911997px;}
.fs28{font-size:34.019132px;}
.fs34{font-size:34.697658px;}
.fs30{font-size:34.778010px;}
.fs24{font-size:35.865600px;}
.fs1f{font-size:36.439231px;}
.fs17{font-size:36.467858px;}
.fsf{font-size:36.525112px;}
.fs1c{font-size:38.492146px;}
.fs14{font-size:38.522385px;}
.fsc{font-size:38.582865px;}
.fs29{font-size:41.022577px;}
.fs25{font-size:41.152176px;}
.fs3{font-size:41.842800px;}
.fs31{font-size:41.972973px;}
.fs2d{font-size:42.070173px;}
.fs6{font-size:43.744500px;}
.fsa{font-size:45.125280px;}
.fs7{font-size:46.544148px;}
.fs8{font-size:46.614139px;}
.fs1d{font-size:46.703803px;}
.fs1e{font-size:46.704012px;}
.fs15{font-size:46.740494px;}
.fs16{font-size:46.740703px;}
.fsd{font-size:46.813876px;}
.fse{font-size:46.814086px;}
.fs0{font-size:47.820600px;}
.fs2b{font-size:49.774060px;}
.fs2a{font-size:49.774282px;}
.fs27{font-size:49.931307px;}
.fs26{font-size:49.931530px;}
.fs33{font-size:50.927208px;}
.fs32{font-size:50.927435px;}
.fs2f{font-size:51.045143px;}
.fs2e{font-size:51.045371px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y109{bottom:0.260731px;}
.ybc{bottom:0.798295px;}
.ya7{bottom:1.337168px;}
.y91{bottom:1.878304px;}
.y131{bottom:2.488117px;}
.y145{bottom:2.547114px;}
.y158{bottom:3.249701px;}
.y168{bottom:3.285970px;}
.y5c{bottom:9.660244px;}
.y113{bottom:9.762919px;}
.yc7{bottom:10.421332px;}
.y5f{bottom:10.885090px;}
.yb2{bottom:10.967764px;}
.y9c{bottom:11.524020px;}
.y123{bottom:19.086162px;}
.y137{bottom:19.092887px;}
.y15e{bottom:19.375610px;}
.y14e{bottom:20.218004px;}
.y6b{bottom:20.444596px;}
.yb9{bottom:21.070825px;}
.y66{bottom:21.255887px;}
.y106{bottom:21.448043px;}
.ycd{bottom:21.625624px;}
.ya4{bottom:22.524480px;}
.y8e{bottom:23.098880px;}
.y138{bottom:31.946628px;}
.y124{bottom:31.980510px;}
.y10a{bottom:32.491127px;}
.y15f{bottom:32.527141px;}
.ybd{bottom:33.003390px;}
.y14f{bottom:33.399992px;}
.ya8{bottom:33.567564px;}
.y92{bottom:34.159301px;}
.y6d{bottom:42.647663px;}
.y139{bottom:53.004884px;}
.y125{bottom:53.105294px;}
.y3f{bottom:58.093500px;}
.y10b{bottom:64.849930px;}
.ybe{bottom:65.336793px;}
.ya9{bottom:65.926367px;}
.y93{bottom:66.568908px;}
.y160{bottom:67.784439px;}
.y150{bottom:68.738937px;}
.yb8{bottom:72.650300px;}
.ycc{bottom:73.245621px;}
.y13a{bottom:73.926398px;}
.y126{bottom:74.092904px;}
.y105{bottom:75.507790px;}
.ya3{bottom:76.584227px;}
.y8d{bottom:77.243500px;}
.y68{bottom:92.911071px;}
.y5b{bottom:92.927899px;}
.y13b{bottom:94.984654px;}
.y127{bottom:95.217688px;}
.y5e{bottom:95.851490px;}
.y10c{bottom:97.080326px;}
.ybf{bottom:97.541888px;}
.yaa{bottom:98.156763px;}
.y94{bottom:98.849905px;}
.y108{bottom:99.776893px;}
.ybb{bottom:100.236338px;}
.ya6{bottom:100.853330px;}
.y90{bottom:101.550706px;}
.y161{bottom:103.181647px;}
.y151{bottom:104.218116px;}
.y5d{bottom:106.175192px;}
.y67{bottom:106.448655px;}
.y6c{bottom:107.213596px;}
.y144{bottom:107.975136px;}
.y130{bottom:108.249210px;}
.y13c{bottom:116.042910px;}
.y128{bottom:116.342472px;}
.y29{bottom:121.180500px;}
.y3e{bottom:121.234500px;}
.yb7{bottom:124.229775px;}
.ycb{bottom:124.865617px;}
.y64{bottom:125.440500px;}
.ye7{bottom:126.174000px;}
.y10d{bottom:129.310722px;}
.y104{bottom:129.567538px;}
.yc0{bottom:129.746983px;}
.yab{bottom:130.387159px;}
.ya2{bottom:130.643975px;}
.y95{bottom:131.130902px;}
.y8c{bottom:131.388121px;}
.y167{bottom:133.682007px;}
.y157{bottom:134.789109px;}
.y13d{bottom:136.964424px;}
.y129{bottom:137.330081px;}
.y162{bottom:138.438944px;}
.y28{bottom:139.113000px;}
.yda{bottom:139.114500px;}
.y3d{bottom:139.167000px;}
.y152{bottom:139.557061px;}
.y63{bottom:139.636500px;}
.y14c{bottom:141.276000px;}
.ye6{bottom:144.108000px;}
.yb1{bottom:152.088103px;}
.y9b{bottom:152.865916px;}
.yc6{bottom:153.740420px;}
.y62{bottom:153.834000px;}
.yce{bottom:154.399446px;}
.y14b{bottom:155.472000px;}
.y196{bottom:157.045500px;}
.y27{bottom:157.047000px;}
.y3c{bottom:157.099500px;}
.y13e{bottom:158.022680px;}
.y12a{bottom:158.454865px;}
.y10e{bottom:161.541118px;}
.yc1{bottom:161.952078px;}
.ye5{bottom:162.040500px;}
.yac{bottom:162.617555px;}
.y96{bottom:163.411899px;}
.y14a{bottom:169.669500px;}
.y163{bottom:173.836152px;}
.y88{bottom:174.979500px;}
.y3b{bottom:175.032000px;}
.y153{bottom:175.036241px;}
.yb6{bottom:175.809250px;}
.yca{bottom:176.485614px;}
.y13f{bottom:179.080936px;}
.y12b{bottom:179.579649px;}
.ye4{bottom:179.973000px;}
.y1e3{bottom:179.982000px;}
.y1bb{bottom:180.232500px;}
.y103{bottom:183.498878px;}
.ya1{bottom:184.575314px;}
.y8b{bottom:185.404133px;}
.y61{bottom:189.175500px;}
.y87{bottom:192.912000px;}
.y3a{bottom:192.964500px;}
.y10f{bottom:193.899922px;}
.yc2{bottom:194.285480px;}
.yad{bottom:194.976359px;}
.y97{bottom:195.821506px;}
.ye3{bottom:197.905500px;}
.y1e2{bottom:197.914500px;}
.y1ba{bottom:198.165000px;}
.y26{bottom:198.741000px;}
.y140{bottom:200.002450px;}
.y12c{bottom:200.567259px;}
.y149{bottom:205.011000px;}
.y164{bottom:209.093450px;}
.y154{bottom:210.375186px;}
.y86{bottom:210.844500px;}
.y39{bottom:210.897000px;}
.ye2{bottom:215.838000px;}
.y1e1{bottom:215.847000px;}
.y1b9{bottom:216.097500px;}
.y114{bottom:217.655393px;}
.yc8{bottom:218.022303px;}
.y112{bottom:218.040616px;}
.yc5{bottom:218.407225px;}
.yb3{bottom:218.731830px;}
.yb0{bottom:219.117053px;}
.y9d{bottom:219.614273px;}
.y9a{bottom:220.000102px;}
.y141{bottom:221.060706px;}
.y12d{bottom:221.692043px;}
.y136{bottom:222.943500px;}
.y134{bottom:225.670086px;}
.y148{bottom:225.846674px;}
.y110{bottom:226.130317px;}
.yc3{bottom:226.490575px;}
.yae{bottom:227.206754px;}
.y98{bottom:228.102503px;}
.y85{bottom:228.777000px;}
.y38{bottom:228.831000px;}
.y16b{bottom:231.898765px;}
.ye1{bottom:233.772000px;}
.y1e0{bottom:233.779500px;}
.y1b8{bottom:234.030000px;}
.y15b{bottom:234.495419px;}
.y111{bottom:238.457481px;}
.yc4{bottom:238.808062px;}
.y102{bottom:239.484744px;}
.yaf{bottom:239.533918px;}
.yb5{bottom:239.834519px;}
.y99{bottom:240.449020px;}
.ya0{bottom:240.561181px;}
.y133{bottom:240.896392px;}
.y147{bottom:241.025027px;}
.y8a{bottom:241.477897px;}
.y142{bottom:242.118962px;}
.y12e{bottom:242.816827px;}
.y165{bottom:244.490657px;}
.y155{bottom:245.854365px;}
.y25{bottom:246.216000px;}
.y84{bottom:246.709500px;}
.y170{bottom:246.711000px;}
.y37{bottom:246.763500px;}
.y16a{bottom:247.428765px;}
.y15a{bottom:250.061383px;}
.y107{bottom:250.527828px;}
.yba{bottom:250.868934px;}
.ya5{bottom:251.604265px;}
.ye0{bottom:251.704500px;}
.y1df{bottom:251.712000px;}
.y8f{bottom:252.538318px;}
.y132{bottom:256.122697px;}
.y146{bottom:256.203380px;}
.y169{bottom:262.958765px;}
.y143{bottom:263.040476px;}
.y12f{bottom:263.804436px;}
.y1b7{bottom:263.919000px;}
.y24{bottom:264.148500px;}
.y195{bottom:264.642000px;}
.y83{bottom:264.643500px;}
.y159{bottom:265.627347px;}
.ydf{bottom:269.637000px;}
.y1de{bottom:269.646000px;}
.yd9{bottom:272.250000px;}
.y36{bottom:276.304500px;}
.y117{bottom:276.852000px;}
.y166{bottom:279.747955px;}
.y156{bottom:281.193311px;}
.y1b6{bottom:281.851500px;}
.y82{bottom:282.576000px;}
.yde{bottom:287.569500px;}
.y1dd{bottom:287.578500px;}
.y116{bottom:291.048000px;}
.y35{bottom:294.237000px;}
.y1b5{bottom:299.784000px;}
.y81{bottom:300.508500px;}
.y115{bottom:305.245500px;}
.ydd{bottom:305.502000px;}
.y1dc{bottom:305.511000px;}
.y23{bottom:305.842500px;}
.y34{bottom:312.169500px;}
.y1b4{bottom:317.716500px;}
.y80{bottom:318.441000px;}
.ydc{bottom:323.434500px;}
.y1db{bottom:323.443500px;}
.y33{bottom:330.102000px;}
.y101{bottom:330.127500px;}
.y1b3{bottom:335.649000px;}
.y7f{bottom:336.373500px;}
.yd8{bottom:341.368500px;}
.y32{bottom:348.034500px;}
.y22{bottom:353.317500px;}
.y1b2{bottom:353.581500px;}
.y7e{bottom:354.307500px;}
.yd7{bottom:359.301000px;}
.y1da{bottom:359.308500px;}
.y21{bottom:371.250000px;}
.y1b1{bottom:371.515500px;}
.y7d{bottom:372.240000px;}
.yd6{bottom:377.233500px;}
.y1d9{bottom:377.242500px;}
.y31{bottom:377.575500px;}
.y194{bottom:379.537500px;}
.y20{bottom:389.184000px;}
.y1b0{bottom:389.448000px;}
.y7c{bottom:390.172500px;}
.y60{bottom:393.618000px;}
.yd5{bottom:395.166000px;}
.y1d8{bottom:395.175000px;}
.y30{bottom:395.508000px;}
.y1f{bottom:407.116500px;}
.y1af{bottom:407.380500px;}
.y7b{bottom:408.105000px;}
.y5a{bottom:411.550500px;}
.yd4{bottom:413.098500px;}
.y1d7{bottom:413.107500px;}
.y2f{bottom:413.440500px;}
.y1e{bottom:425.049000px;}
.y7a{bottom:426.037500px;}
.ydb{bottom:431.031000px;}
.yd3{bottom:431.032500px;}
.y1d6{bottom:431.040000px;}
.y2e{bottom:431.373000px;}
.y1d{bottom:442.981500px;}
.y79{bottom:443.970000px;}
.y193{bottom:447.114000px;}
.y1ae{bottom:448.612500px;}
.yd2{bottom:448.965000px;}
.y1d5{bottom:448.972500px;}
.y2d{bottom:449.307000px;}
.y16f{bottom:452.391000px;}
.y1c{bottom:460.914000px;}
.y78{bottom:461.904000px;}
.y192{bottom:465.048000px;}
.y16e{bottom:466.587000px;}
.yd1{bottom:466.897500px;}
.y2c{bottom:467.239500px;}
.y1b{bottom:478.848000px;}
.y77{bottom:479.836500px;}
.y16d{bottom:480.784500px;}
.y191{bottom:482.980500px;}
.y1d4{bottom:484.839000px;}
.y1a{bottom:496.780500px;}
.y76{bottom:497.769000px;}
.y190{bottom:500.913000px;}
.y1d3{bottom:502.771500px;}
.y1ad{bottom:506.529000px;}
.y19{bottom:514.713000px;}
.y75{bottom:515.701500px;}
.yd0{bottom:515.988000px;}
.y16c{bottom:516.126000px;}
.y1d2{bottom:520.704000px;}
.y135{bottom:521.143500px;}
.y1ac{bottom:524.461500px;}
.y18f{bottom:527.349000px;}
.ycf{bottom:530.185500px;}
.y18{bottom:532.645500px;}
.y74{bottom:533.634000px;}
.y15d{bottom:534.058383px;}
.y1d1{bottom:538.636500px;}
.y122{bottom:539.076171px;}
.y1ab{bottom:542.395500px;}
.y18e{bottom:545.281500px;}
.y17{bottom:550.578000px;}
.y73{bottom:551.566500px;}
.y1d0{bottom:556.569000px;}
.y1aa{bottom:560.328000px;}
.y18d{bottom:563.215500px;}
.yc9{bottom:565.587000px;}
.y16{bottom:568.510500px;}
.y1cf{bottom:574.503000px;}
.y1a9{bottom:578.260500px;}
.y18c{bottom:581.148000px;}
.yb4{bottom:583.519553px;}
.y2b{bottom:586.443000px;}
.y15{bottom:586.444500px;}
.y1ce{bottom:592.435500px;}
.y1a8{bottom:596.193000px;}
.y72{bottom:597.400500px;}
.y18b{bottom:599.080500px;}
.y14{bottom:604.377000px;}
.y100{bottom:606.660000px;}
.y1cd{bottom:610.368000px;}
.y71{bottom:611.598000px;}
.y18a{bottom:617.013000px;}
.y59{bottom:621.304500px;}
.y13{bottom:622.309500px;}
.yff{bottom:624.592500px;}
.y70{bottom:625.794000px;}
.y189{bottom:634.945500px;}
.y1a7{bottom:637.425000px;}
.y58{bottom:639.237000px;}
.y6f{bottom:639.991500px;}
.y12{bottom:640.242000px;}
.yfe{bottom:642.525000px;}
.y1cc{bottom:651.600000px;}
.y188{bottom:652.879500px;}
.y57{bottom:657.169500px;}
.y11{bottom:658.174500px;}
.yfd{bottom:660.457500px;}
.y56{bottom:675.102000px;}
.y6e{bottom:675.333000px;}
.y10{bottom:676.107000px;}
.yfc{bottom:678.390000px;}
.y187{bottom:679.315500px;}
.y55{bottom:693.036000px;}
.y6a{bottom:693.265500px;}
.y2a{bottom:694.039500px;}
.yf{bottom:694.041000px;}
.y1a6{bottom:695.341500px;}
.yfb{bottom:696.324000px;}
.y186{bottom:697.248000px;}
.y54{bottom:710.968500px;}
.ye{bottom:711.973500px;}
.y1a5{bottom:713.275500px;}
.yfa{bottom:714.256500px;}
.y185{bottom:715.180500px;}
.y1cb{bottom:722.760000px;}
.y53{bottom:728.901000px;}
.yd{bottom:729.906000px;}
.y1a4{bottom:731.208000px;}
.yf9{bottom:732.189000px;}
.y184{bottom:733.114500px;}
.y1ca{bottom:740.692500px;}
.y52{bottom:746.833500px;}
.yc{bottom:747.838500px;}
.y1a3{bottom:749.140500px;}
.y183{bottom:751.047000px;}
.yf8{bottom:758.625000px;}
.y51{bottom:764.766000px;}
.y1a2{bottom:767.073000px;}
.y182{bottom:768.979500px;}
.y1c9{bottom:776.557500px;}
.yf7{bottom:776.559000px;}
.y50{bottom:782.698500px;}
.y1a1{bottom:785.005500px;}
.y181{bottom:786.912000px;}
.yf6{bottom:794.491500px;}
.y4f{bottom:800.632500px;}
.y1a0{bottom:802.938000px;}
.yb{bottom:803.041500px;}
.y180{bottom:804.844500px;}
.yf5{bottom:812.424000px;}
.y4e{bottom:818.565000px;}
.y19f{bottom:820.872000px;}
.ya{bottom:820.975500px;}
.y17f{bottom:822.777000px;}
.yf4{bottom:830.356500px;}
.y69{bottom:834.220500px;}
.y4d{bottom:836.497500px;}
.y121{bottom:838.450500px;}
.y19e{bottom:838.804500px;}
.y9{bottom:838.908000px;}
.y17e{bottom:840.711000px;}
.y15c{bottom:841.126500px;}
.yf3{bottom:848.289000px;}
.y65{bottom:852.153000px;}
.y4c{bottom:854.430000px;}
.y120{bottom:856.383000px;}
.y19d{bottom:856.737000px;}
.y17d{bottom:858.643500px;}
.y14d{bottom:859.058942px;}
.y1c8{bottom:860.244000px;}
.y9e{bottom:864.253500px;}
.yf2{bottom:866.221500px;}
.y4b{bottom:872.362500px;}
.y11f{bottom:874.315500px;}
.y19c{bottom:874.669500px;}
.y8{bottom:874.773000px;}
.y17c{bottom:876.576000px;}
.y1c7{bottom:878.176500px;}
.y9f{bottom:882.186054px;}
.y89{bottom:882.186107px;}
.yf1{bottom:884.155500px;}
.y4a{bottom:890.296500px;}
.y11e{bottom:892.249500px;}
.y19b{bottom:892.602000px;}
.y1c6{bottom:896.110500px;}
.yf0{bottom:902.088000px;}
.y17b{bottom:903.012000px;}
.y49{bottom:908.229000px;}
.y11d{bottom:910.182000px;}
.y19a{bottom:910.536000px;}
.y7{bottom:910.638000px;}
.y1c5{bottom:914.043000px;}
.yef{bottom:920.020500px;}
.y17a{bottom:920.946000px;}
.y48{bottom:926.161500px;}
.y11c{bottom:928.114500px;}
.y199{bottom:928.468500px;}
.y1c4{bottom:931.975500px;}
.yee{bottom:937.953000px;}
.y179{bottom:938.878500px;}
.y47{bottom:944.094000px;}
.y198{bottom:946.401000px;}
.y6{bottom:946.504500px;}
.y1c3{bottom:949.908000px;}
.yed{bottom:955.885500px;}
.y178{bottom:956.811000px;}
.y46{bottom:962.026500px;}
.y5{bottom:969.859500px;}
.y11b{bottom:972.339000px;}
.yec{bottom:973.818000px;}
.y177{bottom:974.743500px;}
.y1c2{bottom:979.795500px;}
.y11a{bottom:987.133500px;}
.y197{bottom:987.633000px;}
.yeb{bottom:991.752000px;}
.y176{bottom:992.676000px;}
.y1c1{bottom:997.729500px;}
.y45{bottom:1003.642500px;}
.yea{bottom:1009.684500px;}
.y175{bottom:1010.608500px;}
.y4{bottom:1012.134000px;}
.y1c0{bottom:1015.662000px;}
.y119{bottom:1016.871000px;}
.ye9{bottom:1027.617000px;}
.y174{bottom:1028.542500px;}
.y1bf{bottom:1033.594500px;}
.ye8{bottom:1045.549500px;}
.y1be{bottom:1051.527000px;}
.y173{bottom:1054.978500px;}
.y44{bottom:1063.482000px;}
.y1bd{bottom:1069.459500px;}
.y172{bottom:1072.911000px;}
.y3{bottom:1078.083000px;}
.y118{bottom:1081.414500px;}
.y43{bottom:1081.416000px;}
.y1bc{bottom:1087.392000px;}
.y171{bottom:1090.843500px;}
.y42{bottom:1099.348500px;}
.y2{bottom:1110.960000px;}
.y41{bottom:1117.281000px;}
.y40{bottom:1135.213500px;}
.y1{bottom:1189.350000px;}
.h5{height:28.202047px;}
.hc{height:33.214208px;}
.h13{height:33.407596px;}
.hb{height:33.897716px;}
.hf{height:35.913271px;}
.hd{height:36.067169px;}
.he{height:36.121406px;}
.h2{height:36.917503px;}
.h27{height:37.453788px;}
.h20{height:37.483212px;}
.h19{height:37.542060px;}
.h29{height:38.065848px;}
.h22{height:38.095753px;}
.h1b{height:38.155563px;}
.h24{height:39.563860px;}
.h1d{height:39.594942px;}
.h16{height:39.657106px;}
.h2b{height:40.722624px;}
.h2d{height:40.728624px;}
.h34{height:42.164745px;}
.h8{height:42.201574px;}
.h2f{height:42.297952px;}
.h3e{height:43.141603px;}
.h39{height:43.241508px;}
.h11{height:44.882908px;}
.h6{height:44.891476px;}
.h25{height:48.004150px;}
.h26{height:48.004365px;}
.h1e{height:48.041863px;}
.h1f{height:48.042077px;}
.h17{height:48.117288px;}
.h18{height:48.117503px;}
.h9{height:49.892047px;}
.h14{height:49.898047px;}
.h37{height:51.159890px;}
.h35{height:51.160119px;}
.h4{height:51.287808px;}
.h32{height:51.321516px;}
.h30{height:51.321745px;}
.h28{height:51.695583px;}
.h21{height:51.736195px;}
.h1a{height:51.817421px;}
.h41{height:52.345144px;}
.h3f{height:52.345378px;}
.h3c{height:52.466364px;}
.h3a{height:52.466598px;}
.h36{height:55.093993px;}
.h31{height:55.268048px;}
.h40{height:56.370392px;}
.h3b{height:56.500932px;}
.h7{height:60.426194px;}
.h3{height:70.961879px;}
.h12{height:121.526982px;}
.ha{height:188.021881px;}
.h10{height:190.381676px;}
.h2c{height:259.155438px;}
.h23{height:259.758683px;}
.h1c{height:260.500998px;}
.h15{height:261.179473px;}
.h2a{height:261.308365px;}
.h33{height:278.775591px;}
.h2e{height:280.632931px;}
.h3d{height:287.640742px;}
.h38{height:291.098042px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:233.861012px;}
.w2{width:259.365515px;}
.wb{width:340.145783px;}
.w9{width:340.150502px;}
.w5{width:340.153301px;}
.w4{width:340.154773px;}
.wc{width:340.155586px;}
.w6{width:340.158346px;}
.w8{width:340.158399px;}
.w7{width:340.160235px;}
.wa{width:340.160337px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:2.430736px;}
.x13{left:4.421111px;}
.x20{left:7.784899px;}
.x22{left:9.328220px;}
.x31{left:10.545681px;}
.x36{left:11.690332px;}
.x1f{left:13.186524px;}
.x2d{left:15.004363px;}
.x33{left:16.108557px;}
.x2e{left:23.646358px;}
.x11{left:25.389308px;}
.x32{left:27.187085px;}
.x2c{left:34.483146px;}
.x16{left:35.907689px;}
.x24{left:39.422989px;}
.x10{left:50.301801px;}
.x1e{left:59.486169px;}
.x30{left:77.830299px;}
.x17{left:81.439097px;}
.x1{left:85.039500px;}
.x3{left:91.081500px;}
.xb{left:92.928000px;}
.x1a{left:95.620138px;}
.xe{left:99.984000px;}
.x2{left:101.524500px;}
.x1d{left:103.808786px;}
.x34{left:105.157488px;}
.x38{left:115.752000px;}
.x2f{left:117.748088px;}
.x4{left:122.365500px;}
.x6{left:128.788500px;}
.xf{left:132.327000px;}
.x21{left:138.710006px;}
.x5{left:177.136500px;}
.x25{left:233.109838px;}
.x8{left:241.732500px;}
.x2a{left:245.854500px;}
.x26{left:248.676000px;}
.x14{left:251.433000px;}
.xa{left:264.537000px;}
.x23{left:276.837281px;}
.x9{left:287.467500px;}
.x35{left:292.370594px;}
.x37{left:293.749973px;}
.x29{left:305.324504px;}
.x1b{left:306.328858px;}
.x7{left:345.714000px;}
.x27{left:448.946786px;}
.xc{left:453.928500px;}
.x19{left:460.822500px;}
.xd{left:468.873000px;}
.x39{left:484.641000px;}
.x1c{left:501.348000px;}
.x15{left:513.972752px;}
.x2b{left:520.959000px;}
.x28{left:590.286000px;}
.x18{left:620.323500px;}
@media print{
.v1{vertical-align:-19.280000pt;}
.v4{vertical-align:-9.954304pt;}
.v2{vertical-align:-7.973333pt;}
.v6{vertical-align:-6.401898pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.175630pt;}
.v5{vertical-align:16.919301pt;}
.v8{vertical-align:18.045991pt;}
.v3{vertical-align:19.280000pt;}
.ls12{letter-spacing:-0.208992pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000015pt;}
.ls2a{letter-spacing:0.000125pt;}
.ls7{letter-spacing:0.000227pt;}
.ls5{letter-spacing:0.000439pt;}
.lsa{letter-spacing:0.000501pt;}
.ls8{letter-spacing:0.000544pt;}
.ls26{letter-spacing:0.000551pt;}
.lsf{letter-spacing:0.002079pt;}
.ls9{letter-spacing:0.005348pt;}
.ls28{letter-spacing:0.005459pt;}
.lsc{letter-spacing:0.074640pt;}
.ls11{letter-spacing:0.087359pt;}
.ls2{letter-spacing:2.652911pt;}
.ls25{letter-spacing:2.656473pt;}
.ls6{letter-spacing:2.658245pt;}
.ls3{letter-spacing:7.524752pt;}
.ls22{letter-spacing:12.773690pt;}
.ls1c{letter-spacing:12.783725pt;}
.ls16{letter-spacing:12.803795pt;}
.ls0{letter-spacing:15.050792pt;}
.ls1{letter-spacing:15.056125pt;}
.ls21{letter-spacing:15.510909pt;}
.ls1b{letter-spacing:15.523095pt;}
.ls15{letter-spacing:15.547466pt;}
.ls29{letter-spacing:15.952473pt;}
.ls27{letter-spacing:15.957806pt;}
.ls20{letter-spacing:17.791925pt;}
.ls1a{letter-spacing:17.805903pt;}
.ls14{letter-spacing:17.833858pt;}
.lsb{letter-spacing:18.994245pt;}
.ls1f{letter-spacing:19.160535pt;}
.ls19{letter-spacing:19.175587pt;}
.ls13{letter-spacing:19.205693pt;}
.ls2b{letter-spacing:19.356911pt;}
.ls10{letter-spacing:19.468911pt;}
.ls2d{letter-spacing:20.420127pt;}
.ls2c{letter-spacing:20.484639pt;}
.ls2f{letter-spacing:20.893213pt;}
.ls2e{letter-spacing:20.941597pt;}
.lsd{letter-spacing:26.082245pt;}
.ls23{letter-spacing:26.459786pt;}
.ls1d{letter-spacing:26.480573pt;}
.ls17{letter-spacing:26.522147pt;}
.ls31{letter-spacing:30.016479pt;}
.ls30{letter-spacing:46.539145pt;}
.ls24{letter-spacing:661.950853pt;}
.ls1e{letter-spacing:662.470889pt;}
.ls18{letter-spacing:663.510962pt;}
.ws68{word-spacing:-29.856000pt;}
.ws114{word-spacing:-27.151406pt;}
.ws54{word-spacing:-26.561620pt;}
.ws94{word-spacing:-22.575574pt;}
.ws80{word-spacing:-19.239989pt;}
.ws87{word-spacing:-19.209830pt;}
.ws8d{word-spacing:-19.194750pt;}
.ws81{word-spacing:-17.866324pt;}
.ws88{word-spacing:-17.838318pt;}
.ws8e{word-spacing:-17.824315pt;}
.wsaf{word-spacing:-14.553366pt;}
.wse8{word-spacing:-14.500232pt;}
.wsc8{word-spacing:-14.340831pt;}
.wsbe{word-spacing:-14.287697pt;}
.ws10e{word-spacing:-14.234563pt;}
.ws101{word-spacing:-14.022027pt;}
.ws2b{word-spacing:-13.968894pt;}
.wse4{word-spacing:-13.756358pt;}
.ws1b{word-spacing:-13.389734pt;}
.ws102{word-spacing:-13.225019pt;}
.wsa3{word-spacing:-13.171886pt;}
.ws104{word-spacing:-13.118752pt;}
.ws2f{word-spacing:-13.065618pt;}
.wsce{word-spacing:-12.906216pt;}
.ws105{word-spacing:-12.853082pt;}
.ws42{word-spacing:-12.640547pt;}
.wse3{word-spacing:-12.162342pt;}
.ws5f{word-spacing:-12.118803pt;}
.ws12{word-spacing:-12.114522pt;}
.ws3e{word-spacing:-12.002940pt;}
.ws10c{word-spacing:-11.843539pt;}
.wsd7{word-spacing:-11.821252pt;}
.wsa4{word-spacing:-11.737271pt;}
.ws2a{word-spacing:-11.631003pt;}
.ws11{word-spacing:-11.476915pt;}
.ws10d{word-spacing:-11.471602pt;}
.ws7b{word-spacing:-11.312200pt;}
.wsad{word-spacing:-11.259066pt;}
.wsae{word-spacing:-11.205932pt;}
.wseb{word-spacing:-11.099665pt;}
.ws76{word-spacing:-11.046531pt;}
.wsf4{word-spacing:-10.993397pt;}
.wsec{word-spacing:-10.887129pt;}
.ws1a{word-spacing:-10.786175pt;}
.ws44{word-spacing:-10.780862pt;}
.ws15{word-spacing:-10.733041pt;}
.wsca{word-spacing:-10.621460pt;}
.ws55{word-spacing:-10.568326pt;}
.ws113{word-spacing:-10.414238pt;}
.wsc0{word-spacing:-10.302657pt;}
.ws53{word-spacing:-10.249523pt;}
.wsaa{word-spacing:-10.196389pt;}
.ws7a{word-spacing:-10.143255pt;}
.ws43{word-spacing:-9.983854pt;}
.wsf2{word-spacing:-9.930720pt;}
.wsc6{word-spacing:-9.877586pt;}
.ws61{word-spacing:-9.824452pt;}
.wse5{word-spacing:-9.771318pt;}
.ws75{word-spacing:-9.718184pt;}
.wsde{word-spacing:-9.695892pt;}
.wsa2{word-spacing:-9.611916pt;}
.ws34{word-spacing:-9.558783pt;}
.ws10{word-spacing:-9.510962pt;}
.wsc1{word-spacing:-9.346247pt;}
.wsf{word-spacing:-9.298427pt;}
.ws38{word-spacing:-9.293113pt;}
.ws92{word-spacing:-9.270820pt;}
.wscd{word-spacing:-9.239979pt;}
.wscb{word-spacing:-9.186846pt;}
.ws52{word-spacing:-9.133712pt;}
.wsc{word-spacing:-9.085891pt;}
.ws7e{word-spacing:-9.080578pt;}
.ws65{word-spacing:-9.065167pt;}
.wsf6{word-spacing:-9.027444pt;}
.wsf9{word-spacing:-8.974310pt;}
.ws4{word-spacing:-8.868042pt;}
.ws31{word-spacing:-8.814908pt;}
.wsf8{word-spacing:-8.761775pt;}
.ws22{word-spacing:-8.708641pt;}
.wsb2{word-spacing:-8.655507pt;}
.wsb0{word-spacing:-8.442971pt;}
.wsc9{word-spacing:-8.283570pt;}
.ws27{word-spacing:-8.230436pt;}
.wsef{word-spacing:-8.177302pt;}
.wsa{word-spacing:-8.129482pt;}
.ws33{word-spacing:-8.124168pt;}
.ws70{word-spacing:-8.071034pt;}
.wsfe{word-spacing:-8.017900pt;}
.wsbb{word-spacing:-7.964767pt;}
.wsa0{word-spacing:-7.858499pt;}
.ws19{word-spacing:-7.810678pt;}
.wsb8{word-spacing:-7.805365pt;}
.wsba{word-spacing:-7.752231pt;}
.wsdf{word-spacing:-7.645963pt;}
.ws47{word-spacing:-7.592830pt;}
.ws73{word-spacing:-7.545052pt;}
.ws74{word-spacing:-7.539696pt;}
.ws60{word-spacing:-7.528025pt;}
.ws78{word-spacing:-7.486562pt;}
.ws85{word-spacing:-7.485518pt;}
.ws3d{word-spacing:-7.433428pt;}
.ws6b{word-spacing:-7.357996pt;}
.ws77{word-spacing:-7.327160pt;}
.wse1{word-spacing:-7.274026pt;}
.wsd8{word-spacing:-7.230475pt;}
.wscf{word-spacing:-7.220892pt;}
.wsfa{word-spacing:-7.114625pt;}
.ws5e{word-spacing:-7.102953pt;}
.ws35{word-spacing:-7.061491pt;}
.wsb5{word-spacing:-7.008357pt;}
.wsd{word-spacing:-6.960537pt;}
.ws37{word-spacing:-6.955223pt;}
.ws41{word-spacing:-6.902089pt;}
.ws57{word-spacing:-6.848955pt;}
.wsc3{word-spacing:-6.847910pt;}
.wsab{word-spacing:-6.795822pt;}
.ws66{word-spacing:-6.747456pt;}
.wsbc{word-spacing:-6.742688pt;}
.wsfc{word-spacing:-6.689554pt;}
.ws4e{word-spacing:-6.636420pt;}
.ws56{word-spacing:-6.583286pt;}
.ws67{word-spacing:-6.538464pt;}
.ws18{word-spacing:-6.535466pt;}
.ws9a{word-spacing:-6.530152pt;}
.ws2c{word-spacing:-6.423884pt;}
.wsc4{word-spacing:-6.380331pt;}
.ws9b{word-spacing:-6.370751pt;}
.wsb7{word-spacing:-6.317617pt;}
.wsb1{word-spacing:-6.264483pt;}
.wsf1{word-spacing:-6.105081pt;}
.ws69{word-spacing:-5.997766pt;}
.ws6e{word-spacing:-5.945680pt;}
.wsa7{word-spacing:-5.892546pt;}
.ws16{word-spacing:-5.844725pt;}
.wsa1{word-spacing:-5.839412pt;}
.wsbf{word-spacing:-5.786278pt;}
.ws63{word-spacing:-5.733144pt;}
.ws21{word-spacing:-5.520609pt;}
.wsb4{word-spacing:-5.467475pt;}
.ws30{word-spacing:-5.414341pt;}
.ws6c{word-spacing:-5.361207pt;}
.wsf7{word-spacing:-5.308073pt;}
.wsdd{word-spacing:-5.275144pt;}
.ws7c{word-spacing:-5.254939pt;}
.ws3a{word-spacing:-5.201806pt;}
.ws72{word-spacing:-5.148672pt;}
.wse0{word-spacing:-5.095538pt;}
.ws36{word-spacing:-4.936136pt;}
.ws12f{word-spacing:-4.883002pt;}
.ws64{word-spacing:-4.829868pt;}
.ws71{word-spacing:-4.723601pt;}
.wsb3{word-spacing:-4.670467pt;}
.ws17{word-spacing:-4.622646pt;}
.ws97{word-spacing:-4.564199pt;}
.wsfb{word-spacing:-4.511065pt;}
.ws3b{word-spacing:-4.457931pt;}
.ws4b{word-spacing:-4.404798pt;}
.wsc7{word-spacing:-4.351664pt;}
.wsa6{word-spacing:-4.298530pt;}
.ws9f{word-spacing:-4.245396pt;}
.wsee{word-spacing:-4.192262pt;}
.ws9d{word-spacing:-4.139128pt;}
.ws14{word-spacing:-4.091308pt;}
.wsb9{word-spacing:-4.085994pt;}
.wsd0{word-spacing:-4.032860pt;}
.wsac{word-spacing:-3.926593pt;}
.ws11c{word-spacing:-3.820325pt;}
.ws58{word-spacing:-3.660923pt;}
.wsc5{word-spacing:-3.554656pt;}
.ws98{word-spacing:-3.448388pt;}
.ws7d{word-spacing:-3.288986pt;}
.ws28{word-spacing:-3.235852pt;}
.ws39{word-spacing:-3.129585pt;}
.ws25{word-spacing:-2.863915pt;}
.ws13{word-spacing:-2.709827pt;}
.wsa5{word-spacing:-2.598246pt;}
.wsf0{word-spacing:-2.438844pt;}
.ws32{word-spacing:-2.332577pt;}
.wsfd{word-spacing:-2.279443pt;}
.wse7{word-spacing:-2.226309pt;}
.ws99{word-spacing:-2.066907pt;}
.ws3c{word-spacing:-2.013774pt;}
.ws139{word-spacing:-1.960640pt;}
.wse6{word-spacing:-1.907506pt;}
.wsea{word-spacing:-1.854372pt;}
.ws79{word-spacing:-1.801238pt;}
.ws6d{word-spacing:-1.694970pt;}
.ws4a{word-spacing:-1.588703pt;}
.wse2{word-spacing:-1.535569pt;}
.wse{word-spacing:-1.381481pt;}
.ws12b{word-spacing:-1.376167pt;}
.wsf3{word-spacing:-1.323033pt;}
.ws9{word-spacing:-1.275213pt;}
.ws62{word-spacing:-1.269899pt;}
.ws130{word-spacing:-1.163632pt;}
.ws9e{word-spacing:-1.110498pt;}
.wsb6{word-spacing:-1.004230pt;}
.wsf5{word-spacing:-0.897962pt;}
.wsa9{word-spacing:-0.844828pt;}
.wsbd{word-spacing:-0.738561pt;}
.ws11d{word-spacing:-0.685427pt;}
.wsa8{word-spacing:-0.419758pt;}
.ws10a{word-spacing:-0.207222pt;}
.ws103{word-spacing:-0.154088pt;}
.ws5b{word-spacing:-0.128794pt;}
.ws23{word-spacing:-0.100954pt;}
.ws1c{word-spacing:-0.076513pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws93{word-spacing:-0.042507pt;}
.ws5a{word-spacing:-0.041435pt;}
.ws59{word-spacing:-0.038884pt;}
.ws51{word-spacing:-0.037194pt;}
.ws95{word-spacing:-0.031881pt;}
.ws5c{word-spacing:-0.027748pt;}
.ws40{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.005313pt;}
.ws49{word-spacing:0.430384pt;}
.ws126{word-spacing:0.696054pt;}
.wsed{word-spacing:1.014857pt;}
.ws6a{word-spacing:1.058429pt;}
.ws4d{word-spacing:1.067991pt;}
.ws106{word-spacing:1.174258pt;}
.ws96{word-spacing:1.758731pt;}
.ws8{word-spacing:1.859685pt;}
.ws112{word-spacing:2.178489pt;}
.wse9{word-spacing:2.183802pt;}
.ws111{word-spacing:2.343204pt;}
.wsb{word-spacing:2.444158pt;}
.ws10f{word-spacing:2.502605pt;}
.ws24{word-spacing:2.662007pt;}
.ws48{word-spacing:2.821408pt;}
.ws125{word-spacing:2.869229pt;}
.ws29{word-spacing:2.980810pt;}
.ws6{word-spacing:3.028630pt;}
.ws46{word-spacing:3.033944pt;}
.ws9c{word-spacing:3.087078pt;}
.ws26{word-spacing:3.193345pt;}
.ws6f{word-spacing:3.246479pt;}
.ws4f{word-spacing:3.352747pt;}
.ws13a{word-spacing:3.884086pt;}
.wsff{word-spacing:4.043487pt;}
.ws20{word-spacing:5.159298pt;}
.ws115{word-spacing:5.531236pt;}
.ws122{word-spacing:5.850039pt;}
.ws123{word-spacing:6.115708pt;}
.ws100{word-spacing:6.381377pt;}
.ws91{word-spacing:7.721239pt;}
.ws8b{word-spacing:7.727305pt;}
.ws84{word-spacing:7.739437pt;}
.ws138{word-spacing:7.922260pt;}
.ws12c{word-spacing:9.569409pt;}
.ws137{word-spacing:9.941346pt;}
.wsd5{word-spacing:10.173599pt;}
.wsd6{word-spacing:10.179920pt;}
.wsd2{word-spacing:10.205740pt;}
.wsd3{word-spacing:10.212080pt;}
.wsdc{word-spacing:10.415764pt;}
.wsda{word-spacing:10.439885pt;}
.ws10b{word-spacing:12.013567pt;}
.ws50{word-spacing:12.279237pt;}
.ws110{word-spacing:12.810575pt;}
.ws2e{word-spacing:13.448182pt;}
.ws12e{word-spacing:13.554449pt;}
.ws124{word-spacing:13.660717pt;}
.ws7{word-spacing:14.399278pt;}
.ws121{word-spacing:14.829662pt;}
.ws109{word-spacing:14.935930pt;}
.ws0{word-spacing:15.005042pt;}
.ws1{word-spacing:15.009864pt;}
.ws136{word-spacing:15.361001pt;}
.ws5d{word-spacing:17.300430pt;}
.ws2d{word-spacing:18.283364pt;}
.ws11e{word-spacing:18.602167pt;}
.ws108{word-spacing:18.708434pt;}
.ws132{word-spacing:19.292907pt;}
.ws11f{word-spacing:19.393861pt;}
.ws12d{word-spacing:19.478957pt;}
.ws1d{word-spacing:20.615940pt;}
.ws120{word-spacing:21.099458pt;}
.ws117{word-spacing:21.790199pt;}
.ws133{word-spacing:22.002734pt;}
.ws3{word-spacing:22.252612pt;}
.wsc2{word-spacing:22.793838pt;}
.ws107{word-spacing:24.021821pt;}
.ws90{word-spacing:24.600758pt;}
.ws8a{word-spacing:24.620085pt;}
.ws83{word-spacing:24.658738pt;}
.ws12a{word-spacing:25.084498pt;}
.ws129{word-spacing:26.572247pt;}
.ws8f{word-spacing:27.794180pt;}
.ws89{word-spacing:27.816016pt;}
.ws82{word-spacing:27.859687pt;}
.ws45{word-spacing:28.003782pt;}
.ws128{word-spacing:28.538200pt;}
.ws5{word-spacing:30.106995pt;}
.ws116{word-spacing:30.929224pt;}
.ws135{word-spacing:31.354295pt;}
.ws118{word-spacing:34.648594pt;}
.ws2{word-spacing:35.532586pt;}
.wscc{word-spacing:41.182921pt;}
.ws131{word-spacing:52.655205pt;}
.ws127{word-spacing:63.287749pt;}
.ws8c{word-spacing:64.746640pt;}
.ws86{word-spacing:64.797506pt;}
.ws7f{word-spacing:64.899237pt;}
.ws134{word-spacing:66.565154pt;}
.wsd4{word-spacing:82.130237pt;}
.wsd1{word-spacing:82.389705pt;}
.wsdb{word-spacing:84.033002pt;}
.wsd9{word-spacing:84.227603pt;}
.ws11a{word-spacing:85.014187pt;}
.ws119{word-spacing:92.368162pt;}
.ws1f{word-spacing:121.426237pt;}
.ws11b{word-spacing:136.612485pt;}
.ws3f{word-spacing:1064.940104pt;}
._3b{margin-left:-20.712683pt;}
._25{margin-left:-19.205693pt;}
._28{margin-left:-17.983309pt;}
._2{margin-left:-11.385118pt;}
._4{margin-left:-8.538838pt;}
._5{margin-left:-6.717881pt;}
._9{margin-left:-5.171941pt;}
._7{margin-left:-3.860813pt;}
._3{margin-left:-2.846279pt;}
._1{margin-left:-1.275216pt;}
._8{width:1.328350pt;}
._f{width:2.793146pt;}
._2c{width:6.517980pt;}
._2d{width:7.622851pt;}
._2a{width:9.954365pt;}
._27{width:11.431960pt;}
._2e{width:12.643233pt;}
._16{width:13.602270pt;}
._18{width:14.558676pt;}
._2f{width:15.940944pt;}
._e{width:16.964174pt;}
._20{width:17.873684pt;}
._2b{width:19.381452pt;}
._26{width:20.577528pt;}
._11{width:21.660659pt;}
._15{width:22.688161pt;}
._a{width:23.644571pt;}
._d{width:24.539367pt;}
._10{width:25.481307pt;}
._19{width:27.063094pt;}
._29{width:28.018453pt;}
._46{width:29.383031pt;}
._17{width:30.286304pt;}
._31{width:31.295844pt;}
._3a{width:32.190291pt;}
._1f{width:33.952541pt;}
._12{width:35.777051pt;}
._1b{width:36.928037pt;}
._3f{width:38.380937pt;}
._3e{width:39.910096pt;}
._1c{width:40.806810pt;}
._14{width:42.312514pt;}
._41{width:43.612609pt;}
._c{width:44.844983pt;}
._1e{width:46.013935pt;}
._45{width:47.129743pt;}
._30{width:48.936291pt;}
._13{width:50.601397pt;}
._43{width:52.221836pt;}
._1d{width:53.452670pt;}
._b{width:56.056229pt;}
._42{width:57.455669pt;}
._35{width:63.765020pt;}
._36{width:66.288852pt;}
._34{width:67.524627pt;}
._48{width:69.835860pt;}
._37{width:71.243519pt;}
._6{width:74.710409pt;}
._24{width:95.571186pt;}
._40{width:106.276045pt;}
._47{width:107.365589pt;}
._22{width:108.541513pt;}
._39{width:113.640973pt;}
._23{width:114.776879pt;}
._3d{width:116.176004pt;}
._1a{width:121.502750pt;}
._38{width:133.637882pt;}
._3c{width:136.618992pt;}
._44{width:200.390828pt;}
._33{width:250.639662pt;}
._32{width:709.953296pt;}
._21{width:1065.095568pt;}
._0{width:1362.738325pt;}
.fs23{font-size:19.160535pt;}
.fs1b{font-size:19.175587pt;}
.fs13{font-size:19.205693pt;}
.fs21{font-size:23.266364pt;}
.fs19{font-size:23.284642pt;}
.fs11{font-size:23.321199pt;}
.fs22{font-size:24.178770pt;}
.fs1a{font-size:24.197765pt;}
.fs12{font-size:24.235755pt;}
.fs9{font-size:27.747622pt;}
.fs20{font-size:28.284599pt;}
.fs18{font-size:28.306820pt;}
.fs10{font-size:28.351261pt;}
.fsb{font-size:29.856000pt;}
.fs2c{font-size:30.143997pt;}
.fs28{font-size:30.239229pt;}
.fs34{font-size:30.842363pt;}
.fs30{font-size:30.913786pt;}
.fs24{font-size:31.880533pt;}
.fs1f{font-size:32.390428pt;}
.fs17{font-size:32.415874pt;}
.fsf{font-size:32.466767pt;}
.fs1c{font-size:34.215240pt;}
.fs14{font-size:34.242120pt;}
.fsc{font-size:34.295880pt;}
.fs29{font-size:36.464513pt;}
.fs25{font-size:36.579712pt;}
.fs3{font-size:37.193600pt;}
.fs31{font-size:37.309310pt;}
.fs2d{font-size:37.395709pt;}
.fs6{font-size:38.884000pt;}
.fsa{font-size:40.111360pt;}
.fs7{font-size:41.372576pt;}
.fs8{font-size:41.434790pt;}
.fs1d{font-size:41.514492pt;}
.fs1e{font-size:41.514677pt;}
.fs15{font-size:41.547106pt;}
.fs16{font-size:41.547292pt;}
.fsd{font-size:41.612335pt;}
.fse{font-size:41.612521pt;}
.fs0{font-size:42.507200pt;}
.fs2b{font-size:44.243609pt;}
.fs2a{font-size:44.243806pt;}
.fs27{font-size:44.383384pt;}
.fs26{font-size:44.383582pt;}
.fs33{font-size:45.268629pt;}
.fs32{font-size:45.268831pt;}
.fs2f{font-size:45.373461pt;}
.fs2e{font-size:45.373663pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:0.231761pt;}
.ybc{bottom:0.709596pt;}
.ya7{bottom:1.188593pt;}
.y91{bottom:1.669603pt;}
.y131{bottom:2.211660pt;}
.y145{bottom:2.264102pt;}
.y158{bottom:2.888623pt;}
.y168{bottom:2.920862pt;}
.y5c{bottom:8.586883pt;}
.y113{bottom:8.678150pt;}
.yc7{bottom:9.263406pt;}
.y5f{bottom:9.675635pt;}
.yb2{bottom:9.749124pt;}
.y9c{bottom:10.243573pt;}
.y123{bottom:16.965477pt;}
.y137{bottom:16.971455pt;}
.y15e{bottom:17.222764pt;}
.y14e{bottom:17.971559pt;}
.y6b{bottom:18.172974pt;}
.yb9{bottom:18.729623pt;}
.y66{bottom:18.894122pt;}
.y106{bottom:19.064927pt;}
.ycd{bottom:19.222777pt;}
.ya4{bottom:20.021760pt;}
.y8e{bottom:20.532337pt;}
.y138{bottom:28.397002pt;}
.y124{bottom:28.427120pt;}
.y10a{bottom:28.881001pt;}
.y15f{bottom:28.913015pt;}
.ybd{bottom:29.336347pt;}
.y14f{bottom:29.688881pt;}
.ya8{bottom:29.837834pt;}
.y92{bottom:30.363823pt;}
.y6d{bottom:37.909034pt;}
.y139{bottom:47.115452pt;}
.y125{bottom:47.204706pt;}
.y3f{bottom:51.638667pt;}
.y10b{bottom:57.644383pt;}
.ybe{bottom:58.077149pt;}
.ya9{bottom:58.601215pt;}
.y93{bottom:59.172362pt;}
.y160{bottom:60.252835pt;}
.y150{bottom:61.101277pt;}
.yb8{bottom:64.578045pt;}
.ycc{bottom:65.107218pt;}
.y13a{bottom:65.712354pt;}
.y126{bottom:65.860359pt;}
.y105{bottom:67.118036pt;}
.ya3{bottom:68.074869pt;}
.y8d{bottom:68.660889pt;}
.y68{bottom:82.587619pt;}
.y5b{bottom:82.602577pt;}
.y13b{bottom:84.430803pt;}
.y127{bottom:84.637945pt;}
.y5e{bottom:85.201325pt;}
.y10c{bottom:86.293623pt;}
.ybf{bottom:86.703900pt;}
.yaa{bottom:87.250456pt;}
.y94{bottom:87.866582pt;}
.y108{bottom:88.690572pt;}
.ybb{bottom:89.098967pt;}
.ya6{bottom:89.647405pt;}
.y90{bottom:90.267294pt;}
.y161{bottom:91.717019pt;}
.y151{bottom:92.638325pt;}
.y5d{bottom:94.377949pt;}
.y67{bottom:94.621027pt;}
.y6c{bottom:95.300974pt;}
.y144{bottom:95.977899pt;}
.y130{bottom:96.221520pt;}
.y13c{bottom:103.149253pt;}
.y128{bottom:103.415530pt;}
.y29{bottom:107.716000pt;}
.y3e{bottom:107.764000pt;}
.yb7{bottom:110.426467pt;}
.ycb{bottom:110.991660pt;}
.y64{bottom:111.502667pt;}
.ye7{bottom:112.154667pt;}
.y10d{bottom:114.942864pt;}
.y104{bottom:115.171145pt;}
.yc0{bottom:115.330651pt;}
.yab{bottom:115.899697pt;}
.ya2{bottom:116.127978pt;}
.y95{bottom:116.560802pt;}
.y8c{bottom:116.789441pt;}
.y167{bottom:118.828451pt;}
.y157{bottom:119.812541pt;}
.y13d{bottom:121.746155pt;}
.y129{bottom:122.071184pt;}
.y162{bottom:123.056839pt;}
.y28{bottom:123.656000pt;}
.yda{bottom:123.657333pt;}
.y3d{bottom:123.704000pt;}
.y152{bottom:124.050721pt;}
.y63{bottom:124.121333pt;}
.y14c{bottom:125.578667pt;}
.ye6{bottom:128.096000pt;}
.yb1{bottom:135.189425pt;}
.y9b{bottom:135.880814pt;}
.yc6{bottom:136.658151pt;}
.y62{bottom:136.741333pt;}
.yce{bottom:137.243952pt;}
.y14b{bottom:138.197333pt;}
.y196{bottom:139.596000pt;}
.y27{bottom:139.597333pt;}
.y3c{bottom:139.644000pt;}
.y13e{bottom:140.464605pt;}
.y12a{bottom:140.848769pt;}
.y10e{bottom:143.592105pt;}
.yc1{bottom:143.957403pt;}
.ye5{bottom:144.036000pt;}
.yac{bottom:144.548938pt;}
.y96{bottom:145.255022pt;}
.y14a{bottom:150.817333pt;}
.y163{bottom:154.521024pt;}
.y88{bottom:155.537333pt;}
.y3b{bottom:155.584000pt;}
.y153{bottom:155.587770pt;}
.yb6{bottom:156.274889pt;}
.yca{bottom:156.876101pt;}
.y13f{bottom:159.183054pt;}
.y12b{bottom:159.626355pt;}
.ye4{bottom:159.976000pt;}
.y1e3{bottom:159.984000pt;}
.y1bb{bottom:160.206667pt;}
.y103{bottom:163.110113pt;}
.ya1{bottom:164.066946pt;}
.y8b{bottom:164.803673pt;}
.y61{bottom:168.156000pt;}
.y87{bottom:171.477333pt;}
.y3a{bottom:171.524000pt;}
.y10f{bottom:172.355486pt;}
.yc2{bottom:172.698205pt;}
.yad{bottom:173.312319pt;}
.y97{bottom:174.063561pt;}
.ye3{bottom:175.916000pt;}
.y1e2{bottom:175.924000pt;}
.y1ba{bottom:176.146667pt;}
.y26{bottom:176.658667pt;}
.y140{bottom:177.779956pt;}
.y12c{bottom:178.282008pt;}
.y149{bottom:182.232000pt;}
.y164{bottom:185.860844pt;}
.y154{bottom:187.000165pt;}
.y86{bottom:187.417333pt;}
.y39{bottom:187.464000pt;}
.ye2{bottom:191.856000pt;}
.y1e1{bottom:191.864000pt;}
.y1b9{bottom:192.086667pt;}
.y114{bottom:193.471460pt;}
.yc8{bottom:193.797603pt;}
.y112{bottom:193.813881pt;}
.yc5{bottom:194.139755pt;}
.yb3{bottom:194.428293pt;}
.yb0{bottom:194.770714pt;}
.y9d{bottom:195.212687pt;}
.y9a{bottom:195.555646pt;}
.y141{bottom:196.498406pt;}
.y12d{bottom:197.059594pt;}
.y136{bottom:198.172000pt;}
.y134{bottom:200.595632pt;}
.y148{bottom:200.752599pt;}
.y110{bottom:201.004727pt;}
.yc3{bottom:201.324956pt;}
.yae{bottom:201.961559pt;}
.y98{bottom:202.757781pt;}
.y85{bottom:203.357333pt;}
.y38{bottom:203.405333pt;}
.y16b{bottom:206.132236pt;}
.ye1{bottom:207.797333pt;}
.y1e0{bottom:207.804000pt;}
.y1b8{bottom:208.026667pt;}
.y15b{bottom:208.440372pt;}
.y111{bottom:211.962205pt;}
.yc4{bottom:212.273833pt;}
.y102{bottom:212.875328pt;}
.yaf{bottom:212.919038pt;}
.yb5{bottom:213.186239pt;}
.y99{bottom:213.732463pt;}
.ya0{bottom:213.832161pt;}
.y133{bottom:214.130126pt;}
.y147{bottom:214.244468pt;}
.y8a{bottom:214.647019pt;}
.y142{bottom:215.216855pt;}
.y12e{bottom:215.837179pt;}
.y165{bottom:217.325029pt;}
.y155{bottom:218.537214pt;}
.y25{bottom:218.858667pt;}
.y84{bottom:219.297333pt;}
.y170{bottom:219.298667pt;}
.y37{bottom:219.345333pt;}
.y16a{bottom:219.936680pt;}
.y15a{bottom:222.276785pt;}
.y107{bottom:222.691403pt;}
.yba{bottom:222.994608pt;}
.ya5{bottom:223.648236pt;}
.ye0{bottom:223.737333pt;}
.y1df{bottom:223.744000pt;}
.y8f{bottom:224.478505pt;}
.y132{bottom:227.664619pt;}
.y146{bottom:227.736338pt;}
.y169{bottom:233.741125pt;}
.y143{bottom:233.813757pt;}
.y12f{bottom:234.492832pt;}
.y1b7{bottom:234.594667pt;}
.y24{bottom:234.798667pt;}
.y195{bottom:235.237333pt;}
.y83{bottom:235.238667pt;}
.y159{bottom:236.113197pt;}
.ydf{bottom:239.677333pt;}
.y1de{bottom:239.685333pt;}
.yd9{bottom:242.000000pt;}
.y36{bottom:245.604000pt;}
.y117{bottom:246.090667pt;}
.y166{bottom:248.664849pt;}
.y156{bottom:249.949610pt;}
.y1b6{bottom:250.534667pt;}
.y82{bottom:251.178667pt;}
.yde{bottom:255.617333pt;}
.y1dd{bottom:255.625333pt;}
.y116{bottom:258.709333pt;}
.y35{bottom:261.544000pt;}
.y1b5{bottom:266.474667pt;}
.y81{bottom:267.118667pt;}
.y115{bottom:271.329333pt;}
.ydd{bottom:271.557333pt;}
.y1dc{bottom:271.565333pt;}
.y23{bottom:271.860000pt;}
.y34{bottom:277.484000pt;}
.y1b4{bottom:282.414667pt;}
.y80{bottom:283.058667pt;}
.ydc{bottom:287.497333pt;}
.y1db{bottom:287.505333pt;}
.y33{bottom:293.424000pt;}
.y101{bottom:293.446667pt;}
.y1b3{bottom:298.354667pt;}
.y7f{bottom:298.998667pt;}
.yd8{bottom:303.438667pt;}
.y32{bottom:309.364000pt;}
.y22{bottom:314.060000pt;}
.y1b2{bottom:314.294667pt;}
.y7e{bottom:314.940000pt;}
.yd7{bottom:319.378667pt;}
.y1da{bottom:319.385333pt;}
.y21{bottom:330.000000pt;}
.y1b1{bottom:330.236000pt;}
.y7d{bottom:330.880000pt;}
.yd6{bottom:335.318667pt;}
.y1d9{bottom:335.326667pt;}
.y31{bottom:335.622667pt;}
.y194{bottom:337.366667pt;}
.y20{bottom:345.941333pt;}
.y1b0{bottom:346.176000pt;}
.y7c{bottom:346.820000pt;}
.y60{bottom:349.882667pt;}
.yd5{bottom:351.258667pt;}
.y1d8{bottom:351.266667pt;}
.y30{bottom:351.562667pt;}
.y1f{bottom:361.881333pt;}
.y1af{bottom:362.116000pt;}
.y7b{bottom:362.760000pt;}
.y5a{bottom:365.822667pt;}
.yd4{bottom:367.198667pt;}
.y1d7{bottom:367.206667pt;}
.y2f{bottom:367.502667pt;}
.y1e{bottom:377.821333pt;}
.y7a{bottom:378.700000pt;}
.ydb{bottom:383.138667pt;}
.yd3{bottom:383.140000pt;}
.y1d6{bottom:383.146667pt;}
.y2e{bottom:383.442667pt;}
.y1d{bottom:393.761333pt;}
.y79{bottom:394.640000pt;}
.y193{bottom:397.434667pt;}
.y1ae{bottom:398.766667pt;}
.yd2{bottom:399.080000pt;}
.y1d5{bottom:399.086667pt;}
.y2d{bottom:399.384000pt;}
.y16f{bottom:402.125333pt;}
.y1c{bottom:409.701333pt;}
.y78{bottom:410.581333pt;}
.y192{bottom:413.376000pt;}
.y16e{bottom:414.744000pt;}
.yd1{bottom:415.020000pt;}
.y2c{bottom:415.324000pt;}
.y1b{bottom:425.642667pt;}
.y77{bottom:426.521333pt;}
.y16d{bottom:427.364000pt;}
.y191{bottom:429.316000pt;}
.y1d4{bottom:430.968000pt;}
.y1a{bottom:441.582667pt;}
.y76{bottom:442.461333pt;}
.y190{bottom:445.256000pt;}
.y1d3{bottom:446.908000pt;}
.y1ad{bottom:450.248000pt;}
.y19{bottom:457.522667pt;}
.y75{bottom:458.401333pt;}
.yd0{bottom:458.656000pt;}
.y16c{bottom:458.778667pt;}
.y1d2{bottom:462.848000pt;}
.y135{bottom:463.238667pt;}
.y1ac{bottom:466.188000pt;}
.y18f{bottom:468.754667pt;}
.ycf{bottom:471.276000pt;}
.y18{bottom:473.462667pt;}
.y74{bottom:474.341333pt;}
.y15d{bottom:474.718563pt;}
.y1d1{bottom:478.788000pt;}
.y122{bottom:479.178819pt;}
.y1ab{bottom:482.129333pt;}
.y18e{bottom:484.694667pt;}
.y17{bottom:489.402667pt;}
.y73{bottom:490.281333pt;}
.y1d0{bottom:494.728000pt;}
.y1aa{bottom:498.069333pt;}
.y18d{bottom:500.636000pt;}
.yc9{bottom:502.744000pt;}
.y16{bottom:505.342667pt;}
.y1cf{bottom:510.669333pt;}
.y1a9{bottom:514.009333pt;}
.y18c{bottom:516.576000pt;}
.yb4{bottom:518.684048pt;}
.y2b{bottom:521.282667pt;}
.y15{bottom:521.284000pt;}
.y1ce{bottom:526.609333pt;}
.y1a8{bottom:529.949333pt;}
.y72{bottom:531.022667pt;}
.y18b{bottom:532.516000pt;}
.y14{bottom:537.224000pt;}
.y100{bottom:539.253333pt;}
.y1cd{bottom:542.549333pt;}
.y71{bottom:543.642667pt;}
.y18a{bottom:548.456000pt;}
.y59{bottom:552.270667pt;}
.y13{bottom:553.164000pt;}
.yff{bottom:555.193333pt;}
.y70{bottom:556.261333pt;}
.y189{bottom:564.396000pt;}
.y1a7{bottom:566.600000pt;}
.y58{bottom:568.210667pt;}
.y6f{bottom:568.881333pt;}
.y12{bottom:569.104000pt;}
.yfe{bottom:571.133333pt;}
.y1cc{bottom:579.200000pt;}
.y188{bottom:580.337333pt;}
.y57{bottom:584.150667pt;}
.y11{bottom:585.044000pt;}
.yfd{bottom:587.073333pt;}
.y56{bottom:600.090667pt;}
.y6e{bottom:600.296000pt;}
.y10{bottom:600.984000pt;}
.yfc{bottom:603.013333pt;}
.y187{bottom:603.836000pt;}
.y55{bottom:616.032000pt;}
.y6a{bottom:616.236000pt;}
.y2a{bottom:616.924000pt;}
.yf{bottom:616.925333pt;}
.y1a6{bottom:618.081333pt;}
.yfb{bottom:618.954667pt;}
.y186{bottom:619.776000pt;}
.y54{bottom:631.972000pt;}
.ye{bottom:632.865333pt;}
.y1a5{bottom:634.022667pt;}
.yfa{bottom:634.894667pt;}
.y185{bottom:635.716000pt;}
.y1cb{bottom:642.453333pt;}
.y53{bottom:647.912000pt;}
.yd{bottom:648.805333pt;}
.y1a4{bottom:649.962667pt;}
.yf9{bottom:650.834667pt;}
.y184{bottom:651.657333pt;}
.y1ca{bottom:658.393333pt;}
.y52{bottom:663.852000pt;}
.yc{bottom:664.745333pt;}
.y1a3{bottom:665.902667pt;}
.y183{bottom:667.597333pt;}
.yf8{bottom:674.333333pt;}
.y51{bottom:679.792000pt;}
.y1a2{bottom:681.842667pt;}
.y182{bottom:683.537333pt;}
.y1c9{bottom:690.273333pt;}
.yf7{bottom:690.274667pt;}
.y50{bottom:695.732000pt;}
.y1a1{bottom:697.782667pt;}
.y181{bottom:699.477333pt;}
.yf6{bottom:706.214667pt;}
.y4f{bottom:711.673333pt;}
.y1a0{bottom:713.722667pt;}
.yb{bottom:713.814667pt;}
.y180{bottom:715.417333pt;}
.yf5{bottom:722.154667pt;}
.y4e{bottom:727.613333pt;}
.y19f{bottom:729.664000pt;}
.ya{bottom:729.756000pt;}
.y17f{bottom:731.357333pt;}
.yf4{bottom:738.094667pt;}
.y69{bottom:741.529333pt;}
.y4d{bottom:743.553333pt;}
.y121{bottom:745.289333pt;}
.y19e{bottom:745.604000pt;}
.y9{bottom:745.696000pt;}
.y17e{bottom:747.298667pt;}
.y15c{bottom:747.668000pt;}
.yf3{bottom:754.034667pt;}
.y65{bottom:757.469333pt;}
.y4c{bottom:759.493333pt;}
.y120{bottom:761.229333pt;}
.y19d{bottom:761.544000pt;}
.y17d{bottom:763.238667pt;}
.y14d{bottom:763.607948pt;}
.y1c8{bottom:764.661333pt;}
.y9e{bottom:768.225333pt;}
.yf2{bottom:769.974667pt;}
.y4b{bottom:775.433333pt;}
.y11f{bottom:777.169333pt;}
.y19c{bottom:777.484000pt;}
.y8{bottom:777.576000pt;}
.y17c{bottom:779.178667pt;}
.y1c7{bottom:780.601333pt;}
.y9f{bottom:784.165381pt;}
.y89{bottom:784.165429pt;}
.yf1{bottom:785.916000pt;}
.y4a{bottom:791.374667pt;}
.y11e{bottom:793.110667pt;}
.y19b{bottom:793.424000pt;}
.y1c6{bottom:796.542667pt;}
.yf0{bottom:801.856000pt;}
.y17b{bottom:802.677333pt;}
.y49{bottom:807.314667pt;}
.y11d{bottom:809.050667pt;}
.y19a{bottom:809.365333pt;}
.y7{bottom:809.456000pt;}
.y1c5{bottom:812.482667pt;}
.yef{bottom:817.796000pt;}
.y17a{bottom:818.618667pt;}
.y48{bottom:823.254667pt;}
.y11c{bottom:824.990667pt;}
.y199{bottom:825.305333pt;}
.y1c4{bottom:828.422667pt;}
.yee{bottom:833.736000pt;}
.y179{bottom:834.558667pt;}
.y47{bottom:839.194667pt;}
.y198{bottom:841.245333pt;}
.y6{bottom:841.337333pt;}
.y1c3{bottom:844.362667pt;}
.yed{bottom:849.676000pt;}
.y178{bottom:850.498667pt;}
.y46{bottom:855.134667pt;}
.y5{bottom:862.097333pt;}
.y11b{bottom:864.301333pt;}
.yec{bottom:865.616000pt;}
.y177{bottom:866.438667pt;}
.y1c2{bottom:870.929333pt;}
.y11a{bottom:877.452000pt;}
.y197{bottom:877.896000pt;}
.yeb{bottom:881.557333pt;}
.y176{bottom:882.378667pt;}
.y1c1{bottom:886.870667pt;}
.y45{bottom:892.126667pt;}
.yea{bottom:897.497333pt;}
.y175{bottom:898.318667pt;}
.y4{bottom:899.674667pt;}
.y1c0{bottom:902.810667pt;}
.y119{bottom:903.885333pt;}
.ye9{bottom:913.437333pt;}
.y174{bottom:914.260000pt;}
.y1bf{bottom:918.750667pt;}
.ye8{bottom:929.377333pt;}
.y1be{bottom:934.690667pt;}
.y173{bottom:937.758667pt;}
.y44{bottom:945.317333pt;}
.y1bd{bottom:950.630667pt;}
.y172{bottom:953.698667pt;}
.y3{bottom:958.296000pt;}
.y118{bottom:961.257333pt;}
.y43{bottom:961.258667pt;}
.y1bc{bottom:966.570667pt;}
.y171{bottom:969.638667pt;}
.y42{bottom:977.198667pt;}
.y2{bottom:987.520000pt;}
.y41{bottom:993.138667pt;}
.y40{bottom:1009.078667pt;}
.y1{bottom:1057.200000pt;}
.h5{height:25.068486pt;}
.hc{height:29.523740pt;}
.h13{height:29.695641pt;}
.hb{height:30.131303pt;}
.hf{height:31.922907pt;}
.hd{height:32.059706pt;}
.he{height:32.107916pt;}
.h2{height:32.815558pt;}
.h27{height:33.292256pt;}
.h20{height:33.318410pt;}
.h19{height:33.370720pt;}
.h29{height:33.836310pt;}
.h22{height:33.862892pt;}
.h1b{height:33.916056pt;}
.h24{height:35.167876pt;}
.h1d{height:35.195504pt;}
.h16{height:35.250761pt;}
.h2b{height:36.197888pt;}
.h2d{height:36.203221pt;}
.h34{height:37.479773pt;}
.h8{height:37.512510pt;}
.h2f{height:37.598180pt;}
.h3e{height:38.348091pt;}
.h39{height:38.436896pt;}
.h11{height:39.895918pt;}
.h6{height:39.903534pt;}
.h25{height:42.670356pt;}
.h26{height:42.670546pt;}
.h1e{height:42.703878pt;}
.h1f{height:42.704069pt;}
.h17{height:42.770923pt;}
.h18{height:42.771114pt;}
.h9{height:44.348486pt;}
.h14{height:44.353820pt;}
.h37{height:45.475458pt;}
.h35{height:45.475661pt;}
.h4{height:45.589163pt;}
.h32{height:45.619125pt;}
.h30{height:45.619329pt;}
.h28{height:45.951629pt;}
.h21{height:45.987729pt;}
.h1a{height:46.059930pt;}
.h41{height:46.529017pt;}
.h3f{height:46.529225pt;}
.h3c{height:46.636768pt;}
.h3a{height:46.636976pt;}
.h36{height:48.972439pt;}
.h31{height:49.127153pt;}
.h40{height:50.107015pt;}
.h3b{height:50.223051pt;}
.h7{height:53.712173pt;}
.h3{height:63.077226pt;}
.h12{height:108.023984pt;}
.ha{height:167.130561pt;}
.h10{height:169.228157pt;}
.h2c{height:230.360389pt;}
.h23{height:230.896607pt;}
.h1c{height:231.556442pt;}
.h15{height:232.159532pt;}
.h2a{height:232.274103pt;}
.h33{height:247.800526pt;}
.h2e{height:249.451494pt;}
.h3d{height:255.680660pt;}
.h38{height:258.753815pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:207.876455pt;}
.w2{width:230.547124pt;}
.wb{width:302.351807pt;}
.w9{width:302.356002pt;}
.w5{width:302.358490pt;}
.w4{width:302.359798pt;}
.wc{width:302.360521pt;}
.w6{width:302.362974pt;}
.w8{width:302.363022pt;}
.w7{width:302.364653pt;}
.wa{width:302.364744pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:2.160654pt;}
.x13{left:3.929876pt;}
.x20{left:6.919910pt;}
.x22{left:8.291751pt;}
.x31{left:9.373939pt;}
.x36{left:10.391406pt;}
.x1f{left:11.721355pt;}
.x2d{left:13.337211pt;}
.x33{left:14.318717pt;}
.x2e{left:21.018985pt;}
.x11{left:22.568274pt;}
.x32{left:24.166298pt;}
.x2c{left:30.651686pt;}
.x16{left:31.917946pt;}
.x24{left:35.042657pt;}
.x10{left:44.712712pt;}
.x1e{left:52.876595pt;}
.x30{left:69.182488pt;}
.x17{left:72.390308pt;}
.x1{left:75.590667pt;}
.x3{left:80.961333pt;}
.xb{left:82.602667pt;}
.x1a{left:84.995678pt;}
.xe{left:88.874667pt;}
.x2{left:90.244000pt;}
.x1d{left:92.274476pt;}
.x34{left:93.473322pt;}
.x38{left:102.890667pt;}
.x2f{left:104.664967pt;}
.x4{left:108.769333pt;}
.x6{left:114.478667pt;}
.xf{left:117.624000pt;}
.x21{left:123.297783pt;}
.x5{left:157.454667pt;}
.x25{left:207.208745pt;}
.x8{left:214.873333pt;}
.x2a{left:218.537333pt;}
.x26{left:221.045333pt;}
.x14{left:223.496000pt;}
.xa{left:235.144000pt;}
.x23{left:246.077583pt;}
.x9{left:255.526667pt;}
.x35{left:259.884973pt;}
.x37{left:261.111087pt;}
.x29{left:271.399559pt;}
.x1b{left:272.292318pt;}
.x7{left:307.301333pt;}
.x27{left:399.063810pt;}
.xc{left:403.492000pt;}
.x19{left:409.620000pt;}
.xd{left:416.776000pt;}
.x39{left:430.792000pt;}
.x1c{left:445.642667pt;}
.x15{left:456.864669pt;}
.x2b{left:463.074667pt;}
.x28{left:524.698667pt;}
.x18{left:551.398667pt;}
}




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