
    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_a36829f88f4dc964a832bf94.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031000;font-style:normal;font-weight: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_e743ab7b1a455f6780ae3f4e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.781000;font-style:normal;font-weight: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_c5e5e8cbfc7365e045ee20cf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008000;font-style:normal;font-weight: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_f1535936bb0a896d9647d72f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065000;font-style:normal;font-weight: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_82759f90d43fb7fba0869c37.woff')format("woff");}.ff5{font-family:ff5;line-height:1.031000;font-style:normal;font-weight: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_ad7c4259392a9520f6e4d50d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.031000;font-style:normal;font-weight: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_3a401147352c773fc6c42c63.woff')format("woff");}.ff7{font-family:ff7;line-height:1.021000;font-style:normal;font-weight: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_43a358a8cd51fa6eeffeb844.woff')format("woff");}.ff8{font-family:ff8;line-height:1.015000;font-style:normal;font-weight: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_86074924551da735859f71ec.woff')format("woff");}.ff9{font-family:ff9;line-height:1.031000;font-style:normal;font-weight: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_7cc4a0f308a282c6f8d34e22.woff')format("woff");}.ffa{font-family:ffa;line-height:0.997000;font-style:normal;font-weight: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_2ae0e7783804f800ae024023.woff')format("woff");}.ffb{font-family:ffb;line-height:0.993652;font-style:normal;font-weight: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_ceb144f3dcce39603b4ebad4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.798000;font-style:normal;font-weight: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_20c717a305a3caa4e06fe91f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.072000;font-style:normal;font-weight: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_a2b28931ffb31ca0d4a76917.woff')format("woff");}.ffe{font-family:ffe;line-height:0.785000;font-style:normal;font-weight: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_af04c39917702ef189335bf9.woff')format("woff");}.fff{font-family:fff;line-height:0.800000;font-style:normal;font-weight: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_358eaf46decccf8943f936dd.woff')format("woff");}.ff10{font-family:ff10;line-height:0.714844;font-style:normal;font-weight: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_7ba7ebf5af9165b2870617da.woff')format("woff");}.ff11{font-family:ff11;line-height:0.713867;font-style:normal;font-weight: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_25dd1acec81200e633cb40de.woff')format("woff");}.ff12{font-family:ff12;line-height:0.983398;font-style:normal;font-weight: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_358eaf46decccf8943f936dd.woff')format("woff");}.ff13{font-family:ff13;line-height:0.714844;font-style:normal;font-weight: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_de26fe8f3e4de0332304eeb2.woff')format("woff");}.ff14{font-family:ff14;line-height:0.993652;font-style:normal;font-weight: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_87faea40dbb3d25d9804f13f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.993652;font-style:normal;font-weight: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_64aa0100212c21535f492264.woff')format("woff");}.ff16{font-family:ff16;line-height:0.993652;font-style:normal;font-weight: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_7fc163118c8c9e6fa3d02bf6.woff')format("woff");}.ff17{font-family:ff17;line-height:0.765137;font-style:normal;font-weight: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_f8bbcded6de80610d499b38d.woff')format("woff");}.ff18{font-family:ff18;line-height:1.030000;font-style:normal;font-weight: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_ecd92591be393d02bde8841b.woff')format("woff");}.ff19{font-family:ff19;line-height:1.020000;font-style:normal;font-weight: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_f8bbcded6de80610d499b38d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.030000;font-style:normal;font-weight: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_47b0e1beaf75f17aa2eacc5b.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.993652;font-style:normal;font-weight: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_62ea2734e89505f4b30c989c.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.724121;font-style:normal;font-weight: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_43feb7342ff7892cd8b2d2a2.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.029000;font-style:normal;font-weight: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_7cce963f668948e8e574a330.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.037000;font-style:normal;font-weight: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_ad245522ba676487a3438733.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.807000;font-style:normal;font-weight: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_7cce963f668948e8e574a330.woff')format("woff");}.ff20{font-family:ff20;line-height:1.037000;font-style:normal;font-weight: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_f6a7ba20356bc78373452964.woff')format("woff");}.ff21{font-family:ff21;line-height:1.025000;font-style:normal;font-weight: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_3af5ad838b118c7450b77de3.woff')format("woff");}.ff22{font-family:ff22;line-height:1.029000;font-style:normal;font-weight: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_af833f6753d1e8246fbb4a6d.woff')format("woff");}.ff23{font-family:ff23;line-height:1.021000;font-style:normal;font-weight: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_7cce963f668948e8e574a330.woff')format("woff");}.ff24{font-family:ff24;line-height:1.037000;font-style:normal;font-weight: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_f6a7ba20356bc78373452964.woff')format("woff");}.ff25{font-family:ff25;line-height:1.025000;font-style:normal;font-weight: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_3af5ad838b118c7450b77de3.woff')format("woff");}.ff26{font-family:ff26;line-height:1.029000;font-style:normal;font-weight: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_af833f6753d1e8246fbb4a6d.woff')format("woff");}.ff27{font-family:ff27;line-height:1.021000;font-style:normal;font-weight: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_7cce963f668948e8e574a330.woff')format("woff");}.ff28{font-family:ff28;line-height:1.037000;font-style:normal;font-weight: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_f6a7ba20356bc78373452964.woff')format("woff");}.ff29{font-family:ff29;line-height:1.025000;font-style:normal;font-weight: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_3af5ad838b118c7450b77de3.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.029000;font-style:normal;font-weight: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_af833f6753d1e8246fbb4a6d.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.021000;font-style:normal;font-weight: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_7cce963f668948e8e574a330.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.037000;font-style:normal;font-weight: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_f6a7ba20356bc78373452964.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.025000;font-style:normal;font-weight: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_d0cdee9a8247aff683c66656.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.020000;font-style:normal;font-weight: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_c4eda7874aec9f6bb8c6f8aa.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.785000;font-style:normal;font-weight: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_c5f598661a95d9db5a650009.woff')format("woff");}.ff30{font-family:ff30;line-height:0.782000;font-style:normal;font-weight: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_7cce963f668948e8e574a330.woff')format("woff");}.ff31{font-family:ff31;line-height:1.037000;font-style:normal;font-weight: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_f6a7ba20356bc78373452964.woff')format("woff");}.ff32{font-family:ff32;line-height:1.025000;font-style:normal;font-weight: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_cc79f10a6ad82d1e30390dfe.woff')format("woff");}.ff33{font-family:ff33;line-height:1.029000;font-style:normal;font-weight: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_a0788c7b1e19e49075d39374.woff')format("woff");}.ff34{font-family:ff34;line-height:1.021000;font-style:normal;font-weight: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_42bded606354550b087132d8.woff')format("woff");}.ff35{font-family:ff35;line-height:0.801000;font-style:normal;font-weight: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_c4eda7874aec9f6bb8c6f8aa.woff')format("woff");}.ff36{font-family:ff36;line-height:0.785000;font-style:normal;font-weight: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_843457dd1d745eb84be7f8fe.woff')format("woff");}.ff37{font-family:ff37;line-height:0.993652;font-style:normal;font-weight: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_e670cf2e3e362aefbd7ba22d.woff')format("woff");}.ff38{font-family:ff38;line-height:0.734375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_e2bd74d69db3e2412a8170e5.woff')format("woff");}.ff39{font-family:ff39;line-height:0.942383;font-style:normal;font-weight: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_358eaf46decccf8943f936dd.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.714844;font-style:normal;font-weight: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_a745bbd7ab1f4a6167108ab7.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.983398;font-style:normal;font-weight: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_24a90c3f683ad68f09a5ea2b.woff')format("woff");}.ff3c{font-family:ff3c;line-height:1.017000;font-style:normal;font-weight: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_a76701e385b4e8f92de5496c.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.801000;font-style:normal;font-weight: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_62982cb690012963a0f35508.woff')format("woff");}.ff3e{font-family:ff3e;line-height:1.029000;font-style:normal;font-weight: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_38527627a89a5013f2b0bff3.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.856934;font-style:normal;font-weight: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_1d7cd02912c4de21d54ba089.woff')format("woff");}.ff40{font-family:ff40;line-height:1.018000;font-style:normal;font-weight: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_6d8e0a5dbfc08cd15f56b609.woff')format("woff");}.ff41{font-family:ff41;line-height:0.983398;font-style:normal;font-weight: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_1d7cd02912c4de21d54ba089.woff')format("woff");}.ff42{font-family:ff42;line-height:1.018000;font-style:normal;font-weight: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_1d7cd02912c4de21d54ba089.woff')format("woff");}.ff43{font-family:ff43;line-height:1.018000;font-style:normal;font-weight: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_05fad7d59784814c119d1c71.woff')format("woff");}.ff44{font-family:ff44;line-height:1.029000;font-style:normal;font-weight: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_1d7cd02912c4de21d54ba089.woff')format("woff");}.ff45{font-family:ff45;line-height:1.018000;font-style:normal;font-weight: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_a8ac0370e619523e06a8da4e.woff')format("woff");}.ff46{font-family:ff46;line-height:1.029000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_af833f6753d1e8246fbb4a6d.woff')format("woff");}.ff47{font-family:ff47;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_1d7cd02912c4de21d54ba089.woff')format("woff");}.ff48{font-family:ff48;line-height:1.018000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_57ec4c08176b092c6d7f340c.woff')format("woff");}.ff49{font-family:ff49;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_1d7cd02912c4de21d54ba089.woff')format("woff");}.ff4a{font-family:ff4a;line-height:1.018000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_a04d81289a3653fa296555e0.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.807000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_c9644c2fdc2210b909b9db2a.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.785000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_930214973a4edc62fab18491.woff')format("woff");}.ff4d{font-family:ff4d;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_05750b737201e6ce4609da56.woff')format("woff");}.ff4e{font-family:ff4e;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_46a0fa46a54fdbf021b2f391.woff')format("woff");}.ff4f{font-family:ff4f;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_a04d81289a3653fa296555e0.woff')format("woff");}.ff50{font-family:ff50;line-height:0.807000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_05750b737201e6ce4609da56.woff')format("woff");}.ff51{font-family:ff51;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_32d808a01751e0c94f0bf495.woff')format("woff");}.ff52{font-family:ff52;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_c0170b79bf41201b402087a8.woff')format("woff");}.ff53{font-family:ff53;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_356f76ef0ea012b814c26bfb.woff')format("woff");}.ff54{font-family:ff54;line-height:0.807000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_b6675a560a364edcffdd0f81.woff')format("woff");}.ff55{font-family:ff55;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_3bad583657ad8c82a6362f46.woff')format("woff");}.ff56{font-family:ff56;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_356f76ef0ea012b814c26bfb.woff')format("woff");}.ff57{font-family:ff57;line-height:0.807000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_a53a82b804592d828a50c3cd.woff')format("woff");}.ff58{font-family:ff58;line-height:1.024000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_abbf19a820ed5aebcaf20003.woff')format("woff");}.ff59{font-family:ff59;line-height:1.016000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_356f76ef0ea012b814c26bfb.woff')format("woff");}.ff5a{font-family:ff5a;line-height:0.807000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_f6a7ba20356bc78373452964.woff')format("woff");}.ff5b{font-family:ff5b;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_954654655342da1c4c09fc07.woff')format("woff");}.ff5c{font-family:ff5c;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_afb9586540df82ef085dd99b.woff')format("woff");}.ff5d{font-family:ff5d;line-height:1.031000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_8e66df1581b663d0afb6bef9.woff')format("woff");}.ff5e{font-family:ff5e;line-height:1.029000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_ba08e176f62d4f7983716d89.woff')format("woff");}.ff5f{font-family:ff5f;line-height:1.029000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_071817a3183e8db8897c774f.woff')format("woff");}.ff60{font-family:ff60;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_ed74cd787eea98c9c23d9004.woff')format("woff");}.ff61{font-family:ff61;line-height:1.025000;font-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);}
.v7{vertical-align:-114.235339px;}
.v6{vertical-align:-111.960283px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:58.499998px;}
.v4{vertical-align:62.999997px;}
.v1{vertical-align:94.499996px;}
.v2{vertical-align:98.999996px;}
.v5{vertical-align:103.499996px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.015424px;}
.lsc{letter-spacing:0.015924px;}
.ls2{letter-spacing:0.025443px;}
.ls8{letter-spacing:0.027334px;}
.ls7{letter-spacing:0.034673px;}
.lsa{letter-spacing:0.047636px;}
.ls9{letter-spacing:0.057569px;}
.ls0{letter-spacing:0.060054px;}
.ls6{letter-spacing:0.062491px;}
.ls4{letter-spacing:0.065694px;}
.ls5{letter-spacing:1390.064004px;}
.lsd{letter-spacing:1439.553452px;}
.ls3{letter-spacing:1503.611172px;}
.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;}
}
.ws15{word-spacing:-173.969993px;}
.ws3{word-spacing:-172.490623px;}
.ws8{word-spacing:-167.985002px;}
.ws5{word-spacing:-163.304998px;}
.ws10{word-spacing:-94.598363px;}
.ws21{word-spacing:-91.015375px;}
.ws2{word-spacing:-82.795499px;}
.ws4{word-spacing:-80.863604px;}
.ws17{word-spacing:-78.632637px;}
.ws1c{word-spacing:-75.998247px;}
.wsf{word-spacing:-75.263264px;}
.ws19{word-spacing:-71.139912px;}
.ws1{word-spacing:-59.612759px;}
.ws1e{word-spacing:-49.781251px;}
.ws12{word-spacing:-49.754157px;}
.ws11{word-spacing:-47.953842px;}
.ws7{word-spacing:-46.633207px;}
.ws1d{word-spacing:-45.817873px;}
.wsd{word-spacing:-44.121092px;}
.ws1a{word-spacing:-43.596721px;}
.ws14{word-spacing:-42.643036px;}
.ws1b{word-spacing:-42.297481px;}
.ws18{word-spacing:-34.124877px;}
.ws16{word-spacing:-25.590235px;}
.ws9{word-spacing:-24.707812px;}
.ws6{word-spacing:-24.012905px;}
.wse{word-spacing:-23.337450px;}
.wsa{word-spacing:-19.413281px;}
.wsb{word-spacing:-0.180000px;}
.ws13{word-spacing:-0.173970px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:2544.678024px;}
.ws1f{word-spacing:2833.909669px;}
.ws20{word-spacing:2969.085417px;}
._11{margin-left:-24.972868px;}
._12{margin-left:-23.143655px;}
._f{margin-left:-15.407649px;}
._10{margin-left:-10.545054px;}
._c{margin-left:-8.836561px;}
._b{margin-left:-7.528676px;}
._2{margin-left:-6.494352px;}
._1{margin-left:-4.868842px;}
._a{margin-left:-3.408602px;}
._3{margin-left:-2.188576px;}
._0{margin-left:-1.016497px;}
._9{width:1.782626px;}
._4{width:27.596154px;}
._5{width:65.278715px;}
._7{width:67.178695px;}
._d{width:69.595727px;}
._6{width:104.525217px;}
._8{width:107.795923px;}
._e{width:111.634949px;}
.fcc{color:rgb(193,255,114);}
.fcb{color:rgb(252,210,79);}
.fc5{color:transparent;}
.fc9{color:rgb(98,206,88);}
.fc8{color:rgb(211,219,230);}
.fc7{color:rgb(254,254,254);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(238,255,65);}
.fc1{color:rgb(153,172,196);}
.fca{color:rgb(255,192,103);}
.fc3{color:rgb(92,225,230);}
.fc0{color:rgb(194,246,255);}
.fs3{font-size:39.122642px;}
.fse{font-size:79.199997px;}
.fs14{font-size:79.650001px;}
.fs20{font-size:84.374996px;}
.fs9{font-size:97.964996px;}
.fsc{font-size:100.799996px;}
.fs18{font-size:104.400000px;}
.fs4{font-size:107.999996px;}
.fs2{font-size:115.019991px;}
.fs11{font-size:119.745000px;}
.fs6{font-size:119.969995px;}
.fs1a{font-size:120.374995px;}
.fsd{font-size:131.984995px;}
.fs22{font-size:134.837593px;}
.fs1e{font-size:137.024999px;}
.fsf{font-size:137.969994px;}
.fs12{font-size:138.374994px;}
.fs1c{font-size:139.218621px;}
.fs15{font-size:139.634999px;}
.fs13{font-size:144.360003px;}
.fs21{font-size:149.985003px;}
.fs1b{font-size:156.374993px;}
.fs8{font-size:163.304998px;}
.fs16{font-size:163.664989px;}
.fsb{font-size:167.985002px;}
.fs17{font-size:173.969993px;}
.fs10{font-size:179.999993px;}
.fs1{font-size:187.694988px;}
.fsa{font-size:190.248618px;}
.fs1f{font-size:221.985000px;}
.fs1d{font-size:258.657184px;}
.fs19{font-size:258.659989px;}
.fs5{font-size:270.359998px;}
.fs7{font-size:275.984998px;}
.fs0{font-size:389.970002px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y9{bottom:2.509459px;}
.y7d{bottom:8.339557px;}
.y4b{bottom:10.317250px;}
.y13{bottom:14.764288px;}
.y8{bottom:15.550339px;}
.y4d{bottom:16.002931px;}
.yd{bottom:21.027023px;}
.y21{bottom:47.107690px;}
.y22{bottom:53.118106px;}
.y4a{bottom:58.799489px;}
.y47{bottom:67.980669px;}
.y73{bottom:70.529865px;}
.y5d{bottom:86.624996px;}
.y57{bottom:90.546332px;}
.y1c{bottom:125.399983px;}
.yb{bottom:148.725066px;}
.y6{bottom:149.052306px;}
.y48{bottom:181.390672px;}
.y56{bottom:182.796328px;}
.ya{bottom:195.975064px;}
.y5{bottom:210.927303px;}
.y2e{bottom:227.075247px;}
.y55{bottom:228.921326px;}
.y6a{bottom:234.168470px;}
.y66{bottom:242.422010px;}
.y63{bottom:242.990774px;}
.y19{bottom:252.969073px;}
.y2c{bottom:259.990654px;}
.y2d{bottom:269.825245px;}
.y54{bottom:275.046325px;}
.y69{bottom:280.293468px;}
.yc{bottom:284.328276px;}
.y18{bottom:299.094072px;}
.y2b{bottom:306.115652px;}
.y33{bottom:317.105843px;}
.y3d{bottom:321.605843px;}
.y44{bottom:334.274994px;}
.y17{bottom:345.219070px;}
.y7b{bottom:350.810186px;}
.y53{bottom:367.296321px;}
.y3c{bottom:369.980841px;}
.y45{bottom:388.274992px;}
.y43{bottom:395.024992px;}
.y2a{bottom:398.365648px;}
.y7a{bottom:402.560184px;}
.y62{bottom:412.876819px;}
.y3b{bottom:418.355839px;}
.y32{bottom:428.091030px;}
.y29{bottom:444.490646px;}
.y67{bottom:447.006905px;}
.y12{bottom:455.039991px;}
.y61{bottom:474.751816px;}
.y4{bottom:486.977171px;}
.y15{bottom:487.226320px;}
.y28{bottom:490.615644px;}
.y79{bottom:506.060180px;}
.y42{bottom:516.524987px;}
.y31{bottom:520.807334px;}
.y6b{bottom:520.930994px;}
.y64{bottom:524.372198px;}
.y60{bottom:536.626814px;}
.y16{bottom:538.976318px;}
.y14{bottom:545.726317px;}
.y78{bottom:557.810178px;}
.y27{bottom:582.865640px;}
.y52{bottom:616.289914px;}
.y26{bottom:628.990638px;}
.y3{bottom:635.477165px;}
.y41{bottom:638.024982px;}
.y77{bottom:661.310173px;}
.y51{bottom:671.414912px;}
.y58{bottom:675.489082px;}
.y72{bottom:679.755381px;}
.y20{bottom:681.576740px;}
.y11{bottom:693.906782px;}
.y10{bottom:699.531782px;}
.y50{bottom:726.539910px;}
.y30{bottom:737.115791px;}
.y3a{bottom:741.511924px;}
.y1f{bottom:747.951737px;}
.y25{bottom:749.699947px;}
.y65{bottom:753.261427px;}
.yf{bottom:755.781780px;}
.y40{bottom:759.524977px;}
.y76{bottom:764.810169px;}
.y5f{bottom:767.112200px;}
.y5c{bottom:771.455733px;}
.y2{bottom:783.977159px;}
.y2f{bottom:799.950862px;}
.y71{bottom:801.255376px;}
.y39{bottom:805.636921px;}
.y1e{bottom:814.326734px;}
.y4f{bottom:816.068947px;}
.y24{bottom:816.074944px;}
.y75{bottom:816.560167px;}
.y5b{bottom:832.205730px;}
.y68{bottom:834.653287px;}
.y36{bottom:847.472001px;}
.y7c{bottom:858.959974px;}
.y70{bottom:862.005373px;}
.y4e{bottom:863.318945px;}
.y6e{bottom:864.402966px;}
.y38{bottom:869.761919px;}
.y1d{bottom:880.701731px;}
.y3f{bottom:881.024972px;}
.y23{bottom:882.449942px;}
.y35{bottom:889.096999px;}
.y5a{bottom:892.955728px;}
.y1b{bottom:896.775561px;}
.y74{bottom:920.060162px;}
.y6f{bottom:922.755371px;}
.y6d{bottom:922.902964px;}
.y49{bottom:930.599971px;}
.y34{bottom:930.721998px;}
.y37{bottom:933.886916px;}
.y3e{bottom:941.774969px;}
.y5e{bottom:951.612192px;}
.y1a{bottom:953.025559px;}
.y59{bottom:953.705725px;}
.y6c{bottom:1058.493844px;}
.y4c{bottom:1060.559966px;}
.y7{bottom:1068.839966px;}
.ye{bottom:1072.687455px;}
.y46{bottom:1075.629242px;}
.h6{height:24.839999px;}
.h7{height:30.946010px;}
.h33{height:38.519998px;}
.h2e{height:62.923501px;}
.h1c{height:63.003151px;}
.hf{height:64.079997px;}
.h31{height:66.740622px;}
.h27{height:71.999997px;}
.h8{height:85.427996px;}
.h29{height:90.563287px;}
.hb{height:91.793448px;}
.h23{height:95.216621px;}
.h5{height:95.581612px;}
.h25{height:96.119996px;}
.h13{height:100.986566px;}
.h19{height:104.400131px;}
.h26{height:105.093744px;}
.h34{height:105.308160px;}
.h15{height:105.565909px;}
.h2a{height:108.386774px;}
.h2b{height:109.134265px;}
.h1d{height:110.451284px;}
.h2c{height:112.889522px;}
.h1b{height:114.188762px;}
.h32{height:118.638137px;}
.h14{height:119.098823px;}
.h2d{height:122.285245px;}
.h2f{height:122.910745px;}
.h24{height:123.692620px;}
.hd{height:124.950650px;}
.h11{height:126.808991px;}
.h1e{height:127.986021px;}
.h1f{height:129.459006px;}
.h20{height:133.110829px;}
.h16{height:137.724604px;}
.h10{height:143.615412px;}
.h4{height:146.589785px;}
.he{height:169.456612px;}
.h18{height:171.209243px;}
.h12{height:175.092180px;}
.h30{height:175.590135px;}
.h21{height:183.380269px;}
.h28{height:204.597833px;}
.h22{height:204.600051px;}
.ha{height:211.151158px;}
.h17{height:218.028148px;}
.h1a{height:219.960043px;}
.hc{height:231.275428px;}
.h9{height:304.566571px;}
.h3{height:308.466271px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w4{width:88.559996px;}
.w3{width:124.199995px;}
.w5{width:177.479993px;}
.w2{width:228.599990px;}
.w8{width:353.519985px;}
.w6{width:1158.119952px;}
.w7{width:1210.679950px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.xb{left:37.792967px;}
.x2d{left:47.003904px;}
.x7{left:51.291773px;}
.x5{left:53.030685px;}
.x32{left:64.439997px;}
.x19{left:67.655406px;}
.xc{left:69.416013px;}
.x18{left:108.685542px;}
.x1b{left:110.580562px;}
.x49{left:120.172848px;}
.x17{left:121.499995px;}
.x4{left:180.718180px;}
.x4d{left:193.573447px;}
.xf{left:233.999990px;}
.x12{left:295.570892px;}
.x13{left:351.416587px;}
.x45{left:385.324392px;}
.x43{left:394.922136px;}
.x1e{left:461.791827px;}
.x3{left:464.952708px;}
.x2{left:472.265207px;}
.x1f{left:483.237138px;}
.x14{left:500.391196px;}
.x3f{left:570.885841px;}
.x31{left:576.808568px;}
.x6{left:578.879976px;}
.x1{left:613.083555px;}
.x10{left:678.599972px;}
.x21{left:691.480313px;}
.x20{left:696.646097px;}
.x40{left:708.126785px;}
.x22{left:860.354866px;}
.x2e{left:935.901537px;}
.x2f{left:1009.835128px;}
.x34{left:1081.799955px;}
.xd{left:1121.453737px;}
.x15{left:1126.488481px;}
.x4a{left:1164.051779px;}
.x9{left:1167.696422px;}
.x30{left:1189.641766px;}
.x4b{left:1257.171356px;}
.xa{left:1262.864395px;}
.xe{left:1299.801386px;}
.x8{left:1348.803842px;}
.x36{left:1379.552631px;}
.x26{left:1383.087352px;}
.x23{left:1385.789022px;}
.x35{left:1387.092686px;}
.x3e{left:1412.559085px;}
.x25{left:1414.423786px;}
.x1c{left:1440.077020px;}
.x28{left:1452.257271px;}
.x1d{left:1490.666862px;}
.x2a{left:1493.138792px;}
.x24{left:1513.124954px;}
.x27{left:1516.048284px;}
.x3c{left:1521.796041px;}
.x41{left:1531.949346px;}
.x3a{left:1545.835451px;}
.x33{left:1551.028655px;}
.x2c{left:1562.291138px;}
.x4c{left:1564.555723px;}
.x44{left:1570.821786px;}
.x46{left:1582.604574px;}
.x38{left:1588.181153px;}
.x11{left:1600.176374px;}
.x29{left:1630.200629px;}
.x47{left:1641.227618px;}
.x16{left:1655.263777px;}
.x3b{left:1694.670913px;}
.x39{left:1717.890132px;}
.x3d{left:1728.339001px;}
.x2b{left:1729.916131px;}
.x37{left:1753.954543px;}
.x1a{left:1779.335612px;}
.x48{left:1863.440238px;}
.x42{left:1924.292044px;}
@media print{
.v7{vertical-align:-101.542524pt;}
.v6{vertical-align:-99.520252pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:51.999998pt;}
.v4{vertical-align:55.999998pt;}
.v1{vertical-align:83.999997pt;}
.v2{vertical-align:87.999996pt;}
.v5{vertical-align:91.999996pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.013710pt;}
.lsc{letter-spacing:0.014155pt;}
.ls2{letter-spacing:0.022616pt;}
.ls8{letter-spacing:0.024297pt;}
.ls7{letter-spacing:0.030820pt;}
.lsa{letter-spacing:0.042343pt;}
.ls9{letter-spacing:0.051172pt;}
.ls0{letter-spacing:0.053381pt;}
.ls6{letter-spacing:0.055547pt;}
.ls4{letter-spacing:0.058395pt;}
.ls5{letter-spacing:1235.612448pt;}
.lsd{letter-spacing:1279.603069pt;}
.ls3{letter-spacing:1336.543264pt;}
.ws15{word-spacing:-154.639994pt;}
.ws3{word-spacing:-153.324999pt;}
.ws8{word-spacing:-149.320002pt;}
.ws5{word-spacing:-145.159998pt;}
.ws10{word-spacing:-84.087434pt;}
.ws21{word-spacing:-80.902556pt;}
.ws2{word-spacing:-73.595999pt;}
.ws4{word-spacing:-71.878759pt;}
.ws17{word-spacing:-69.895677pt;}
.ws1c{word-spacing:-67.553997pt;}
.wsf{word-spacing:-66.900679pt;}
.ws19{word-spacing:-63.235477pt;}
.ws1{word-spacing:-52.989120pt;}
.ws1e{word-spacing:-44.250001pt;}
.ws12{word-spacing:-44.225917pt;}
.ws11{word-spacing:-42.625637pt;}
.ws7{word-spacing:-41.451739pt;}
.ws1d{word-spacing:-40.726998pt;}
.wsd{word-spacing:-39.218749pt;}
.ws1a{word-spacing:-38.752641pt;}
.ws14{word-spacing:-37.904921pt;}
.ws1b{word-spacing:-37.597761pt;}
.ws18{word-spacing:-30.333224pt;}
.ws16{word-spacing:-22.746875pt;}
.ws9{word-spacing:-21.962499pt;}
.ws6{word-spacing:-21.344804pt;}
.wse{word-spacing:-20.744400pt;}
.wsa{word-spacing:-17.256249pt;}
.wsb{word-spacing:-0.160000pt;}
.ws13{word-spacing:-0.154640pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:2261.936022pt;}
.ws1f{word-spacing:2519.030817pt;}
.ws20{word-spacing:2639.187037pt;}
._11{margin-left:-22.198105pt;}
._12{margin-left:-20.572138pt;}
._f{margin-left:-13.695688pt;}
._10{margin-left:-9.373381pt;}
._c{margin-left:-7.854721pt;}
._b{margin-left:-6.692156pt;}
._2{margin-left:-5.772757pt;}
._1{margin-left:-4.327859pt;}
._a{margin-left:-3.029868pt;}
._3{margin-left:-1.945401pt;}
._0{margin-left:-0.903553pt;}
._9{width:1.584557pt;}
._4{width:24.529914pt;}
._5{width:58.025525pt;}
._7{width:59.714396pt;}
._d{width:61.862868pt;}
._6{width:92.911304pt;}
._8{width:95.818598pt;}
._e{width:99.231066pt;}
.fs3{font-size:34.775682pt;}
.fse{font-size:70.399997pt;}
.fs14{font-size:70.800001pt;}
.fs20{font-size:74.999997pt;}
.fs9{font-size:87.079996pt;}
.fsc{font-size:89.599996pt;}
.fs18{font-size:92.800000pt;}
.fs4{font-size:95.999996pt;}
.fs2{font-size:102.239992pt;}
.fs11{font-size:106.440000pt;}
.fs6{font-size:106.639996pt;}
.fs1a{font-size:106.999996pt;}
.fsd{font-size:117.319995pt;}
.fs22{font-size:119.855638pt;}
.fs1e{font-size:121.799999pt;}
.fsf{font-size:122.639995pt;}
.fs12{font-size:122.999995pt;}
.fs1c{font-size:123.749886pt;}
.fs15{font-size:124.119999pt;}
.fs13{font-size:128.320003pt;}
.fs21{font-size:133.320002pt;}
.fs1b{font-size:138.999994pt;}
.fs8{font-size:145.159998pt;}
.fs16{font-size:145.479990pt;}
.fsb{font-size:149.320002pt;}
.fs17{font-size:154.639994pt;}
.fs10{font-size:159.999993pt;}
.fs1{font-size:166.839989pt;}
.fsa{font-size:169.109883pt;}
.fs1f{font-size:197.320000pt;}
.fs1d{font-size:229.917497pt;}
.fs19{font-size:229.919990pt;}
.fs5{font-size:240.319998pt;}
.fs7{font-size:245.319998pt;}
.fs0{font-size:346.640002pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y9{bottom:2.230630pt;}
.y7d{bottom:7.412939pt;}
.y4b{bottom:9.170889pt;}
.y13{bottom:13.123812pt;}
.y8{bottom:13.822524pt;}
.y4d{bottom:14.224827pt;}
.yd{bottom:18.690687pt;}
.y21{bottom:41.873502pt;}
.y22{bottom:47.216094pt;}
.y4a{bottom:52.266212pt;}
.y47{bottom:60.427261pt;}
.y73{bottom:62.693213pt;}
.y5d{bottom:76.999997pt;}
.y57{bottom:80.485629pt;}
.y1c{bottom:111.466651pt;}
.yb{bottom:132.200058pt;}
.y6{bottom:132.490938pt;}
.y48{bottom:161.236153pt;}
.y56{bottom:162.485625pt;}
.ya{bottom:174.200057pt;}
.y5{bottom:187.490936pt;}
.y2e{bottom:201.844664pt;}
.y55{bottom:203.485624pt;}
.y6a{bottom:208.149751pt;}
.y66{bottom:215.486231pt;}
.y63{bottom:215.991799pt;}
.y19{bottom:224.861399pt;}
.y2c{bottom:231.102803pt;}
.y2d{bottom:239.844662pt;}
.y54{bottom:244.485622pt;}
.y69{bottom:249.149750pt;}
.yc{bottom:252.736245pt;}
.y18{bottom:265.861397pt;}
.y2b{bottom:272.102801pt;}
.y33{bottom:281.871860pt;}
.y3d{bottom:285.871860pt;}
.y44{bottom:297.133328pt;}
.y17{bottom:306.861395pt;}
.y7b{bottom:311.831277pt;}
.y53{bottom:326.485618pt;}
.y3c{bottom:328.871858pt;}
.y45{bottom:345.133326pt;}
.y43{bottom:351.133326pt;}
.y2a{bottom:354.102798pt;}
.y7a{bottom:357.831275pt;}
.y62{bottom:367.001617pt;}
.y3b{bottom:371.871857pt;}
.y32{bottom:380.525360pt;}
.y29{bottom:395.102796pt;}
.y67{bottom:397.339471pt;}
.y12{bottom:404.479992pt;}
.y61{bottom:422.001614pt;}
.y4{bottom:432.868596pt;}
.y15{bottom:433.090062pt;}
.y28{bottom:436.102795pt;}
.y79{bottom:449.831271pt;}
.y42{bottom:459.133322pt;}
.y31{bottom:462.939853pt;}
.y6b{bottom:463.049773pt;}
.y64{bottom:466.108621pt;}
.y60{bottom:477.001612pt;}
.y16{bottom:479.090060pt;}
.y14{bottom:485.090060pt;}
.y78{bottom:495.831269pt;}
.y27{bottom:518.102791pt;}
.y52{bottom:547.813257pt;}
.y26{bottom:559.102790pt;}
.y3{bottom:564.868591pt;}
.y41{bottom:567.133317pt;}
.y77{bottom:587.831265pt;}
.y51{bottom:596.813255pt;}
.y58{bottom:600.434740pt;}
.y72{bottom:604.227005pt;}
.y20{bottom:605.845991pt;}
.y11{bottom:616.806029pt;}
.y10{bottom:621.806028pt;}
.y50{bottom:645.813253pt;}
.y30{bottom:655.214037pt;}
.y3a{bottom:659.121710pt;}
.y1f{bottom:664.845988pt;}
.y25{bottom:666.399953pt;}
.y65{bottom:669.565713pt;}
.yf{bottom:671.806026pt;}
.y40{bottom:675.133313pt;}
.y76{bottom:679.831261pt;}
.y5f{bottom:681.877511pt;}
.y5c{bottom:685.738429pt;}
.y2{bottom:696.868585pt;}
.y2f{bottom:711.067433pt;}
.y71{bottom:712.227001pt;}
.y39{bottom:716.121708pt;}
.y1e{bottom:723.845986pt;}
.y4f{bottom:725.394619pt;}
.y24{bottom:725.399951pt;}
.y75{bottom:725.831259pt;}
.y5b{bottom:739.738427pt;}
.y68{bottom:741.914033pt;}
.y36{bottom:753.308445pt;}
.y7c{bottom:763.519977pt;}
.y70{bottom:766.226998pt;}
.y4e{bottom:767.394618pt;}
.y6e{bottom:768.358192pt;}
.y38{bottom:773.121705pt;}
.y1d{bottom:782.845983pt;}
.y3f{bottom:783.133308pt;}
.y23{bottom:784.399948pt;}
.y35{bottom:790.308444pt;}
.y5a{bottom:793.738425pt;}
.y1b{bottom:797.133832pt;}
.y74{bottom:817.831256pt;}
.y6f{bottom:820.226996pt;}
.y6d{bottom:820.358190pt;}
.y49{bottom:827.199975pt;}
.y34{bottom:827.308442pt;}
.y37{bottom:830.121703pt;}
.y3e{bottom:837.133306pt;}
.y5e{bottom:845.877504pt;}
.y1a{bottom:847.133830pt;}
.y59{bottom:847.738422pt;}
.y6c{bottom:940.883417pt;}
.y4c{bottom:942.719970pt;}
.y7{bottom:950.079969pt;}
.ye{bottom:953.499960pt;}
.y46{bottom:956.114882pt;}
.h6{height:22.079999pt;}
.h7{height:27.507565pt;}
.h33{height:34.239999pt;}
.h2e{height:55.932001pt;}
.h1c{height:56.002801pt;}
.hf{height:56.959998pt;}
.h31{height:59.324998pt;}
.h27{height:63.999997pt;}
.h8{height:75.935997pt;}
.h29{height:80.500700pt;}
.hb{height:81.594176pt;}
.h23{height:84.636996pt;}
.h5{height:84.961433pt;}
.h25{height:85.439996pt;}
.h13{height:89.765836pt;}
.h19{height:92.800116pt;}
.h26{height:93.416662pt;}
.h34{height:93.607253pt;}
.h15{height:93.836363pt;}
.h2a{height:96.343799pt;}
.h2b{height:97.008236pt;}
.h1d{height:98.178919pt;}
.h2c{height:100.346242pt;}
.h1b{height:101.501122pt;}
.h32{height:105.456122pt;}
.h14{height:105.865621pt;}
.h2d{height:108.697995pt;}
.h2f{height:109.253995pt;}
.h24{height:109.948995pt;}
.hd{height:111.067245pt;}
.h11{height:112.719103pt;}
.h1e{height:113.765352pt;}
.h1f{height:115.074672pt;}
.h20{height:118.320737pt;}
.h16{height:122.421870pt;}
.h10{height:127.658144pt;}
.h4{height:130.302031pt;}
.he{height:150.628099pt;}
.h18{height:152.185994pt;}
.h12{height:155.637494pt;}
.h30{height:156.080120pt;}
.h21{height:163.004684pt;}
.h28{height:181.864740pt;}
.h22{height:181.866712pt;}
.ha{height:187.689918pt;}
.h17{height:193.802798pt;}
.h1a{height:195.520038pt;}
.hc{height:205.578158pt;}
.h9{height:270.725841pt;}
.h3{height:274.192241pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w4{width:78.719997pt;}
.w3{width:110.399995pt;}
.w5{width:157.759993pt;}
.w2{width:203.199992pt;}
.w8{width:314.239987pt;}
.w6{width:1029.439957pt;}
.w7{width:1076.159955pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.xb{left:33.593749pt;}
.x2d{left:41.781248pt;}
.x7{left:45.592687pt;}
.x5{left:47.138387pt;}
.x32{left:57.279998pt;}
.x19{left:60.138138pt;}
.xc{left:61.703122pt;}
.x18{left:96.609371pt;}
.x1b{left:98.293833pt;}
.x49{left:106.820309pt;}
.x17{left:107.999996pt;}
.x4{left:160.638382pt;}
.x4d{left:172.065286pt;}
.xf{left:207.999991pt;}
.x12{left:262.729682pt;}
.x13{left:312.370299pt;}
.x45{left:342.510571pt;}
.x43{left:351.041898pt;}
.x1e{left:410.481624pt;}
.x3{left:413.291296pt;}
.x2{left:419.791295pt;}
.x1f{left:429.544122pt;}
.x14{left:444.792174pt;}
.x3f{left:507.454081pt;}
.x31{left:512.718727pt;}
.x6{left:514.559979pt;}
.x1{left:544.963160pt;}
.x10{left:603.199975pt;}
.x21{left:614.649167pt;}
.x20{left:619.240975pt;}
.x40{left:629.446031pt;}
.x22{left:764.759881pt;}
.x2e{left:831.912477pt;}
.x2f{left:897.631225pt;}
.x34{left:961.599960pt;}
.xd{left:996.847766pt;}
.x15{left:1001.323094pt;}
.x4a{left:1034.712693pt;}
.x9{left:1037.952375pt;}
.x30{left:1057.459348pt;}
.x4b{left:1117.485649pt;}
.xa{left:1122.546129pt;}
.xe{left:1155.379010pt;}
.x8{left:1198.936748pt;}
.x36{left:1226.269005pt;}
.x26{left:1229.410980pt;}
.x23{left:1231.812464pt;}
.x35{left:1232.971277pt;}
.x3e{left:1255.608076pt;}
.x25{left:1257.265588pt;}
.x1c{left:1280.068463pt;}
.x28{left:1290.895352pt;}
.x1d{left:1325.037211pt;}
.x2a{left:1327.234482pt;}
.x24{left:1344.999959pt;}
.x27{left:1347.598475pt;}
.x3c{left:1352.707592pt;}
.x41{left:1361.732752pt;}
.x3a{left:1374.075957pt;}
.x33{left:1378.692138pt;}
.x2c{left:1388.703234pt;}
.x4c{left:1390.716198pt;}
.x44{left:1396.286032pt;}
.x46{left:1406.759621pt;}
.x38{left:1411.716580pt;}
.x11{left:1422.378999pt;}
.x29{left:1449.067226pt;}
.x47{left:1458.868994pt;}
.x16{left:1471.345580pt;}
.x3b{left:1506.374145pt;}
.x39{left:1527.013450pt;}
.x3d{left:1536.301334pt;}
.x2b{left:1537.703228pt;}
.x37{left:1559.070705pt;}
.x1a{left:1581.631655pt;}
.x48{left:1656.391323pt;}
.x42{left:1710.481817pt;}
}




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