
    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_765e0d639bab4973cf81a236.woff')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_c150a010e84982020a3acc9f.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_58096483c62a75d8d68ffeeb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_6d2ad8b3a407116654d0b551.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b9b69a39b4695947ba57b37e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{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);}
.m17{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);}
.m6{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);}
.m15{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);}
.m19{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);}
.mc{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);}
.m11{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);}
.mf{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);}
.m9{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);}
.m1{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);}
.m7{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);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m18{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);}
.m8{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);}
.m16{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2{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.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);}
.m1b{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);}
.m1a{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);}
.m1c{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);}
.md{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);}
.me{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);}
.m13{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);}
.m10{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.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m12{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);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.051200px;}
.ls0{letter-spacing:2.988600px;}
.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;}
}
.ws26{word-spacing:-14.943900px;}
.ws1b{word-spacing:-13.449600px;}
.ws1a{word-spacing:-8.966400px;}
.ws10{word-spacing:-2.331248px;}
.wsb{word-spacing:-1.195512px;}
.ws6{word-spacing:-1.016185px;}
.ws12{word-spacing:-0.717307px;}
.wsc{word-spacing:-0.358654px;}
.ws11{word-spacing:-0.298878px;}
.ws14{word-spacing:-0.239102px;}
.ws4{word-spacing:-0.179327px;}
.wsf{word-spacing:-0.119551px;}
.ws2a{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.059776px;}
.ws13{word-spacing:0.119551px;}
.ws7{word-spacing:0.179327px;}
.ws9{word-spacing:0.298878px;}
.ws22{word-spacing:0.537980px;}
.ws29{word-spacing:0.597756px;}
.ws15{word-spacing:0.896634px;}
.ws23{word-spacing:1.494390px;}
.ws21{word-spacing:1.972595px;}
.ws20{word-spacing:2.151922px;}
.wse{word-spacing:2.211697px;}
.ws28{word-spacing:2.271473px;}
.ws8{word-spacing:2.391024px;}
.ws25{word-spacing:2.988780px;}
.ws16{word-spacing:3.347434px;}
.ws2b{word-spacing:3.586536px;}
.ws24{word-spacing:3.646312px;}
.ws27{word-spacing:5.080926px;}
.ws1c{word-spacing:5.140702px;}
.ws5{word-spacing:5.439580px;}
.ws1d{word-spacing:6.515540px;}
.ws19{word-spacing:7.470163px;}
.ws1f{word-spacing:14.831100px;}
.ws1{word-spacing:14.884124px;}
.ws17{word-spacing:14.943900px;}
.ws1e{word-spacing:15.242778px;}
.wsd{word-spacing:17.861069px;}
.ws2c{word-spacing:18.470660px;}
.ws0{word-spacing:25.719808px;}
._f{margin-left:-7.651277px;}
._11{margin-left:-5.798233px;}
._2{margin-left:-4.363619px;}
._d{margin-left:-3.227882px;}
._1{margin-left:-2.211697px;}
._0{margin-left:-1.032924px;}
._a{width:2.978141px;}
._7{width:13.987490px;}
._5{width:16.139412px;}
._4{width:18.649987px;}
._8{width:19.845499px;}
._10{width:21.519216px;}
._b{width:23.372260px;}
._e{width:25.225303px;}
._9{width:28.692288px;}
._12{width:32.816804px;}
._3{width:35.088277px;}
._c{width:38.674813px;}
._6{width:71.731200px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y54{bottom:63.168000px;}
.y30{bottom:78.184500px;}
.y2f{bottom:93.129000px;}
.y53{bottom:108.000000px;}
.y52{bottom:124.363500px;}
.y51{bottom:140.727000px;}
.y2e{bottom:143.841000px;}
.y50{bottom:157.090500px;}
.y2d{bottom:166.023000px;}
.y4f{bottom:173.454000px;}
.y2c{bottom:182.386500px;}
.y4e{bottom:189.817500px;}
.y2b{bottom:198.750000px;}
.y4d{bottom:206.182500px;}
.y2a{bottom:215.113500px;}
.y29{bottom:231.478500px;}
.y4c{bottom:241.654500px;}
.y28{bottom:247.842000px;}
.y27{bottom:264.205500px;}
.y26{bottom:280.569000px;}
.y4b{bottom:285.580500px;}
.y25{bottom:296.932500px;}
.y4a{bottom:301.944000px;}
.y24{bottom:313.296000px;}
.y49{bottom:318.307500px;}
.y23{bottom:329.659500px;}
.y48{bottom:334.671000px;}
.y22{bottom:346.023000px;}
.y47{bottom:351.034500px;}
.y21{bottom:362.386500px;}
.y46{bottom:367.399500px;}
.y20{bottom:378.750000px;}
.y45{bottom:383.763000px;}
.y44{bottom:400.126500px;}
.y1f{bottom:403.333500px;}
.y43{bottom:416.490000px;}
.y1e{bottom:419.697000px;}
.y42{bottom:432.853500px;}
.y1d{bottom:436.060500px;}
.y41{bottom:449.217000px;}
.y1c{bottom:452.424000px;}
.y40{bottom:465.580500px;}
.y1b{bottom:468.787500px;}
.y1a{bottom:485.151000px;}
.y3f{bottom:490.164000px;}
.y19{bottom:501.514500px;}
.y3e{bottom:506.527500px;}
.y18{bottom:517.879500px;}
.y3d{bottom:522.891000px;}
.y17{bottom:534.243000px;}
.y3c{bottom:539.254500px;}
.y16{bottom:550.606500px;}
.y3b{bottom:555.618000px;}
.y3a{bottom:571.981500px;}
.y15{bottom:585.013500px;}
.y39{bottom:588.345000px;}
.y38{bottom:604.708500px;}
.y37{bottom:621.072000px;}
.y14{bottom:634.086000px;}
.y36{bottom:637.435500px;}
.y13{bottom:650.451000px;}
.y35{bottom:653.800500px;}
.y12{bottom:666.814500px;}
.y34{bottom:670.164000px;}
.y11{bottom:683.178000px;}
.y33{bottom:686.527500px;}
.y10{bottom:699.541500px;}
.y32{bottom:702.891000px;}
.yf{bottom:715.905000px;}
.ye{bottom:732.268500px;}
.yd{bottom:748.632000px;}
.y31{bottom:752.146500px;}
.yc{bottom:764.995500px;}
.yb{bottom:781.359000px;}
.ya{bottom:797.722500px;}
.y9{bottom:814.086000px;}
.y8{bottom:830.451000px;}
.y5f{bottom:831.556500px;}
.y7{bottom:846.814500px;}
.y5e{bottom:859.875000px;}
.y6{bottom:881.503500px;}
.y5d{bottom:888.195000px;}
.y5c{bottom:916.513500px;}
.y5b{bottom:932.877000px;}
.y5{bottom:943.276500px;}
.y5a{bottom:949.240500px;}
.y4{bottom:959.640000px;}
.y3{bottom:976.003500px;}
.y59{bottom:977.559000px;}
.y2{bottom:992.367000px;}
.y58{bottom:993.922500px;}
.y57{bottom:1010.286000px;}
.y56{bottom:1038.606000px;}
.y1{bottom:1043.188500px;}
.y55{bottom:1065.055500px;}
.h7{height:24.675533px;}
.h4{height:36.941321px;}
.h3{height:41.125613px;}
.h2{height:41.304940px;}
.h8{height:47.529533px;}
.h5{height:49.566259px;}
.h6{height:50.477846px;}
.h1{height:71.375048px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:162.000000px;}
.x10{left:176.481000px;}
.xd{left:180.979500px;}
.x5{left:207.318000px;}
.xb{left:215.799000px;}
.x3{left:244.036500px;}
.x2{left:256.552500px;}
.x4{left:269.650500px;}
.xe{left:280.876500px;}
.x1{left:339.117000px;}
.xa{left:425.637000px;}
.xf{left:455.263500px;}
.x7{left:496.911000px;}
.x8{left:514.522500px;}
.x9{left:533.203500px;}
.x6{left:558.951000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.934400pt;}
.ls0{letter-spacing:2.656533pt;}
.ws26{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-7.970133pt;}
.ws10{word-spacing:-2.072221pt;}
.wsb{word-spacing:-1.062677pt;}
.ws6{word-spacing:-0.903276pt;}
.ws12{word-spacing:-0.637606pt;}
.wsc{word-spacing:-0.318803pt;}
.ws11{word-spacing:-0.265669pt;}
.ws14{word-spacing:-0.212535pt;}
.ws4{word-spacing:-0.159402pt;}
.wsf{word-spacing:-0.106268pt;}
.ws2a{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053134pt;}
.ws13{word-spacing:0.106268pt;}
.ws7{word-spacing:0.159402pt;}
.ws9{word-spacing:0.265669pt;}
.ws22{word-spacing:0.478205pt;}
.ws29{word-spacing:0.531339pt;}
.ws15{word-spacing:0.797008pt;}
.ws23{word-spacing:1.328347pt;}
.ws21{word-spacing:1.753418pt;}
.ws20{word-spacing:1.912819pt;}
.wse{word-spacing:1.965953pt;}
.ws28{word-spacing:2.019087pt;}
.ws8{word-spacing:2.125355pt;}
.ws25{word-spacing:2.656693pt;}
.ws16{word-spacing:2.975497pt;}
.ws2b{word-spacing:3.188032pt;}
.ws24{word-spacing:3.241166pt;}
.ws27{word-spacing:4.516379pt;}
.ws1c{word-spacing:4.569513pt;}
.ws5{word-spacing:4.835182pt;}
.ws1d{word-spacing:5.791591pt;}
.ws19{word-spacing:6.640145pt;}
.ws1f{word-spacing:13.183200pt;}
.ws1{word-spacing:13.230333pt;}
.ws17{word-spacing:13.283467pt;}
.ws1e{word-spacing:13.549136pt;}
.wsd{word-spacing:15.876506pt;}
.ws2c{word-spacing:16.418365pt;}
.ws0{word-spacing:22.862051pt;}
._f{margin-left:-6.801135pt;}
._11{margin-left:-5.153985pt;}
._2{margin-left:-3.878772pt;}
._d{margin-left:-2.869229pt;}
._1{margin-left:-1.965953pt;}
._0{margin-left:-0.918155pt;}
._a{width:2.647236pt;}
._7{width:12.433325pt;}
._5{width:14.346144pt;}
._4{width:16.577766pt;}
._8{width:17.640444pt;}
._10{width:19.128192pt;}
._b{width:20.775342pt;}
._e{width:22.422492pt;}
._9{width:25.504256pt;}
._12{width:29.170493pt;}
._3{width:31.189580pt;}
._c{width:34.377612pt;}
._6{width:63.761067pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:56.149333pt;}
.y30{bottom:69.497333pt;}
.y2f{bottom:82.781333pt;}
.y53{bottom:96.000000pt;}
.y52{bottom:110.545333pt;}
.y51{bottom:125.090667pt;}
.y2e{bottom:127.858667pt;}
.y50{bottom:139.636000pt;}
.y2d{bottom:147.576000pt;}
.y4f{bottom:154.181333pt;}
.y2c{bottom:162.121333pt;}
.y4e{bottom:168.726667pt;}
.y2b{bottom:176.666667pt;}
.y4d{bottom:183.273333pt;}
.y2a{bottom:191.212000pt;}
.y29{bottom:205.758667pt;}
.y4c{bottom:214.804000pt;}
.y28{bottom:220.304000pt;}
.y27{bottom:234.849333pt;}
.y26{bottom:249.394667pt;}
.y4b{bottom:253.849333pt;}
.y25{bottom:263.940000pt;}
.y4a{bottom:268.394667pt;}
.y24{bottom:278.485333pt;}
.y49{bottom:282.940000pt;}
.y23{bottom:293.030667pt;}
.y48{bottom:297.485333pt;}
.y22{bottom:307.576000pt;}
.y47{bottom:312.030667pt;}
.y21{bottom:322.121333pt;}
.y46{bottom:326.577333pt;}
.y20{bottom:336.666667pt;}
.y45{bottom:341.122667pt;}
.y44{bottom:355.668000pt;}
.y1f{bottom:358.518667pt;}
.y43{bottom:370.213333pt;}
.y1e{bottom:373.064000pt;}
.y42{bottom:384.758667pt;}
.y1d{bottom:387.609333pt;}
.y41{bottom:399.304000pt;}
.y1c{bottom:402.154667pt;}
.y40{bottom:413.849333pt;}
.y1b{bottom:416.700000pt;}
.y1a{bottom:431.245333pt;}
.y3f{bottom:435.701333pt;}
.y19{bottom:445.790667pt;}
.y3e{bottom:450.246667pt;}
.y18{bottom:460.337333pt;}
.y3d{bottom:464.792000pt;}
.y17{bottom:474.882667pt;}
.y3c{bottom:479.337333pt;}
.y16{bottom:489.428000pt;}
.y3b{bottom:493.882667pt;}
.y3a{bottom:508.428000pt;}
.y15{bottom:520.012000pt;}
.y39{bottom:522.973333pt;}
.y38{bottom:537.518667pt;}
.y37{bottom:552.064000pt;}
.y14{bottom:563.632000pt;}
.y36{bottom:566.609333pt;}
.y13{bottom:578.178667pt;}
.y35{bottom:581.156000pt;}
.y12{bottom:592.724000pt;}
.y34{bottom:595.701333pt;}
.y11{bottom:607.269333pt;}
.y33{bottom:610.246667pt;}
.y10{bottom:621.814667pt;}
.y32{bottom:624.792000pt;}
.yf{bottom:636.360000pt;}
.ye{bottom:650.905333pt;}
.yd{bottom:665.450667pt;}
.y31{bottom:668.574667pt;}
.yc{bottom:679.996000pt;}
.yb{bottom:694.541333pt;}
.ya{bottom:709.086667pt;}
.y9{bottom:723.632000pt;}
.y8{bottom:738.178667pt;}
.y5f{bottom:739.161333pt;}
.y7{bottom:752.724000pt;}
.y5e{bottom:764.333333pt;}
.y6{bottom:783.558667pt;}
.y5d{bottom:789.506667pt;}
.y5c{bottom:814.678667pt;}
.y5b{bottom:829.224000pt;}
.y5{bottom:838.468000pt;}
.y5a{bottom:843.769333pt;}
.y4{bottom:853.013333pt;}
.y3{bottom:867.558667pt;}
.y59{bottom:868.941333pt;}
.y2{bottom:882.104000pt;}
.y58{bottom:883.486667pt;}
.y57{bottom:898.032000pt;}
.y56{bottom:923.205333pt;}
.y1{bottom:927.278667pt;}
.y55{bottom:946.716000pt;}
.h7{height:21.933807pt;}
.h4{height:32.836730pt;}
.h3{height:36.556100pt;}
.h2{height:36.715502pt;}
.h8{height:42.248474pt;}
.h5{height:44.058897pt;}
.h6{height:44.869197pt;}
.h1{height:63.444487pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:144.000000pt;}
.x10{left:156.872000pt;}
.xd{left:160.870667pt;}
.x5{left:184.282667pt;}
.xb{left:191.821333pt;}
.x3{left:216.921333pt;}
.x2{left:228.046667pt;}
.x4{left:239.689333pt;}
.xe{left:249.668000pt;}
.x1{left:301.437333pt;}
.xa{left:378.344000pt;}
.xf{left:404.678667pt;}
.x7{left:441.698667pt;}
.x8{left:457.353333pt;}
.x9{left:473.958667pt;}
.x6{left:496.845333pt;}
}




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