
    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_ae6b389658ca82c41017b068.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_a78cd34749b593ff25344e4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_2395c13e440b3102c421a4bb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_504fdc7a669d9210e2231475.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_eb098b6cfad6c542351bb9a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_67ecade7ec483afcaacaef81.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_56b3616f3dd689c71020a3ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859000;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_d12231a6fe37806065d62e81.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.683000;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_2e9c36d70d9f65549b02104d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.664000;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_8f491636fefadfd44fbb2719.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_258e7fdacf2c2555c0a1788f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_770b6a46d7491666c9d4aecc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8825d0bc2afea46e99bcf994.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dc84a87ec3d859a9fe247ab3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5fb2cee23d10bcf0446034c6.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5c11a5d93c04dcca09c9f46d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_56b3616f3dd689c71020a3ee.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.859000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_133cb30e503fbf7865cbafb3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2da43d3d08eec646f2fa9431.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.665000;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;}
.m5{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);}
.m2{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);}
.m3{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.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);}
.m1{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);}
.m6{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);}
.m7{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);}
.md{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);}
.m12{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);}
.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);}
.m13{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);}
.ma{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);}
.mb{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);}
.m11{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);}
.m8{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);}
.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);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m9{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:-22.854000px;}
.v4{vertical-align:-10.134000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.366000px;}
.v3{vertical-align:16.878000px;}
.v2{vertical-align:23.754000px;}
.v6{vertical-align:27.030000px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.001026px;}
.ls29{letter-spacing:0.004332px;}
.ls2a{letter-spacing:0.014525px;}
.ls10{letter-spacing:0.020263px;}
.ls6{letter-spacing:0.589091px;}
.ls1e{letter-spacing:0.654546px;}
.ls11{letter-spacing:1.412105px;}
.ls15{letter-spacing:1.768630px;}
.ls17{letter-spacing:1.778650px;}
.lse{letter-spacing:1.803099px;}
.ls7{letter-spacing:1.832729px;}
.lsf{letter-spacing:2.984915px;}
.ls24{letter-spacing:2.987971px;}
.ls9{letter-spacing:2.990915px;}
.ls14{letter-spacing:2.992795px;}
.ls13{letter-spacing:4.397813px;}
.ls12{letter-spacing:5.976532px;}
.ls16{letter-spacing:7.069097px;}
.ls1b{letter-spacing:7.135599px;}
.ls1f{letter-spacing:10.865464px;}
.ls5{letter-spacing:10.930918px;}
.ls23{letter-spacing:14.530921px;}
.ls22{letter-spacing:16.363650px;}
.ls2c{letter-spacing:18.196379px;}
.ls2b{letter-spacing:21.166059px;}
.ls21{letter-spacing:21.170367px;}
.ls2{letter-spacing:21.419468px;}
.ls8{letter-spacing:21.796382px;}
.ls25{letter-spacing:21.861836px;}
.lsa{letter-spacing:22.450928px;}
.ls1a{letter-spacing:23.040019px;}
.ls1d{letter-spacing:23.105474px;}
.ls20{letter-spacing:23.432747px;}
.lsb{letter-spacing:23.629111px;}
.lsd{letter-spacing:26.574568px;}
.ls19{letter-spacing:29.389115px;}
.ls27{letter-spacing:29.650934px;}
.ls4{letter-spacing:29.847298px;}
.ls28{letter-spacing:29.912752px;}
.ls26{letter-spacing:33.120028px;}
.ls2d{letter-spacing:33.447301px;}
.lsc{letter-spacing:34.036392px;}
.ls3{letter-spacing:35.869121px;}
.ls0{letter-spacing:35.883533px;}
.ls1c{letter-spacing:51.559739px;}
.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;}
}
.ws2b{word-spacing:-65.454600px;}
.ws35{word-spacing:-47.258221px;}
.ws29{word-spacing:-42.637126px;}
.ws32{word-spacing:-33.453846px;}
.ws3e{word-spacing:-32.727300px;}
.wsa{word-spacing:-27.646998px;}
.ws28{word-spacing:-18.183288px;}
.ws2d{word-spacing:-12.960011px;}
.ws3b{word-spacing:-12.567283px;}
.ws1e{word-spacing:-12.501829px;}
.ws17{word-spacing:-11.476915px;}
.ws41{word-spacing:-11.417140px;}
.ws2e{word-spacing:-11.258191px;}
.ws42{word-spacing:-11.192737px;}
.ws33{word-spacing:-11.127282px;}
.ws3a{word-spacing:-11.061827px;}
.ws18{word-spacing:-10.996373px;}
.ws20{word-spacing:-10.931856px;}
.ws15{word-spacing:-10.930918px;}
.ws1f{word-spacing:-10.865464px;}
.ws26{word-spacing:-10.669100px;}
.ws2c{word-spacing:-10.603645px;}
.ws1d{word-spacing:-10.472736px;}
.ws2f{word-spacing:-10.413827px;}
.ws30{word-spacing:-10.348372px;}
.ws1c{word-spacing:-10.341827px;}
.ws12{word-spacing:-10.161852px;}
.ws31{word-spacing:-10.021099px;}
.ws3{word-spacing:-9.982525px;}
.wsf{word-spacing:-9.862974px;}
.ws11{word-spacing:-9.803198px;}
.ws10{word-spacing:-9.743423px;}
.ws46{word-spacing:-9.623872px;}
.ws3d{word-spacing:-9.360008px;}
.ws7{word-spacing:-9.247945px;}
.ws6{word-spacing:-9.194147px;}
.ws44{word-spacing:-9.151644px;}
.ws45{word-spacing:-9.032093px;}
.ws4{word-spacing:-8.978953px;}
.ws9{word-spacing:-8.925155px;}
.ws40{word-spacing:-7.985461px;}
.ws1a{word-spacing:-7.658188px;}
.ws27{word-spacing:-6.152732px;}
.ws39{word-spacing:-5.635641px;}
.ws3f{word-spacing:-5.570186px;}
.ws21{word-spacing:-5.439277px;}
.wse{word-spacing:-5.027128px;}
.ws37{word-spacing:-4.385458px;}
.ws43{word-spacing:-3.927276px;}
.ws1b{word-spacing:-3.534548px;}
.ws14{word-spacing:-3.141821px;}
.ws24{word-spacing:-2.683639px;}
.ws23{word-spacing:-1.832729px;}
.ws38{word-spacing:-0.726546px;}
.ws34{word-spacing:-0.117818px;}
.wsb{word-spacing:0.000000px;}
.ws2a{word-spacing:0.013091px;}
.ws36{word-spacing:0.386182px;}
.ws25{word-spacing:0.975274px;}
.ws22{word-spacing:1.957093px;}
.ws19{word-spacing:1.963638px;}
.wsc{word-spacing:2.683639px;}
.ws13{word-spacing:7.265461px;}
.wsd{word-spacing:11.429123px;}
.ws5{word-spacing:18.614246px;}
.ws8{word-spacing:21.142771px;}
.ws1{word-spacing:23.312640px;}
.ws3c{word-spacing:24.754488px;}
.ws2{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws16{word-spacing:2261.856812px;}
._1d{margin-left:-11.861537px;}
._0{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._8{margin-left:-3.890165px;}
._1{margin-left:-2.668393px;}
._5{margin-left:-1.560154px;}
._6{width:1.560154px;}
._2{width:2.668393px;}
._1c{width:4.706624px;}
._1e{width:6.325983px;}
._7{width:18.399053px;}
._4{width:20.959727px;}
._18{width:22.810471px;}
._9{width:26.659918px;}
._1b{width:27.883660px;}
._d{width:29.866502px;}
._1a{width:31.629817px;}
._b{width:32.777509px;}
._a{width:34.555540px;}
._20{width:35.865360px;}
._19{width:46.743215px;}
._1f{width:49.893992px;}
._17{width:52.485634px;}
._16{width:68.741940px;}
._f{width:1477.056412px;}
._14{width:1523.130160px;}
._13{width:1554.910627px;}
._e{width:1626.668764px;}
._c{width:1643.032231px;}
._10{width:1735.910182px;}
._11{width:1775.632493px;}
._12{width:1846.443614px;}
._15{width:2031.232706px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.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;}
.y42{bottom:160.314000px;}
.y2b{bottom:173.425500px;}
.y41{bottom:190.800000px;}
.y2a{bottom:216.729000px;}
.y5a{bottom:221.286000px;}
.y70{bottom:231.727500px;}
.y40{bottom:233.332500px;}
.y59{bottom:256.608000px;}
.y29{bottom:264.277500px;}
.y6f{bottom:274.911000px;}
.y3f{bottom:277.797000px;}
.y58{bottom:287.094000px;}
.y28{bottom:311.826000px;}
.y6e{bottom:318.094500px;}
.y10{bottom:321.724500px;}
.y3e{bottom:322.261500px;}
.y57{bottom:322.416000px;}
.yf{bottom:349.371000px;}
.y27{bottom:359.374500px;}
.y6d{bottom:361.278000px;}
.y56{bottom:364.068000px;}
.y3d{bottom:364.794000px;}
.ye{bottom:377.017500px;}
.yd{bottom:401.676000px;}
.y6c{bottom:402.205500px;}
.y55{bottom:405.721500px;}
.y26{bottom:406.923000px;}
.y3c{bottom:408.822000px;}
.yc{bottom:429.321000px;}
.y3b{bottom:452.850000px;}
.y6b{bottom:453.951000px;}
.y25{bottom:454.471500px;}
.yb{bottom:456.967500px;}
.y54{bottom:457.467000px;}
.ya{bottom:481.626000px;}
.y24{bottom:502.020000px;}
.y3a{bottom:504.595500px;}
.y6a{bottom:513.807000px;}
.y53{bottom:517.554000px;}
.y69{bottom:544.293000px;}
.y52{bottom:548.040000px;}
.y23{bottom:549.568500px;}
.y39{bottom:565.054500px;}
.y68{bottom:578.881500px;}
.y51{bottom:588.198000px;}
.y38{bottom:595.540500px;}
.y22{bottom:597.117000px;}
.y67{bottom:609.367500px;}
.y50{bottom:614.638500px;}
.y4f{bottom:618.684000px;}
.y37{bottom:626.026500px;}
.y66{bottom:648.058500px;}
.y4e{bottom:649.170000px;}
.y21{bottom:649.212000px;}
.y9{bottom:665.079000px;}
.y36{bottom:677.772000px;}
.y4d{bottom:689.328000px;}
.y65{bottom:691.242000px;}
.y20{bottom:712.125000px;}
.y8{bottom:717.490500px;}
.y4c{bottom:719.814000px;}
.y64{bottom:734.425500px;}
.y35{bottom:738.231000px;}
.y1f{bottom:742.611000px;}
.y7{bottom:744.390000px;}
.y4b{bottom:762.699000px;}
.y34{bottom:768.717000px;}
.y6{bottom:771.288000px;}
.y63{bottom:773.116500px;}
.y33{bottom:799.203000px;}
.y1e{bottom:799.515000px;}
.y62{bottom:803.602500px;}
.y4a{bottom:806.371500px;}
.y1d{bottom:826.414500px;}
.y32{bottom:849.736500px;}
.y49{bottom:850.044000px;}
.y1c{bottom:853.314000px;}
.y61{bottom:855.348000px;}
.y5{bottom:862.198500px;}
.y1b{bottom:880.212000px;}
.y75{bottom:882.814500px;}
.y4{bottom:893.580000px;}
.y48{bottom:893.716500px;}
.y31{bottom:894.201000px;}
.y1a{bottom:907.111500px;}
.y74{bottom:909.714000px;}
.y60{bottom:915.204000px;}
.y19{bottom:934.011000px;}
.y47{bottom:936.601500px;}
.y73{bottom:936.613500px;}
.y30{bottom:938.665500px;}
.y5f{bottom:945.688500px;}
.y3{bottom:959.440500px;}
.y18{bottom:960.910500px;}
.y72{bottom:963.513000px;}
.y46{bottom:967.087500px;}
.y5e{bottom:980.277000px;}
.y2f{bottom:981.198000px;}
.y17{bottom:999.615000px;}
.y2{bottom:999.790500px;}
.y2e{bottom:1011.684000px;}
.y45{bottom:1018.833000px;}
.y5d{bottom:1018.968000px;}
.y16{bottom:1026.864000px;}
.y15{bottom:1032.286500px;}
.y1{bottom:1040.139000px;}
.y5c{bottom:1049.454000px;}
.y71{bottom:1057.659000px;}
.y13{bottom:1059.342000px;}
.y2d{bottom:1063.429500px;}
.y14{bottom:1065.280500px;}
.y44{bottom:1078.920000px;}
.y5b{bottom:1088.145000px;}
.y12{bottom:1108.509000px;}
.y43{bottom:1109.404500px;}
.y11{bottom:1139.890500px;}
.y2c{bottom:1192.194000px;}
.hc{height:16.677504px;}
.h9{height:27.783619px;}
.h8{height:32.661470px;}
.h6{height:37.927872px;}
.hb{height:41.842920px;}
.ha{height:42.799330px;}
.h5{height:44.831700px;}
.h12{height:46.865494px;}
.h7{height:49.090950px;}
.h4{height:50.211840px;}
.h3{height:53.798400px;}
.he{height:55.554699px;}
.hd{height:56.415470px;}
.h10{height:59.619450px;}
.h13{height:59.691470px;}
.h2{height:60.254040px;}
.hf{height:64.482624px;}
.h11{height:65.272950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x15{left:108.000000px;}
.x1a{left:110.739000px;}
.x19{left:114.363000px;}
.x2d{left:119.172000px;}
.x18{left:120.273000px;}
.xb{left:125.932500px;}
.x1e{left:130.416000px;}
.x17{left:132.999000px;}
.x1{left:136.158000px;}
.x1c{left:150.178500px;}
.x14{left:158.809500px;}
.x32{left:160.057500px;}
.x13{left:173.754000px;}
.xc{left:185.485500px;}
.x2e{left:210.624000px;}
.x10{left:214.422000px;}
.x11{left:221.125500px;}
.x2{left:226.545000px;}
.x20{left:230.302500px;}
.x2f{left:234.273000px;}
.x44{left:238.168500px;}
.x45{left:248.226000px;}
.x1f{left:265.555500px;}
.x22{left:272.488500px;}
.x4{left:274.819500px;}
.x1d{left:279.597000px;}
.xd{left:286.575000px;}
.x3b{left:300.856500px;}
.x3{left:308.932500px;}
.x23{left:311.286000px;}
.x7{left:329.793000px;}
.x46{left:331.722000px;}
.x3a{left:348.577500px;}
.x5{left:349.917000px;}
.x33{left:363.000000px;}
.x12{left:364.890000px;}
.x24{left:365.952000px;}
.x34{left:369.415500px;}
.x6{left:381.384000px;}
.xe{left:382.602000px;}
.x35{left:388.659000px;}
.x8{left:392.640000px;}
.x9{left:405.966000px;}
.x16{left:409.203000px;}
.x36{left:416.994000px;}
.x21{left:421.719000px;}
.x37{left:450.175500px;}
.x38{left:456.591000px;}
.x39{left:469.668000px;}
.x40{left:478.819500px;}
.x41{left:497.328000px;}
.x29{left:510.240000px;}
.xf{left:511.759500px;}
.x2a{left:564.906000px;}
.x3c{left:601.614000px;}
.x3d{left:615.579000px;}
.x30{left:639.747000px;}
.x42{left:654.499500px;}
.x43{left:679.395000px;}
.x31{left:700.579500px;}
.x25{left:726.804000px;}
.x47{left:737.626500px;}
.x3e{left:743.155500px;}
.x48{left:745.807500px;}
.x49{left:754.104000px;}
.x26{left:759.985500px;}
.x4a{left:762.286500px;}
.x27{left:766.477500px;}
.x2b{left:770.640000px;}
.x28{left:779.554500px;}
.x3f{left:785.209500px;}
.x2c{left:794.433000px;}
.x1b{left:799.195500px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v4{vertical-align:-9.008000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.658667pt;}
.v3{vertical-align:15.002667pt;}
.v2{vertical-align:21.114667pt;}
.v6{vertical-align:24.026667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000912pt;}
.ls29{letter-spacing:0.003851pt;}
.ls2a{letter-spacing:0.012911pt;}
.ls10{letter-spacing:0.018011pt;}
.ls6{letter-spacing:0.523637pt;}
.ls1e{letter-spacing:0.581819pt;}
.ls11{letter-spacing:1.255204pt;}
.ls15{letter-spacing:1.572116pt;}
.ls17{letter-spacing:1.581022pt;}
.lse{letter-spacing:1.602755pt;}
.ls7{letter-spacing:1.629092pt;}
.lsf{letter-spacing:2.653258pt;}
.ls24{letter-spacing:2.655975pt;}
.ls9{letter-spacing:2.658591pt;}
.ls14{letter-spacing:2.660263pt;}
.ls13{letter-spacing:3.909167pt;}
.ls12{letter-spacing:5.312473pt;}
.ls16{letter-spacing:6.283642pt;}
.ls1b{letter-spacing:6.342755pt;}
.ls1f{letter-spacing:9.658190pt;}
.ls5{letter-spacing:9.716372pt;}
.ls23{letter-spacing:12.916374pt;}
.ls22{letter-spacing:14.545467pt;}
.ls2c{letter-spacing:16.174559pt;}
.ls2b{letter-spacing:18.814275pt;}
.ls21{letter-spacing:18.818104pt;}
.ls2{letter-spacing:19.039527pt;}
.ls8{letter-spacing:19.374562pt;}
.ls25{letter-spacing:19.432743pt;}
.lsa{letter-spacing:19.956380pt;}
.ls1a{letter-spacing:20.480017pt;}
.ls1d{letter-spacing:20.538199pt;}
.ls20{letter-spacing:20.829108pt;}
.lsb{letter-spacing:21.003654pt;}
.lsd{letter-spacing:23.621838pt;}
.ls19{letter-spacing:26.123658pt;}
.ls27{letter-spacing:26.356386pt;}
.ls4{letter-spacing:26.530931pt;}
.ls28{letter-spacing:26.589113pt;}
.ls26{letter-spacing:29.440025pt;}
.ls2d{letter-spacing:29.730934pt;}
.lsc{letter-spacing:30.254571pt;}
.ls3{letter-spacing:31.883663pt;}
.ls0{letter-spacing:31.896474pt;}
.ls1c{letter-spacing:45.830879pt;}
.ws2b{word-spacing:-58.181867pt;}
.ws35{word-spacing:-42.007308pt;}
.ws29{word-spacing:-37.899668pt;}
.ws32{word-spacing:-29.736752pt;}
.ws3e{word-spacing:-29.090933pt;}
.wsa{word-spacing:-24.575109pt;}
.ws28{word-spacing:-16.162923pt;}
.ws2d{word-spacing:-11.520010pt;}
.ws3b{word-spacing:-11.170918pt;}
.ws1e{word-spacing:-11.112737pt;}
.ws17{word-spacing:-10.201702pt;}
.ws41{word-spacing:-10.148569pt;}
.ws2e{word-spacing:-10.007281pt;}
.ws42{word-spacing:-9.949099pt;}
.ws33{word-spacing:-9.890917pt;}
.ws3a{word-spacing:-9.832735pt;}
.ws18{word-spacing:-9.774554pt;}
.ws20{word-spacing:-9.717205pt;}
.ws15{word-spacing:-9.716372pt;}
.ws1f{word-spacing:-9.658190pt;}
.ws26{word-spacing:-9.483644pt;}
.ws2c{word-spacing:-9.425462pt;}
.ws1d{word-spacing:-9.309099pt;}
.ws2f{word-spacing:-9.256735pt;}
.ws30{word-spacing:-9.198553pt;}
.ws1c{word-spacing:-9.192735pt;}
.ws12{word-spacing:-9.032757pt;}
.ws31{word-spacing:-8.907644pt;}
.ws3{word-spacing:-8.873356pt;}
.wsf{word-spacing:-8.767088pt;}
.ws11{word-spacing:-8.713954pt;}
.ws10{word-spacing:-8.660820pt;}
.ws46{word-spacing:-8.554553pt;}
.ws3d{word-spacing:-8.320007pt;}
.ws7{word-spacing:-8.220396pt;}
.ws6{word-spacing:-8.172575pt;}
.ws44{word-spacing:-8.134795pt;}
.ws45{word-spacing:-8.028527pt;}
.ws4{word-spacing:-7.981292pt;}
.ws9{word-spacing:-7.933471pt;}
.ws40{word-spacing:-7.098188pt;}
.ws1a{word-spacing:-6.807278pt;}
.ws27{word-spacing:-5.469095pt;}
.ws39{word-spacing:-5.009459pt;}
.ws3f{word-spacing:-4.951277pt;}
.ws21{word-spacing:-4.834913pt;}
.wse{word-spacing:-4.468558pt;}
.ws37{word-spacing:-3.898185pt;}
.ws43{word-spacing:-3.490912pt;}
.ws1b{word-spacing:-3.141821pt;}
.ws14{word-spacing:-2.792730pt;}
.ws24{word-spacing:-2.385457pt;}
.ws23{word-spacing:-1.629092pt;}
.ws38{word-spacing:-0.645819pt;}
.ws34{word-spacing:-0.104727pt;}
.wsb{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.011636pt;}
.ws36{word-spacing:0.343273pt;}
.ws25{word-spacing:0.866910pt;}
.ws22{word-spacing:1.739638pt;}
.ws19{word-spacing:1.745456pt;}
.wsc{word-spacing:2.385457pt;}
.ws13{word-spacing:6.458187pt;}
.wsd{word-spacing:10.159221pt;}
.ws5{word-spacing:16.545997pt;}
.ws8{word-spacing:18.793574pt;}
.ws1{word-spacing:20.722347pt;}
.ws3c{word-spacing:22.003989pt;}
.ws2{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws16{word-spacing:2010.539389pt;}
._1d{margin-left:-10.543589pt;}
._0{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._8{margin-left:-3.457924pt;}
._1{margin-left:-2.371905pt;}
._5{margin-left:-1.386803pt;}
._6{width:1.386803pt;}
._2{width:2.371905pt;}
._1c{width:4.183666pt;}
._1e{width:5.623096pt;}
._7{width:16.354714pt;}
._4{width:18.630868pt;}
._18{width:20.275974pt;}
._9{width:23.697705pt;}
._1b{width:24.785475pt;}
._d{width:26.548002pt;}
._1a{width:28.115393pt;}
._b{width:29.135564pt;}
._a{width:30.716036pt;}
._20{width:31.880320pt;}
._19{width:41.549525pt;}
._1f{width:44.350215pt;}
._17{width:46.653897pt;}
._16{width:61.103947pt;}
._f{width:1312.939033pt;}
._14{width:1353.893476pt;}
._13{width:1382.142779pt;}
._e{width:1445.927790pt;}
._c{width:1460.473094pt;}
._10{width:1543.031273pt;}
._11{width:1578.339994pt;}
._12{width:1641.283212pt;}
._15{width:1805.540183pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.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;}
.y42{bottom:142.501333pt;}
.y2b{bottom:154.156000pt;}
.y41{bottom:169.600000pt;}
.y2a{bottom:192.648000pt;}
.y5a{bottom:196.698667pt;}
.y70{bottom:205.980000pt;}
.y40{bottom:207.406667pt;}
.y59{bottom:228.096000pt;}
.y29{bottom:234.913333pt;}
.y6f{bottom:244.365333pt;}
.y3f{bottom:246.930667pt;}
.y58{bottom:255.194667pt;}
.y28{bottom:277.178667pt;}
.y6e{bottom:282.750667pt;}
.y10{bottom:285.977333pt;}
.y3e{bottom:286.454667pt;}
.y57{bottom:286.592000pt;}
.yf{bottom:310.552000pt;}
.y27{bottom:319.444000pt;}
.y6d{bottom:321.136000pt;}
.y56{bottom:323.616000pt;}
.y3d{bottom:324.261333pt;}
.ye{bottom:335.126667pt;}
.yd{bottom:357.045333pt;}
.y6c{bottom:357.516000pt;}
.y55{bottom:360.641333pt;}
.y26{bottom:361.709333pt;}
.y3c{bottom:363.397333pt;}
.yc{bottom:381.618667pt;}
.y3b{bottom:402.533333pt;}
.y6b{bottom:403.512000pt;}
.y25{bottom:403.974667pt;}
.yb{bottom:406.193333pt;}
.y54{bottom:406.637333pt;}
.ya{bottom:428.112000pt;}
.y24{bottom:446.240000pt;}
.y3a{bottom:448.529333pt;}
.y6a{bottom:456.717333pt;}
.y53{bottom:460.048000pt;}
.y69{bottom:483.816000pt;}
.y52{bottom:487.146667pt;}
.y23{bottom:488.505333pt;}
.y39{bottom:502.270667pt;}
.y68{bottom:514.561333pt;}
.y51{bottom:522.842667pt;}
.y38{bottom:529.369333pt;}
.y22{bottom:530.770667pt;}
.y67{bottom:541.660000pt;}
.y50{bottom:546.345333pt;}
.y4f{bottom:549.941333pt;}
.y37{bottom:556.468000pt;}
.y66{bottom:576.052000pt;}
.y4e{bottom:577.040000pt;}
.y21{bottom:577.077333pt;}
.y9{bottom:591.181333pt;}
.y36{bottom:602.464000pt;}
.y4d{bottom:612.736000pt;}
.y65{bottom:614.437333pt;}
.y20{bottom:633.000000pt;}
.y8{bottom:637.769333pt;}
.y4c{bottom:639.834667pt;}
.y64{bottom:652.822667pt;}
.y35{bottom:656.205333pt;}
.y1f{bottom:660.098667pt;}
.y7{bottom:661.680000pt;}
.y4b{bottom:677.954667pt;}
.y34{bottom:683.304000pt;}
.y6{bottom:685.589333pt;}
.y63{bottom:687.214667pt;}
.y33{bottom:710.402667pt;}
.y1e{bottom:710.680000pt;}
.y62{bottom:714.313333pt;}
.y4a{bottom:716.774667pt;}
.y1d{bottom:734.590667pt;}
.y32{bottom:755.321333pt;}
.y49{bottom:755.594667pt;}
.y1c{bottom:758.501333pt;}
.y61{bottom:760.309333pt;}
.y5{bottom:766.398667pt;}
.y1b{bottom:782.410667pt;}
.y75{bottom:784.724000pt;}
.y4{bottom:794.293333pt;}
.y48{bottom:794.414667pt;}
.y31{bottom:794.845333pt;}
.y1a{bottom:806.321333pt;}
.y74{bottom:808.634667pt;}
.y60{bottom:813.514667pt;}
.y19{bottom:830.232000pt;}
.y47{bottom:832.534667pt;}
.y73{bottom:832.545333pt;}
.y30{bottom:834.369333pt;}
.y5f{bottom:840.612000pt;}
.y3{bottom:852.836000pt;}
.y18{bottom:854.142667pt;}
.y72{bottom:856.456000pt;}
.y46{bottom:859.633333pt;}
.y5e{bottom:871.357333pt;}
.y2f{bottom:872.176000pt;}
.y17{bottom:888.546667pt;}
.y2{bottom:888.702667pt;}
.y2e{bottom:899.274667pt;}
.y45{bottom:905.629333pt;}
.y5d{bottom:905.749333pt;}
.y16{bottom:912.768000pt;}
.y15{bottom:917.588000pt;}
.y1{bottom:924.568000pt;}
.y5c{bottom:932.848000pt;}
.y71{bottom:940.141333pt;}
.y13{bottom:941.637333pt;}
.y2d{bottom:945.270667pt;}
.y14{bottom:946.916000pt;}
.y44{bottom:959.040000pt;}
.y5b{bottom:967.240000pt;}
.y12{bottom:985.341333pt;}
.y43{bottom:986.137333pt;}
.y11{bottom:1013.236000pt;}
.y2c{bottom:1059.728000pt;}
.hc{height:14.824448pt;}
.h9{height:24.696550pt;}
.h8{height:29.032418pt;}
.h6{height:33.713664pt;}
.hb{height:37.193707pt;}
.ha{height:38.043849pt;}
.h5{height:39.850400pt;}
.h12{height:41.658217pt;}
.h7{height:43.636400pt;}
.h4{height:44.632747pt;}
.h3{height:47.820800pt;}
.he{height:49.381955pt;}
.hd{height:50.147084pt;}
.h10{height:52.995067pt;}
.h13{height:53.059084pt;}
.h2{height:53.559147pt;}
.hf{height:57.317888pt;}
.h11{height:58.020400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x15{left:96.000000pt;}
.x1a{left:98.434667pt;}
.x19{left:101.656000pt;}
.x2d{left:105.930667pt;}
.x18{left:106.909333pt;}
.xb{left:111.940000pt;}
.x1e{left:115.925333pt;}
.x17{left:118.221333pt;}
.x1{left:121.029333pt;}
.x1c{left:133.492000pt;}
.x14{left:141.164000pt;}
.x32{left:142.273333pt;}
.x13{left:154.448000pt;}
.xc{left:164.876000pt;}
.x2e{left:187.221333pt;}
.x10{left:190.597333pt;}
.x11{left:196.556000pt;}
.x2{left:201.373333pt;}
.x20{left:204.713333pt;}
.x2f{left:208.242667pt;}
.x44{left:211.705333pt;}
.x45{left:220.645333pt;}
.x1f{left:236.049333pt;}
.x22{left:242.212000pt;}
.x4{left:244.284000pt;}
.x1d{left:248.530667pt;}
.xd{left:254.733333pt;}
.x3b{left:267.428000pt;}
.x3{left:274.606667pt;}
.x23{left:276.698667pt;}
.x7{left:293.149333pt;}
.x46{left:294.864000pt;}
.x3a{left:309.846667pt;}
.x5{left:311.037333pt;}
.x33{left:322.666667pt;}
.x12{left:324.346667pt;}
.x24{left:325.290667pt;}
.x34{left:328.369333pt;}
.x6{left:339.008000pt;}
.xe{left:340.090667pt;}
.x35{left:345.474667pt;}
.x8{left:349.013333pt;}
.x9{left:360.858667pt;}
.x16{left:363.736000pt;}
.x36{left:370.661333pt;}
.x21{left:374.861333pt;}
.x37{left:400.156000pt;}
.x38{left:405.858667pt;}
.x39{left:417.482667pt;}
.x40{left:425.617333pt;}
.x41{left:442.069333pt;}
.x29{left:453.546667pt;}
.xf{left:454.897333pt;}
.x2a{left:502.138667pt;}
.x3c{left:534.768000pt;}
.x3d{left:547.181333pt;}
.x30{left:568.664000pt;}
.x42{left:581.777333pt;}
.x43{left:603.906667pt;}
.x31{left:622.737333pt;}
.x25{left:646.048000pt;}
.x47{left:655.668000pt;}
.x3e{left:660.582667pt;}
.x48{left:662.940000pt;}
.x49{left:670.314667pt;}
.x26{left:675.542667pt;}
.x4a{left:677.588000pt;}
.x27{left:681.313333pt;}
.x2b{left:685.013333pt;}
.x28{left:692.937333pt;}
.x3f{left:697.964000pt;}
.x2c{left:706.162667pt;}
.x1b{left:710.396000pt;}
}




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