
    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_2321dd13a607a944c58edb4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;font-style:normal;font-weight: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_5563453fd6594b8f763e4dbb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924000;font-style:normal;font-weight: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_9674f1608239e8de7ff48df9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;font-style:normal;font-weight: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_9d7c2a53ddcd86071072a182.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.924000;font-style:normal;font-weight: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_69c398d0736da30e84843d55.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.924000;font-style:normal;font-weight: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_4dea661eeb2e67fba8ffc834.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_717d81cb8121f9d161dedc92.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.851000;font-style:normal;font-weight: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_a4cad3fb0057cddb9ec6ed0d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.702000;font-style:normal;font-weight: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_b49cd3a55681c376f1d7cdd8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.662000;font-style:normal;font-weight: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_f24f57ed4e56192c5bf4140b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.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:ffb;src:url('chunks/assets/font_5cf530f367677687cda89f07.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.656000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-14.946000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.976000px;}
.v2{vertical-align:21.516000px;}
.v3{vertical-align:25.332000px;}
.v5{vertical-align:28.692000px;}
.v4{vertical-align:46.254000px;}
.v7{vertical-align:57.474000px;}
.v6{vertical-align:70.338000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000394px;}
.lse{letter-spacing:0.001102px;}
.lsf{letter-spacing:0.001248px;}
.ls19{letter-spacing:0.002400px;}
.ls13{letter-spacing:0.003361px;}
.ls7{letter-spacing:0.003634px;}
.ls18{letter-spacing:0.004200px;}
.lsa{letter-spacing:0.005627px;}
.ls16{letter-spacing:2.982960px;}
.ls11{letter-spacing:2.988336px;}
.ls12{letter-spacing:2.988960px;}
.ls8{letter-spacing:2.989248px;}
.ls10{letter-spacing:3.587381px;}
.ls5{letter-spacing:6.638100px;}
.ls6{letter-spacing:6.644100px;}
.ls15{letter-spacing:7.515714px;}
.ls14{letter-spacing:10.506336px;}
.ls1{letter-spacing:11.950344px;}
.lsb{letter-spacing:13.137634px;}
.ls9{letter-spacing:13.137714px;}
.ls0{letter-spacing:13.268345px;}
.ls1e{letter-spacing:13.293714px;}
.ls1a{letter-spacing:13.641524px;}
.ls1d{letter-spacing:14.686850px;}
.ls1c{letter-spacing:14.715435px;}
.ls20{letter-spacing:14.826848px;}
.ls21{letter-spacing:14.943714px;}
.ls22{letter-spacing:14.949714px;}
.lsd{letter-spacing:17.845968px;}
.ls1f{letter-spacing:18.236067px;}
.lsc{letter-spacing:30.195714px;}
.ls4{letter-spacing:47.817826px;}
.ls17{letter-spacing:47.823826px;}
.ls3{letter-spacing:47.825700px;}
.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;}
}
.ws54{word-spacing:-32.727300px;}
.ws12{word-spacing:-29.887800px;}
.ws60{word-spacing:-23.910300px;}
.ws0{word-spacing:-21.519300px;}
.ws4{word-spacing:-20.923757px;}
.ws3{word-spacing:-20.923210px;}
.ws5{word-spacing:-20.922758px;}
.ws1{word-spacing:-20.918669px;}
.ws4e{word-spacing:-18.231558px;}
.ws11{word-spacing:-16.617617px;}
.ws27{word-spacing:-16.363650px;}
.ws1b{word-spacing:-16.318739px;}
.wsd{word-spacing:-16.019861px;}
.ws35{word-spacing:-15.840534px;}
.ws3e{word-spacing:-15.780758px;}
.ws50{word-spacing:-15.661207px;}
.ws66{word-spacing:-15.637336px;}
.ws25{word-spacing:-15.601432px;}
.ws70{word-spacing:-15.541695px;}
.ws4c{word-spacing:-15.541656px;}
.ws2c{word-spacing:-15.422105px;}
.wsf{word-spacing:-15.302554px;}
.ws22{word-spacing:-15.242778px;}
.ws1e{word-spacing:-15.183002px;}
.ws48{word-spacing:-15.178004px;}
.ws26{word-spacing:-15.123227px;}
.wsb{word-spacing:-15.117350px;}
.ws47{word-spacing:-15.063451px;}
.ws7{word-spacing:-15.060408px;}
.ws8{word-spacing:-15.009754px;}
.ws51{word-spacing:-15.003676px;}
.ws24{word-spacing:-14.943997px;}
.ws2{word-spacing:-14.943900px;}
.wse{word-spacing:-14.884124px;}
.ws6d{word-spacing:-14.824386px;}
.ws37{word-spacing:-14.824349px;}
.ws14{word-spacing:-14.764573px;}
.ws23{word-spacing:-14.704798px;}
.ws1c{word-spacing:-14.645022px;}
.ws1d{word-spacing:-14.585246px;}
.ws20{word-spacing:-14.525471px;}
.ws4b{word-spacing:-14.226593px;}
.ws21{word-spacing:-13.987490px;}
.ws41{word-spacing:-13.826189px;}
.ws4f{word-spacing:-13.808164px;}
.ws1f{word-spacing:-13.620124px;}
.ws67{word-spacing:-13.533230px;}
.ws9{word-spacing:-13.503398px;}
.wsa{word-spacing:-13.449600px;}
.ws61{word-spacing:-13.437589px;}
.ws3c{word-spacing:-13.395802px;}
.ws53{word-spacing:-13.329959px;}
.ws6{word-spacing:-13.288205px;}
.ws3b{word-spacing:-13.234406px;}
.ws16{word-spacing:-12.612652px;}
.ws65{word-spacing:-12.576818px;}
.ws44{word-spacing:-12.552876px;}
.ws68{word-spacing:-12.433356px;}
.ws29{word-spacing:-12.433325px;}
.ws69{word-spacing:-12.385535px;}
.ws6f{word-spacing:-12.337715px;}
.ws6b{word-spacing:-12.289894px;}
.ws59{word-spacing:-12.242074px;}
.ws55{word-spacing:-12.194253px;}
.ws79{word-spacing:-12.146432px;}
.ws5c{word-spacing:-12.098612px;}
.ws13{word-spacing:-12.074671px;}
.ws56{word-spacing:-12.050791px;}
.ws49{word-spacing:-12.014896px;}
.ws17{word-spacing:-12.002971px;}
.ws58{word-spacing:-11.958860px;}
.ws5d{word-spacing:-11.956627px;}
.ws19{word-spacing:-11.955150px;}
.ws38{word-spacing:-11.859509px;}
.ws39{word-spacing:-11.857748px;}
.ws3a{word-spacing:-11.853910px;}
.ws57{word-spacing:-11.811688px;}
.ws18{word-spacing:-11.763868px;}
.ws6c{word-spacing:-11.716047px;}
.ws2b{word-spacing:-11.656242px;}
.ws4a{word-spacing:-11.652748px;}
.ws3d{word-spacing:-11.536691px;}
.ws4d{word-spacing:-11.476915px;}
.ws76{word-spacing:-11.285662px;}
.ws28{word-spacing:-11.178037px;}
.ws62{word-spacing:-11.142200px;}
.ws75{word-spacing:-11.094379px;}
.ws2e{word-spacing:-10.938935px;}
.ws30{word-spacing:-10.879159px;}
.ws5a{word-spacing:-10.711814px;}
.ws52{word-spacing:-10.341179px;}
.ws45{word-spacing:-10.221628px;}
.ws46{word-spacing:-10.214397px;}
.ws77{word-spacing:-10.186859px;}
.ws2d{word-spacing:-9.982525px;}
.ws78{word-spacing:-9.803223px;}
.ws72{word-spacing:-9.755402px;}
.ws71{word-spacing:-9.707582px;}
.ws15{word-spacing:-9.623872px;}
.ws6a{word-spacing:-9.541817px;}
.ws63{word-spacing:-9.516299px;}
.ws64{word-spacing:-9.504064px;}
.ws6e{word-spacing:-9.372838px;}
.ws10{word-spacing:-9.145667px;}
.ws73{word-spacing:-8.751170px;}
.ws74{word-spacing:-8.748530px;}
.ws5e{word-spacing:-7.890399px;}
.ws40{word-spacing:-7.854566px;}
.ws5f{word-spacing:-7.412193px;}
.ws5b{word-spacing:-6.694884px;}
.ws2f{word-spacing:-0.059776px;}
.ws43{word-spacing:-0.053798px;}
.ws31{word-spacing:-0.044832px;}
.ws1a{word-spacing:0.000000px;}
.ws33{word-spacing:9.583248px;}
.ws42{word-spacing:11.889446px;}
.ws34{word-spacing:12.433325px;}
.ws36{word-spacing:12.442073px;}
.ws3f{word-spacing:12.472794px;}
.ws32{word-spacing:16.081248px;}
.ws2a{word-spacing:31.322414px;}
.wsc{word-spacing:32.727300px;}
._6{margin-left:-5.164625px;}
._1{margin-left:-3.701320px;}
._4{margin-left:-2.425823px;}
._0{margin-left:-1.377235px;}
._3{width:1.563751px;}
._9{width:3.586536px;}
._a{width:4.722272px;}
._13{width:5.834113px;}
._1b{width:8.197649px;}
._18{width:10.867405px;}
._1a{width:12.955094px;}
._5{width:14.422867px;}
._7{width:15.924260px;}
._2{width:17.932800px;}
._16{width:19.690361px;}
._1c{width:20.928116px;}
._f{width:22.088321px;}
._10{width:23.910300px;}
._d{width:26.092224px;}
._c{width:27.168192px;}
._11{width:29.170566px;}
._12{width:32.338930px;}
._e{width:34.801671px;}
._19{width:35.951529px;}
._15{width:41.546539px;}
._17{width:43.414328px;}
._b{width:48.807643px;}
._14{width:50.954463px;}
._8{width:65.454600px;}
.fc3{color:rgb(111,248,244);}
.fc2{color:rgb(48,242,49);}
.fc1{color:rgb(250,252,108);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:44.832000px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y24{bottom:173.305500px;}
.yaa{bottom:209.365500px;}
.y69{bottom:209.674500px;}
.y50{bottom:210.955500px;}
.y85{bottom:214.753500px;}
.ya9{bottom:226.551000px;}
.y23{bottom:226.992000px;}
.y4f{bottom:228.139500px;}
.y68{bottom:230.298000px;}
.y84{bottom:235.375500px;}
.yd4{bottom:242.799000px;}
.y4e{bottom:245.325000px;}
.y22{bottom:245.896500px;}
.ya8{bottom:248.892000px;}
.y4d{bottom:249.510000px;}
.y67{bottom:250.920000px;}
.y83{bottom:255.999000px;}
.yd3{bottom:259.984500px;}
.y21{bottom:264.801000px;}
.y66{bottom:271.542000px;}
.y82{bottom:276.621000px;}
.yd2{bottom:277.170000px;}
.y20{bottom:281.986500px;}
.ya7{bottom:287.091000px;}
.y4c{bottom:289.068000px;}
.y65{bottom:292.165500px;}
.yd1{bottom:294.355500px;}
.y81{bottom:297.243000px;}
.ya6{bottom:307.713000px;}
.y4b{bottom:309.690000px;}
.yd0{bottom:311.541000px;}
.y64{bottom:312.787500px;}
.y1f{bottom:314.997000px;}
.y80{bottom:317.866500px;}
.ya5{bottom:328.335000px;}
.ycf{bottom:328.726500px;}
.y4a{bottom:330.313500px;}
.y1e{bottom:332.182500px;}
.y7f{bottom:338.488500px;}
.yce{bottom:345.912000px;}
.ya4{bottom:348.958500px;}
.y1d{bottom:349.368000px;}
.y49{bottom:350.935500px;}
.y63{bottom:356.782500px;}
.y7e{bottom:359.110500px;}
.ycd{bottom:363.097500px;}
.ya3{bottom:369.580500px;}
.y48{bottom:371.559000px;}
.y62{bottom:375.687000px;}
.y7d{bottom:379.734000px;}
.ycc{bottom:380.283000px;}
.y1c{bottom:380.482500px;}
.y46{bottom:385.008000px;}
.y45{bottom:385.848000px;}
.y47{bottom:386.950500px;}
.ya2{bottom:390.204000px;}
.y44{bottom:392.181000px;}
.y61{bottom:394.591500px;}
.ycb{bottom:397.468500px;}
.y7c{bottom:400.356000px;}
.y1b{bottom:401.104500px;}
.ya1{bottom:410.826000px;}
.y43{bottom:412.803000px;}
.yca{bottom:414.652500px;}
.y7b{bottom:420.978000px;}
.y1a{bottom:421.726500px;}
.ya0{bottom:431.448000px;}
.yc9{bottom:431.838000px;}
.y42{bottom:433.426500px;}
.y7a{bottom:441.601500px;}
.y19{bottom:442.350000px;}
.yc8{bottom:449.023500px;}
.y9f{bottom:452.071500px;}
.y41{bottom:454.048500px;}
.y79{bottom:462.223500px;}
.y18{bottom:462.972000px;}
.yc7{bottom:466.209000px;}
.y40{bottom:474.670500px;}
.y9e{bottom:477.849000px;}
.y78{bottom:482.847000px;}
.yc6{bottom:483.394500px;}
.y17{bottom:483.594000px;}
.y3f{bottom:495.294000px;}
.yc5{bottom:500.580000px;}
.y77{bottom:503.469000px;}
.y16{bottom:504.217500px;}
.y3e{bottom:515.916000px;}
.y9d{bottom:516.048000px;}
.yc4{bottom:517.765500px;}
.y76{bottom:524.091000px;}
.y15{bottom:524.839500px;}
.yc3{bottom:534.951000px;}
.y3d{bottom:536.539500px;}
.y9c{bottom:536.670000px;}
.y75{bottom:544.714500px;}
.y14{bottom:545.463000px;}
.yc2{bottom:552.136500px;}
.y3b{bottom:557.161500px;}
.y9b{bottom:557.292000px;}
.y3c{bottom:562.392000px;}
.y74{bottom:565.336500px;}
.y13{bottom:566.085000px;}
.yc1{bottom:569.322000px;}
.y60{bottom:571.642500px;}
.y3a{bottom:577.783500px;}
.y9a{bottom:577.915500px;}
.y73{bottom:585.958500px;}
.yc0{bottom:586.507500px;}
.y12{bottom:586.707000px;}
.y5f{bottom:592.264500px;}
.y99{bottom:598.537500px;}
.y39{bottom:603.562500px;}
.ybf{bottom:603.693000px;}
.y72{bottom:606.582000px;}
.y11{bottom:612.486000px;}
.y5e{bottom:612.888000px;}
.y98{bottom:619.159500px;}
.ybe{bottom:620.878500px;}
.y71{bottom:627.204000px;}
.y5d{bottom:633.510000px;}
.ybd{bottom:638.064000px;}
.y97{bottom:639.783000px;}
.y38{bottom:644.938500px;}
.y70{bottom:647.827500px;}
.y5c{bottom:654.132000px;}
.ybc{bottom:655.249500px;}
.y10{bottom:655.407000px;}
.y96{bottom:660.405000px;}
.y37{bottom:665.560500px;}
.y6f{bottom:668.449500px;}
.ybb{bottom:672.435000px;}
.yf{bottom:674.311500px;}
.y5b{bottom:679.911000px;}
.y95{bottom:681.028500px;}
.y36{bottom:686.184000px;}
.y6e{bottom:689.071500px;}
.yba{bottom:689.620500px;}
.ye{bottom:693.214500px;}
.y94{bottom:701.650500px;}
.y35{bottom:706.806000px;}
.y6d{bottom:709.695000px;}
.yd{bottom:712.119000px;}
.y5a{bottom:718.728000px;}
.y93{bottom:722.272500px;}
.yb9{bottom:723.991500px;}
.y34{bottom:727.428000px;}
.y59{bottom:739.350000px;}
.yb8{bottom:741.177000px;}
.yc{bottom:741.313500px;}
.y92{bottom:742.896000px;}
.y33{bottom:748.051500px;}
.yb7{bottom:758.362500px;}
.y58{bottom:759.973500px;}
.y91{bottom:763.518000px;}
.y32{bottom:768.673500px;}
.yb{bottom:770.508000px;}
.yb6{bottom:775.548000px;}
.y57{bottom:780.595500px;}
.y90{bottom:784.140000px;}
.y31{bottom:789.297000px;}
.ya{bottom:789.411000px;}
.yb5{bottom:792.733500px;}
.y6c{bottom:797.386500px;}
.y56{bottom:801.217500px;}
.y8f{bottom:804.763500px;}
.y9{bottom:808.315500px;}
.y30{bottom:809.919000px;}
.y6b{bottom:816.291000px;}
.y8e{bottom:825.385500px;}
.yb4{bottom:827.104500px;}
.y8{bottom:827.220000px;}
.y2f{bottom:830.541000px;}
.y6a{bottom:835.194000px;}
.yb3{bottom:844.290000px;}
.y8d{bottom:846.009000px;}
.y7{bottom:846.123000px;}
.y55{bottom:848.284500px;}
.y2e{bottom:851.164500px;}
.yb2{bottom:861.475500px;}
.y8c{bottom:866.631000px;}
.y54{bottom:867.187500px;}
.y2d{bottom:871.786500px;}
.y6{bottom:876.676500px;}
.yb1{bottom:878.661000px;}
.y53{bottom:886.092000px;}
.y8b{bottom:887.253000px;}
.y2c{bottom:892.408500px;}
.yb0{bottom:895.846500px;}
.y5{bottom:900.736500px;}
.y52{bottom:904.996500px;}
.y8a{bottom:907.876500px;}
.y2b{bottom:913.032000px;}
.y4{bottom:924.795000px;}
.y89{bottom:928.498500px;}
.yaf{bottom:930.217500px;}
.y2a{bottom:933.654000px;}
.yae{bottom:947.403000px;}
.y3{bottom:948.855000px;}
.y88{bottom:949.120500px;}
.y29{bottom:954.277500px;}
.yad{bottom:964.588500px;}
.y87{bottom:969.744000px;}
.y28{bottom:974.899500px;}
.yac{bottom:981.774000px;}
.y2{bottom:986.992500px;}
.y86{bottom:990.366000px;}
.y27{bottom:995.521500px;}
.yab{bottom:998.959500px;}
.y26{bottom:1016.145000px;}
.y1{bottom:1016.208000px;}
.y25{bottom:1056.493500px;}
.y51{bottom:1057.390500px;}
.h12{height:25.321114px;}
.h13{height:31.203072px;}
.h8{height:31.651392px;}
.h7{height:32.804932px;}
.h6{height:33.761344px;}
.h3{height:37.981670px;}
.h14{height:38.196864px;}
.hb{height:39.930101px;}
.h11{height:41.125613px;}
.h9{height:41.603818px;}
.h5{height:42.201574px;}
.ha{height:42.440676px;}
.h4{height:46.210948px;}
.h2{height:50.642227px;}
.hc{height:51.463776px;}
.he{height:60.522720px;}
.h1{height:60.770503px;}
.h10{height:62.047613px;}
.hd{height:78.084720px;}
.hf{height:111.583164px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:119.970000px;}
.x2{left:121.045500px;}
.x54{left:125.233500px;}
.x72{left:127.023000px;}
.x23{left:135.990000px;}
.x5f{left:140.937000px;}
.x37{left:143.518500px;}
.x3f{left:146.245500px;}
.x40{left:156.325500px;}
.x38{left:158.463000px;}
.x39{left:165.991500px;}
.x4f{left:172.510500px;}
.x29{left:176.833500px;}
.x13{left:179.634000px;}
.x3a{left:180.936000px;}
.x2a{left:191.776500px;}
.x14{left:194.578500px;}
.x15{left:203.673000px;}
.x7{left:205.590000px;}
.x16{left:218.617500px;}
.x8{left:220.534500px;}
.x73{left:227.904000px;}
.x74{left:233.760000px;}
.x60{left:248.662500px;}
.x49{left:268.759500px;}
.x17{left:280.837500px;}
.x4a{left:293.974500px;}
.x18{left:295.782000px;}
.x61{left:298.630500px;}
.x50{left:303.928500px;}
.x2b{left:341.104500px;}
.x58{left:350.584500px;}
.x2c{left:356.047500px;}
.x63{left:358.270500px;}
.x4b{left:360.697500px;}
.x69{left:363.895500px;}
.x64{left:365.743500px;}
.x44{left:367.674000px;}
.x6a{left:371.367000px;}
.x65{left:373.648500px;}
.x45{left:382.618500px;}
.x42{left:383.986500px;}
.x66{left:388.593000px;}
.x6e{left:412.222500px;}
.x6f{left:419.695500px;}
.x70{left:426.999000px;}
.x71{left:434.470500px;}
.x24{left:453.198000px;}
.x51{left:462.058500px;}
.x25{left:468.142500px;}
.x28{left:471.019500px;}
.x26{left:476.352000px;}
.x2d{left:479.196000px;}
.x27{left:491.296500px;}
.x2e{left:494.139000px;}
.x52{left:496.557000px;}
.x67{left:500.263500px;}
.x19{left:504.102000px;}
.x1a{left:511.575000px;}
.x68{left:515.208000px;}
.x1b{left:519.933000px;}
.x4c{left:521.830500px;}
.x5a{left:530.188500px;}
.x1c{left:534.877500px;}
.x1d{left:543.235500px;}
.x4d{left:547.065000px;}
.x1e{left:558.178500px;}
.x1f{left:566.538000px;}
.x46{left:568.735500px;}
.x4e{left:574.723500px;}
.x3d{left:579.546000px;}
.x20{left:581.481000px;}
.x21{left:589.840500px;}
.x3e{left:594.490500px;}
.x5b{left:599.979000px;}
.x22{left:604.783500px;}
.x5c{left:614.922000px;}
.x9{left:620.425500px;}
.x6b{left:622.006500px;}
.x6c{left:629.479500px;}
.xa{left:635.368500px;}
.x62{left:639.642000px;}
.xb{left:642.603000px;}
.xc{left:657.546000px;}
.xd{left:664.779000px;}
.xe{left:679.723500px;}
.x6d{left:684.081000px;}
.x53{left:691.699500px;}
.x5d{left:694.066500px;}
.x55{left:695.170500px;}
.x56{left:701.148000px;}
.x57{left:707.077500px;}
.x5e{left:709.011000px;}
.x41{left:713.028000px;}
.x47{left:715.078500px;}
.x2f{left:720.610500px;}
.x59{left:725.089500px;}
.x30{left:728.082000px;}
.x43{left:729.108000px;}
.xf{left:732.778500px;}
.x31{left:735.490500px;}
.x3b{left:737.535000px;}
.x10{left:747.723000px;}
.x32{left:750.433500px;}
.x3c{left:752.478000px;}
.x3{left:754.086000px;}
.x33{left:757.842000px;}
.x4{left:769.030500px;}
.x34{left:772.786500px;}
.x5{left:776.086500px;}
.x11{left:777.133500px;}
.x35{left:780.195000px;}
.x48{left:782.892000px;}
.x6{left:791.031000px;}
.x12{left:792.076500px;}
.x36{left:795.138000px;}
@media print{
.v1{vertical-align:-13.285333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.312000pt;}
.v2{vertical-align:19.125333pt;}
.v3{vertical-align:22.517333pt;}
.v5{vertical-align:25.504000pt;}
.v4{vertical-align:41.114667pt;}
.v7{vertical-align:51.088000pt;}
.v6{vertical-align:62.522667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000350pt;}
.lse{letter-spacing:0.000979pt;}
.lsf{letter-spacing:0.001109pt;}
.ls19{letter-spacing:0.002133pt;}
.ls13{letter-spacing:0.002988pt;}
.ls7{letter-spacing:0.003230pt;}
.ls18{letter-spacing:0.003733pt;}
.lsa{letter-spacing:0.005002pt;}
.ls16{letter-spacing:2.651520pt;}
.ls11{letter-spacing:2.656299pt;}
.ls12{letter-spacing:2.656853pt;}
.ls8{letter-spacing:2.657109pt;}
.ls10{letter-spacing:3.188783pt;}
.ls5{letter-spacing:5.900533pt;}
.ls6{letter-spacing:5.905867pt;}
.ls15{letter-spacing:6.680635pt;}
.ls14{letter-spacing:9.338965pt;}
.ls1{letter-spacing:10.622528pt;}
.lsb{letter-spacing:11.677897pt;}
.ls9{letter-spacing:11.677968pt;}
.ls0{letter-spacing:11.794084pt;}
.ls1e{letter-spacing:11.816635pt;}
.ls1a{letter-spacing:12.125799pt;}
.ls1d{letter-spacing:13.054978pt;}
.ls1c{letter-spacing:13.080387pt;}
.ls20{letter-spacing:13.179421pt;}
.ls21{letter-spacing:13.283301pt;}
.ls22{letter-spacing:13.288635pt;}
.lsd{letter-spacing:15.863083pt;}
.ls1f{letter-spacing:16.209837pt;}
.lsc{letter-spacing:26.840635pt;}
.ls4{letter-spacing:42.504734pt;}
.ls17{letter-spacing:42.510068pt;}
.ls3{letter-spacing:42.511733pt;}
.ws54{word-spacing:-29.090933pt;}
.ws12{word-spacing:-26.566933pt;}
.ws60{word-spacing:-21.253600pt;}
.ws0{word-spacing:-19.128267pt;}
.ws4{word-spacing:-18.598895pt;}
.ws3{word-spacing:-18.598409pt;}
.ws5{word-spacing:-18.598007pt;}
.ws1{word-spacing:-18.594372pt;}
.ws4e{word-spacing:-16.205829pt;}
.ws11{word-spacing:-14.771215pt;}
.ws27{word-spacing:-14.545467pt;}
.ws1b{word-spacing:-14.505546pt;}
.wsd{word-spacing:-14.239876pt;}
.ws35{word-spacing:-14.080475pt;}
.ws3e{word-spacing:-14.027341pt;}
.ws50{word-spacing:-13.921073pt;}
.ws66{word-spacing:-13.899854pt;}
.ws25{word-spacing:-13.867939pt;}
.ws70{word-spacing:-13.814840pt;}
.ws4c{word-spacing:-13.814805pt;}
.ws2c{word-spacing:-13.708538pt;}
.wsf{word-spacing:-13.602270pt;}
.ws22{word-spacing:-13.549136pt;}
.ws1e{word-spacing:-13.496002pt;}
.ws48{word-spacing:-13.491559pt;}
.ws26{word-spacing:-13.442868pt;}
.wsb{word-spacing:-13.437645pt;}
.ws47{word-spacing:-13.389734pt;}
.ws7{word-spacing:-13.387029pt;}
.ws8{word-spacing:-13.342003pt;}
.ws51{word-spacing:-13.336601pt;}
.ws24{word-spacing:-13.283553pt;}
.ws2{word-spacing:-13.283467pt;}
.wse{word-spacing:-13.230333pt;}
.ws6d{word-spacing:-13.177232pt;}
.ws37{word-spacing:-13.177199pt;}
.ws14{word-spacing:-13.124065pt;}
.ws23{word-spacing:-13.070931pt;}
.ws1c{word-spacing:-13.017797pt;}
.ws1d{word-spacing:-12.964663pt;}
.ws20{word-spacing:-12.911530pt;}
.ws4b{word-spacing:-12.645860pt;}
.ws21{word-spacing:-12.433325pt;}
.ws41{word-spacing:-12.289946pt;}
.ws4f{word-spacing:-12.273923pt;}
.ws1f{word-spacing:-12.106777pt;}
.ws67{word-spacing:-12.029538pt;}
.ws9{word-spacing:-12.003021pt;}
.wsa{word-spacing:-11.955200pt;}
.ws61{word-spacing:-11.944523pt;}
.ws3c{word-spacing:-11.907379pt;}
.ws53{word-spacing:-11.848852pt;}
.ws6{word-spacing:-11.811738pt;}
.ws3b{word-spacing:-11.763917pt;}
.ws16{word-spacing:-11.211246pt;}
.ws65{word-spacing:-11.179394pt;}
.ws44{word-spacing:-11.158112pt;}
.ws68{word-spacing:-11.051872pt;}
.ws29{word-spacing:-11.051844pt;}
.ws69{word-spacing:-11.009365pt;}
.ws6f{word-spacing:-10.966858pt;}
.ws6b{word-spacing:-10.924350pt;}
.ws59{word-spacing:-10.881843pt;}
.ws55{word-spacing:-10.839336pt;}
.ws79{word-spacing:-10.796829pt;}
.ws5c{word-spacing:-10.754322pt;}
.ws13{word-spacing:-10.733041pt;}
.ws56{word-spacing:-10.711814pt;}
.ws49{word-spacing:-10.679907pt;}
.ws17{word-spacing:-10.669307pt;}
.ws58{word-spacing:-10.630098pt;}
.ws5d{word-spacing:-10.628113pt;}
.ws19{word-spacing:-10.626800pt;}
.ws38{word-spacing:-10.541786pt;}
.ws39{word-spacing:-10.540221pt;}
.ws3a{word-spacing:-10.536809pt;}
.ws57{word-spacing:-10.499278pt;}
.ws18{word-spacing:-10.456771pt;}
.ws6c{word-spacing:-10.414264pt;}
.ws2b{word-spacing:-10.361104pt;}
.ws4a{word-spacing:-10.357998pt;}
.ws3d{word-spacing:-10.254836pt;}
.ws4d{word-spacing:-10.201702pt;}
.ws76{word-spacing:-10.031699pt;}
.ws28{word-spacing:-9.936033pt;}
.ws62{word-spacing:-9.904178pt;}
.ws75{word-spacing:-9.861670pt;}
.ws2e{word-spacing:-9.723498pt;}
.ws30{word-spacing:-9.670364pt;}
.ws5a{word-spacing:-9.521613pt;}
.ws52{word-spacing:-9.192159pt;}
.ws45{word-spacing:-9.085891pt;}
.ws46{word-spacing:-9.079464pt;}
.ws77{word-spacing:-9.054986pt;}
.ws2d{word-spacing:-8.873356pt;}
.ws78{word-spacing:-8.713976pt;}
.ws72{word-spacing:-8.671469pt;}
.ws71{word-spacing:-8.628962pt;}
.ws15{word-spacing:-8.554553pt;}
.ws6a{word-spacing:-8.481615pt;}
.ws63{word-spacing:-8.458933pt;}
.ws64{word-spacing:-8.448057pt;}
.ws6e{word-spacing:-8.331411pt;}
.ws10{word-spacing:-8.129482pt;}
.ws73{word-spacing:-7.778818pt;}
.ws74{word-spacing:-7.776471pt;}
.ws5e{word-spacing:-7.013688pt;}
.ws40{word-spacing:-6.981837pt;}
.ws5f{word-spacing:-6.588616pt;}
.ws5b{word-spacing:-5.951008pt;}
.ws2f{word-spacing:-0.053134pt;}
.ws43{word-spacing:-0.047821pt;}
.ws31{word-spacing:-0.039851pt;}
.ws1a{word-spacing:0.000000pt;}
.ws33{word-spacing:8.518443pt;}
.ws42{word-spacing:10.568397pt;}
.ws34{word-spacing:11.051844pt;}
.ws36{word-spacing:11.059620pt;}
.ws3f{word-spacing:11.086928pt;}
.ws32{word-spacing:14.294443pt;}
.ws2a{word-spacing:27.842146pt;}
.wsc{word-spacing:29.090933pt;}
._6{margin-left:-4.590778pt;}
._1{margin-left:-3.290062pt;}
._4{margin-left:-2.156287pt;}
._0{margin-left:-1.224209pt;}
._3{width:1.390001pt;}
._9{width:3.188032pt;}
._a{width:4.197575pt;}
._13{width:5.185878pt;}
._1b{width:7.286799pt;}
._18{width:9.659916pt;}
._1a{width:11.515639pt;}
._5{width:12.820326pt;}
._7{width:14.154898pt;}
._2{width:15.940267pt;}
._16{width:17.502543pt;}
._1c{width:18.602770pt;}
._f{width:19.634063pt;}
._10{width:21.253600pt;}
._d{width:23.193088pt;}
._c{width:24.149504pt;}
._11{width:25.929392pt;}
._12{width:28.745715pt;}
._e{width:30.934819pt;}
._19{width:31.956915pt;}
._15{width:36.930257pt;}
._17{width:38.590513pt;}
._b{width:43.384571pt;}
._14{width:45.292856pt;}
._8{width:58.181867pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:39.850667pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:154.049333pt;}
.yaa{bottom:186.102667pt;}
.y69{bottom:186.377333pt;}
.y50{bottom:187.516000pt;}
.y85{bottom:190.892000pt;}
.ya9{bottom:201.378667pt;}
.y23{bottom:201.770667pt;}
.y4f{bottom:202.790667pt;}
.y68{bottom:204.709333pt;}
.y84{bottom:209.222667pt;}
.yd4{bottom:215.821333pt;}
.y4e{bottom:218.066667pt;}
.y22{bottom:218.574667pt;}
.ya8{bottom:221.237333pt;}
.y4d{bottom:221.786667pt;}
.y67{bottom:223.040000pt;}
.y83{bottom:227.554667pt;}
.yd3{bottom:231.097333pt;}
.y21{bottom:235.378667pt;}
.y66{bottom:241.370667pt;}
.y82{bottom:245.885333pt;}
.yd2{bottom:246.373333pt;}
.y20{bottom:250.654667pt;}
.ya7{bottom:255.192000pt;}
.y4c{bottom:256.949333pt;}
.y65{bottom:259.702667pt;}
.yd1{bottom:261.649333pt;}
.y81{bottom:264.216000pt;}
.ya6{bottom:273.522667pt;}
.y4b{bottom:275.280000pt;}
.yd0{bottom:276.925333pt;}
.y64{bottom:278.033333pt;}
.y1f{bottom:279.997333pt;}
.y80{bottom:282.548000pt;}
.ya5{bottom:291.853333pt;}
.ycf{bottom:292.201333pt;}
.y4a{bottom:293.612000pt;}
.y1e{bottom:295.273333pt;}
.y7f{bottom:300.878667pt;}
.yce{bottom:307.477333pt;}
.ya4{bottom:310.185333pt;}
.y1d{bottom:310.549333pt;}
.y49{bottom:311.942667pt;}
.y63{bottom:317.140000pt;}
.y7e{bottom:319.209333pt;}
.ycd{bottom:322.753333pt;}
.ya3{bottom:328.516000pt;}
.y48{bottom:330.274667pt;}
.y62{bottom:333.944000pt;}
.y7d{bottom:337.541333pt;}
.ycc{bottom:338.029333pt;}
.y1c{bottom:338.206667pt;}
.y46{bottom:342.229333pt;}
.y45{bottom:342.976000pt;}
.y47{bottom:343.956000pt;}
.ya2{bottom:346.848000pt;}
.y44{bottom:348.605333pt;}
.y61{bottom:350.748000pt;}
.ycb{bottom:353.305333pt;}
.y7c{bottom:355.872000pt;}
.y1b{bottom:356.537333pt;}
.ya1{bottom:365.178667pt;}
.y43{bottom:366.936000pt;}
.yca{bottom:368.580000pt;}
.y7b{bottom:374.202667pt;}
.y1a{bottom:374.868000pt;}
.ya0{bottom:383.509333pt;}
.yc9{bottom:383.856000pt;}
.y42{bottom:385.268000pt;}
.y7a{bottom:392.534667pt;}
.y19{bottom:393.200000pt;}
.yc8{bottom:399.132000pt;}
.y9f{bottom:401.841333pt;}
.y41{bottom:403.598667pt;}
.y79{bottom:410.865333pt;}
.y18{bottom:411.530667pt;}
.yc7{bottom:414.408000pt;}
.y40{bottom:421.929333pt;}
.y9e{bottom:424.754667pt;}
.y78{bottom:429.197333pt;}
.yc6{bottom:429.684000pt;}
.y17{bottom:429.861333pt;}
.y3f{bottom:440.261333pt;}
.yc5{bottom:444.960000pt;}
.y77{bottom:447.528000pt;}
.y16{bottom:448.193333pt;}
.y3e{bottom:458.592000pt;}
.y9d{bottom:458.709333pt;}
.yc4{bottom:460.236000pt;}
.y76{bottom:465.858667pt;}
.y15{bottom:466.524000pt;}
.yc3{bottom:475.512000pt;}
.y3d{bottom:476.924000pt;}
.y9c{bottom:477.040000pt;}
.y75{bottom:484.190667pt;}
.y14{bottom:484.856000pt;}
.yc2{bottom:490.788000pt;}
.y3b{bottom:495.254667pt;}
.y9b{bottom:495.370667pt;}
.y3c{bottom:499.904000pt;}
.y74{bottom:502.521333pt;}
.y13{bottom:503.186667pt;}
.yc1{bottom:506.064000pt;}
.y60{bottom:508.126667pt;}
.y3a{bottom:513.585333pt;}
.y9a{bottom:513.702667pt;}
.y73{bottom:520.852000pt;}
.yc0{bottom:521.340000pt;}
.y12{bottom:521.517333pt;}
.y5f{bottom:526.457333pt;}
.y99{bottom:532.033333pt;}
.y39{bottom:536.500000pt;}
.ybf{bottom:536.616000pt;}
.y72{bottom:539.184000pt;}
.y11{bottom:544.432000pt;}
.y5e{bottom:544.789333pt;}
.y98{bottom:550.364000pt;}
.ybe{bottom:551.892000pt;}
.y71{bottom:557.514667pt;}
.y5d{bottom:563.120000pt;}
.ybd{bottom:567.168000pt;}
.y97{bottom:568.696000pt;}
.y38{bottom:573.278667pt;}
.y70{bottom:575.846667pt;}
.y5c{bottom:581.450667pt;}
.ybc{bottom:582.444000pt;}
.y10{bottom:582.584000pt;}
.y96{bottom:587.026667pt;}
.y37{bottom:591.609333pt;}
.y6f{bottom:594.177333pt;}
.ybb{bottom:597.720000pt;}
.yf{bottom:599.388000pt;}
.y5b{bottom:604.365333pt;}
.y95{bottom:605.358667pt;}
.y36{bottom:609.941333pt;}
.y6e{bottom:612.508000pt;}
.yba{bottom:612.996000pt;}
.ye{bottom:616.190667pt;}
.y94{bottom:623.689333pt;}
.y35{bottom:628.272000pt;}
.y6d{bottom:630.840000pt;}
.yd{bottom:632.994667pt;}
.y5a{bottom:638.869333pt;}
.y93{bottom:642.020000pt;}
.yb9{bottom:643.548000pt;}
.y34{bottom:646.602667pt;}
.y59{bottom:657.200000pt;}
.yb8{bottom:658.824000pt;}
.yc{bottom:658.945333pt;}
.y92{bottom:660.352000pt;}
.y33{bottom:664.934667pt;}
.yb7{bottom:674.100000pt;}
.y58{bottom:675.532000pt;}
.y91{bottom:678.682667pt;}
.y32{bottom:683.265333pt;}
.yb{bottom:684.896000pt;}
.yb6{bottom:689.376000pt;}
.y57{bottom:693.862667pt;}
.y90{bottom:697.013333pt;}
.y31{bottom:701.597333pt;}
.ya{bottom:701.698667pt;}
.yb5{bottom:704.652000pt;}
.y6c{bottom:708.788000pt;}
.y56{bottom:712.193333pt;}
.y8f{bottom:715.345333pt;}
.y9{bottom:718.502667pt;}
.y30{bottom:719.928000pt;}
.y6b{bottom:725.592000pt;}
.y8e{bottom:733.676000pt;}
.yb4{bottom:735.204000pt;}
.y8{bottom:735.306667pt;}
.y2f{bottom:738.258667pt;}
.y6a{bottom:742.394667pt;}
.yb3{bottom:750.480000pt;}
.y8d{bottom:752.008000pt;}
.y7{bottom:752.109333pt;}
.y55{bottom:754.030667pt;}
.y2e{bottom:756.590667pt;}
.yb2{bottom:765.756000pt;}
.y8c{bottom:770.338667pt;}
.y54{bottom:770.833333pt;}
.y2d{bottom:774.921333pt;}
.y6{bottom:779.268000pt;}
.yb1{bottom:781.032000pt;}
.y53{bottom:787.637333pt;}
.y8b{bottom:788.669333pt;}
.y2c{bottom:793.252000pt;}
.yb0{bottom:796.308000pt;}
.y5{bottom:800.654667pt;}
.y52{bottom:804.441333pt;}
.y8a{bottom:807.001333pt;}
.y2b{bottom:811.584000pt;}
.y4{bottom:822.040000pt;}
.y89{bottom:825.332000pt;}
.yaf{bottom:826.860000pt;}
.y2a{bottom:829.914667pt;}
.yae{bottom:842.136000pt;}
.y3{bottom:843.426667pt;}
.y88{bottom:843.662667pt;}
.y29{bottom:848.246667pt;}
.yad{bottom:857.412000pt;}
.y87{bottom:861.994667pt;}
.y28{bottom:866.577333pt;}
.yac{bottom:872.688000pt;}
.y2{bottom:877.326667pt;}
.y86{bottom:880.325333pt;}
.y27{bottom:884.908000pt;}
.yab{bottom:887.964000pt;}
.y26{bottom:903.240000pt;}
.y1{bottom:903.296000pt;}
.y25{bottom:939.105333pt;}
.y51{bottom:939.902667pt;}
.h12{height:22.507657pt;}
.h13{height:27.736064pt;}
.h8{height:28.134571pt;}
.h7{height:29.159939pt;}
.h6{height:30.010083pt;}
.h3{height:33.761485pt;}
.h14{height:33.952768pt;}
.hb{height:35.493423pt;}
.h11{height:36.556100pt;}
.h9{height:36.981171pt;}
.h5{height:37.512510pt;}
.ha{height:37.725045pt;}
.h4{height:41.076398pt;}
.h2{height:45.015313pt;}
.hc{height:45.745579pt;}
.he{height:53.797973pt;}
.h1{height:54.018225pt;}
.h10{height:55.153434pt;}
.hd{height:69.408640pt;}
.hf{height:99.185035pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:106.640000pt;}
.x2{left:107.596000pt;}
.x54{left:111.318667pt;}
.x72{left:112.909333pt;}
.x23{left:120.880000pt;}
.x5f{left:125.277333pt;}
.x37{left:127.572000pt;}
.x3f{left:129.996000pt;}
.x40{left:138.956000pt;}
.x38{left:140.856000pt;}
.x39{left:147.548000pt;}
.x4f{left:153.342667pt;}
.x29{left:157.185333pt;}
.x13{left:159.674667pt;}
.x3a{left:160.832000pt;}
.x2a{left:170.468000pt;}
.x14{left:172.958667pt;}
.x15{left:181.042667pt;}
.x7{left:182.746667pt;}
.x16{left:194.326667pt;}
.x8{left:196.030667pt;}
.x73{left:202.581333pt;}
.x74{left:207.786667pt;}
.x60{left:221.033333pt;}
.x49{left:238.897333pt;}
.x17{left:249.633333pt;}
.x4a{left:261.310667pt;}
.x18{left:262.917333pt;}
.x61{left:265.449333pt;}
.x50{left:270.158667pt;}
.x2b{left:303.204000pt;}
.x58{left:311.630667pt;}
.x2c{left:316.486667pt;}
.x63{left:318.462667pt;}
.x4b{left:320.620000pt;}
.x69{left:323.462667pt;}
.x64{left:325.105333pt;}
.x44{left:326.821333pt;}
.x6a{left:330.104000pt;}
.x65{left:332.132000pt;}
.x45{left:340.105333pt;}
.x42{left:341.321333pt;}
.x66{left:345.416000pt;}
.x6e{left:366.420000pt;}
.x6f{left:373.062667pt;}
.x70{left:379.554667pt;}
.x71{left:386.196000pt;}
.x24{left:402.842667pt;}
.x51{left:410.718667pt;}
.x25{left:416.126667pt;}
.x28{left:418.684000pt;}
.x26{left:423.424000pt;}
.x2d{left:425.952000pt;}
.x27{left:436.708000pt;}
.x2e{left:439.234667pt;}
.x52{left:441.384000pt;}
.x67{left:444.678667pt;}
.x19{left:448.090667pt;}
.x1a{left:454.733333pt;}
.x68{left:457.962667pt;}
.x1b{left:462.162667pt;}
.x4c{left:463.849333pt;}
.x5a{left:471.278667pt;}
.x1c{left:475.446667pt;}
.x1d{left:482.876000pt;}
.x4d{left:486.280000pt;}
.x1e{left:496.158667pt;}
.x1f{left:503.589333pt;}
.x46{left:505.542667pt;}
.x4e{left:510.865333pt;}
.x3d{left:515.152000pt;}
.x20{left:516.872000pt;}
.x21{left:524.302667pt;}
.x3e{left:528.436000pt;}
.x5b{left:533.314667pt;}
.x22{left:537.585333pt;}
.x5c{left:546.597333pt;}
.x9{left:551.489333pt;}
.x6b{left:552.894667pt;}
.x6c{left:559.537333pt;}
.xa{left:564.772000pt;}
.x62{left:568.570667pt;}
.xb{left:571.202667pt;}
.xc{left:584.485333pt;}
.xd{left:590.914667pt;}
.xe{left:604.198667pt;}
.x6d{left:608.072000pt;}
.x53{left:614.844000pt;}
.x5d{left:616.948000pt;}
.x55{left:617.929333pt;}
.x56{left:623.242667pt;}
.x57{left:628.513333pt;}
.x5e{left:630.232000pt;}
.x41{left:633.802667pt;}
.x47{left:635.625333pt;}
.x2f{left:640.542667pt;}
.x59{left:644.524000pt;}
.x30{left:647.184000pt;}
.x43{left:648.096000pt;}
.xf{left:651.358667pt;}
.x31{left:653.769333pt;}
.x3b{left:655.586667pt;}
.x10{left:664.642667pt;}
.x32{left:667.052000pt;}
.x3c{left:668.869333pt;}
.x3{left:670.298667pt;}
.x33{left:673.637333pt;}
.x4{left:683.582667pt;}
.x34{left:686.921333pt;}
.x5{left:689.854667pt;}
.x11{left:690.785333pt;}
.x35{left:693.506667pt;}
.x48{left:695.904000pt;}
.x6{left:703.138667pt;}
.x12{left:704.068000pt;}
.x36{left:706.789333pt;}
}




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