
    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_05314d832ed641f8b7152dee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926270;font-style:normal;font-weight: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_ea6345a0e425f858986591a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926758;font-style:normal;font-weight: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_2d2fafa41e941d76398683b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;font-style:normal;font-weight: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_de50afe22f016ace90ea01d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;font-style:normal;font-weight: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_06047ec1de506f6042f9ff7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740234;font-style:normal;font-weight: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_759636ed0419df912f6d9f6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight: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_930b56d724b8c6ded4fcd570.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight: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_881886660d3d7797a69bfd62.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;font-style:normal;font-weight: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_658648003555169b8999ce60.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.926758;font-style:normal;font-weight: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_0397235ff7feeb6c139f31c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight: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_a1866086b297bb6444211cfe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight: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_7f5c4e1919b343fee6962d53.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight: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_5a0c34313b4586a270cf769c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight: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_fc9aa5d3bdbf37018ec9a865.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740234;font-style:normal;font-weight: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_d1df238a9ad0264679d61799.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight: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_9d08d826b30791a481b11841.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight: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_c3d6fe17fadd79310332de9e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740234;font-style:normal;font-weight: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_24d7ba7f88b72b1b9e9ae350.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.926758;font-style:normal;font-weight: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_1a3fe188de2496b4b952f558.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight: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_ed975d9c6ce3998bb1e86e23.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.739746;font-style:normal;font-weight: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_eafe6032741b87ed8a672df9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight: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_a252dd954bd74b25eed4cf4b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861816;font-style:normal;font-weight: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_2a99e10fcb2a50062bacbc4d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.739746;font-style:normal;font-weight: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_9556648eff641db77f29856b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938965;font-style:normal;font-weight: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_6ca2b66067e05352c06014de.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.739746;font-style:normal;font-weight: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_026c3f4f12b9d6afe0189804.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;font-style:normal;font-weight: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_f45129a8f8a81eff301fda61.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.739746;font-style:normal;font-weight: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_72753d2f0d9e43807f22913d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.739746;font-style:normal;font-weight: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_4d76b6af699b2a6756df01e3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;font-style:normal;font-weight: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_5f95196901c9bbaed9709915.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;font-style:normal;font-weight: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_fd9846322fafe3a46b9151fb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.739746;font-style:normal;font-weight: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_568015daeffddb7eb34f5cbc.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;font-style:normal;font-weight: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_b10efcb4061bb725330ca91c.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;font-style:normal;font-weight: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_92e2321abda38acdcdc2594f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938477;font-style:normal;font-weight: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_4c3902101a7ea65dd637e8e9.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.739746;font-style:normal;font-weight: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_25a4c32556f3c42b6ffb8f7b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight: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_cd8d5a351dde3942d86a83e6.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938477;font-style:normal;font-weight: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_11e001563bc169e23119b1c6.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938477;font-style:normal;font-weight: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_3a0d3a8c6afc4014368421f5.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.926758;font-style:normal;font-weight: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_74e6273392b3624729482e72.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938477;font-style:normal;font-weight: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_cd734b2993b33d660de009ea.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938477;font-style:normal;font-weight: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_c5b8791a30bd160f542e48a9.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;font-style:normal;font-weight: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_28a32a342b9369d8ba7255f3.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938965;font-style:normal;font-weight: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_bc82bcdda033fe0cae45496d.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938477;font-style:normal;font-weight: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_7cba00c075f1ac564773b299.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938477;font-style:normal;font-weight: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_6a8773eff5d6f73d7b45fbd1.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-style:normal;font-weight: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_21b8b90e0ae63a4e6bcd9071.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938477;font-style:normal;font-weight: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_8f65294b59a76a041eb46282.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938477;font-style:normal;font-weight: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_40ad11490dbc301135b6ace0.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938477;font-style:normal;font-weight: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_d20a0f400efd0825918cbe26.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938477;font-style:normal;font-weight: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_50a499f358f367b698b294f3.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.938477;font-style:normal;font-weight: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_fbe11ac76cd2e08a09530c62.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938477;font-style:normal;font-weight: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_f23a120913f7976918ed5be1.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.938477;font-style:normal;font-weight: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_9a0f2edc37f1fad341142e24.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.938477;font-style:normal;font-weight: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_8920362414b969c0d3785cd1.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.938477;font-style:normal;font-weight: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_617be5fa83e98acc98b5efa9.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.739746;font-style:normal;font-weight: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_ba76f98f6e00adbc8a9a7816.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.925293;font-style:normal;font-weight: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_9e864a45fdaa157aa7e3000d.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.926758;font-style:normal;font-weight: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_f73267a848d3e605a3a8e4f0.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.938477;font-style:normal;font-weight: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_591e2ef4e711aeef30d82d9b.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.925293;font-style:normal;font-weight: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_bd7b9e829c73324eb208da6f.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.938477;font-style:normal;font-weight: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_f37fa5c9545b544f9b95a0b2.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.925293;font-style:normal;font-weight: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_57430997f600514a57d022ae.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.728027;font-style:normal;font-weight: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_12e86f48eb2d7c56ca31ef9d.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_f2e64631b11ec379790ac11d.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_9678c3bbf4d34a40cf4b0f71.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_bfecdcd6b03a05c993851414.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_9c450786ce78dafcdb645c80.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_386fe8a348130e3bcce28321.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_47873cb1d671e2ad02c4fe85.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.926758;font-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.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-61.920000px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.ls39{letter-spacing:-16.200000px;}
