
    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_95be88d9087dc99f5fbaf3e3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;font-style:normal;font-weight: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_08df154c93eb73eb4394f298.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight: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_168c9604ecdebe73f6cd8141.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;font-style:normal;font-weight: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_cdeb5f78ddf4c01cc17e5a37.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958000;font-style:normal;font-weight: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_eb3f3765a67bc3fe915da3f2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946000;font-style:normal;font-weight: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_983bbc44d81d5ad7e5930cd8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.410000;font-style:normal;font-weight: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_6846fe4c16d6c38c8ac81451.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946000;font-style:normal;font-weight: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_abdea1cbdfc5a9bed6c4f064.woff')format("woff");}.ff8{font-family:ff8;line-height:0.706000;font-style:normal;font-weight: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_7ffad80253b12521d8a0cf2a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m1{transform:matrix(0.245501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245501,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245999,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246501,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246749,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m11{transform:matrix(0.247001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247001,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m5{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247749,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m28{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);}
.mc{transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248001,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248249,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m27{transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248749,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1b{transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249501,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249749,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);}
.m7{transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250251,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);}
.m25{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);}
.m16{transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251249,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251251,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251498,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251999,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252749,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m15{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);}
.m2a{transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253251,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253499,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253501,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1d{transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254249,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254252,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m3{transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254999,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255001,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.041843px;}
.ls10{letter-spacing:0.053798px;}
.ls42{letter-spacing:0.083686px;}
.ls1a{letter-spacing:0.095641px;}
.lsf{letter-spacing:0.107597px;}
.ls18{letter-spacing:0.125528px;}
.ls19{letter-spacing:0.143462px;}
.lsd{letter-spacing:0.161395px;}
.ls17{letter-spacing:0.167371px;}
.ls51{letter-spacing:0.209214px;}
.lse{letter-spacing:0.215194px;}
.ls4{letter-spacing:0.239102px;}
.ls70{letter-spacing:0.251057px;}
.ls11{letter-spacing:0.268992px;}
.ls12{letter-spacing:0.322790px;}
.ls21{letter-spacing:0.376589px;}
.ls50{letter-spacing:0.460271px;}
.ls5e{letter-spacing:0.502114px;}
.ls60{letter-spacing:0.543956px;}
.ls73{letter-spacing:0.585799px;}
.ls44{letter-spacing:0.711328px;}
.ls45{letter-spacing:0.753170px;}
.ls48{letter-spacing:0.795013px;}
.ls47{letter-spacing:0.836856px;}
.ls68{letter-spacing:0.878699px;}
.ls49{letter-spacing:0.962384px;}
.ls30{letter-spacing:0.968371px;}
.ls54{letter-spacing:1.004227px;}
.ls31{letter-spacing:1.022170px;}
.ls22{letter-spacing:1.075968px;}
.ls63{letter-spacing:1.087913px;}
.ls33{letter-spacing:1.183565px;}
.ls32{letter-spacing:1.237363px;}
.ls28{letter-spacing:1.291162px;}
.ls27{letter-spacing:1.344960px;}
.ls71{letter-spacing:1.506341px;}
.ls35{letter-spacing:1.613952px;}
.ls75{letter-spacing:1.631869px;}
.ls34{letter-spacing:1.667750px;}
.ls76{letter-spacing:1.673712px;}
.ls5c{letter-spacing:1.757398px;}
.ls24{letter-spacing:1.882944px;}
.ls4a{letter-spacing:1.924769px;}
.ls23{letter-spacing:1.936742px;}
.ls67{letter-spacing:2.008454px;}
.ls3b{letter-spacing:2.044339px;}
.ls65{letter-spacing:2.050297px;}
.ls3c{letter-spacing:2.098138px;}
.ls1f{letter-spacing:2.205734px;}
.ls1e{letter-spacing:2.259533px;}
.ls20{letter-spacing:2.313331px;}
.ls59{letter-spacing:2.343197px;}
.ls57{letter-spacing:2.385040px;}
.ls3a{letter-spacing:2.582323px;}
.ls3e{letter-spacing:2.636122px;}
.ls3d{letter-spacing:2.689920px;}
.ls4f{letter-spacing:2.761625px;}
.ls4d{letter-spacing:2.803468px;}
.ls6f{letter-spacing:2.845310px;}
.ls26{letter-spacing:3.120307px;}
.ls25{letter-spacing:3.174106px;}
.lsc{letter-spacing:3.335501px;}
.lsb{letter-spacing:3.389299px;}
.ls13{letter-spacing:3.819686px;}
.ls5a{letter-spacing:4.016909px;}
.ls15{letter-spacing:4.088678px;}
.ls14{letter-spacing:4.142477px;}
.ls77{letter-spacing:4.184280px;}
.ls78{letter-spacing:4.226123px;}
.ls5b{letter-spacing:4.267966px;}
.ls74{letter-spacing:4.393494px;}
.ls1c{letter-spacing:4.399495px;}
.ls53{letter-spacing:4.435337px;}
.ls1b{letter-spacing:4.447316px;}
.ls2c{letter-spacing:4.465267px;}
.ls40{letter-spacing:4.519022px;}
.ls2d{letter-spacing:4.519066px;}
.ls3f{letter-spacing:4.560865px;}
.ls38{letter-spacing:4.572864px;}
.ls56{letter-spacing:4.602708px;}
.ls4c{letter-spacing:4.686394px;}
.ls62{letter-spacing:4.728236px;}
.ls6a{letter-spacing:4.770079px;}
.ls41{letter-spacing:4.853765px;}
.ls39{letter-spacing:5.810227px;}
.ls5f{letter-spacing:6.778534px;}
.ls72{letter-spacing:7.113276px;}
.ls46{letter-spacing:7.657232px;}
.ls2f{letter-spacing:7.746970px;}
.ls2e{letter-spacing:7.800768px;}
.ls36{letter-spacing:7.854566px;}
.ls37{letter-spacing:7.908365px;}
.ls6e{letter-spacing:8.033818px;}
.ls6d{letter-spacing:8.075660px;}
.ls69{letter-spacing:8.201189px;}
.ls29{letter-spacing:10.490688px;}
.ls4e{letter-spacing:12.343626px;}
.ls66{letter-spacing:12.385469px;}
.ls58{letter-spacing:13.724438px;}
.ls52{letter-spacing:15.063408px;}
.ls64{letter-spacing:15.272622px;}
.ls61{letter-spacing:19.498745px;}
.ls5d{letter-spacing:19.749802px;}
.ls55{letter-spacing:20.712186px;}
.ls4b{letter-spacing:20.921400px;}
.ls43{letter-spacing:21.172457px;}
.ls6b{letter-spacing:21.339828px;}
.ls6c{letter-spacing:34.311096px;}
.ls1d{letter-spacing:49.090950px;}
.ls3{letter-spacing:240.776117px;}
.lsa{letter-spacing:285.607817px;}
.ls5{letter-spacing:336.835506px;}
.ls2{letter-spacing:422.254838px;}
.ls9{letter-spacing:471.330606px;}
.ls1{letter-spacing:482.607514px;}
.ls8{letter-spacing:517.612339px;}
.ls0{letter-spacing:531.528192px;}
.ls7{letter-spacing:531.883289px;}
.ls6{letter-spacing:533.078801px;}
.ls2b{letter-spacing:614.503361px;}
.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;}
}
.ws1{word-spacing:-17.932800px;}
.ws2{word-spacing:-14.943900px;}
.ws3{word-spacing:-13.449600px;}
.ws9{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws0{word-spacing:-0.103292px;}
.ws5{word-spacing:-0.065455px;}
.ws4{word-spacing:-0.053798px;}
.ws8{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.041843px;}
.wsa{word-spacing:0.000000px;}
.wsb{word-spacing:10.293329px;}
._0{margin-left:-8.263392px;}
._6{margin-left:-5.175835px;}
._5{margin-left:-3.994008px;}
._1{margin-left:-2.892187px;}
._3{margin-left:-1.172554px;}
._4{width:1.183565px;}
._2{width:2.391024px;}
._7{width:3.645365px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5b{bottom:43.500000px;}
.y34{bottom:126.979140px;}
.y93{bottom:126.979500px;}
.y5a{bottom:126.984178px;}
.y33{bottom:138.935720px;}
.y59{bottom:143.419589px;}
.y32{bottom:150.892300px;}
.y58{bottom:159.855000px;}
.y31{bottom:164.041400px;}
.y56{bottom:176.292084px;}
.y57{bottom:176.293500px;}
.y30{bottom:177.190500px;}
.y2f{bottom:189.143920px;}
.y92{bottom:192.732000px;}
.y55{bottom:195.928500px;}
.y2e{bottom:201.100500px;}
.ye7{bottom:206.556000px;}
.y91{bottom:209.170500px;}
.y54{bottom:212.367000px;}
.y2d{bottom:213.055500px;}
.ye6{bottom:218.511000px;}
.y2c{bottom:225.012000px;}
.y53{bottom:228.805500px;}
.y90{bottom:229.719000px;}
.ye5{bottom:230.464420px;}
.y2b{bottom:236.967000px;}
.ye4{bottom:242.421000px;}
.y52{bottom:245.250178px;}
.y2a{bottom:248.922000px;}
.ye2{bottom:254.374420px;}
.ye3{bottom:254.376000px;}
.y51{bottom:261.685589px;}
.ye1{bottom:266.331000px;}
.y8f{bottom:266.782500px;}
.y50{bottom:278.121000px;}
.ye0{bottom:278.286000px;}
.y8e{bottom:283.221000px;}
.y29{bottom:289.039500px;}
.ydf{bottom:290.241000px;}
.y4f{bottom:294.559500px;}
.y8d{bottom:299.659500px;}
.y8c{bottom:299.662589px;}
.ydd{bottom:302.195920px;}
.yde{bottom:302.196000px;}
.y28{bottom:305.478000px;}
.y4e{bottom:310.998000px;}
.ydc{bottom:314.152500px;}
.y8b{bottom:316.098000px;}
.y27{bottom:326.026500px;}
.ydb{bottom:326.107500px;}
.y4d{bottom:327.436500px;}
.y8a{bottom:332.539589px;}
.yda{bottom:338.062500px;}
.y4c{bottom:343.873500px;}
.y4b{bottom:343.876589px;}
.y89{bottom:348.975000px;}
.yd9{bottom:350.015920px;}
.y4a{bottom:360.312000px;}
.y49{bottom:360.315089px;}
.y26{bottom:360.958500px;}
.yd7{bottom:361.970920px;}
.yd8{bottom:361.972500px;}
.y88{bottom:365.413500px;}
.y87{bottom:365.415089px;}
.yd6{bottom:373.927500px;}
.y48{bottom:376.750500px;}
.y47{bottom:376.756678px;}
.y25{bottom:377.395500px;}
.y86{bottom:381.850500px;}
.yd5{bottom:385.882500px;}
.y46{bottom:393.192089px;}
.y24{bottom:393.834000px;}
.yd4{bottom:397.837500px;}
.y85{bottom:398.289000px;}
.y45{bottom:409.627500px;}
.yd3{bottom:409.794000px;}
.y23{bottom:414.382500px;}
.y84{bottom:414.730589px;}
.yd1{bottom:421.747420px;}
.yd2{bottom:421.749000px;}
.y44{bottom:426.066000px;}
.y83{bottom:431.166000px;}
.y82{bottom:431.169089px;}
.yd0{bottom:433.704000px;}
.y43{bottom:442.504500px;}
.ycf{bottom:445.659000px;}
.y81{bottom:447.604500px;}
.y22{bottom:449.314500px;}
.yce{bottom:457.614000px;}
.y42{bottom:458.946089px;}
.y80{bottom:464.043000px;}
.y21{bottom:465.751500px;}
.ycc{bottom:469.567420px;}
.ycd{bottom:469.569000px;}
.y41{bottom:475.381500px;}
.y7f{bottom:480.484589px;}
.ycb{bottom:481.524000px;}
.y20{bottom:482.190000px;}
.y40{bottom:491.820000px;}
.yca{bottom:493.479000px;}
.y7e{bottom:496.920000px;}
.y7d{bottom:496.920026px;}
.y1f{bottom:498.628500px;}
.yc9{bottom:505.434000px;}
.y3f{bottom:508.258500px;}
.y1e{bottom:515.067000px;}
.yc7{bottom:517.388920px;}
.yc8{bottom:517.390500px;}
.y7c{bottom:521.344500px;}
.y3e{bottom:524.695500px;}
.yc6{bottom:529.345500px;}
.y1d{bottom:531.505500px;}
.y7b{bottom:537.781500px;}
.y3d{bottom:541.134000px;}
.yc5{bottom:541.298920px;}
.y1c{bottom:547.944000px;}
.yc4{bottom:553.255500px;}
.y7a{bottom:554.220000px;}
.y3c{bottom:557.572500px;}
.y1b{bottom:564.382500px;}
.yc2{bottom:565.208920px;}
.yc3{bottom:565.210500px;}
.y79{bottom:570.658500px;}
.yc1{bottom:577.165500px;}
.y3b{bottom:578.121000px;}
.y1a{bottom:580.821000px;}
.y78{bottom:587.097000px;}
.yc0{bottom:589.120500px;}
.y19{bottom:597.259500px;}
.ybf{bottom:601.075500px;}
.y77{bottom:603.535500px;}
.y3a{bottom:610.335000px;}
.ybe{bottom:613.030500px;}
.y18{bottom:613.698000px;}
.y76{bottom:619.974000px;}
.ybc{bottom:624.985420px;}
.ybd{bottom:624.987000px;}
.y39{bottom:625.279500px;}
.y17{bottom:630.135000px;}
.ybb{bottom:636.942000px;}
.y38{bottom:640.222500px;}
.y75{bottom:640.522500px;}
.y16{bottom:646.573500px;}
.yba{bottom:648.897000px;}
.y37{bottom:655.167000px;}
.yb9{bottom:660.852000px;}
.y15{bottom:663.012000px;}
.y36{bottom:670.111500px;}
.yb8{bottom:672.805420px;}
.y74{bottom:677.586000px;}
.y14{bottom:679.450500px;}
.yb6{bottom:684.760420px;}
.yb7{bottom:684.762000px;}
.y35{bottom:685.054500px;}
.y73{bottom:694.024500px;}
.yb5{bottom:696.717000px;}
.y13{bottom:699.999000px;}
.yb4{bottom:708.672000px;}
.y72{bottom:710.463000px;}
.yb3{bottom:720.627000px;}
.y71{bottom:726.901500px;}
.y12{bottom:729.977160px;}
.yb1{bottom:732.581920px;}
.yb2{bottom:732.583500px;}
.y70{bottom:743.341589px;}
.yb0{bottom:744.538500px;}
.y11{bottom:747.909840px;}
.yaf{bottom:756.493500px;}
.y6f{bottom:759.777000px;}
.y10{bottom:765.842520px;}
.yae{bottom:768.448500px;}
.y6e{bottom:776.215500px;}
.yad{bottom:780.403500px;}
.yf{bottom:783.775200px;}
.yab{bottom:792.356920px;}
.yac{bottom:792.358500px;}
.y6d{bottom:792.654000px;}
.ye{bottom:801.706500px;}
.yd{bottom:801.707820px;}
.yaa{bottom:804.313500px;}
.y6c{bottom:809.092500px;}
.ya9{bottom:816.266920px;}
.yc{bottom:819.640500px;}
.ya8{bottom:828.223500px;}
.y6b{bottom:829.641000px;}
.yb{bottom:837.573000px;}
.ya7{bottom:840.180000px;}
.ya5{bottom:852.133420px;}
.ya6{bottom:852.135000px;}
.ya4{bottom:864.090000px;}
.y6a{bottom:866.713766px;}
.ya{bottom:871.352130px;}
.ya3{bottom:876.043420px;}
.y69{bottom:883.149178px;}
.ya2{bottom:888.000000px;}
.y9{bottom:889.284810px;}
.y68{bottom:899.584589px;}
.ya0{bottom:899.953420px;}
.ya1{bottom:899.955000px;}
.y8{bottom:907.217490px;}
.y9f{bottom:911.910000px;}
.y67{bottom:916.020000px;}
.y9e{bottom:923.861760px;}
.y7{bottom:925.150170px;}
.y66{bottom:932.458500px;}
.y65{bottom:932.461589px;}
.y9d{bottom:935.818340px;}
.y6{bottom:943.082850px;}
.y5{bottom:943.083000px;}
.y9c{bottom:947.774920px;}
.y64{bottom:948.897000px;}
.y9a{bottom:959.729920px;}
.y9b{bottom:959.731500px;}
.y4{bottom:961.015500px;}
.y63{bottom:965.335500px;}
.y99{bottom:971.686500px;}
.y3{bottom:978.948000px;}
.y62{bottom:981.774000px;}
.y61{bottom:981.781766px;}
.y98{bottom:983.641500px;}
.y97{bottom:995.596500px;}
.y60{bottom:998.217178px;}
.y96{bottom:1007.551500px;}
.y5f{bottom:1014.652589px;}
.y2{bottom:1014.685173px;}
.y95{bottom:1019.506500px;}
.y5e{bottom:1031.088000px;}
.y94{bottom:1031.461500px;}
.y1{bottom:1044.562500px;}
.y5d{bottom:1047.526500px;}
.y5c{bottom:1086.979500px;}
.h9{height:36.936000px;}
.h6{height:38.089267px;}
.h7{height:41.066420px;}
.h8{height:46.933304px;}
.h5{height:52.800188px;}
.h3{height:58.666482px;}
.h4{height:64.240110px;}
.h2{height:70.400250px;}
.h1{height:101.375842px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:80.697000px;}
.x1{left:90.775500px;}
.x5{left:99.378000px;}
.x3a{left:104.647500px;}
.x3b{left:116.839500px;}
.x9{left:139.208032px;}
.x8{left:143.661314px;}
.x4{left:147.261000px;}
.xa{left:149.190557px;}
.x7{left:156.199246px;}
.x3{left:165.687000px;}
.xf{left:221.611200px;}
.xd{left:242.188892px;}
.x14{left:264.646500px;}
.xb{left:279.838500px;}
.x15{left:281.763000px;}
.xc{left:283.449000px;}
.x2{left:297.644354px;}
.x6{left:370.180950px;}
.x16{left:400.051500px;}
.x17{left:417.201000px;}
.x39{left:442.500000px;}
.xe{left:467.967000px;}
.x18{left:476.490000px;}
.x3c{left:481.797000px;}
.x3d{left:499.846500px;}
.x37{left:500.886818px;}
.x11{left:507.801829px;}
.x10{left:512.255111px;}
.x38{left:513.546000px;}
.x12{left:517.784354px;}
.x30{left:537.018000px;}
.x31{left:543.273000px;}
.x19{left:545.673000px;}
.x36{left:548.886000px;}
.x1a{left:551.926500px;}
.x1f{left:557.005500px;}
.x1b{left:558.276000px;}
.x20{left:563.259000px;}
.x1c{left:570.784500px;}
.x28{left:572.214000px;}
.x21{left:576.054000px;}
.x1d{left:577.134000px;}
.x29{left:578.467500px;}
.x22{left:582.595500px;}
.x1e{left:589.642500px;}
.x23{left:595.104000px;}
.x24{left:601.644000px;}
.x25{left:614.152500px;}
.x26{left:620.694000px;}
.x27{left:633.202500px;}
.x2a{left:661.819500px;}
.x2b{left:668.073000px;}
.x32{left:778.389000px;}
.x33{left:784.642500px;}
.x34{left:791.953500px;}
.x35{left:804.460500px;}
.x2c{left:811.650000px;}
.x2d{left:817.905000px;}
.x2e{left:824.626500px;}
.x2f{left:830.880000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.037194pt;}
.ls10{letter-spacing:0.047821pt;}
.ls42{letter-spacing:0.074387pt;}
.ls1a{letter-spacing:0.085014pt;}
.lsf{letter-spacing:0.095642pt;}
.ls18{letter-spacing:0.111581pt;}
.ls19{letter-spacing:0.127522pt;}
.lsd{letter-spacing:0.143462pt;}
.ls17{letter-spacing:0.148774pt;}
.ls51{letter-spacing:0.185968pt;}
.lse{letter-spacing:0.191283pt;}
.ls4{letter-spacing:0.212535pt;}
.ls70{letter-spacing:0.223162pt;}
.ls11{letter-spacing:0.239104pt;}
.ls12{letter-spacing:0.286925pt;}
.ls21{letter-spacing:0.334746pt;}
.ls50{letter-spacing:0.409130pt;}
.ls5e{letter-spacing:0.446323pt;}
.ls60{letter-spacing:0.483517pt;}
.ls73{letter-spacing:0.520710pt;}
.ls44{letter-spacing:0.632291pt;}
.ls45{letter-spacing:0.669485pt;}
.ls48{letter-spacing:0.706678pt;}
.ls47{letter-spacing:0.743872pt;}
.ls68{letter-spacing:0.781066pt;}
.ls49{letter-spacing:0.855453pt;}
.ls30{letter-spacing:0.860774pt;}
.ls54{letter-spacing:0.892646pt;}
.ls31{letter-spacing:0.908595pt;}
.ls22{letter-spacing:0.956416pt;}
.ls63{letter-spacing:0.967034pt;}
.ls33{letter-spacing:1.052058pt;}
.ls32{letter-spacing:1.099878pt;}
.ls28{letter-spacing:1.147699pt;}
.ls27{letter-spacing:1.195520pt;}
.ls71{letter-spacing:1.338970pt;}
.ls35{letter-spacing:1.434624pt;}
.ls75{letter-spacing:1.450550pt;}
.ls34{letter-spacing:1.482445pt;}
.ls76{letter-spacing:1.487744pt;}
.ls5c{letter-spacing:1.562131pt;}
.ls24{letter-spacing:1.673728pt;}
.ls4a{letter-spacing:1.710906pt;}
.ls23{letter-spacing:1.721549pt;}
.ls67{letter-spacing:1.785293pt;}
.ls3b{letter-spacing:1.817190pt;}
.ls65{letter-spacing:1.822486pt;}
.ls3c{letter-spacing:1.865011pt;}
.ls1f{letter-spacing:1.960653pt;}
.ls1e{letter-spacing:2.008474pt;}
.ls20{letter-spacing:2.056294pt;}
.ls59{letter-spacing:2.082842pt;}
.ls57{letter-spacing:2.120035pt;}
.ls3a{letter-spacing:2.295398pt;}
.ls3e{letter-spacing:2.343219pt;}
.ls3d{letter-spacing:2.391040pt;}
.ls4f{letter-spacing:2.454778pt;}
.ls4d{letter-spacing:2.491971pt;}
.ls6f{letter-spacing:2.529165pt;}
.ls26{letter-spacing:2.773606pt;}
.ls25{letter-spacing:2.821427pt;}
.lsc{letter-spacing:2.964890pt;}
.lsb{letter-spacing:3.012710pt;}
.ls13{letter-spacing:3.395277pt;}
.ls5a{letter-spacing:3.570586pt;}
.ls15{letter-spacing:3.634381pt;}
.ls14{letter-spacing:3.682202pt;}
.ls77{letter-spacing:3.719360pt;}
.ls78{letter-spacing:3.756554pt;}
.ls5b{letter-spacing:3.793747pt;}
.ls74{letter-spacing:3.905328pt;}
.ls1c{letter-spacing:3.910662pt;}
.ls53{letter-spacing:3.942522pt;}
.ls1b{letter-spacing:3.953170pt;}
.ls2c{letter-spacing:3.969126pt;}
.ls40{letter-spacing:4.016909pt;}
.ls2d{letter-spacing:4.016947pt;}
.ls3f{letter-spacing:4.054102pt;}
.ls38{letter-spacing:4.064768pt;}
.ls56{letter-spacing:4.091296pt;}
.ls4c{letter-spacing:4.165683pt;}
.ls62{letter-spacing:4.202877pt;}
.ls6a{letter-spacing:4.240070pt;}
.ls41{letter-spacing:4.314458pt;}
.ls39{letter-spacing:5.164646pt;}
.ls5f{letter-spacing:6.025363pt;}
.ls72{letter-spacing:6.322912pt;}
.ls46{letter-spacing:6.806429pt;}
.ls2f{letter-spacing:6.886195pt;}
.ls2e{letter-spacing:6.934016pt;}
.ls36{letter-spacing:6.981837pt;}
.ls37{letter-spacing:7.029658pt;}
.ls6e{letter-spacing:7.141171pt;}
.ls6d{letter-spacing:7.178365pt;}
.ls69{letter-spacing:7.289946pt;}
.ls29{letter-spacing:9.325056pt;}
.ls4e{letter-spacing:10.972112pt;}
.ls66{letter-spacing:11.009306pt;}
.ls58{letter-spacing:12.199501pt;}
.ls52{letter-spacing:13.389696pt;}
.ls64{letter-spacing:13.575664pt;}
.ls61{letter-spacing:17.332218pt;}
.ls5d{letter-spacing:17.555379pt;}
.ls55{letter-spacing:18.410832pt;}
.ls4b{letter-spacing:18.596800pt;}
.ls43{letter-spacing:18.819962pt;}
.ls6b{letter-spacing:18.968736pt;}
.ls6c{letter-spacing:30.498752pt;}
.ls1d{letter-spacing:43.636400pt;}
.ls3{letter-spacing:214.023215pt;}
.lsa{letter-spacing:253.873615pt;}
.ls5{letter-spacing:299.409339pt;}
.ls2{letter-spacing:375.337634pt;}
.ls9{letter-spacing:418.960539pt;}
.ls1{letter-spacing:428.984457pt;}
.ls8{letter-spacing:460.099857pt;}
.ls0{letter-spacing:472.469504pt;}
.ls7{letter-spacing:472.785146pt;}
.ls6{letter-spacing:473.847823pt;}
.ls2b{letter-spacing:546.225210pt;}
.ws1{word-spacing:-15.940267pt;}
.ws2{word-spacing:-13.283467pt;}
.ws3{word-spacing:-11.955200pt;}
.ws9{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws0{word-spacing:-0.091815pt;}
.ws5{word-spacing:-0.058182pt;}
.ws4{word-spacing:-0.047821pt;}
.ws8{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.037194pt;}
.wsa{word-spacing:0.000000pt;}
.wsb{word-spacing:9.149626pt;}
._0{margin-left:-7.345237pt;}
._6{margin-left:-4.600742pt;}
._5{margin-left:-3.550229pt;}
._1{margin-left:-2.570833pt;}
._3{margin-left:-1.042270pt;}
._4{width:1.052058pt;}
._2{width:2.125355pt;}
._7{width:3.240324pt;}
.fs5{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:38.666667pt;}
.y34{bottom:112.870347pt;}
.y93{bottom:112.870667pt;}
.y5a{bottom:112.874825pt;}
.y33{bottom:123.498418pt;}
.y59{bottom:127.484079pt;}
.y32{bottom:134.126489pt;}
.y58{bottom:142.093333pt;}
.y31{bottom:145.814578pt;}
.y56{bottom:156.704075pt;}
.y57{bottom:156.705333pt;}
.y30{bottom:157.502667pt;}
.y2f{bottom:168.127929pt;}
.y92{bottom:171.317333pt;}
.y55{bottom:174.158667pt;}
.y2e{bottom:178.756000pt;}
.ye7{bottom:183.605333pt;}
.y91{bottom:185.929333pt;}
.y54{bottom:188.770667pt;}
.y2d{bottom:189.382667pt;}
.ye6{bottom:194.232000pt;}
.y2c{bottom:200.010667pt;}
.y53{bottom:203.382667pt;}
.y90{bottom:204.194667pt;}
.ye5{bottom:204.857262pt;}
.y2b{bottom:210.637333pt;}
.ye4{bottom:215.485333pt;}
.y52{bottom:218.000158pt;}
.y2a{bottom:221.264000pt;}
.ye2{bottom:226.110595pt;}
.ye3{bottom:226.112000pt;}
.y51{bottom:232.609412pt;}
.ye1{bottom:236.738667pt;}
.y8f{bottom:237.140000pt;}
.y50{bottom:247.218667pt;}
.ye0{bottom:247.365333pt;}
.y8e{bottom:251.752000pt;}
.y29{bottom:256.924000pt;}
.ydf{bottom:257.992000pt;}
.y4f{bottom:261.830667pt;}
.y8d{bottom:266.364000pt;}
.y8c{bottom:266.366746pt;}
.ydd{bottom:268.618595pt;}
.yde{bottom:268.618667pt;}
.y28{bottom:271.536000pt;}
.y4e{bottom:276.442667pt;}
.ydc{bottom:279.246667pt;}
.y8b{bottom:280.976000pt;}
.y27{bottom:289.801333pt;}
.ydb{bottom:289.873333pt;}
.y4d{bottom:291.054667pt;}
.y8a{bottom:295.590746pt;}
.yda{bottom:300.500000pt;}
.y4c{bottom:305.665333pt;}
.y4b{bottom:305.668079pt;}
.y89{bottom:310.200000pt;}
.yd9{bottom:311.125262pt;}
.y4a{bottom:320.277333pt;}
.y49{bottom:320.280079pt;}
.y26{bottom:320.852000pt;}
.yd7{bottom:321.751929pt;}
.yd8{bottom:321.753333pt;}
.y88{bottom:324.812000pt;}
.y87{bottom:324.813412pt;}
.yd6{bottom:332.380000pt;}
.y48{bottom:334.889333pt;}
.y47{bottom:334.894825pt;}
.y25{bottom:335.462667pt;}
.y86{bottom:339.422667pt;}
.yd5{bottom:343.006667pt;}
.y46{bottom:349.504079pt;}
.y24{bottom:350.074667pt;}
.yd4{bottom:353.633333pt;}
.y85{bottom:354.034667pt;}
.y45{bottom:364.113333pt;}
.yd3{bottom:364.261333pt;}
.y23{bottom:368.340000pt;}
.y84{bottom:368.649412pt;}
.yd1{bottom:374.886595pt;}
.yd2{bottom:374.888000pt;}
.y44{bottom:378.725333pt;}
.y83{bottom:383.258667pt;}
.y82{bottom:383.261412pt;}
.yd0{bottom:385.514667pt;}
.y43{bottom:393.337333pt;}
.ycf{bottom:396.141333pt;}
.y81{bottom:397.870667pt;}
.y22{bottom:399.390667pt;}
.yce{bottom:406.768000pt;}
.y42{bottom:407.952079pt;}
.y80{bottom:412.482667pt;}
.y21{bottom:414.001333pt;}
.ycc{bottom:417.393262pt;}
.ycd{bottom:417.394667pt;}
.y41{bottom:422.561333pt;}
.y7f{bottom:427.097412pt;}
.ycb{bottom:428.021333pt;}
.y20{bottom:428.613333pt;}
.y40{bottom:437.173333pt;}
.yca{bottom:438.648000pt;}
.y7e{bottom:441.706667pt;}
.y7d{bottom:441.706690pt;}
.y1f{bottom:443.225333pt;}
.yc9{bottom:449.274667pt;}
.y3f{bottom:451.785333pt;}
.y1e{bottom:457.837333pt;}
.yc7{bottom:459.901262pt;}
.yc8{bottom:459.902667pt;}
.y7c{bottom:463.417333pt;}
.y3e{bottom:466.396000pt;}
.yc6{bottom:470.529333pt;}
.y1d{bottom:472.449333pt;}
.y7b{bottom:478.028000pt;}
.y3d{bottom:481.008000pt;}
.yc5{bottom:481.154595pt;}
.y1c{bottom:487.061333pt;}
.yc4{bottom:491.782667pt;}
.y7a{bottom:492.640000pt;}
.y3c{bottom:495.620000pt;}
.y1b{bottom:501.673333pt;}
.yc2{bottom:502.407929pt;}
.yc3{bottom:502.409333pt;}
.y79{bottom:507.252000pt;}
.yc1{bottom:513.036000pt;}
.y3b{bottom:513.885333pt;}
.y1a{bottom:516.285333pt;}
.y78{bottom:521.864000pt;}
.yc0{bottom:523.662667pt;}
.y19{bottom:530.897333pt;}
.ybf{bottom:534.289333pt;}
.y77{bottom:536.476000pt;}
.y3a{bottom:542.520000pt;}
.ybe{bottom:544.916000pt;}
.y18{bottom:545.509333pt;}
.y76{bottom:551.088000pt;}
.ybc{bottom:555.542595pt;}
.ybd{bottom:555.544000pt;}
.y39{bottom:555.804000pt;}
.y17{bottom:560.120000pt;}
.ybb{bottom:566.170667pt;}
.y38{bottom:569.086667pt;}
.y75{bottom:569.353333pt;}
.y16{bottom:574.732000pt;}
.yba{bottom:576.797333pt;}
.y37{bottom:582.370667pt;}
.yb9{bottom:587.424000pt;}
.y15{bottom:589.344000pt;}
.y36{bottom:595.654667pt;}
.yb8{bottom:598.049262pt;}
.y74{bottom:602.298667pt;}
.y14{bottom:603.956000pt;}
.yb6{bottom:608.675929pt;}
.yb7{bottom:608.677333pt;}
.y35{bottom:608.937333pt;}
.y73{bottom:616.910667pt;}
.yb5{bottom:619.304000pt;}
.y13{bottom:622.221333pt;}
.yb4{bottom:629.930667pt;}
.y72{bottom:631.522667pt;}
.yb3{bottom:640.557333pt;}
.y71{bottom:646.134667pt;}
.y12{bottom:648.868587pt;}
.yb1{bottom:651.183929pt;}
.yb2{bottom:651.185333pt;}
.y70{bottom:660.748079pt;}
.yb0{bottom:661.812000pt;}
.y11{bottom:664.808747pt;}
.yaf{bottom:672.438667pt;}
.y6f{bottom:675.357333pt;}
.y10{bottom:680.748907pt;}
.yae{bottom:683.065333pt;}
.y6e{bottom:689.969333pt;}
.yad{bottom:693.692000pt;}
.yf{bottom:696.689067pt;}
.yab{bottom:704.317262pt;}
.yac{bottom:704.318667pt;}
.y6d{bottom:704.581333pt;}
.ye{bottom:712.628000pt;}
.yd{bottom:712.629173pt;}
.yaa{bottom:714.945333pt;}
.y6c{bottom:719.193333pt;}
.ya9{bottom:725.570595pt;}
.yc{bottom:728.569333pt;}
.ya8{bottom:736.198667pt;}
.y6b{bottom:737.458667pt;}
.yb{bottom:744.509333pt;}
.ya7{bottom:746.826667pt;}
.ya5{bottom:757.451929pt;}
.ya6{bottom:757.453333pt;}
.ya4{bottom:768.080000pt;}
.y6a{bottom:770.412237pt;}
.ya{bottom:774.535227pt;}
.ya3{bottom:778.705262pt;}
.y69{bottom:785.021491pt;}
.ya2{bottom:789.333333pt;}
.y9{bottom:790.475387pt;}
.y68{bottom:799.630746pt;}
.ya0{bottom:799.958595pt;}
.ya1{bottom:799.960000pt;}
.y8{bottom:806.415547pt;}
.y9f{bottom:810.586667pt;}
.y67{bottom:814.240000pt;}
.y9e{bottom:821.210453pt;}
.y7{bottom:822.355707pt;}
.y66{bottom:828.852000pt;}
.y65{bottom:828.854746pt;}
.y9d{bottom:831.838524pt;}
.y6{bottom:838.295867pt;}
.y5{bottom:838.296000pt;}
.y9c{bottom:842.466595pt;}
.y64{bottom:843.464000pt;}
.y9a{bottom:853.093262pt;}
.y9b{bottom:853.094667pt;}
.y4{bottom:854.236000pt;}
.y63{bottom:858.076000pt;}
.y99{bottom:863.721333pt;}
.y3{bottom:870.176000pt;}
.y62{bottom:872.688000pt;}
.y61{bottom:872.694903pt;}
.y98{bottom:874.348000pt;}
.y97{bottom:884.974667pt;}
.y60{bottom:887.304158pt;}
.y96{bottom:895.601333pt;}
.y5f{bottom:901.913412pt;}
.y2{bottom:901.942376pt;}
.y95{bottom:906.228000pt;}
.y5e{bottom:916.522667pt;}
.y94{bottom:916.854667pt;}
.y1{bottom:928.500000pt;}
.y5d{bottom:931.134667pt;}
.y5c{bottom:966.204000pt;}
.h9{height:32.832000pt;}
.h6{height:33.857126pt;}
.h7{height:36.503484pt;}
.h8{height:41.718492pt;}
.h5{height:46.933500pt;}
.h3{height:52.147984pt;}
.h4{height:57.102320pt;}
.h2{height:62.578000pt;}
.h1{height:90.111859pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:71.730667pt;}
.x1{left:80.689333pt;}
.x5{left:88.336000pt;}
.x3a{left:93.020000pt;}
.x3b{left:103.857333pt;}
.x9{left:123.740473pt;}
.x8{left:127.698946pt;}
.x4{left:130.898667pt;}
.xa{left:132.613828pt;}
.x7{left:138.843774pt;}
.x3{left:147.277333pt;}
.xf{left:196.987733pt;}
.xd{left:215.279015pt;}
.x14{left:235.241333pt;}
.xb{left:248.745333pt;}
.x15{left:250.456000pt;}
.xc{left:251.954667pt;}
.x2{left:264.572759pt;}
.x6{left:329.049733pt;}
.x16{left:355.601333pt;}
.x17{left:370.845333pt;}
.x39{left:393.333333pt;}
.xe{left:415.970667pt;}
.x18{left:423.546667pt;}
.x3c{left:428.264000pt;}
.x3d{left:444.308000pt;}
.x37{left:445.232727pt;}
.x11{left:451.379403pt;}
.x10{left:455.337877pt;}
.x38{left:456.485333pt;}
.x12{left:460.252759pt;}
.x30{left:477.349333pt;}
.x31{left:482.909333pt;}
.x19{left:485.042667pt;}
.x36{left:487.898667pt;}
.x1a{left:490.601333pt;}
.x1f{left:495.116000pt;}
.x1b{left:496.245333pt;}
.x20{left:500.674667pt;}
.x1c{left:507.364000pt;}
.x28{left:508.634667pt;}
.x21{left:512.048000pt;}
.x1d{left:513.008000pt;}
.x29{left:514.193333pt;}
.x22{left:517.862667pt;}
.x1e{left:524.126667pt;}
.x23{left:528.981333pt;}
.x24{left:534.794667pt;}
.x25{left:545.913333pt;}
.x26{left:551.728000pt;}
.x27{left:562.846667pt;}
.x2a{left:588.284000pt;}
.x2b{left:593.842667pt;}
.x32{left:691.901333pt;}
.x33{left:697.460000pt;}
.x34{left:703.958667pt;}
.x35{left:715.076000pt;}
.x2c{left:721.466667pt;}
.x2d{left:727.026667pt;}
.x2e{left:733.001333pt;}
.x2f{left:738.560000pt;}
}




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