
    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_6ffc03aea1edb9643823f48d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_0787bbbb63b6532b9cb0585b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904000;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_993e400a975812eb4ed32026.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ad075fc8a150e4883d5fc684.woff')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_2d9ed92da968de5cfcb50b9c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916000;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_d3d51238ba15f06ec11a8c86.woff')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_8493c539f7e41300e90e87b9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.688000;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_d7f204317516b8b997ed1115.woff')format("woff");}.ff8{font-family:ff8;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;}
.m6{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);}
.m11{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.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.md{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);}
.ma{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.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);}
.m15{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);}
.m9{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);}
.m7{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);}
.m10{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);}
.m16{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);}
.mb{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);}
.mc{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);}
.me{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);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m5{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);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m19{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);}
.m4{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);}
.m1{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);}
.mf{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;}
.v1{vertical-align:21.696000px;}
.v2{vertical-align:22.854000px;}
.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;}
}
.ws31{word-spacing:-14.943900px;}
.ws1e{word-spacing:-13.449600px;}
.ws1d{word-spacing:-8.966400px;}
.ws24{word-spacing:-2.869229px;}
.ws21{word-spacing:-1.972595px;}
.wsb{word-spacing:-1.494390px;}
.ws19{word-spacing:-1.315063px;}
.ws25{word-spacing:-0.956410px;}
.ws2f{word-spacing:-0.896634px;}
.ws32{word-spacing:-0.836858px;}
.ws23{word-spacing:-0.777083px;}
.wsa{word-spacing:-0.597756px;}
.ws7{word-spacing:-0.358654px;}
.ws2e{word-spacing:-0.298878px;}
.ws9{word-spacing:-0.239102px;}
.ws6{word-spacing:-0.179327px;}
.wse{word-spacing:-0.119551px;}
.ws36{word-spacing:-0.071731px;}
.ws11{word-spacing:-0.059776px;}
.ws33{word-spacing:-0.002033px;}
.ws3{word-spacing:0.000000px;}
.ws22{word-spacing:0.059776px;}
.wsf{word-spacing:0.119551px;}
.wsc{word-spacing:0.179327px;}
.ws5{word-spacing:0.239102px;}
.ws34{word-spacing:0.289909px;}
.ws10{word-spacing:0.298878px;}
.wsd{word-spacing:0.358654px;}
.ws27{word-spacing:0.597756px;}
.ws37{word-spacing:1.135736px;}
.ws15{word-spacing:1.315063px;}
.ws2d{word-spacing:1.494390px;}
.ws3a{word-spacing:1.673717px;}
.ws17{word-spacing:1.733492px;}
.ws13{word-spacing:1.853044px;}
.ws2b{word-spacing:2.151922px;}
.ws14{word-spacing:2.331248px;}
.ws2a{word-spacing:2.570351px;}
.ws4{word-spacing:2.749678px;}
.ws29{word-spacing:2.929004px;}
.ws28{word-spacing:2.988780px;}
.ws39{word-spacing:3.168107px;}
.ws16{word-spacing:4.901599px;}
.ws20{word-spacing:5.021150px;}
.ws30{word-spacing:5.678682px;}
.ws1f{word-spacing:5.738458px;}
.ws38{word-spacing:6.569417px;}
.ws3b{word-spacing:6.570875px;}
.ws3e{word-spacing:6.575316px;}
.ws26{word-spacing:6.635092px;}
.ws8{word-spacing:6.874194px;}
.ws3c{word-spacing:7.232848px;}
.ws1a{word-spacing:7.370381px;}
.ws1c{word-spacing:7.470163px;}
.ws3f{word-spacing:14.585246px;}
.ws3d{word-spacing:14.645022px;}
.ws2c{word-spacing:14.858887px;}
.ws2{word-spacing:14.884124px;}
.ws35{word-spacing:15.177222px;}
.ws18{word-spacing:16.677392px;}
.ws12{word-spacing:17.861069px;}
.ws1b{word-spacing:21.709493px;}
.ws1{word-spacing:25.716977px;}
.ws0{word-spacing:25.719808px;}
._4{margin-left:-6.960268px;}
._b{margin-left:-5.944082px;}
._3{margin-left:-3.818988px;}
._0{margin-left:-2.582310px;}
._2{margin-left:-1.032924px;}
._f{width:2.978141px;}
._13{width:13.297010px;}
._d{width:16.225486px;}
._5{width:18.025933px;}
._7{width:19.319478px;}
._14{width:20.801909px;}
._9{width:21.978434px;}
._e{width:24.063269px;}
._a{width:25.225303px;}
._16{width:26.366348px;}
._c{width:27.874416px;}
._15{width:29.887800px;}
._1{width:32.020644px;}
._17{width:33.055907px;}
._12{width:34.150854px;}
._11{width:36.336914px;}
._6{width:39.033467px;}
._18{width:45.032545px;}
._10{width:59.775600px;}
._8{width:71.731200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y5e{bottom:63.168000px;}
.y2f{bottom:78.184500px;}
.y2e{bottom:93.129000px;}
.y5d{bottom:108.000000px;}
.y5c{bottom:124.363500px;}
.y2d{bottom:140.104500px;}
.y5b{bottom:140.727000px;}
.y2c{bottom:155.049000px;}
.y77{bottom:160.108500px;}
.y2b{bottom:160.762500px;}
.y5a{bottom:165.310500px;}
.y59{bottom:181.674000px;}
.y2a{bottom:183.381000px;}
.y58{bottom:198.037500px;}
.y29{bottom:199.744500px;}
.y76{bottom:204.490500px;}
.y28{bottom:216.108000px;}
.y75{bottom:220.854000px;}
.y27{bottom:232.471500px;}
.y57{bottom:233.404500px;}
.y74{bottom:237.217500px;}
.y26{bottom:248.835000px;}
.y73{bottom:253.581000px;}
.y56{bottom:260.161500px;}
.y25{bottom:265.198500px;}
.y72{bottom:278.164500px;}
.y24{bottom:281.562000px;}
.y55{bottom:286.918500px;}
.y71{bottom:294.528000px;}
.y23{bottom:297.925500px;}
.y70{bottom:310.891500px;}
.y54{bottom:313.675500px;}
.y22{bottom:314.289000px;}
.y6f{bottom:327.255000px;}
.y21{bottom:330.652500px;}
.y20{bottom:347.016000px;}
.y53{bottom:349.042500px;}
.y6e{bottom:363.000000px;}
.y52{bottom:365.406000px;}
.y1f{bottom:371.599500px;}
.y51{bottom:381.769500px;}
.y1e{bottom:387.963000px;}
.y1d{bottom:404.326500px;}
.y6d{bottom:407.382000px;}
.y50{bottom:413.719500px;}
.y1c{bottom:420.690000px;}
.y6c{bottom:423.745500px;}
.y1b{bottom:437.053500px;}
.y6b{bottom:447.679500px;}
.y1a{bottom:453.417000px;}
.y4f{bottom:455.374500px;}
.y6a{bottom:471.613500px;}
.y4e{bottom:471.738000px;}
.y4d{bottom:488.101500px;}
.y19{bottom:488.635500px;}
.y69{bottom:504.862500px;}
.y4c{bottom:512.685000px;}
.y8e{bottom:520.872000px;}
.y4b{bottom:529.048500px;}
.y68{bottom:529.446000px;}
.y8d{bottom:537.235500px;}
.y18{bottom:540.220500px;}
.y4a{bottom:545.412000px;}
.y67{bottom:545.809500px;}
.y17{bottom:556.584000px;}
.y49{bottom:561.775500px;}
.y66{bottom:562.173000px;}
.y8c{bottom:565.554000px;}
.y16{bottom:572.949000px;}
.y48{bottom:578.139000px;}
.y65{bottom:578.536500px;}
.y15{bottom:589.312500px;}
.y8b{bottom:593.872500px;}
.y47{bottom:594.502500px;}
.y64{bottom:603.118500px;}
.y14{bottom:605.676000px;}
.y8a{bottom:610.237500px;}
.y46{bottom:610.866000px;}
.y63{bottom:619.482000px;}
.y13{bottom:622.039500px;}
.y45{bottom:627.231000px;}
.y62{bottom:635.847000px;}
.y12{bottom:638.403000px;}
.y89{bottom:638.556000px;}
.y44{bottom:643.594500px;}
.y61{bottom:652.210500px;}
.y11{bottom:654.766500px;}
.y43{bottom:659.958000px;}
.y88{bottom:666.874500px;}
.y10{bottom:671.130000px;}
.y42{bottom:676.321500px;}
.yf{bottom:687.493500px;}
.y60{bottom:687.955500px;}
.y87{bottom:695.193000px;}
.ye{bottom:703.857000px;}
.y41{bottom:708.271500px;}
.y86{bottom:711.556500px;}
.yd{bottom:720.220500px;}
.yc{bottom:736.584000px;}
.y5f{bottom:737.614500px;}
.y85{bottom:739.875000px;}
.y40{bottom:749.926500px;}
.yb{bottom:752.947500px;}
.y84{bottom:756.238500px;}
.y3f{bottom:766.290000px;}
.ya{bottom:769.312500px;}
.y3e{bottom:782.653500px;}
.y83{bottom:784.558500px;}
.y3d{bottom:799.017000px;}
.y82{bottom:800.922000px;}
.y9{bottom:805.338000px;}
.y3c{bottom:815.380500px;}
.y81{bottom:829.240500px;}
.y3b{bottom:839.964000px;}
.y80{bottom:845.604000px;}
.y3a{bottom:856.327500px;}
.y8{bottom:867.111000px;}
.y39{bottom:872.691000px;}
.y7f{bottom:873.922500px;}
.y7{bottom:883.474500px;}
.y38{bottom:889.054500px;}
.y7e{bottom:890.286000px;}
.y6{bottom:899.838000px;}
.y37{bottom:905.418000px;}
.y5{bottom:916.201500px;}
.y7d{bottom:918.606000px;}
.y36{bottom:930.001500px;}
.y4{bottom:932.565000px;}
.y35{bottom:946.365000px;}
.y7c{bottom:946.924500px;}
.y34{bottom:962.728500px;}
.y7b{bottom:963.288000px;}
.y33{bottom:979.092000px;}
.y3{bottom:983.412000px;}
.y7a{bottom:989.739000px;}
.y32{bottom:995.455500px;}
.y2{bottom:1013.299500px;}
.y31{bottom:1027.405500px;}
.y79{bottom:1032.328500px;}
.y1{bottom:1043.188500px;}
.y78{bottom:1048.692000px;}
.y30{bottom:1065.055500px;}
.h8{height:16.677504px;}
.h9{height:37.013299px;}
.h7{height:39.810550px;}
.h4{height:41.125613px;}
.h3{height:41.364715px;}
.h5{height:41.544042px;}
.ha{height:47.529533px;}
.h6{height:49.637990px;}
.h1{height:71.478341px;}
.h2{height:72.201388px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:159.519000px;}
.xb{left:162.000000px;}
.x16{left:176.944500px;}
.xe{left:179.733000px;}
.x14{left:184.207500px;}
.xf{left:186.210000px;}
.x3{left:199.402500px;}
.x11{left:203.095500px;}
.x15{left:211.485000px;}
.x7{left:213.510000px;}
.xa{left:215.335500px;}
.x2{left:218.626500px;}
.x1{left:226.981500px;}
.x5{left:231.144000px;}
.xc{left:286.405500px;}
.x13{left:301.723500px;}
.x6{left:310.503000px;}
.xd{left:316.293000px;}
.x8{left:388.407000px;}
.x4{left:402.198000px;}
.x9{left:425.637000px;}
.x12{left:455.263500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v2{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws31{word-spacing:-13.283467pt;}
.ws1e{word-spacing:-11.955200pt;}
.ws1d{word-spacing:-7.970133pt;}
.ws24{word-spacing:-2.550426pt;}
.ws21{word-spacing:-1.753418pt;}
.wsb{word-spacing:-1.328347pt;}
.ws19{word-spacing:-1.168945pt;}
.ws25{word-spacing:-0.850142pt;}
.ws2f{word-spacing:-0.797008pt;}
.ws32{word-spacing:-0.743874pt;}
.ws23{word-spacing:-0.690740pt;}
.wsa{word-spacing:-0.531339pt;}
.ws7{word-spacing:-0.318803pt;}
.ws2e{word-spacing:-0.265669pt;}
.ws9{word-spacing:-0.212535pt;}
.ws6{word-spacing:-0.159402pt;}
.wse{word-spacing:-0.106268pt;}
.ws36{word-spacing:-0.063761pt;}
.ws11{word-spacing:-0.053134pt;}
.ws33{word-spacing:-0.001807pt;}
.ws3{word-spacing:0.000000pt;}
.ws22{word-spacing:0.053134pt;}
.wsf{word-spacing:0.106268pt;}
.wsc{word-spacing:0.159402pt;}
.ws5{word-spacing:0.212535pt;}
.ws34{word-spacing:0.257697pt;}
.ws10{word-spacing:0.265669pt;}
.wsd{word-spacing:0.318803pt;}
.ws27{word-spacing:0.531339pt;}
.ws37{word-spacing:1.009543pt;}
.ws15{word-spacing:1.168945pt;}
.ws2d{word-spacing:1.328347pt;}
.ws3a{word-spacing:1.487748pt;}
.ws17{word-spacing:1.540882pt;}
.ws13{word-spacing:1.647150pt;}
.ws2b{word-spacing:1.912819pt;}
.ws14{word-spacing:2.072221pt;}
.ws2a{word-spacing:2.284756pt;}
.ws4{word-spacing:2.444158pt;}
.ws29{word-spacing:2.603559pt;}
.ws28{word-spacing:2.656693pt;}
.ws39{word-spacing:2.816095pt;}
.ws16{word-spacing:4.356977pt;}
.ws20{word-spacing:4.463245pt;}
.ws30{word-spacing:5.047717pt;}
.ws1f{word-spacing:5.100851pt;}
.ws38{word-spacing:5.839482pt;}
.ws3b{word-spacing:5.840778pt;}
.ws3e{word-spacing:5.844725pt;}
.ws26{word-spacing:5.897859pt;}
.ws8{word-spacing:6.110395pt;}
.ws3c{word-spacing:6.429198pt;}
.ws1a{word-spacing:6.551450pt;}
.ws1c{word-spacing:6.640145pt;}
.ws3f{word-spacing:12.964663pt;}
.ws3d{word-spacing:13.017797pt;}
.ws2c{word-spacing:13.207899pt;}
.ws2{word-spacing:13.230333pt;}
.ws35{word-spacing:13.490864pt;}
.ws18{word-spacing:14.824349pt;}
.ws12{word-spacing:15.876506pt;}
.ws1b{word-spacing:19.297328pt;}
.ws1{word-spacing:22.859535pt;}
.ws0{word-spacing:22.862051pt;}
._4{margin-left:-6.186905pt;}
._b{margin-left:-5.283629pt;}
._3{margin-left:-3.394656pt;}
._0{margin-left:-2.295387pt;}
._2{margin-left:-0.918155pt;}
._f{width:2.647236pt;}
._13{width:11.819565pt;}
._d{width:14.422654pt;}
._5{width:16.023052pt;}
._7{width:17.172869pt;}
._14{width:18.490586pt;}
._9{width:19.536386pt;}
._e{width:21.389572pt;}
._a{width:22.422492pt;}
._16{width:23.436754pt;}
._c{width:24.777259pt;}
._15{width:26.566933pt;}
._1{width:28.462795pt;}
._17{width:29.383028pt;}
._12{width:30.356315pt;}
._11{width:32.299479pt;}
._6{width:34.696415pt;}
._18{width:40.028929pt;}
._10{width:53.133867pt;}
._8{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:56.149333pt;}
.y2f{bottom:69.497333pt;}
.y2e{bottom:82.781333pt;}
.y5d{bottom:96.000000pt;}
.y5c{bottom:110.545333pt;}
.y2d{bottom:124.537333pt;}
.y5b{bottom:125.090667pt;}
.y2c{bottom:137.821333pt;}
.y77{bottom:142.318667pt;}
.y2b{bottom:142.900000pt;}
.y5a{bottom:146.942667pt;}
.y59{bottom:161.488000pt;}
.y2a{bottom:163.005333pt;}
.y58{bottom:176.033333pt;}
.y29{bottom:177.550667pt;}
.y76{bottom:181.769333pt;}
.y28{bottom:192.096000pt;}
.y75{bottom:196.314667pt;}
.y27{bottom:206.641333pt;}
.y57{bottom:207.470667pt;}
.y74{bottom:210.860000pt;}
.y26{bottom:221.186667pt;}
.y73{bottom:225.405333pt;}
.y56{bottom:231.254667pt;}
.y25{bottom:235.732000pt;}
.y72{bottom:247.257333pt;}
.y24{bottom:250.277333pt;}
.y55{bottom:255.038667pt;}
.y71{bottom:261.802667pt;}
.y23{bottom:264.822667pt;}
.y70{bottom:276.348000pt;}
.y54{bottom:278.822667pt;}
.y22{bottom:279.368000pt;}
.y6f{bottom:290.893333pt;}
.y21{bottom:293.913333pt;}
.y20{bottom:308.458667pt;}
.y53{bottom:310.260000pt;}
.y6e{bottom:322.666667pt;}
.y52{bottom:324.805333pt;}
.y1f{bottom:330.310667pt;}
.y51{bottom:339.350667pt;}
.y1e{bottom:344.856000pt;}
.y1d{bottom:359.401333pt;}
.y6d{bottom:362.117333pt;}
.y50{bottom:367.750667pt;}
.y1c{bottom:373.946667pt;}
.y6c{bottom:376.662667pt;}
.y1b{bottom:388.492000pt;}
.y6b{bottom:397.937333pt;}
.y1a{bottom:403.037333pt;}
.y4f{bottom:404.777333pt;}
.y6a{bottom:419.212000pt;}
.y4e{bottom:419.322667pt;}
.y4d{bottom:433.868000pt;}
.y19{bottom:434.342667pt;}
.y69{bottom:448.766667pt;}
.y4c{bottom:455.720000pt;}
.y8e{bottom:462.997333pt;}
.y4b{bottom:470.265333pt;}
.y68{bottom:470.618667pt;}
.y8d{bottom:477.542667pt;}
.y18{bottom:480.196000pt;}
.y4a{bottom:484.810667pt;}
.y67{bottom:485.164000pt;}
.y17{bottom:494.741333pt;}
.y49{bottom:499.356000pt;}
.y66{bottom:499.709333pt;}
.y8c{bottom:502.714667pt;}
.y16{bottom:509.288000pt;}
.y48{bottom:513.901333pt;}
.y65{bottom:514.254667pt;}
.y15{bottom:523.833333pt;}
.y8b{bottom:527.886667pt;}
.y47{bottom:528.446667pt;}
.y64{bottom:536.105333pt;}
.y14{bottom:538.378667pt;}
.y8a{bottom:542.433333pt;}
.y46{bottom:542.992000pt;}
.y63{bottom:550.650667pt;}
.y13{bottom:552.924000pt;}
.y45{bottom:557.538667pt;}
.y62{bottom:565.197333pt;}
.y12{bottom:567.469333pt;}
.y89{bottom:567.605333pt;}
.y44{bottom:572.084000pt;}
.y61{bottom:579.742667pt;}
.y11{bottom:582.014667pt;}
.y43{bottom:586.629333pt;}
.y88{bottom:592.777333pt;}
.y10{bottom:596.560000pt;}
.y42{bottom:601.174667pt;}
.yf{bottom:611.105333pt;}
.y60{bottom:611.516000pt;}
.y87{bottom:617.949333pt;}
.ye{bottom:625.650667pt;}
.y41{bottom:629.574667pt;}
.y86{bottom:632.494667pt;}
.yd{bottom:640.196000pt;}
.yc{bottom:654.741333pt;}
.y5f{bottom:655.657333pt;}
.y85{bottom:657.666667pt;}
.y40{bottom:666.601333pt;}
.yb{bottom:669.286667pt;}
.y84{bottom:672.212000pt;}
.y3f{bottom:681.146667pt;}
.ya{bottom:683.833333pt;}
.y3e{bottom:695.692000pt;}
.y83{bottom:697.385333pt;}
.y3d{bottom:710.237333pt;}
.y82{bottom:711.930667pt;}
.y9{bottom:715.856000pt;}
.y3c{bottom:724.782667pt;}
.y81{bottom:737.102667pt;}
.y3b{bottom:746.634667pt;}
.y80{bottom:751.648000pt;}
.y3a{bottom:761.180000pt;}
.y8{bottom:770.765333pt;}
.y39{bottom:775.725333pt;}
.y7f{bottom:776.820000pt;}
.y7{bottom:785.310667pt;}
.y38{bottom:790.270667pt;}
.y7e{bottom:791.365333pt;}
.y6{bottom:799.856000pt;}
.y37{bottom:804.816000pt;}
.y5{bottom:814.401333pt;}
.y7d{bottom:816.538667pt;}
.y36{bottom:826.668000pt;}
.y4{bottom:828.946667pt;}
.y35{bottom:841.213333pt;}
.y7c{bottom:841.710667pt;}
.y34{bottom:855.758667pt;}
.y7b{bottom:856.256000pt;}
.y33{bottom:870.304000pt;}
.y3{bottom:874.144000pt;}
.y7a{bottom:879.768000pt;}
.y32{bottom:884.849333pt;}
.y2{bottom:900.710667pt;}
.y31{bottom:913.249333pt;}
.y79{bottom:917.625333pt;}
.y1{bottom:927.278667pt;}
.y78{bottom:932.170667pt;}
.y30{bottom:946.716000pt;}
.h8{height:14.824448pt;}
.h9{height:32.900710pt;}
.h7{height:35.387155pt;}
.h4{height:36.556100pt;}
.h3{height:36.768636pt;}
.h5{height:36.928037pt;}
.ha{height:42.248474pt;}
.h6{height:44.122658pt;}
.h1{height:63.536303pt;}
.h2{height:64.179011pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:141.794667pt;}
.xb{left:144.000000pt;}
.x16{left:157.284000pt;}
.xe{left:159.762667pt;}
.x14{left:163.740000pt;}
.xf{left:165.520000pt;}
.x3{left:177.246667pt;}
.x11{left:180.529333pt;}
.x15{left:187.986667pt;}
.x7{left:189.786667pt;}
.xa{left:191.409333pt;}
.x2{left:194.334667pt;}
.x1{left:201.761333pt;}
.x5{left:205.461333pt;}
.xc{left:254.582667pt;}
.x13{left:268.198667pt;}
.x6{left:276.002667pt;}
.xd{left:281.149333pt;}
.x8{left:345.250667pt;}
.x4{left:357.509333pt;}
.x9{left:378.344000pt;}
.x12{left:404.678667pt;}
}




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