
    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_cfe980fa0deb729ee8286a52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2a8d9a14139b9d0bfc687010.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_7156fd069c469dc433074964.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_8de7a9943e2509935fc8d125.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_ba9294d7a10563d27ac0113c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049805;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_c0c30de8cca146eb743623c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.213000;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_49679eeef57aae29195f5c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_3c1e91e8fe3752e3f8317439.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.213000;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_0935cca4073e13612b201606.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_573a0010a1496d9303bf5554.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.213000;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_20a1092e2a0eca2d2b78fb97.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.213000;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_e0535ca2912908e996cd8e30.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_15de98f1399a77b529e334a6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;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_e99aa1cc3b5904d7240de903.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.213000;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_5cd47a9533313b84012b0a28.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_a3cd589b95adbbdfeea63d87.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.213000;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_ca038e26f350cbf0ac6d5357.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.213000;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_5cd47a9533313b84012b0a28.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_61c9d9af031f47ad748538b5.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_ee9363918ebdb630052a3390.woff2')format("woff");}.ff17{font-family:ff17;line-height:3.732000;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_223a0c49c14d2ecc9d2aef6a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.735000;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_d362b6d486a75d0aa6c5a248.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_ee9363918ebdb630052a3390.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:3.732000;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_02f0d64466341cba8665e319.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.735000;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_8917893f1d9310b2662814fe.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_02f0d64466341cba8665e319.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.735000;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_b13908e998b9bc36550317ef.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_4fe9d2bf13c91ed20cbe28db.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.735000;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_3823297f367799f33800b4c3.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_86230597c11fc2e0c908f699.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.213000;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_0954d85f16ea75acf8e8eef5.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.213000;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_d8a312917716f1908132d057.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_298a8233b4978a53a9f610ae.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.213000;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_d9346f40dc98f1ea7bec2eeb.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_689a7ec37b197c6f2c1d4da6.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_b9d44c0a0b84d7fa35d8485e.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.213000;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_5ffdf1f817ea675b9e0310c7.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.213000;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_1c1927b8d7f5222323b1d519.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.213000;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_6ac3454f4cd75f42522912fe.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.213000;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_ab615c844a42d0d2df6b077d.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_223a0c49c14d2ecc9d2aef6a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.735000;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_dd80e440c0422144d85e433c.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_d73505110758533fcb604e82.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.705566;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_bcbd864bf8caa127f5766dc5.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_d7c78d1a8ed4c64898ea790e.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_25b942cf820439739fd794af.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_401b64e0853754b800ee6204.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_d681a2ea63f616a3e0c6c66a.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_4bb0c84d53710209190269ff.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_2ab45c1a8b8720a80d8f73f1.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.230000;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_4e2d41a782cd655caad1a6cb.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.213000;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_1c1927b8d7f5222323b1d519.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.213000;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_a3cd589b95adbbdfeea63d87.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.213000;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_138aaa45e54629c7b1d635fd.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.213000;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_b7476c90aaeca61c0b4915b1.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.213000;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_38dd8a3bc8e33f9b507fdd54.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.303000;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_573a0010a1496d9303bf5554.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.213000;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_4e98205ce09ef13ad343a5cb.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.735000;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_3df408724cfcbe8e1639a6f3.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.213000;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_a75e7fefbb01055daf91c2a4.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.213000;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_76e6b10a66f5554111bff7c7.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-24.277179px;}
