
    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_65f48c1b7922b73c93150c7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966309;font-style:normal;font-weight: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_68a0f0fdd838ea08494ba37e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;font-style:normal;font-weight: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_d20d9eed8269a8cf889621e4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8525aeae5fd15223bb84e788.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d752d8c32367ca3a71a07920.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight: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_bce75853d7e0b0f425df8e06.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.848145;font-style:normal;font-weight: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_f8b4dc164ec103c12ba2ee76.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951172;font-style:normal;font-weight: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_b2c32d3c71a0aede5d56ec9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;font-style:normal;font-weight: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_324cca62f15b39aac62d59aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722000;font-style:normal;font-weight: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_ad9f4629af9749504e2532f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;font-style:normal;font-weight: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_0e4b0d6f5ef214f870c52b39.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6f1a4b8c539617dbf5663332.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921000;font-style:normal;font-weight: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_d2b18eee878877285faaa509.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;font-style:normal;font-weight: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_4552e5fd05b6318cb9c256cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a000ee08d5f1857f6015391f.woff2')format("woff");}.fff{font-family:fff;line-height:0.684000;font-style:normal;font-weight: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_c765db18f16ba49284aefe81.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.940918;font-style:normal;font-weight: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_5fd63912acb957b889f19ce3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.940918;font-style:normal;font-weight: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_dcef9acf3cd5a407ecb59d66.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940918;font-style:normal;font-weight: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_bd9d68bf7bff752ac25c02ac.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940918;font-style:normal;font-weight: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_ad9f4629af9749504e2532f7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.921000;font-style:normal;font-weight: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_0e4b0d6f5ef214f870c52b39.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6f1a4b8c539617dbf5663332.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.921000;font-style:normal;font-weight: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_d2b18eee878877285faaa509.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.482000;font-style:normal;font-weight: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_4552e5fd05b6318cb9c256cf.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a000ee08d5f1857f6015391f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.684000;font-style:normal;font-weight: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_8daee199ed5527914f12ef14.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.940918;font-style:normal;font-weight: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_96be532d997fd3d4898ffde9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.940918;font-style:normal;font-weight: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_376b9e954e37bf44660609b3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.940918;font-style:normal;font-weight: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_a5702ca192fe9d38ae43447d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940918;font-style:normal;font-weight: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_298f3fb49c1229f8ddb7e926.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.940918;font-style:normal;font-weight: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_cd5f72ea9aee0c899e1194cb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.932000;font-style:normal;font-weight: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_295dc8441996e401f6096e6e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.693000;font-style:normal;font-weight: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_6d91423ceafafc2d4f6054a2.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.234000;font-style:normal;font-weight: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_9563ca8bcfb098df5a90d9b8.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.932000;font-style:normal;font-weight: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_f60ba978cc8a1d27bbd2e921.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.940918;font-style:normal;font-weight: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_95521c68790ce0163dfbee9b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_41a174d61dc8494070f8c34a.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_68bb67298e8a74793f33bdd2.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_81bcf4c537e61fb7101edcb9.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.040000;font-style:normal;font-weight: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_bea2f65ed4a3787e441466c7.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.940918;font-style:normal;font-weight: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_afd55a328627f7aef000f70a.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_41a174d61dc8494070f8c34a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_ea0574a83edad5a3e2017238.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_60d0a15d4e5dbdb4ca7ae235.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.940918;font-style:normal;font-weight: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_232b725b1c3da063fb136e64.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_9e16b86ef85a69c3bda3710f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_9e1942b6e887e29d9547ac73.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.932000;font-style:normal;font-weight: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_49efdbf4f64243590bae4468.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.872000;font-style:normal;font-weight: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_abc7ff52242e3143289e1396.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.940918;font-style:normal;font-weight: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_c3c997577532c0d4d6108e11.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_07c36b4e413bd3dd366a6f45.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.887000;font-style:normal;font-weight: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_b65ae14b751c6284ef226bfc.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_c6e327dc6180e6308f0d7379.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.400000;font-style:normal;font-weight: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_b2461f948f6e308ae0d160c5.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.482000;font-style:normal;font-weight: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_480aef6cd6c0761a237d278c.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.940918;font-style:normal;font-weight: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_f7a81521f6daa9dccd12d69c.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_5fd34a86430672faf3c7fa41.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_6d91423ceafafc2d4f6054a2.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.234000;font-style:normal;font-weight: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_09f001f0cfa8b69bde4d2560.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.400000;font-style:normal;font-weight: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_8264fe9735182f4a84e8189a.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.482000;font-style:normal;font-weight: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_8481a97a7c2dca065d07c81c.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_c9647eff054da52e20978f42.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_7251228a1bcb8f8a27cf743e.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.666000;font-style:normal;font-weight: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_a5f694685d4a09a8f2ed6c76.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.040000;font-style:normal;font-weight: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_714a3b2504061b638f09ab3b.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.940918;font-style:normal;font-weight: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_36b4c2e9a16f5c2d8a5c304d.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.940918;font-style:normal;font-weight: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_ecc9dc902cfcee340d502aa4.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.940918;font-style:normal;font-weight: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_27d6feb66eb2a6a69a4180f3.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.940918;font-style:normal;font-weight: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_b1ded74b855bda4aa891ab67.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.892000;font-style:normal;font-weight: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_73924531714291e02716ab92.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.865000;font-style:normal;font-weight: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_7721004312c6141971f55b14.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.646000;font-style:normal;font-weight: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_6c35b47b14756cfa4e9a2267.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.554000;font-style:normal;font-weight: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_7781a21f94be976edbc4e0c5.woff2')format("woff");}.ff49{font-family:ff49;line-height:2.269000;font-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);}