.ls3a{letter-spacing:-10.809599px;}
.ls33{letter-spacing:-9.100799px;}
.ls38{letter-spacing:-6.456000px;}
.ls42{letter-spacing:-4.540799px;}
.ls36{letter-spacing:-3.849600px;}
.ls2{letter-spacing:-2.984735px;}
.ls27{letter-spacing:-1.900800px;}
.ls16{letter-spacing:-0.384000px;}
.ls17{letter-spacing:-0.336000px;}
.ls31{letter-spacing:-0.316800px;}
.ls2d{letter-spacing:-0.307200px;}
.lsf{letter-spacing:-0.302400px;}
.ls13{letter-spacing:-0.288000px;}
.ls30{letter-spacing:-0.278400px;}
.ls6{letter-spacing:-0.273000px;}
.ls4{letter-spacing:-0.252000px;}
.ls12{letter-spacing:-0.230400px;}
.ls11{letter-spacing:-0.201600px;}
.ls3f{letter-spacing:-0.158400px;}
.ls2f{letter-spacing:-0.153600px;}
.ls2c{letter-spacing:-0.124800px;}
.ls25{letter-spacing:-0.115200px;}
.lsb{letter-spacing:-0.105600px;}
.ls5{letter-spacing:-0.062400px;}
.ls3{letter-spacing:-0.057033px;}
.ls19{letter-spacing:-0.043200px;}
.ls18{letter-spacing:-0.032400px;}
.ls3c{letter-spacing:-0.027000px;}
.lsd{letter-spacing:-0.024000px;}
.ls1a{letter-spacing:-0.021600px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.010800px;}
.ls15{letter-spacing:0.021600px;}
.ls1f{letter-spacing:0.024000px;}
.ls35{letter-spacing:0.027000px;}
.ls26{letter-spacing:0.028800px;}
.ls1b{letter-spacing:0.032400px;}
.ls1e{letter-spacing:0.036000px;}
.ls32{letter-spacing:0.043200px;}
.lse{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.079200px;}
.ls9{letter-spacing:0.105600px;}
.ls37{letter-spacing:0.124800px;}
.ls8{letter-spacing:0.132600px;}
.ls34{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.158400px;}
.ls1c{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.187200px;}
.ls10{letter-spacing:0.201600px;}
.ls3b{letter-spacing:0.207000px;}
.ls41{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.218400px;}
.ls3e{letter-spacing:0.243000px;}
.ls28{letter-spacing:0.244800px;}
.ls3d{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.276003px;}
.ls2e{letter-spacing:0.278400px;}
.ls29{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.316800px;}
.lsc{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.342199px;}
.ls23{letter-spacing:0.384000px;}
.ls2a{letter-spacing:26.874605px;}
.ls24{letter-spacing:57.600000px;}
.ls40{letter-spacing:66.000002px;}
.ls1d{letter-spacing:95.040002px;}
.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;}
}
.ws2{word-spacing:-139.608016px;}
.ws6{word-spacing:-88.017584px;}
.ws25{word-spacing:-87.991184px;}
.ws11{word-spacing:-66.384013px;}
.ws1{word-spacing:-63.648992px;}
.wsa{word-spacing:-46.704013px;}
.ws8f{word-spacing:-43.367987px;}
.wsb0{word-spacing:-40.320000px;}
.ws45{word-spacing:-40.219200px;}
.ws75{word-spacing:-40.176000px;}
.wse{word-spacing:-40.032000px;}
.ws18{word-spacing:-33.539999px;}
.ws1b{word-spacing:-33.359999px;}
.ws1f{word-spacing:-30.056400px;}
.ws1e{word-spacing:-30.045600px;}
.ws17{word-spacing:-30.034800px;}
.ws14{word-spacing:-30.024000px;}
.ws65{word-spacing:-29.991600px;}
.ws16{word-spacing:-29.980800px;}
.wsc9{word-spacing:-27.004797px;}
.ws42{word-spacing:-26.966397px;}
.ws9e{word-spacing:-26.903999px;}
.ws34{word-spacing:-26.687997px;}
.ws37{word-spacing:-26.563197px;}
.wsb9{word-spacing:-26.534397px;}
.wsd6{word-spacing:-26.409597px;}
.ws8d{word-spacing:-26.380797px;}
.wsac{word-spacing:-26.371197px;}
.wsbf{word-spacing:-25.263000px;}
.wsb5{word-spacing:-25.227000px;}
.ws9f{word-spacing:-23.832000px;}
.ws23{word-spacing:-23.351999px;}
.ws3{word-spacing:-21.621597px;}
.wsc{word-spacing:-1.056182px;}
.ws2f{word-spacing:-0.857400px;}
.ws1a{word-spacing:-0.749988px;}
.ws2d{word-spacing:-0.729360px;}
.ws19{word-spacing:-0.719385px;}
.wsdc{word-spacing:-0.714590px;}
.ws44{word-spacing:-0.677400px;}
.ws26{word-spacing:-0.652200px;}
.ws28{word-spacing:-0.624000px;}
.wsb4{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.569040px;}
.wsb{word-spacing:-0.451598px;}
.ws9b{word-spacing:-0.404130px;}
.ws35{word-spacing:-0.381557px;}
.wsba{word-spacing:-0.378159px;}
.ws8{word-spacing:-0.368867px;}
.ws1c{word-spacing:-0.353983px;}
.ws97{word-spacing:-0.340713px;}
.wsd{word-spacing:-0.284640px;}
.wsb7{word-spacing:-0.281974px;}
.ws43{word-spacing:-0.273000px;}
.wsb3{word-spacing:-0.270000px;}
.wsc0{word-spacing:-0.264000px;}
.wsbd{word-spacing:-0.246162px;}
.wsaa{word-spacing:-0.245982px;}
.ws24{word-spacing:-0.212282px;}
.wsb6{word-spacing:-0.173400px;}
.ws15{word-spacing:-0.162000px;}
.ws78{word-spacing:-0.156060px;}
.ws67{word-spacing:-0.156000px;}
.ws2e{word-spacing:-0.138000px;}
.ws4e{word-spacing:-0.120600px;}
.ws57{word-spacing:-0.120000px;}
.ws85{word-spacing:-0.117000px;}
.ws66{word-spacing:-0.091200px;}
.ws84{word-spacing:-0.088800px;}
.ws8a{word-spacing:-0.088200px;}
.ws83{word-spacing:-0.086580px;}
.ws88{word-spacing:-0.086400px;}
.ws6c{word-spacing:-0.085200px;}
.ws62{word-spacing:-0.085140px;}
.ws4f{word-spacing:-0.084600px;}
.ws7c{word-spacing:-0.084000px;}
.ws7a{word-spacing:-0.081600px;}
.ws30{word-spacing:-0.081540px;}
.ws58{word-spacing:-0.079200px;}
.wsc2{word-spacing:-0.078000px;}
.ws52{word-spacing:-0.077400px;}
.ws4a{word-spacing:-0.076800px;}
.wsab{word-spacing:-0.075600px;}
.ws48{word-spacing:-0.074400px;}
.ws49{word-spacing:-0.070200px;}
.ws51{word-spacing:-0.069600px;}
.ws6a{word-spacing:-0.067800px;}
.ws86{word-spacing:-0.067380px;}
.ws47{word-spacing:-0.064800px;}
.ws77{word-spacing:-0.062400px;}
.ws76{word-spacing:-0.062340px;}
.wscf{word-spacing:-0.054600px;}
.ws5c{word-spacing:-0.054000px;}
.ws5d{word-spacing:-0.046800px;}
.wsd1{word-spacing:-0.045000px;}
.ws80{word-spacing:-0.044580px;}
.ws87{word-spacing:-0.044400px;}
.ws22{word-spacing:-0.043200px;}
.ws59{word-spacing:-0.042000px;}
.wsbc{word-spacing:-0.041978px;}
.ws5b{word-spacing:-0.040200px;}
.wsd0{word-spacing:-0.036600px;}
.ws6e{word-spacing:-0.036000px;}
.ws81{word-spacing:-0.033660px;}
.wscd{word-spacing:-0.028200px;}
.wsc1{word-spacing:-0.026460px;}
.ws20{word-spacing:-0.026400px;}
.ws7b{word-spacing:-0.024600px;}
.ws7f{word-spacing:-0.024000px;}
.wsce{word-spacing:-0.022200px;}
.ws71{word-spacing:-0.021600px;}
.ws4c{word-spacing:-0.018000px;}
.ws46{word-spacing:-0.012600px;}
.ws82{word-spacing:-0.012180px;}
.ws7d{word-spacing:-0.012000px;}
.ws50{word-spacing:-0.011400px;}
.ws64{word-spacing:-0.009600px;}
.wsb2{word-spacing:-0.007200px;}
.ws5a{word-spacing:-0.004800px;}
.wscc{word-spacing:-0.004200px;}
.ws61{word-spacing:-0.003660px;}
.ws6b{word-spacing:-0.003600px;}
.ws4{word-spacing:0.000000px;}
.ws68{word-spacing:0.002400px;}
.ws74{word-spacing:0.003000px;}
.ws89{word-spacing:0.004200px;}
.ws4b{word-spacing:0.004800px;}
.ws7e{word-spacing:0.005400px;}
.ws70{word-spacing:0.009600px;}
.ws6f{word-spacing:0.010200px;}
.wsdd{word-spacing:0.011968px;}
.wsb1{word-spacing:0.014400px;}
.ws79{word-spacing:0.016800px;}
.ws13{word-spacing:0.019200px;}
.ws12{word-spacing:0.020400px;}
.ws63{word-spacing:0.025200px;}
.wsa8{word-spacing:0.030024px;}
.ws5{word-spacing:0.031390px;}
.ws69{word-spacing:0.036000px;}
.wsc3{word-spacing:0.043200px;}
.ws6d{word-spacing:0.054000px;}
.ws72{word-spacing:0.054180px;}
.ws99{word-spacing:0.060019px;}
.ws2c{word-spacing:0.080400px;}
.ws73{word-spacing:0.093600px;}
.ws60{word-spacing:0.096000px;}
.ws21{word-spacing:0.100800px;}
.wsc4{word-spacing:0.103200px;}
.ws95{word-spacing:0.172838px;}
.wsca{word-spacing:0.173433px;}
.wsa4{word-spacing:0.174028px;}
.wsae{word-spacing:0.178950px;}
.ws53{word-spacing:0.179421px;}
.ws8c{word-spacing:0.180058px;}
.wsbb{word-spacing:0.182429px;}
.ws54{word-spacing:0.183028px;}
.ws8b{word-spacing:0.183643px;}
.wsc7{word-spacing:0.184662px;}
.ws41{word-spacing:0.184818px;}
.wsda{word-spacing:0.184823px;}
.ws92{word-spacing:0.184878px;}
.wsa2{word-spacing:0.184938px;}
.wse0{word-spacing:0.187231px;}
.wsa1{word-spacing:0.188366px;}
.ws3e{word-spacing:0.188430px;}
.wsa9{word-spacing:0.190835px;}
.ws7{word-spacing:0.215578px;}
.ws56{word-spacing:0.297048px;}
.ws90{word-spacing:0.307183px;}
.wsd8{word-spacing:0.308448px;}
.ws98{word-spacing:0.309472px;}
.ws3b{word-spacing:0.313231px;}
.ws91{word-spacing:0.315579px;}
.wsb8{word-spacing:0.315624px;}
.wsc8{word-spacing:0.324030px;}
.ws8e{word-spacing:0.393766px;}
.ws10{word-spacing:0.407657px;}
.wsd2{word-spacing:0.407837px;}
.ws39{word-spacing:0.433219px;}
.ws3f{word-spacing:0.433242px;}
.wsa0{word-spacing:0.433279px;}
.wsa3{word-spacing:0.434413px;}
.wsde{word-spacing:0.435511px;}
.ws5e{word-spacing:0.435631px;}
.wsd7{word-spacing:0.436826px;}
.ws5f{word-spacing:0.487230px;}
.ws55{word-spacing:0.487830px;}
.ws38{word-spacing:0.530427px;}
.ws9{word-spacing:0.545651px;}
.wsdf{word-spacing:0.546024px;}
.ws9c{word-spacing:0.591621px;}
.wsbe{word-spacing:0.648016px;}
.wsd5{word-spacing:0.699620px;}
.wsa5{word-spacing:0.726045px;}
.ws31{word-spacing:0.732018px;}
.wsa6{word-spacing:0.736840px;}
.ws36{word-spacing:0.752431px;}
.ws40{word-spacing:0.774021px;}
.wsa7{word-spacing:0.786020px;}
.ws9a{word-spacing:0.788252px;}
.wsc5{word-spacing:0.801631px;}
.wscb{word-spacing:0.821425px;}
.wse1{word-spacing:0.826828px;}
.ws94{word-spacing:0.844829px;}
.ws3a{word-spacing:0.858027px;}
.wsaf{word-spacing:0.861035px;}
.ws93{word-spacing:0.881978px;}
.wsad{word-spacing:0.894037px;}
.ws32{word-spacing:0.921329px;}
.ws96{word-spacing:0.921550px;}
.ws33{word-spacing:0.921610px;}
.ws9d{word-spacing:0.921629px;}
.wsdb{word-spacing:0.957629px;}
.ws3d{word-spacing:1.220433px;}
.ws3c{word-spacing:1.233607px;}
.wsd9{word-spacing:1.233727px;}
.ws2b{word-spacing:1.756800px;}
.wse3{word-spacing:4.276799px;}
.ws0{word-spacing:6.527127px;}
.ws2a{word-spacing:31.646400px;}
.ws29{word-spacing:32.284800px;}
.ws1d{word-spacing:42.033600px;}
.wsd4{word-spacing:55.622411px;}
.ws27{word-spacing:66.275727px;}
.wse2{word-spacing:87.608564px;}
.wsd3{word-spacing:131.496420px;}
.ws4d{word-spacing:848.499000px;}
.wsc6{word-spacing:2028.026427px;}
._8{margin-left:-11.955600px;}
._4{margin-left:-9.225937px;}
._c{margin-left:-7.487946px;}
._d{margin-left:-6.004800px;}
._9{margin-left:-4.228451px;}
._6{margin-left:-2.376000px;}
._1{margin-left:-1.127989px;}
._0{width:1.901105px;}
._2{width:3.802210px;}
._11{width:6.240000px;}
._3{width:7.338896px;}
._e{width:9.023999px;}
._14{width:10.655999px;}
._12{width:16.416000px;}
._13{width:25.950269px;}
._b{width:27.823256px;}
._10{width:28.977337px;}
._f{width:53.400017px;}
._a{width:57.600000px;}
._5{width:87.048000px;}
._7{width:95.040002px;}
._15{width:201.079560px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,48,153);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:77.999990px;}
.fs9{font-size:83.999995px;}
.fsb{font-size:90.000000px;}
.fsa{font-size:95.999990px;}
.fs7{font-size:108.000000px;}
.fs8{font-size:119.999995px;}
.fs6{font-size:144.000000px;}
.fsc{font-size:155.999952px;}
.fs5{font-size:168.000048px;}
.fs0{font-size:190.110490px;}
.fs4{font-size:240.000048px;}
.fs3{font-size:263.999952px;}
.fs1{font-size:420.000048px;}
.y0{bottom:0.000000px;}
.y4{bottom:21.240000px;}
.y8b{bottom:38.160000px;}
.y40{bottom:57.240000px;}
.y72{bottom:59.760000px;}
.y64{bottom:64.080000px;}
.y57{bottom:80.640000px;}
.y3a{bottom:84.960000px;}
.y3f{bottom:87.480000px;}
.y71{bottom:88.200000px;}
.y8a{bottom:88.920000px;}
.y53{bottom:92.880000px;}
.y1b{bottom:102.600000px;}
.y5d{bottom:111.960000px;}
.y3e{bottom:115.920000px;}
.y39{bottom:116.640000px;}
.y89{bottom:117.360000px;}
.y8d{bottom:119.160000px;}
.y52{bottom:121.680000px;}
.y21{bottom:124.200000px;}
.y96{bottom:128.520000px;}
.yd{bottom:133.920000px;}
.y62{bottom:135.360000px;}
.y23{bottom:136.080000px;}
.y1a{bottom:138.600000px;}
.y5c{bottom:143.640000px;}
.y3d{bottom:144.360000px;}
.y8c{bottom:146.160000px;}
.y51{bottom:150.120000px;}
.y31{bottom:151.200000px;}
.y20{bottom:160.200000px;}
.y93{bottom:167.040000px;}
.y61{bottom:168.120000px;}
.y46{bottom:168.480000px;}
.y3c{bottom:172.800000px;}
.y50{bottom:174.600000px;}
.y5b{bottom:176.400000px;}
.y19{bottom:183.600000px;}
.y30{bottom:183.960000px;}
.y92{bottom:194.040000px;}
.y1f{bottom:196.200000px;}
.y45{bottom:198.720000px;}
.y60{bottom:199.800000px;}
.y3b{bottom:201.240000px;}
.y4f{bottom:205.920000px;}
.yc{bottom:207.360000px;}
.y5a{bottom:208.080000px;}
.y18{bottom:219.600000px;}
.ya5{bottom:222.840000px;}
.y2f{bottom:224.640000px;}
.y44{bottom:227.160000px;}
.y1e{bottom:232.200000px;}
.y4e{bottom:239.040000px;}
.ya8{bottom:245.880000px;}
.y77{bottom:248.040000px;}
.y17{bottom:255.600000px;}
.y43{bottom:264.600000px;}
.y2e{bottom:266.760000px;}
.y6e{bottom:267.480000px;}
.y1d{bottom:268.200000px;}
.y76{bottom:276.480000px;}
.ya7{bottom:279.000000px;}
.yb{bottom:280.800000px;}
.y3{bottom:281.160000px;}
.y4d{bottom:286.200000px;}
.y38{bottom:291.240000px;}
.y42{bottom:293.040000px;}
.y2d{bottom:298.080000px;}
.y75{bottom:304.920000px;}
.ya6{bottom:306.720000px;}
.y81{bottom:307.440000px;}
.y63{bottom:313.920000px;}
.y7c{bottom:316.080000px;}
.y10{bottom:318.240000px;}
.y41{bottom:321.480000px;}
.y14{bottom:327.600000px;}
.y35{bottom:335.880000px;}
.y2c{bottom:340.200000px;}
.y7b{bottom:344.520000px;}
.y6a{bottom:349.920000px;}
.ya2{bottom:351.360000px;}
.ya{bottom:354.600000px;}
.y56{bottom:371.520000px;}
.y12{bottom:372.960000px;}
.y95{bottom:376.200000px;}
.ya1{bottom:380.160000px;}
.y22{bottom:381.960000px;}
.y69{bottom:382.680000px;}
.yad{bottom:399.600000px;}
.y94{bottom:403.200000px;}
.yb1{bottom:406.080000px;}
.ya0{bottom:408.600000px;}
.y99{bottom:411.120000px;}
.y68{bottom:415.800000px;}
.y2b{bottom:422.640000px;}
.yac{bottom:428.040000px;}
.y88{bottom:430.920000px;}
.y34{bottom:431.640000px;}
.yb0{bottom:434.520000px;}
.y9{bottom:439.560000px;}
.y2{bottom:443.160000px;}
.y32{bottom:447.120000px;}
.y67{bottom:447.480000px;}
.y5{bottom:448.920000px;}
.yab{bottom:456.480000px;}
.y87{bottom:459.360000px;}
.yaf{bottom:463.320000px;}
.y2a{bottom:464.760000px;}
.y16{bottom:466.920000px;}
.y66{bottom:480.240000px;}
.yaa{bottom:484.920000px;}
.y1{bottom:491.400000px;}
.yae{bottom:491.760000px;}
.y29{bottom:496.080000px;}
.y15{bottom:502.920000px;}
.yb3{bottom:510.840000px;}
.y65{bottom:511.920000px;}
.ya9{bottom:513.720000px;}
.yb6{bottom:514.800000px;}
.y91{bottom:519.840000px;}
.y8{bottom:531.000000px;}
.y25{bottom:539.280000px;}
.yb5{bottom:543.240000px;}
.y98{bottom:549.720000px;}
.y85{bottom:550.080000px;}
.y6d{bottom:558.720000px;}
.y90{bottom:559.080000px;}
.y9f{bottom:560.880000px;}
.y4c{bottom:563.760000px;}
.yb4{bottom:572.040000px;}
.y55{bottom:572.400000px;}
.y5f{bottom:573.480000px;}
.y84{bottom:578.520000px;}
.y7f{bottom:584.280000px;}
.y74{bottom:584.640000px;}
.y8f{bottom:587.520000px;}
.y9e{bottom:589.320000px;}
.y6c{bottom:590.400000px;}
.y7a{bottom:591.480000px;}
.y9c{bottom:594.720000px;}
.y37{bottom:595.440000px;}
.y54{bottom:603.720000px;}
.y4b{bottom:604.440000px;}
.y5e{bottom:605.160000px;}
.y7{bottom:605.880000px;}
.y78{bottom:606.600000px;}
.y83{bottom:606.960000px;}
.y59{bottom:609.120000px;}
.y86{bottom:612.360000px;}
.y7e{bottom:612.720000px;}
.y73{bottom:613.080000px;}
.y26{bottom:614.160000px;}
.yf{bottom:614.520000px;}
.y8e{bottom:615.960000px;}
.y70{bottom:616.320000px;}
.y9d{bottom:618.120000px;}
.y79{bottom:619.920000px;}
.y1c{bottom:620.640000px;}
.y9b{bottom:623.160000px;}
.ya4{bottom:628.560000px;}
.y13{bottom:635.040000px;}
.y28{bottom:636.120000px;}
.y58{bottom:640.440000px;}
.y7d{bottom:641.520000px;}
.y6b{bottom:646.560000px;}
.ye{bottom:647.280000px;}
.y6f{bottom:647.640000px;}
.y82{bottom:650.520000px;}
.y9a{bottom:651.600000px;}
.y33{bottom:652.320000px;}
.y97{bottom:652.680000px;}
.yb2{bottom:654.840000px;}
.y47{bottom:656.280000px;}
.ya3{bottom:659.880000px;}
.y4a{bottom:660.240000px;}
.y36{bottom:660.960000px;}
.y24{bottom:668.520000px;}
.y27{bottom:677.160000px;}
.y80{bottom:688.680000px;}
.y49{bottom:693.000000px;}
.y6{bottom:711.360000px;}
.y11{bottom:722.160000px;}
.y48{bottom:724.680000px;}
.h3{height:56.786126px;}
.hb{height:56.824212px;}
.hd{height:61.154293px;}
.h11{height:65.522461px;}
.h10{height:69.890618px;}
.h14{height:69.937493px;}
.h9{height:77.308594px;}
.h17{height:77.625000px;}
.h8{height:78.626953px;}
.hf{height:78.679688px;}
.hc{height:87.363278px;}
.ha{height:87.421872px;}
.h7{height:104.835938px;}
.he{height:104.906250px;}
.h12{height:113.572231px;}
.h13{height:113.648403px;}
.h6{height:122.308629px;}
.h1{height:136.084951px;}
.h18{height:171.796909px;}
.h16{height:172.500035px;}
.h5{height:174.726597px;}
.h15{height:188.976528px;}
.h4{height:192.199184px;}
.h2{height:300.644566px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x51{left:21.592800px;}
.x4b{left:23.961735px;}
.x24{left:29.714175px;}
.x44{left:31.589415px;}
.x4d{left:33.112200px;}
.x6{left:39.799845px;}
.x34{left:44.372595px;}
.x57{left:47.946495px;}
.x5c{left:49.889520px;}
.x5f{left:51.648195px;}
.x33{left:53.490000px;}
.x7{left:55.799760px;}
.x20{left:61.600035px;}
.x12{left:69.592560px;}
.x13{left:70.679415px;}
.x4f{left:72.514245px;}
.x60{left:76.210680px;}
.x5b{left:77.901255px;}
.x1b{left:79.201890px;}
.x5d{left:90.389520px;}
.x4e{left:100.348455px;}
.x40{left:103.687560px;}
.x35{left:108.775515px;}
.x3f{left:111.937545px;}
.x2b{left:113.373900px;}
.x1f{left:120.453540px;}
.xd{left:123.850395px;}
.xa{left:130.207320px;}
.x36{left:139.399005px;}
.x8{left:155.451900px;}
.x1c{left:157.304850px;}
.x3e{left:160.695300px;}
.x2c{left:166.623900px;}
.x2a{left:181.428150px;}
.x55{left:182.479050px;}
.x14{left:210.246450px;}
.x9{left:214.906350px;}
.x56{left:234.136650px;}
.x37{left:235.673550px;}
.x38{left:257.423550px;}
.x10{left:259.781250px;}
.x1{left:288.675600px;}
.x3d{left:320.631600px;}
.x39{left:354.923550px;}
.x1d{left:387.183000px;}
.x1a{left:394.871850px;}
.x26{left:401.339100px;}
.x5a{left:404.573100px;}
.x5{left:419.164350px;}
.x27{left:429.839100px;}
.x3c{left:433.571850px;}
.x11{left:446.524200px;}
.x25{left:451.401600px;}
.x2d{left:458.247000px;}
.x2e{left:464.247150px;}
.x41{left:466.834800px;}
.x23{left:482.685750px;}
.x4{left:484.842000px;}
.xc{left:501.165150px;}
.x52{left:507.942900px;}
.xb{left:512.803200px;}
.x64{left:516.405600px;}
.x3{left:524.220600px;}
.x54{left:541.976850px;}
.x1e{left:559.683000px;}
.x61{left:607.121700px;}
.x62{left:613.586700px;}
.x2{left:661.005600px;}
.x58{left:672.514500px;}
.x63{left:712.519200px;}
.x2f{left:753.747150px;}
.x15{left:759.364650px;}
.x3b{left:771.584550px;}
.x31{left:773.793450px;}
.x30{left:777.940950px;}
.x29{left:795.163650px;}
.x21{left:800.403150px;}
.x42{left:803.373150px;}
.x45{left:809.713350px;}
.x5e{left:816.679650px;}
.x46{left:822.038100px;}
.xf{left:847.800000px;}
.x47{left:857.100600px;}
.x4a{left:864.145950px;}
.x28{left:870.096750px;}
.xe{left:880.386450px;}
.x4c{left:885.648000px;}
.x59{left:889.234050px;}
.x3a{left:894.580800px;}
.x22{left:920.403150px;}
.x32{left:956.065950px;}
.x16{left:979.116450px;}
.x17{left:980.253150px;}
.x48{left:1022.948100px;}
.x43{left:1031.373300px;}
.x18{left:1036.096200px;}
.x49{left:1042.148100px;}
.x19{left:1076.596200px;}
.x50{left:1107.578550px;}
.x53{left:1114.953900px;}
@media print{
.v1{vertical-align:-55.040000pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls39{letter-spacing:-14.400000pt;}
.ls3a{letter-spacing:-9.608532pt;}
.ls33{letter-spacing:-8.089599pt;}
.ls38{letter-spacing:-5.738666pt;}
.ls42{letter-spacing:-4.036266pt;}
.ls36{letter-spacing:-3.421866pt;}
.ls2{letter-spacing:-2.653098pt;}
.ls27{letter-spacing:-1.689600pt;}
.ls16{letter-spacing:-0.341333pt;}
.ls17{letter-spacing:-0.298667pt;}
.ls31{letter-spacing:-0.281600pt;}
.ls2d{letter-spacing:-0.273067pt;}
.lsf{letter-spacing:-0.268800pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls30{letter-spacing:-0.247467pt;}
.ls6{letter-spacing:-0.242667pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls12{letter-spacing:-0.204800pt;}
.ls11{letter-spacing:-0.179200pt;}
.ls3f{letter-spacing:-0.140800pt;}
.ls2f{letter-spacing:-0.136533pt;}
.ls2c{letter-spacing:-0.110933pt;}
.ls25{letter-spacing:-0.102400pt;}
.lsb{letter-spacing:-0.093867pt;}
.ls5{letter-spacing:-0.055467pt;}
.ls3{letter-spacing:-0.050696pt;}
.ls19{letter-spacing:-0.038400pt;}
.ls18{letter-spacing:-0.028800pt;}
.ls3c{letter-spacing:-0.024000pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls1a{letter-spacing:-0.019200pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.009600pt;}
.ls15{letter-spacing:0.019200pt;}
.ls1f{letter-spacing:0.021333pt;}
.ls35{letter-spacing:0.024000pt;}
.ls26{letter-spacing:0.025600pt;}
.ls1b{letter-spacing:0.028800pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls32{letter-spacing:0.038400pt;}
.lse{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.070400pt;}
.ls9{letter-spacing:0.093867pt;}
.ls37{letter-spacing:0.110933pt;}
.ls8{letter-spacing:0.117867pt;}
.ls34{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.140800pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.166400pt;}
.ls10{letter-spacing:0.179200pt;}
.ls3b{letter-spacing:0.184000pt;}
.ls41{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.194133pt;}
.ls3e{letter-spacing:0.216000pt;}
.ls28{letter-spacing:0.217600pt;}
.ls3d{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.245336pt;}
.ls2e{letter-spacing:0.247467pt;}
.ls29{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.281600pt;}
.lsc{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.304177pt;}
.ls23{letter-spacing:0.341333pt;}
.ls2a{letter-spacing:23.888538pt;}
.ls24{letter-spacing:51.200000pt;}
.ls40{letter-spacing:58.666668pt;}
.ls1d{letter-spacing:84.480001pt;}
.ws2{word-spacing:-124.096014pt;}
.ws6{word-spacing:-78.237852pt;}
.ws25{word-spacing:-78.214386pt;}
.ws11{word-spacing:-59.008012pt;}
.ws1{word-spacing:-56.576882pt;}
.wsa{word-spacing:-41.514679pt;}
.ws8f{word-spacing:-38.549321pt;}
.wsb0{word-spacing:-35.840000pt;}
.ws45{word-spacing:-35.750400pt;}
.ws75{word-spacing:-35.712000pt;}
.wse{word-spacing:-35.584000pt;}
.ws18{word-spacing:-29.813332pt;}
.ws1b{word-spacing:-29.653332pt;}
.ws1f{word-spacing:-26.716800pt;}
.ws1e{word-spacing:-26.707200pt;}
.ws17{word-spacing:-26.697600pt;}
.ws14{word-spacing:-26.688000pt;}
.ws65{word-spacing:-26.659200pt;}
.ws16{word-spacing:-26.649600pt;}
.wsc9{word-spacing:-24.004264pt;}
.ws42{word-spacing:-23.970131pt;}
.ws9e{word-spacing:-23.914666pt;}
.ws34{word-spacing:-23.722664pt;}
.ws37{word-spacing:-23.611731pt;}
.wsb9{word-spacing:-23.586131pt;}
.wsd6{word-spacing:-23.475198pt;}
.ws8d{word-spacing:-23.449598pt;}
.wsac{word-spacing:-23.441064pt;}
.wsbf{word-spacing:-22.456000pt;}
.wsb5{word-spacing:-22.424000pt;}
.ws9f{word-spacing:-21.184000pt;}
.ws23{word-spacing:-20.757332pt;}
.ws3{word-spacing:-19.219198pt;}
.wsc{word-spacing:-0.938828pt;}
.ws2f{word-spacing:-0.762133pt;}
.ws1a{word-spacing:-0.666656pt;}
.ws2d{word-spacing:-0.648320pt;}
.ws19{word-spacing:-0.639453pt;}
.wsdc{word-spacing:-0.635191pt;}
.ws44{word-spacing:-0.602133pt;}
.ws26{word-spacing:-0.579733pt;}
.ws28{word-spacing:-0.554667pt;}
.wsb4{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.505813pt;}
.wsb{word-spacing:-0.401420pt;}
.ws9b{word-spacing:-0.359227pt;}
.ws35{word-spacing:-0.339162pt;}
.wsba{word-spacing:-0.336141pt;}
.ws8{word-spacing:-0.327882pt;}
.ws1c{word-spacing:-0.314652pt;}
.ws97{word-spacing:-0.302856pt;}
.wsd{word-spacing:-0.253013pt;}
.wsb7{word-spacing:-0.250643pt;}
.ws43{word-spacing:-0.242667pt;}
.wsb3{word-spacing:-0.240000pt;}
.wsc0{word-spacing:-0.234667pt;}
.wsbd{word-spacing:-0.218811pt;}
.wsaa{word-spacing:-0.218651pt;}
.ws24{word-spacing:-0.188695pt;}
.wsb6{word-spacing:-0.154133pt;}
.ws15{word-spacing:-0.144000pt;}
.ws78{word-spacing:-0.138720pt;}
.ws67{word-spacing:-0.138667pt;}
.ws2e{word-spacing:-0.122667pt;}
.ws4e{word-spacing:-0.107200pt;}
.ws57{word-spacing:-0.106667pt;}
.ws85{word-spacing:-0.104000pt;}
.ws66{word-spacing:-0.081067pt;}
.ws84{word-spacing:-0.078933pt;}
.ws8a{word-spacing:-0.078400pt;}
.ws83{word-spacing:-0.076960pt;}
.ws88{word-spacing:-0.076800pt;}
.ws6c{word-spacing:-0.075733pt;}
.ws62{word-spacing:-0.075680pt;}
.ws4f{word-spacing:-0.075200pt;}
.ws7c{word-spacing:-0.074667pt;}
.ws7a{word-spacing:-0.072533pt;}
.ws30{word-spacing:-0.072480pt;}
.ws58{word-spacing:-0.070400pt;}
.wsc2{word-spacing:-0.069333pt;}
.ws52{word-spacing:-0.068800pt;}
.ws4a{word-spacing:-0.068267pt;}
.wsab{word-spacing:-0.067200pt;}
.ws48{word-spacing:-0.066133pt;}
.ws49{word-spacing:-0.062400pt;}
.ws51{word-spacing:-0.061867pt;}
.ws6a{word-spacing:-0.060267pt;}
.ws86{word-spacing:-0.059893pt;}
.ws47{word-spacing:-0.057600pt;}
.ws77{word-spacing:-0.055467pt;}
.ws76{word-spacing:-0.055413pt;}
.wscf{word-spacing:-0.048533pt;}
.ws5c{word-spacing:-0.048000pt;}
.ws5d{word-spacing:-0.041600pt;}
.wsd1{word-spacing:-0.040000pt;}
.ws80{word-spacing:-0.039627pt;}
.ws87{word-spacing:-0.039467pt;}
.ws22{word-spacing:-0.038400pt;}
.ws59{word-spacing:-0.037333pt;}
.wsbc{word-spacing:-0.037314pt;}
.ws5b{word-spacing:-0.035733pt;}
.wsd0{word-spacing:-0.032533pt;}
.ws6e{word-spacing:-0.032000pt;}
.ws81{word-spacing:-0.029920pt;}
.wscd{word-spacing:-0.025067pt;}
.wsc1{word-spacing:-0.023520pt;}
.ws20{word-spacing:-0.023467pt;}
.ws7b{word-spacing:-0.021867pt;}
.ws7f{word-spacing:-0.021333pt;}
.wsce{word-spacing:-0.019733pt;}
.ws71{word-spacing:-0.019200pt;}
.ws4c{word-spacing:-0.016000pt;}
.ws46{word-spacing:-0.011200pt;}
.ws82{word-spacing:-0.010827pt;}
.ws7d{word-spacing:-0.010667pt;}
.ws50{word-spacing:-0.010133pt;}
.ws64{word-spacing:-0.008533pt;}
.wsb2{word-spacing:-0.006400pt;}
.ws5a{word-spacing:-0.004267pt;}
.wscc{word-spacing:-0.003733pt;}
.ws61{word-spacing:-0.003253pt;}
.ws6b{word-spacing:-0.003200pt;}
.ws4{word-spacing:0.000000pt;}
.ws68{word-spacing:0.002133pt;}
.ws74{word-spacing:0.002667pt;}
.ws89{word-spacing:0.003733pt;}
.ws4b{word-spacing:0.004267pt;}
.ws7e{word-spacing:0.004800pt;}
.ws70{word-spacing:0.008533pt;}
.ws6f{word-spacing:0.009067pt;}
.wsdd{word-spacing:0.010638pt;}
.wsb1{word-spacing:0.012800pt;}
.ws79{word-spacing:0.014933pt;}
.ws13{word-spacing:0.017067pt;}
.ws12{word-spacing:0.018133pt;}
.ws63{word-spacing:0.022400pt;}
.wsa8{word-spacing:0.026688pt;}
.ws5{word-spacing:0.027902pt;}
.ws69{word-spacing:0.032000pt;}
.wsc3{word-spacing:0.038400pt;}
.ws6d{word-spacing:0.048000pt;}
.ws72{word-spacing:0.048160pt;}
.ws99{word-spacing:0.053350pt;}
.ws2c{word-spacing:0.071467pt;}
.ws73{word-spacing:0.083200pt;}
.ws60{word-spacing:0.085333pt;}
.ws21{word-spacing:0.089600pt;}
.wsc4{word-spacing:0.091733pt;}
.ws95{word-spacing:0.153634pt;}
.wsca{word-spacing:0.154163pt;}
.wsa4{word-spacing:0.154691pt;}
.wsae{word-spacing:0.159067pt;}
.ws53{word-spacing:0.159485pt;}
.ws8c{word-spacing:0.160052pt;}
.wsbb{word-spacing:0.162159pt;}
.ws54{word-spacing:0.162692pt;}
.ws8b{word-spacing:0.163238pt;}
.wsc7{word-spacing:0.164144pt;}
.ws41{word-spacing:0.164283pt;}
.wsda{word-spacing:0.164287pt;}
.ws92{word-spacing:0.164336pt;}
.wsa2{word-spacing:0.164389pt;}
.wse0{word-spacing:0.166428pt;}
.wsa1{word-spacing:0.167437pt;}
.ws3e{word-spacing:0.167494pt;}
.wsa9{word-spacing:0.169631pt;}
.ws7{word-spacing:0.191625pt;}
.ws56{word-spacing:0.264043pt;}
.ws90{word-spacing:0.273052pt;}
.wsd8{word-spacing:0.274176pt;}
.ws98{word-spacing:0.275086pt;}
.ws3b{word-spacing:0.278428pt;}
.ws91{word-spacing:0.280515pt;}
.wsb8{word-spacing:0.280555pt;}
.wsc8{word-spacing:0.288027pt;}
.ws8e{word-spacing:0.350014pt;}
.ws10{word-spacing:0.362362pt;}
.wsd2{word-spacing:0.362522pt;}
.ws39{word-spacing:0.385083pt;}
.ws3f{word-spacing:0.385104pt;}
.wsa0{word-spacing:0.385137pt;}
.wsa3{word-spacing:0.386145pt;}
.wsde{word-spacing:0.387121pt;}
.ws5e{word-spacing:0.387228pt;}
.wsd7{word-spacing:0.388290pt;}
.ws5f{word-spacing:0.433094pt;}
.ws55{word-spacing:0.433627pt;}
.ws38{word-spacing:0.471491pt;}
.ws9{word-spacing:0.485023pt;}
.wsdf{word-spacing:0.485355pt;}
.ws9c{word-spacing:0.525886pt;}
.wsbe{word-spacing:0.576014pt;}
.wsd5{word-spacing:0.621884pt;}
.wsa5{word-spacing:0.645374pt;}
.ws31{word-spacing:0.650683pt;}
.wsa6{word-spacing:0.654969pt;}
.ws36{word-spacing:0.668828pt;}
.ws40{word-spacing:0.688018pt;}
.wsa7{word-spacing:0.698684pt;}
.ws9a{word-spacing:0.700669pt;}
.wsc5{word-spacing:0.712561pt;}
.wscb{word-spacing:0.730156pt;}
.wse1{word-spacing:0.734958pt;}
.ws94{word-spacing:0.750959pt;}
.ws3a{word-spacing:0.762690pt;}
.wsaf{word-spacing:0.765365pt;}
.ws93{word-spacing:0.783981pt;}
.wsad{word-spacing:0.794700pt;}
.ws32{word-spacing:0.818959pt;}
.ws96{word-spacing:0.819155pt;}
.ws33{word-spacing:0.819208pt;}
.ws9d{word-spacing:0.819226pt;}
.wsdb{word-spacing:0.851226pt;}
.ws3d{word-spacing:1.084829pt;}
.ws3c{word-spacing:1.096540pt;}
.wsd9{word-spacing:1.096647pt;}
.ws2b{word-spacing:1.561600pt;}
.wse3{word-spacing:3.801599pt;}
.ws0{word-spacing:5.801891pt;}
.ws2a{word-spacing:28.130133pt;}
.ws29{word-spacing:28.697600pt;}
.ws1d{word-spacing:37.363200pt;}
.wsd4{word-spacing:49.442143pt;}
.ws27{word-spacing:58.911757pt;}
.wse2{word-spacing:77.874279pt;}
.wsd3{word-spacing:116.885707pt;}
.ws4d{word-spacing:754.221333pt;}
.wsc6{word-spacing:1802.690157pt;}
._8{margin-left:-10.627200pt;}
._4{margin-left:-8.200833pt;}
._c{margin-left:-6.655952pt;}
._d{margin-left:-5.337600pt;}
._9{margin-left:-3.758623pt;}
._6{margin-left:-2.112000pt;}
._1{margin-left:-1.002657pt;}
._0{width:1.689871pt;}
._2{width:3.379742pt;}
._11{width:5.546666pt;}
._3{width:6.523463pt;}
._e{width:8.021333pt;}
._14{width:9.471999pt;}
._12{width:14.592000pt;}
._13{width:23.066906pt;}
._b{width:24.731783pt;}
._10{width:25.757633pt;}
._f{width:47.466682pt;}
._a{width:51.200000pt;}
._5{width:77.376000pt;}
._7{width:84.480001pt;}
._15{width:178.737387pt;}
.fs2{font-size:69.333325pt;}
.fs9{font-size:74.666662pt;}
.fsb{font-size:80.000000pt;}
.fsa{font-size:85.333325pt;}
.fs7{font-size:96.000000pt;}
.fs8{font-size:106.666662pt;}
.fs6{font-size:128.000000pt;}
.fsc{font-size:138.666624pt;}
.fs5{font-size:149.333376pt;}
.fs0{font-size:168.987102pt;}
.fs4{font-size:213.333376pt;}
.fs3{font-size:234.666624pt;}
.fs1{font-size:373.333376pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.880000pt;}
.y8b{bottom:33.920000pt;}
.y40{bottom:50.880000pt;}
.y72{bottom:53.120000pt;}
.y64{bottom:56.960000pt;}
.y57{bottom:71.680000pt;}
.y3a{bottom:75.520000pt;}
.y3f{bottom:77.760000pt;}
.y71{bottom:78.400000pt;}
.y8a{bottom:79.040000pt;}
.y53{bottom:82.560000pt;}
.y1b{bottom:91.200000pt;}
.y5d{bottom:99.520000pt;}
.y3e{bottom:103.040000pt;}
.y39{bottom:103.680000pt;}
.y89{bottom:104.320000pt;}
.y8d{bottom:105.920000pt;}
.y52{bottom:108.160000pt;}
.y21{bottom:110.400000pt;}
.y96{bottom:114.240000pt;}
.yd{bottom:119.040000pt;}
.y62{bottom:120.320000pt;}
.y23{bottom:120.960000pt;}
.y1a{bottom:123.200000pt;}
.y5c{bottom:127.680000pt;}
.y3d{bottom:128.320000pt;}
.y8c{bottom:129.920000pt;}
.y51{bottom:133.440000pt;}
.y31{bottom:134.400000pt;}
.y20{bottom:142.400000pt;}
.y93{bottom:148.480000pt;}
.y61{bottom:149.440000pt;}
.y46{bottom:149.760000pt;}
.y3c{bottom:153.600000pt;}
.y50{bottom:155.200000pt;}
.y5b{bottom:156.800000pt;}
.y19{bottom:163.200000pt;}
.y30{bottom:163.520000pt;}
.y92{bottom:172.480000pt;}
.y1f{bottom:174.400000pt;}
.y45{bottom:176.640000pt;}
.y60{bottom:177.600000pt;}
.y3b{bottom:178.880000pt;}
.y4f{bottom:183.040000pt;}
.yc{bottom:184.320000pt;}
.y5a{bottom:184.960000pt;}
.y18{bottom:195.200000pt;}
.ya5{bottom:198.080000pt;}
.y2f{bottom:199.680000pt;}
.y44{bottom:201.920000pt;}
.y1e{bottom:206.400000pt;}
.y4e{bottom:212.480000pt;}
.ya8{bottom:218.560000pt;}
.y77{bottom:220.480000pt;}
.y17{bottom:227.200000pt;}
.y43{bottom:235.200000pt;}
.y2e{bottom:237.120000pt;}
.y6e{bottom:237.760000pt;}
.y1d{bottom:238.400000pt;}
.y76{bottom:245.760000pt;}
.ya7{bottom:248.000000pt;}
.yb{bottom:249.600000pt;}
.y3{bottom:249.920000pt;}
.y4d{bottom:254.400000pt;}
.y38{bottom:258.880000pt;}
.y42{bottom:260.480000pt;}
.y2d{bottom:264.960000pt;}
.y75{bottom:271.040000pt;}
.ya6{bottom:272.640000pt;}
.y81{bottom:273.280000pt;}
.y63{bottom:279.040000pt;}
.y7c{bottom:280.960000pt;}
.y10{bottom:282.880000pt;}
.y41{bottom:285.760000pt;}
.y14{bottom:291.200000pt;}
.y35{bottom:298.560000pt;}
.y2c{bottom:302.400000pt;}
.y7b{bottom:306.240000pt;}
.y6a{bottom:311.040000pt;}
.ya2{bottom:312.320000pt;}
.ya{bottom:315.200000pt;}
.y56{bottom:330.240000pt;}
.y12{bottom:331.520000pt;}
.y95{bottom:334.400000pt;}
.ya1{bottom:337.920000pt;}
.y22{bottom:339.520000pt;}
.y69{bottom:340.160000pt;}
.yad{bottom:355.200000pt;}
.y94{bottom:358.400000pt;}
.yb1{bottom:360.960000pt;}
.ya0{bottom:363.200000pt;}
.y99{bottom:365.440000pt;}
.y68{bottom:369.600000pt;}
.y2b{bottom:375.680000pt;}
.yac{bottom:380.480000pt;}
.y88{bottom:383.040000pt;}
.y34{bottom:383.680000pt;}
.yb0{bottom:386.240000pt;}
.y9{bottom:390.720000pt;}
.y2{bottom:393.920000pt;}
.y32{bottom:397.440000pt;}
.y67{bottom:397.760000pt;}
.y5{bottom:399.040000pt;}
.yab{bottom:405.760000pt;}
.y87{bottom:408.320000pt;}
.yaf{bottom:411.840000pt;}
.y2a{bottom:413.120000pt;}
.y16{bottom:415.040000pt;}
.y66{bottom:426.880000pt;}
.yaa{bottom:431.040000pt;}
.y1{bottom:436.800000pt;}
.yae{bottom:437.120000pt;}
.y29{bottom:440.960000pt;}
.y15{bottom:447.040000pt;}
.yb3{bottom:454.080000pt;}
.y65{bottom:455.040000pt;}
.ya9{bottom:456.640000pt;}
.yb6{bottom:457.600000pt;}
.y91{bottom:462.080000pt;}
.y8{bottom:472.000000pt;}
.y25{bottom:479.360000pt;}
.yb5{bottom:482.880000pt;}
.y98{bottom:488.640000pt;}
.y85{bottom:488.960000pt;}
.y6d{bottom:496.640000pt;}
.y90{bottom:496.960000pt;}
.y9f{bottom:498.560000pt;}
.y4c{bottom:501.120000pt;}
.yb4{bottom:508.480000pt;}
.y55{bottom:508.800000pt;}
.y5f{bottom:509.760000pt;}
.y84{bottom:514.240000pt;}
.y7f{bottom:519.360000pt;}
.y74{bottom:519.680000pt;}
.y8f{bottom:522.240000pt;}
.y9e{bottom:523.840000pt;}
.y6c{bottom:524.800000pt;}
.y7a{bottom:525.760000pt;}
.y9c{bottom:528.640000pt;}
.y37{bottom:529.280000pt;}
.y54{bottom:536.640000pt;}
.y4b{bottom:537.280000pt;}
.y5e{bottom:537.920000pt;}
.y7{bottom:538.560000pt;}
.y78{bottom:539.200000pt;}
.y83{bottom:539.520000pt;}
.y59{bottom:541.440000pt;}
.y86{bottom:544.320000pt;}
.y7e{bottom:544.640000pt;}
.y73{bottom:544.960000pt;}
.y26{bottom:545.920000pt;}
.yf{bottom:546.240000pt;}
.y8e{bottom:547.520000pt;}
.y70{bottom:547.840000pt;}
.y9d{bottom:549.440000pt;}
.y79{bottom:551.040000pt;}
.y1c{bottom:551.680000pt;}
.y9b{bottom:553.920000pt;}
.ya4{bottom:558.720000pt;}
.y13{bottom:564.480000pt;}
.y28{bottom:565.440000pt;}
.y58{bottom:569.280000pt;}
.y7d{bottom:570.240000pt;}
.y6b{bottom:574.720000pt;}
.ye{bottom:575.360000pt;}
.y6f{bottom:575.680000pt;}
.y82{bottom:578.240000pt;}
.y9a{bottom:579.200000pt;}
.y33{bottom:579.840000pt;}
.y97{bottom:580.160000pt;}
.yb2{bottom:582.080000pt;}
.y47{bottom:583.360000pt;}
.ya3{bottom:586.560000pt;}
.y4a{bottom:586.880000pt;}
.y36{bottom:587.520000pt;}
.y24{bottom:594.240000pt;}
.y27{bottom:601.920000pt;}
.y80{bottom:612.160000pt;}
.y49{bottom:616.000000pt;}
.y6{bottom:632.320000pt;}
.y11{bottom:641.920000pt;}
.y48{bottom:644.160000pt;}
.h3{height:50.476556pt;}
.hb{height:50.510410pt;}
.hd{height:54.359372pt;}
.h11{height:58.242188pt;}
.h10{height:62.124994pt;}
.h14{height:62.166660pt;}
.h9{height:68.718750pt;}
.h17{height:69.000000pt;}
.h8{height:69.890625pt;}
.hf{height:69.937500pt;}
.hc{height:77.656247pt;}
.ha{height:77.708330pt;}
.h7{height:93.187500pt;}
.he{height:93.250000pt;}
.h12{height:100.953094pt;}
.h13{height:101.020802pt;}
.h6{height:108.718781pt;}
.h1{height:120.964400pt;}
.h18{height:152.708364pt;}
.h16{height:153.333364pt;}
.h5{height:155.312531pt;}
.h15{height:167.979136pt;}
.h4{height:170.843719pt;}
.h2{height:267.239614pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x51{left:19.193600pt;}
.x4b{left:21.299320pt;}
.x24{left:26.412600pt;}
.x44{left:28.079480pt;}
.x4d{left:29.433067pt;}
.x6{left:35.377640pt;}
.x34{left:39.442307pt;}
.x57{left:42.619107pt;}
.x5c{left:44.346240pt;}
.x5f{left:45.909507pt;}
.x33{left:47.546667pt;}
.x7{left:49.599787pt;}
.x20{left:54.755587pt;}
.x12{left:61.860053pt;}
.x13{left:62.826147pt;}
.x4f{left:64.457107pt;}
.x60{left:67.742827pt;}
.x5b{left:69.245560pt;}
.x1b{left:70.401680pt;}
.x5d{left:80.346240pt;}
.x4e{left:89.198627pt;}
.x40{left:92.166720pt;}
.x35{left:96.689347pt;}
.x3f{left:99.500040pt;}
.x2b{left:100.776800pt;}
.x1f{left:107.069813pt;}
.xd{left:110.089240pt;}
.xa{left:115.739840pt;}
.x36{left:123.910227pt;}
.x8{left:138.179467pt;}
.x1c{left:139.826533pt;}
.x3e{left:142.840267pt;}
.x2c{left:148.110133pt;}
.x2a{left:161.269467pt;}
.x55{left:162.203600pt;}
.x14{left:186.885733pt;}
.x9{left:191.027867pt;}
.x56{left:208.121467pt;}
.x37{left:209.487600pt;}
.x38{left:228.820933pt;}
.x10{left:230.916667pt;}
.x1{left:256.600533pt;}
.x3d{left:285.005867pt;}
.x39{left:315.487600pt;}
.x1d{left:344.162667pt;}
.x1a{left:350.997200pt;}
.x26{left:356.745867pt;}
.x5a{left:359.620533pt;}
.x5{left:372.590533pt;}
.x27{left:382.079200pt;}
.x3c{left:385.397200pt;}
.x11{left:396.910400pt;}
.x25{left:401.245867pt;}
.x2d{left:407.330667pt;}
.x2e{left:412.664133pt;}
.x41{left:414.964267pt;}
.x23{left:429.054000pt;}
.x4{left:430.970667pt;}
.xc{left:445.480133pt;}
.x52{left:451.504800pt;}
.xb{left:455.825067pt;}
.x64{left:459.027200pt;}
.x3{left:465.973867pt;}
.x54{left:481.757200pt;}
.x1e{left:497.496000pt;}
.x61{left:539.663733pt;}
.x62{left:545.410400pt;}
.x2{left:587.560533pt;}
.x58{left:597.790667pt;}
.x63{left:633.350400pt;}
.x2f{left:669.997467pt;}
.x15{left:674.990800pt;}
.x3b{left:685.852933pt;}
.x31{left:687.816400pt;}
.x30{left:691.503067pt;}
.x29{left:706.812133pt;}
.x21{left:711.469467pt;}
.x42{left:714.109467pt;}
.x45{left:719.745200pt;}
.x5e{left:725.937467pt;}
.x46{left:730.700533pt;}
.xf{left:753.600000pt;}
.x47{left:761.867200pt;}
.x4a{left:768.129733pt;}
.x28{left:773.419333pt;}
.xe{left:782.565733pt;}
.x4c{left:787.242667pt;}
.x59{left:790.430267pt;}
.x3a{left:795.182933pt;}
.x22{left:818.136133pt;}
.x32{left:849.836400pt;}
.x16{left:870.325733pt;}
.x17{left:871.336133pt;}
.x48{left:909.287200pt;}
.x43{left:916.776267pt;}
.x18{left:920.974400pt;}
.x49{left:926.353867pt;}
.x19{left:956.974400pt;}
.x50{left:984.514267pt;}
.x53{left:991.070133pt;}
}




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