
    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_3f1ac8f769291d831993ec7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;font-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_0a1c764b4cbb71a224fba397.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148000;font-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_9864b46ed91057d9815aae10.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.169000;font-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_204c779312be72cf4e6a908d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.169000;font-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_37a184aa0b067b03c9bc6aff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;font-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_ff0b22065113f0d9cc5fb104.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-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_e21de78a6926914436dcf6e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.165000;font-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_fac1d0ac85f49802e34403a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.198000;font-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_d51006a5fea0fc25382fb40d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.165000;font-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_7a8d6c26f03f0f542ec6be16.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.198000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{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);}
.md{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248043,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248343,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248420,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248711,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248966,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248977,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249548,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249886,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);}
.ma{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.774000px;}
.v1{vertical-align:21.966600px;}
.ls18{letter-spacing:-3.564000px;}
.ls19{letter-spacing:-3.300000px;}
.ls7{letter-spacing:-0.990000px;}
.ls11{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.462000px;}
.ls1c{letter-spacing:-0.399000px;}
.ls9{letter-spacing:-0.396000px;}
.ls12{letter-spacing:-0.384780px;}
.ls1d{letter-spacing:-0.342000px;}
.ls8{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.264000px;}
.lsb{letter-spacing:-0.198000px;}
.lsd{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.132000px;}
.lsf{letter-spacing:-0.066000px;}
.ls5{letter-spacing:-0.057000px;}
.ls10{letter-spacing:-0.038478px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000066px;}
.lsc{letter-spacing:0.114000px;}
.ls14{letter-spacing:0.132000px;}
.ls1a{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.270000px;}
.ls1b{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.660000px;}
.ls1{letter-spacing:0.720000px;}
.lse{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.ls15{letter-spacing:203.148000px;}
.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:-16.632000px;}
.ws39{word-spacing:-16.500000px;}
.ws28{word-spacing:-16.236000px;}
.ws2f{word-spacing:-16.170000px;}
.ws6{word-spacing:-16.104000px;}
.ws4a{word-spacing:-15.000000px;}
.ws73{word-spacing:-14.148000px;}
.ws4b{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws43{word-spacing:-13.794000px;}
.ws2{word-spacing:-13.728000px;}
.ws26{word-spacing:-13.596000px;}
.ws25{word-spacing:-13.200000px;}
.ws32{word-spacing:-13.068000px;}
.ws4{word-spacing:-12.870000px;}
.ws3{word-spacing:-12.738000px;}
.ws7{word-spacing:-12.600000px;}
.ws5{word-spacing:-12.540000px;}
.ws60{word-spacing:-11.970000px;}
.ws3d{word-spacing:-11.700000px;}
.ws63{word-spacing:-11.571000px;}
.ws62{word-spacing:-11.115000px;}
.ws4c{word-spacing:-9.306000px;}
.ws33{word-spacing:-8.080380px;}
.ws24{word-spacing:-8.041902px;}
.ws61{word-spacing:-6.978510px;}
.ws12{word-spacing:-3.102000px;}
.ws2c{word-spacing:-2.838000px;}
.wsd{word-spacing:-2.772000px;}
.ws48{word-spacing:-2.706000px;}
.ws18{word-spacing:-2.640000px;}
.ws1e{word-spacing:-2.520000px;}
.ws71{word-spacing:-2.508000px;}
.wsb{word-spacing:-2.394000px;}
.ws72{word-spacing:-2.337000px;}
.ws5f{word-spacing:-2.310000px;}
.ws6d{word-spacing:-2.109000px;}
.ws6e{word-spacing:-1.995000px;}
.ws5a{word-spacing:-1.980000px;}
.ws4f{word-spacing:-1.914000px;}
.ws29{word-spacing:-1.848000px;}
.ws19{word-spacing:-1.782000px;}
.ws53{word-spacing:-1.584000px;}
.ws5c{word-spacing:-1.518000px;}
.ws8{word-spacing:-1.350000px;}
.ws5b{word-spacing:-1.320000px;}
.ws36{word-spacing:-1.188000px;}
.ws38{word-spacing:-1.056000px;}
.wse{word-spacing:-0.858000px;}
.ws34{word-spacing:-0.660000px;}
.wsa{word-spacing:-0.627000px;}
.wsf{word-spacing:-0.594000px;}
.ws64{word-spacing:-0.570000px;}
.ws58{word-spacing:-0.528000px;}
.ws3e{word-spacing:-0.462000px;}
.ws4e{word-spacing:-0.396000px;}
.ws6f{word-spacing:-0.342000px;}
.ws2a{word-spacing:-0.330000px;}
.ws70{word-spacing:-0.285000px;}
.ws1a{word-spacing:-0.264000px;}
.ws1d{word-spacing:-0.114000px;}
.ws27{word-spacing:-0.066000px;}
.ws9{word-spacing:0.000000px;}
.ws67{word-spacing:0.057000px;}
.ws42{word-spacing:0.066000px;}
.ws20{word-spacing:0.120000px;}
.ws35{word-spacing:0.132000px;}
.ws59{word-spacing:0.198000px;}
.ws1f{word-spacing:0.240000px;}
.ws17{word-spacing:0.264000px;}
.ws10{word-spacing:0.330000px;}
.ws2d{word-spacing:0.384780px;}
.ws11{word-spacing:0.396000px;}
.ws68{word-spacing:0.399000px;}
.ws15{word-spacing:0.462000px;}
.ws6a{word-spacing:0.627000px;}
.ws22{word-spacing:0.660000px;}
.ws69{word-spacing:0.684000px;}
.ws45{word-spacing:0.792000px;}
.ws3a{word-spacing:1.056000px;}
.ws2b{word-spacing:1.122000px;}
.ws37{word-spacing:1.188000px;}
.ws16{word-spacing:1.254000px;}
.ws49{word-spacing:1.500000px;}
.ws66{word-spacing:1.710000px;}
.ws56{word-spacing:1.716000px;}
.ws65{word-spacing:1.824000px;}
.ws46{word-spacing:1.848000px;}
.ws1b{word-spacing:1.980000px;}
.ws57{word-spacing:2.046000px;}
.ws30{word-spacing:2.112000px;}
.ws44{word-spacing:2.178000px;}
.ws31{word-spacing:2.310000px;}
.ws41{word-spacing:2.376000px;}
.ws1c{word-spacing:2.442000px;}
.ws5e{word-spacing:2.508000px;}
.ws3f{word-spacing:2.904000px;}
.ws54{word-spacing:3.234000px;}
.ws4d{word-spacing:3.300000px;}
.ws47{word-spacing:3.432000px;}
.ws14{word-spacing:3.498000px;}
.ws13{word-spacing:3.564000px;}
.ws6c{word-spacing:3.648000px;}
.ws5d{word-spacing:3.762000px;}
.ws3b{word-spacing:3.828000px;}
.ws50{word-spacing:3.960000px;}
.ws6b{word-spacing:3.990000px;}
.ws2e{word-spacing:4.026000px;}
.ws21{word-spacing:4.140000px;}
.ws51{word-spacing:4.224000px;}
.ws52{word-spacing:4.290000px;}
.ws40{word-spacing:4.554000px;}
.wsc{word-spacing:4.620000px;}
.ws23{word-spacing:1920.837000px;}
.ws55{word-spacing:1923.699000px;}
.ws3c{word-spacing:1930.017000px;}
._10{margin-left:-2619.486000px;}
._12{margin-left:-17.316000px;}
._11{margin-left:-16.092000px;}
._9{margin-left:-13.837200px;}
._b{margin-left:-12.600000px;}
._19{margin-left:-11.314528px;}
._f{margin-left:-9.863455px;}
._d{margin-left:-7.920000px;}
._4{margin-left:-6.465000px;}
._c{margin-left:-5.160000px;}
._2{margin-left:-4.080000px;}
._5{margin-left:-3.000000px;}
._1{margin-left:-1.530000px;}
._0{width:1.080000px;}
._15{width:2.586000px;}
._3{width:3.990000px;}
._6{width:5.211000px;}
._7{width:8.052000px;}
._e{width:16.674000px;}
._a{width:44.090400px;}
._14{width:45.360000px;}
._18{width:47.160000px;}
._8{width:52.523018px;}
._16{width:58.938000px;}
._13{width:118.074000px;}
._17{width:202.158000px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.231000px;}
.fs7{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:89.716650px;}
.yb7{bottom:92.709300px;}
.y34{bottom:101.196900px;}
.y26{bottom:107.716650px;}
.y25{bottom:125.716650px;}
.y24{bottom:143.716650px;}
.y57{bottom:149.672100px;}
.y8d{bottom:149.674800px;}
.y23{bottom:161.716650px;}
.y56{bottom:169.653600px;}
.y8c{bottom:169.656300px;}
.y22{bottom:179.716650px;}
.y55{bottom:189.637800px;}
.y9e{bottom:189.640500px;}
.y21{bottom:197.716650px;}
.y54{bottom:209.622000px;}
.y20{bottom:215.716650px;}
.y53{bottom:229.606350px;}
.y8b{bottom:229.633950px;}
.y9d{bottom:249.590550px;}
.y52{bottom:249.593400px;}
.y73{bottom:249.596100px;}
.y1f{bottom:249.601650px;}
.y8a{bottom:249.615450px;}
.y51{bottom:269.574900px;}
.y72{bottom:269.577600px;}
.y1e{bottom:269.583150px;}
.y89{bottom:269.596950px;}
.y50{bottom:289.559100px;}
.y1d{bottom:289.564650px;}
.y71{bottom:289.592100px;}
.y9c{bottom:309.543300px;}
.y1c{bottom:309.546150px;}
.y88{bottom:309.559950px;}
.y70{bottom:309.573600px;}
.y1b{bottom:329.527650px;}
.y87{bottom:329.541450px;}
.y6f{bottom:329.555100px;}
.y4f{bottom:349.509150px;}
.y1a{bottom:349.511850px;}
.y86{bottom:349.522950px;}
.y6e{bottom:349.536600px;}
.y19{bottom:369.496050px;}
.y85{bottom:369.504450px;}
.y9b{bottom:369.509850px;}
.y6d{bottom:369.518100px;}
.y84{bottom:389.485950px;}
.y18{bottom:389.488650px;}
.y9a{bottom:389.491350px;}
.y6c{bottom:389.499600px;}
.y83{bottom:409.467450px;}
.y17{bottom:409.470150px;}
.y99{bottom:409.472850px;}
.y6b{bottom:409.481100px;}
.y82{bottom:429.448950px;}
.y16{bottom:429.451650px;}
.y98{bottom:429.454350px;}
.y6a{bottom:429.462600px;}
.yb6{bottom:437.621700px;}
.y15{bottom:449.433150px;}
.y97{bottom:449.435850px;}
.y69{bottom:449.444100px;}
.y4e{bottom:449.468850px;}
.yb5{bottom:455.619450px;}
.y14{bottom:469.417350px;}
.y68{bottom:469.425600px;}
.y4d{bottom:469.450350px;}
.yb4{bottom:473.617200px;}
.y13{bottom:489.401700px;}
.y67{bottom:489.407100px;}
.y4c{bottom:489.431850px;}
.yb3{bottom:491.614950px;}
.y11{bottom:509.385900px;}
.y66{bottom:509.388600px;}
.y4b{bottom:509.413350px;}
.yb2{bottom:509.612700px;}
.y12{bottom:514.880400px;}
.y65{bottom:529.370100px;}
.y10{bottom:529.372950px;}
.y4a{bottom:529.394850px;}
.yf{bottom:549.354450px;}
.y64{bottom:549.370950px;}
.y49{bottom:549.376350px;}
.ye{bottom:569.338650px;}
.y63{bottom:569.352450px;}
.y48{bottom:569.357850px;}
.yd{bottom:589.322850px;}
.y62{bottom:589.333950px;}
.y47{bottom:589.339350px;}
.yb1{bottom:589.363200px;}
.y46{bottom:609.320850px;}
.yb0{bottom:609.341700px;}
.yc{bottom:629.291400px;}
.y61{bottom:629.296950px;}
.y45{bottom:629.302350px;}
.yaf{bottom:629.320200px;}
.y60{bottom:649.278450px;}
.y44{bottom:649.283850px;}
.y96{bottom:649.286700px;}
.yae{bottom:649.298700px;}
.y5f{bottom:669.259950px;}
.y43{bottom:669.265350px;}
.y95{bottom:669.268200px;}
.yad{bottom:669.277200px;}
.y5e{bottom:689.244150px;}
.y42{bottom:689.246850px;}
.yac{bottom:689.255700px;}
.y41{bottom:709.228350px;}
.y94{bottom:709.231200px;}
.yab{bottom:709.234200px;}
.y5d{bottom:709.239450px;}
.y81{bottom:709.266900px;}
.yb{bottom:724.039200px;}
.y93{bottom:729.212700px;}
.y5c{bottom:729.220950px;}
.y40{bottom:729.229200px;}
.y80{bottom:729.248400px;}
.ya{bottom:742.039200px;}
.y92{bottom:749.196900px;}
.y5b{bottom:749.202450px;}
.y3f{bottom:749.210700px;}
.y7f{bottom:749.229900px;}
.y33{bottom:769.183950px;}
.y91{bottom:769.186650px;}
.yaa{bottom:769.192650px;}
.y7e{bottom:769.211400px;}
.y32{bottom:789.165450px;}
.y90{bottom:789.168150px;}
.ya9{bottom:789.171150px;}
.y3e{bottom:789.173700px;}
.y7d{bottom:789.192900px;}
.y9{bottom:802.558950px;}
.y31{bottom:809.149650px;}
.y3d{bottom:809.155200px;}
.y7c{bottom:809.174400px;}
.ya8{bottom:809.201400px;}
.y8{bottom:820.558950px;}
.y30{bottom:829.134000px;}
.y3c{bottom:829.136700px;}
.y7b{bottom:829.155900px;}
.ya7{bottom:829.179900px;}
.y7{bottom:838.558950px;}
.y2e{bottom:849.118200px;}
.y8f{bottom:849.120900px;}
.y7a{bottom:849.137400px;}
.ya6{bottom:849.158400px;}
.y2f{bottom:854.612700px;}
.y6{bottom:856.558950px;}
.y3b{bottom:869.102400px;}
.y2d{bottom:869.107950px;}
.y79{bottom:869.118900px;}
.ya5{bottom:869.136900px;}
.y3a{bottom:889.086600px;}
.y2c{bottom:889.089450px;}
.y78{bottom:889.100400px;}
.ya4{bottom:889.115400px;}
.y2b{bottom:909.070950px;}
.y8e{bottom:909.073650px;}
.y77{bottom:909.081900px;}
.y39{bottom:909.087450px;}
.ya3{bottom:909.093900px;}
.y5{bottom:925.582650px;}
.y5a{bottom:929.055150px;}
.y76{bottom:929.063400px;}
.y38{bottom:929.068950px;}
.ya2{bottom:929.072400px;}
.y2a{bottom:949.039350px;}
.y37{bottom:949.050450px;}
.ya1{bottom:949.050900px;}
.y59{bottom:969.023700px;}
.y75{bottom:969.026400px;}
.ya0{bottom:969.029400px;}
.y36{bottom:969.031950px;}
.y4{bottom:969.076350px;}
.y74{bottom:989.007900px;}
.y35{bottom:989.013450px;}
.y3{bottom:997.585350px;}
.y29{bottom:1008.992100px;}
.y58{bottom:1008.994950px;}
.y2{bottom:1026.094350px;}
.y28{bottom:1028.976450px;}
.y9f{bottom:1034.284350px;}
.y1{bottom:1082.225850px;}
.h9{height:34.707156px;}
.hf{height:45.826172px;}
.h2{height:50.868000px;}
.h6{height:51.414000px;}
.hc{height:52.098000px;}
.ha{height:54.120000px;}
.h5{height:55.560000px;}
.he{height:59.268000px;}
.h8{height:59.532000px;}
.hb{height:60.324000px;}
.hd{height:62.172000px;}
.h7{height:66.672000px;}
.h4{height:73.476000px;}
.h3{height:94.452000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xb{left:68.108700px;}
.x10{left:70.338600px;}
.x6{left:72.283500px;}
.x14{left:76.615500px;}
.xe{left:78.928050px;}
.x1{left:80.787450px;}
.x11{left:91.158300px;}
.xf{left:92.949300px;}
.x12{left:94.049100px;}
.x4{left:101.125650px;}
.x5{left:102.347850px;}
.x2{left:263.258850px;}
.xc{left:264.504000px;}
.x3{left:267.862800px;}
.x7{left:684.971400px;}
.x8{left:693.629700px;}
.x15{left:715.718850px;}
.x9{left:717.752250px;}
.x13{left:720.295200px;}
.xd{left:723.602850px;}
.xa{left:726.509700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.688000pt;}
.v1{vertical-align:19.525867pt;}
.ls18{letter-spacing:-3.168000pt;}
.ls19{letter-spacing:-2.933333pt;}
.ls7{letter-spacing:-0.880000pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls1c{letter-spacing:-0.354667pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls12{letter-spacing:-0.342027pt;}
.ls1d{letter-spacing:-0.304000pt;}
.ls8{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.234667pt;}
.lsb{letter-spacing:-0.176000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.117333pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:-0.050667pt;}
.ls10{letter-spacing:-0.034203pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000059pt;}
.lsc{letter-spacing:0.101333pt;}
.ls14{letter-spacing:0.117333pt;}
.ls1a{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.240000pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.586667pt;}
.ls1{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ls15{letter-spacing:180.576000pt;}
.ws1{word-spacing:-14.784000pt;}
.ws39{word-spacing:-14.666667pt;}
.ws28{word-spacing:-14.432000pt;}
.ws2f{word-spacing:-14.373333pt;}
.ws6{word-spacing:-14.314667pt;}
.ws4a{word-spacing:-13.333333pt;}
.ws73{word-spacing:-12.576000pt;}
.ws4b{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws43{word-spacing:-12.261333pt;}
.ws2{word-spacing:-12.202667pt;}
.ws26{word-spacing:-12.085333pt;}
.ws25{word-spacing:-11.733333pt;}
.ws32{word-spacing:-11.616000pt;}
.ws4{word-spacing:-11.440000pt;}
.ws3{word-spacing:-11.322667pt;}
.ws7{word-spacing:-11.200000pt;}
.ws5{word-spacing:-11.146667pt;}
.ws60{word-spacing:-10.640000pt;}
.ws3d{word-spacing:-10.400000pt;}
.ws63{word-spacing:-10.285333pt;}
.ws62{word-spacing:-9.880000pt;}
.ws4c{word-spacing:-8.272000pt;}
.ws33{word-spacing:-7.182560pt;}
.ws24{word-spacing:-7.148357pt;}
.ws61{word-spacing:-6.203120pt;}
.ws12{word-spacing:-2.757333pt;}
.ws2c{word-spacing:-2.522667pt;}
.wsd{word-spacing:-2.464000pt;}
.ws48{word-spacing:-2.405333pt;}
.ws18{word-spacing:-2.346667pt;}
.ws1e{word-spacing:-2.240000pt;}
.ws71{word-spacing:-2.229333pt;}
.wsb{word-spacing:-2.128000pt;}
.ws72{word-spacing:-2.077333pt;}
.ws5f{word-spacing:-2.053333pt;}
.ws6d{word-spacing:-1.874667pt;}
.ws6e{word-spacing:-1.773333pt;}
.ws5a{word-spacing:-1.760000pt;}
.ws4f{word-spacing:-1.701333pt;}
.ws29{word-spacing:-1.642667pt;}
.ws19{word-spacing:-1.584000pt;}
.ws53{word-spacing:-1.408000pt;}
.ws5c{word-spacing:-1.349333pt;}
.ws8{word-spacing:-1.200000pt;}
.ws5b{word-spacing:-1.173333pt;}
.ws36{word-spacing:-1.056000pt;}
.ws38{word-spacing:-0.938667pt;}
.wse{word-spacing:-0.762667pt;}
.ws34{word-spacing:-0.586667pt;}
.wsa{word-spacing:-0.557333pt;}
.wsf{word-spacing:-0.528000pt;}
.ws64{word-spacing:-0.506667pt;}
.ws58{word-spacing:-0.469333pt;}
.ws3e{word-spacing:-0.410667pt;}
.ws4e{word-spacing:-0.352000pt;}
.ws6f{word-spacing:-0.304000pt;}
.ws2a{word-spacing:-0.293333pt;}
.ws70{word-spacing:-0.253333pt;}
.ws1a{word-spacing:-0.234667pt;}
.ws1d{word-spacing:-0.101333pt;}
.ws27{word-spacing:-0.058667pt;}
.ws9{word-spacing:0.000000pt;}
.ws67{word-spacing:0.050667pt;}
.ws42{word-spacing:0.058667pt;}
.ws20{word-spacing:0.106667pt;}
.ws35{word-spacing:0.117333pt;}
.ws59{word-spacing:0.176000pt;}
.ws1f{word-spacing:0.213333pt;}
.ws17{word-spacing:0.234667pt;}
.ws10{word-spacing:0.293333pt;}
.ws2d{word-spacing:0.342027pt;}
.ws11{word-spacing:0.352000pt;}
.ws68{word-spacing:0.354667pt;}
.ws15{word-spacing:0.410667pt;}
.ws6a{word-spacing:0.557333pt;}
.ws22{word-spacing:0.586667pt;}
.ws69{word-spacing:0.608000pt;}
.ws45{word-spacing:0.704000pt;}
.ws3a{word-spacing:0.938667pt;}
.ws2b{word-spacing:0.997333pt;}
.ws37{word-spacing:1.056000pt;}
.ws16{word-spacing:1.114667pt;}
.ws49{word-spacing:1.333333pt;}
.ws66{word-spacing:1.520000pt;}
.ws56{word-spacing:1.525333pt;}
.ws65{word-spacing:1.621333pt;}
.ws46{word-spacing:1.642667pt;}
.ws1b{word-spacing:1.760000pt;}
.ws57{word-spacing:1.818667pt;}
.ws30{word-spacing:1.877333pt;}
.ws44{word-spacing:1.936000pt;}
.ws31{word-spacing:2.053333pt;}
.ws41{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.170667pt;}
.ws5e{word-spacing:2.229333pt;}
.ws3f{word-spacing:2.581333pt;}
.ws54{word-spacing:2.874667pt;}
.ws4d{word-spacing:2.933333pt;}
.ws47{word-spacing:3.050667pt;}
.ws14{word-spacing:3.109333pt;}
.ws13{word-spacing:3.168000pt;}
.ws6c{word-spacing:3.242667pt;}
.ws5d{word-spacing:3.344000pt;}
.ws3b{word-spacing:3.402667pt;}
.ws50{word-spacing:3.520000pt;}
.ws6b{word-spacing:3.546667pt;}
.ws2e{word-spacing:3.578667pt;}
.ws21{word-spacing:3.680000pt;}
.ws51{word-spacing:3.754667pt;}
.ws52{word-spacing:3.813333pt;}
.ws40{word-spacing:4.048000pt;}
.wsc{word-spacing:4.106667pt;}
.ws23{word-spacing:1707.410667pt;}
.ws55{word-spacing:1709.954667pt;}
.ws3c{word-spacing:1715.570667pt;}
._10{margin-left:-2328.432000pt;}
._12{margin-left:-15.392000pt;}
._11{margin-left:-14.304000pt;}
._9{margin-left:-12.299733pt;}
._b{margin-left:-11.200000pt;}
._19{margin-left:-10.057358pt;}
._f{margin-left:-8.767515pt;}
._d{margin-left:-7.040000pt;}
._4{margin-left:-5.746667pt;}
._c{margin-left:-4.586667pt;}
._2{margin-left:-3.626667pt;}
._5{margin-left:-2.666667pt;}
._1{margin-left:-1.360000pt;}
._0{width:0.960000pt;}
._15{width:2.298667pt;}
._3{width:3.546667pt;}
._6{width:4.632000pt;}
._7{width:7.157333pt;}
._e{width:14.821333pt;}
._a{width:39.191467pt;}
._14{width:40.320000pt;}
._18{width:41.920000pt;}
._8{width:46.687127pt;}
._16{width:52.389333pt;}
._13{width:104.954667pt;}
._17{width:179.696000pt;}
.fs8{font-size:29.538667pt;}
.fs7{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:79.748133pt;}
.yb7{bottom:82.408267pt;}
.y34{bottom:89.952800pt;}
.y26{bottom:95.748133pt;}
.y25{bottom:111.748133pt;}
.y24{bottom:127.748133pt;}
.y57{bottom:133.041867pt;}
.y8d{bottom:133.044267pt;}
.y23{bottom:143.748133pt;}
.y56{bottom:150.803200pt;}
.y8c{bottom:150.805600pt;}
.y22{bottom:159.748133pt;}
.y55{bottom:168.566933pt;}
.y9e{bottom:168.569333pt;}
.y21{bottom:175.748133pt;}
.y54{bottom:186.330667pt;}
.y20{bottom:191.748133pt;}
.y53{bottom:204.094533pt;}
.y8b{bottom:204.119067pt;}
.y9d{bottom:221.858267pt;}
.y52{bottom:221.860800pt;}
.y73{bottom:221.863200pt;}
.y1f{bottom:221.868133pt;}
.y8a{bottom:221.880400pt;}
.y51{bottom:239.622133pt;}
.y72{bottom:239.624533pt;}
.y1e{bottom:239.629467pt;}
.y89{bottom:239.641733pt;}
.y50{bottom:257.385867pt;}
.y1d{bottom:257.390800pt;}
.y71{bottom:257.415200pt;}
.y9c{bottom:275.149600pt;}
.y1c{bottom:275.152133pt;}
.y88{bottom:275.164400pt;}
.y70{bottom:275.176533pt;}
.y1b{bottom:292.913467pt;}
.y87{bottom:292.925733pt;}
.y6f{bottom:292.937867pt;}
.y4f{bottom:310.674800pt;}
.y1a{bottom:310.677200pt;}
.y86{bottom:310.687067pt;}
.y6e{bottom:310.699200pt;}
.y19{bottom:328.440933pt;}
.y85{bottom:328.448400pt;}
.y9b{bottom:328.453200pt;}
.y6d{bottom:328.460533pt;}
.y84{bottom:346.209733pt;}
.y18{bottom:346.212133pt;}
.y9a{bottom:346.214533pt;}
.y6c{bottom:346.221867pt;}
.y83{bottom:363.971067pt;}
.y17{bottom:363.973467pt;}
.y99{bottom:363.975867pt;}
.y6b{bottom:363.983200pt;}
.y82{bottom:381.732400pt;}
.y16{bottom:381.734800pt;}
.y98{bottom:381.737200pt;}
.y6a{bottom:381.744533pt;}
.yb6{bottom:388.997067pt;}
.y15{bottom:399.496133pt;}
.y97{bottom:399.498533pt;}
.y69{bottom:399.505867pt;}
.y4e{bottom:399.527867pt;}
.yb5{bottom:404.995067pt;}
.y14{bottom:417.259867pt;}
.y68{bottom:417.267200pt;}
.y4d{bottom:417.289200pt;}
.yb4{bottom:420.993067pt;}
.y13{bottom:435.023733pt;}
.y67{bottom:435.028533pt;}
.y4c{bottom:435.050533pt;}
.yb3{bottom:436.991067pt;}
.y11{bottom:452.787467pt;}
.y66{bottom:452.789867pt;}
.y4b{bottom:452.811867pt;}
.yb2{bottom:452.989067pt;}
.y12{bottom:457.671467pt;}
.y65{bottom:470.551200pt;}
.y10{bottom:470.553733pt;}
.y4a{bottom:470.573200pt;}
.yf{bottom:488.315067pt;}
.y64{bottom:488.329733pt;}
.y49{bottom:488.334533pt;}
.ye{bottom:506.078800pt;}
.y63{bottom:506.091067pt;}
.y48{bottom:506.095867pt;}
.yd{bottom:523.842533pt;}
.y62{bottom:523.852400pt;}
.y47{bottom:523.857200pt;}
.yb1{bottom:523.878400pt;}
.y46{bottom:541.618533pt;}
.yb0{bottom:541.637067pt;}
.yc{bottom:559.370133pt;}
.y61{bottom:559.375067pt;}
.y45{bottom:559.379867pt;}
.yaf{bottom:559.395733pt;}
.y60{bottom:577.136400pt;}
.y44{bottom:577.141200pt;}
.y96{bottom:577.143733pt;}
.yae{bottom:577.154400pt;}
.y5f{bottom:594.897733pt;}
.y43{bottom:594.902533pt;}
.y95{bottom:594.905067pt;}
.yad{bottom:594.913067pt;}
.y5e{bottom:612.661467pt;}
.y42{bottom:612.663867pt;}
.yac{bottom:612.671733pt;}
.y41{bottom:630.425200pt;}
.y94{bottom:630.427733pt;}
.yab{bottom:630.430400pt;}
.y5d{bottom:630.435067pt;}
.y81{bottom:630.459467pt;}
.yb{bottom:643.590400pt;}
.y93{bottom:648.189067pt;}
.y5c{bottom:648.196400pt;}
.y40{bottom:648.203733pt;}
.y80{bottom:648.220800pt;}
.ya{bottom:659.590400pt;}
.y92{bottom:665.952800pt;}
.y5b{bottom:665.957733pt;}
.y3f{bottom:665.965067pt;}
.y7f{bottom:665.982133pt;}
.y33{bottom:683.719067pt;}
.y91{bottom:683.721467pt;}
.yaa{bottom:683.726800pt;}
.y7e{bottom:683.743467pt;}
.y32{bottom:701.480400pt;}
.y90{bottom:701.482800pt;}
.ya9{bottom:701.485467pt;}
.y3e{bottom:701.487733pt;}
.y7d{bottom:701.504800pt;}
.y9{bottom:713.385733pt;}
.y31{bottom:719.244133pt;}
.y3d{bottom:719.249067pt;}
.y7c{bottom:719.266133pt;}
.ya8{bottom:719.290133pt;}
.y8{bottom:729.385733pt;}
.y30{bottom:737.008000pt;}
.y3c{bottom:737.010400pt;}
.y7b{bottom:737.027467pt;}
.ya7{bottom:737.048800pt;}
.y7{bottom:745.385733pt;}
.y2e{bottom:754.771733pt;}
.y8f{bottom:754.774133pt;}
.y7a{bottom:754.788800pt;}
.ya6{bottom:754.807467pt;}
.y2f{bottom:759.655733pt;}
.y6{bottom:761.385733pt;}
.y3b{bottom:772.535467pt;}
.y2d{bottom:772.540400pt;}
.y79{bottom:772.550133pt;}
.ya5{bottom:772.566133pt;}
.y3a{bottom:790.299200pt;}
.y2c{bottom:790.301733pt;}
.y78{bottom:790.311467pt;}
.ya4{bottom:790.324800pt;}
.y2b{bottom:808.063067pt;}
.y8e{bottom:808.065467pt;}
.y77{bottom:808.072800pt;}
.y39{bottom:808.077733pt;}
.ya3{bottom:808.083467pt;}
.y5{bottom:822.740133pt;}
.y5a{bottom:825.826800pt;}
.y76{bottom:825.834133pt;}
.y38{bottom:825.839067pt;}
.ya2{bottom:825.842133pt;}
.y2a{bottom:843.590533pt;}
.y37{bottom:843.600400pt;}
.ya1{bottom:843.600800pt;}
.y59{bottom:861.354400pt;}
.y75{bottom:861.356800pt;}
.ya0{bottom:861.359467pt;}
.y36{bottom:861.361733pt;}
.y4{bottom:861.401200pt;}
.y74{bottom:879.118133pt;}
.y35{bottom:879.123067pt;}
.y3{bottom:886.742533pt;}
.y29{bottom:896.881867pt;}
.y58{bottom:896.884400pt;}
.y2{bottom:912.083867pt;}
.y28{bottom:914.645733pt;}
.y9f{bottom:919.363867pt;}
.y1{bottom:961.978533pt;}
.h9{height:30.850805pt;}
.hf{height:40.734375pt;}
.h2{height:45.216000pt;}
.h6{height:45.701333pt;}
.hc{height:46.309333pt;}
.ha{height:48.106667pt;}
.h5{height:49.386667pt;}
.he{height:52.682667pt;}
.h8{height:52.917333pt;}
.hb{height:53.621333pt;}
.hd{height:55.264000pt;}
.h7{height:59.264000pt;}
.h4{height:65.312000pt;}
.h3{height:83.957333pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xb{left:60.541067pt;}
.x10{left:62.523200pt;}
.x6{left:64.252000pt;}
.x14{left:68.102667pt;}
.xe{left:70.158267pt;}
.x1{left:71.811067pt;}
.x11{left:81.029600pt;}
.xf{left:82.621600pt;}
.x12{left:83.599200pt;}
.x4{left:89.889467pt;}
.x5{left:90.975867pt;}
.x2{left:234.007867pt;}
.xc{left:235.114667pt;}
.x3{left:238.100267pt;}
.x7{left:608.863467pt;}
.x8{left:616.559733pt;}
.x15{left:636.194533pt;}
.x9{left:638.002000pt;}
.x13{left:640.262400pt;}
.xd{left:643.202533pt;}
.xa{left:645.786400pt;}
}




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