
    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_ce39aba3e75c8b658755f301.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_5388860df4ba10f4c70c8515.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_b9bd2bc5af404c13a6a97946.woff')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_e191348613ce16e4fd9a0657.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_a2fcb838aa0b02ed3a3d1c6e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_377be1e1fe8a852a2734ac3b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.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);}
.m1{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:24.474000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:14.826000px;}
.ls6{letter-spacing:16.639200px;}
.ls0{letter-spacing:22.680000px;}
.ls2{letter-spacing:80.597700px;}
.ls1{letter-spacing:117.786000px;}
.ls5{letter-spacing:188.597700px;}
.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;}
}
.wsd{word-spacing:-55.944000px;}
.ws4e{word-spacing:-46.386900px;}
.ws85{word-spacing:-38.670000px;}
.ws89{word-spacing:-38.668200px;}
.ws81{word-spacing:-38.666400px;}
.ws8c{word-spacing:-38.661300px;}
.ws55{word-spacing:-38.660400px;}
.ws6{word-spacing:-38.657700px;}
.ws5a{word-spacing:-38.654400px;}
.ws18{word-spacing:-38.653200px;}
.ws8b{word-spacing:-38.652000px;}
.ws5{word-spacing:-38.647800px;}
.ws35{word-spacing:-38.592000px;}
.ws7f{word-spacing:-38.585700px;}
.ws58{word-spacing:-38.579400px;}
.wsc{word-spacing:-38.454000px;}
.ws5b{word-spacing:-38.444400px;}
.ws88{word-spacing:-38.439600px;}
.ws3{word-spacing:-38.374200px;}
.ws9{word-spacing:-38.371500px;}
.ws8a{word-spacing:-38.166000px;}
.ws60{word-spacing:-38.162400px;}
.ws64{word-spacing:-38.160000px;}
.ws90{word-spacing:-38.157300px;}
.ws82{word-spacing:-38.156400px;}
.ws84{word-spacing:-38.154600px;}
.ws20{word-spacing:-38.150400px;}
.ws5e{word-spacing:-38.093100px;}
.ws8e{word-spacing:-38.087100px;}
.ws8f{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws40{word-spacing:-37.942200px;}
.ws70{word-spacing:-37.941300px;}
.ws4{word-spacing:-37.938600px;}
.ws59{word-spacing:-37.938300px;}
.ws87{word-spacing:-37.936800px;}
.ws2{word-spacing:-37.931400px;}
.ws7e{word-spacing:-37.930500px;}
.ws74{word-spacing:-37.929600px;}
.ws68{word-spacing:-37.927800px;}
.wsa{word-spacing:-37.923300px;}
.ws80{word-spacing:-37.868400px;}
.ws8d{word-spacing:-37.862400px;}
.ws86{word-spacing:-37.724400px;}
.ws39{word-spacing:-37.446000px;}
.wsb{word-spacing:-37.440000px;}
.wsf{word-spacing:-37.213200px;}
.ws83{word-spacing:-37.143000px;}
.ws7d{word-spacing:-36.720000px;}
.ws6f{word-spacing:-36.500400px;}
.ws7c{word-spacing:-36.496800px;}
.ws5d{word-spacing:-36.426600px;}
.ws3b{word-spacing:-36.363600px;}
.ws61{word-spacing:-35.996400px;}
.ws34{word-spacing:-35.282400px;}
.ws42{word-spacing:-35.280000px;}
.ws2e{word-spacing:-35.276400px;}
.ws15{word-spacing:-35.272800px;}
.ws43{word-spacing:-35.058600px;}
.ws16{word-spacing:-35.051400px;}
.ws63{word-spacing:-34.346400px;}
.ws62{word-spacing:-34.341900px;}
.ws10{word-spacing:-34.338600px;}
.ws37{word-spacing:-33.836400px;}
.ws13{word-spacing:-33.833700px;}
.ws56{word-spacing:-33.832500px;}
.ws1c{word-spacing:-33.822000px;}
.ws23{word-spacing:-33.626400px;}
.ws24{word-spacing:-33.624000px;}
.ws76{word-spacing:-33.622200px;}
.ws8{word-spacing:-33.547800px;}
.ws19{word-spacing:-33.542400px;}
.ws5c{word-spacing:-33.120000px;}
.ws7a{word-spacing:-33.116400px;}
.ws75{word-spacing:-32.902200px;}
.ws78{word-spacing:-32.893800px;}
.ws38{word-spacing:-32.400000px;}
.ws2f{word-spacing:-32.180400px;}
.ws66{word-spacing:-32.178600px;}
.ws2c{word-spacing:-31.797900px;}
.ws25{word-spacing:-31.791900px;}
.ws51{word-spacing:-31.790100px;}
.ws6b{word-spacing:-31.789500px;}
.ws48{word-spacing:-31.788300px;}
.ws4d{word-spacing:-31.782000px;}
.ws2a{word-spacing:-31.773300px;}
.ws47{word-spacing:-31.706100px;}
.ws2b{word-spacing:-31.689900px;}
.wse{word-spacing:-31.676400px;}
.ws52{word-spacing:-31.596900px;}
.ws29{word-spacing:-31.596000px;}
.ws49{word-spacing:-31.593300px;}
.ws6c{word-spacing:-31.567800px;}
.ws30{word-spacing:-31.455000px;}
.ws6a{word-spacing:-31.437600px;}
.ws3e{word-spacing:-31.388400px;}
.ws31{word-spacing:-31.244400px;}
.ws4a{word-spacing:-31.237500px;}
.ws4c{word-spacing:-31.231200px;}
.ws27{word-spacing:-31.071900px;}
.ws69{word-spacing:-31.071600px;}
.ws26{word-spacing:-31.070400px;}
.ws6e{word-spacing:-30.986100px;}
.ws50{word-spacing:-30.983400px;}
.ws41{word-spacing:-30.958200px;}
.ws54{word-spacing:-30.873300px;}
.ws14{word-spacing:-30.740400px;}
.ws71{word-spacing:-30.735000px;}
.ws4b{word-spacing:-30.347700px;}
.ws5f{word-spacing:-30.022200px;}
.ws3c{word-spacing:-30.008700px;}
.ws46{word-spacing:-29.625000px;}
.ws3a{word-spacing:-29.519100px;}
.ws1f{word-spacing:-29.516400px;}
.ws4f{word-spacing:-28.907700px;}
.ws3f{word-spacing:-28.578600px;}
.ws17{word-spacing:-28.575000px;}
.ws79{word-spacing:-28.569600px;}
.ws53{word-spacing:-28.187700px;}
.ws1d{word-spacing:-28.082400px;}
.ws1a{word-spacing:-27.844200px;}
.ws73{word-spacing:-26.646000px;}
.ws33{word-spacing:-26.640000px;}
.ws44{word-spacing:-26.636400px;}
.ws28{word-spacing:-26.555100px;}
.ws77{word-spacing:-26.420400px;}
.ws7b{word-spacing:-25.488000px;}
.ws45{word-spacing:-23.688000px;}
.ws36{word-spacing:-23.531400px;}
.ws12{word-spacing:-22.100400px;}
.ws32{word-spacing:-21.596400px;}
.ws1e{word-spacing:-18.498600px;}
.ws7{word-spacing:-18.472500px;}
.ws3d{word-spacing:-17.998200px;}
.ws57{word-spacing:-17.993700px;}
.ws1b{word-spacing:-17.056800px;}
.ws21{word-spacing:-16.554000px;}
.ws65{word-spacing:-16.112700px;}
.ws11{word-spacing:-15.120000px;}
.ws6d{word-spacing:-14.507700px;}
.ws72{word-spacing:-14.396400px;}
.ws22{word-spacing:-5.533200px;}
.ws67{word-spacing:-4.820400px;}
.ws2d{word-spacing:0.000000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._12{width:15.729000px;}
._5{width:16.897200px;}
._4{width:18.775800px;}
._11{width:19.852800px;}
._e{width:21.681000px;}
._7{width:22.890600px;}
._b{width:24.117000px;}
._6{width:25.696800px;}
._9{width:26.924400px;}
._a{width:28.915200px;}
._f{width:30.446700px;}
._14{width:32.040000px;}
._10{width:33.662400px;}
._1{width:36.000000px;}
._d{width:38.886000px;}
._c{width:40.240800px;}
._8{width:41.904000px;}
._13{width:52.336800px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.000000px;}
.fs2{font-size:46.800000px;}
.fs4{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y27{bottom:119.775000px;}
.y7e{bottom:141.196500px;}
.y26{bottom:158.115000px;}
.y4a{bottom:159.196500px;}
.y7d{bottom:161.896500px;}
.y25{bottom:175.396500px;}
.y49{bottom:176.475000px;}
.y69{bottom:193.755000px;}
.y7c{bottom:203.475000px;}
.y48{bottom:215.715000px;}
.y24{bottom:220.575000px;}
.y68{bottom:232.996500px;}
.y7b{bottom:245.236500px;}
.y47{bottom:254.055000px;}
.y7a{bottom:265.936500px;}
.y67{bottom:271.336500px;}
.y46{bottom:272.055000px;}
.y23{bottom:286.996500px;}
.y66{bottom:290.055000px;}
.y22{bottom:307.696500px;}
.y21{bottom:328.396500px;}
.y20{bottom:349.096500px;}
.y79{bottom:349.275000px;}
.y45{bottom:350.715000px;}
.y78{bottom:369.975000px;}
.y65{bottom:370.696500px;}
.y44{bottom:388.875000px;}
.y64{bottom:391.396500px;}
.y43{bottom:406.155000px;}
.y77{bottom:411.736500px;}
.y63{bottom:412.096500px;}
.y1f{bottom:432.436500px;}
.y62{bottom:432.795000px;}
.y42{bottom:445.575000px;}
.y1e{bottom:453.136500px;}
.y61{bottom:453.496500px;}
.y1d{bottom:473.836500px;}
.y60{bottom:474.196500px;}
.y41{bottom:483.736500px;}
.y1c{bottom:494.536500px;}
.y40{bottom:501.015000px;}
.y1b{bottom:515.236500px;}
.y5f{bottom:515.775000px;}
.y89{bottom:535.396500px;}
.y1a{bottom:535.936500px;}
.y88{bottom:556.096500px;}
.y19{bottom:556.636500px;}
.y5e{bottom:557.536500px;}
.y3f{bottom:558.436500px;}
.y18{bottom:577.336500px;}
.y5d{bottom:578.236500px;}
.y3e{bottom:579.136500px;}
.y87{bottom:597.675000px;}
.y5c{bottom:598.936500px;}
.y76{bottom:599.295000px;}
.y3d{bottom:599.836500px;}
.y86{bottom:618.375000px;}
.y5b{bottom:619.636500px;}
.y75{bottom:619.996500px;}
.y3c{bottom:620.536500px;}
.y5a{bottom:640.336500px;}
.y74{bottom:640.695000px;}
.y3b{bottom:641.236500px;}
.y85{bottom:660.136500px;}
.y17{bottom:660.675000px;}
.y59{bottom:661.036500px;}
.y73{bottom:661.396500px;}
.y3a{bottom:661.936500px;}
.y16{bottom:681.375000px;}
.y58{bottom:681.736500px;}
.y72{bottom:682.096500px;}
.y84{bottom:701.896500px;}
.y15{bottom:702.075000px;}
.y71{bottom:702.795000px;}
.y39{bottom:703.695000px;}
.y83{bottom:722.596500px;}
.y57{bottom:723.496500px;}
.y38{bottom:724.396500px;}
.y14{bottom:743.836500px;}
.y70{bottom:744.195000px;}
.y37{bottom:745.096500px;}
.y82{bottom:764.175000px;}
.y13{bottom:764.536500px;}
.y56{bottom:765.075000px;}
.y36{bottom:765.795000px;}
.y12{bottom:785.236500px;}
.y55{bottom:785.775000px;}
.y35{bottom:786.496500px;}
.y11{bottom:805.936500px;}
.y54{bottom:806.475000px;}
.y34{bottom:807.195000px;}
.y10{bottom:826.636500px;}
.y6f{bottom:827.536500px;}
.y33{bottom:827.895000px;}
.yf{bottom:847.336500px;}
.y53{bottom:848.236500px;}
.y32{bottom:848.596500px;}
.ye{bottom:868.036500px;}
.y52{bottom:868.936500px;}
.y31{bottom:869.295000px;}
.yd{bottom:888.736500px;}
.y81{bottom:889.095000px;}
.y51{bottom:889.636500px;}
.y30{bottom:889.995000px;}
.y6e{bottom:910.336500px;}
.y2f{bottom:910.695000px;}
.yc{bottom:930.495000px;}
.y80{bottom:930.675000px;}
.y6d{bottom:931.036500px;}
.y50{bottom:931.395000px;}
.y7f{bottom:951.375000px;}
.y6c{bottom:951.736500px;}
.y4f{bottom:952.095000px;}
.y2e{bottom:952.275000px;}
.yb{bottom:972.075000px;}
.y6b{bottom:972.436500px;}
.y4e{bottom:972.795000px;}
.y2d{bottom:972.975000px;}
.y6a{bottom:993.136500px;}
.y4d{bottom:993.495000px;}
.y2c{bottom:993.675000px;}
.ya{bottom:1013.836500px;}
.y4c{bottom:1014.195000px;}
.y2b{bottom:1014.375000px;}
.y4b{bottom:1034.895000px;}
.y2a{bottom:1035.075000px;}
.y9{bottom:1055.595000px;}
.y29{bottom:1055.775000px;}
.y28{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h7{height:26.526855px;}
.h8{height:40.755006px;}
.hc{height:40.761006px;}
.h9{height:41.481006px;}
.h3{height:45.095654px;}
.ha{height:47.406855px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.hb{height:56.312227px;}
.h6{height:56.991773px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.xd{left:132.120000px;}
.xf{left:136.620000px;}
.x9{left:154.620000px;}
.xb{left:157.500000px;}
.xe{left:159.120000px;}
.xc{left:165.060000px;}
.xa{left:181.620000px;}
.x4{left:184.500000px;}
.x6{left:216.720000px;}
.x3{left:470.025000px;}
.x8{left:510.120000px;}
.x7{left:621.000000px;}
.x5{left:686.520000px;}
.x2{left:731.160000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.754667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:13.178667pt;}
.ls6{letter-spacing:14.790400pt;}
.ls0{letter-spacing:20.160000pt;}
.ls2{letter-spacing:71.642400pt;}
.ls1{letter-spacing:104.698667pt;}
.ls5{letter-spacing:167.642400pt;}
.wsd{word-spacing:-49.728000pt;}
.ws4e{word-spacing:-41.232800pt;}
.ws85{word-spacing:-34.373333pt;}
.ws89{word-spacing:-34.371733pt;}
.ws81{word-spacing:-34.370133pt;}
.ws8c{word-spacing:-34.365600pt;}
.ws55{word-spacing:-34.364800pt;}
.ws6{word-spacing:-34.362400pt;}
.ws5a{word-spacing:-34.359467pt;}
.ws18{word-spacing:-34.358400pt;}
.ws8b{word-spacing:-34.357333pt;}
.ws5{word-spacing:-34.353600pt;}
.ws35{word-spacing:-34.304000pt;}
.ws7f{word-spacing:-34.298400pt;}
.ws58{word-spacing:-34.292800pt;}
.wsc{word-spacing:-34.181333pt;}
.ws5b{word-spacing:-34.172800pt;}
.ws88{word-spacing:-34.168533pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9{word-spacing:-34.108000pt;}
.ws8a{word-spacing:-33.925333pt;}
.ws60{word-spacing:-33.922133pt;}
.ws64{word-spacing:-33.920000pt;}
.ws90{word-spacing:-33.917600pt;}
.ws82{word-spacing:-33.916800pt;}
.ws84{word-spacing:-33.915200pt;}
.ws20{word-spacing:-33.911467pt;}
.ws5e{word-spacing:-33.860533pt;}
.ws8e{word-spacing:-33.855200pt;}
.ws8f{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws40{word-spacing:-33.726400pt;}
.ws70{word-spacing:-33.725600pt;}
.ws4{word-spacing:-33.723200pt;}
.ws59{word-spacing:-33.722933pt;}
.ws87{word-spacing:-33.721600pt;}
.ws2{word-spacing:-33.716800pt;}
.ws7e{word-spacing:-33.716000pt;}
.ws74{word-spacing:-33.715200pt;}
.ws68{word-spacing:-33.713600pt;}
.wsa{word-spacing:-33.709600pt;}
.ws80{word-spacing:-33.660800pt;}
.ws8d{word-spacing:-33.655467pt;}
.ws86{word-spacing:-33.532800pt;}
.ws39{word-spacing:-33.285333pt;}
.wsb{word-spacing:-33.280000pt;}
.wsf{word-spacing:-33.078400pt;}
.ws83{word-spacing:-33.016000pt;}
.ws7d{word-spacing:-32.640000pt;}
.ws6f{word-spacing:-32.444800pt;}
.ws7c{word-spacing:-32.441600pt;}
.ws5d{word-spacing:-32.379200pt;}
.ws3b{word-spacing:-32.323200pt;}
.ws61{word-spacing:-31.996800pt;}
.ws34{word-spacing:-31.362133pt;}
.ws42{word-spacing:-31.360000pt;}
.ws2e{word-spacing:-31.356800pt;}
.ws15{word-spacing:-31.353600pt;}
.ws43{word-spacing:-31.163200pt;}
.ws16{word-spacing:-31.156800pt;}
.ws63{word-spacing:-30.530133pt;}
.ws62{word-spacing:-30.526133pt;}
.ws10{word-spacing:-30.523200pt;}
.ws37{word-spacing:-30.076800pt;}
.ws13{word-spacing:-30.074400pt;}
.ws56{word-spacing:-30.073333pt;}
.ws1c{word-spacing:-30.064000pt;}
.ws23{word-spacing:-29.890133pt;}
.ws24{word-spacing:-29.888000pt;}
.ws76{word-spacing:-29.886400pt;}
.ws8{word-spacing:-29.820267pt;}
.ws19{word-spacing:-29.815467pt;}
.ws5c{word-spacing:-29.440000pt;}
.ws7a{word-spacing:-29.436800pt;}
.ws75{word-spacing:-29.246400pt;}
.ws78{word-spacing:-29.238933pt;}
.ws38{word-spacing:-28.800000pt;}
.ws2f{word-spacing:-28.604800pt;}
.ws66{word-spacing:-28.603200pt;}
.ws2c{word-spacing:-28.264800pt;}
.ws25{word-spacing:-28.259467pt;}
.ws51{word-spacing:-28.257867pt;}
.ws6b{word-spacing:-28.257333pt;}
.ws48{word-spacing:-28.256267pt;}
.ws4d{word-spacing:-28.250667pt;}
.ws2a{word-spacing:-28.242933pt;}
.ws47{word-spacing:-28.183200pt;}
.ws2b{word-spacing:-28.168800pt;}
.wse{word-spacing:-28.156800pt;}
.ws52{word-spacing:-28.086133pt;}
.ws29{word-spacing:-28.085333pt;}
.ws49{word-spacing:-28.082933pt;}
.ws6c{word-spacing:-28.060267pt;}
.ws30{word-spacing:-27.960000pt;}
.ws6a{word-spacing:-27.944533pt;}
.ws3e{word-spacing:-27.900800pt;}
.ws31{word-spacing:-27.772800pt;}
.ws4a{word-spacing:-27.766667pt;}
.ws4c{word-spacing:-27.761067pt;}
.ws27{word-spacing:-27.619467pt;}
.ws69{word-spacing:-27.619200pt;}
.ws26{word-spacing:-27.618133pt;}
.ws6e{word-spacing:-27.543200pt;}
.ws50{word-spacing:-27.540800pt;}
.ws41{word-spacing:-27.518400pt;}
.ws54{word-spacing:-27.442933pt;}
.ws14{word-spacing:-27.324800pt;}
.ws71{word-spacing:-27.320000pt;}
.ws4b{word-spacing:-26.975733pt;}
.ws5f{word-spacing:-26.686400pt;}
.ws3c{word-spacing:-26.674400pt;}
.ws46{word-spacing:-26.333333pt;}
.ws3a{word-spacing:-26.239200pt;}
.ws1f{word-spacing:-26.236800pt;}
.ws4f{word-spacing:-25.695733pt;}
.ws3f{word-spacing:-25.403200pt;}
.ws17{word-spacing:-25.400000pt;}
.ws79{word-spacing:-25.395200pt;}
.ws53{word-spacing:-25.055733pt;}
.ws1d{word-spacing:-24.962133pt;}
.ws1a{word-spacing:-24.750400pt;}
.ws73{word-spacing:-23.685333pt;}
.ws33{word-spacing:-23.680000pt;}
.ws44{word-spacing:-23.676800pt;}
.ws28{word-spacing:-23.604533pt;}
.ws77{word-spacing:-23.484800pt;}
.ws7b{word-spacing:-22.656000pt;}
.ws45{word-spacing:-21.056000pt;}
.ws36{word-spacing:-20.916800pt;}
.ws12{word-spacing:-19.644800pt;}
.ws32{word-spacing:-19.196800pt;}
.ws1e{word-spacing:-16.443200pt;}
.ws7{word-spacing:-16.420000pt;}
.ws3d{word-spacing:-15.998400pt;}
.ws57{word-spacing:-15.994400pt;}
.ws1b{word-spacing:-15.161600pt;}
.ws21{word-spacing:-14.714667pt;}
.ws65{word-spacing:-14.322400pt;}
.ws11{word-spacing:-13.440000pt;}
.ws6d{word-spacing:-12.895733pt;}
.ws72{word-spacing:-12.796800pt;}
.ws22{word-spacing:-4.918400pt;}
.ws67{word-spacing:-4.284800pt;}
.ws2d{word-spacing:0.000000pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._12{width:13.981333pt;}
._5{width:15.019733pt;}
._4{width:16.689600pt;}
._11{width:17.646933pt;}
._e{width:19.272000pt;}
._7{width:20.347200pt;}
._b{width:21.437333pt;}
._6{width:22.841600pt;}
._9{width:23.932800pt;}
._a{width:25.702400pt;}
._f{width:27.063733pt;}
._14{width:28.480000pt;}
._10{width:29.922133pt;}
._1{width:32.000000pt;}
._d{width:34.565333pt;}
._c{width:35.769600pt;}
._8{width:37.248000pt;}
._13{width:46.521600pt;}
._0{width:544.128000pt;}
.fs3{font-size:34.666667pt;}
.fs2{font-size:41.600000pt;}
.fs4{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y27{bottom:106.466667pt;}
.y7e{bottom:125.508000pt;}
.y26{bottom:140.546667pt;}
.y4a{bottom:141.508000pt;}
.y7d{bottom:143.908000pt;}
.y25{bottom:155.908000pt;}
.y49{bottom:156.866667pt;}
.y69{bottom:172.226667pt;}
.y7c{bottom:180.866667pt;}
.y48{bottom:191.746667pt;}
.y24{bottom:196.066667pt;}
.y68{bottom:207.108000pt;}
.y7b{bottom:217.988000pt;}
.y47{bottom:225.826667pt;}
.y7a{bottom:236.388000pt;}
.y67{bottom:241.188000pt;}
.y46{bottom:241.826667pt;}
.y23{bottom:255.108000pt;}
.y66{bottom:257.826667pt;}
.y22{bottom:273.508000pt;}
.y21{bottom:291.908000pt;}
.y20{bottom:310.308000pt;}
.y79{bottom:310.466667pt;}
.y45{bottom:311.746667pt;}
.y78{bottom:328.866667pt;}
.y65{bottom:329.508000pt;}
.y44{bottom:345.666667pt;}
.y64{bottom:347.908000pt;}
.y43{bottom:361.026667pt;}
.y77{bottom:365.988000pt;}
.y63{bottom:366.308000pt;}
.y1f{bottom:384.388000pt;}
.y62{bottom:384.706667pt;}
.y42{bottom:396.066667pt;}
.y1e{bottom:402.788000pt;}
.y61{bottom:403.108000pt;}
.y1d{bottom:421.188000pt;}
.y60{bottom:421.508000pt;}
.y41{bottom:429.988000pt;}
.y1c{bottom:439.588000pt;}
.y40{bottom:445.346667pt;}
.y1b{bottom:457.988000pt;}
.y5f{bottom:458.466667pt;}
.y89{bottom:475.908000pt;}
.y1a{bottom:476.388000pt;}
.y88{bottom:494.308000pt;}
.y19{bottom:494.788000pt;}
.y5e{bottom:495.588000pt;}
.y3f{bottom:496.388000pt;}
.y18{bottom:513.188000pt;}
.y5d{bottom:513.988000pt;}
.y3e{bottom:514.788000pt;}
.y87{bottom:531.266667pt;}
.y5c{bottom:532.388000pt;}
.y76{bottom:532.706667pt;}
.y3d{bottom:533.188000pt;}
.y86{bottom:549.666667pt;}
.y5b{bottom:550.788000pt;}
.y75{bottom:551.108000pt;}
.y3c{bottom:551.588000pt;}
.y5a{bottom:569.188000pt;}
.y74{bottom:569.506667pt;}
.y3b{bottom:569.988000pt;}
.y85{bottom:586.788000pt;}
.y17{bottom:587.266667pt;}
.y59{bottom:587.588000pt;}
.y73{bottom:587.908000pt;}
.y3a{bottom:588.388000pt;}
.y16{bottom:605.666667pt;}
.y58{bottom:605.988000pt;}
.y72{bottom:606.308000pt;}
.y84{bottom:623.908000pt;}
.y15{bottom:624.066667pt;}
.y71{bottom:624.706667pt;}
.y39{bottom:625.506667pt;}
.y83{bottom:642.308000pt;}
.y57{bottom:643.108000pt;}
.y38{bottom:643.908000pt;}
.y14{bottom:661.188000pt;}
.y70{bottom:661.506667pt;}
.y37{bottom:662.308000pt;}
.y82{bottom:679.266667pt;}
.y13{bottom:679.588000pt;}
.y56{bottom:680.066667pt;}
.y36{bottom:680.706667pt;}
.y12{bottom:697.988000pt;}
.y55{bottom:698.466667pt;}
.y35{bottom:699.108000pt;}
.y11{bottom:716.388000pt;}
.y54{bottom:716.866667pt;}
.y34{bottom:717.506667pt;}
.y10{bottom:734.788000pt;}
.y6f{bottom:735.588000pt;}
.y33{bottom:735.906667pt;}
.yf{bottom:753.188000pt;}
.y53{bottom:753.988000pt;}
.y32{bottom:754.308000pt;}
.ye{bottom:771.588000pt;}
.y52{bottom:772.388000pt;}
.y31{bottom:772.706667pt;}
.yd{bottom:789.988000pt;}
.y81{bottom:790.306667pt;}
.y51{bottom:790.788000pt;}
.y30{bottom:791.106667pt;}
.y6e{bottom:809.188000pt;}
.y2f{bottom:809.506667pt;}
.yc{bottom:827.106667pt;}
.y80{bottom:827.266667pt;}
.y6d{bottom:827.588000pt;}
.y50{bottom:827.906667pt;}
.y7f{bottom:845.666667pt;}
.y6c{bottom:845.988000pt;}
.y4f{bottom:846.306667pt;}
.y2e{bottom:846.466667pt;}
.yb{bottom:864.066667pt;}
.y6b{bottom:864.388000pt;}
.y4e{bottom:864.706667pt;}
.y2d{bottom:864.866667pt;}
.y6a{bottom:882.788000pt;}
.y4d{bottom:883.106667pt;}
.y2c{bottom:883.266667pt;}
.ya{bottom:901.188000pt;}
.y4c{bottom:901.506667pt;}
.y2b{bottom:901.666667pt;}
.y4b{bottom:919.906667pt;}
.y2a{bottom:920.066667pt;}
.y9{bottom:938.306667pt;}
.y29{bottom:938.466667pt;}
.y28{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h7{height:23.579427pt;}
.h8{height:36.226672pt;}
.hc{height:36.232005pt;}
.h9{height:36.872005pt;}
.h3{height:40.085026pt;}
.ha{height:42.139427pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.hb{height:50.055313pt;}
.h6{height:50.659354pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.xd{left:117.440000pt;}
.xf{left:121.440000pt;}
.x9{left:137.440000pt;}
.xb{left:140.000000pt;}
.xe{left:141.440000pt;}
.xc{left:146.720000pt;}
.xa{left:161.440000pt;}
.x4{left:164.000000pt;}
.x6{left:192.640000pt;}
.x3{left:417.800000pt;}
.x8{left:453.440000pt;}
.x7{left:552.000000pt;}
.x5{left:610.240000pt;}
.x2{left:649.920000pt;}
}




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