
    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_64fb744b945f1cbc1a8a6080.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_2423516e992c2eac37a5393b.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_4d2a720ea7a7da5f74ddf262.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_6e3e11b11f58b0e82a195f56.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_4cf79edb9a47cf5cd46da8ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m1{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);}
.m7{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);}
.m1a{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);}
.m16{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);}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.me{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);}
.m5{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);}
.m13{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);}
.m1d{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);}
.m1c{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);}
.m9{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);}
.m8{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);}
.m17{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);}
.m11{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);}
.mf{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);}
.mc{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);}
.m18{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);}
.m19{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);}
.m3{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);}
.m2{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);}
.m10{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);}
.m14{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);}
.m1b{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);}
.m12{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);}
.ma{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);}
.m15{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);}
.m6{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);}
.md{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;}
}
.ws21{word-spacing:-13.449600px;}
.wsf{word-spacing:-11.955000px;}
.ws2e{word-spacing:-10.460700px;}
.ws1f{word-spacing:-2.851315px;}
.ws1b{word-spacing:-1.936742px;}
.ws20{word-spacing:-1.613952px;}
.wse{word-spacing:-1.452557px;}
.ws1d{word-spacing:-1.237363px;}
.ws15{word-spacing:-1.022170px;}
.ws19{word-spacing:-0.968371px;}
.wsc{word-spacing:-0.268992px;}
.ws17{word-spacing:-0.215194px;}
.ws27{word-spacing:-0.167371px;}
.ws5{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.125528px;}
.ws7{word-spacing:-0.107597px;}
.ws26{word-spacing:-0.083686px;}
.ws14{word-spacing:-0.053798px;}
.ws24{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.041843px;}
.wsa{word-spacing:0.053798px;}
.ws30{word-spacing:0.083686px;}
.ws8{word-spacing:0.107597px;}
.ws13{word-spacing:0.161395px;}
.ws2f{word-spacing:0.167371px;}
.ws2d{word-spacing:0.209214px;}
.ws4{word-spacing:0.215194px;}
.ws1c{word-spacing:0.268992px;}
.ws1a{word-spacing:0.376589px;}
.ws9{word-spacing:0.806976px;}
.ws11{word-spacing:1.075968px;}
.ws1e{word-spacing:1.344960px;}
.wsd{word-spacing:1.452557px;}
.ws10{word-spacing:2.205734px;}
.ws12{word-spacing:3.712090px;}
.ws28{word-spacing:10.251486px;}
.ws29{word-spacing:10.293329px;}
.ws2b{word-spacing:10.335172px;}
.ws25{word-spacing:10.418857px;}
.ws23{word-spacing:10.460700px;}
.ws31{word-spacing:10.502543px;}
.ws2c{word-spacing:10.628071px;}
.ws2{word-spacing:11.907329px;}
.ws16{word-spacing:13.180608px;}
.ws0{word-spacing:13.378958px;}
.ws3{word-spacing:13.395802px;}
.ws6{word-spacing:16.221799px;}
.wsb{word-spacing:53.744602px;}
.ws18{word-spacing:2246.464090px;}
._7{margin-left:-5.594192px;}
._1{margin-left:-4.123640px;}
._5{margin-left:-2.797517px;}
._3{margin-left:-1.530259px;}
._6{width:1.046074px;}
._10{width:2.169651px;}
._2{width:3.600003px;}
._e{width:11.423084px;}
._c{width:12.724635px;}
._b{width:15.105251px;}
._0{width:16.363650px;}
._d{width:18.747500px;}
._9{width:23.910300px;}
._f{width:31.185113px;}
._4{width:53.798400px;}
._8{width:2188.581744px;}
._a{width:2189.817744px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs5{font-size:47.820000px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y5b{bottom:208.576500px;}
.y21{bottom:208.737000px;}
.y37{bottom:209.002500px;}
.y20{bottom:223.680000px;}
.y5a{bottom:229.125000px;}
.y36{bottom:229.549500px;}
.y59{bottom:249.672000px;}
.y35{bottom:250.098000px;}
.y1f{bottom:255.063000px;}
.y58{bottom:270.220500px;}
.y34{bottom:275.782500px;}
.y1e{bottom:279.471000px;}
.y57{bottom:290.769000px;}
.y1d{bottom:300.019500px;}
.y33{bottom:312.592500px;}
.y56{bottom:316.453500px;}
.y1c{bottom:325.704000px;}
.y32{bottom:333.141000px;}
.y55{bottom:352.413000px;}
.y31{bottom:353.688000px;}
.y1b{bottom:361.981500px;}
.y54{bottom:372.960000px;}
.y30{bottom:379.374000px;}
.y1a{bottom:382.530000px;}
.y53{bottom:393.508500px;}
.y19{bottom:403.078500px;}
.y2f{bottom:416.182500px;}
.y52{bottom:419.193000px;}
.y18{bottom:423.625500px;}
.y2e{bottom:436.731000px;}
.y17{bottom:444.174000px;}
.y51{bottom:455.152500px;}
.y2d{bottom:457.279500px;}
.y16{bottom:464.722500px;}
.y50{bottom:475.699500px;}
.y2c{bottom:477.826500px;}
.y15{bottom:490.407000px;}
.y4f{bottom:496.248000px;}
.y2b{bottom:498.375000px;}
.y4e{bottom:516.796500px;}
.y2a{bottom:518.923500px;}
.y14{bottom:526.684500px;}
.y4d{bottom:537.343500px;}
.y29{bottom:539.470500px;}
.y78{bottom:543.415500px;}
.y13{bottom:547.233000px;}
.y4c{bottom:557.892000px;}
.y77{bottom:558.358500px;}
.y28{bottom:565.156500px;}
.y12{bottom:567.780000px;}
.y76{bottom:573.303000px;}
.y4b{bottom:583.576500px;}
.y75{bottom:588.246000px;}
.y11{bottom:593.466000px;}
.y27{bottom:601.965000px;}
.y74{bottom:603.190500px;}
.y73{bottom:618.135000px;}
.y4a{bottom:619.536000px;}
.y26{bottom:622.513500px;}
.y10{bottom:629.743500px;}
.y72{bottom:633.078000px;}
.y49{bottom:640.083000px;}
.y25{bottom:643.062000px;}
.y71{bottom:648.022500px;}
.yf{bottom:650.292000px;}
.y48{bottom:660.631500px;}
.y70{bottom:662.967000px;}
.ye{bottom:670.839000px;}
.y6f{bottom:677.910000px;}
.y47{bottom:681.180000px;}
.y24{bottom:688.308000px;}
.yd{bottom:691.387500px;}
.y6e{bottom:692.854500px;}
.y46{bottom:701.727000px;}
.y6d{bottom:707.799000px;}
.yc{bottom:711.936000px;}
.y6c{bottom:722.742000px;}
.y45{bottom:727.413000px;}
.yb{bottom:732.483000px;}
.y6b{bottom:737.686500px;}
.y6a{bottom:752.631000px;}
.ya{bottom:753.031500px;}
.y44{bottom:763.371000px;}
.y69{bottom:767.574000px;}
.y9{bottom:773.578500px;}
.y68{bottom:782.518500px;}
.y43{bottom:783.919500px;}
.y8{bottom:794.127000px;}
.y67{bottom:797.461500px;}
.y42{bottom:804.466500px;}
.y66{bottom:812.406000px;}
.y7{bottom:814.675500px;}
.y41{bottom:825.015000px;}
.y65{bottom:827.350500px;}
.y6{bottom:835.222500px;}
.y64{bottom:842.293500px;}
.y40{bottom:845.563500px;}
.y63{bottom:857.238000px;}
.y5{bottom:860.908500px;}
.y3f{bottom:866.110500px;}
.y62{bottom:872.182500px;}
.y3e{bottom:886.659000px;}
.y61{bottom:887.125500px;}
.y22{bottom:898.500000px;}
.y60{bottom:907.207500px;}
.y3d{bottom:912.343500px;}
.y4{bottom:916.054500px;}
.y3{bottom:942.694500px;}
.y5f{bottom:943.165500px;}
.y3c{bottom:948.303000px;}
.y5e{bottom:963.714000px;}
.y3b{bottom:968.850000px;}
.y2{bottom:982.875000px;}
.y5d{bottom:984.261000px;}
.y3a{bottom:989.398500px;}
.y5c{bottom:1004.809500px;}
.y39{bottom:1009.947000px;}
.y38{bottom:1030.494000px;}
.y1{bottom:1033.002000px;}
.y23{bottom:1071.291000px;}
.h7{height:30.796301px;}
.h4{height:33.474420px;}
.h9{height:33.856985px;}
.h3{height:35.195962px;}
.h5{height:37.820275px;}
.h6{height:39.595622px;}
.h2{height:46.341857px;}
.h8{height:49.874766px;}
.h1{height:50.427034px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:110.161500px;}
.x2{left:125.104500px;}
.xa{left:165.241500px;}
.x1a{left:170.106000px;}
.x18{left:180.975000px;}
.x19{left:187.228500px;}
.x1b{left:188.395500px;}
.xb{left:322.074000px;}
.x12{left:382.200000px;}
.x5{left:383.569500px;}
.x13{left:388.453500px;}
.x6{left:389.823000px;}
.x7{left:395.667000px;}
.x8{left:408.175500px;}
.x14{left:515.818500px;}
.x15{left:522.073500px;}
.x10{left:606.438000px;}
.x11{left:618.945000px;}
.x9{left:701.974500px;}
.x3{left:708.169500px;}
.x4{left:714.424500px;}
.x16{left:766.735500px;}
.x17{left:772.989000px;}
.xc{left:778.018500px;}
.xd{left:784.272000px;}
.xe{left:790.581000px;}
.xf{left:803.089500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws21{word-spacing:-11.955200pt;}
.wsf{word-spacing:-10.626667pt;}
.ws2e{word-spacing:-9.298400pt;}
.ws1f{word-spacing:-2.534502pt;}
.ws1b{word-spacing:-1.721549pt;}
.ws20{word-spacing:-1.434624pt;}
.wse{word-spacing:-1.291162pt;}
.ws1d{word-spacing:-1.099878pt;}
.ws15{word-spacing:-0.908595pt;}
.ws19{word-spacing:-0.860774pt;}
.wsc{word-spacing:-0.239104pt;}
.ws17{word-spacing:-0.191283pt;}
.ws27{word-spacing:-0.148774pt;}
.ws5{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.111581pt;}
.ws7{word-spacing:-0.095642pt;}
.ws26{word-spacing:-0.074387pt;}
.ws14{word-spacing:-0.047821pt;}
.ws24{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.037194pt;}
.wsa{word-spacing:0.047821pt;}
.ws30{word-spacing:0.074387pt;}
.ws8{word-spacing:0.095642pt;}
.ws13{word-spacing:0.143462pt;}
.ws2f{word-spacing:0.148774pt;}
.ws2d{word-spacing:0.185968pt;}
.ws4{word-spacing:0.191283pt;}
.ws1c{word-spacing:0.239104pt;}
.ws1a{word-spacing:0.334746pt;}
.ws9{word-spacing:0.717312pt;}
.ws11{word-spacing:0.956416pt;}
.ws1e{word-spacing:1.195520pt;}
.wsd{word-spacing:1.291162pt;}
.ws10{word-spacing:1.960653pt;}
.ws12{word-spacing:3.299635pt;}
.ws28{word-spacing:9.112432pt;}
.ws29{word-spacing:9.149626pt;}
.ws2b{word-spacing:9.186819pt;}
.ws25{word-spacing:9.261206pt;}
.ws23{word-spacing:9.298400pt;}
.ws31{word-spacing:9.335594pt;}
.ws2c{word-spacing:9.447174pt;}
.ws2{word-spacing:10.584293pt;}
.ws16{word-spacing:11.716096pt;}
.ws0{word-spacing:11.892407pt;}
.ws3{word-spacing:11.907379pt;}
.ws6{word-spacing:14.419377pt;}
.wsb{word-spacing:47.772979pt;}
.ws18{word-spacing:1996.856969pt;}
._7{margin-left:-4.972615pt;}
._1{margin-left:-3.665458pt;}
._5{margin-left:-2.486682pt;}
._3{margin-left:-1.360230pt;}
._6{width:0.929843pt;}
._10{width:1.928579pt;}
._2{width:3.200003pt;}
._e{width:10.153853pt;}
._c{width:11.310787pt;}
._b{width:13.426890pt;}
._0{width:14.545467pt;}
._d{width:16.664445pt;}
._9{width:21.253600pt;}
._f{width:27.720100pt;}
._4{width:47.820800pt;}
._8{width:1945.405995pt;}
._a{width:1946.504661pt;}
.fs4{font-size:37.193600pt;}
.fs5{font-size:42.506667pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:185.401333pt;}
.y21{bottom:185.544000pt;}
.y37{bottom:185.780000pt;}
.y20{bottom:198.826667pt;}
.y5a{bottom:203.666667pt;}
.y36{bottom:204.044000pt;}
.y59{bottom:221.930667pt;}
.y35{bottom:222.309333pt;}
.y1f{bottom:226.722667pt;}
.y58{bottom:240.196000pt;}
.y34{bottom:245.140000pt;}
.y1e{bottom:248.418667pt;}
.y57{bottom:258.461333pt;}
.y1d{bottom:266.684000pt;}
.y33{bottom:277.860000pt;}
.y56{bottom:281.292000pt;}
.y1c{bottom:289.514667pt;}
.y32{bottom:296.125333pt;}
.y55{bottom:313.256000pt;}
.y31{bottom:314.389333pt;}
.y1b{bottom:321.761333pt;}
.y54{bottom:331.520000pt;}
.y30{bottom:337.221333pt;}
.y1a{bottom:340.026667pt;}
.y53{bottom:349.785333pt;}
.y19{bottom:358.292000pt;}
.y2f{bottom:369.940000pt;}
.y52{bottom:372.616000pt;}
.y18{bottom:376.556000pt;}
.y2e{bottom:388.205333pt;}
.y17{bottom:394.821333pt;}
.y51{bottom:404.580000pt;}
.y2d{bottom:406.470667pt;}
.y16{bottom:413.086667pt;}
.y50{bottom:422.844000pt;}
.y2c{bottom:424.734667pt;}
.y15{bottom:435.917333pt;}
.y4f{bottom:441.109333pt;}
.y2b{bottom:443.000000pt;}
.y4e{bottom:459.374667pt;}
.y2a{bottom:461.265333pt;}
.y14{bottom:468.164000pt;}
.y4d{bottom:477.638667pt;}
.y29{bottom:479.529333pt;}
.y78{bottom:483.036000pt;}
.y13{bottom:486.429333pt;}
.y4c{bottom:495.904000pt;}
.y77{bottom:496.318667pt;}
.y28{bottom:502.361333pt;}
.y12{bottom:504.693333pt;}
.y76{bottom:509.602667pt;}
.y4b{bottom:518.734667pt;}
.y75{bottom:522.885333pt;}
.y11{bottom:527.525333pt;}
.y27{bottom:535.080000pt;}
.y74{bottom:536.169333pt;}
.y73{bottom:549.453333pt;}
.y4a{bottom:550.698667pt;}
.y26{bottom:553.345333pt;}
.y10{bottom:559.772000pt;}
.y72{bottom:562.736000pt;}
.y49{bottom:568.962667pt;}
.y25{bottom:571.610667pt;}
.y71{bottom:576.020000pt;}
.yf{bottom:578.037333pt;}
.y48{bottom:587.228000pt;}
.y70{bottom:589.304000pt;}
.ye{bottom:596.301333pt;}
.y6f{bottom:602.586667pt;}
.y47{bottom:605.493333pt;}
.y24{bottom:611.829333pt;}
.yd{bottom:614.566667pt;}
.y6e{bottom:615.870667pt;}
.y46{bottom:623.757333pt;}
.y6d{bottom:629.154667pt;}
.yc{bottom:632.832000pt;}
.y6c{bottom:642.437333pt;}
.y45{bottom:646.589333pt;}
.yb{bottom:651.096000pt;}
.y6b{bottom:655.721333pt;}
.y6a{bottom:669.005333pt;}
.ya{bottom:669.361333pt;}
.y44{bottom:678.552000pt;}
.y69{bottom:682.288000pt;}
.y9{bottom:687.625333pt;}
.y68{bottom:695.572000pt;}
.y43{bottom:696.817333pt;}
.y8{bottom:705.890667pt;}
.y67{bottom:708.854667pt;}
.y42{bottom:715.081333pt;}
.y66{bottom:722.138667pt;}
.y7{bottom:724.156000pt;}
.y41{bottom:733.346667pt;}
.y65{bottom:735.422667pt;}
.y6{bottom:742.420000pt;}
.y64{bottom:748.705333pt;}
.y40{bottom:751.612000pt;}
.y63{bottom:761.989333pt;}
.y5{bottom:765.252000pt;}
.y3f{bottom:769.876000pt;}
.y62{bottom:775.273333pt;}
.y3e{bottom:788.141333pt;}
.y61{bottom:788.556000pt;}
.y22{bottom:798.666667pt;}
.y60{bottom:806.406667pt;}
.y3d{bottom:810.972000pt;}
.y4{bottom:814.270667pt;}
.y3{bottom:837.950667pt;}
.y5f{bottom:838.369333pt;}
.y3c{bottom:842.936000pt;}
.y5e{bottom:856.634667pt;}
.y3b{bottom:861.200000pt;}
.y2{bottom:873.666667pt;}
.y5d{bottom:874.898667pt;}
.y3a{bottom:879.465333pt;}
.y5c{bottom:893.164000pt;}
.y39{bottom:897.730667pt;}
.y38{bottom:915.994667pt;}
.y1{bottom:918.224000pt;}
.y23{bottom:952.258667pt;}
.h7{height:27.374490pt;}
.h4{height:29.755040pt;}
.h9{height:30.095098pt;}
.h3{height:31.285299pt;}
.h5{height:33.618022pt;}
.h6{height:35.196109pt;}
.h2{height:41.192762pt;}
.h8{height:44.333125pt;}
.h1{height:44.824030pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:97.921333pt;}
.x2{left:111.204000pt;}
.xa{left:146.881333pt;}
.x1a{left:151.205333pt;}
.x18{left:160.866667pt;}
.x19{left:166.425333pt;}
.x1b{left:167.462667pt;}
.xb{left:286.288000pt;}
.x12{left:339.733333pt;}
.x5{left:340.950667pt;}
.x13{left:345.292000pt;}
.x6{left:346.509333pt;}
.x7{left:351.704000pt;}
.x8{left:362.822667pt;}
.x14{left:458.505333pt;}
.x15{left:464.065333pt;}
.x10{left:539.056000pt;}
.x11{left:550.173333pt;}
.x9{left:623.977333pt;}
.x3{left:629.484000pt;}
.x4{left:635.044000pt;}
.x16{left:681.542667pt;}
.x17{left:687.101333pt;}
.xc{left:691.572000pt;}
.xd{left:697.130667pt;}
.xe{left:702.738667pt;}
.xf{left:713.857333pt;}
}




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