.v2b{vertical-align:-40.511597px;}
.v27{vertical-align:-31.417683px;}
.v24{vertical-align:-24.803055px;}
.v22{vertical-align:-23.149398px;}
.v1e{vertical-align:-21.496341px;}
.v23{vertical-align:-20.371950px;}
.v2c{vertical-align:-17.460986px;}
.v16{vertical-align:-14.597258px;}
.v1c{vertical-align:-13.410365px;}
.v1{vertical-align:-5.732400px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:8.273124px;}
.v1b{vertical-align:10.240683px;}
.v20{vertical-align:12.478786px;}
.v21{vertical-align:17.315902px;}
.v2a{vertical-align:19.842084px;}
.v10{vertical-align:21.050315px;}
.v13{vertical-align:22.490195px;}
.v18{vertical-align:24.048860px;}
.ve{vertical-align:26.224772px;}
.v15{vertical-align:28.036423px;}
.vc{vertical-align:29.844733px;}
.v1f{vertical-align:31.814066px;}
.vf{vertical-align:35.152232px;}
.v1d{vertical-align:36.894202px;}
.v5{vertical-align:38.014371px;}
.va{vertical-align:40.646409px;}
.v3{vertical-align:43.261721px;}
.v8{vertical-align:46.257075px;}
.vb{vertical-align:48.894872px;}
.v28{vertical-align:53.310287px;}
.v26{vertical-align:54.488734px;}
.v12{vertical-align:56.202547px;}
.v25{vertical-align:58.958576px;}
.v14{vertical-align:60.046903px;}
.v29{vertical-align:65.282349px;}
.v1a{vertical-align:69.568938px;}
.v2{vertical-align:70.876034px;}
.v6{vertical-align:75.783347px;}
.v7{vertical-align:76.840266px;}
.v17{vertical-align:92.406988px;}
.vd{vertical-align:98.471660px;}
.v19{vertical-align:100.121719px;}
.v4{vertical-align:142.740546px;}
.v9{vertical-align:152.623613px;}
.ls73{letter-spacing:-0.023811px;}
.ls2{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.019843px;}
.ls1{letter-spacing:0.023811px;}
.ls4{letter-spacing:0.029102px;}
.ls67{letter-spacing:0.043789px;}
.ls27{letter-spacing:0.046214px;}
.ls2a{letter-spacing:0.047400px;}
.ls2d{letter-spacing:0.047437px;}
.ls53{letter-spacing:0.049748px;}
.ls2f{letter-spacing:0.050642px;}
.ls43{letter-spacing:0.053237px;}
.ls20{letter-spacing:0.053391px;}
.ls3a{letter-spacing:0.054151px;}
.ls66{letter-spacing:0.056300px;}
.ls4d{letter-spacing:0.056702px;}
.ls3e{letter-spacing:0.058672px;}
.ls22{letter-spacing:0.060646px;}
.ls23{letter-spacing:0.061744px;}
.ls52{letter-spacing:0.066400px;}
.lsd{letter-spacing:0.066989px;}
.ls29{letter-spacing:0.068998px;}
.ls1b{letter-spacing:0.071628px;}
.ls6{letter-spacing:0.077394px;}
.ls31{letter-spacing:0.077718px;}
.ls14{letter-spacing:0.082752px;}
.ls3c{letter-spacing:0.083104px;}
.ls37{letter-spacing:0.086849px;}
.ls8{letter-spacing:0.087909px;}
.ls9{letter-spacing:0.089501px;}
.ls16{letter-spacing:0.093996px;}
.ls17{letter-spacing:0.095698px;}
.ls44{letter-spacing:0.095911px;}
.lsf{letter-spacing:0.100017px;}
.ls1d{letter-spacing:0.106942px;}
.ls4e{letter-spacing:0.500113px;}
.ls4a{letter-spacing:2.088690px;}
.ls12{letter-spacing:3.027681px;}
.ls47{letter-spacing:3.237311px;}
.ls65{letter-spacing:3.471857px;}
.ls51{letter-spacing:4.094643px;}
.ls75{letter-spacing:4.127243px;}
.ls71{letter-spacing:4.471180px;}
.ls63{letter-spacing:4.570007px;}
.ls5a{letter-spacing:4.570042px;}
.ls60{letter-spacing:4.570048px;}
.ls5c{letter-spacing:4.570073px;}
.ls6b{letter-spacing:6.534802px;}
.ls6a{letter-spacing:6.614172px;}
.ls50{letter-spacing:7.071918px;}
.ls4c{letter-spacing:7.138450px;}
.ls4f{letter-spacing:8.898838px;}
.ls64{letter-spacing:9.652389px;}
.ls49{letter-spacing:10.074857px;}
.ls79{letter-spacing:11.023179px;}
.ls28{letter-spacing:12.302848px;}
.ls34{letter-spacing:12.663556px;}
.ls32{letter-spacing:12.672687px;}
.ls11{letter-spacing:14.604106px;}
.ls46{letter-spacing:15.615265px;}
.ls25{letter-spacing:16.066391px;}
.ls26{letter-spacing:16.112527px;}
.ls21{letter-spacing:16.119782px;}
.ls39{letter-spacing:16.257201px;}
.ls40{letter-spacing:17.614457px;}
.ls7b{letter-spacing:17.637814px;}
.ls76{letter-spacing:17.638012px;}
.lse{letter-spacing:17.833712px;}
.ls78{letter-spacing:18.372847px;}
.ls1c{letter-spacing:19.068482px;}
.ls6f{letter-spacing:19.107615px;}
.ls70{letter-spacing:19.107681px;}
.ls5f{letter-spacing:19.530027px;}
.ls62{letter-spacing:19.530041px;}
.ls77{letter-spacing:19.636815px;}
.ls56{letter-spacing:19.923226px;}
.ls55{letter-spacing:19.932196px;}
.ls48{letter-spacing:20.149714px;}
.ls33{letter-spacing:20.290117px;}
.ls3d{letter-spacing:21.686543px;}
.ls1f{letter-spacing:22.703111px;}
.lsb{letter-spacing:23.289192px;}
.lsc{letter-spacing:23.356070px;}
.ls7{letter-spacing:23.366585px;}
.ls42{letter-spacing:23.507655px;}
.ls2c{letter-spacing:23.717370px;}
.ls6e{letter-spacing:23.884503px;}
.ls5e{letter-spacing:24.412543px;}
.ls7c{letter-spacing:24.796266px;}
.ls54{letter-spacing:24.892686px;}
.ls19{letter-spacing:24.901688px;}
.ls61{letter-spacing:24.962578px;}
.ls1a{letter-spacing:24.973197px;}
.ls15{letter-spacing:24.984440px;}
.ls35{letter-spacing:25.339682px;}
.ls36{letter-spacing:26.011969px;}
.ls5d{letter-spacing:26.746897px;}
.ls38{letter-spacing:27.095828px;}
.ls3b{letter-spacing:27.824473px;}
.ls10{letter-spacing:29.208212px;}
.ls3f{letter-spacing:29.357963px;}
.ls2e{letter-spacing:29.619877px;}
.ls45{letter-spacing:31.230529px;}
.ls57{letter-spacing:31.437821px;}
.ls6d{letter-spacing:31.506608px;}
.ls7a{letter-spacing:32.788633px;}
.ls5{letter-spacing:32.909513px;}
.ls6c{letter-spacing:34.908079px;}
.ls13{letter-spacing:35.188101px;}
.ls58{letter-spacing:37.151010px;}
.ls69{letter-spacing:38.441568px;}
.ls59{letter-spacing:39.332298px;}
.ls24{letter-spacing:43.436206px;}
.ls2b{letter-spacing:47.995103px;}
.ls30{letter-spacing:51.287186px;}
.ls4b{letter-spacing:52.653837px;}
.ls41{letter-spacing:53.559248px;}
.ls68{letter-spacing:55.691990px;}
.lsa{letter-spacing:62.963372px;}
.ls18{letter-spacing:67.322829px;}
.ls3{letter-spacing:68.138996px;}
.ls72{letter-spacing:71.875413px;}
.ls5b{letter-spacing:186.011052px;}
.ls1e{letter-spacing:217.882070px;}
.ls0{letter-spacing:453.599916px;}
.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;}
}
.ws1f{word-spacing:-52.744807px;}
.ws3{word-spacing:-44.129756px;}
.ws0{word-spacing:-33.121128px;}
.ws1{word-spacing:-33.097317px;}
.wsd{word-spacing:-31.342547px;}
.ws5{word-spacing:-29.312976px;}
.ws16{word-spacing:-20.221987px;}
.ws10{word-spacing:-15.727282px;}
.ws8{word-spacing:-14.708870px;}
.ws3c{word-spacing:-13.484093px;}
.ws19{word-spacing:-10.147130px;}
.ws22{word-spacing:-7.202129px;}
.ws2c{word-spacing:-7.169193px;}
.ws26{word-spacing:-0.579496px;}
.ws2e{word-spacing:-0.169688px;}
.ws50{word-spacing:-0.125669px;}
.ws4b{word-spacing:-0.119055px;}
.ws28{word-spacing:-0.113405px;}
.wsf{word-spacing:-0.112018px;}
.ws4{word-spacing:-0.105827px;}
.ws7{word-spacing:-0.104764px;}
.ws40{word-spacing:-0.099213px;}
.ws2a{word-spacing:-0.097275px;}
.ws3d{word-spacing:-0.092598px;}
.ws20{word-spacing:-0.090971px;}
.ws4e{word-spacing:-0.089225px;}
.ws46{word-spacing:-0.087885px;}
.ws33{word-spacing:-0.085984px;}
.ws5d{word-spacing:-0.079370px;}
.ws15{word-spacing:-0.072756px;}
.ws18{word-spacing:-0.072273px;}
.ws42{word-spacing:-0.070441px;}
.ws3f{word-spacing:-0.065745px;}
.ws44{word-spacing:-0.062398px;}
.ws37{word-spacing:-0.061049px;}
.ws5b{word-spacing:-0.056353px;}
.ws2{word-spacing:0.000000px;}
.ws5f{word-spacing:8.869539px;}
.ws60{word-spacing:8.869605px;}
.ws21{word-spacing:10.483383px;}
.ws5e{word-spacing:10.609132px;}
.ws1d{word-spacing:12.006764px;}
.ws1b{word-spacing:12.014018px;}
.ws2f{word-spacing:12.966452px;}
.ws1a{word-spacing:13.462563px;}
.ws1c{word-spacing:13.469818px;}
.ws32{word-spacing:14.654809px;}
.ws23{word-spacing:15.532947px;}
.ws25{word-spacing:15.565735px;}
.ws17{word-spacing:15.987589px;}
.wsc{word-spacing:17.404520px;}
.wsa{word-spacing:17.415036px;}
.ws14{word-spacing:18.609574px;}
.ws12{word-spacing:18.620818px;}
.ws35{word-spacing:19.002516px;}
.ws56{word-spacing:19.046831px;}
.ws24{word-spacing:19.174790px;}
.ws9{word-spacing:19.514789px;}
.wsb{word-spacing:19.525305px;}
.ws55{word-spacing:20.129373px;}
.ws5c{word-spacing:20.130365px;}
.ws59{word-spacing:20.819297px;}
.ws62{word-spacing:20.839073px;}
.ws11{word-spacing:20.865953px;}
.ws4a{word-spacing:20.867556px;}
.ws13{word-spacing:20.877197px;}
.ws48{word-spacing:21.580339px;}
.ws5a{word-spacing:21.967649px;}
.ws64{word-spacing:22.078834px;}
.ws6{word-spacing:23.174963px;}
.ws3b{word-spacing:23.798452px;}
.ws34{word-spacing:23.823520px;}
.ws36{word-spacing:24.046881px;}
.ws39{word-spacing:24.221759px;}
.ws30{word-spacing:24.229700px;}
.ws31{word-spacing:24.262445px;}
.wse{word-spacing:24.779551px;}
.ws29{word-spacing:25.062429px;}
.ws1e{word-spacing:25.595043px;}
.ws58{word-spacing:25.629189px;}
.ws63{word-spacing:26.091440px;}
.ws3e{word-spacing:26.313359px;}
.ws54{word-spacing:26.493529px;}
.ws38{word-spacing:27.409327px;}
.ws41{word-spacing:27.720458px;}
.ws45{word-spacing:27.763947px;}
.ws51{word-spacing:27.837264px;}
.ws49{word-spacing:28.181027px;}
.ws43{word-spacing:28.867331px;}
.ws61{word-spacing:29.789450px;}
.ws2b{word-spacing:31.825101px;}
.ws4d{word-spacing:32.951805px;}
.ws4c{word-spacing:32.986331px;}
.ws2d{word-spacing:34.436936px;}
.ws53{word-spacing:34.782608px;}
.ws52{word-spacing:34.818986px;}
.ws4f{word-spacing:37.007020px;}
.ws57{word-spacing:41.688399px;}
.ws3a{word-spacing:53.825801px;}
.ws27{word-spacing:92.624705px;}
.ws47{word-spacing:93.328588px;}
._14{margin-left:-105.166874px;}
._d{margin-left:-31.250915px;}
._5{margin-left:-29.227278px;}
._11{margin-left:-20.162866px;}
._e{margin-left:-15.939942px;}
._7{margin-left:-14.564121px;}
._a{margin-left:-9.736061px;}
._8{margin-left:-7.831180px;}
._10{margin-left:-6.693542px;}
._3{margin-left:-4.488377px;}
._4{margin-left:-2.873196px;}
._f{margin-left:-1.309606px;}
._13{width:1.866470px;}
._9{width:2.873196px;}
._2{width:3.994960px;}
._12{width:5.944784px;}
._0{width:7.275589px;}
._6{width:9.360597px;}
._1e{width:10.604237px;}
._1{width:13.148974px;}
._17{width:14.515765px;}
._19{width:24.716333px;}
._20{width:27.118029px;}
._1f{width:30.098463px;}
._16{width:31.617218px;}
._15{width:37.423536px;}
._c{width:49.081207px;}
._b{width:55.007505px;}
._18{width:57.681546px;}
._1a{width:197.507585px;}
._1d{width:717.449820px;}
._1b{width:783.675539px;}
._1c{width:856.527337px;}
.fc7{color:transparent;}
.fc5{color:rgb(54,123,197);}
.fc6{color:rgb(53,121,185);}
.fc4{color:rgb(0,125,204);}
.fc3{color:rgb(0,153,153);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(155,155,155);}
.fsa{font-size:0.000003px;}
.fs1e{font-size:48.503932px;}
.fsf{font-size:50.590958px;}
.fs28{font-size:56.352745px;}
.fs11{font-size:59.602391px;}
.fs1d{font-size:61.048808px;}
.fs24{font-size:62.398376px;}
.fs1b{font-size:62.555990px;}
.fs13{font-size:63.679302px;}
.fs20{font-size:65.744870px;}
.fs0{font-size:66.141720px;}
.fs17{font-size:68.092546px;}
.fs22{font-size:70.440932px;}
.fse{font-size:72.273004px;}
.fsd{font-size:72.755892px;}
.fs9{font-size:73.334612px;}
.fs19{font-size:73.777350px;}
.fsc{font-size:78.412152px;}
.fs1{font-size:79.370064px;}
.fs15{font-size:79.383030px;}
.fs25{font-size:84.529118px;}
.fs10{font-size:85.146517px;}
.fs1c{font-size:85.984236px;}
.fs23{font-size:87.885017px;}
.fs27{font-size:89.225180px;}
.fs1a{font-size:89.365957px;}
.fs12{font-size:90.970692px;}
.fs1f{font-size:92.598408px;}
.fs16{font-size:97.275344px;}
.fs21{font-size:99.212580px;}
.fs8{font-size:104.764032px;}
.fs18{font-size:105.396517px;}
.fs7{font-size:105.826752px;}
.fsb{font-size:112.017681px;}
.fs14{font-size:113.404654px;}
.fs3{font-size:119.055096px;}
.fs26{font-size:125.669268px;}
.fs5{font-size:145.511784px;}
.fs4{font-size:158.740128px;}
.fs6{font-size:191.810988px;}
.fs2{font-size:264.566880px;}
.y61{bottom:-0.000002px;}
.y0{bottom:0.000000px;}
.y38{bottom:0.168967px;}
.y59{bottom:0.549315px;}
.y33{bottom:0.676212px;}
.y1a{bottom:0.979849px;}
.y2b{bottom:1.047816px;}
.yb{bottom:1.310865px;}
.y5d{bottom:2.080453px;}
.y5e{bottom:3.197914px;}
.y4c{bottom:3.292070px;}
.y3b{bottom:3.351208px;}
.y1{bottom:3.652308px;}
.y40{bottom:4.177978px;}
.y44{bottom:4.940132px;}
.y48{bottom:5.352052px;}
.y37{bottom:5.431546px;}
.y60{bottom:6.610262px;}
.y63{bottom:8.107950px;}
.y5c{bottom:8.690717px;}
.y4b{bottom:8.815436px;}
.y3a{bottom:8.973757px;}
.y43{bottom:10.952347px;}
.y3f{bottom:11.187084px;}
.y47{bottom:11.866205px;}
.y32{bottom:13.070409px;}
.y65{bottom:13.508550px;}
.y57{bottom:17.027666px;}
.y19{bottom:18.945977px;}
.y2a{bottom:20.257883px;}
.y36{bottom:24.927632px;}
.y39{bottom:29.803290px;}
.y58{bottom:30.859713px;}
.y42{bottom:34.581006px;}
.y3e{bottom:37.152978px;}
.y46{bottom:37.468063px;}
.y10{bottom:38.196210px;}
.y7{bottom:60.696075px;}
.y3{bottom:90.092250px;}
.y6{bottom:95.420475px;}
.y74{bottom:109.142728px;}
.y73{bottom:114.516753px;}
.y22{bottom:122.775645px;}
.y5b{bottom:127.556865px;}
.y5f{bottom:129.637320px;}
.y5{bottom:130.144890px;}
.y5a{bottom:136.247595px;}
.y21{bottom:152.539500px;}
.y4{bottom:164.869350px;}
.y45{bottom:191.446200px;}
.y76{bottom:195.633673px;}
.y34{bottom:201.707700px;}
.y20{bottom:212.067000px;}
.y75{bottom:212.995812px;}
.y56{bottom:228.215100px;}
.y1f{bottom:241.830750px;}
.y7e{bottom:242.552073px;}
.y55{bottom:245.242800px;}
.y7d{bottom:257.433936px;}
.y3d{bottom:265.984650px;}
.y1e{bottom:271.594500px;}
.y41{bottom:272.661150px;}
.y72{bottom:282.933047px;}
.y70{bottom:283.286159px;}
.y6e{bottom:292.165050px;}
.y6f{bottom:300.648358px;}
.y71{bottom:301.535488px;}
.ya{bottom:303.910500px;}
.y1d{bottom:331.122150px;}
.y7c{bottom:338.758323px;}
.y3c{bottom:340.183950px;}
.y9{bottom:350.209650px;}
.y7b{bottom:353.640336px;}
.y54{bottom:360.701597px;}
.y1c{bottom:360.885900px;}
.y52{bottom:361.054709px;}
.y51{bottom:378.416908px;}
.y53{bottom:379.303888px;}
.y68{bottom:388.565100px;}
.y1b{bottom:390.649650px;}
.y35{bottom:392.248050px;}
.y2{bottom:420.372000px;}
.y67{bottom:425.769900px;}
.y4a{bottom:431.817900px;}
.y31{bottom:432.735000px;}
.y7a{bottom:442.273179px;}
.y30{bottom:448.428300px;}
.y66{bottom:462.974550px;}
.y2f{bottom:468.270900px;}
.y28{bottom:471.269550px;}
.y18{bottom:473.513550px;}
.y6c{bottom:486.572050px;}
.y6b{bottom:494.426470px;}
.y64{bottom:500.179350px;}
.y27{bottom:501.033450px;}
.y2e{bottom:507.955950px;}
.y49{bottom:511.876650px;}
.y7f{bottom:514.539750px;}
.y26{bottom:530.797200px;}
.y62{bottom:537.384000px;}
.y17{bottom:539.876700px;}
.y2d{bottom:547.641000px;}
.y69{bottom:552.848295px;}
.y25{bottom:560.560950px;}
.y16{bottom:569.640450px;}
.yd{bottom:580.900050px;}
.y79{bottom:587.575751px;}
.y24{bottom:590.324700px;}
.y29{bottom:592.960500px;}
.y15{bottom:599.404200px;}
.y50{bottom:612.053853px;}
.y14{bottom:629.167950px;}
.yc{bottom:632.622900px;}
.y6a{bottom:645.847051px;}
.y23{bottom:649.852200px;}
.y13{bottom:658.931850px;}
.y4f{bottom:661.274818px;}
.y4e{bottom:666.648903px;}
.y78{bottom:672.206930px;}
.y77{bottom:677.167451px;}
.y2c{bottom:680.858100px;}
.y12{bottom:688.695600px;}
.y6d{bottom:709.524900px;}
.y4d{bottom:711.597300px;}
.y11{bottom:718.459350px;}
.y8{bottom:787.979250px;}
.ye{bottom:810.684450px;}
.yf{bottom:816.222600px;}
.h15{height:0.000002px;}
.h1f{height:24.927630px;}
.h43{height:25.394160px;}
.h3f{height:27.474630px;}
.h4{height:27.900615px;}
.hb{height:27.976665px;}
.h30{height:29.277555px;}
.h22{height:29.803290px;}
.h29{height:34.581015px;}
.h44{height:35.551185px;}
.h2{height:35.757525px;}
.h26{height:37.152975px;}
.h2c{height:37.468065px;}
.h1b{height:40.302390px;}
.h3d{height:42.618091px;}
.h3a{height:43.752748px;}
.h46{height:46.669598px;}
.hf{height:49.606290px;}
.h1a{height:53.184557px;}
.h1e{height:54.204753px;}
.h55{height:54.209754px;}
.h52{height:54.606604px;}
.h3b{height:54.886845px;}
.h3{height:57.977351px;}
.h11{height:58.420740px;}
.hc{height:60.302646px;}
.h16{height:62.465670px;}
.h38{height:63.244713px;}
.h3e{height:65.468179px;}
.h36{height:65.663343px;}
.h4b{height:67.414173px;}
.h50{height:67.856008px;}
.h45{height:72.229471px;}
.h34{height:73.510401px;}
.h4c{height:73.510521px;}
.h51{height:74.448688px;}
.h40{height:75.135612px;}
.h20{height:75.860664px;}
.h10{height:77.359356px;}
.h14{height:78.573024px;}
.h4d{height:80.653255px;}
.h35{height:80.653495px;}
.h31{height:80.871063px;}
.h48{height:81.909906px;}
.h42{height:81.996679px;}
.h23{height:82.386936px;}
.h19{height:84.013261px;}
.h32{height:85.096464px;}
.h8{height:86.675365px;}
.h9{height:86.791630px;}
.h33{height:86.909715px;}
.h7{height:86.966027px;}
.h25{height:90.718214px;}
.h53{height:91.771843px;}
.h2a{height:92.406988px;}
.h2d{height:95.377801px;}
.h21{height:96.910980px;}
.h2b{height:97.005368px;}
.h2f{height:100.361159px;}
.h41{height:101.576667px;}
.hd{height:102.597176px;}
.h27{height:102.704089px;}
.h1c{height:103.099625px;}
.h24{height:104.877131px;}
.h49{height:107.438369px;}
.h28{height:109.234155px;}
.h54{height:110.165252px;}
.ha{height:115.954703px;}
.h4a{height:117.878139px;}
.h47{height:120.336483px;}
.h2e{height:126.178333px;}
.h4e{height:128.990054px;}
.h37{height:131.935114px;}
.h4f{height:133.156259px;}
.he{height:140.111933px;}
.h39{height:141.359108px;}
.h12{height:149.449057px;}
.h3c{height:152.434933px;}
.h1d{height:158.288828px;}
.h17{height:159.796608px;}
.h5{height:185.532750px;}
.h6{height:192.611923px;}
.h56{height:198.425160px;}
.h13{height:229.449100px;}
.h18{height:245.335691px;}
.h0{height:892.913400px;}
.h1{height:893.250000px;}
.w14{width:173.313900px;}
.w13{width:179.721300px;}
.w11{width:195.611400px;}
.wa{width:207.578250px;}
.w9{width:207.730200px;}
.w12{width:212.476800px;}
.wb{width:225.109950px;}
.wc{width:237.158100px;}
.wd{width:264.813750px;}
.wf{width:301.948500px;}
.we{width:307.160700px;}
.w10{width:316.446750px;}
.w3{width:362.334000px;}
.w8{width:434.762100px;}
.w5{width:437.176650px;}
.w2{width:538.885200px;}
.w6{width:630.213750px;}
.w7{width:673.848300px;}
.w4{width:1190.551200px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x29{left:-1.228090px;}
.x0{left:0.000000px;}
.x3c{left:3.307050px;}
.x4{left:5.952750px;}
.x2{left:11.905515px;}
.x22{left:13.024884px;}
.x1d{left:16.213227px;}
.x2a{left:19.602390px;}
.x1{left:36.141750px;}
.x13{left:47.919240px;}
.x25{left:49.166392px;}
.x38{left:59.762460px;}
.x5{left:63.218970px;}
.x23{left:77.404551px;}
.x3a{left:92.293126px;}
.x2d{left:93.523046px;}
.xd{left:95.244090px;}
.x3d{left:106.433115px;}
.x37{left:112.457337px;}
.xc{left:133.537350px;}
.x1f{left:136.184137px;}
.x1a{left:144.030674px;}
.x18{left:149.234100px;}
.x19{left:153.647100px;}
.xb{left:155.191650px;}
.x45{left:160.419600px;}
.x27{left:162.343668px;}
.xa{left:163.448850px;}
.x2e{left:164.844750px;}
.x2c{left:166.158900px;}
.x1c{left:169.265250px;}
.x2b{left:181.432688px;}
.x40{left:185.071950px;}
.x44{left:194.233050px;}
.x20{left:198.039021px;}
.x12{left:208.781009px;}
.x24{left:211.810950px;}
.x16{left:223.236748px;}
.x3e{left:281.400450px;}
.x3f{left:287.039550px;}
.x4b{left:310.484550px;}
.x49{left:319.619100px;}
.x55{left:324.653100px;}
.x1b{left:345.979552px;}
.x4c{left:378.210265px;}
.xf{left:384.837000px;}
.x4d{left:387.984600px;}
.x50{left:421.726800px;}
.x4f{left:428.858100px;}
.x41{left:430.680960px;}
.x9{left:446.240850px;}
.x36{left:456.999150px;}
.x28{left:475.770600px;}
.x15{left:478.190400px;}
.x2f{left:485.633700px;}
.x51{left:496.131600px;}
.x53{left:498.422550px;}
.x32{left:499.506450px;}
.x8{left:500.885250px;}
.x10{left:504.673800px;}
.x21{left:508.165800px;}
.x30{left:510.400533px;}
.x26{left:522.310350px;}
.x6{left:532.916250px;}
.x4a{left:534.814162px;}
.x17{left:536.242209px;}
.x11{left:545.297550px;}
.x54{left:563.586480px;}
.x52{left:570.244952px;}
.x33{left:578.825254px;}
.x46{left:592.891350px;}
.x4e{left:594.477892px;}
.x7{left:620.085750px;}
.x3{left:637.370100px;}
.x42{left:648.415050px;}
.x14{left:657.217950px;}
.x31{left:659.495975px;}
.x43{left:669.994497px;}
.x47{left:672.210154px;}
.x34{left:702.917100px;}
.x1e{left:762.756150px;}
.x39{left:780.333000px;}
.x35{left:796.532123px;}
.x48{left:889.917023px;}
.xe{left:998.303550px;}
.x3b{left:1003.281600px;}
@media print{
.v2b{vertical-align:-36.010308pt;}
.v27{vertical-align:-27.926829pt;}
.v24{vertical-align:-22.047160pt;}
.v22{vertical-align:-20.577243pt;}
.v1e{vertical-align:-19.107859pt;}
.v23{vertical-align:-18.108400pt;}
.v2c{vertical-align:-15.520876pt;}
.v16{vertical-align:-12.975340pt;}
.v1c{vertical-align:-11.920325pt;}
.v1{vertical-align:-5.095467pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:7.353888pt;}
.v1b{vertical-align:9.102829pt;}
.v20{vertical-align:11.092254pt;}
.v21{vertical-align:15.391913pt;}
.v2a{vertical-align:17.637408pt;}
.v10{vertical-align:18.711391pt;}
.v13{vertical-align:19.991284pt;}
.v18{vertical-align:21.376765pt;}
.ve{vertical-align:23.310908pt;}
.v15{vertical-align:24.921265pt;}
.vc{vertical-align:26.528652pt;}
.v1f{vertical-align:28.279170pt;}
.vf{vertical-align:31.246428pt;}
.v1d{vertical-align:32.794846pt;}
.v5{vertical-align:33.790552pt;}
.va{vertical-align:36.130142pt;}
.v3{vertical-align:38.454864pt;}
.v8{vertical-align:41.117400pt;}
.vb{vertical-align:43.462108pt;}
.v28{vertical-align:47.386922pt;}
.v26{vertical-align:48.434430pt;}
.v12{vertical-align:49.957819pt;}
.v25{vertical-align:52.407623pt;}
.v14{vertical-align:53.375025pt;}
.v29{vertical-align:58.028755pt;}
.v1a{vertical-align:61.839056pt;}
.v2{vertical-align:63.000919pt;}
.v6{vertical-align:67.362975pt;}
.v7{vertical-align:68.302459pt;}
.v17{vertical-align:82.139545pt;}
.vd{vertical-align:87.530364pt;}
.v19{vertical-align:88.997084pt;}
.v4{vertical-align:126.880485pt;}
.v9{vertical-align:135.665433pt;}
.ls73{letter-spacing:-0.021165pt;}
.ls2{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.017638pt;}
.ls1{letter-spacing:0.021165pt;}
.ls4{letter-spacing:0.025869pt;}
.ls67{letter-spacing:0.038924pt;}
.ls27{letter-spacing:0.041079pt;}
.ls2a{letter-spacing:0.042133pt;}
.ls2d{letter-spacing:0.042166pt;}
.ls53{letter-spacing:0.044221pt;}
.ls2f{letter-spacing:0.045015pt;}
.ls43{letter-spacing:0.047322pt;}
.ls20{letter-spacing:0.047459pt;}
.ls3a{letter-spacing:0.048135pt;}
.ls66{letter-spacing:0.050045pt;}
.ls4d{letter-spacing:0.050402pt;}
.ls3e{letter-spacing:0.052153pt;}
.ls22{letter-spacing:0.053907pt;}
.ls23{letter-spacing:0.054883pt;}
.ls52{letter-spacing:0.059022pt;}
.lsd{letter-spacing:0.059546pt;}
.ls29{letter-spacing:0.061332pt;}
.ls1b{letter-spacing:0.063669pt;}
.ls6{letter-spacing:0.068794pt;}
.ls31{letter-spacing:0.069082pt;}
.ls14{letter-spacing:0.073558pt;}
.ls3c{letter-spacing:0.073870pt;}
.ls37{letter-spacing:0.077199pt;}
.ls8{letter-spacing:0.078142pt;}
.ls9{letter-spacing:0.079557pt;}
.ls16{letter-spacing:0.083552pt;}
.ls17{letter-spacing:0.085065pt;}
.ls44{letter-spacing:0.085254pt;}
.lsf{letter-spacing:0.088904pt;}
.ls1d{letter-spacing:0.095060pt;}
.ls4e{letter-spacing:0.444545pt;}
.ls4a{letter-spacing:1.856613pt;}
.ls12{letter-spacing:2.691272pt;}
.ls47{letter-spacing:2.877610pt;}
.ls65{letter-spacing:3.086096pt;}
.ls51{letter-spacing:3.639683pt;}
.ls75{letter-spacing:3.668661pt;}
.ls71{letter-spacing:3.974382pt;}
.ls63{letter-spacing:4.062228pt;}
.ls5a{letter-spacing:4.062259pt;}
.ls60{letter-spacing:4.062265pt;}
.ls5c{letter-spacing:4.062287pt;}
.ls6b{letter-spacing:5.808713pt;}
.ls6a{letter-spacing:5.879264pt;}
.ls50{letter-spacing:6.286149pt;}
.ls4c{letter-spacing:6.345289pt;}
.ls4f{letter-spacing:7.910078pt;}
.ls64{letter-spacing:8.579902pt;}
.ls49{letter-spacing:8.955428pt;}
.ls79{letter-spacing:9.798381pt;}
.ls28{letter-spacing:10.935865pt;}
.ls34{letter-spacing:11.256494pt;}
.ls32{letter-spacing:11.264611pt;}
.ls11{letter-spacing:12.981428pt;}
.ls46{letter-spacing:13.880235pt;}
.ls25{letter-spacing:14.281236pt;}
.ls26{letter-spacing:14.322246pt;}
.ls21{letter-spacing:14.328695pt;}
.ls39{letter-spacing:14.450846pt;}
.ls40{letter-spacing:15.657295pt;}
.ls7b{letter-spacing:15.678057pt;}
.ls76{letter-spacing:15.678233pt;}
.lse{letter-spacing:15.852188pt;}
.ls78{letter-spacing:16.331420pt;}
.ls1c{letter-spacing:16.949762pt;}
.ls6f{letter-spacing:16.984547pt;}
.ls70{letter-spacing:16.984606pt;}
.ls5f{letter-spacing:17.360024pt;}
.ls62{letter-spacing:17.360037pt;}
.ls77{letter-spacing:17.454947pt;}
.ls56{letter-spacing:17.709534pt;}
.ls55{letter-spacing:17.717508pt;}
.ls48{letter-spacing:17.910857pt;}
.ls33{letter-spacing:18.035659pt;}
.ls3d{letter-spacing:19.276927pt;}
.ls1f{letter-spacing:20.180543pt;}
.lsb{letter-spacing:20.701504pt;}
.lsc{letter-spacing:20.760951pt;}
.ls7{letter-spacing:20.770298pt;}
.ls42{letter-spacing:20.895693pt;}
.ls2c{letter-spacing:21.082107pt;}
.ls6e{letter-spacing:21.230669pt;}
.ls5e{letter-spacing:21.700038pt;}
.ls7c{letter-spacing:22.041126pt;}
.ls54{letter-spacing:22.126832pt;}
.ls19{letter-spacing:22.134834pt;}
.ls61{letter-spacing:22.188958pt;}
.ls1a{letter-spacing:22.198397pt;}
.ls15{letter-spacing:22.208391pt;}
.ls35{letter-spacing:22.524161pt;}
.ls36{letter-spacing:23.121751pt;}
.ls5d{letter-spacing:23.775019pt;}
.ls38{letter-spacing:24.085181pt;}
.ls3b{letter-spacing:24.732864pt;}
.ls10{letter-spacing:25.962855pt;}
.ls3f{letter-spacing:26.095967pt;}
.ls2e{letter-spacing:26.328780pt;}
.ls45{letter-spacing:27.760471pt;}
.ls57{letter-spacing:27.944730pt;}
.ls6d{letter-spacing:28.005874pt;}
.ls7a{letter-spacing:29.145452pt;}
.ls5{letter-spacing:29.252901pt;}
.ls6c{letter-spacing:31.029403pt;}
.ls13{letter-spacing:31.278312pt;}
.ls58{letter-spacing:33.023120pt;}
.ls69{letter-spacing:34.170282pt;}
.ls59{letter-spacing:34.962043pt;}
.ls24{letter-spacing:38.609961pt;}
.ls2b{letter-spacing:42.662314pt;}
.ls30{letter-spacing:45.588610pt;}
.ls4b{letter-spacing:46.803410pt;}
.ls41{letter-spacing:47.608221pt;}
.ls68{letter-spacing:49.503991pt;}
.lsa{letter-spacing:55.967442pt;}
.ls18{letter-spacing:59.842514pt;}
.ls3{letter-spacing:60.567996pt;}
.ls72{letter-spacing:63.889256pt;}
.ls5b{letter-spacing:165.343157pt;}
.ls1e{letter-spacing:193.672951pt;}
.ls0{letter-spacing:403.199925pt;}
.ws1f{word-spacing:-46.884273pt;}
.ws3{word-spacing:-39.226449pt;}
.ws0{word-spacing:-29.441002pt;}
.ws1{word-spacing:-29.419837pt;}
.wsd{word-spacing:-27.860042pt;}
.ws5{word-spacing:-26.055979pt;}
.ws16{word-spacing:-17.975099pt;}
.ws10{word-spacing:-13.979807pt;}
.ws8{word-spacing:-13.074551pt;}
.ws3c{word-spacing:-11.985861pt;}
.ws19{word-spacing:-9.019671pt;}
.ws22{word-spacing:-6.401892pt;}
.ws2c{word-spacing:-6.372616pt;}
.ws26{word-spacing:-0.515108pt;}
.ws2e{word-spacing:-0.150834pt;}
.ws50{word-spacing:-0.111706pt;}
.ws4b{word-spacing:-0.105827pt;}
.ws28{word-spacing:-0.100804pt;}
.wsf{word-spacing:-0.099571pt;}
.ws4{word-spacing:-0.094068pt;}
.ws7{word-spacing:-0.093124pt;}
.ws40{word-spacing:-0.088189pt;}
.ws2a{word-spacing:-0.086467pt;}
.ws3d{word-spacing:-0.082310pt;}
.ws20{word-spacing:-0.080863pt;}
.ws4e{word-spacing:-0.079311pt;}
.ws46{word-spacing:-0.078120pt;}
.ws33{word-spacing:-0.076430pt;}
.ws5d{word-spacing:-0.070551pt;}
.ws15{word-spacing:-0.064672pt;}
.ws18{word-spacing:-0.064243pt;}
.ws42{word-spacing:-0.062614pt;}
.ws3f{word-spacing:-0.058440pt;}
.ws44{word-spacing:-0.055465pt;}
.ws37{word-spacing:-0.054266pt;}
.ws5b{word-spacing:-0.050091pt;}
.ws2{word-spacing:0.000000pt;}
.ws5f{word-spacing:7.884034pt;}
.ws60{word-spacing:7.884093pt;}
.ws21{word-spacing:9.318562pt;}
.ws5e{word-spacing:9.430339pt;}
.ws1d{word-spacing:10.672679pt;}
.ws1b{word-spacing:10.679127pt;}
.ws2f{word-spacing:11.525735pt;}
.ws1a{word-spacing:11.966723pt;}
.ws1c{word-spacing:11.973171pt;}
.ws32{word-spacing:13.026497pt;}
.ws23{word-spacing:13.807064pt;}
.ws25{word-spacing:13.836209pt;}
.ws17{word-spacing:14.211190pt;}
.wsc{word-spacing:15.470685pt;}
.wsa{word-spacing:15.480032pt;}
.ws14{word-spacing:16.541844pt;}
.ws12{word-spacing:16.551838pt;}
.ws35{word-spacing:16.891125pt;}
.ws56{word-spacing:16.930517pt;}
.ws24{word-spacing:17.044258pt;}
.ws9{word-spacing:17.346479pt;}
.wsb{word-spacing:17.355826pt;}
.ws55{word-spacing:17.892776pt;}
.ws5c{word-spacing:17.893658pt;}
.ws59{word-spacing:18.506042pt;}
.ws62{word-spacing:18.523621pt;}
.ws11{word-spacing:18.547514pt;}
.ws4a{word-spacing:18.548939pt;}
.ws13{word-spacing:18.557509pt;}
.ws48{word-spacing:19.182523pt;}
.ws5a{word-spacing:19.526800pt;}
.ws64{word-spacing:19.625630pt;}
.ws6{word-spacing:20.599968pt;}
.ws3b{word-spacing:21.154180pt;}
.ws34{word-spacing:21.176462pt;}
.ws36{word-spacing:21.375005pt;}
.ws39{word-spacing:21.530453pt;}
.ws30{word-spacing:21.537511pt;}
.ws31{word-spacing:21.566618pt;}
.wse{word-spacing:22.026268pt;}
.ws29{word-spacing:22.277714pt;}
.ws1e{word-spacing:22.751149pt;}
.ws58{word-spacing:22.781501pt;}
.ws63{word-spacing:23.192391pt;}
.ws3e{word-spacing:23.389652pt;}
.ws54{word-spacing:23.549804pt;}
.ws38{word-spacing:24.363846pt;}
.ws41{word-spacing:24.640407pt;}
.ws45{word-spacing:24.679064pt;}
.ws51{word-spacing:24.744235pt;}
.ws49{word-spacing:25.049801pt;}
.ws43{word-spacing:25.659850pt;}
.ws61{word-spacing:26.479511pt;}
.ws2b{word-spacing:28.288979pt;}
.ws4d{word-spacing:29.290493pt;}
.ws4c{word-spacing:29.321183pt;}
.ws2d{word-spacing:30.610610pt;}
.ws53{word-spacing:30.917874pt;}
.ws52{word-spacing:30.950209pt;}
.ws4f{word-spacing:32.895129pt;}
.ws57{word-spacing:37.056354pt;}
.ws3a{word-spacing:47.845156pt;}
.ws27{word-spacing:82.333071pt;}
.ws47{word-spacing:82.958745pt;}
._14{margin-left:-93.481666pt;}
._d{margin-left:-27.778592pt;}
._5{margin-left:-25.979803pt;}
._11{margin-left:-17.922548pt;}
._e{margin-left:-14.168837pt;}
._7{margin-left:-12.945886pt;}
._a{margin-left:-8.654277pt;}
._8{margin-left:-6.961049pt;}
._10{margin-left:-5.949815pt;}
._3{margin-left:-3.989669pt;}
._4{margin-left:-2.553952pt;}
._f{margin-left:-1.164094pt;}
._13{width:1.659085pt;}
._9{width:2.553952pt;}
._2{width:3.551075pt;}
._12{width:5.284253pt;}
._0{width:6.467190pt;}
._6{width:8.320530pt;}
._1e{width:9.425988pt;}
._1{width:11.687977pt;}
._17{width:12.902902pt;}
._19{width:21.970074pt;}
._20{width:24.104915pt;}
._1f{width:26.754189pt;}
._16{width:28.104193pt;}
._15{width:33.265365pt;}
._c{width:43.627740pt;}
._b{width:48.895560pt;}
._18{width:51.272485pt;}
._1a{width:175.562298pt;}
._1d{width:637.733173pt;}
._1b{width:696.600480pt;}
._1c{width:761.357633pt;}
.fsa{font-size:0.000003pt;}
.fs1e{font-size:43.114607pt;}
.fsf{font-size:44.969740pt;}
.fs28{font-size:50.091329pt;}
.fs11{font-size:52.979903pt;}
.fs1d{font-size:54.265607pt;}
.fs24{font-size:55.465224pt;}
.fs1b{font-size:55.605325pt;}
.fs13{font-size:56.603824pt;}
.fs20{font-size:58.439884pt;}
.fs0{font-size:58.792640pt;}
.fs17{font-size:60.526707pt;}
.fs22{font-size:62.614162pt;}
.fse{font-size:64.242670pt;}
.fsd{font-size:64.671904pt;}
.fs9{font-size:65.186322pt;}
.fs19{font-size:65.579867pt;}
.fsc{font-size:69.699691pt;}
.fs1{font-size:70.551168pt;}
.fs15{font-size:70.562694pt;}
.fs25{font-size:75.136994pt;}
.fs10{font-size:75.685792pt;}
.fs1c{font-size:76.430432pt;}
.fs23{font-size:78.120015pt;}
.fs27{font-size:79.311271pt;}
.fs1a{font-size:79.436406pt;}
.fs12{font-size:80.862838pt;}
.fs1f{font-size:82.309696pt;}
.fs16{font-size:86.466973pt;}
.fs21{font-size:88.188960pt;}
.fs8{font-size:93.123584pt;}
.fs18{font-size:93.685793pt;}
.fs7{font-size:94.068224pt;}
.fsb{font-size:99.571272pt;}
.fs14{font-size:100.804137pt;}
.fs3{font-size:105.826752pt;}
.fs26{font-size:111.706016pt;}
.fs5{font-size:129.343808pt;}
.fs4{font-size:141.102336pt;}
.fs6{font-size:170.498656pt;}
.fs2{font-size:235.170560pt;}
.y61{bottom:-0.000002pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:0.150193pt;}
.y59{bottom:0.488280pt;}
.y33{bottom:0.601077pt;}
.y1a{bottom:0.870977pt;}
.y2b{bottom:0.931392pt;}
.yb{bottom:1.165213pt;}
.y5d{bottom:1.849292pt;}
.y5e{bottom:2.842590pt;}
.y4c{bottom:2.926285pt;}
.y3b{bottom:2.978852pt;}
.y1{bottom:3.246496pt;}
.y40{bottom:3.713759pt;}
.y44{bottom:4.391229pt;}
.y48{bottom:4.757379pt;}
.y37{bottom:4.828041pt;}
.y60{bottom:5.875788pt;}
.y63{bottom:7.207067pt;}
.y5c{bottom:7.725082pt;}
.y4b{bottom:7.835944pt;}
.y3a{bottom:7.976673pt;}
.y43{bottom:9.735420pt;}
.y3f{bottom:9.944075pt;}
.y47{bottom:10.547738pt;}
.y32{bottom:11.618141pt;}
.y65{bottom:12.007600pt;}
.y57{bottom:15.135703pt;}
.y19{bottom:16.840869pt;}
.y2a{bottom:18.007007pt;}
.y36{bottom:22.157895pt;}
.y39{bottom:26.491813pt;}
.y58{bottom:27.430856pt;}
.y42{bottom:30.738672pt;}
.y3e{bottom:33.024870pt;}
.y46{bottom:33.304945pt;}
.y10{bottom:33.952187pt;}
.y7{bottom:53.952067pt;}
.y3{bottom:80.082000pt;}
.y6{bottom:84.818200pt;}
.y74{bottom:97.015758pt;}
.y73{bottom:101.792670pt;}
.y22{bottom:109.133907pt;}
.y5b{bottom:113.383880pt;}
.y5f{bottom:115.233173pt;}
.y5{bottom:115.684347pt;}
.y5a{bottom:121.108973pt;}
.y21{bottom:135.590667pt;}
.y4{bottom:146.550533pt;}
.y45{bottom:170.174400pt;}
.y76{bottom:173.896598pt;}
.y34{bottom:179.295733pt;}
.y20{bottom:188.504000pt;}
.y75{bottom:189.329610pt;}
.y56{bottom:202.857867pt;}
.y1f{bottom:214.960667pt;}
.y7e{bottom:215.601843pt;}
.y55{bottom:217.993600pt;}
.y7d{bottom:228.830165pt;}
.y3d{bottom:236.430800pt;}
.y1e{bottom:241.417333pt;}
.y41{bottom:242.365467pt;}
.y72{bottom:251.496042pt;}
.y70{bottom:251.809919pt;}
.y6e{bottom:259.702267pt;}
.y6f{bottom:267.242985pt;}
.y71{bottom:268.031545pt;}
.ya{bottom:270.142667pt;}
.y1d{bottom:294.330800pt;}
.y7c{bottom:301.118509pt;}
.y3c{bottom:302.385733pt;}
.y9{bottom:311.297467pt;}
.y7b{bottom:314.346965pt;}
.y54{bottom:320.623642pt;}
.y1c{bottom:320.787467pt;}
.y52{bottom:320.937519pt;}
.y51{bottom:336.370585pt;}
.y53{bottom:337.159012pt;}
.y68{bottom:345.391200pt;}
.y1b{bottom:347.244133pt;}
.y35{bottom:348.664933pt;}
.y2{bottom:373.664000pt;}
.y67{bottom:378.462133pt;}
.y4a{bottom:383.838133pt;}
.y31{bottom:384.653333pt;}
.y7a{bottom:393.131715pt;}
.y30{bottom:398.602933pt;}
.y66{bottom:411.532933pt;}
.y2f{bottom:416.240800pt;}
.y28{bottom:418.906267pt;}
.y18{bottom:420.900933pt;}
.y6c{bottom:432.508488pt;}
.y6b{bottom:439.490196pt;}
.y64{bottom:444.603867pt;}
.y27{bottom:445.363067pt;}
.y2e{bottom:451.516400pt;}
.y49{bottom:455.001467pt;}
.y7f{bottom:457.368667pt;}
.y26{bottom:471.819733pt;}
.y62{bottom:477.674667pt;}
.y17{bottom:479.890400pt;}
.y2d{bottom:486.792000pt;}
.y69{bottom:491.420707pt;}
.y25{bottom:498.276400pt;}
.y16{bottom:506.347067pt;}
.yd{bottom:516.355600pt;}
.y79{bottom:522.289556pt;}
.y24{bottom:524.733067pt;}
.y29{bottom:527.076000pt;}
.y15{bottom:532.803733pt;}
.y50{bottom:544.047870pt;}
.y14{bottom:559.260400pt;}
.yc{bottom:562.331467pt;}
.y6a{bottom:574.086267pt;}
.y23{bottom:577.646400pt;}
.y13{bottom:585.717200pt;}
.y4f{bottom:587.799838pt;}
.y4e{bottom:592.576803pt;}
.y78{bottom:597.517271pt;}
.y77{bottom:601.926623pt;}
.y2c{bottom:605.207200pt;}
.y12{bottom:612.173867pt;}
.y6d{bottom:630.688800pt;}
.y4d{bottom:632.530933pt;}
.y11{bottom:638.630533pt;}
.y8{bottom:700.426000pt;}
.ye{bottom:720.608400pt;}
.yf{bottom:725.531200pt;}
.h15{height:0.000002pt;}
.h1f{height:22.157893pt;}
.h43{height:22.572587pt;}
.h3f{height:24.421893pt;}
.h4{height:24.800547pt;}
.hb{height:24.868147pt;}
.h30{height:26.024493pt;}
.h22{height:26.491813pt;}
.h29{height:30.738680pt;}
.h44{height:31.601053pt;}
.h2{height:31.784467pt;}
.h26{height:33.024867pt;}
.h2c{height:33.304947pt;}
.h1b{height:35.824347pt;}
.h3d{height:37.882748pt;}
.h3a{height:38.891331pt;}
.h46{height:41.484087pt;}
.hf{height:44.094480pt;}
.h1a{height:47.275162pt;}
.h1e{height:48.182003pt;}
.h55{height:48.186448pt;}
.h52{height:48.539204pt;}
.h3b{height:48.788307pt;}
.h3{height:51.535423pt;}
.h11{height:51.929547pt;}
.hc{height:53.602352pt;}
.h16{height:55.525040pt;}
.h38{height:56.217522pt;}
.h3e{height:58.193937pt;}
.h36{height:58.367416pt;}
.h4b{height:59.923709pt;}
.h50{height:60.316452pt;}
.h45{height:64.203974pt;}
.h34{height:65.342579pt;}
.h4c{height:65.342686pt;}
.h51{height:66.176612pt;}
.h40{height:66.787211pt;}
.h20{height:67.431702pt;}
.h10{height:68.763872pt;}
.h14{height:69.842688pt;}
.h4d{height:71.691783pt;}
.h35{height:71.691996pt;}
.h31{height:71.885390pt;}
.h48{height:72.808805pt;}
.h42{height:72.885937pt;}
.h23{height:73.232832pt;}
.h19{height:74.678454pt;}
.h32{height:75.641301pt;}
.h8{height:77.044769pt;}
.h9{height:77.148116pt;}
.h33{height:77.253080pt;}
.h7{height:77.303135pt;}
.h25{height:80.638413pt;}
.h53{height:81.574972pt;}
.h2a{height:82.139545pt;}
.h2d{height:84.780268pt;}
.h21{height:86.143093pt;}
.h2b{height:86.226994pt;}
.h2f{height:89.209919pt;}
.h41{height:90.290371pt;}
.hd{height:91.197490pt;}
.h27{height:91.292523pt;}
.h1c{height:91.644111pt;}
.h24{height:93.224117pt;}
.h49{height:95.500772pt;}
.h28{height:97.097027pt;}
.h54{height:97.924668pt;}
.ha{height:103.070847pt;}
.h4a{height:104.780568pt;}
.h47{height:106.965763pt;}
.h2e{height:112.158518pt;}
.h4e{height:114.657825pt;}
.h37{height:117.275657pt;}
.h4f{height:118.361119pt;}
.he{height:124.543940pt;}
.h39{height:125.652541pt;}
.h12{height:132.843607pt;}
.h3c{height:135.497718pt;}
.h1d{height:140.701180pt;}
.h17{height:142.041429pt;}
.h5{height:164.918000pt;}
.h6{height:171.210598pt;}
.h56{height:176.377920pt;}
.h13{height:203.954755pt;}
.h18{height:218.076170pt;}
.h0{height:793.700800pt;}
.h1{height:794.000000pt;}
.w14{width:154.056800pt;}
.w13{width:159.752267pt;}
.w11{width:173.876800pt;}
.wa{width:184.514000pt;}
.w9{width:184.649067pt;}
.w12{width:188.868267pt;}
.wb{width:200.097733pt;}
.wc{width:210.807200pt;}
.wd{width:235.390000pt;}
.wf{width:268.398667pt;}
.we{width:273.031733pt;}
.w10{width:281.286000pt;}
.w3{width:322.074667pt;}
.w8{width:386.455200pt;}
.w5{width:388.601467pt;}
.w2{width:479.009067pt;}
.w6{width:560.190000pt;}
.w7{width:598.976267pt;}
.w4{width:1058.267733pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x29{left:-1.091636pt;}
.x0{left:0.000000pt;}
.x3c{left:2.939600pt;}
.x4{left:5.291333pt;}
.x2{left:10.582680pt;}
.x22{left:11.577675pt;}
.x1d{left:14.411757pt;}
.x2a{left:17.424347pt;}
.x1{left:32.126000pt;}
.x13{left:42.594880pt;}
.x25{left:43.703460pt;}
.x38{left:53.122186pt;}
.x5{left:56.194640pt;}
.x23{left:68.804045pt;}
.x3a{left:82.038334pt;}
.x2d{left:83.131596pt;}
.xd{left:84.661413pt;}
.x3d{left:94.607213pt;}
.x37{left:99.962077pt;}
.xc{left:118.699867pt;}
.x1f{left:121.052566pt;}
.x1a{left:128.027265pt;}
.x18{left:132.652533pt;}
.x19{left:136.575200pt;}
.xb{left:137.948133pt;}
.x45{left:142.595200pt;}
.x27{left:144.305483pt;}
.xa{left:145.287867pt;}
.x2e{left:146.528667pt;}
.x2c{left:147.696800pt;}
.x1c{left:150.458000pt;}
.x2b{left:161.273500pt;}
.x40{left:164.508400pt;}
.x44{left:172.651600pt;}
.x20{left:176.034686pt;}
.x12{left:185.583119pt;}
.x24{left:188.276400pt;}
.x16{left:198.432665pt;}
.x3e{left:250.133733pt;}
.x3f{left:255.146267pt;}
.x4b{left:275.986267pt;}
.x49{left:284.105867pt;}
.x55{left:288.580533pt;}
.x1b{left:307.537379pt;}
.x4c{left:336.186902pt;}
.xf{left:342.077333pt;}
.x4d{left:344.875200pt;}
.x50{left:374.868267pt;}
.x4f{left:381.207200pt;}
.x41{left:382.827520pt;}
.x9{left:396.658533pt;}
.x36{left:406.221467pt;}
.x28{left:422.907200pt;}
.x15{left:425.058133pt;}
.x2f{left:431.674400pt;}
.x51{left:441.005867pt;}
.x53{left:443.042267pt;}
.x32{left:444.005733pt;}
.x8{left:445.231333pt;}
.x10{left:448.598933pt;}
.x21{left:451.702933pt;}
.x30{left:453.689363pt;}
.x26{left:464.275867pt;}
.x6{left:473.703333pt;}
.x4a{left:475.390367pt;}
.x17{left:476.659742pt;}
.x11{left:484.708933pt;}
.x54{left:500.965760pt;}
.x52{left:506.884401pt;}
.x33{left:514.511337pt;}
.x46{left:527.014533pt;}
.x4e{left:528.424793pt;}
.x7{left:551.187333pt;}
.x3{left:566.551200pt;}
.x42{left:576.368933pt;}
.x14{left:584.193733pt;}
.x31{left:586.218644pt;}
.x43{left:595.550664pt;}
.x47{left:597.520137pt;}
.x34{left:624.815200pt;}
.x1e{left:678.005467pt;}
.x39{left:693.629333pt;}
.x35{left:708.028554pt;}
.x48{left:791.037354pt;}
.xe{left:887.380933pt;}
.x3b{left:891.805867pt;}
}




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