
    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_aa5bb836fd1bedfcc564fc30.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_694d3f72f2115a6ec04c6cbf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5f266a9c81e2d61d0af202bc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_9a96cc607139c11d8ab8447f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_8d4ecdb83747e98b3b5fdc6d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_33c89dac5b4186fc25f6a14d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1c66d593c52d051dd0c52da.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a315d189e54cd583c8fdee16.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-1.494000px;}
.ls1{letter-spacing:-1.176000px;}
.ls5{letter-spacing:-1.134000px;}
.ls2a{letter-spacing:-1.080000px;}
.ls22{letter-spacing:-0.822000px;}
.ls20{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.666000px;}
.ls1e{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls17{letter-spacing:-0.413400px;}
.ls16{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.259800px;}
.ls2{letter-spacing:-0.208200px;}
.ls18{letter-spacing:-0.206400px;}
.ls1f{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls2c{letter-spacing:0.153600px;}
.ls15{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls25{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.460200px;}
.ls2d{letter-spacing:0.466800px;}
.ls29{letter-spacing:0.513600px;}
.ls8{letter-spacing:0.666000px;}
.ls14{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.828000px;}
.ls4{letter-spacing:1.080000px;}
.ls10{letter-spacing:3.060000px;}
.ls2b{letter-spacing:8.100000px;}
.ls26{letter-spacing:11.466720px;}
.ls11{letter-spacing:12.420000px;}
.ls23{letter-spacing:13.860000px;}
.ls27{letter-spacing:16.740000px;}
.ls13{letter-spacing:21.060000px;}
.ls12{letter-spacing:23.940000px;}
.ls1c{letter-spacing:24.660000px;}
.ls24{letter-spacing:41.706720px;}
.lsc{letter-spacing:192.330720px;}
.lsa{letter-spacing:210.330720px;}
.lsb{letter-spacing:215.370720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.020000px;}
.ws5{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.606000px;}
.ws1a{word-spacing:-15.453600px;}
.ws1d{word-spacing:-15.406800px;}
.ws12{word-spacing:-15.400200px;}
.ws0{word-spacing:-15.384000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.146400px;}
.ws1c{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.wse{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.526600px;}
.ws11{word-spacing:-14.479800px;}
.ws13{word-spacing:-14.328000px;}
.ws6{word-spacing:-14.274000px;}
.ws15{word-spacing:-14.166000px;}
.ws18{word-spacing:-14.118000px;}
.ws1b{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.806000px;}
.wsf{word-spacing:-13.446000px;}
.ws9{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._6{margin-left:-594.529920px;}
._7{margin-left:-4.309200px;}
._9{margin-left:-2.388480px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._b{width:2.850240px;}
._a{width:3.884400px;}
._e{width:5.800320px;}
._d{width:6.872400px;}
._12{width:8.839200px;}
._10{width:10.637280px;}
._11{width:12.151440px;}
._17{width:13.217040px;}
._c{width:16.085520px;}
._14{width:17.748720px;}
._18{width:18.853200px;}
._1b{width:20.181360px;}
._f{width:21.708480px;}
._1c{width:23.234400px;}
._1a{width:24.350400px;}
._19{width:25.446480px;}
._16{width:27.047280px;}
._15{width:28.307760px;}
._1d{width:31.903920px;}
._1e{width:33.169440px;}
._13{width:34.645200px;}
._21{width:42.310080px;}
._26{width:46.510560px;}
._24{width:57.269760px;}
._25{width:58.479840px;}
._20{width:62.606880px;}
._1f{width:63.769440px;}
._23{width:65.676240px;}
._22{width:67.170240px;}
._28{width:105.681360px;}
._27{width:106.731360px;}
._8{width:1836.600000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:10.800000px;}
.yb8{bottom:30.600000px;}
.yb5{bottom:34.920000px;}
.yb7{bottom:50.580000px;}
.y6{bottom:60.156000px;}
.yb6{bottom:70.374000px;}
.y9c{bottom:87.336000px;}
.y35{bottom:90.036000px;}
.yb4{bottom:92.556000px;}
.yb1{bottom:94.356000px;}
.y6c{bottom:96.336000px;}
.yb3{bottom:96.516000px;}
.y9b{bottom:107.136000px;}
.y34{bottom:110.016000px;}
.yb2{bottom:113.076000px;}
.yb0{bottom:114.336000px;}
.y6b{bottom:116.136000px;}
.y9a{bottom:126.936000px;}
.y33{bottom:129.816000px;}
.yaf{bottom:134.136000px;}
.y6a{bottom:135.936000px;}
.y99{bottom:146.736000px;}
.y32{bottom:149.616000px;}
.yae{bottom:153.930000px;}
.y69{bottom:155.730000px;}
.y98{bottom:166.530000px;}
.y31{bottom:169.410000px;}
.yad{bottom:173.730000px;}
.y68{bottom:175.530000px;}
.y97{bottom:186.510000px;}
.y30{bottom:189.210000px;}
.yac{bottom:193.530000px;}
.y67{bottom:195.510000px;}
.y96{bottom:206.310000px;}
.y2f{bottom:209.190000px;}
.yab{bottom:213.510000px;}
.y66{bottom:215.310000px;}
.y95{bottom:226.110000px;}
.y2e{bottom:228.990000px;}
.yaa{bottom:233.310000px;}
.y65{bottom:244.110000px;}
.y94{bottom:245.910000px;}
.y2d{bottom:248.790000px;}
.ya9{bottom:253.110000px;}
.y64{bottom:263.910000px;}
.y93{bottom:265.710000px;}
.y2c{bottom:268.590000px;}
.ya8{bottom:272.910000px;}
.y63{bottom:283.755000px;}
.y92{bottom:285.735000px;}
.y2b{bottom:288.435000px;}
.ya7{bottom:292.755000px;}
.y62{bottom:303.735000px;}
.y91{bottom:305.535000px;}
.y2a{bottom:308.415000px;}
.ya6{bottom:312.735000px;}
.y61{bottom:323.535000px;}
.y90{bottom:325.335000px;}
.y29{bottom:328.215000px;}
.ya5{bottom:332.535000px;}
.y60{bottom:343.335000px;}
.y8f{bottom:345.135000px;}
.y28{bottom:348.015000px;}
.ya4{bottom:352.335000px;}
.y5f{bottom:363.135000px;}
.y8e{bottom:364.935000px;}
.y27{bottom:367.815000px;}
.ya3{bottom:372.135000px;}
.y5e{bottom:382.935000px;}
.y8d{bottom:384.915000px;}
.y26{bottom:387.615000px;}
.ya2{bottom:391.935000px;}
.y5d{bottom:402.915000px;}
.y8c{bottom:404.715000px;}
.y25{bottom:407.595000px;}
.ya1{bottom:411.915000px;}
.y5c{bottom:422.715000px;}
.y8b{bottom:424.515000px;}
.y24{bottom:427.395000px;}
.ya0{bottom:431.715000px;}
.y5b{bottom:442.515000px;}
.y8a{bottom:444.315000px;}
.y23{bottom:447.195000px;}
.y9f{bottom:451.515000px;}
.y5a{bottom:462.315000px;}
.y89{bottom:464.115000px;}
.y22{bottom:466.995000px;}
.y9e{bottom:471.315000px;}
.y59{bottom:482.115000px;}
.y88{bottom:484.095000px;}
.y21{bottom:486.795000px;}
.y9d{bottom:491.115000px;}
.y87{bottom:503.895000px;}
.y20{bottom:506.775000px;}
.y58{bottom:511.095000px;}
.y86{bottom:523.695000px;}
.y1f{bottom:526.575000px;}
.y57{bottom:530.895000px;}
.y85{bottom:543.495000px;}
.y1e{bottom:546.375000px;}
.y56{bottom:550.695000px;}
.y84{bottom:563.295000px;}
.y1d{bottom:566.205000px;}
.y55{bottom:570.525000px;}
.y83{bottom:583.305000px;}
.y1c{bottom:586.005000px;}
.y54{bottom:590.325000px;}
.y82{bottom:603.105000px;}
.y1b{bottom:605.985000px;}
.y53{bottom:610.305000px;}
.y81{bottom:622.905000px;}
.y1a{bottom:625.785000px;}
.y52{bottom:630.105000px;}
.y80{bottom:642.705000px;}
.y19{bottom:647.745000px;}
.y51{bottom:649.905000px;}
.y7f{bottom:662.505000px;}
.y50{bottom:669.705000px;}
.y18{bottom:676.725000px;}
.y7e{bottom:682.485000px;}
.y4f{bottom:689.505000px;}
.y17{bottom:696.525000px;}
.y4e{bottom:709.485000px;}
.y7d{bottom:711.285000px;}
.y16{bottom:716.325000px;}
.y4d{bottom:729.285000px;}
.y7c{bottom:731.085000px;}
.y15{bottom:736.125000px;}
.y4c{bottom:749.085000px;}
.y7b{bottom:750.885000px;}
.y14{bottom:755.925000px;}
.y4b{bottom:768.885000px;}
.y7a{bottom:770.685000px;}
.y13{bottom:775.905000px;}
.y4a{bottom:788.685000px;}
.y79{bottom:790.665000px;}
.y12{bottom:795.705000px;}
.y49{bottom:808.665000px;}
.y78{bottom:810.465000px;}
.y11{bottom:815.505000px;}
.y48{bottom:828.465000px;}
.y77{bottom:830.265000px;}
.y10{bottom:835.305000px;}
.y47{bottom:848.310000px;}
.yf{bottom:855.150000px;}
.y76{bottom:859.110000px;}
.y46{bottom:868.110000px;}
.ye{bottom:875.130000px;}
.y75{bottom:878.910000px;}
.y45{bottom:887.910000px;}
.yd{bottom:894.930000px;}
.y74{bottom:898.890000px;}
.y44{bottom:907.890000px;}
.yc{bottom:914.730000px;}
.y73{bottom:918.690000px;}
.y43{bottom:927.690000px;}
.yb{bottom:936.870000px;}
.y72{bottom:938.490000px;}
.y42{bottom:947.490000px;}
.ya{bottom:956.670000px;}
.y71{bottom:958.290000px;}
.y41{bottom:967.290000px;}
.y9{bottom:977.010000px;}
.y70{bottom:978.090000px;}
.y40{bottom:987.090000px;}
.y6f{bottom:998.070000px;}
.y8{bottom:998.250000px;}
.y3f{bottom:1007.070000px;}
.y6e{bottom:1017.870000px;}
.y7{bottom:1021.830000px;}
.y3e{bottom:1026.870000px;}
.y6d{bottom:1037.670000px;}
.y3d{bottom:1046.670000px;}
.y5{bottom:1060.170000px;}
.y3c{bottom:1066.470000px;}
.y3b{bottom:1086.270000px;}
.y4{bottom:1090.950000px;}
.y3a{bottom:1106.250000px;}
.y3{bottom:1121.730000px;}
.y39{bottom:1126.050000px;}
.y38{bottom:1145.880000px;}
.y2{bottom:1152.720000px;}
.y37{bottom:1165.680000px;}
.y1{bottom:1186.560000px;}
.y36{bottom:1193.220000px;}
.hc{height:2.826563px;}
.ha{height:43.215117px;}
.h7{height:58.621992px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.h9{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h8{height:67.824844px;}
.hb{height:84.420000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.740000px;}
.x12{left:49.499987px;}
.x1{left:54.179987px;}
.x1e{left:80.999987px;}
.x11{left:96.875987px;}
.x2{left:108.035987px;}
.x1d{left:118.115987px;}
.x13{left:173.909987px;}
.x1f{left:191.370000px;}
.x20{left:264.810000px;}
.x14{left:412.994987px;}
.x3{left:418.934987px;}
.x15{left:423.254987px;}
.x4{left:432.074987px;}
.x16{left:452.054987px;}
.x5{left:453.674987px;}
.x17{left:462.134987px;}
.x6{left:467.174987px;}
.x18{left:484.664987px;}
.x19{left:494.744987px;}
.x7{left:513.824987px;}
.x8{left:527.144987px;}
.x1a{left:528.224987px;}
.x1b{left:538.304987px;}
.x9{left:597.704987px;}
.x1c{left:606.884987px;}
.xa{left:611.024987px;}
.xb{left:627.584987px;}
.xc{left:640.904987px;}
.xd{left:685.229987px;}
.xe{left:698.549987px;}
.xf{left:709.349987px;}
.x10{left:722.669987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-1.328000pt;}
.ls1{letter-spacing:-1.045333pt;}
.ls5{letter-spacing:-1.008000pt;}
.ls2a{letter-spacing:-0.960000pt;}
.ls22{letter-spacing:-0.730667pt;}
.ls20{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.592000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls17{letter-spacing:-0.367467pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:-0.185067pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls1f{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls2c{letter-spacing:0.136533pt;}
.ls15{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls25{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.409067pt;}
.ls2d{letter-spacing:0.414933pt;}
.ls29{letter-spacing:0.456533pt;}
.ls8{letter-spacing:0.592000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.736000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls10{letter-spacing:2.720000pt;}
.ls2b{letter-spacing:7.200000pt;}
.ls26{letter-spacing:10.192640pt;}
.ls11{letter-spacing:11.040000pt;}
.ls23{letter-spacing:12.320000pt;}
.ls27{letter-spacing:14.880000pt;}
.ls13{letter-spacing:18.720000pt;}
.ls12{letter-spacing:21.280000pt;}
.ls1c{letter-spacing:21.920000pt;}
.ls24{letter-spacing:37.072640pt;}
.lsc{letter-spacing:170.960640pt;}
.lsa{letter-spacing:186.960640pt;}
.lsb{letter-spacing:191.440640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.240000pt;}
.ws5{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.872000pt;}
.ws1a{word-spacing:-13.736533pt;}
.ws1d{word-spacing:-13.694933pt;}
.ws12{word-spacing:-13.689067pt;}
.ws0{word-spacing:-13.674667pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.463467pt;}
.ws1c{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.096533pt;}
.ws19{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.912533pt;}
.ws11{word-spacing:-12.870933pt;}
.ws13{word-spacing:-12.736000pt;}
.ws6{word-spacing:-12.688000pt;}
.ws15{word-spacing:-12.592000pt;}
.ws18{word-spacing:-12.549333pt;}
.ws1b{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.272000pt;}
.wsf{word-spacing:-11.952000pt;}
.ws9{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._6{margin-left:-528.471040pt;}
._7{margin-left:-3.830400pt;}
._9{margin-left:-2.123093pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._b{width:2.533547pt;}
._a{width:3.452800pt;}
._e{width:5.155840pt;}
._d{width:6.108800pt;}
._12{width:7.857067pt;}
._10{width:9.455360pt;}
._11{width:10.801280pt;}
._17{width:11.748480pt;}
._c{width:14.298240pt;}
._14{width:15.776640pt;}
._18{width:16.758400pt;}
._1b{width:17.938987pt;}
._f{width:19.296427pt;}
._1c{width:20.652800pt;}
._1a{width:21.644800pt;}
._19{width:22.619093pt;}
._16{width:24.042027pt;}
._15{width:25.162453pt;}
._1d{width:28.359040pt;}
._1e{width:29.483947pt;}
._13{width:30.795733pt;}
._21{width:37.608960pt;}
._26{width:41.342720pt;}
._24{width:50.906453pt;}
._25{width:51.982080pt;}
._20{width:55.650560pt;}
._1f{width:56.683947pt;}
._23{width:58.378880pt;}
._22{width:59.706880pt;}
._28{width:93.938987pt;}
._27{width:94.872320pt;}
._8{width:1632.533333pt;}
.fs3{font-size:2.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:9.600000pt;}
.yb8{bottom:27.200000pt;}
.yb5{bottom:31.040000pt;}
.yb7{bottom:44.960000pt;}
.y6{bottom:53.472000pt;}
.yb6{bottom:62.554667pt;}
.y9c{bottom:77.632000pt;}
.y35{bottom:80.032000pt;}
.yb4{bottom:82.272000pt;}
.yb1{bottom:83.872000pt;}
.y6c{bottom:85.632000pt;}
.yb3{bottom:85.792000pt;}
.y9b{bottom:95.232000pt;}
.y34{bottom:97.792000pt;}
.yb2{bottom:100.512000pt;}
.yb0{bottom:101.632000pt;}
.y6b{bottom:103.232000pt;}
.y9a{bottom:112.832000pt;}
.y33{bottom:115.392000pt;}
.yaf{bottom:119.232000pt;}
.y6a{bottom:120.832000pt;}
.y99{bottom:130.432000pt;}
.y32{bottom:132.992000pt;}
.yae{bottom:136.826667pt;}
.y69{bottom:138.426667pt;}
.y98{bottom:148.026667pt;}
.y31{bottom:150.586667pt;}
.yad{bottom:154.426667pt;}
.y68{bottom:156.026667pt;}
.y97{bottom:165.786667pt;}
.y30{bottom:168.186667pt;}
.yac{bottom:172.026667pt;}
.y67{bottom:173.786667pt;}
.y96{bottom:183.386667pt;}
.y2f{bottom:185.946667pt;}
.yab{bottom:189.786667pt;}
.y66{bottom:191.386667pt;}
.y95{bottom:200.986667pt;}
.y2e{bottom:203.546667pt;}
.yaa{bottom:207.386667pt;}
.y65{bottom:216.986667pt;}
.y94{bottom:218.586667pt;}
.y2d{bottom:221.146667pt;}
.ya9{bottom:224.986667pt;}
.y64{bottom:234.586667pt;}
.y93{bottom:236.186667pt;}
.y2c{bottom:238.746667pt;}
.ya8{bottom:242.586667pt;}
.y63{bottom:252.226667pt;}
.y92{bottom:253.986667pt;}
.y2b{bottom:256.386667pt;}
.ya7{bottom:260.226667pt;}
.y62{bottom:269.986667pt;}
.y91{bottom:271.586667pt;}
.y2a{bottom:274.146667pt;}
.ya6{bottom:277.986667pt;}
.y61{bottom:287.586667pt;}
.y90{bottom:289.186667pt;}
.y29{bottom:291.746667pt;}
.ya5{bottom:295.586667pt;}
.y60{bottom:305.186667pt;}
.y8f{bottom:306.786667pt;}
.y28{bottom:309.346667pt;}
.ya4{bottom:313.186667pt;}
.y5f{bottom:322.786667pt;}
.y8e{bottom:324.386667pt;}
.y27{bottom:326.946667pt;}
.ya3{bottom:330.786667pt;}
.y5e{bottom:340.386667pt;}
.y8d{bottom:342.146667pt;}
.y26{bottom:344.546667pt;}
.ya2{bottom:348.386667pt;}
.y5d{bottom:358.146667pt;}
.y8c{bottom:359.746667pt;}
.y25{bottom:362.306667pt;}
.ya1{bottom:366.146667pt;}
.y5c{bottom:375.746667pt;}
.y8b{bottom:377.346667pt;}
.y24{bottom:379.906667pt;}
.ya0{bottom:383.746667pt;}
.y5b{bottom:393.346667pt;}
.y8a{bottom:394.946667pt;}
.y23{bottom:397.506667pt;}
.y9f{bottom:401.346667pt;}
.y5a{bottom:410.946667pt;}
.y89{bottom:412.546667pt;}
.y22{bottom:415.106667pt;}
.y9e{bottom:418.946667pt;}
.y59{bottom:428.546667pt;}
.y88{bottom:430.306667pt;}
.y21{bottom:432.706667pt;}
.y9d{bottom:436.546667pt;}
.y87{bottom:447.906667pt;}
.y20{bottom:450.466667pt;}
.y58{bottom:454.306667pt;}
.y86{bottom:465.506667pt;}
.y1f{bottom:468.066667pt;}
.y57{bottom:471.906667pt;}
.y85{bottom:483.106667pt;}
.y1e{bottom:485.666667pt;}
.y56{bottom:489.506667pt;}
.y84{bottom:500.706667pt;}
.y1d{bottom:503.293333pt;}
.y55{bottom:507.133333pt;}
.y83{bottom:518.493333pt;}
.y1c{bottom:520.893333pt;}
.y54{bottom:524.733333pt;}
.y82{bottom:536.093333pt;}
.y1b{bottom:538.653333pt;}
.y53{bottom:542.493333pt;}
.y81{bottom:553.693333pt;}
.y1a{bottom:556.253333pt;}
.y52{bottom:560.093333pt;}
.y80{bottom:571.293333pt;}
.y19{bottom:575.773333pt;}
.y51{bottom:577.693333pt;}
.y7f{bottom:588.893333pt;}
.y50{bottom:595.293333pt;}
.y18{bottom:601.533333pt;}
.y7e{bottom:606.653333pt;}
.y4f{bottom:612.893333pt;}
.y17{bottom:619.133333pt;}
.y4e{bottom:630.653333pt;}
.y7d{bottom:632.253333pt;}
.y16{bottom:636.733333pt;}
.y4d{bottom:648.253333pt;}
.y7c{bottom:649.853333pt;}
.y15{bottom:654.333333pt;}
.y4c{bottom:665.853333pt;}
.y7b{bottom:667.453333pt;}
.y14{bottom:671.933333pt;}
.y4b{bottom:683.453333pt;}
.y7a{bottom:685.053333pt;}
.y13{bottom:689.693333pt;}
.y4a{bottom:701.053333pt;}
.y79{bottom:702.813333pt;}
.y12{bottom:707.293333pt;}
.y49{bottom:718.813333pt;}
.y78{bottom:720.413333pt;}
.y11{bottom:724.893333pt;}
.y48{bottom:736.413333pt;}
.y77{bottom:738.013333pt;}
.y10{bottom:742.493333pt;}
.y47{bottom:754.053333pt;}
.yf{bottom:760.133333pt;}
.y76{bottom:763.653333pt;}
.y46{bottom:771.653333pt;}
.ye{bottom:777.893333pt;}
.y75{bottom:781.253333pt;}
.y45{bottom:789.253333pt;}
.yd{bottom:795.493333pt;}
.y74{bottom:799.013333pt;}
.y44{bottom:807.013333pt;}
.yc{bottom:813.093333pt;}
.y73{bottom:816.613333pt;}
.y43{bottom:824.613333pt;}
.yb{bottom:832.773333pt;}
.y72{bottom:834.213333pt;}
.y42{bottom:842.213333pt;}
.ya{bottom:850.373333pt;}
.y71{bottom:851.813333pt;}
.y41{bottom:859.813333pt;}
.y9{bottom:868.453333pt;}
.y70{bottom:869.413333pt;}
.y40{bottom:877.413333pt;}
.y6f{bottom:887.173333pt;}
.y8{bottom:887.333333pt;}
.y3f{bottom:895.173333pt;}
.y6e{bottom:904.773333pt;}
.y7{bottom:908.293333pt;}
.y3e{bottom:912.773333pt;}
.y6d{bottom:922.373333pt;}
.y3d{bottom:930.373333pt;}
.y5{bottom:942.373333pt;}
.y3c{bottom:947.973333pt;}
.y3b{bottom:965.573333pt;}
.y4{bottom:969.733333pt;}
.y3a{bottom:983.333333pt;}
.y3{bottom:997.093333pt;}
.y39{bottom:1000.933333pt;}
.y38{bottom:1018.560000pt;}
.y2{bottom:1024.640000pt;}
.y37{bottom:1036.160000pt;}
.y1{bottom:1054.720000pt;}
.y36{bottom:1060.640000pt;}
.hc{height:2.512500pt;}
.ha{height:38.413438pt;}
.h7{height:52.108438pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.h9{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h8{height:60.288750pt;}
.hb{height:75.040000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.880000pt;}
.x12{left:43.999988pt;}
.x1{left:48.159988pt;}
.x1e{left:71.999988pt;}
.x11{left:86.111988pt;}
.x2{left:96.031988pt;}
.x1d{left:104.991988pt;}
.x13{left:154.586655pt;}
.x1f{left:170.106667pt;}
.x20{left:235.386667pt;}
.x14{left:367.106655pt;}
.x3{left:372.386655pt;}
.x15{left:376.226655pt;}
.x4{left:384.066655pt;}
.x16{left:401.826655pt;}
.x5{left:403.266655pt;}
.x17{left:410.786655pt;}
.x6{left:415.266655pt;}
.x18{left:430.813322pt;}
.x19{left:439.773322pt;}
.x7{left:456.733322pt;}
.x8{left:468.573322pt;}
.x1a{left:469.533322pt;}
.x1b{left:478.493322pt;}
.x9{left:531.293322pt;}
.x1c{left:539.453322pt;}
.xa{left:543.133322pt;}
.xb{left:557.853322pt;}
.xc{left:569.693322pt;}
.xd{left:609.093322pt;}
.xe{left:620.933322pt;}
.xf{left:630.533322pt;}
.x10{left:642.373322pt;}
}




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