
    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_c7e351e3d4b9dc9bb621f04a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_b4fbf6ba126c35df19137973.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_8809b82042f31a1159c6e313.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974000;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_546ddfc4fb861bf820672d0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_016a3e5dc267128cd974e16e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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;}
.m2{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);}
.m12{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);}
.mb{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m10{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);}
.ma{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);}
.m8{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);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m17{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);}
.m15{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);}
.m3{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);}
.m9{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);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m16{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);}
.m18{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.mc{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);}
.m6{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m4{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m11{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.me{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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws1d{word-spacing:-13.449600px;}
.ws1c{word-spacing:-1.936742px;}
.ws1e{word-spacing:-1.613952px;}
.ws4{word-spacing:-1.482439px;}
.ws1f{word-spacing:-1.344960px;}
.ws20{word-spacing:-0.914573px;}
.ws13{word-spacing:-0.376589px;}
.wsf{word-spacing:-0.268992px;}
.ws8{word-spacing:-0.215194px;}
.ws6{word-spacing:-0.161395px;}
.ws18{word-spacing:-0.107597px;}
.ws9{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws26{word-spacing:0.041843px;}
.wsb{word-spacing:0.053798px;}
.wsa{word-spacing:0.107597px;}
.ws25{word-spacing:0.209214px;}
.wsc{word-spacing:0.215194px;}
.ws15{word-spacing:0.268992px;}
.ws16{word-spacing:0.376589px;}
.ws23{word-spacing:0.585799px;}
.ws11{word-spacing:0.699379px;}
.ws10{word-spacing:0.860774px;}
.ws17{word-spacing:1.183565px;}
.ws1a{word-spacing:1.452557px;}
.wse{word-spacing:2.905114px;}
.ws19{word-spacing:3.712090px;}
.ws14{word-spacing:3.765888px;}
.ws7{word-spacing:4.034880px;}
.ws1b{word-spacing:4.895654px;}
.ws28{word-spacing:10.293329px;}
.ws21{word-spacing:10.418857px;}
.ws27{word-spacing:10.460700px;}
.ws24{word-spacing:11.004656px;}
.ws3{word-spacing:11.907329px;}
.ws0{word-spacing:13.378958px;}
.ws2{word-spacing:13.383351px;}
.ws5{word-spacing:13.395802px;}
.wsd{word-spacing:53.744602px;}
.ws12{word-spacing:2246.464090px;}
._c{margin-left:-6.025421px;}
._1{margin-left:-4.123640px;}
._7{margin-left:-2.905114px;}
._3{margin-left:-1.898183px;}
._6{width:1.375439px;}
._2{width:3.600003px;}
._b{width:12.665944px;}
._8{width:15.332544px;}
._0{width:16.363650px;}
._f{width:17.792500px;}
._4{width:20.849782px;}
._a{width:23.910300px;}
._e{width:31.988668px;}
._5{width:53.798400px;}
._9{width:1744.359322px;}
._d{width:1745.596685px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y22{bottom:209.380500px;}
.y36{bottom:211.833000px;}
.y57{bottom:222.520500px;}
.y21{bottom:224.325000px;}
.y35{bottom:232.381500px;}
.y20{bottom:239.269500px;}
.y56{bottom:243.067500px;}
.y34{bottom:252.930000px;}
.y55{bottom:263.616000px;}
.y1f{bottom:270.651000px;}
.y33{bottom:278.614500px;}
.y54{bottom:284.164500px;}
.y1e{bottom:302.155500px;}
.y53{bottom:304.711500px;}
.y32{bottom:321.087000px;}
.y1d{bottom:322.702500px;}
.y52{bottom:325.260000px;}
.y31{bottom:341.635500px;}
.y1c{bottom:343.251000px;}
.y51{bottom:345.807000px;}
.y30{bottom:362.182500px;}
.y1b{bottom:363.798000px;}
.y73{bottom:365.955000px;}
.y50{bottom:371.493000px;}
.y72{bottom:380.899500px;}
.y2f{bottom:382.731000px;}
.y1a{bottom:384.346500px;}
.y71{bottom:395.844000px;}
.y2e{bottom:403.279500px;}
.y19{bottom:404.895000px;}
.y70{bottom:410.787000px;}
.y2d{bottom:423.826500px;}
.y6f{bottom:425.731500px;}
.y18{bottom:430.579500px;}
.y4f{bottom:435.337500px;}
.y6e{bottom:440.674500px;}
.y2c{bottom:449.512500px;}
.y6d{bottom:455.619000px;}
.y4e{bottom:455.886000px;}
.y17{bottom:468.147000px;}
.y6c{bottom:470.563500px;}
.y4d{bottom:476.434500px;}
.y6b{bottom:485.506500px;}
.y16{bottom:488.695500px;}
.y2b{bottom:491.985000px;}
.y4c{bottom:496.981500px;}
.y6a{bottom:500.451000px;}
.y15{bottom:509.244000px;}
.y2a{bottom:512.532000px;}
.y69{bottom:515.395500px;}
.y4b{bottom:517.530000px;}
.y68{bottom:530.338500px;}
.y29{bottom:533.080500px;}
.y14{bottom:534.928500px;}
.y4a{bottom:543.214500px;}
.y67{bottom:545.283000px;}
.y28{bottom:553.629000px;}
.y66{bottom:560.227500px;}
.y13{bottom:572.496000px;}
.y27{bottom:574.176000px;}
.y65{bottom:575.170500px;}
.y64{bottom:590.115000px;}
.y12{bottom:593.044500px;}
.y26{bottom:594.724500px;}
.y63{bottom:605.058000px;}
.y49{bottom:607.060500px;}
.y11{bottom:613.591500px;}
.y62{bottom:620.002500px;}
.y25{bottom:620.409000px;}
.y48{bottom:627.607500px;}
.y10{bottom:634.140000px;}
.y61{bottom:640.083000px;}
.y47{bottom:648.156000px;}
.yf{bottom:654.688500px;}
.y46{bottom:668.704500px;}
.ye{bottom:675.235500px;}
.y60{bottom:676.042500px;}
.y24{bottom:688.308000px;}
.y45{bottom:689.251500px;}
.yd{bottom:695.784000px;}
.y5f{bottom:696.591000px;}
.y44{bottom:709.800000px;}
.yc{bottom:716.331000px;}
.y5e{bottom:717.138000px;}
.y43{bottom:730.348500px;}
.yb{bottom:736.879500px;}
.y5d{bottom:737.686500px;}
.y42{bottom:750.895500px;}
.ya{bottom:757.428000px;}
.y5c{bottom:758.235000px;}
.y41{bottom:771.444000px;}
.y9{bottom:777.975000px;}
.y5b{bottom:783.919500px;}
.y40{bottom:797.128500px;}
.y8{bottom:798.523500px;}
.y5a{bottom:819.877500px;}
.y7{bottom:824.208000px;}
.y59{bottom:840.426000px;}
.y3f{bottom:860.974500px;}
.y6{bottom:866.883000px;}
.y3e{bottom:881.521500px;}
.y5{bottom:885.562500px;}
.y3d{bottom:902.070000px;}
.y4{bottom:915.306000px;}
.y3c{bottom:922.618500px;}
.y58{bottom:927.754500px;}
.y3b{bottom:943.165500px;}
.y3{bottom:958.591500px;}
.y3a{bottom:963.714000px;}
.y2{bottom:982.875000px;}
.y39{bottom:984.261000px;}
.y38{bottom:1004.809500px;}
.y37{bottom:1030.494000px;}
.y1{bottom:1033.002000px;}
.y23{bottom:1071.291000px;}
.h9{height:29.289960px;}
.h7{height:30.796301px;}
.h4{height:33.474420px;}
.h8{height:33.856985px;}
.h3{height:35.195962px;}
.h5{height:37.820275px;}
.h6{height:39.595622px;}
.h2{height:46.341857px;}
.h1{height:50.427034px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:110.161500px;}
.x2{left:125.104500px;}
.x3{left:160.306500px;}
.x9{left:165.241500px;}
.x4{left:166.560000px;}
.x1a{left:170.106000px;}
.x19{left:180.186000px;}
.x1b{left:188.395500px;}
.xb{left:207.352500px;}
.xc{left:213.606000px;}
.x17{left:284.196000px;}
.x18{left:290.449500px;}
.xa{left:322.074000px;}
.x11{left:382.200000px;}
.x12{left:388.453500px;}
.x5{left:447.543000px;}
.x6{left:453.796500px;}
.x7{left:460.263000px;}
.x8{left:472.771500px;}
.x13{left:515.818500px;}
.x14{left:522.073500px;}
.x1c{left:564.531000px;}
.x1d{left:569.452500px;}
.xd{left:752.010000px;}
.xe{left:758.265000px;}
.xf{left:764.931000px;}
.x15{left:766.735500px;}
.x16{left:772.989000px;}
.x10{left:777.439500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1d{word-spacing:-11.955200pt;}
.ws1c{word-spacing:-1.721549pt;}
.ws1e{word-spacing:-1.434624pt;}
.ws4{word-spacing:-1.317723pt;}
.ws1f{word-spacing:-1.195520pt;}
.ws20{word-spacing:-0.812954pt;}
.ws13{word-spacing:-0.334746pt;}
.wsf{word-spacing:-0.239104pt;}
.ws8{word-spacing:-0.191283pt;}
.ws6{word-spacing:-0.143462pt;}
.ws18{word-spacing:-0.095642pt;}
.ws9{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws26{word-spacing:0.037194pt;}
.wsb{word-spacing:0.047821pt;}
.wsa{word-spacing:0.095642pt;}
.ws25{word-spacing:0.185968pt;}
.wsc{word-spacing:0.191283pt;}
.ws15{word-spacing:0.239104pt;}
.ws16{word-spacing:0.334746pt;}
.ws23{word-spacing:0.520710pt;}
.ws11{word-spacing:0.621670pt;}
.ws10{word-spacing:0.765133pt;}
.ws17{word-spacing:1.052058pt;}
.ws1a{word-spacing:1.291162pt;}
.wse{word-spacing:2.582323pt;}
.ws19{word-spacing:3.299635pt;}
.ws14{word-spacing:3.347456pt;}
.ws7{word-spacing:3.586560pt;}
.ws1b{word-spacing:4.351693pt;}
.ws28{word-spacing:9.149626pt;}
.ws21{word-spacing:9.261206pt;}
.ws27{word-spacing:9.298400pt;}
.ws24{word-spacing:9.781917pt;}
.ws3{word-spacing:10.584293pt;}
.ws0{word-spacing:11.892407pt;}
.ws2{word-spacing:11.896312pt;}
.ws5{word-spacing:11.907379pt;}
.wsd{word-spacing:47.772979pt;}
.ws12{word-spacing:1996.856969pt;}
._c{margin-left:-5.355930pt;}
._1{margin-left:-3.665458pt;}
._7{margin-left:-2.582323pt;}
._3{margin-left:-1.687274pt;}
._6{width:1.222612pt;}
._2{width:3.200003pt;}
._b{width:11.258617pt;}
._8{width:13.628928pt;}
._0{width:14.545467pt;}
._f{width:15.815555pt;}
._4{width:18.533139pt;}
._a{width:21.253600pt;}
._e{width:28.434372pt;}
._5{width:47.820800pt;}
._9{width:1550.541619pt;}
._d{width:1551.641498pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:186.116000pt;}
.y36{bottom:188.296000pt;}
.y57{bottom:197.796000pt;}
.y21{bottom:199.400000pt;}
.y35{bottom:206.561333pt;}
.y20{bottom:212.684000pt;}
.y56{bottom:216.060000pt;}
.y34{bottom:224.826667pt;}
.y55{bottom:234.325333pt;}
.y1f{bottom:240.578667pt;}
.y33{bottom:247.657333pt;}
.y54{bottom:252.590667pt;}
.y1e{bottom:268.582667pt;}
.y53{bottom:270.854667pt;}
.y32{bottom:285.410667pt;}
.y1d{bottom:286.846667pt;}
.y52{bottom:289.120000pt;}
.y31{bottom:303.676000pt;}
.y1c{bottom:305.112000pt;}
.y51{bottom:307.384000pt;}
.y30{bottom:321.940000pt;}
.y1b{bottom:323.376000pt;}
.y73{bottom:325.293333pt;}
.y50{bottom:330.216000pt;}
.y72{bottom:338.577333pt;}
.y2f{bottom:340.205333pt;}
.y1a{bottom:341.641333pt;}
.y71{bottom:351.861333pt;}
.y2e{bottom:358.470667pt;}
.y19{bottom:359.906667pt;}
.y70{bottom:365.144000pt;}
.y2d{bottom:376.734667pt;}
.y6f{bottom:378.428000pt;}
.y18{bottom:382.737333pt;}
.y4f{bottom:386.966667pt;}
.y6e{bottom:391.710667pt;}
.y2c{bottom:399.566667pt;}
.y6d{bottom:404.994667pt;}
.y4e{bottom:405.232000pt;}
.y17{bottom:416.130667pt;}
.y6c{bottom:418.278667pt;}
.y4d{bottom:423.497333pt;}
.y6b{bottom:431.561333pt;}
.y16{bottom:434.396000pt;}
.y2b{bottom:437.320000pt;}
.y4c{bottom:441.761333pt;}
.y6a{bottom:444.845333pt;}
.y15{bottom:452.661333pt;}
.y2a{bottom:455.584000pt;}
.y69{bottom:458.129333pt;}
.y4b{bottom:460.026667pt;}
.y68{bottom:471.412000pt;}
.y29{bottom:473.849333pt;}
.y14{bottom:475.492000pt;}
.y4a{bottom:482.857333pt;}
.y67{bottom:484.696000pt;}
.y28{bottom:492.114667pt;}
.y66{bottom:497.980000pt;}
.y13{bottom:508.885333pt;}
.y27{bottom:510.378667pt;}
.y65{bottom:511.262667pt;}
.y64{bottom:524.546667pt;}
.y12{bottom:527.150667pt;}
.y26{bottom:528.644000pt;}
.y63{bottom:537.829333pt;}
.y49{bottom:539.609333pt;}
.y11{bottom:545.414667pt;}
.y62{bottom:551.113333pt;}
.y25{bottom:551.474667pt;}
.y48{bottom:557.873333pt;}
.y10{bottom:563.680000pt;}
.y61{bottom:568.962667pt;}
.y47{bottom:576.138667pt;}
.yf{bottom:581.945333pt;}
.y46{bottom:594.404000pt;}
.ye{bottom:600.209333pt;}
.y60{bottom:600.926667pt;}
.y24{bottom:611.829333pt;}
.y45{bottom:612.668000pt;}
.yd{bottom:618.474667pt;}
.y5f{bottom:619.192000pt;}
.y44{bottom:630.933333pt;}
.yc{bottom:636.738667pt;}
.y5e{bottom:637.456000pt;}
.y43{bottom:649.198667pt;}
.yb{bottom:655.004000pt;}
.y5d{bottom:655.721333pt;}
.y42{bottom:667.462667pt;}
.ya{bottom:673.269333pt;}
.y5c{bottom:673.986667pt;}
.y41{bottom:685.728000pt;}
.y9{bottom:691.533333pt;}
.y5b{bottom:696.817333pt;}
.y40{bottom:708.558667pt;}
.y8{bottom:709.798667pt;}
.y5a{bottom:728.780000pt;}
.y7{bottom:732.629333pt;}
.y59{bottom:747.045333pt;}
.y3f{bottom:765.310667pt;}
.y6{bottom:770.562667pt;}
.y3e{bottom:783.574667pt;}
.y5{bottom:787.166667pt;}
.y3d{bottom:801.840000pt;}
.y4{bottom:813.605333pt;}
.y3c{bottom:820.105333pt;}
.y58{bottom:824.670667pt;}
.y3b{bottom:838.369333pt;}
.y3{bottom:852.081333pt;}
.y3a{bottom:856.634667pt;}
.y2{bottom:873.666667pt;}
.y39{bottom:874.898667pt;}
.y38{bottom:893.164000pt;}
.y37{bottom:915.994667pt;}
.y1{bottom:918.224000pt;}
.y23{bottom:952.258667pt;}
.h9{height:26.035520pt;}
.h7{height:27.374490pt;}
.h4{height:29.755040pt;}
.h8{height:30.095098pt;}
.h3{height:31.285299pt;}
.h5{height:33.618022pt;}
.h6{height:35.196109pt;}
.h2{height:41.192762pt;}
.h1{height:44.824030pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:97.921333pt;}
.x2{left:111.204000pt;}
.x3{left:142.494667pt;}
.x9{left:146.881333pt;}
.x4{left:148.053333pt;}
.x1a{left:151.205333pt;}
.x19{left:160.165333pt;}
.x1b{left:167.462667pt;}
.xb{left:184.313333pt;}
.xc{left:189.872000pt;}
.x17{left:252.618667pt;}
.x18{left:258.177333pt;}
.xa{left:286.288000pt;}
.x11{left:339.733333pt;}
.x12{left:345.292000pt;}
.x5{left:397.816000pt;}
.x6{left:403.374667pt;}
.x7{left:409.122667pt;}
.x8{left:420.241333pt;}
.x13{left:458.505333pt;}
.x14{left:464.065333pt;}
.x1c{left:501.805333pt;}
.x1d{left:506.180000pt;}
.xd{left:668.453333pt;}
.xe{left:674.013333pt;}
.xf{left:679.938667pt;}
.x15{left:681.542667pt;}
.x16{left:687.101333pt;}
.x10{left:691.057333pt;}
}




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