.v5{vertical-align:-19.200073px;}
.v2{vertical-align:-8.279388px;}
.v4{vertical-align:-2.526489px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls7{letter-spacing:-3.300000px;}
.ls24{letter-spacing:-0.178180px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000036px;}
.ls28{letter-spacing:0.000086px;}
.ls2a{letter-spacing:0.000173px;}
.ls2c{letter-spacing:0.000591px;}
.ls16{letter-spacing:0.012166px;}
.ls1a{letter-spacing:0.019451px;}
.ls22{letter-spacing:0.037810px;}
.ls1f{letter-spacing:0.037993px;}
.ls8{letter-spacing:0.041245px;}
.ls20{letter-spacing:0.045006px;}
.ls23{letter-spacing:0.045097px;}
.ls4{letter-spacing:0.059393px;}
.ls1b{letter-spacing:0.097295px;}
.ls3{letter-spacing:0.118787px;}
.ls2d{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.178180px;}
.ls6{letter-spacing:0.237574px;}
.ls26{letter-spacing:0.356360px;}
.ls5{letter-spacing:0.415754px;}
.ls25{letter-spacing:0.866149px;}
.ls1{letter-spacing:3.360000px;}
.lsc{letter-spacing:5.879947px;}
.lsb{letter-spacing:9.965974px;}
.lsa{letter-spacing:12.472614px;}
.lsd{letter-spacing:13.304122px;}
.ls14{letter-spacing:14.519640px;}
.ls9{letter-spacing:15.761995px;}
.ls18{letter-spacing:16.511365px;}
.ls12{letter-spacing:17.699233px;}
.ls19{letter-spacing:18.245912px;}
.ls15{letter-spacing:18.246002px;}
.lse{letter-spacing:18.246003px;}
.ls21{letter-spacing:18.530741px;}
.ls1e{letter-spacing:23.579180px;}
.ls11{letter-spacing:26.608243px;}
.ls1d{letter-spacing:29.102766px;}
.ls13{letter-spacing:29.934274px;}
.lsf{letter-spacing:29.993667px;}
.ls2b{letter-spacing:30.703787px;}
.ls2{letter-spacing:53.016030px;}
.ls1c{letter-spacing:55.532829px;}
.ls17{letter-spacing:57.161958px;}
.ls10{letter-spacing:58.814867px;}
.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;}
}
.ws55{word-spacing:-19.778002px;}
.ws7c{word-spacing:-18.293167px;}
.ws6c{word-spacing:-18.055594px;}
.ws1b{word-spacing:-15.000000px;}
.ws54{word-spacing:-13.734651px;}
.wsed{word-spacing:-13.332000px;}
.ws3{word-spacing:-12.420000px;}
.ws100{word-spacing:-12.144000px;}
.ws2{word-spacing:-12.120000px;}
.ws8b{word-spacing:-12.000000px;}
.wsec{word-spacing:-11.340000px;}
.ws1{word-spacing:-9.408000px;}
.wseb{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws69{word-spacing:-5.879947px;}
.wse1{word-spacing:-3.420000px;}
.ws38{word-spacing:-3.240000px;}
.wsf9{word-spacing:-3.072000px;}
.ws88{word-spacing:-2.940000px;}
.ws30{word-spacing:-2.880000px;}
.ws7f{word-spacing:-2.820000px;}
.ws7d{word-spacing:-2.700000px;}
.ws84{word-spacing:-2.580000px;}
.wsd4{word-spacing:-2.520000px;}
.ws74{word-spacing:-2.460000px;}
.ws1a{word-spacing:-2.400000px;}
.ws41{word-spacing:-2.340000px;}
.ws5e{word-spacing:-2.280000px;}
.wsa7{word-spacing:-2.220000px;}
.ws2a{word-spacing:-2.160000px;}
.ws87{word-spacing:-2.100000px;}
.wsa8{word-spacing:-1.980000px;}
.ws22{word-spacing:-1.920000px;}
.ws60{word-spacing:-1.800000px;}
.ws29{word-spacing:-1.740000px;}
.ws65{word-spacing:-1.680000px;}
.wsb0{word-spacing:-1.620000px;}
.wscf{word-spacing:-1.560000px;}
.ws3d{word-spacing:-1.440000px;}
.wsf5{word-spacing:-1.392000px;}
.wsac{word-spacing:-1.296000px;}
.ws75{word-spacing:-1.260000px;}
.wscb{word-spacing:-1.200000px;}
.wse4{word-spacing:-1.140000px;}
.ws81{word-spacing:-1.080000px;}
.wsab{word-spacing:-0.960000px;}
.wsca{word-spacing:-0.912000px;}
.ws21{word-spacing:-0.900000px;}
.ws79{word-spacing:-0.866149px;}
.wsfe{word-spacing:-0.768000px;}
.ws1e{word-spacing:-0.720000px;}
.wsef{word-spacing:-0.672000px;}
.wsd3{word-spacing:-0.600000px;}
.ws6b{word-spacing:-0.544264px;}
.ws66{word-spacing:-0.540000px;}
.ws5{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.420000px;}
.ws7b{word-spacing:-0.384000px;}
.ws76{word-spacing:-0.360000px;}
.ws3f{word-spacing:-0.300000px;}
.ws7a{word-spacing:-0.288000px;}
.ws20{word-spacing:-0.240000px;}
.ws47{word-spacing:-0.237574px;}
.ws59{word-spacing:-0.180000px;}
.ws8{word-spacing:-0.118787px;}
.ws101{word-spacing:-0.096000px;}
.ws63{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws78{word-spacing:0.060000px;}
.wsb1{word-spacing:0.096000px;}
.ws73{word-spacing:0.120000px;}
.wsb2{word-spacing:0.144000px;}
.ws6d{word-spacing:0.178180px;}
.wscd{word-spacing:0.240000px;}
.wsa9{word-spacing:0.300000px;}
.wsd9{word-spacing:0.360000px;}
.wsdb{word-spacing:0.420000px;}
.ws28{word-spacing:0.600000px;}
.ws62{word-spacing:0.660000px;}
.wsee{word-spacing:0.672000px;}
.ws45{word-spacing:0.720000px;}
.ws39{word-spacing:0.780000px;}
.ws44{word-spacing:0.840000px;}
.ws51{word-spacing:0.960000px;}
.ws103{word-spacing:1.008000px;}
.wsd0{word-spacing:1.020000px;}
.ws82{word-spacing:1.140000px;}
.wsaa{word-spacing:1.200000px;}
.ws2f{word-spacing:1.260000px;}
.wsfc{word-spacing:1.296000px;}
.ws7e{word-spacing:1.320000px;}
.ws4b{word-spacing:1.380000px;}
.ws4a{word-spacing:1.440000px;}
.wsf4{word-spacing:1.488000px;}
.wsc6{word-spacing:1.500000px;}
.ws48{word-spacing:1.560000px;}
.ws26{word-spacing:1.620000px;}
.wse7{word-spacing:1.680000px;}
.ws42{word-spacing:1.740000px;}
.wsf0{word-spacing:1.776000px;}
.ws3a{word-spacing:1.800000px;}
.wsdf{word-spacing:1.860000px;}
.ws37{word-spacing:1.920000px;}
.wsf{word-spacing:1.980000px;}
.ws106{word-spacing:2.064000px;}
.ws72{word-spacing:2.100000px;}
.wsea{word-spacing:2.112000px;}
.ws35{word-spacing:2.160000px;}
.ws6{word-spacing:2.280000px;}
.ws12{word-spacing:2.340000px;}
.ws104{word-spacing:2.352000px;}
.ws5b{word-spacing:2.400000px;}
.ws34{word-spacing:2.580000px;}
.ws4c{word-spacing:2.640000px;}
.ws107{word-spacing:2.688000px;}
.wsae{word-spacing:2.700000px;}
.ws4d{word-spacing:2.760000px;}
.ws32{word-spacing:2.820000px;}
.ws1c{word-spacing:2.832000px;}
.wsdc{word-spacing:2.880000px;}
.ws36{word-spacing:2.940000px;}
.ws40{word-spacing:3.000000px;}
.wsd2{word-spacing:3.060000px;}
.wse{word-spacing:3.120000px;}
.ws5a{word-spacing:3.180000px;}
.ws1f{word-spacing:3.240000px;}
.wsf8{word-spacing:3.264000px;}
.wsad{word-spacing:3.300000px;}
.wse8{word-spacing:3.360000px;}
.ws2b{word-spacing:3.420000px;}
.wsf1{word-spacing:3.456000px;}
.ws61{word-spacing:3.540000px;}
.wse5{word-spacing:3.600000px;}
.wse2{word-spacing:3.720000px;}
.wsf7{word-spacing:3.744000px;}
.ws80{word-spacing:3.780000px;}
.wsfa{word-spacing:3.792000px;}
.ws31{word-spacing:3.840000px;}
.wscc{word-spacing:3.900000px;}
.ws52{word-spacing:4.020000px;}
.wsd7{word-spacing:4.140000px;}
.wsc9{word-spacing:4.200000px;}
.ws68{word-spacing:4.260000px;}
.wsd6{word-spacing:4.320000px;}
.wse9{word-spacing:4.368000px;}
.ws16{word-spacing:4.380000px;}
.wsf3{word-spacing:4.416000px;}
.ws19{word-spacing:4.500000px;}
.wsff{word-spacing:4.512000px;}
.wsa{word-spacing:4.560000px;}
.ws10{word-spacing:4.740000px;}
.wse6{word-spacing:4.860000px;}
.wsda{word-spacing:4.920000px;}
.wsa5{word-spacing:4.980000px;}
.ws13{word-spacing:5.100000px;}
.wse3{word-spacing:5.220000px;}
.wsa6{word-spacing:5.280000px;}
.wsd1{word-spacing:5.400000px;}
.ws2e{word-spacing:5.460000px;}
.ws83{word-spacing:5.520000px;}
.ws86{word-spacing:5.580000px;}
.ws85{word-spacing:5.640000px;}
.ws46{word-spacing:5.820000px;}
.ws43{word-spacing:5.940000px;}
.ws50{word-spacing:6.000000px;}
.ws5f{word-spacing:6.060000px;}
.ws3b{word-spacing:6.240000px;}
.wsc4{word-spacing:6.360000px;}
.ws4e{word-spacing:6.420000px;}
.ws5c{word-spacing:6.480000px;}
.wsf2{word-spacing:6.624000px;}
.wsc3{word-spacing:6.660000px;}
.ws4f{word-spacing:6.720000px;}
.wsdd{word-spacing:6.780000px;}
.wsfd{word-spacing:6.864000px;}
.ws27{word-spacing:6.900000px;}
.wsd8{word-spacing:7.020000px;}
.wsaf{word-spacing:7.140000px;}
.wsc8{word-spacing:7.260000px;}
.wsde{word-spacing:7.320000px;}
.wsd5{word-spacing:7.380000px;}
.ws25{word-spacing:7.500000px;}
.ws53{word-spacing:7.560000px;}
.ws105{word-spacing:7.584000px;}
.ws56{word-spacing:7.740000px;}
.ws3e{word-spacing:7.800000px;}
.ws58{word-spacing:7.860000px;}
.wsc{word-spacing:7.920000px;}
.ws3c{word-spacing:7.980000px;}
.ws2c{word-spacing:8.100000px;}
.wse0{word-spacing:8.160000px;}
.ws5d{word-spacing:8.220000px;}
.wsce{word-spacing:8.280000px;}
.wsd{word-spacing:8.580000px;}
.ws17{word-spacing:8.640000px;}
.ws2d{word-spacing:8.700000px;}
.ws24{word-spacing:8.820000px;}
.wsf6{word-spacing:8.832000px;}
.ws9{word-spacing:8.880000px;}
.ws7{word-spacing:9.180000px;}
.ws49{word-spacing:9.420000px;}
.wsfb{word-spacing:9.792000px;}
.wsc5{word-spacing:10.140000px;}
.ws14{word-spacing:10.200000px;}
.ws15{word-spacing:10.440000px;}
.wsb{word-spacing:11.220000px;}
.ws89{word-spacing:11.340000px;}
.ws64{word-spacing:11.760000px;}
.ws11{word-spacing:12.480000px;}
.wsc7{word-spacing:12.540000px;}
.ws18{word-spacing:12.660000px;}
.ws67{word-spacing:13.020000px;}
.ws57{word-spacing:13.140000px;}
.ws33{word-spacing:14.280000px;}
.ws23{word-spacing:16.020000px;}
.ws1d{word-spacing:19.668000px;}
.ws102{word-spacing:22.608000px;}
.ws9a{word-spacing:119.833848px;}
.ws9d{word-spacing:119.834385px;}
.ws91{word-spacing:119.834390px;}
.ws9c{word-spacing:119.834398px;}
.ws94{word-spacing:119.834848px;}
.ws90{word-spacing:120.020379px;}
.ws93{word-spacing:120.579538px;}
.ws9e{word-spacing:120.579629px;}
.ws99{word-spacing:121.801172px;}
.ws9b{word-spacing:122.360238px;}
.wsc0{word-spacing:122.449219px;}
.wsa4{word-spacing:127.803040px;}
.wsb6{word-spacing:130.465219px;}
.wsbe{word-spacing:130.950580px;}
.wsc1{word-spacing:131.063232px;}
.wsa1{word-spacing:135.817841px;}
.wsa2{word-spacing:135.818385px;}
.wsa0{word-spacing:136.004379px;}
.wsa3{word-spacing:136.563538px;}
.wsbb{word-spacing:138.480478px;}
.wsbc{word-spacing:138.480661px;}
.wsb4{word-spacing:138.966580px;}
.wsb7{word-spacing:139.079232px;}
.ws92{word-spacing:143.834385px;}
.ws96{word-spacing:143.834390px;}
.ws98{word-spacing:143.834848px;}
.ws95{word-spacing:144.020379px;}
.ws97{word-spacing:144.579538px;}
.wsc2{word-spacing:146.449036px;}
.wsbf{word-spacing:154.464661px;}
.wsb9{word-spacing:156.816659px;}
.wsb8{word-spacing:162.480478px;}
.wsb5{word-spacing:162.480661px;}
.wsba{word-spacing:165.431405px;}
.wsbd{word-spacing:177.496200px;}
.ws8d{word-spacing:179.834385px;}
.ws8c{word-spacing:179.834390px;}
.ws8f{word-spacing:179.834848px;}
.ws8a{word-spacing:180.020379px;}
.ws8e{word-spacing:180.579629px;}
.ws9f{word-spacing:190.864780px;}
.wsb3{word-spacing:200.832650px;}
.ws6e{word-spacing:517.920000px;}
.ws6f{word-spacing:697.319984px;}
.ws70{word-spacing:704.220000px;}
.ws6a{word-spacing:714.599991px;}
.ws71{word-spacing:718.020000px;}
._1c{margin-left:-66.351585px;}
._d{margin-left:-6.792000px;}
._2{margin-left:-4.410000px;}
._1{margin-left:-3.324000px;}
._7{margin-left:-2.220000px;}
._0{margin-left:-1.020000px;}
._6{width:1.238400px;}
._3{width:2.322000px;}
._1b{width:3.324005px;}
._9{width:4.325999px;}
._8{width:5.424000px;}
._e{width:7.104001px;}
._b{width:8.274000px;}
._a{width:9.936000px;}
._4{width:11.262000px;}
._f{width:12.792000px;}
._15{width:13.862401px;}
._5{width:17.518203px;}
._10{width:18.660000px;}
._c{width:19.668000px;}
._1d{width:56.256000px;}
._19{width:142.465800px;}
._1a{width:144.685800px;}
._13{width:155.834380px;}
._14{width:158.054380px;}
._17{width:166.465800px;}
._12{width:179.834380px;}
._18{width:200.831838px;}
._16{width:229.302530px;}
._11{width:565.464620px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.600000px;}
.fsa{font-size:41.245199px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:59.393400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:1.173157px;}
.yb2{bottom:1.173981px;}
.y54{bottom:1.345001px;}
.y84{bottom:1.345047px;}
.yab{bottom:1.345058px;}
.ycc{bottom:1.345505px;}
.yc7{bottom:1.345825px;}
.yc3{bottom:1.345917px;}
.ybd{bottom:1.346191px;}
.ycf{bottom:1.346237px;}
.yae{bottom:1.346558px;}
.y8f{bottom:1.655251px;}
.y94{bottom:1.655686px;}
.y4f{bottom:1.862549px;}
.yf9{bottom:1.862823px;}
.y110{bottom:1.862961px;}
.yf0{bottom:1.863007px;}
.y2c{bottom:1.864014px;}
.yf6{bottom:1.864048px;}
.y80{bottom:1.864060px;}
.y9b{bottom:2.690369px;}
.yc9{bottom:2.690735px;}
.ybf{bottom:2.691284px;}
.y9f{bottom:2.691742px;}
.ya8{bottom:2.692040px;}
.y97{bottom:2.692063px;}
.yd2{bottom:2.898010px;}
.yb9{bottom:3.518463px;}
.y82{bottom:3.518532px;}
.yc5{bottom:3.519287px;}
.ya7{bottom:3.519745px;}
.y87{bottom:3.520054px;}
.y112{bottom:3.587540px;}
.ya2{bottom:3.587563px;}
.yf4{bottom:3.589050px;}
.ydb{bottom:4.449303px;}
.y8c{bottom:19.250095px;}
.y8e{bottom:33.326099px;}
.y93{bottom:33.326569px;}
.y7{bottom:35.925007px;}
.y4a{bottom:46.736100px;}
.y7d{bottom:46.771650px;}
.y6{bottom:66.525004px;}
.ydc{bottom:90.001350px;}
.y49{bottom:90.001499px;}
.y7c{bottom:90.425102px;}
.y10d{bottom:95.310150px;}
.y5{bottom:97.125005px;}
.y7b{bottom:108.425102px;}
.y10c{bottom:112.765949px;}
.y117{bottom:123.425102px;}
.y86{bottom:123.478500px;}
.yaf{bottom:124.342495px;}
.y7a{bottom:126.425102px;}
.y141{bottom:127.175102px;}
.y10b{bottom:130.221748px;}
.y116{bottom:137.675102px;}
.y24{bottom:139.264499px;}
.y140{bottom:141.425102px;}
.y8a{bottom:142.062595px;}
.y8b{bottom:142.063499px;}
.yad{bottom:142.340996px;}
.y79{bottom:144.425102px;}
.y10a{bottom:147.677399px;}
.y115{bottom:151.925102px;}
.y13f{bottom:155.675102px;}
.yac{bottom:159.480000px;}
.yaa{bottom:160.342495px;}
.y8d{bottom:161.313595px;}
.y78{bottom:162.425102px;}
.y109{bottom:165.133198px;}
.y114{bottom:166.175102px;}
.y13e{bottom:169.925102px;}
.yf3{bottom:176.616005px;}
.yf5{bottom:177.478500px;}
.y77{bottom:180.425102px;}
.y108{bottom:182.588997px;}
.y13d{bottom:184.175102px;}
.y1b{bottom:196.933500px;}
.y76{bottom:198.425102px;}
.y107{bottom:200.044807px;}
.y41{bottom:206.205757px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y13c{bottom:212.675102px;}
.ya9{bottom:213.480011px;}
.y75{bottom:216.425102px;}
.y106{bottom:217.500595px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y40{bottom:224.205757px;}
.y13b{bottom:226.925102px;}
.ya6{bottom:231.424507px;}
.ya5{bottom:231.478500px;}
.y74{bottom:234.425102px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y105{bottom:234.956406px;}
.y13a{bottom:241.175102px;}
.ya4{bottom:248.617493px;}
.y104{bottom:252.412056px;}
.y73{bottom:252.425102px;}
.y139{bottom:255.425102px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y3f{bottom:260.205757px;}
.y88{bottom:261.423889px;}
.ya1{bottom:266.617493px;}
.ya3{bottom:267.480011px;}
.y138{bottom:269.675102px;}
.y103{bottom:269.868004px;}
.y72{bottom:270.425102px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y3e{bottom:278.205757px;}
.yed{bottom:281.827354px;}
.y137{bottom:283.925102px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y102{bottom:287.323654px;}
.y71{bottom:288.425102px;}
.y3d{bottom:296.205757px;}
.y136{bottom:298.175102px;}
.yec{bottom:299.283142px;}
.y101{bottom:304.779442px;}
.y70{bottom:306.425102px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y135{bottom:312.425102px;}
.y3c{bottom:314.205597px;}
.yeb{bottom:316.738953px;}
.y85{bottom:322.342506px;}
.y100{bottom:322.347748px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y6f{bottom:324.425102px;}
.y134{bottom:326.675102px;}
.y3b{bottom:332.205597px;}
.yea{bottom:334.194740px;}
.yff{bottom:339.172050px;}
.ydd{bottom:339.601341px;}
.y133{bottom:340.925102px;}
.y6e{bottom:342.425102px;}
.y12{bottom:348.133500px;}
.y3a{bottom:350.205597px;}
.ye9{bottom:351.650550px;}
.y132{bottom:355.175102px;}
.yfe{bottom:355.996353px;}
.y15b{bottom:357.092102px;}
.y6d{bottom:360.425102px;}
.y39{bottom:368.205597px;}
.ye8{bottom:369.106361px;}
.y131{bottom:369.425102px;}
.yfd{bottom:370.246353px;}
.y15a{bottom:374.042107px;}
.yda{bottom:374.186989px;}
.y81{bottom:375.480011px;}
.y83{bottom:376.342506px;}
.y6c{bottom:378.425102px;}
.y130{bottom:383.675102px;}
.y38{bottom:386.205734px;}
.ye7{bottom:386.562012px;}
.y11{bottom:386.785499px;}
.y159{bottom:393.092102px;}
.y7f{bottom:393.478500px;}
.y6b{bottom:396.425079px;}
.y12f{bottom:397.925079px;}
.ye6{bottom:404.017822px;}
.y37{bottom:404.205734px;}
.y10{bottom:408.044999px;}
.y158{bottom:410.042084px;}
.yf2{bottom:411.480011px;}
.y12e{bottom:412.175079px;}
.y6a{bottom:414.425079px;}
.ye5{bottom:421.473587px;}
.y36{bottom:422.205734px;}
.y12d{bottom:426.425079px;}
.y157{bottom:429.092102px;}
.y69{bottom:432.425079px;}
.ye4{bottom:438.929398px;}
.y35{bottom:440.205734px;}
.y12c{bottom:440.675079px;}
.yfc{bottom:447.478500px;}
.y68{bottom:450.425079px;}
.y156{bottom:450.842102px;}
.y12b{bottom:454.925079px;}
.ye3{bottom:456.385208px;}
.y34{bottom:458.205734px;}
.yfa{bottom:461.320038px;}
.y111{bottom:464.617493px;}
.y113{bottom:465.480011px;}
.y155{bottom:467.792084px;}
.y67{bottom:468.425079px;}
.y12a{bottom:469.175079px;}
.yf8{bottom:472.624512px;}
.ye2{bottom:473.841019px;}
.yf7{bottom:475.570038px;}
.y33{bottom:476.205734px;}
.y129{bottom:483.425079px;}
.yf{bottom:484.864502px;}
.y66{bottom:486.425079px;}
.y154{bottom:486.842102px;}
.ye1{bottom:491.296783px;}
.y32{bottom:494.205734px;}
.y128{bottom:497.675079px;}
.ye{bottom:502.864502px;}
.y153{bottom:503.792084px;}
.y65{bottom:504.425079px;}
.ye0{bottom:508.865112px;}
.y127{bottom:511.925079px;}
.y31{bottom:512.205734px;}
.yd{bottom:520.864502px;}
.y64{bottom:522.425079px;}
.y152{bottom:522.842102px;}
.y126{bottom:526.175079px;}
.ydf{bottom:526.320923px;}
.y30{bottom:530.205734px;}
.y9e{bottom:533.919022px;}
.y9d{bottom:533.919754px;}
.ya0{bottom:536.320221px;}
.yc{bottom:538.864499px;}
.y63{bottom:540.425079px;}
.yde{bottom:543.145065px;}
.y151{bottom:547.174072px;}
.y2f{bottom:548.205734px;}
.yb{bottom:556.864499px;}
.y62{bottom:558.425079px;}
.y150{bottom:561.424072px;}
.y2e{bottom:566.205734px;}
.y99{bottom:569.918381px;}
.y9a{bottom:569.919022px;}
.y9c{bottom:572.318848px;}
.y61{bottom:576.425079px;}
.y2d{bottom:584.205734px;}
.yf1{bottom:590.200333px;}
.yfb{bottom:591.480011px;}
.y60{bottom:594.425079px;}
.y2b{bottom:599.259018px;}
.yef{bottom:601.504486px;}
.y10f{bottom:601.864517px;}
.y2a{bottom:602.205734px;}
.yee{bottom:604.450333px;}
.y10e{bottom:604.810181px;}
.y96{bottom:605.916000px;}
.y95{bottom:605.916916px;}
.y98{bottom:608.317337px;}
.y5f{bottom:612.425079px;}
.y29{bottom:620.205734px;}
.y125{bottom:620.677963px;}
.y5e{bottom:630.425079px;}
.y124{bottom:634.927963px;}
.y28{bottom:638.205734px;}
.y90{bottom:641.915543px;}
.y92{bottom:641.916000px;}
.ya{bottom:645.510000px;}
.y5d{bottom:648.425079px;}
.y123{bottom:649.177963px;}
.y91{bottom:661.166565px;}
.y122{bottom:663.427963px;}
.y5c{bottom:666.425079px;}
.y9{bottom:666.771000px;}
.y121{bottom:677.677963px;}
.y5b{bottom:684.425079px;}
.y43{bottom:687.723312px;}
.y120{bottom:691.927963px;}
.yd1{bottom:697.009506px;}
.yd9{bottom:699.480011px;}
.yd4{bottom:699.488983px;}
.y42{bottom:701.973312px;}
.y5a{bottom:702.425079px;}
.yd3{bottom:702.489166px;}
.y11f{bottom:706.177963px;}
.y14f{bottom:710.979904px;}
.yd0{bottom:719.313446px;}
.y59{bottom:720.425079px;}
.y11e{bottom:720.427963px;}
.y14e{bottom:725.229904px;}
.y8{bottom:726.298500px;}
.ycd{bottom:733.136993px;}
.y11d{bottom:734.677963px;}
.yce{bottom:736.137772px;}
.y58{bottom:738.425079px;}
.y48{bottom:740.737198px;}
.yc8{bottom:750.016479px;}
.ycb{bottom:752.496002px;}
.y4{bottom:752.599495px;}
.y14d{bottom:753.354904px;}
.yca{bottom:755.496002px;}
.y57{bottom:756.425079px;}
.y47{bottom:758.737198px;}
.y11c{bottom:766.926590px;}
.y14c{bottom:767.604904px;}
.yc4{bottom:769.320007px;}
.yc6{bottom:772.320190px;}
.y56{bottom:774.425079px;}
.y14b{bottom:781.854858px;}
.yc2{bottom:786.144012px;}
.yc1{bottom:789.144470px;}
.yd8{bottom:789.480011px;}
.y55{bottom:792.425079px;}
.y14a{bottom:796.104858px;}
.ybe{bottom:797.914490px;}
.y11b{bottom:799.175079px;}
.y46{bottom:801.186035px;}
.yc0{bottom:803.394470px;}
.y52{bottom:807.480011px;}
.y53{bottom:808.342529px;}
.y149{bottom:810.354858px;}
.y51{bottom:810.425079px;}
.ybc{bottom:817.218018px;}
.ybb{bottom:820.218750px;}
.y45{bottom:823.686035px;}
.y148{bottom:824.604858px;}
.y50{bottom:828.425079px;}
.yb8{bottom:831.469482px;}
.y11a{bottom:834.425079px;}
.yba{bottom:834.468750px;}
.y147{bottom:838.854858px;}
.y4e{bottom:843.480011px;}
.y44{bottom:846.186035px;}
.y4d{bottom:846.425079px;}
.y119{bottom:848.675079px;}
.yb7{bottom:851.293030px;}
.y146{bottom:853.104858px;}
.y4c{bottom:864.425079px;}
.yb4{bottom:866.034027px;}
.y145{bottom:867.354858px;}
.yb6{bottom:869.788788px;}
.y3{bottom:879.369000px;}
.y118{bottom:880.925079px;}
.y144{bottom:881.604858px;}
.y7e{bottom:882.425079px;}
.yb1{bottom:884.528961px;}
.yb3{bottom:888.284546px;}
.yd6{bottom:895.175079px;}
.y143{bottom:895.854858px;}
.y25{bottom:899.681122px;}
.y4b{bottom:900.425079px;}
.yb0{bottom:905.852875px;}
.y89{bottom:905.944611px;}
.yd5{bottom:909.425079px;}
.y142{bottom:910.104858px;}
.yd7{bottom:914.690277px;}
.y27{bottom:924.938965px;}
.y26{bottom:939.188965px;}
.y2{bottom:945.126001px;}
.y1{bottom:966.726000px;}
.h25{height:8.625000px;}
.h24{height:10.348500px;}
.h21{height:10.350000px;}
.h17{height:12.075000px;}
.h22{height:12.076499px;}
.h16{height:13.800000px;}
.he{height:13.801500px;}
.h20{height:15.525000px;}
.h27{height:16.387500px;}
.h35{height:28.021875px;}
.h1e{height:31.965029px;}
.h7{height:32.130000px;}
.h23{height:32.531250px;}
.h1b{height:35.362500px;}
.h18{height:39.318431px;}
.h13{height:40.031250px;}
.h1c{height:44.545050px;}
.hb{height:45.456000px;}
.h1d{height:45.851705px;}
.h6{height:45.900000px;}
.h2c{height:45.953328px;}
.h2f{height:45.953419px;}
.h2d{height:45.953423px;}
.h29{height:45.953511px;}
.h2a{height:45.953877px;}
.h2e{height:45.953969px;}
.h33{height:45.953992px;}
.h31{height:45.954009px;}
.h30{height:45.954012px;}
.h32{height:45.954014px;}
.h2b{height:45.954060px;}
.h1f{height:46.029885px;}
.h19{height:46.224000px;}
.ha{height:46.656000px;}
.h34{height:47.472000px;}
.h3{height:48.195000px;}
.h28{height:48.480000px;}
.hd{height:50.039062px;}
.h2{height:55.080000px;}
.hf{height:57.195844px;}
.h10{height:57.780000px;}
.h26{height:58.800000px;}
.hc{height:59.340000px;}
.h1a{height:60.046875px;}
.h12{height:64.824000px;}
.h15{height:65.274000px;}
.h14{height:72.000000px;}
.h11{height:75.114000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w19{width:9.487500px;}
.w13{width:11.212500px;}
.w1b{width:12.937500px;}
.wa{width:14.662499px;}
.w12{width:15.525000px;}
.w7{width:18.974999px;}
.w1a{width:19.837500px;}
.w9{width:21.562500px;}
.w15{width:21.564000px;}
.w16{width:22.425000px;}
.w6{width:26.735999px;}
.w5{width:26.737500px;}
.wb{width:32.775000px;}
.w14{width:33.637499px;}
.w1e{width:37.087500px;}
.w1f{width:38.812500px;}
.w8{width:39.675000px;}
.w17{width:41.398500px;}
.w1c{width:41.400000px;}
.w18{width:43.125000px;}
.w11{width:61.237500px;}
.w1d{width:106.951504px;}
.w10{width:112.987495px;}
.wc{width:114.712498px;}
.wf{width:119.887505px;}
.we{width:123.337498px;}
.wd{width:213.037491px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:1.172401px;}
.x20{left:37.087349px;}
.x21{left:38.536354px;}
.x1c{left:48.472343px;}
.x1d{left:49.921349px;}
.x6{left:76.535402px;}
.x5{left:80.907303px;}
.x37{left:90.186000px;}
.x11{left:93.543303px;}
.x3e{left:98.098045px;}
.x1{left:102.045000px;}
.x2e{left:103.272903px;}
.x2{left:106.297500px;}
.x38{left:111.747894px;}
.x4c{left:113.622894px;}
.x16{left:123.190498px;}
.x4d{left:135.033005px;}
.x17{left:137.853149px;}
.x4a{left:147.486145px;}
.x59{left:150.143852px;}
.x4e{left:173.844452px;}
.x4f{left:199.052994px;}
.x4{left:203.484001px;}
.x1f{left:219.205353px;}
.x49{left:226.886993px;}
.x57{left:229.497002px;}
.x39{left:249.847504px;}
.x3f{left:250.866142px;}
.x58{left:256.235252px;}
.x50{left:260.291245px;}
.x23{left:263.607010px;}
.x25{left:265.332000px;}
.x1a{left:267.919510px;}
.x3b{left:272.271904px;}
.x22{left:279.856361px;}
.x1b{left:291.551994px;}
.x51{left:294.904495px;}
.x18{left:302.042999px;}
.x52{left:321.641853px;}
.x19{left:334.818900px;}
.x1e{left:340.196846px;}
.x33{left:344.716507px;}
.x5c{left:351.089996px;}
.x34{left:366.278709px;}
.x28{left:370.743004px;}
.x40{left:372.612007px;}
.x47{left:376.839294px;}
.x27{left:381.769341px;}
.x26{left:385.219345px;}
.x24{left:386.944336px;}
.xd{left:388.539000px;}
.x2f{left:394.259995px;}
.x48{left:407.896500px;}
.x30{left:409.785919px;}
.x5d{left:412.327652px;}
.xe{left:415.276932px;}
.x45{left:422.173370px;}
.x29{left:431.981552px;}
.xf{left:433.994980px;}
.x31{left:441.685500px;}
.x5e{left:444.976500px;}
.x46{left:449.921997px;}
.x10{left:452.970749px;}
.x3{left:454.959000px;}
.x42{left:458.234985px;}
.x41{left:459.378021px;}
.x4b{left:463.111496px;}
.x2a{left:467.429993px;}
.x12{left:470.221481px;}
.x5f{left:471.713104px;}
.x5a{left:472.873489px;}
.x53{left:488.638504px;}
.x2c{left:490.498489px;}
.x2b{left:494.166595px;}
.x14{left:495.215378px;}
.x13{left:496.958405px;}
.x5b{left:499.611877px;}
.x35{left:502.242004px;}
.xb{left:504.986984px;}
.xa{left:508.392288px;}
.x54{left:515.376022px;}
.x44{left:519.347992px;}
.x9{left:521.162704px;}
.x36{left:528.979065px;}
.xc{left:531.723587px;}
.x3c{left:535.654495px;}
.x55{left:538.774521px;}
.x32{left:548.881485px;}
.x2d{left:551.735550px;}
.x43{left:553.478989px;}
.x7{left:555.781494px;}
.x3d{left:557.216858px;}
.x15{left:560.957977px;}
.x56{left:565.511856px;}
.x8{left:582.519745px;}
@media print{
.v3{vertical-align:-21.579715pt;}
.v5{vertical-align:-17.066732pt;}
.v2{vertical-align:-7.359456pt;}
.v4{vertical-align:-2.245768pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls7{letter-spacing:-2.933333pt;}
.ls24{letter-spacing:-0.158382pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000032pt;}
.ls28{letter-spacing:0.000077pt;}
.ls2a{letter-spacing:0.000154pt;}
.ls2c{letter-spacing:0.000525pt;}
.ls16{letter-spacing:0.010814pt;}
.ls1a{letter-spacing:0.017290pt;}
.ls22{letter-spacing:0.033609pt;}
.ls1f{letter-spacing:0.033772pt;}
.ls8{letter-spacing:0.036662pt;}
.ls20{letter-spacing:0.040005pt;}
.ls23{letter-spacing:0.040086pt;}
.ls4{letter-spacing:0.052794pt;}
.ls1b{letter-spacing:0.086485pt;}
.ls3{letter-spacing:0.105588pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.158382pt;}
.ls6{letter-spacing:0.211177pt;}
.ls26{letter-spacing:0.316765pt;}
.ls5{letter-spacing:0.369559pt;}
.ls25{letter-spacing:0.769910pt;}
.ls1{letter-spacing:2.986667pt;}
.lsc{letter-spacing:5.226619pt;}
.lsb{letter-spacing:8.858644pt;}
.lsa{letter-spacing:11.086768pt;}
.lsd{letter-spacing:11.825886pt;}
.ls14{letter-spacing:12.906346pt;}
.ls9{letter-spacing:14.010662pt;}
.ls18{letter-spacing:14.676769pt;}
.ls12{letter-spacing:15.732652pt;}
.ls19{letter-spacing:16.218588pt;}
.ls15{letter-spacing:16.218668pt;}
.lse{letter-spacing:16.218670pt;}
.ls21{letter-spacing:16.471770pt;}
.ls1e{letter-spacing:20.959271pt;}
.ls11{letter-spacing:23.651772pt;}
.ls1d{letter-spacing:25.869125pt;}
.ls13{letter-spacing:26.608243pt;}
.lsf{letter-spacing:26.661037pt;}
.ls2b{letter-spacing:27.292255pt;}
.ls2{letter-spacing:47.125360pt;}
.ls1c{letter-spacing:49.362515pt;}
.ls17{letter-spacing:50.810629pt;}
.ls10{letter-spacing:52.279882pt;}
.ws55{word-spacing:-17.580446pt;}
.ws7c{word-spacing:-16.260593pt;}
.ws6c{word-spacing:-16.049417pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws54{word-spacing:-12.208579pt;}
.wsed{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.040000pt;}
.ws100{word-spacing:-10.794667pt;}
.ws2{word-spacing:-10.773333pt;}
.ws8b{word-spacing:-10.666667pt;}
.wsec{word-spacing:-10.080000pt;}
.ws1{word-spacing:-8.362667pt;}
.wseb{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws69{word-spacing:-5.226619pt;}
.wse1{word-spacing:-3.040000pt;}
.ws38{word-spacing:-2.880000pt;}
.wsf9{word-spacing:-2.730667pt;}
.ws88{word-spacing:-2.613333pt;}
.ws30{word-spacing:-2.560000pt;}
.ws7f{word-spacing:-2.506667pt;}
.ws7d{word-spacing:-2.400000pt;}
.ws84{word-spacing:-2.293333pt;}
.wsd4{word-spacing:-2.240000pt;}
.ws74{word-spacing:-2.186667pt;}
.ws1a{word-spacing:-2.133333pt;}
.ws41{word-spacing:-2.080000pt;}
.ws5e{word-spacing:-2.026667pt;}
.wsa7{word-spacing:-1.973333pt;}
.ws2a{word-spacing:-1.920000pt;}
.ws87{word-spacing:-1.866667pt;}
.wsa8{word-spacing:-1.760000pt;}
.ws22{word-spacing:-1.706667pt;}
.ws60{word-spacing:-1.600000pt;}
.ws29{word-spacing:-1.546667pt;}
.ws65{word-spacing:-1.493333pt;}
.wsb0{word-spacing:-1.440000pt;}
.wscf{word-spacing:-1.386667pt;}
.ws3d{word-spacing:-1.280000pt;}
.wsf5{word-spacing:-1.237333pt;}
.wsac{word-spacing:-1.152000pt;}
.ws75{word-spacing:-1.120000pt;}
.wscb{word-spacing:-1.066667pt;}
.wse4{word-spacing:-1.013333pt;}
.ws81{word-spacing:-0.960000pt;}
.wsab{word-spacing:-0.853333pt;}
.wsca{word-spacing:-0.810667pt;}
.ws21{word-spacing:-0.800000pt;}
.ws79{word-spacing:-0.769910pt;}
.wsfe{word-spacing:-0.682667pt;}
.ws1e{word-spacing:-0.640000pt;}
.wsef{word-spacing:-0.597333pt;}
.wsd3{word-spacing:-0.533333pt;}
.ws6b{word-spacing:-0.483790pt;}
.ws66{word-spacing:-0.480000pt;}
.ws5{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.373333pt;}
.ws7b{word-spacing:-0.341333pt;}
.ws76{word-spacing:-0.320000pt;}
.ws3f{word-spacing:-0.266667pt;}
.ws7a{word-spacing:-0.256000pt;}
.ws20{word-spacing:-0.213333pt;}
.ws47{word-spacing:-0.211177pt;}
.ws59{word-spacing:-0.160000pt;}
.ws8{word-spacing:-0.105588pt;}
.ws101{word-spacing:-0.085333pt;}
.ws63{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws78{word-spacing:0.053333pt;}
.wsb1{word-spacing:0.085333pt;}
.ws73{word-spacing:0.106667pt;}
.wsb2{word-spacing:0.128000pt;}
.ws6d{word-spacing:0.158382pt;}
.wscd{word-spacing:0.213333pt;}
.wsa9{word-spacing:0.266667pt;}
.wsd9{word-spacing:0.320000pt;}
.wsdb{word-spacing:0.373333pt;}
.ws28{word-spacing:0.533333pt;}
.ws62{word-spacing:0.586667pt;}
.wsee{word-spacing:0.597333pt;}
.ws45{word-spacing:0.640000pt;}
.ws39{word-spacing:0.693333pt;}
.ws44{word-spacing:0.746667pt;}
.ws51{word-spacing:0.853333pt;}
.ws103{word-spacing:0.896000pt;}
.wsd0{word-spacing:0.906667pt;}
.ws82{word-spacing:1.013333pt;}
.wsaa{word-spacing:1.066667pt;}
.ws2f{word-spacing:1.120000pt;}
.wsfc{word-spacing:1.152000pt;}
.ws7e{word-spacing:1.173333pt;}
.ws4b{word-spacing:1.226667pt;}
.ws4a{word-spacing:1.280000pt;}
.wsf4{word-spacing:1.322667pt;}
.wsc6{word-spacing:1.333333pt;}
.ws48{word-spacing:1.386667pt;}
.ws26{word-spacing:1.440000pt;}
.wse7{word-spacing:1.493333pt;}
.ws42{word-spacing:1.546667pt;}
.wsf0{word-spacing:1.578667pt;}
.ws3a{word-spacing:1.600000pt;}
.wsdf{word-spacing:1.653333pt;}
.ws37{word-spacing:1.706667pt;}
.wsf{word-spacing:1.760000pt;}
.ws106{word-spacing:1.834667pt;}
.ws72{word-spacing:1.866667pt;}
.wsea{word-spacing:1.877333pt;}
.ws35{word-spacing:1.920000pt;}
.ws6{word-spacing:2.026667pt;}
.ws12{word-spacing:2.080000pt;}
.ws104{word-spacing:2.090667pt;}
.ws5b{word-spacing:2.133333pt;}
.ws34{word-spacing:2.293333pt;}
.ws4c{word-spacing:2.346667pt;}
.ws107{word-spacing:2.389333pt;}
.wsae{word-spacing:2.400000pt;}
.ws4d{word-spacing:2.453333pt;}
.ws32{word-spacing:2.506667pt;}
.ws1c{word-spacing:2.517333pt;}
.wsdc{word-spacing:2.560000pt;}
.ws36{word-spacing:2.613333pt;}
.ws40{word-spacing:2.666667pt;}
.wsd2{word-spacing:2.720000pt;}
.wse{word-spacing:2.773333pt;}
.ws5a{word-spacing:2.826667pt;}
.ws1f{word-spacing:2.880000pt;}
.wsf8{word-spacing:2.901333pt;}
.wsad{word-spacing:2.933333pt;}
.wse8{word-spacing:2.986667pt;}
.ws2b{word-spacing:3.040000pt;}
.wsf1{word-spacing:3.072000pt;}
.ws61{word-spacing:3.146667pt;}
.wse5{word-spacing:3.200000pt;}
.wse2{word-spacing:3.306667pt;}
.wsf7{word-spacing:3.328000pt;}
.ws80{word-spacing:3.360000pt;}
.wsfa{word-spacing:3.370667pt;}
.ws31{word-spacing:3.413333pt;}
.wscc{word-spacing:3.466667pt;}
.ws52{word-spacing:3.573333pt;}
.wsd7{word-spacing:3.680000pt;}
.wsc9{word-spacing:3.733333pt;}
.ws68{word-spacing:3.786667pt;}
.wsd6{word-spacing:3.840000pt;}
.wse9{word-spacing:3.882667pt;}
.ws16{word-spacing:3.893333pt;}
.wsf3{word-spacing:3.925333pt;}
.ws19{word-spacing:4.000000pt;}
.wsff{word-spacing:4.010667pt;}
.wsa{word-spacing:4.053333pt;}
.ws10{word-spacing:4.213333pt;}
.wse6{word-spacing:4.320000pt;}
.wsda{word-spacing:4.373333pt;}
.wsa5{word-spacing:4.426667pt;}
.ws13{word-spacing:4.533333pt;}
.wse3{word-spacing:4.640000pt;}
.wsa6{word-spacing:4.693333pt;}
.wsd1{word-spacing:4.800000pt;}
.ws2e{word-spacing:4.853333pt;}
.ws83{word-spacing:4.906667pt;}
.ws86{word-spacing:4.960000pt;}
.ws85{word-spacing:5.013333pt;}
.ws46{word-spacing:5.173333pt;}
.ws43{word-spacing:5.280000pt;}
.ws50{word-spacing:5.333333pt;}
.ws5f{word-spacing:5.386667pt;}
.ws3b{word-spacing:5.546667pt;}
.wsc4{word-spacing:5.653333pt;}
.ws4e{word-spacing:5.706667pt;}
.ws5c{word-spacing:5.760000pt;}
.wsf2{word-spacing:5.888000pt;}
.wsc3{word-spacing:5.920000pt;}
.ws4f{word-spacing:5.973333pt;}
.wsdd{word-spacing:6.026667pt;}
.wsfd{word-spacing:6.101333pt;}
.ws27{word-spacing:6.133333pt;}
.wsd8{word-spacing:6.240000pt;}
.wsaf{word-spacing:6.346667pt;}
.wsc8{word-spacing:6.453333pt;}
.wsde{word-spacing:6.506667pt;}
.wsd5{word-spacing:6.560000pt;}
.ws25{word-spacing:6.666667pt;}
.ws53{word-spacing:6.720000pt;}
.ws105{word-spacing:6.741333pt;}
.ws56{word-spacing:6.880000pt;}
.ws3e{word-spacing:6.933333pt;}
.ws58{word-spacing:6.986667pt;}
.wsc{word-spacing:7.040000pt;}
.ws3c{word-spacing:7.093333pt;}
.ws2c{word-spacing:7.200000pt;}
.wse0{word-spacing:7.253333pt;}
.ws5d{word-spacing:7.306667pt;}
.wsce{word-spacing:7.360000pt;}
.wsd{word-spacing:7.626667pt;}
.ws17{word-spacing:7.680000pt;}
.ws2d{word-spacing:7.733333pt;}
.ws24{word-spacing:7.840000pt;}
.wsf6{word-spacing:7.850667pt;}
.ws9{word-spacing:7.893333pt;}
.ws7{word-spacing:8.160000pt;}
.ws49{word-spacing:8.373333pt;}
.wsfb{word-spacing:8.704000pt;}
.wsc5{word-spacing:9.013333pt;}
.ws14{word-spacing:9.066667pt;}
.ws15{word-spacing:9.280000pt;}
.wsb{word-spacing:9.973333pt;}
.ws89{word-spacing:10.080000pt;}
.ws64{word-spacing:10.453333pt;}
.ws11{word-spacing:11.093333pt;}
.wsc7{word-spacing:11.146667pt;}
.ws18{word-spacing:11.253333pt;}
.ws67{word-spacing:11.573333pt;}
.ws57{word-spacing:11.680000pt;}
.ws33{word-spacing:12.693333pt;}
.ws23{word-spacing:14.240000pt;}
.ws1d{word-spacing:17.482667pt;}
.ws102{word-spacing:20.096000pt;}
.ws9a{word-spacing:106.518976pt;}
.ws9d{word-spacing:106.519453pt;}
.ws91{word-spacing:106.519458pt;}
.ws9c{word-spacing:106.519465pt;}
.ws94{word-spacing:106.519865pt;}
.ws90{word-spacing:106.684782pt;}
.ws93{word-spacing:107.181811pt;}
.ws9e{word-spacing:107.181893pt;}
.ws99{word-spacing:108.267708pt;}
.ws9b{word-spacing:108.764656pt;}
.wsc0{word-spacing:108.843750pt;}
.wsa4{word-spacing:113.602702pt;}
.wsb6{word-spacing:115.969083pt;}
.wsbe{word-spacing:116.400516pt;}
.wsc1{word-spacing:116.500651pt;}
.wsa1{word-spacing:120.726969pt;}
.wsa2{word-spacing:120.727453pt;}
.wsa0{word-spacing:120.892782pt;}
.wsa3{word-spacing:121.389811pt;}
.wsbb{word-spacing:123.093758pt;}
.wsbc{word-spacing:123.093921pt;}
.wsb4{word-spacing:123.525849pt;}
.wsb7{word-spacing:123.625984pt;}
.ws92{word-spacing:127.852787pt;}
.ws96{word-spacing:127.852791pt;}
.ws98{word-spacing:127.853198pt;}
.ws95{word-spacing:128.018115pt;}
.ws97{word-spacing:128.515145pt;}
.wsc2{word-spacing:130.176921pt;}
.wsbf{word-spacing:137.301921pt;}
.wsb9{word-spacing:139.392586pt;}
.wsb8{word-spacing:144.427091pt;}
.wsb5{word-spacing:144.427254pt;}
.wsba{word-spacing:147.050138pt;}
.wsbd{word-spacing:157.774400pt;}
.ws8d{word-spacing:159.852787pt;}
.ws8c{word-spacing:159.852791pt;}
.ws8f{word-spacing:159.853198pt;}
.ws8a{word-spacing:160.018115pt;}
.ws8e{word-spacing:160.515226pt;}
.ws9f{word-spacing:169.657582pt;}
.wsb3{word-spacing:178.517911pt;}
.ws6e{word-spacing:460.373333pt;}
.ws6f{word-spacing:619.839986pt;}
.ws70{word-spacing:625.973333pt;}
.ws6a{word-spacing:635.199992pt;}
.ws71{word-spacing:638.240000pt;}
._1c{margin-left:-58.979187pt;}
._d{margin-left:-6.037333pt;}
._2{margin-left:-3.920000pt;}
._1{margin-left:-2.954667pt;}
._7{margin-left:-1.973333pt;}
._0{margin-left:-0.906667pt;}
._6{width:1.100800pt;}
._3{width:2.064000pt;}
._1b{width:2.954671pt;}
._9{width:3.845332pt;}
._8{width:4.821333pt;}
._e{width:6.314667pt;}
._b{width:7.354666pt;}
._a{width:8.832000pt;}
._4{width:10.010667pt;}
._f{width:11.370667pt;}
._15{width:12.322135pt;}
._5{width:15.571736pt;}
._10{width:16.586667pt;}
._c{width:17.482667pt;}
._1d{width:50.005333pt;}
._19{width:126.636266pt;}
._1a{width:128.609600pt;}
._13{width:138.519449pt;}
._14{width:140.492782pt;}
._17{width:147.969600pt;}
._12{width:159.852782pt;}
._18{width:178.517189pt;}
._16{width:203.824471pt;}
._11{width:502.635218pt;}
.fsb{font-size:29.866667pt;}
.fsa{font-size:36.662399pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:52.794133pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:1.042806pt;}
.yb2{bottom:1.043538pt;}
.y54{bottom:1.195557pt;}
.y84{bottom:1.195597pt;}
.yab{bottom:1.195608pt;}
.ycc{bottom:1.196004pt;}
.yc7{bottom:1.196289pt;}
.yc3{bottom:1.196370pt;}
.ybd{bottom:1.196615pt;}
.ycf{bottom:1.196655pt;}
.yae{bottom:1.196940pt;}
.y8f{bottom:1.471334pt;}
.y94{bottom:1.471721pt;}
.y4f{bottom:1.655599pt;}
.yf9{bottom:1.655843pt;}
.y110{bottom:1.655965pt;}
.yf0{bottom:1.656006pt;}
.y2c{bottom:1.656901pt;}
.yf6{bottom:1.656932pt;}
.y80{bottom:1.656942pt;}
.y9b{bottom:2.391439pt;}
.yc9{bottom:2.391764pt;}
.ybf{bottom:2.392253pt;}
.y9f{bottom:2.392660pt;}
.ya8{bottom:2.392924pt;}
.y97{bottom:2.392945pt;}
.yd2{bottom:2.576009pt;}
.yb9{bottom:3.127523pt;}
.y82{bottom:3.127584pt;}
.yc5{bottom:3.128255pt;}
.ya7{bottom:3.128662pt;}
.y87{bottom:3.128937pt;}
.y112{bottom:3.188924pt;}
.ya2{bottom:3.188944pt;}
.yf4{bottom:3.190267pt;}
.ydb{bottom:3.954936pt;}
.y8c{bottom:17.111196pt;}
.y8e{bottom:29.623199pt;}
.y93{bottom:29.623617pt;}
.y7{bottom:31.933340pt;}
.y4a{bottom:41.543200pt;}
.y7d{bottom:41.574800pt;}
.y6{bottom:59.133337pt;}
.ydc{bottom:80.001200pt;}
.y49{bottom:80.001333pt;}
.y7c{bottom:80.377869pt;}
.y10d{bottom:84.720133pt;}
.y5{bottom:86.333337pt;}
.y7b{bottom:96.377869pt;}
.y10c{bottom:100.236399pt;}
.y117{bottom:109.711202pt;}
.y86{bottom:109.758667pt;}
.yaf{bottom:110.526662pt;}
.y7a{bottom:112.377869pt;}
.y141{bottom:113.044535pt;}
.y10b{bottom:115.752665pt;}
.y116{bottom:122.377869pt;}
.y24{bottom:123.790666pt;}
.y140{bottom:125.711202pt;}
.y8a{bottom:126.277863pt;}
.y8b{bottom:126.278666pt;}
.yad{bottom:126.525330pt;}
.y79{bottom:128.377869pt;}
.y10a{bottom:131.268799pt;}
.y115{bottom:135.044535pt;}
.y13f{bottom:138.377869pt;}
.yac{bottom:141.760000pt;}
.yaa{bottom:142.526662pt;}
.y8d{bottom:143.389862pt;}
.y78{bottom:144.377869pt;}
.y109{bottom:146.785065pt;}
.y114{bottom:147.711202pt;}
.y13e{bottom:151.044535pt;}
.yf3{bottom:156.992004pt;}
.yf5{bottom:157.758667pt;}
.y77{bottom:160.377869pt;}
.y108{bottom:162.301331pt;}
.y13d{bottom:163.711202pt;}
.y1b{bottom:175.052000pt;}
.y76{bottom:176.377869pt;}
.y107{bottom:177.817607pt;}
.y41{bottom:183.294006pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y13c{bottom:189.044535pt;}
.ya9{bottom:189.760010pt;}
.y75{bottom:192.377869pt;}
.y106{bottom:193.333862pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y40{bottom:199.294006pt;}
.y13b{bottom:201.711202pt;}
.ya6{bottom:205.710673pt;}
.ya5{bottom:205.758667pt;}
.y74{bottom:208.377869pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y105{bottom:208.850138pt;}
.y13a{bottom:214.377869pt;}
.ya4{bottom:220.993327pt;}
.y104{bottom:224.366272pt;}
.y73{bottom:224.377869pt;}
.y139{bottom:227.044535pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y3f{bottom:231.294006pt;}
.y88{bottom:232.376790pt;}
.ya1{bottom:236.993327pt;}
.ya3{bottom:237.760010pt;}
.y138{bottom:239.711202pt;}
.y103{bottom:239.882670pt;}
.y72{bottom:240.377869pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y3e{bottom:247.294006pt;}
.yed{bottom:250.513204pt;}
.y137{bottom:252.377869pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y102{bottom:255.398804pt;}
.y71{bottom:256.377869pt;}
.y3d{bottom:263.294006pt;}
.y136{bottom:265.044535pt;}
.yec{bottom:266.029460pt;}
.y101{bottom:270.915059pt;}
.y70{bottom:272.377869pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y135{bottom:277.711202pt;}
.y3c{bottom:279.293864pt;}
.yeb{bottom:281.545736pt;}
.y85{bottom:286.526672pt;}
.y100{bottom:286.531331pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y6f{bottom:288.377869pt;}
.y134{bottom:290.377869pt;}
.y3b{bottom:295.293864pt;}
.yea{bottom:297.061991pt;}
.yff{bottom:301.486267pt;}
.ydd{bottom:301.867859pt;}
.y133{bottom:303.044535pt;}
.y6e{bottom:304.377869pt;}
.y12{bottom:309.452000pt;}
.y3a{bottom:311.293864pt;}
.ye9{bottom:312.578267pt;}
.y132{bottom:315.711202pt;}
.yfe{bottom:316.441203pt;}
.y15b{bottom:317.415202pt;}
.y6d{bottom:320.377869pt;}
.y39{bottom:327.293864pt;}
.ye8{bottom:328.094543pt;}
.y131{bottom:328.377869pt;}
.yfd{bottom:329.107869pt;}
.y15a{bottom:332.481873pt;}
.yda{bottom:332.610657pt;}
.y81{bottom:333.760010pt;}
.y83{bottom:334.526672pt;}
.y6c{bottom:336.377869pt;}
.y130{bottom:341.044535pt;}
.y38{bottom:343.293986pt;}
.ye7{bottom:343.610677pt;}
.y11{bottom:343.809333pt;}
.y159{bottom:349.415202pt;}
.y7f{bottom:349.758667pt;}
.y6b{bottom:352.377848pt;}
.y12f{bottom:353.711182pt;}
.ye6{bottom:359.126953pt;}
.y37{bottom:359.293986pt;}
.y10{bottom:362.706666pt;}
.y158{bottom:364.481852pt;}
.yf2{bottom:365.760010pt;}
.y12e{bottom:366.377848pt;}
.y6a{bottom:368.377848pt;}
.ye5{bottom:374.643188pt;}
.y36{bottom:375.293986pt;}
.y12d{bottom:379.044515pt;}
.y157{bottom:381.415202pt;}
.y69{bottom:384.377848pt;}
.ye4{bottom:390.159465pt;}
.y35{bottom:391.293986pt;}
.y12c{bottom:391.711182pt;}
.yfc{bottom:397.758667pt;}
.y68{bottom:400.377848pt;}
.y156{bottom:400.748535pt;}
.y12b{bottom:404.377848pt;}
.ye3{bottom:405.675741pt;}
.y34{bottom:407.293986pt;}
.yfa{bottom:410.062256pt;}
.y111{bottom:412.993327pt;}
.y113{bottom:413.760010pt;}
.y155{bottom:415.815186pt;}
.y67{bottom:416.377848pt;}
.y12a{bottom:417.044515pt;}
.yf8{bottom:420.110677pt;}
.ye2{bottom:421.192017pt;}
.yf7{bottom:422.728923pt;}
.y33{bottom:423.293986pt;}
.y129{bottom:429.711182pt;}
.yf{bottom:430.990669pt;}
.y66{bottom:432.377848pt;}
.y154{bottom:432.748535pt;}
.ye1{bottom:436.708252pt;}
.y32{bottom:439.293986pt;}
.y128{bottom:442.377848pt;}
.ye{bottom:446.990669pt;}
.y153{bottom:447.815186pt;}
.y65{bottom:448.377848pt;}
.ye0{bottom:452.324544pt;}
.y127{bottom:455.044515pt;}
.y31{bottom:455.293986pt;}
.yd{bottom:462.990669pt;}
.y64{bottom:464.377848pt;}
.y152{bottom:464.748535pt;}
.y126{bottom:467.711182pt;}
.ydf{bottom:467.840820pt;}
.y30{bottom:471.293986pt;}
.y9e{bottom:474.594686pt;}
.y9d{bottom:474.595337pt;}
.ya0{bottom:476.729085pt;}
.yc{bottom:478.990666pt;}
.y63{bottom:480.377848pt;}
.yde{bottom:482.795614pt;}
.y151{bottom:486.376953pt;}
.y2f{bottom:487.293986pt;}
.yb{bottom:494.990666pt;}
.y62{bottom:496.377848pt;}
.y150{bottom:499.043620pt;}
.y2e{bottom:503.293986pt;}
.y99{bottom:506.594116pt;}
.y9a{bottom:506.594686pt;}
.y9c{bottom:508.727865pt;}
.y61{bottom:512.377848pt;}
.y2d{bottom:519.293986pt;}
.yf1{bottom:524.622518pt;}
.yfb{bottom:525.760010pt;}
.y60{bottom:528.377848pt;}
.y2b{bottom:532.674683pt;}
.yef{bottom:534.670654pt;}
.y10f{bottom:534.990682pt;}
.y2a{bottom:535.293986pt;}
.yee{bottom:537.289185pt;}
.y10e{bottom:537.609049pt;}
.y96{bottom:538.592000pt;}
.y95{bottom:538.592814pt;}
.y98{bottom:540.726522pt;}
.y5f{bottom:544.377848pt;}
.y29{bottom:551.293986pt;}
.y125{bottom:551.713745pt;}
.y5e{bottom:560.377848pt;}
.y124{bottom:564.380412pt;}
.y28{bottom:567.293986pt;}
.y90{bottom:570.591593pt;}
.y92{bottom:570.592000pt;}
.ya{bottom:573.786667pt;}
.y5d{bottom:576.377848pt;}
.y123{bottom:577.047078pt;}
.y91{bottom:587.703613pt;}
.y122{bottom:589.713745pt;}
.y5c{bottom:592.377848pt;}
.y9{bottom:592.685334pt;}
.y121{bottom:602.380412pt;}
.y5b{bottom:608.377848pt;}
.y43{bottom:611.309611pt;}
.y120{bottom:615.047078pt;}
.yd1{bottom:619.564006pt;}
.yd9{bottom:621.760010pt;}
.yd4{bottom:621.767985pt;}
.y42{bottom:623.976278pt;}
.y5a{bottom:624.377848pt;}
.yd3{bottom:624.434814pt;}
.y11f{bottom:627.713745pt;}
.y14f{bottom:631.982137pt;}
.yd0{bottom:639.389730pt;}
.y59{bottom:640.377848pt;}
.y11e{bottom:640.380412pt;}
.y14e{bottom:644.648804pt;}
.y8{bottom:645.598667pt;}
.ycd{bottom:651.677327pt;}
.y11d{bottom:653.047078pt;}
.yce{bottom:654.344686pt;}
.y58{bottom:656.377848pt;}
.y48{bottom:658.433065pt;}
.yc8{bottom:666.681315pt;}
.ycb{bottom:668.885335pt;}
.y4{bottom:668.977329pt;}
.y14d{bottom:669.648804pt;}
.yca{bottom:671.552002pt;}
.y57{bottom:672.377848pt;}
.y47{bottom:674.433065pt;}
.y11c{bottom:681.712524pt;}
.y14c{bottom:682.315470pt;}
.yc4{bottom:683.840007pt;}
.yc6{bottom:686.506836pt;}
.y56{bottom:688.377848pt;}
.y14b{bottom:694.982096pt;}
.yc2{bottom:698.794678pt;}
.yc1{bottom:701.461751pt;}
.yd8{bottom:701.760010pt;}
.y55{bottom:704.377848pt;}
.y14a{bottom:707.648763pt;}
.ybe{bottom:709.257324pt;}
.y11b{bottom:710.377848pt;}
.y46{bottom:712.165365pt;}
.yc0{bottom:714.128418pt;}
.y52{bottom:717.760010pt;}
.y53{bottom:718.526693pt;}
.y149{bottom:720.315430pt;}
.y51{bottom:720.377848pt;}
.ybc{bottom:726.416016pt;}
.ybb{bottom:729.083333pt;}
.y45{bottom:732.165365pt;}
.y148{bottom:732.982096pt;}
.y50{bottom:736.377848pt;}
.yb8{bottom:739.083984pt;}
.y11a{bottom:741.711182pt;}
.yba{bottom:741.750000pt;}
.y147{bottom:745.648763pt;}
.y4e{bottom:749.760010pt;}
.y44{bottom:752.165365pt;}
.y4d{bottom:752.377848pt;}
.y119{bottom:754.377848pt;}
.yb7{bottom:756.704915pt;}
.y146{bottom:758.315430pt;}
.y4c{bottom:768.377848pt;}
.yb4{bottom:769.808024pt;}
.y145{bottom:770.982096pt;}
.yb6{bottom:773.145589pt;}
.y3{bottom:781.661334pt;}
.y118{bottom:783.044515pt;}
.y144{bottom:783.648763pt;}
.y7e{bottom:784.377848pt;}
.yb1{bottom:786.247965pt;}
.yb3{bottom:789.586263pt;}
.yd6{bottom:795.711182pt;}
.y143{bottom:796.315430pt;}
.y25{bottom:799.716553pt;}
.y4b{bottom:800.377848pt;}
.yb0{bottom:805.202555pt;}
.y89{bottom:805.284098pt;}
.yd5{bottom:808.377848pt;}
.y142{bottom:808.982096pt;}
.yd7{bottom:813.058024pt;}
.y27{bottom:822.167969pt;}
.y26{bottom:834.834635pt;}
.y2{bottom:840.112001pt;}
.y1{bottom:859.312000pt;}
.h25{height:7.666667pt;}
.h24{height:9.198667pt;}
.h21{height:9.200000pt;}
.h17{height:10.733333pt;}
.h22{height:10.734666pt;}
.h16{height:12.266666pt;}
.he{height:12.268000pt;}
.h20{height:13.800000pt;}
.h27{height:14.566667pt;}
.h35{height:24.908333pt;}
.h1e{height:28.413359pt;}
.h7{height:28.560000pt;}
.h23{height:28.916667pt;}
.h1b{height:31.433333pt;}
.h18{height:34.949716pt;}
.h13{height:35.583333pt;}
.h1c{height:39.595600pt;}
.hb{height:40.405333pt;}
.h1d{height:40.757071pt;}
.h6{height:40.800000pt;}
.h2c{height:40.847402pt;}
.h2f{height:40.847484pt;}
.h2d{height:40.847487pt;}
.h29{height:40.847565pt;}
.h2a{height:40.847891pt;}
.h2e{height:40.847972pt;}
.h33{height:40.847993pt;}
.h31{height:40.848008pt;}
.h30{height:40.848011pt;}
.h32{height:40.848013pt;}
.h2b{height:40.848053pt;}
.h1f{height:40.915453pt;}
.h19{height:41.088000pt;}
.ha{height:41.472000pt;}
.h34{height:42.197333pt;}
.h3{height:42.840000pt;}
.h28{height:43.093333pt;}
.hd{height:44.479167pt;}
.h2{height:48.960000pt;}
.hf{height:50.840750pt;}
.h10{height:51.360000pt;}
.h26{height:52.266667pt;}
.hc{height:52.746667pt;}
.h1a{height:53.375000pt;}
.h12{height:57.621333pt;}
.h15{height:58.021333pt;}
.h14{height:64.000000pt;}
.h11{height:66.768000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w19{width:8.433333pt;}
.w13{width:9.966667pt;}
.w1b{width:11.500000pt;}
.wa{width:13.033333pt;}
.w12{width:13.800000pt;}
.w7{width:16.866666pt;}
.w1a{width:17.633333pt;}
.w9{width:19.166667pt;}
.w15{width:19.168000pt;}
.w16{width:19.933333pt;}
.w6{width:23.765333pt;}
.w5{width:23.766667pt;}
.wb{width:29.133333pt;}
.w14{width:29.899999pt;}
.w1e{width:32.966667pt;}
.w1f{width:34.500000pt;}
.w8{width:35.266667pt;}
.w17{width:36.798667pt;}
.w1c{width:36.800000pt;}
.w18{width:38.333333pt;}
.w11{width:54.433333pt;}
.w1d{width:95.068003pt;}
.w10{width:100.433329pt;}
.wc{width:101.966665pt;}
.wf{width:106.566671pt;}
.we{width:109.633331pt;}
.wd{width:189.366659pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:1.042135pt;}
.x20{left:32.966532pt;}
.x21{left:34.254537pt;}
.x1c{left:43.086528pt;}
.x1d{left:44.374532pt;}
.x6{left:68.031469pt;}
.x5{left:71.917603pt;}
.x37{left:80.165333pt;}
.x11{left:83.149602pt;}
.x3e{left:87.198263pt;}
.x1{left:90.706667pt;}
.x2e{left:91.798136pt;}
.x2{left:94.486667pt;}
.x38{left:99.331462pt;}
.x4c{left:100.998128pt;}
.x16{left:109.502665pt;}
.x4d{left:120.029338pt;}
.x17{left:122.536133pt;}
.x4a{left:131.098796pt;}
.x59{left:133.461202pt;}
.x4e{left:154.528402pt;}
.x4f{left:176.935994pt;}
.x4{left:180.874667pt;}
.x1f{left:194.849202pt;}
.x49{left:201.677327pt;}
.x57{left:203.997335pt;}
.x39{left:222.086670pt;}
.x3f{left:222.992126pt;}
.x58{left:227.764669pt;}
.x50{left:231.369995pt;}
.x23{left:234.317342pt;}
.x25{left:235.850667pt;}
.x1a{left:238.150675pt;}
.x3b{left:242.019470pt;}
.x22{left:248.761210pt;}
.x1b{left:259.157328pt;}
.x51{left:262.137329pt;}
.x18{left:268.482666pt;}
.x52{left:285.903870pt;}
.x19{left:297.616800pt;}
.x1e{left:302.397196pt;}
.x33{left:306.414673pt;}
.x5c{left:312.079997pt;}
.x34{left:325.581075pt;}
.x28{left:329.549337pt;}
.x40{left:331.210673pt;}
.x47{left:334.968262pt;}
.x27{left:339.350525pt;}
.x26{left:342.417196pt;}
.x24{left:343.950521pt;}
.xd{left:345.368000pt;}
.x2f{left:350.453328pt;}
.x48{left:362.574666pt;}
.x30{left:364.254150pt;}
.x5d{left:366.513468pt;}
.xe{left:369.135050pt;}
.x45{left:375.265218pt;}
.x29{left:383.983602pt;}
.xf{left:385.773315pt;}
.x31{left:392.609333pt;}
.x5e{left:395.534667pt;}
.x46{left:399.930664pt;}
.x10{left:402.640666pt;}
.x3{left:404.408000pt;}
.x42{left:407.319987pt;}
.x41{left:408.336019pt;}
.x4b{left:411.654663pt;}
.x2a{left:415.493327pt;}
.x12{left:417.974650pt;}
.x5f{left:419.300537pt;}
.x5a{left:420.331991pt;}
.x53{left:434.345337pt;}
.x2c{left:435.998657pt;}
.x2b{left:439.259196pt;}
.x14{left:440.191447pt;}
.x13{left:441.740804pt;}
.x5b{left:444.099447pt;}
.x35{left:446.437337pt;}
.xb{left:448.877319pt;}
.xa{left:451.904256pt;}
.x54{left:458.112020pt;}
.x44{left:461.642660pt;}
.x9{left:463.255737pt;}
.x36{left:470.203613pt;}
.xc{left:472.643188pt;}
.x3c{left:476.137329pt;}
.x55{left:478.910685pt;}
.x32{left:487.894653pt;}
.x2d{left:490.431600pt;}
.x43{left:491.981323pt;}
.x7{left:494.027995pt;}
.x3d{left:495.303874pt;}
.x15{left:498.629313pt;}
.x56{left:502.677205pt;}
.x8{left:517.795329pt;}
}




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