
    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_86ac402cb3b12fb8e4407cee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_d4a4aa6bbe9c438c3256d0b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914000;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_78b90f1532f9b406ac6f8c26.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911000;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_4093c76151c75c0c7561ec99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_1af8671dfd0d9e5ff4a24afc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715000;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_5e5c375e34fbe3d94ebe190b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8629077ca4747107a1e3417e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995000;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_a704bdb5e371644006560ef0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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_37564dd59473a9732ac6dee9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.430000;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_07d8eaed3944131b7a0d8ec4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_83e598ec482f260b751b7340.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dd4ae34e06a958672066305a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.664000;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_e92be045dd47b4f761f52bb5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_761e9688b4b27070604a7c9d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3e0d7dea1d755e53b812c29e.woff2')format("woff");}.fff{font-family:fff;line-height:2.999000;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_6e9bfd19dd412dae6c4daaac.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_74304457c3afb2da06fbfb79.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e5dc434960295733d831b250.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.514000;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_fc4e624b90f0f524a76d103f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.704000;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_1af8671dfd0d9e5ff4a24afc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.715000;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_15480efa89be83a9d0ebe05c.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_6e9bfd19dd412dae6c4daaac.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_c72cd4364a7d4009fc970a9a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.453000;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_00ff26d016731274f9255b1e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.698000;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_1fe26e9d61ddc0a61050d9c3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.043000;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_e5dc434960295733d831b250.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.514000;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_42250298a80fe870e7b82260.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_e99815255623a0c5eeafcaec.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_548ef215cb9771b4ae446957.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_085ed229212349c54f2dbf30.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_6266ca106b5cf2f79adde103.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_996874dc5e071cb85fbbef8b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_d2ca7461d8eac430e0b9dfcf.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.763000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_dbd0fa1470c5a8258fd12e06.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.854000;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_587c072f3a3c066381085c18.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_da77421c4cc85e35bbed00b1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.911000;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_42d366860be09cbb1055b5b0.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_62c4f9cbd54418286fd91720.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_9aa7e3a50ca89b813736bc47.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_177ef651ec1ab552827c58c2.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_22a684dcc9d8216af483756a.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.514000;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_0e1c3cafcab11f9e359f3887.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_bbb5583b04e7ad14a660c7c3.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_b2aba147d17520de6bc17a10.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_8f60376b121ccae23956d1cc.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_136c920238f9a5a9f2acc354.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.908000;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_2c2d793806fc2b9dda23a5ed.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.552000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-101.142000px;}
