
    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_eb22603ed7cae49123be9d49.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_7f0b459bfe956f5d092548a6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.052000;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_0a7f27feab1ae28144462d61.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923000;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_5a54f717369f5e704489fbad.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;}
.m3{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);}
.m18{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);}
.m7{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);}
.m13{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);}
.mf{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);}
.m11{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);}
.mb{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);}
.m1{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);}
.m16{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);}
.m2{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);}
.m4{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);}
.m6{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);}
.m10{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);}
.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);}
.m15{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);}
.m5{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);}
.mc{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);}
.m9{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);}
.ma{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);}
.m12{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);}
.m14{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);}
.md{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);}
.m8{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;}
.v1{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;}
}
.ws1e{word-spacing:-13.449000px;}
.ws1d{word-spacing:-8.967000px;}
.ws9{word-spacing:-2.331402px;}
.ws31{word-spacing:-2.271385px;}
.ws2a{word-spacing:-2.211965px;}
.ws11{word-spacing:-2.032572px;}
.ws1a{word-spacing:-0.896730px;}
.wsa{word-spacing:-0.717336px;}
.ws25{word-spacing:-0.358489px;}
.ws19{word-spacing:-0.299129px;}
.ws16{word-spacing:-0.239112px;}
.ws15{word-spacing:-0.179095px;}
.ws14{word-spacing:-0.119735px;}
.ws32{word-spacing:-0.071730px;}
.ws33{word-spacing:-0.059778px;}
.wsc{word-spacing:-0.059718px;}
.ws4{word-spacing:-0.000299px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.000299px;}
.wsb{word-spacing:0.059718px;}
.ws7{word-spacing:0.119676px;}
.ws8{word-spacing:0.179095px;}
.ws17{word-spacing:0.239112px;}
.wsd{word-spacing:0.299129px;}
.ws1f{word-spacing:0.537942px;}
.ws22{word-spacing:0.717336px;}
.ws13{word-spacing:0.777353px;}
.wse{word-spacing:0.836713px;}
.ws1b{word-spacing:0.896730px;}
.ws26{word-spacing:1.076124px;}
.ws34{word-spacing:1.434373px;}
.ws18{word-spacing:1.554348px;}
.ws2c{word-spacing:1.912597px;}
.ws28{word-spacing:1.972554px;}
.ws30{word-spacing:2.152008px;}
.ws23{word-spacing:2.510796px;}
.ws24{word-spacing:2.929002px;}
.ws2d{word-spacing:3.526663px;}
.ws3a{word-spacing:4.303657px;}
.ws29{word-spacing:4.363674px;}
.ws36{word-spacing:4.543068px;}
.ws3c{word-spacing:4.603085px;}
.ws20{word-spacing:5.021292px;}
.ws2f{word-spacing:5.738329px;}
.ws2b{word-spacing:7.053565px;}
.ws1c{word-spacing:7.467696px;}
.ws12{word-spacing:7.830619px;}
.ws35{word-spacing:7.831217px;}
.ws39{word-spacing:8.727648px;}
.ws10{word-spacing:12.852150px;}
.ws38{word-spacing:14.884423px;}
.ws2{word-spacing:14.884722px;}
.ws21{word-spacing:14.885021px;}
.ws6{word-spacing:15.004398px;}
.ws27{word-spacing:15.602058px;}
.wsf{word-spacing:17.860770px;}
.ws3b{word-spacing:19.188379px;}
.ws37{word-spacing:19.427790px;}
.ws0{word-spacing:25.718900px;}
.ws1{word-spacing:25.719210px;}
.ws2e{word-spacing:71.658270px;}
._14{margin-left:-7.209845px;}
._b{margin-left:-5.798645px;}
._3{margin-left:-4.184460px;}
._0{margin-left:-2.582250px;}
._1{margin-left:-1.548214px;}
._e{width:3.008340px;}
._d{width:8.979094px;}
._7{width:11.896985px;}
._4{width:14.061168px;}
._f{width:15.968218px;}
._5{width:18.651154px;}
._9{width:20.324640px;}
._c{width:21.759252px;}
._11{width:23.792182px;}
._8{width:24.807990px;}
._13{width:26.433672px;}
._10{width:27.737351px;}
._2{width:32.535111px;}
._16{width:35.866979px;}
._15{width:37.077786px;}
._12{width:40.110978px;}
._a{width:59.778000px;}
._6{width:71.730000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.868000px;}
.fs3{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs2{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:63.168000px;}
.y2d{bottom:78.184500px;}
.y2c{bottom:93.129000px;}
.y4c{bottom:108.000000px;}
.y4b{bottom:124.363500px;}
.y76{bottom:137.791500px;}
.y2b{bottom:139.062000px;}
.y4a{bottom:140.727000px;}
.y2a{bottom:155.425500px;}
.y49{bottom:157.090500px;}
.y75{bottom:167.583000px;}
.y29{bottom:171.789000px;}
.y48{bottom:173.454000px;}
.y74{bottom:183.946500px;}
.y28{bottom:188.152500px;}
.y27{bottom:204.516000px;}
.y47{bottom:206.434500px;}
.y73{bottom:213.736500px;}
.y26{bottom:220.879500px;}
.y72{bottom:230.101500px;}
.y25{bottom:237.243000px;}
.y46{bottom:250.668000px;}
.y24{bottom:253.606500px;}
.y71{bottom:259.891500px;}
.y45{bottom:267.031500px;}
.y23{bottom:269.970000px;}
.y70{bottom:276.255000px;}
.y44{bottom:283.395000px;}
.y22{bottom:286.333500px;}
.y6f{bottom:292.620000px;}
.y43{bottom:299.758500px;}
.y21{bottom:302.697000px;}
.y42{bottom:316.122000px;}
.y20{bottom:319.060500px;}
.y6e{bottom:322.410000px;}
.y41{bottom:332.485500px;}
.y6d{bottom:338.773500px;}
.y40{bottom:348.849000px;}
.y1f{bottom:349.482000px;}
.y3f{bottom:365.212500px;}
.y6c{bottom:368.565000px;}
.y3e{bottom:381.577500px;}
.y1e{bottom:387.313500px;}
.y6b{bottom:395.512500px;}
.y3d{bottom:397.941000px;}
.y1d{bottom:403.677000px;}
.y1c{bottom:420.040500px;}
.y3c{bottom:422.523000px;}
.y1b{bottom:436.404000px;}
.y3b{bottom:438.886500px;}
.y6a{bottom:438.931500px;}
.y1a{bottom:452.767500px;}
.y3a{bottom:455.250000px;}
.y69{bottom:455.295000px;}
.y19{bottom:469.131000px;}
.y39{bottom:471.613500px;}
.y68{bottom:471.658500px;}
.y38{bottom:487.978500px;}
.y67{bottom:488.022000px;}
.y66{bottom:504.385500px;}
.y18{bottom:504.487500px;}
.y37{bottom:512.560500px;}
.y65{bottom:520.749000px;}
.y36{bottom:528.924000px;}
.y35{bottom:545.287500px;}
.y64{bottom:555.916500px;}
.y17{bottom:556.456500px;}
.y16{bottom:572.820000px;}
.y34{bottom:578.268000px;}
.y15{bottom:589.183500px;}
.y63{bottom:599.335500px;}
.y14{bottom:605.548500px;}
.y13{bottom:621.912000px;}
.y33{bottom:622.501500px;}
.y62{bottom:623.917500px;}
.y12{bottom:638.275500px;}
.y32{bottom:638.865000px;}
.y61{bottom:648.501000px;}
.y11{bottom:654.639000px;}
.y31{bottom:655.228500px;}
.y60{bottom:664.864500px;}
.y10{bottom:671.002500px;}
.y30{bottom:671.592000px;}
.yf{bottom:687.366000px;}
.y5f{bottom:700.030500px;}
.ye{bottom:703.729500px;}
.yd{bottom:720.093000px;}
.y2f{bottom:726.366000px;}
.yc{bottom:736.456500px;}
.y2e{bottom:742.729500px;}
.y5e{bottom:743.449500px;}
.y5d{bottom:759.813000px;}
.yb{bottom:772.636500px;}
.y5c{bottom:776.176500px;}
.y5b{bottom:792.540000px;}
.y5a{bottom:808.903500px;}
.y59{bottom:825.267000px;}
.ya{bottom:834.409500px;}
.y58{bottom:841.632000px;}
.y9{bottom:850.773000px;}
.y57{bottom:857.995500px;}
.y8{bottom:867.136500px;}
.y56{bottom:874.359000px;}
.y7{bottom:883.500000px;}
.y55{bottom:890.722500px;}
.y6{bottom:899.863500px;}
.y54{bottom:907.086000px;}
.y5{bottom:916.227000px;}
.y4{bottom:932.590500px;}
.y53{bottom:942.253500px;}
.y3{bottom:983.412000px;}
.y52{bottom:985.671000px;}
.y7a{bottom:987.646500px;}
.y51{bottom:1002.034500px;}
.y79{bottom:1004.010000px;}
.y2{bottom:1013.299500px;}
.y50{bottom:1018.398000px;}
.y78{bottom:1032.328500px;}
.y4f{bottom:1034.761500px;}
.y1{bottom:1043.188500px;}
.y77{bottom:1048.692000px;}
.y4e{bottom:1065.055500px;}
.h2{height:41.366376px;}
.h4{height:41.545710px;}
.h5{height:49.637160px;}
.h3{height:49.854852px;}
.h6{height:52.767912px;}
.h1{height:71.476680px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:162.000000px;}
.xe{left:176.032500px;}
.x1{left:177.349500px;}
.x2{left:203.482500px;}
.xb{left:215.544000px;}
.x5{left:327.957000px;}
.x6{left:347.571000px;}
.x7{left:389.190000px;}
.x8{left:393.306000px;}
.x3{left:397.321500px;}
.x4{left:420.714000px;}
.xa{left:425.637000px;}
.x9{left:444.055500px;}
.xd{left:455.263500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.314667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1e{word-spacing:-11.954667pt;}
.ws1d{word-spacing:-7.970667pt;}
.ws9{word-spacing:-2.072357pt;}
.ws31{word-spacing:-2.019009pt;}
.ws2a{word-spacing:-1.966191pt;}
.ws11{word-spacing:-1.806730pt;}
.ws1a{word-spacing:-0.797093pt;}
.wsa{word-spacing:-0.637632pt;}
.ws25{word-spacing:-0.318657pt;}
.ws19{word-spacing:-0.265893pt;}
.ws16{word-spacing:-0.212544pt;}
.ws15{word-spacing:-0.159195pt;}
.ws14{word-spacing:-0.106431pt;}
.ws32{word-spacing:-0.063760pt;}
.ws33{word-spacing:-0.053136pt;}
.wsc{word-spacing:-0.053083pt;}
.ws4{word-spacing:-0.000266pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000266pt;}
.wsb{word-spacing:0.053083pt;}
.ws7{word-spacing:0.106378pt;}
.ws8{word-spacing:0.159195pt;}
.ws17{word-spacing:0.212544pt;}
.wsd{word-spacing:0.265893pt;}
.ws1f{word-spacing:0.478171pt;}
.ws22{word-spacing:0.637632pt;}
.ws13{word-spacing:0.690981pt;}
.wse{word-spacing:0.743745pt;}
.ws1b{word-spacing:0.797093pt;}
.ws26{word-spacing:0.956554pt;}
.ws34{word-spacing:1.274998pt;}
.ws18{word-spacing:1.381642pt;}
.ws2c{word-spacing:1.700086pt;}
.ws28{word-spacing:1.753382pt;}
.ws30{word-spacing:1.912896pt;}
.ws23{word-spacing:2.231818pt;}
.ws24{word-spacing:2.603558pt;}
.ws2d{word-spacing:3.134811pt;}
.ws3a{word-spacing:3.825473pt;}
.ws29{word-spacing:3.878822pt;}
.ws36{word-spacing:4.038283pt;}
.ws3c{word-spacing:4.091631pt;}
.ws20{word-spacing:4.463371pt;}
.ws2f{word-spacing:5.100737pt;}
.ws2b{word-spacing:6.269835pt;}
.ws1c{word-spacing:6.637952pt;}
.ws12{word-spacing:6.960550pt;}
.ws35{word-spacing:6.961082pt;}
.ws39{word-spacing:7.757909pt;}
.ws10{word-spacing:11.424134pt;}
.ws38{word-spacing:13.230598pt;}
.ws2{word-spacing:13.230864pt;}
.ws21{word-spacing:13.231130pt;}
.ws6{word-spacing:13.337242pt;}
.ws27{word-spacing:13.868496pt;}
.wsf{word-spacing:15.876240pt;}
.ws3b{word-spacing:17.056337pt;}
.ws37{word-spacing:17.269147pt;}
.ws0{word-spacing:22.861245pt;}
.ws1{word-spacing:22.861520pt;}
.ws2e{word-spacing:63.696240pt;}
._14{margin-left:-6.408751pt;}
._b{margin-left:-5.154351pt;}
._3{margin-left:-3.719520pt;}
._0{margin-left:-2.295333pt;}
._1{margin-left:-1.376190pt;}
._e{width:2.674080pt;}
._d{width:7.981417pt;}
._7{width:10.575098pt;}
._4{width:12.498816pt;}
._f{width:14.193972pt;}
._5{width:16.578804pt;}
._9{width:18.066346pt;}
._c{width:19.341557pt;}
._11{width:21.148606pt;}
._8{width:22.051546pt;}
._13{width:23.496597pt;}
._10{width:24.655423pt;}
._2{width:28.920098pt;}
._16{width:31.881759pt;}
._15{width:32.958032pt;}
._12{width:35.654203pt;}
._a{width:53.136000pt;}
._6{width:63.760000pt;}
.fs4{font-size:31.882667pt;}
.fs3{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs2{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:56.149333pt;}
.y2d{bottom:69.497333pt;}
.y2c{bottom:82.781333pt;}
.y4c{bottom:96.000000pt;}
.y4b{bottom:110.545333pt;}
.y76{bottom:122.481333pt;}
.y2b{bottom:123.610667pt;}
.y4a{bottom:125.090667pt;}
.y2a{bottom:138.156000pt;}
.y49{bottom:139.636000pt;}
.y75{bottom:148.962667pt;}
.y29{bottom:152.701333pt;}
.y48{bottom:154.181333pt;}
.y74{bottom:163.508000pt;}
.y28{bottom:167.246667pt;}
.y27{bottom:181.792000pt;}
.y47{bottom:183.497333pt;}
.y73{bottom:189.988000pt;}
.y26{bottom:196.337333pt;}
.y72{bottom:204.534667pt;}
.y25{bottom:210.882667pt;}
.y46{bottom:222.816000pt;}
.y24{bottom:225.428000pt;}
.y71{bottom:231.014667pt;}
.y45{bottom:237.361333pt;}
.y23{bottom:239.973333pt;}
.y70{bottom:245.560000pt;}
.y44{bottom:251.906667pt;}
.y22{bottom:254.518667pt;}
.y6f{bottom:260.106667pt;}
.y43{bottom:266.452000pt;}
.y21{bottom:269.064000pt;}
.y42{bottom:280.997333pt;}
.y20{bottom:283.609333pt;}
.y6e{bottom:286.586667pt;}
.y41{bottom:295.542667pt;}
.y6d{bottom:301.132000pt;}
.y40{bottom:310.088000pt;}
.y1f{bottom:310.650667pt;}
.y3f{bottom:324.633333pt;}
.y6c{bottom:327.613333pt;}
.y3e{bottom:339.180000pt;}
.y1e{bottom:344.278667pt;}
.y6b{bottom:351.566667pt;}
.y3d{bottom:353.725333pt;}
.y1d{bottom:358.824000pt;}
.y1c{bottom:373.369333pt;}
.y3c{bottom:375.576000pt;}
.y1b{bottom:387.914667pt;}
.y3b{bottom:390.121333pt;}
.y6a{bottom:390.161333pt;}
.y1a{bottom:402.460000pt;}
.y3a{bottom:404.666667pt;}
.y69{bottom:404.706667pt;}
.y19{bottom:417.005333pt;}
.y39{bottom:419.212000pt;}
.y68{bottom:419.252000pt;}
.y38{bottom:433.758667pt;}
.y67{bottom:433.797333pt;}
.y66{bottom:448.342667pt;}
.y18{bottom:448.433333pt;}
.y37{bottom:455.609333pt;}
.y65{bottom:462.888000pt;}
.y36{bottom:470.154667pt;}
.y35{bottom:484.700000pt;}
.y64{bottom:494.148000pt;}
.y17{bottom:494.628000pt;}
.y16{bottom:509.173333pt;}
.y34{bottom:514.016000pt;}
.y15{bottom:523.718667pt;}
.y63{bottom:532.742667pt;}
.y14{bottom:538.265333pt;}
.y13{bottom:552.810667pt;}
.y33{bottom:553.334667pt;}
.y62{bottom:554.593333pt;}
.y12{bottom:567.356000pt;}
.y32{bottom:567.880000pt;}
.y61{bottom:576.445333pt;}
.y11{bottom:581.901333pt;}
.y31{bottom:582.425333pt;}
.y60{bottom:590.990667pt;}
.y10{bottom:596.446667pt;}
.y30{bottom:596.970667pt;}
.yf{bottom:610.992000pt;}
.y5f{bottom:622.249333pt;}
.ye{bottom:625.537333pt;}
.yd{bottom:640.082667pt;}
.y2f{bottom:645.658667pt;}
.yc{bottom:654.628000pt;}
.y2e{bottom:660.204000pt;}
.y5e{bottom:660.844000pt;}
.y5d{bottom:675.389333pt;}
.yb{bottom:686.788000pt;}
.y5c{bottom:689.934667pt;}
.y5b{bottom:704.480000pt;}
.y5a{bottom:719.025333pt;}
.y59{bottom:733.570667pt;}
.ya{bottom:741.697333pt;}
.y58{bottom:748.117333pt;}
.y9{bottom:756.242667pt;}
.y57{bottom:762.662667pt;}
.y8{bottom:770.788000pt;}
.y56{bottom:777.208000pt;}
.y7{bottom:785.333333pt;}
.y55{bottom:791.753333pt;}
.y6{bottom:799.878667pt;}
.y54{bottom:806.298667pt;}
.y5{bottom:814.424000pt;}
.y4{bottom:828.969333pt;}
.y53{bottom:837.558667pt;}
.y3{bottom:874.144000pt;}
.y52{bottom:876.152000pt;}
.y7a{bottom:877.908000pt;}
.y51{bottom:890.697333pt;}
.y79{bottom:892.453333pt;}
.y2{bottom:900.710667pt;}
.y50{bottom:905.242667pt;}
.y78{bottom:917.625333pt;}
.y4f{bottom:919.788000pt;}
.y1{bottom:927.278667pt;}
.y77{bottom:932.170667pt;}
.y4e{bottom:946.716000pt;}
.h2{height:36.770112pt;}
.h4{height:36.929520pt;}
.h5{height:44.121920pt;}
.h3{height:44.315424pt;}
.h6{height:46.904811pt;}
.h1{height:63.534827pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:144.000000pt;}
.xe{left:156.473333pt;}
.x1{left:157.644000pt;}
.x2{left:180.873333pt;}
.xb{left:191.594667pt;}
.x5{left:291.517333pt;}
.x6{left:308.952000pt;}
.x7{left:345.946667pt;}
.x8{left:349.605333pt;}
.x3{left:353.174667pt;}
.x4{left:373.968000pt;}
.xa{left:378.344000pt;}
.x9{left:394.716000pt;}
.xd{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; }
  