.v13{vertical-align:-57.204000px;}
.v25{vertical-align:-40.650000px;}
.v2{vertical-align:-29.622000px;}
.v3{vertical-align:-24.678000px;}
.v19{vertical-align:-20.334000px;}
.vd{vertical-align:-10.758000px;}
.v18{vertical-align:-9.576000px;}
.v7{vertical-align:-7.326000px;}
.v0{vertical-align:0.000000px;}
.v21{vertical-align:2.490000px;}
.va{vertical-align:6.978000px;}
.v5{vertical-align:17.730000px;}
.v8{vertical-align:22.290000px;}
.v22{vertical-align:27.030000px;}
.v4{vertical-align:29.616000px;}
.v17{vertical-align:31.980000px;}
.v1{vertical-align:35.544000px;}
.v1e{vertical-align:38.376000px;}
.v23{vertical-align:40.650000px;}
.vb{vertical-align:43.338000px;}
.v10{vertical-align:44.454000px;}
.ve{vertical-align:48.522000px;}
.v9{vertical-align:50.664000px;}
.v1f{vertical-align:54.876000px;}
.v6{vertical-align:60.822000px;}
.v20{vertical-align:68.148000px;}
.vc{vertical-align:73.188000px;}
.v24{vertical-align:81.300000px;}
.v1c{vertical-align:86.970000px;}
.v14{vertical-align:93.138000px;}
.v1b{vertical-align:97.728000px;}
.vf{vertical-align:101.142000px;}
.v15{vertical-align:103.896000px;}
.v1d{vertical-align:122.664000px;}
.v16{vertical-align:143.880000px;}
.v1a{vertical-align:150.348000px;}
.v11{vertical-align:161.100000px;}
.ls5{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000273px;}
.ls1c{letter-spacing:0.000545px;}
.ls64{letter-spacing:0.001114px;}
.ls57{letter-spacing:0.002444px;}
.ls55{letter-spacing:0.003139px;}
.ls5f{letter-spacing:0.003239px;}
.ls52{letter-spacing:0.003333px;}
.ls18{letter-spacing:0.003525px;}
.ls33{letter-spacing:0.005587px;}
.ls3f{letter-spacing:0.005591px;}
.ls42{letter-spacing:0.006760px;}
.ls6a{letter-spacing:0.006974px;}
.ls6f{letter-spacing:0.008682px;}
.ls23{letter-spacing:0.009389px;}
.ls76{letter-spacing:0.009756px;}
.ls74{letter-spacing:0.010571px;}
.ls5b{letter-spacing:0.013822px;}
.ls75{letter-spacing:0.013823px;}
.ls43{letter-spacing:0.014373px;}
.ls48{letter-spacing:0.014652px;}
.ls8c{letter-spacing:0.016270px;}
.ls4f{letter-spacing:0.018255px;}
.ls3d{letter-spacing:0.018931px;}
.ls5a{letter-spacing:0.022827px;}
.ls15{letter-spacing:0.025127px;}
.ls4c{letter-spacing:0.025859px;}
.ls4b{letter-spacing:0.026913px;}
.ls6d{letter-spacing:0.027872px;}
.ls72{letter-spacing:0.028838px;}
.ls89{letter-spacing:0.916364px;}
.lsb{letter-spacing:1.929333px;}
.lsd{letter-spacing:1.935333px;}
.ls10{letter-spacing:1.948858px;}
.ls9{letter-spacing:2.000665px;}
.ls30{letter-spacing:2.573587px;}
.ls35{letter-spacing:2.579587px;}
.ls7e{letter-spacing:2.869248px;}
.ls63{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.988780px;}
.ls61{letter-spacing:2.990915px;}
.ls4{letter-spacing:2.992894px;}
.ls16{letter-spacing:4.265644px;}
.ls13{letter-spacing:4.519066px;}
.ls62{letter-spacing:4.734259px;}
.ls1f{letter-spacing:7.171473px;}
.ls47{letter-spacing:7.173191px;}
.ls54{letter-spacing:9.755402px;}
.ls2d{letter-spacing:10.042177px;}
.ls17{letter-spacing:10.048177px;}
.ls69{letter-spacing:11.684734px;}
.ls2c{letter-spacing:11.907379px;}
.ls46{letter-spacing:11.953114px;}
.lsc{letter-spacing:11.957455px;}
.ls39{letter-spacing:11.958273px;}
.ls45{letter-spacing:11.961191px;}
.ls67{letter-spacing:12.050842px;}
.ls86{letter-spacing:13.876375px;}
.ls83{letter-spacing:14.530921px;}
.ls1d{letter-spacing:14.933802px;}
.ls32{letter-spacing:14.940499px;}
.ls68{letter-spacing:14.942915px;}
.ls25{letter-spacing:14.945971px;}
.ls5e{letter-spacing:15.386342px;}
.ls22{letter-spacing:15.924326px;}
.ls60{letter-spacing:16.641638px;}
.ls7{letter-spacing:16.713370px;}
.ls6{letter-spacing:16.785101px;}
.ls5d{letter-spacing:16.892698px;}
.ls7d{letter-spacing:16.928563px;}
.ls3a{letter-spacing:17.215488px;}
.ls20{letter-spacing:19.126404px;}
.ls82{letter-spacing:19.367424px;}
.ls66{letter-spacing:19.439155px;}
.ls58{letter-spacing:19.726080px;}
.ls5c{letter-spacing:19.797811px;}
.ls27{letter-spacing:19.869542px;}
.ls2e{letter-spacing:19.906644px;}
.ls38{letter-spacing:19.919518px;}
.ls41{letter-spacing:19.925518px;}
.ls40{letter-spacing:19.925591px;}
.ls37{letter-spacing:19.926273px;}
.lse{letter-spacing:19.941274px;}
.ls21{letter-spacing:20.201644px;}
.ls7a{letter-spacing:20.443392px;}
.ls14{letter-spacing:20.804915px;}
.ls85{letter-spacing:21.730927px;}
.ls28{letter-spacing:22.308403px;}
.ls7c{letter-spacing:22.451866px;}
.ls3e{letter-spacing:23.384371px;}
.ls2b{letter-spacing:23.456102px;}
.ls56{letter-spacing:24.185644px;}
.ls19{letter-spacing:24.191644px;}
.ls3b{letter-spacing:24.245146px;}
.ls8{letter-spacing:24.603802px;}
.ls2a{letter-spacing:24.704887px;}
.ls4e{letter-spacing:25.392845px;}
.ls4d{letter-spacing:25.464576px;}
.ls3c{letter-spacing:25.966694px;}
.ls8b{letter-spacing:26.325350px;}
.ls3{letter-spacing:26.394479px;}
.ls50{letter-spacing:26.684006px;}
.ls59{letter-spacing:26.970931px;}
.ls12{letter-spacing:27.401318px;}
.ls65{letter-spacing:27.505739px;}
.lsa{letter-spacing:27.562059px;}
.ls80{letter-spacing:28.405555px;}
.ls51{letter-spacing:30.916147px;}
.ls7b{letter-spacing:31.203072px;}
.ls8d{letter-spacing:31.705190px;}
.ls81{letter-spacing:31.992115px;}
.ls7f{letter-spacing:32.279040px;}
.ls1b{letter-spacing:33.658896px;}
.ls24{letter-spacing:33.958177px;}
.ls53{letter-spacing:41.405518px;}
.ls1a{letter-spacing:48.299518px;}
.ls2f{letter-spacing:63.624273px;}
.ls36{letter-spacing:69.786621px;}
.ls87{letter-spacing:75.335129px;}
.ls88{letter-spacing:75.337036px;}
.ls8a{letter-spacing:79.091099px;}
.ls26{letter-spacing:82.203955px;}
.ls1{letter-spacing:116.845575px;}
.ls2{letter-spacing:116.848178px;}
.ls11{letter-spacing:117.391985px;}
.ls49{letter-spacing:118.425341px;}
.ls31{letter-spacing:126.390499px;}
.ls34{letter-spacing:128.412621px;}
.ls44{letter-spacing:130.023341px;}
.ls73{letter-spacing:139.474200px;}
.ls6e{letter-spacing:139.594200px;}
.ls78{letter-spacing:142.348200px;}
.ls70{letter-spacing:151.056960px;}
.ls71{letter-spacing:152.376366px;}
.ls6c{letter-spacing:152.496366px;}
.ls6b{letter-spacing:153.552366px;}
.ls79{letter-spacing:153.816960px;}
.ls77{letter-spacing:155.250366px;}
.ls84{letter-spacing:167.158691px;}
.lsf{letter-spacing:234.746604px;}
.ls29{letter-spacing:323.579443px;}
.ls4a{letter-spacing:793.203610px;}
.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;}
}
.ws53{word-spacing:-56.789591px;}
.ws46{word-spacing:-54.393769px;}
.ws3c{word-spacing:-45.664082px;}
.ws8c{word-spacing:-42.637126px;}
.ws54{word-spacing:-35.112422px;}
.ws39{word-spacing:-33.756703px;}
.ws52{word-spacing:-33.684972px;}
.wsaf{word-spacing:-32.544027px;}
.ws48{word-spacing:-31.748229px;}
.ws37{word-spacing:-25.722808px;}
.ws44{word-spacing:-21.777592px;}
.ws6{word-spacing:-19.546752px;}
.ws41{word-spacing:-19.510886px;}
.wscf{word-spacing:-18.757709px;}
.ws5e{word-spacing:-18.255590px;}
.ws81{word-spacing:-18.040397px;}
.wse2{word-spacing:-17.825203px;}
.ws23{word-spacing:-17.466547px;}
.ws3f{word-spacing:-17.323085px;}
.ws42{word-spacing:-17.251354px;}
.wse5{word-spacing:-16.964429px;}
.ws5d{word-spacing:-16.749235px;}
.wsd1{word-spacing:-16.462310px;}
.wsb4{word-spacing:-16.311286px;}
.ws6e{word-spacing:-15.673267px;}
.ws16{word-spacing:-15.529805px;}
.ws65{word-spacing:-15.458074px;}
.ws64{word-spacing:-15.386342px;}
.ws89{word-spacing:-15.314611px;}
.ws5b{word-spacing:-15.171149px;}
.ws2c{word-spacing:-15.099418px;}
.ws17{word-spacing:-14.812493px;}
.wsca{word-spacing:-14.669030px;}
.ws6f{word-spacing:-14.525568px;}
.wseb{word-spacing:-14.453837px;}
.ws7e{word-spacing:-14.382106px;}
.ws7f{word-spacing:-14.310374px;}
.ws6b{word-spacing:-14.238643px;}
.ws94{word-spacing:-14.166912px;}
.wsc4{word-spacing:-14.085830px;}
.ws12{word-spacing:-13.808256px;}
.ws7c{word-spacing:-13.664794px;}
.ws69{word-spacing:-13.593062px;}
.ws29{word-spacing:-13.377869px;}
.ws96{word-spacing:-13.162675px;}
.ws10{word-spacing:-12.947482px;}
.wse3{word-spacing:-12.875750px;}
.ws80{word-spacing:-12.804019px;}
.wsaa{word-spacing:-12.732288px;}
.ws21{word-spacing:-12.660557px;}
.ws26{word-spacing:-12.445363px;}
.wsd2{word-spacing:-12.373632px;}
.ws15{word-spacing:-12.230170px;}
.ws99{word-spacing:-12.014976px;}
.wse8{word-spacing:-11.871514px;}
.ws77{word-spacing:-11.799782px;}
.ws4{word-spacing:-11.728051px;}
.ws1a{word-spacing:-11.656320px;}
.ws1d{word-spacing:-11.441126px;}
.wsdf{word-spacing:-10.939008px;}
.ws8b{word-spacing:-10.878555px;}
.ws71{word-spacing:-10.867277px;}
.ws8a{word-spacing:-10.813100px;}
.ws20{word-spacing:-10.580352px;}
.ws22{word-spacing:-10.508621px;}
.ws9a{word-spacing:-10.436890px;}
.wsf{word-spacing:-10.365158px;}
.ws6d{word-spacing:-10.293427px;}
.ws82{word-spacing:-10.221696px;}
.wsbe{word-spacing:-10.158554px;}
.ws87{word-spacing:-10.078234px;}
.ws4d{word-spacing:-9.863040px;}
.ws83{word-spacing:-9.647846px;}
.ws2b{word-spacing:-9.504384px;}
.wsc{word-spacing:-9.360922px;}
.ws24{word-spacing:-9.289190px;}
.ws14{word-spacing:-9.217459px;}
.ws4f{word-spacing:-9.145728px;}
.wse{word-spacing:-9.073997px;}
.ws8{word-spacing:-8.930534px;}
.ws66{word-spacing:-8.858803px;}
.ws67{word-spacing:-8.787072px;}
.ws2e{word-spacing:-8.643610px;}
.ws57{word-spacing:-8.500147px;}
.wsdb{word-spacing:-8.428416px;}
.ws3d{word-spacing:-8.356685px;}
.wse9{word-spacing:-8.284954px;}
.ws6a{word-spacing:-8.141491px;}
.ws19{word-spacing:-7.926298px;}
.ws13{word-spacing:-7.854566px;}
.wsce{word-spacing:-7.843346px;}
.ws9e{word-spacing:-7.818983px;}
.ws4e{word-spacing:-7.818701px;}
.wscd{word-spacing:-7.788054px;}
.ws7b{word-spacing:-7.746970px;}
.wscc{word-spacing:-7.711104px;}
.ws92{word-spacing:-7.639373px;}
.ws9d{word-spacing:-7.603507px;}
.ws45{word-spacing:-7.558762px;}
.ws50{word-spacing:-7.531776px;}
.ws1e{word-spacing:-7.352448px;}
.ws97{word-spacing:-7.280717px;}
.ws9f{word-spacing:-7.137254px;}
.ws27{word-spacing:-7.065523px;}
.ws30{word-spacing:-6.993792px;}
.ws2a{word-spacing:-6.778598px;}
.wsa5{word-spacing:-6.706867px;}
.ws79{word-spacing:-6.635136px;}
.wse0{word-spacing:-6.563405px;}
.ws86{word-spacing:-6.491674px;}
.ws31{word-spacing:-6.419942px;}
.wsa{word-spacing:-6.276480px;}
.ws70{word-spacing:-6.061286px;}
.ws1f{word-spacing:-5.917824px;}
.ws9{word-spacing:-5.846093px;}
.wsc7{word-spacing:-5.702630px;}
.wsd{word-spacing:-5.559168px;}
.wsdc{word-spacing:-5.415706px;}
.wsb{word-spacing:-5.200512px;}
.ws25{word-spacing:-5.128781px;}
.ws93{word-spacing:-5.057050px;}
.ws28{word-spacing:-4.985318px;}
.ws2f{word-spacing:-4.913587px;}
.wsa6{word-spacing:-4.841856px;}
.wsad{word-spacing:-4.698394px;}
.ws7d{word-spacing:-4.196275px;}
.ws32{word-spacing:-3.837619px;}
.wsba{word-spacing:-3.678549px;}
.wsef{word-spacing:-3.407232px;}
.ws91{word-spacing:-3.192038px;}
.ws18{word-spacing:-3.048576px;}
.wsa1{word-spacing:-2.833382px;}
.ws9c{word-spacing:-2.510592px;}
.wsed{word-spacing:-2.331264px;}
.ws88{word-spacing:-2.259533px;}
.wsec{word-spacing:-2.116070px;}
.ws78{word-spacing:-1.972608px;}
.wsa0{word-spacing:-1.721549px;}
.wse6{word-spacing:-1.470490px;}
.ws47{word-spacing:-0.071731px;}
.ws72{word-spacing:-0.065455px;}
.ws75{word-spacing:-0.053798px;}
.ws4a{word-spacing:-0.047821px;}
.ws1c{word-spacing:0.000000px;}
.wsbf{word-spacing:0.052364px;}
.ws43{word-spacing:0.358656px;}
.ws40{word-spacing:0.430387px;}
.ws95{word-spacing:1.434624px;}
.ws3a{word-spacing:1.613952px;}
.ws7{word-spacing:1.900877px;}
.ws35{word-spacing:2.833382px;}
.ws9b{word-spacing:2.940979px;}
.wsb2{word-spacing:3.259639px;}
.ws84{word-spacing:3.801754px;}
.ws62{word-spacing:3.873485px;}
.wsd0{word-spacing:5.523302px;}
.ws85{word-spacing:5.881958px;}
.ws5a{word-spacing:8.416426px;}
.ws7a{word-spacing:8.966400px;}
.ws98{word-spacing:9.432653px;}
.ws63{word-spacing:10.401024px;}
.wsc5{word-spacing:10.734554px;}
.ws8d{word-spacing:10.800009px;}
.wsd7{word-spacing:10.865464px;}
.ws90{word-spacing:11.716373px;}
.ws2{word-spacing:13.573537px;}
.wsb9{word-spacing:13.876375px;}
.wsb0{word-spacing:14.465467px;}
.ws73{word-spacing:15.332544px;}
.wsd6{word-spacing:18.065470px;}
.wsd5{word-spacing:18.130924px;}
.wsc3{word-spacing:18.837834px;}
.ws61{word-spacing:18.884553px;}
.wsee{word-spacing:19.726080px;}
.ws1b{word-spacing:19.845499px;}
.wsda{word-spacing:19.869542px;}
.wscb{word-spacing:20.443392px;}
.wsd4{word-spacing:21.665473px;}
.ws4b{word-spacing:22.860010px;}
.ws60{word-spacing:22.864862px;}
.wsd9{word-spacing:22.866010px;}
.ws38{word-spacing:22.868553px;}
.ws76{word-spacing:23.312640px;}
.ws6c{word-spacing:23.784010px;}
.wsde{word-spacing:25.034189px;}
.ws59{word-spacing:25.622957px;}
.ws36{word-spacing:25.623097px;}
.ws5f{word-spacing:25.628957px;}
.ws34{word-spacing:25.629097px;}
.wsc6{word-spacing:25.679770px;}
.ws55{word-spacing:26.344589px;}
.ws56{word-spacing:26.350589px;}
.ws3{word-spacing:27.200395px;}
.ws2d{word-spacing:27.372550px;}
.ws3e{word-spacing:27.458627px;}
.wsab{word-spacing:28.088957px;}
.wsea{word-spacing:28.118630px;}
.wsa4{word-spacing:28.907674px;}
.wse4{word-spacing:29.051136px;}
.ws51{word-spacing:29.102957px;}
.ws33{word-spacing:29.103097px;}
.ws68{word-spacing:29.214010px;}
.wse7{word-spacing:29.266330px;}
.wsa9{word-spacing:29.338061px;}
.wsc8{word-spacing:29.409792px;}
.wsc9{word-spacing:29.696717px;}
.wse1{word-spacing:29.768448px;}
.wsdd{word-spacing:29.911910px;}
.wsa8{word-spacing:30.127104px;}
.wsbc{word-spacing:30.161480px;}
.wsa7{word-spacing:30.198835px;}
.ws58{word-spacing:31.130957px;}
.wsa3{word-spacing:32.279040px;}
.wsf0{word-spacing:32.637696px;}
.wsa2{word-spacing:33.498470px;}
.wsd3{word-spacing:36.404580px;}
.ws1{word-spacing:45.062948px;}
.wsac{word-spacing:45.190656px;}
.ws0{word-spacing:45.211670px;}
.ws49{word-spacing:62.718010px;}
.wsb1{word-spacing:69.767925px;}
.wsb6{word-spacing:69.801719px;}
.ws5{word-spacing:70.153114px;}
.ws3b{word-spacing:79.646957px;}
.ws11{word-spacing:82.375880px;}
.wsb3{word-spacing:103.216385px;}
.wsae{word-spacing:103.218785px;}
.wsb8{word-spacing:103.219985px;}
.ws8f{word-spacing:141.720375px;}
.ws8e{word-spacing:143.597227px;}
.wsc2{word-spacing:171.477961px;}
.wsbb{word-spacing:178.808876px;}
.wsbd{word-spacing:195.316526px;}
.wsb7{word-spacing:202.110714px;}
.wsb5{word-spacing:203.956534px;}
.wsc1{word-spacing:205.331080px;}
.wsc0{word-spacing:228.371099px;}
.wsd8{word-spacing:253.428824px;}
.ws74{word-spacing:301.010968px;}
.ws4c{word-spacing:565.506010px;}
.ws5c{word-spacing:958.897089px;}
._3{margin-left:-6.800099px;}
._c{margin-left:-5.494616px;}
._1{margin-left:-3.718065px;}
._4{margin-left:-2.324084px;}
._8{margin-left:-1.018602px;}
._1d{width:1.061609px;}
._6{width:2.324084px;}
._0{width:3.718065px;}
._23{width:4.978139px;}
._24{width:7.465263px;}
._3b{width:9.045304px;}
._25{width:11.959855px;}
._5{width:13.661792px;}
._9{width:16.627273px;}
._16{width:18.865306px;}
._27{width:20.357308px;}
._19{width:21.576732px;}
._f{width:23.298281px;}
._22{width:24.489025px;}
._14{width:25.889999px;}
._2{width:27.286472px;}
._11{width:28.333824px;}
._15{width:29.811493px;}
._d{width:31.160033px;}
._7{width:32.192950px;}
._13{width:34.144051px;}
._e{width:35.463899px;}
._18{width:37.945805px;}
._a{width:38.993087px;}
._32{width:40.671590px;}
._10{width:43.210874px;}
._1b{width:46.223579px;}
._b{width:47.856668px;}
._26{width:49.064141px;}
._17{width:51.431270px;}
._1c{width:54.659174px;}
._12{width:57.973136px;}
._35{width:62.378234px;}
._39{width:66.346178px;}
._33{width:70.224845px;}
._28{width:72.164143px;}
._1a{width:82.461958px;}
._30{width:95.694625px;}
._38{width:102.305540px;}
._2c{width:137.095106px;}
._2f{width:138.720745px;}
._2e{width:140.029837px;}
._2b{width:144.218932px;}
._2a{width:145.266205px;}
._2d{width:147.949844px;}
._31{width:150.829846px;}
._21{width:170.820673px;}
._20{width:180.045654px;}
._34{width:194.138344px;}
._1f{width:229.425064px;}
._36{width:234.654741px;}
._37{width:259.560662px;}
._1e{width:288.208588px;}
._3a{width:298.324200px;}
._29{width:308.970814px;}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y10e{bottom:12.321000px;}
.y87{bottom:14.271000px;}
.y8b{bottom:31.453500px;}
.y10d{bottom:34.281000px;}
.y26{bottom:40.207500px;}
.y86{bottom:41.368500px;}
.y8c{bottom:47.745000px;}
.y117{bottom:49.206000px;}
.y115{bottom:63.439500px;}
.y103{bottom:66.769500px;}
.yb6{bottom:69.976500px;}
.y7a{bottom:85.039500px;}
.y11c{bottom:87.678000px;}
.yd7{bottom:88.525500px;}
.y102{bottom:88.771500px;}
.y11f{bottom:90.943500px;}
.ya4{bottom:95.682000px;}
.y88{bottom:96.034500px;}
.y114{bottom:99.250500px;}
.yb7{bottom:101.866500px;}
.y109{bottom:103.653000px;}
.y25{bottom:105.664500px;}
.y118{bottom:106.501500px;}
.y79{bottom:106.708500px;}
.y8a{bottom:107.445000px;}
.y10a{bottom:108.883500px;}
.y10b{bottom:111.687000px;}
.ybb{bottom:115.141500px;}
.ya3{bottom:117.351000px;}
.yd6{bottom:125.137500px;}
.y108{bottom:127.711500px;}
.y78{bottom:128.377500px;}
.y129{bottom:128.907000px;}
.y24{bottom:131.673000px;}
.yf7{bottom:132.777000px;}
.y11d{bottom:133.725000px;}
.y113{bottom:135.060000px;}
.yba{bottom:136.809000px;}
.y77{bottom:150.045000px;}
.y128{bottom:150.576000px;}
.y107{bottom:151.768500px;}
.y89{bottom:153.054000px;}
.y23{bottom:153.342000px;}
.yf6{bottom:154.446000px;}
.yb9{bottom:158.478000px;}
.ya2{bottom:160.689000px;}
.y119{bottom:163.797000px;}
.yd5{bottom:168.475500px;}
.y112{bottom:170.869500px;}
.y76{bottom:171.714000px;}
.y127{bottom:172.243500px;}
.y81{bottom:174.661500px;}
.y22{bottom:175.011000px;}
.y106{bottom:175.825500px;}
.yf5{bottom:176.115000px;}
.y85{bottom:177.681000px;}
.yb8{bottom:180.147000px;}
.ya1{bottom:182.358000px;}
.yd4{bottom:190.144500px;}
.y11e{bottom:193.869000px;}
.y21{bottom:196.680000px;}
.y105{bottom:199.882500px;}
.ya0{bottom:204.027000px;}
.y111{bottom:206.677500px;}
.yb4{bottom:207.982500px;}
.y75{bottom:211.137000px;}
.yd3{bottom:211.813500px;}
.yf4{bottom:212.727000px;}
.y4e{bottom:212.940000px;}
.y50{bottom:212.997000px;}
.y126{bottom:215.581500px;}
.y84{bottom:216.579000px;}
.y20{bottom:218.347500px;}
.y4f{bottom:219.399000px;}
.y11a{bottom:221.092500px;}
.y4d{bottom:223.831500px;}
.y104{bottom:223.941000px;}
.y82{bottom:224.155500px;}
.y9f{bottom:225.694500px;}
.yd2{bottom:233.482500px;}
.yf3{bottom:234.396000px;}
.y125{bottom:237.250500px;}
.y110{bottom:242.488500px;}
.y10c{bottom:244.144500px;}
.y9e{bottom:247.363500px;}
.yd1{bottom:255.150000px;}
.y4c{bottom:256.335000px;}
.y1f{bottom:261.685500px;}
.y74{bottom:262.029000px;}
.y4b{bottom:262.735500px;}
.y4a{bottom:267.169500px;}
.y9d{bottom:269.032500px;}
.yf2{bottom:271.009500px;}
.y83{bottom:273.651000px;}
.y124{bottom:276.673500px;}
.y10f{bottom:278.298000px;}
.y11b{bottom:278.386500px;}
.y1e{bottom:283.354500px;}
.y73{bottom:283.698000px;}
.y80{bottom:286.194000px;}
.yb5{bottom:291.462000px;}
.yd0{bottom:298.488000px;}
.y116{bottom:298.593000px;}
.y49{bottom:299.673000px;}
.y7c{bottom:303.676500px;}
.y48{bottom:304.243500px;}
.y1d{bottom:305.023500px;}
.y72{bottom:305.367000px;}
.yf1{bottom:307.621500px;}
.y47{bottom:310.507500px;}
.y9c{bottom:312.370500px;}
.ycf{bottom:320.157000px;}
.y7f{bottom:325.713000px;}
.y1c{bottom:326.692500px;}
.y71{bottom:327.036000px;}
.y123{bottom:332.083500px;}
.y9b{bottom:334.038000px;}
.y7d{bottom:336.672000px;}
.y120{bottom:336.721500px;}
.yce{bottom:341.826000px;}
.y1b{bottom:348.360000px;}
.y70{bottom:348.705000px;}
.y122{bottom:353.751000px;}
.y9a{bottom:355.707000px;}
.yf0{bottom:357.315000px;}
.ycd{bottom:363.495000px;}
.y7e{bottom:369.669000px;}
.y1a{bottom:370.029000px;}
.y46{bottom:370.183500px;}
.y6f{bottom:370.372500px;}
.y45{bottom:374.616000px;}
.y121{bottom:375.420000px;}
.y99{bottom:377.376000px;}
.yee{bottom:377.638500px;}
.ycc{bottom:385.162500px;}
.y19{bottom:391.698000px;}
.y6e{bottom:392.041500px;}
.y44{bottom:396.285000px;}
.yef{bottom:397.963500px;}
.y98{bottom:399.045000px;}
.y8d{bottom:400.930500px;}
.y43{bottom:417.954000px;}
.y97{bottom:420.714000px;}
.y6d{bottom:423.078000px;}
.y101{bottom:424.924500px;}
.ycb{bottom:428.500500px;}
.y18{bottom:431.121000px;}
.yed{bottom:434.557500px;}
.y6c{bottom:435.379500px;}
.y42{bottom:439.623000px;}
.y96{bottom:442.383000px;}
.yca{bottom:450.169500px;}
.y41{bottom:461.292000px;}
.y95{bottom:464.050500px;}
.y6b{bottom:464.481000px;}
.yec{bottom:467.098500px;}
.yc9{bottom:471.838500px;}
.y142{bottom:481.584000px;}
.y17{bottom:482.049000px;}
.y40{bottom:482.959500px;}
.y94{bottom:485.719500px;}
.yea{bottom:487.423500px;}
.y6a{bottom:488.188500px;}
.yc8{bottom:493.506000px;}
.y141{bottom:503.253000px;}
.y16{bottom:503.716500px;}
.y3f{bottom:504.628500px;}
.y93{bottom:507.388500px;}
.yeb{bottom:507.747000px;}
.yc7{bottom:515.175000px;}
.y15{bottom:525.385500px;}
.y3e{bottom:526.297500px;}
.y68{bottom:528.000000px;}
.y140{bottom:532.393500px;}
.y69{bottom:535.435500px;}
.yc6{bottom:536.844000px;}
.y65{bottom:536.853000px;}
.ye9{bottom:542.314500px;}
.y14{bottom:547.054500px;}
.y64{bottom:549.154500px;}
.y92{bottom:550.726500px;}
.ye8{bottom:552.477000px;}
.y13f{bottom:554.062500px;}
.yc5{bottom:562.218000px;}
.y3d{bottom:565.720500px;}
.y67{bottom:566.190000px;}
.y13{bottom:568.723500px;}
.y66{bottom:571.570500px;}
.y91{bottom:572.395500px;}
.y13e{bottom:575.730000px;}
.yc4{bottom:583.887000px;}
.ye7{bottom:589.071000px;}
.y12{bottom:590.392500px;}
.y90{bottom:594.063000px;}
.ye6{bottom:599.233500px;}
.y63{bottom:604.207500px;}
.y13d{bottom:604.872000px;}
.yc3{bottom:605.556000px;}
.y11{bottom:612.060000px;}
.y8f{bottom:615.732000px;}
.y3c{bottom:616.648500px;}
.y62{bottom:625.876500px;}
.y13c{bottom:626.539500px;}
.yc2{bottom:627.225000px;}
.y10{bottom:633.729000px;}
.y3b{bottom:638.316000px;}
.ye5{bottom:645.990000px;}
.y13b{bottom:648.208500px;}
.yf{bottom:655.398000px;}
.ye3{bottom:656.151000px;}
.y3a{bottom:659.985000px;}
.yc1{bottom:663.732000px;}
.ye4{bottom:666.313500px;}
.y8e{bottom:667.039500px;}
.y61{bottom:669.214500px;}
.yb3{bottom:669.261000px;}
.ye{bottom:677.067000px;}
.y13a{bottom:677.349000px;}
.y39{bottom:681.654000px;}
.ye2{bottom:686.637000px;}
.y7b{bottom:686.655000px;}
.yb2{bottom:695.682000px;}
.yd{bottom:698.736000px;}
.y139{bottom:699.018000px;}
.yc0{bottom:700.240500px;}
.y38{bottom:703.323000px;}
.y60{bottom:705.489000px;}
.yc{bottom:720.405000px;}
.y138{bottom:720.687000px;}
.ye1{bottom:721.204500px;}
.ybf{bottom:721.909500px;}
.yb1{bottom:722.103000px;}
.y37{bottom:724.992000px;}
.ye0{bottom:731.367000px;}
.y5f{bottom:732.315000px;}
.yb{bottom:742.072500px;}
.y137{bottom:742.356000px;}
.ybe{bottom:743.577000px;}
.y36{bottom:746.661000px;}
.yb0{bottom:748.524000px;}
.ybd{bottom:765.246000px;}
.ydf{bottom:767.961000px;}
.y5e{bottom:767.995500px;}
.y35{bottom:768.328500px;}
.y136{bottom:771.496500px;}
.yaf{bottom:774.943500px;}
.yde{bottom:778.123500px;}
.y5d{bottom:789.664500px;}
.y34{bottom:789.997500px;}
.y135{bottom:793.165500px;}
.ya{bottom:796.233000px;}
.yae{bottom:801.364500px;}
.ybc{bottom:804.669000px;}
.y100{bottom:807.991500px;}
.y9{bottom:810.498000px;}
.y5c{bottom:811.333500px;}
.y33{bottom:811.666500px;}
.y134{bottom:814.834500px;}
.ydd{bottom:817.591500px;}
.yad{bottom:827.785500px;}
.yff{bottom:829.660500px;}
.y32{bottom:833.335500px;}
.y8{bottom:839.571000px;}
.ydc{bottom:843.220500px;}
.y133{bottom:843.975000px;}
.y5a{bottom:845.299500px;}
.y5b{bottom:849.604500px;}
.y59{bottom:849.733500px;}
.yfe{bottom:851.329500px;}
.y7{bottom:853.836000px;}
.yac{bottom:854.206500px;}
.y31{bottom:855.004500px;}
.y57{bottom:860.289000px;}
.y132{bottom:865.644000px;}
.y58{bottom:866.968500px;}
.yfd{bottom:872.997000px;}
.y30{bottom:876.673500px;}
.yab{bottom:880.627500px;}
.y6{bottom:882.909000px;}
.y131{bottom:887.311500px;}
.yfc{bottom:894.666000px;}
.ydb{bottom:894.922500px;}
.y2f{bottom:898.341000px;}
.yaa{bottom:907.048500px;}
.y56{bottom:910.242000px;}
.yfb{bottom:916.335000px;}
.y130{bottom:916.453500px;}
.yda{bottom:916.591500px;}
.y5{bottom:916.600500px;}
.y2e{bottom:920.010000px;}
.y55{bottom:931.911000px;}
.ya9{bottom:933.469500px;}
.yfa{bottom:938.004000px;}
.y12f{bottom:938.121000px;}
.yd9{bottom:938.260500px;}
.y2d{bottom:941.679000px;}
.y4{bottom:949.644000px;}
.yf9{bottom:959.673000px;}
.y12e{bottom:959.790000px;}
.y2c{bottom:963.348000px;}
.y54{bottom:968.185500px;}
.ya8{bottom:968.874000px;}
.y53{bottom:980.487000px;}
.y12d{bottom:981.459000px;}
.y2b{bottom:985.017000px;}
.y3{bottom:995.970000px;}
.yf8{bottom:999.096000px;}
.y2a{bottom:1006.684500px;}
.y12c{bottom:1010.599500px;}
.ya7{bottom:1015.041000px;}
.yd8{bottom:1028.353500px;}
.y52{bottom:1030.161000px;}
.y12b{bottom:1032.268500px;}
.ya6{bottom:1036.710000px;}
.y2{bottom:1040.802000px;}
.y29{bottom:1050.022500px;}
.y51{bottom:1051.830000px;}
.y12a{bottom:1053.937500px;}
.ya5{bottom:1058.379000px;}
.y28{bottom:1071.691500px;}
.y1{bottom:1085.634000px;}
.y27{bottom:1093.360500px;}
.h1d{height:2.869248px;}
.h8{height:19.498745px;}
.h24{height:32.278905px;}
.h5{height:33.235317px;}
.h1c{height:35.865450px;}
.h25{height:36.367718px;}
.h23{height:38.857718px;}
.h33{height:42.201574px;}
.h34{height:44.831700px;}
.h2c{height:45.764506px;}
.h19{height:45.913248px;}
.h2b{height:47.916442px;}
.h22{height:49.090950px;}
.h27{height:49.156405px;}
.h31{height:50.283571px;}
.h36{height:50.570496px;}
.h35{height:51.275044px;}
.h1b{height:53.798400px;}
.h6{height:53.870131px;}
.h28{height:59.308905px;}
.h7{height:60.340117px;}
.h11{height:61.894905px;}
.h26{height:61.900905px;}
.hc{height:63.691248px;}
.h9{height:65.481450px;}
.ha{height:65.487450px;}
.h12{height:70.737450px;}
.h20{height:71.017248px;}
.h16{height:71.534400px;}
.hb{height:71.600131px;}
.h2a{height:71.930400px;}
.h4{height:77.739574px;}
.h3{height:77.745574px;}
.h2f{height:89.800405px;}
.h2d{height:89.806405px;}
.h13{height:102.320400px;}
.h1a{height:102.326400px;}
.h2{height:104.254543px;}
.h15{height:106.348905px;}
.h1f{height:108.746131px;}
.hf{height:109.053450px;}
.h10{height:114.938131px;}
.he{height:114.944131px;}
.hd{height:122.264131px;}
.h1e{height:125.533248px;}
.h30{height:130.450405px;}
.h2e{height:130.456405px;}
.h18{height:146.749248px;}
.h14{height:153.217248px;}
.h17{height:163.969248px;}
.h32{height:357.165000px;}
.h29{height:382.677000px;}
.h21{height:424.085400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:470.858100px;}
.w3{width:680.314500px;}
.w4{width:682.843140px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:22.998000px;}
.x26{left:31.452000px;}
.x4f{left:36.300000px;}
.x23{left:41.374500px;}
.x4e{left:43.798500px;}
.x27{left:47.745000px;}
.x3c{left:53.683500px;}
.x4d{left:58.065000px;}
.x50{left:71.422500px;}
.x6{left:85.039500px;}
.x51{left:89.883000px;}
.x4a{left:94.282500px;}
.x9{left:97.591500px;}
.x7{left:109.935000px;}
.x3b{left:111.078000px;}
.x4c{left:115.669500px;}
.x2a{left:118.782000px;}
.x5a{left:121.128000px;}
.x40{left:123.537000px;}
.x59{left:127.558500px;}
.x4b{left:128.937000px;}
.xa{left:133.516500px;}
.x2{left:136.588500px;}
.x28{left:137.608500px;}
.x43{left:148.924500px;}
.x49{left:153.613500px;}
.x41{left:166.576500px;}
.x44{left:170.662500px;}
.x29{left:177.460500px;}
.x22{left:183.919500px;}
.x10{left:188.362500px;}
.x1{left:197.170500px;}
.x42{left:198.855000px;}
.x5{left:201.900000px;}
.x25{left:203.020500px;}
.x2b{left:205.557000px;}
.x4{left:225.898500px;}
.x11{left:230.016000px;}
.x38{left:232.399500px;}
.x13{left:248.113500px;}
.x2e{left:250.593000px;}
.x2c{left:265.336500px;}
.x32{left:266.571000px;}
.x3{left:269.155500px;}
.x3a{left:278.055000px;}
.x58{left:279.780000px;}
.x1a{left:285.180000px;}
.xe{left:288.433500px;}
.x15{left:295.767000px;}
.x34{left:299.613000px;}
.xd{left:304.366500px;}
.x17{left:305.763000px;}
.x37{left:311.595000px;}
.x3d{left:312.964500px;}
.x39{left:315.432000px;}
.x14{left:321.654000px;}
.x2d{left:325.114500px;}
.x20{left:327.865500px;}
.xf{left:330.370500px;}
.x1b{left:334.042500px;}
.x33{left:336.688500px;}
.xb{left:347.950500px;}
.x36{left:349.020000px;}
.x1d{left:355.506000px;}
.x35{left:359.637000px;}
.x1c{left:362.779500px;}
.x55{left:364.888500px;}
.x48{left:367.026000px;}
.x12{left:369.394500px;}
.x2f{left:374.214000px;}
.x54{left:377.979000px;}
.x31{left:382.404000px;}
.x1e{left:385.144500px;}
.x16{left:386.367000px;}
.x47{left:396.481500px;}
.x21{left:400.450500px;}
.x52{left:414.831000px;}
.x18{left:424.120500px;}
.x30{left:443.080500px;}
.x53{left:449.944500px;}
.x8{left:452.698500px;}
.xc{left:453.759000px;}
.x45{left:460.074000px;}
.x1f{left:517.030500px;}
.x19{left:532.642500px;}
.x3e{left:536.833500px;}
.x46{left:607.293000px;}
.x56{left:628.534500px;}
.x57{left:667.804500px;}
.x3f{left:768.259500px;}
@media print{
.v12{vertical-align:-89.904000pt;}
.v13{vertical-align:-50.848000pt;}
.v25{vertical-align:-36.133333pt;}
.v2{vertical-align:-26.330667pt;}
.v3{vertical-align:-21.936000pt;}
.v19{vertical-align:-18.074667pt;}
.vd{vertical-align:-9.562667pt;}
.v18{vertical-align:-8.512000pt;}
.v7{vertical-align:-6.512000pt;}
.v0{vertical-align:0.000000pt;}
.v21{vertical-align:2.213333pt;}
.va{vertical-align:6.202667pt;}
.v5{vertical-align:15.760000pt;}
.v8{vertical-align:19.813333pt;}
.v22{vertical-align:24.026667pt;}
.v4{vertical-align:26.325333pt;}
.v17{vertical-align:28.426667pt;}
.v1{vertical-align:31.594667pt;}
.v1e{vertical-align:34.112000pt;}
.v23{vertical-align:36.133333pt;}
.vb{vertical-align:38.522667pt;}
.v10{vertical-align:39.514667pt;}
.ve{vertical-align:43.130667pt;}
.v9{vertical-align:45.034667pt;}
.v1f{vertical-align:48.778667pt;}
.v6{vertical-align:54.064000pt;}
.v20{vertical-align:60.576000pt;}
.vc{vertical-align:65.056000pt;}
.v24{vertical-align:72.266667pt;}
.v1c{vertical-align:77.306667pt;}
.v14{vertical-align:82.789333pt;}
.v1b{vertical-align:86.869333pt;}
.vf{vertical-align:89.904000pt;}
.v15{vertical-align:92.352000pt;}
.v1d{vertical-align:109.034667pt;}
.v16{vertical-align:127.893333pt;}
.v1a{vertical-align:133.642667pt;}
.v11{vertical-align:143.200000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000242pt;}
.ls1c{letter-spacing:0.000485pt;}
.ls64{letter-spacing:0.000990pt;}
.ls57{letter-spacing:0.002173pt;}
.ls55{letter-spacing:0.002790pt;}
.ls5f{letter-spacing:0.002879pt;}
.ls52{letter-spacing:0.002963pt;}
.ls18{letter-spacing:0.003133pt;}
.ls33{letter-spacing:0.004966pt;}
.ls3f{letter-spacing:0.004970pt;}
.ls42{letter-spacing:0.006009pt;}
.ls6a{letter-spacing:0.006199pt;}
.ls6f{letter-spacing:0.007717pt;}
.ls23{letter-spacing:0.008346pt;}
.ls76{letter-spacing:0.008672pt;}
.ls74{letter-spacing:0.009396pt;}
.ls5b{letter-spacing:0.012286pt;}
.ls75{letter-spacing:0.012287pt;}
.ls43{letter-spacing:0.012776pt;}
.ls48{letter-spacing:0.013024pt;}
.ls8c{letter-spacing:0.014462pt;}
.ls4f{letter-spacing:0.016227pt;}
.ls3d{letter-spacing:0.016828pt;}
.ls5a{letter-spacing:0.020291pt;}
.ls15{letter-spacing:0.022335pt;}
.ls4c{letter-spacing:0.022985pt;}
.ls4b{letter-spacing:0.023922pt;}
.ls6d{letter-spacing:0.024775pt;}
.ls72{letter-spacing:0.025634pt;}
.ls89{letter-spacing:0.814546pt;}
.lsb{letter-spacing:1.714963pt;}
.lsd{letter-spacing:1.720296pt;}
.ls10{letter-spacing:1.732318pt;}
.ls9{letter-spacing:1.778369pt;}
.ls30{letter-spacing:2.287633pt;}
.ls35{letter-spacing:2.292966pt;}
.ls7e{letter-spacing:2.550443pt;}
.ls63{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.656693pt;}
.ls61{letter-spacing:2.658591pt;}
.ls4{letter-spacing:2.660350pt;}
.ls16{letter-spacing:3.791684pt;}
.ls13{letter-spacing:4.016947pt;}
.ls62{letter-spacing:4.208230pt;}
.ls1f{letter-spacing:6.374642pt;}
.ls47{letter-spacing:6.376170pt;}
.ls54{letter-spacing:8.671469pt;}
.ls2d{letter-spacing:8.926379pt;}
.ls17{letter-spacing:8.931713pt;}
.ls69{letter-spacing:10.386430pt;}
.ls2c{letter-spacing:10.584337pt;}
.ls46{letter-spacing:10.624990pt;}
.lsc{letter-spacing:10.628849pt;}
.ls39{letter-spacing:10.629576pt;}
.ls45{letter-spacing:10.632170pt;}
.ls67{letter-spacing:10.711859pt;}
.ls86{letter-spacing:12.334556pt;}
.ls83{letter-spacing:12.916374pt;}
.ls1d{letter-spacing:13.274491pt;}
.ls32{letter-spacing:13.280444pt;}
.ls68{letter-spacing:13.282591pt;}
.ls25{letter-spacing:13.285308pt;}
.ls5e{letter-spacing:13.676749pt;}
.ls22{letter-spacing:14.154957pt;}
.ls60{letter-spacing:14.792567pt;}
.ls7{letter-spacing:14.856329pt;}
.ls6{letter-spacing:14.920090pt;}
.ls5d{letter-spacing:15.015731pt;}
.ls7d{letter-spacing:15.047612pt;}
.ls3a{letter-spacing:15.302656pt;}
.ls20{letter-spacing:17.001248pt;}
.ls82{letter-spacing:17.215488pt;}
.ls66{letter-spacing:17.279249pt;}
.ls58{letter-spacing:17.534293pt;}
.ls5c{letter-spacing:17.598054pt;}
.ls27{letter-spacing:17.661815pt;}
.ls2e{letter-spacing:17.694795pt;}
.ls38{letter-spacing:17.706238pt;}
.ls41{letter-spacing:17.711572pt;}
.ls40{letter-spacing:17.711636pt;}
.ls37{letter-spacing:17.712242pt;}
.lse{letter-spacing:17.725577pt;}
.ls21{letter-spacing:17.957017pt;}
.ls7a{letter-spacing:18.171904pt;}
.ls14{letter-spacing:18.493258pt;}
.ls85{letter-spacing:19.316380pt;}
.ls28{letter-spacing:19.829692pt;}
.ls7c{letter-spacing:19.957214pt;}
.ls3e{letter-spacing:20.786108pt;}
.ls2b{letter-spacing:20.849869pt;}
.ls56{letter-spacing:21.498350pt;}
.ls19{letter-spacing:21.503684pt;}
.ls3b{letter-spacing:21.551241pt;}
.ls8{letter-spacing:21.870046pt;}
.ls2a{letter-spacing:21.959899pt;}
.ls4e{letter-spacing:22.571418pt;}
.ls4d{letter-spacing:22.635179pt;}
.ls3c{letter-spacing:23.081506pt;}
.ls8b{letter-spacing:23.400311pt;}
.ls3{letter-spacing:23.461759pt;}
.ls50{letter-spacing:23.719117pt;}
.ls59{letter-spacing:23.974161pt;}
.ls12{letter-spacing:24.356727pt;}
.ls65{letter-spacing:24.449546pt;}
.lsa{letter-spacing:24.499608pt;}
.ls80{letter-spacing:25.249382pt;}
.ls51{letter-spacing:27.481020pt;}
.ls7b{letter-spacing:27.736064pt;}
.ls8d{letter-spacing:28.182391pt;}
.ls81{letter-spacing:28.437436pt;}
.ls7f{letter-spacing:28.692480pt;}
.ls1b{letter-spacing:29.919019pt;}
.ls24{letter-spacing:30.185046pt;}
.ls53{letter-spacing:36.804905pt;}
.ls1a{letter-spacing:42.932905pt;}
.ls2f{letter-spacing:56.554909pt;}
.ls36{letter-spacing:62.032552pt;}
.ls87{letter-spacing:66.964559pt;}
.ls88{letter-spacing:66.966255pt;}
.ls8a{letter-spacing:70.303199pt;}
.ls26{letter-spacing:73.070182pt;}
.ls1{letter-spacing:103.862733pt;}
.ls2{letter-spacing:103.865047pt;}
.ls11{letter-spacing:104.348431pt;}
.ls49{letter-spacing:105.266970pt;}
.ls31{letter-spacing:112.347110pt;}
.ls34{letter-spacing:114.144552pt;}
.ls44{letter-spacing:115.576303pt;}
.ls73{letter-spacing:123.977067pt;}
.ls6e{letter-spacing:124.083733pt;}
.ls78{letter-spacing:126.531733pt;}
.ls70{letter-spacing:134.272853pt;}
.ls71{letter-spacing:135.445658pt;}
.ls6c{letter-spacing:135.552325pt;}
.ls6b{letter-spacing:136.490992pt;}
.ls79{letter-spacing:136.726187pt;}
.ls77{letter-spacing:138.000325pt;}
.ls84{letter-spacing:148.585503pt;}
.lsf{letter-spacing:208.663648pt;}
.ls29{letter-spacing:287.626172pt;}
.ls4a{letter-spacing:705.069875pt;}
.ws53{word-spacing:-50.479636pt;}
.ws46{word-spacing:-48.350017pt;}
.ws3c{word-spacing:-40.590295pt;}
.ws8c{word-spacing:-37.899668pt;}
.ws54{word-spacing:-31.211042pt;}
.ws39{word-spacing:-30.005958pt;}
.ws52{word-spacing:-29.942197pt;}
.wsaf{word-spacing:-28.928024pt;}
.ws48{word-spacing:-28.220648pt;}
.ws37{word-spacing:-22.864719pt;}
.ws44{word-spacing:-19.357860pt;}
.ws6{word-spacing:-17.374891pt;}
.ws41{word-spacing:-17.343010pt;}
.wscf{word-spacing:-16.673519pt;}
.ws5e{word-spacing:-16.227191pt;}
.ws81{word-spacing:-16.035908pt;}
.wse2{word-spacing:-15.844625pt;}
.ws23{word-spacing:-15.525820pt;}
.ws3f{word-spacing:-15.398298pt;}
.ws42{word-spacing:-15.334537pt;}
.wse5{word-spacing:-15.079492pt;}
.ws5d{word-spacing:-14.888209pt;}
.wsd1{word-spacing:-14.633165pt;}
.wsb4{word-spacing:-14.498921pt;}
.ws6e{word-spacing:-13.931793pt;}
.ws16{word-spacing:-13.804271pt;}
.ws65{word-spacing:-13.740510pt;}
.ws64{word-spacing:-13.676749pt;}
.ws89{word-spacing:-13.612988pt;}
.ws5b{word-spacing:-13.485466pt;}
.ws2c{word-spacing:-13.421705pt;}
.ws17{word-spacing:-13.166660pt;}
.wsca{word-spacing:-13.039138pt;}
.ws6f{word-spacing:-12.911616pt;}
.wseb{word-spacing:-12.847855pt;}
.ws7e{word-spacing:-12.784094pt;}
.ws7f{word-spacing:-12.720333pt;}
.ws6b{word-spacing:-12.656572pt;}
.ws94{word-spacing:-12.592811pt;}
.wsc4{word-spacing:-12.520738pt;}
.ws12{word-spacing:-12.274005pt;}
.ws7c{word-spacing:-12.146483pt;}
.ws69{word-spacing:-12.082722pt;}
.ws29{word-spacing:-11.891439pt;}
.ws96{word-spacing:-11.700156pt;}
.ws10{word-spacing:-11.508873pt;}
.wse3{word-spacing:-11.445111pt;}
.ws80{word-spacing:-11.381350pt;}
.wsaa{word-spacing:-11.317589pt;}
.ws21{word-spacing:-11.253828pt;}
.ws26{word-spacing:-11.062545pt;}
.wsd2{word-spacing:-10.998784pt;}
.ws15{word-spacing:-10.871262pt;}
.ws99{word-spacing:-10.679979pt;}
.wse8{word-spacing:-10.552457pt;}
.ws77{word-spacing:-10.488695pt;}
.ws4{word-spacing:-10.424934pt;}
.ws1a{word-spacing:-10.361173pt;}
.ws1d{word-spacing:-10.169890pt;}
.wsdf{word-spacing:-9.723563pt;}
.ws8b{word-spacing:-9.669826pt;}
.ws71{word-spacing:-9.659802pt;}
.ws8a{word-spacing:-9.611644pt;}
.ws20{word-spacing:-9.404757pt;}
.ws22{word-spacing:-9.340996pt;}
.ws9a{word-spacing:-9.277235pt;}
.wsf{word-spacing:-9.213474pt;}
.ws6d{word-spacing:-9.149713pt;}
.ws82{word-spacing:-9.085952pt;}
.wsbe{word-spacing:-9.029826pt;}
.ws87{word-spacing:-8.958430pt;}
.ws4d{word-spacing:-8.767147pt;}
.ws83{word-spacing:-8.575863pt;}
.ws2b{word-spacing:-8.448341pt;}
.wsc{word-spacing:-8.320819pt;}
.ws24{word-spacing:-8.257058pt;}
.ws14{word-spacing:-8.193297pt;}
.ws4f{word-spacing:-8.129536pt;}
.wse{word-spacing:-8.065775pt;}
.ws8{word-spacing:-7.938253pt;}
.ws66{word-spacing:-7.874492pt;}
.ws67{word-spacing:-7.810731pt;}
.ws2e{word-spacing:-7.683209pt;}
.ws57{word-spacing:-7.555686pt;}
.wsdb{word-spacing:-7.491925pt;}
.ws3d{word-spacing:-7.428164pt;}
.wse9{word-spacing:-7.364403pt;}
.ws6a{word-spacing:-7.236881pt;}
.ws19{word-spacing:-7.045598pt;}
.ws13{word-spacing:-6.981837pt;}
.wsce{word-spacing:-6.971863pt;}
.ws9e{word-spacing:-6.950207pt;}
.ws4e{word-spacing:-6.949956pt;}
.wscd{word-spacing:-6.922714pt;}
.ws7b{word-spacing:-6.886195pt;}
.wscc{word-spacing:-6.854315pt;}
.ws92{word-spacing:-6.790554pt;}
.ws9d{word-spacing:-6.758673pt;}
.ws45{word-spacing:-6.718899pt;}
.ws50{word-spacing:-6.694912pt;}
.ws1e{word-spacing:-6.535509pt;}
.ws97{word-spacing:-6.471748pt;}
.ws9f{word-spacing:-6.344226pt;}
.ws27{word-spacing:-6.280465pt;}
.ws30{word-spacing:-6.216704pt;}
.ws2a{word-spacing:-6.025421pt;}
.wsa5{word-spacing:-5.961660pt;}
.ws79{word-spacing:-5.897899pt;}
.wse0{word-spacing:-5.834138pt;}
.ws86{word-spacing:-5.770377pt;}
.ws31{word-spacing:-5.706615pt;}
.wsa{word-spacing:-5.579093pt;}
.ws70{word-spacing:-5.387810pt;}
.ws1f{word-spacing:-5.260288pt;}
.ws9{word-spacing:-5.196527pt;}
.wsc7{word-spacing:-5.069005pt;}
.wsd{word-spacing:-4.941483pt;}
.wsdc{word-spacing:-4.813961pt;}
.wsb{word-spacing:-4.622677pt;}
.ws25{word-spacing:-4.558916pt;}
.ws93{word-spacing:-4.495155pt;}
.ws28{word-spacing:-4.431394pt;}
.ws2f{word-spacing:-4.367633pt;}
.wsa6{word-spacing:-4.303872pt;}
.wsad{word-spacing:-4.176350pt;}
.ws7d{word-spacing:-3.730022pt;}
.ws32{word-spacing:-3.411217pt;}
.wsba{word-spacing:-3.269821pt;}
.wsef{word-spacing:-3.028651pt;}
.ws91{word-spacing:-2.837367pt;}
.ws18{word-spacing:-2.709845pt;}
.wsa1{word-spacing:-2.518562pt;}
.ws9c{word-spacing:-2.231637pt;}
.wsed{word-spacing:-2.072235pt;}
.ws88{word-spacing:-2.008474pt;}
.wsec{word-spacing:-1.880951pt;}
.ws78{word-spacing:-1.753429pt;}
.wsa0{word-spacing:-1.530266pt;}
.wse6{word-spacing:-1.307102pt;}
.ws47{word-spacing:-0.063761pt;}
.ws72{word-spacing:-0.058182pt;}
.ws75{word-spacing:-0.047821pt;}
.ws4a{word-spacing:-0.042507pt;}
.ws1c{word-spacing:0.000000pt;}
.wsbf{word-spacing:0.046545pt;}
.ws43{word-spacing:0.318805pt;}
.ws40{word-spacing:0.382566pt;}
.ws95{word-spacing:1.275221pt;}
.ws3a{word-spacing:1.434624pt;}
.ws7{word-spacing:1.689668pt;}
.ws35{word-spacing:2.518562pt;}
.ws9b{word-spacing:2.614204pt;}
.wsb2{word-spacing:2.897457pt;}
.ws84{word-spacing:3.379337pt;}
.ws62{word-spacing:3.443098pt;}
.wsd0{word-spacing:4.909602pt;}
.ws85{word-spacing:5.228407pt;}
.ws5a{word-spacing:7.481267pt;}
.ws7a{word-spacing:7.970133pt;}
.ws98{word-spacing:8.384580pt;}
.ws63{word-spacing:9.245355pt;}
.wsc5{word-spacing:9.541826pt;}
.ws8d{word-spacing:9.600008pt;}
.wsd7{word-spacing:9.658190pt;}
.ws90{word-spacing:10.414554pt;}
.ws2{word-spacing:12.065367pt;}
.wsb9{word-spacing:12.334556pt;}
.wsb0{word-spacing:12.858193pt;}
.ws73{word-spacing:13.628928pt;}
.wsd6{word-spacing:16.058195pt;}
.wsd5{word-spacing:16.116377pt;}
.wsc3{word-spacing:16.744741pt;}
.ws61{word-spacing:16.786270pt;}
.wsee{word-spacing:17.534293pt;}
.ws1b{word-spacing:17.640444pt;}
.wsda{word-spacing:17.661815pt;}
.wscb{word-spacing:18.171904pt;}
.wsd4{word-spacing:19.258198pt;}
.ws4b{word-spacing:20.320009pt;}
.ws60{word-spacing:20.324322pt;}
.wsd9{word-spacing:20.325342pt;}
.ws38{word-spacing:20.327603pt;}
.ws76{word-spacing:20.722347pt;}
.ws6c{word-spacing:21.141342pt;}
.wsde{word-spacing:22.252612pt;}
.ws59{word-spacing:22.775961pt;}
.ws36{word-spacing:22.776087pt;}
.ws5f{word-spacing:22.781295pt;}
.ws34{word-spacing:22.781420pt;}
.wsc6{word-spacing:22.826462pt;}
.ws55{word-spacing:23.417413pt;}
.ws56{word-spacing:23.422746pt;}
.ws3{word-spacing:24.178129pt;}
.ws2d{word-spacing:24.331155pt;}
.ws3e{word-spacing:24.407668pt;}
.wsab{word-spacing:24.967961pt;}
.wsea{word-spacing:24.994338pt;}
.wsa4{word-spacing:25.695710pt;}
.wse4{word-spacing:25.823232pt;}
.ws51{word-spacing:25.869295pt;}
.ws33{word-spacing:25.869420pt;}
.ws68{word-spacing:25.968009pt;}
.wse7{word-spacing:26.014515pt;}
.wsa9{word-spacing:26.078276pt;}
.wsc8{word-spacing:26.142037pt;}
.wsc9{word-spacing:26.397082pt;}
.wse1{word-spacing:26.460843pt;}
.wsdd{word-spacing:26.588365pt;}
.wsa8{word-spacing:26.779648pt;}
.wsbc{word-spacing:26.810204pt;}
.wsa7{word-spacing:26.843409pt;}
.ws58{word-spacing:27.671961pt;}
.wsa3{word-spacing:28.692480pt;}
.wsf0{word-spacing:29.011285pt;}
.wsa2{word-spacing:29.776418pt;}
.wsd3{word-spacing:32.359626pt;}
.ws1{word-spacing:40.055954pt;}
.wsac{word-spacing:40.169472pt;}
.ws0{word-spacing:40.188151pt;}
.ws49{word-spacing:55.749342pt;}
.wsb1{word-spacing:62.015933pt;}
.wsb6{word-spacing:62.045973pt;}
.ws5{word-spacing:62.358323pt;}
.ws3b{word-spacing:70.797295pt;}
.ws11{word-spacing:73.223005pt;}
.wsb3{word-spacing:91.747898pt;}
.wsae{word-spacing:91.750031pt;}
.wsb8{word-spacing:91.751098pt;}
.ws8f{word-spacing:125.973667pt;}
.ws8e{word-spacing:127.641980pt;}
.wsc2{word-spacing:152.424854pt;}
.wsbb{word-spacing:158.941223pt;}
.wsbd{word-spacing:173.614690pt;}
.wsb7{word-spacing:179.653968pt;}
.wsb5{word-spacing:181.294697pt;}
.wsc1{word-spacing:182.516516pt;}
.wsc0{word-spacing:202.996533pt;}
.wsd8{word-spacing:225.270066pt;}
.ws74{word-spacing:267.565305pt;}
.ws4c{word-spacing:502.672009pt;}
.ws5c{word-spacing:852.352968pt;}
._3{margin-left:-6.044532pt;}
._c{margin-left:-4.884103pt;}
._1{margin-left:-3.304947pt;}
._4{margin-left:-2.065853pt;}
._8{margin-left:-0.905424pt;}
._1d{width:0.943652pt;}
._6{width:2.065853pt;}
._0{width:3.304947pt;}
._23{width:4.425012pt;}
._24{width:6.635789pt;}
._3b{width:8.040270pt;}
._25{width:10.630982pt;}
._5{width:12.143815pt;}
._9{width:14.779798pt;}
._16{width:16.769161pt;}
._27{width:18.095385pt;}
._19{width:19.179317pt;}
._f{width:20.709583pt;}
._22{width:21.768022pt;}
._14{width:23.013332pt;}
._2{width:24.254642pt;}
._11{width:25.185621pt;}
._15{width:26.499105pt;}
._d{width:27.697807pt;}
._7{width:28.615955pt;}
._13{width:30.350268pt;}
._e{width:31.523466pt;}
._18{width:33.729604pt;}
._a{width:34.660522pt;}
._32{width:36.152525pt;}
._10{width:38.409666pt;}
._1b{width:41.087626pt;}
._b{width:42.539260pt;}
._26{width:43.612570pt;}
._17{width:45.716685pt;}
._1c{width:48.585933pt;}
._12{width:51.531677pt;}
._35{width:55.447319pt;}
._39{width:58.974380pt;}
._33{width:62.422084pt;}
._28{width:64.145905pt;}
._1a{width:73.299518pt;}
._30{width:85.061889pt;}
._38{width:90.938258pt;}
._2c{width:121.862316pt;}
._2f{width:123.307329pt;}
._2e{width:124.470966pt;}
._2b{width:128.194606pt;}
._2a{width:129.125516pt;}
._2d{width:131.510972pt;}
._31{width:134.070974pt;}
._21{width:151.840598pt;}
._20{width:160.040581pt;}
._34{width:172.567417pt;}
._1f{width:203.933390pt;}
._36{width:208.581992pt;}
._37{width:230.720589pt;}
._1e{width:256.185412pt;}
._3a{width:265.177067pt;}
._29{width:274.640723pt;}
.fs5{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y10e{bottom:10.952000pt;}
.y87{bottom:12.685333pt;}
.y8b{bottom:27.958667pt;}
.y10d{bottom:30.472000pt;}
.y26{bottom:35.740000pt;}
.y86{bottom:36.772000pt;}
.y8c{bottom:42.440000pt;}
.y117{bottom:43.738667pt;}
.y115{bottom:56.390667pt;}
.y103{bottom:59.350667pt;}
.yb6{bottom:62.201333pt;}
.y7a{bottom:75.590667pt;}
.y11c{bottom:77.936000pt;}
.yd7{bottom:78.689333pt;}
.y102{bottom:78.908000pt;}
.y11f{bottom:80.838667pt;}
.ya4{bottom:85.050667pt;}
.y88{bottom:85.364000pt;}
.y114{bottom:88.222667pt;}
.yb7{bottom:90.548000pt;}
.y109{bottom:92.136000pt;}
.y25{bottom:93.924000pt;}
.y118{bottom:94.668000pt;}
.y79{bottom:94.852000pt;}
.y8a{bottom:95.506667pt;}
.y10a{bottom:96.785333pt;}
.y10b{bottom:99.277333pt;}
.ybb{bottom:102.348000pt;}
.ya3{bottom:104.312000pt;}
.yd6{bottom:111.233333pt;}
.y108{bottom:113.521333pt;}
.y78{bottom:114.113333pt;}
.y129{bottom:114.584000pt;}
.y24{bottom:117.042667pt;}
.yf7{bottom:118.024000pt;}
.y11d{bottom:118.866667pt;}
.y113{bottom:120.053333pt;}
.yba{bottom:121.608000pt;}
.y77{bottom:133.373333pt;}
.y128{bottom:133.845333pt;}
.y107{bottom:134.905333pt;}
.y89{bottom:136.048000pt;}
.y23{bottom:136.304000pt;}
.yf6{bottom:137.285333pt;}
.yb9{bottom:140.869333pt;}
.ya2{bottom:142.834667pt;}
.y119{bottom:145.597333pt;}
.yd5{bottom:149.756000pt;}
.y112{bottom:151.884000pt;}
.y76{bottom:152.634667pt;}
.y127{bottom:153.105333pt;}
.y81{bottom:155.254667pt;}
.y22{bottom:155.565333pt;}
.y106{bottom:156.289333pt;}
.yf5{bottom:156.546667pt;}
.y85{bottom:157.938667pt;}
.yb8{bottom:160.130667pt;}
.ya1{bottom:162.096000pt;}
.yd4{bottom:169.017333pt;}
.y11e{bottom:172.328000pt;}
.y21{bottom:174.826667pt;}
.y105{bottom:177.673333pt;}
.ya0{bottom:181.357333pt;}
.y111{bottom:183.713333pt;}
.yb4{bottom:184.873333pt;}
.y75{bottom:187.677333pt;}
.yd3{bottom:188.278667pt;}
.yf4{bottom:189.090667pt;}
.y4e{bottom:189.280000pt;}
.y50{bottom:189.330667pt;}
.y126{bottom:191.628000pt;}
.y84{bottom:192.514667pt;}
.y20{bottom:194.086667pt;}
.y4f{bottom:195.021333pt;}
.y11a{bottom:196.526667pt;}
.y4d{bottom:198.961333pt;}
.y104{bottom:199.058667pt;}
.y82{bottom:199.249333pt;}
.y9f{bottom:200.617333pt;}
.yd2{bottom:207.540000pt;}
.yf3{bottom:208.352000pt;}
.y125{bottom:210.889333pt;}
.y110{bottom:215.545333pt;}
.y10c{bottom:217.017333pt;}
.y9e{bottom:219.878667pt;}
.yd1{bottom:226.800000pt;}
.y4c{bottom:227.853333pt;}
.y1f{bottom:232.609333pt;}
.y74{bottom:232.914667pt;}
.y4b{bottom:233.542667pt;}
.y4a{bottom:237.484000pt;}
.y9d{bottom:239.140000pt;}
.yf2{bottom:240.897333pt;}
.y83{bottom:243.245333pt;}
.y124{bottom:245.932000pt;}
.y10f{bottom:247.376000pt;}
.y11b{bottom:247.454667pt;}
.y1e{bottom:251.870667pt;}
.y73{bottom:252.176000pt;}
.y80{bottom:254.394667pt;}
.yb5{bottom:259.077333pt;}
.yd0{bottom:265.322667pt;}
.y116{bottom:265.416000pt;}
.y49{bottom:266.376000pt;}
.y7c{bottom:269.934667pt;}
.y48{bottom:270.438667pt;}
.y1d{bottom:271.132000pt;}
.y72{bottom:271.437333pt;}
.yf1{bottom:273.441333pt;}
.y47{bottom:276.006667pt;}
.y9c{bottom:277.662667pt;}
.ycf{bottom:284.584000pt;}
.y7f{bottom:289.522667pt;}
.y1c{bottom:290.393333pt;}
.y71{bottom:290.698667pt;}
.y123{bottom:295.185333pt;}
.y9b{bottom:296.922667pt;}
.y7d{bottom:299.264000pt;}
.y120{bottom:299.308000pt;}
.yce{bottom:303.845333pt;}
.y1b{bottom:309.653333pt;}
.y70{bottom:309.960000pt;}
.y122{bottom:314.445333pt;}
.y9a{bottom:316.184000pt;}
.yf0{bottom:317.613333pt;}
.ycd{bottom:323.106667pt;}
.y7e{bottom:328.594667pt;}
.y1a{bottom:328.914667pt;}
.y46{bottom:329.052000pt;}
.y6f{bottom:329.220000pt;}
.y45{bottom:332.992000pt;}
.y121{bottom:333.706667pt;}
.y99{bottom:335.445333pt;}
.yee{bottom:335.678667pt;}
.ycc{bottom:342.366667pt;}
.y19{bottom:348.176000pt;}
.y6e{bottom:348.481333pt;}
.y44{bottom:352.253333pt;}
.yef{bottom:353.745333pt;}
.y98{bottom:354.706667pt;}
.y8d{bottom:356.382667pt;}
.y43{bottom:371.514667pt;}
.y97{bottom:373.968000pt;}
.y6d{bottom:376.069333pt;}
.y101{bottom:377.710667pt;}
.ycb{bottom:380.889333pt;}
.y18{bottom:383.218667pt;}
.yed{bottom:386.273333pt;}
.y6c{bottom:387.004000pt;}
.y42{bottom:390.776000pt;}
.y96{bottom:393.229333pt;}
.yca{bottom:400.150667pt;}
.y41{bottom:410.037333pt;}
.y95{bottom:412.489333pt;}
.y6b{bottom:412.872000pt;}
.yec{bottom:415.198667pt;}
.yc9{bottom:419.412000pt;}
.y142{bottom:428.074667pt;}
.y17{bottom:428.488000pt;}
.y40{bottom:429.297333pt;}
.y94{bottom:431.750667pt;}
.yea{bottom:433.265333pt;}
.y6a{bottom:433.945333pt;}
.yc8{bottom:438.672000pt;}
.y141{bottom:447.336000pt;}
.y16{bottom:447.748000pt;}
.y3f{bottom:448.558667pt;}
.y93{bottom:451.012000pt;}
.yeb{bottom:451.330667pt;}
.yc7{bottom:457.933333pt;}
.y15{bottom:467.009333pt;}
.y3e{bottom:467.820000pt;}
.y68{bottom:469.333333pt;}
.y140{bottom:473.238667pt;}
.y69{bottom:475.942667pt;}
.yc6{bottom:477.194667pt;}
.y65{bottom:477.202667pt;}
.ye9{bottom:482.057333pt;}
.y14{bottom:486.270667pt;}
.y64{bottom:488.137333pt;}
.y92{bottom:489.534667pt;}
.ye8{bottom:491.090667pt;}
.y13f{bottom:492.500000pt;}
.yc5{bottom:499.749333pt;}
.y3d{bottom:502.862667pt;}
.y67{bottom:503.280000pt;}
.y13{bottom:505.532000pt;}
.y66{bottom:508.062667pt;}
.y91{bottom:508.796000pt;}
.y13e{bottom:511.760000pt;}
.yc4{bottom:519.010667pt;}
.ye7{bottom:523.618667pt;}
.y12{bottom:524.793333pt;}
.y90{bottom:528.056000pt;}
.ye6{bottom:532.652000pt;}
.y63{bottom:537.073333pt;}
.y13d{bottom:537.664000pt;}
.yc3{bottom:538.272000pt;}
.y11{bottom:544.053333pt;}
.y8f{bottom:547.317333pt;}
.y3c{bottom:548.132000pt;}
.y62{bottom:556.334667pt;}
.y13c{bottom:556.924000pt;}
.yc2{bottom:557.533333pt;}
.y10{bottom:563.314667pt;}
.y3b{bottom:567.392000pt;}
.ye5{bottom:574.213333pt;}
.y13b{bottom:576.185333pt;}
.yf{bottom:582.576000pt;}
.ye3{bottom:583.245333pt;}
.y3a{bottom:586.653333pt;}
.yc1{bottom:589.984000pt;}
.ye4{bottom:592.278667pt;}
.y8e{bottom:592.924000pt;}
.y61{bottom:594.857333pt;}
.yb3{bottom:594.898667pt;}
.ye{bottom:601.837333pt;}
.y13a{bottom:602.088000pt;}
.y39{bottom:605.914667pt;}
.ye2{bottom:610.344000pt;}
.y7b{bottom:610.360000pt;}
.yb2{bottom:618.384000pt;}
.yd{bottom:621.098667pt;}
.y139{bottom:621.349333pt;}
.yc0{bottom:622.436000pt;}
.y38{bottom:625.176000pt;}
.y60{bottom:627.101333pt;}
.yc{bottom:640.360000pt;}
.y138{bottom:640.610667pt;}
.ye1{bottom:641.070667pt;}
.ybf{bottom:641.697333pt;}
.yb1{bottom:641.869333pt;}
.y37{bottom:644.437333pt;}
.ye0{bottom:650.104000pt;}
.y5f{bottom:650.946667pt;}
.yb{bottom:659.620000pt;}
.y137{bottom:659.872000pt;}
.ybe{bottom:660.957333pt;}
.y36{bottom:663.698667pt;}
.yb0{bottom:665.354667pt;}
.ybd{bottom:680.218667pt;}
.ydf{bottom:682.632000pt;}
.y5e{bottom:682.662667pt;}
.y35{bottom:682.958667pt;}
.y136{bottom:685.774667pt;}
.yaf{bottom:688.838667pt;}
.yde{bottom:691.665333pt;}
.y5d{bottom:701.924000pt;}
.y34{bottom:702.220000pt;}
.y135{bottom:705.036000pt;}
.ya{bottom:707.762667pt;}
.yae{bottom:712.324000pt;}
.ybc{bottom:715.261333pt;}
.y100{bottom:718.214667pt;}
.y9{bottom:720.442667pt;}
.y5c{bottom:721.185333pt;}
.y33{bottom:721.481333pt;}
.y134{bottom:724.297333pt;}
.ydd{bottom:726.748000pt;}
.yad{bottom:735.809333pt;}
.yff{bottom:737.476000pt;}
.y32{bottom:740.742667pt;}
.y8{bottom:746.285333pt;}
.ydc{bottom:749.529333pt;}
.y133{bottom:750.200000pt;}
.y5a{bottom:751.377333pt;}
.y5b{bottom:755.204000pt;}
.y59{bottom:755.318667pt;}
.yfe{bottom:756.737333pt;}
.y7{bottom:758.965333pt;}
.yac{bottom:759.294667pt;}
.y31{bottom:760.004000pt;}
.y57{bottom:764.701333pt;}
.y132{bottom:769.461333pt;}
.y58{bottom:770.638667pt;}
.yfd{bottom:775.997333pt;}
.y30{bottom:779.265333pt;}
.yab{bottom:782.780000pt;}
.y6{bottom:784.808000pt;}
.y131{bottom:788.721333pt;}
.yfc{bottom:795.258667pt;}
.ydb{bottom:795.486667pt;}
.y2f{bottom:798.525333pt;}
.yaa{bottom:806.265333pt;}
.y56{bottom:809.104000pt;}
.yfb{bottom:814.520000pt;}
.y130{bottom:814.625333pt;}
.yda{bottom:814.748000pt;}
.y5{bottom:814.756000pt;}
.y2e{bottom:817.786667pt;}
.y55{bottom:828.365333pt;}
.ya9{bottom:829.750667pt;}
.yfa{bottom:833.781333pt;}
.y12f{bottom:833.885333pt;}
.yd9{bottom:834.009333pt;}
.y2d{bottom:837.048000pt;}
.y4{bottom:844.128000pt;}
.yf9{bottom:853.042667pt;}
.y12e{bottom:853.146667pt;}
.y2c{bottom:856.309333pt;}
.y54{bottom:860.609333pt;}
.ya8{bottom:861.221333pt;}
.y53{bottom:871.544000pt;}
.y12d{bottom:872.408000pt;}
.y2b{bottom:875.570667pt;}
.y3{bottom:885.306667pt;}
.yf8{bottom:888.085333pt;}
.y2a{bottom:894.830667pt;}
.y12c{bottom:898.310667pt;}
.ya7{bottom:902.258667pt;}
.yd8{bottom:914.092000pt;}
.y52{bottom:915.698667pt;}
.y12b{bottom:917.572000pt;}
.ya6{bottom:921.520000pt;}
.y2{bottom:925.157333pt;}
.y29{bottom:933.353333pt;}
.y51{bottom:934.960000pt;}
.y12a{bottom:936.833333pt;}
.ya5{bottom:940.781333pt;}
.y28{bottom:952.614667pt;}
.y1{bottom:965.008000pt;}
.y27{bottom:971.876000pt;}
.h1d{height:2.550443pt;}
.h8{height:17.332218pt;}
.h24{height:28.692360pt;}
.h5{height:29.542504pt;}
.h1c{height:31.880400pt;}
.h25{height:32.326861pt;}
.h23{height:34.540194pt;}
.h33{height:37.512510pt;}
.h34{height:39.850400pt;}
.h2c{height:40.679561pt;}
.h19{height:40.811776pt;}
.h2b{height:42.592393pt;}
.h22{height:43.636400pt;}
.h27{height:43.694582pt;}
.h31{height:44.696508pt;}
.h36{height:44.951552pt;}
.h35{height:45.577817pt;}
.h1b{height:47.820800pt;}
.h6{height:47.884561pt;}
.h28{height:52.719027pt;}
.h7{height:53.635660pt;}
.h11{height:55.017693pt;}
.h26{height:55.023027pt;}
.hc{height:56.614443pt;}
.h9{height:58.205733pt;}
.ha{height:58.211067pt;}
.h12{height:62.877733pt;}
.h20{height:63.126443pt;}
.h16{height:63.586133pt;}
.hb{height:63.644561pt;}
.h2a{height:63.938133pt;}
.h4{height:69.101843pt;}
.h3{height:69.107177pt;}
.h2f{height:79.822582pt;}
.h2d{height:79.827915pt;}
.h13{height:90.951467pt;}
.h1a{height:90.956800pt;}
.h2{height:92.670705pt;}
.h15{height:94.532360pt;}
.h1f{height:96.663228pt;}
.hf{height:96.936400pt;}
.h10{height:102.167228pt;}
.he{height:102.172561pt;}
.hd{height:108.679228pt;}
.h1e{height:111.585109pt;}
.h30{height:115.955915pt;}
.h2e{height:115.961249pt;}
.h18{height:130.443776pt;}
.h14{height:136.193109pt;}
.h17{height:145.750443pt;}
.h32{height:317.480000pt;}
.h29{height:340.157333pt;}
.h21{height:376.964800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:418.540533pt;}
.w3{width:604.724000pt;}
.w4{width:606.971680pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:20.442667pt;}
.x26{left:27.957333pt;}
.x4f{left:32.266667pt;}
.x23{left:36.777333pt;}
.x4e{left:38.932000pt;}
.x27{left:42.440000pt;}
.x3c{left:47.718667pt;}
.x4d{left:51.613333pt;}
.x50{left:63.486667pt;}
.x6{left:75.590667pt;}
.x51{left:79.896000pt;}
.x4a{left:83.806667pt;}
.x9{left:86.748000pt;}
.x7{left:97.720000pt;}
.x3b{left:98.736000pt;}
.x4c{left:102.817333pt;}
.x2a{left:105.584000pt;}
.x5a{left:107.669333pt;}
.x40{left:109.810667pt;}
.x59{left:113.385333pt;}
.x4b{left:114.610667pt;}
.xa{left:118.681333pt;}
.x2{left:121.412000pt;}
.x28{left:122.318667pt;}
.x43{left:132.377333pt;}
.x49{left:136.545333pt;}
.x41{left:148.068000pt;}
.x44{left:151.700000pt;}
.x29{left:157.742667pt;}
.x22{left:163.484000pt;}
.x10{left:167.433333pt;}
.x1{left:175.262667pt;}
.x42{left:176.760000pt;}
.x5{left:179.466667pt;}
.x25{left:180.462667pt;}
.x2b{left:182.717333pt;}
.x4{left:200.798667pt;}
.x11{left:204.458667pt;}
.x38{left:206.577333pt;}
.x13{left:220.545333pt;}
.x2e{left:222.749333pt;}
.x2c{left:235.854667pt;}
.x32{left:236.952000pt;}
.x3{left:239.249333pt;}
.x3a{left:247.160000pt;}
.x58{left:248.693333pt;}
.x1a{left:253.493333pt;}
.xe{left:256.385333pt;}
.x15{left:262.904000pt;}
.x34{left:266.322667pt;}
.xd{left:270.548000pt;}
.x17{left:271.789333pt;}
.x37{left:276.973333pt;}
.x3d{left:278.190667pt;}
.x39{left:280.384000pt;}
.x14{left:285.914667pt;}
.x2d{left:288.990667pt;}
.x20{left:291.436000pt;}
.xf{left:293.662667pt;}
.x1b{left:296.926667pt;}
.x33{left:299.278667pt;}
.xb{left:309.289333pt;}
.x36{left:310.240000pt;}
.x1d{left:316.005333pt;}
.x35{left:319.677333pt;}
.x1c{left:322.470667pt;}
.x55{left:324.345333pt;}
.x48{left:326.245333pt;}
.x12{left:328.350667pt;}
.x2f{left:332.634667pt;}
.x54{left:335.981333pt;}
.x31{left:339.914667pt;}
.x1e{left:342.350667pt;}
.x16{left:343.437333pt;}
.x47{left:352.428000pt;}
.x21{left:355.956000pt;}
.x52{left:368.738667pt;}
.x18{left:376.996000pt;}
.x30{left:393.849333pt;}
.x53{left:399.950667pt;}
.x8{left:402.398667pt;}
.xc{left:403.341333pt;}
.x45{left:408.954667pt;}
.x1f{left:459.582667pt;}
.x19{left:473.460000pt;}
.x3e{left:477.185333pt;}
.x46{left:539.816000pt;}
.x56{left:558.697333pt;}
.x57{left:593.604000pt;}
.x3f{left:682.897333pt;}
}




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