
    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_be15092c6002f721cc2f9e32.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_49474b10be3cfba274cf2ecc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_b91abe8cb529ce0aaae1407c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_1b635db75f2b9573533a9b90.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_8c7e691dfb7895aab947759e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_692a34b101c78bfc29f1ee61.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_68f0234be1f810f5606af852.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_53d661a06ddef53cfb7d6716.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.155762;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:ff9;src:url('chunks/assets/font_af86167b4f5b0d60705c3b25.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956543;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);}
.v2{vertical-align:-17.982000px;}
.v1{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004608px;}
.ls2{letter-spacing:0.005208px;}
.ls1{letter-spacing:0.007800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.016000px;}
.ws49{word-spacing:-13.344000px;}
.wse{word-spacing:-3.660000px;}
.ws30{word-spacing:-3.000000px;}
.ws2d{word-spacing:-2.340000px;}
.ws55{word-spacing:-2.268000px;}
.ws47{word-spacing:-1.836000px;}
.ws8{word-spacing:-1.800000px;}
.ws48{word-spacing:-1.566000px;}
.ws11{word-spacing:-1.560000px;}
.ws4e{word-spacing:-1.344000px;}
.wsc{word-spacing:-1.080000px;}
.ws59{word-spacing:-0.972000px;}
.ws3b{word-spacing:-0.780000px;}
.ws54{word-spacing:-0.756000px;}
.ws34{word-spacing:-0.600000px;}
.ws56{word-spacing:-0.324000px;}
.ws2f{word-spacing:-0.300000px;}
.ws51{word-spacing:-0.162000px;}
.ws2c{word-spacing:-0.120000px;}
.ws4d{word-spacing:-0.096000px;}
.ws1{word-spacing:0.000000px;}
.ws62{word-spacing:0.108000px;}
.ws61{word-spacing:0.378000px;}
.ws23{word-spacing:0.780000px;}
.ws27{word-spacing:0.810000px;}
.ws33{word-spacing:0.840000px;}
.ws36{word-spacing:0.900000px;}
.ws2e{word-spacing:1.020000px;}
.ws18{word-spacing:1.380000px;}
.ws26{word-spacing:1.458000px;}
.ws5c{word-spacing:1.566000px;}
.ws22{word-spacing:1.980000px;}
.ws28{word-spacing:2.106000px;}
.ws3c{word-spacing:2.280000px;}
.ws5e{word-spacing:2.376000px;}
.wsd{word-spacing:3.060000px;}
.ws4f{word-spacing:3.072000px;}
.ws15{word-spacing:3.120000px;}
.ws2a{word-spacing:3.180000px;}
.ws58{word-spacing:3.294000px;}
.ws45{word-spacing:3.564000px;}
.ws3e{word-spacing:3.720000px;}
.ws60{word-spacing:3.726000px;}
.ws44{word-spacing:3.780000px;}
.ws9{word-spacing:3.840000px;}
.ws5b{word-spacing:4.050000px;}
.ws64{word-spacing:4.212000px;}
.ws39{word-spacing:4.320000px;}
.ws38{word-spacing:4.440000px;}
.ws3f{word-spacing:4.560000px;}
.ws2{word-spacing:4.860000px;}
.ws35{word-spacing:4.920000px;}
.ws41{word-spacing:5.580000px;}
.ws46{word-spacing:5.724000px;}
.ws4c{word-spacing:5.808000px;}
.wsa{word-spacing:5.820000px;}
.ws53{word-spacing:6.048000px;}
.ws25{word-spacing:6.060000px;}
.ws43{word-spacing:6.120000px;}
.ws63{word-spacing:6.264000px;}
.ws1d{word-spacing:6.540000px;}
.ws1c{word-spacing:6.660000px;}
.ws4{word-spacing:7.200000px;}
.ws32{word-spacing:7.320000px;}
.ws4a{word-spacing:7.500000px;}
.ws52{word-spacing:7.560000px;}
.ws29{word-spacing:7.800000px;}
.ws5a{word-spacing:7.938000px;}
.ws4b{word-spacing:7.980000px;}
.ws19{word-spacing:8.160000px;}
.ws2b{word-spacing:8.220000px;}
.ws16{word-spacing:8.520000px;}
.ws3d{word-spacing:8.640000px;}
.ws1f{word-spacing:8.820000px;}
.ws1e{word-spacing:9.060000px;}
.ws57{word-spacing:9.612000px;}
.ws5d{word-spacing:9.666000px;}
.wsb{word-spacing:9.720000px;}
.ws3a{word-spacing:9.780000px;}
.ws50{word-spacing:9.792000px;}
.ws7{word-spacing:9.900000px;}
.ws5f{word-spacing:10.206000px;}
.ws5{word-spacing:10.260000px;}
.ws24{word-spacing:10.500000px;}
.ws40{word-spacing:10.740000px;}
.ws14{word-spacing:10.800000px;}
.ws42{word-spacing:11.040000px;}
.ws21{word-spacing:11.280000px;}
.ws13{word-spacing:12.240000px;}
.ws37{word-spacing:12.540000px;}
.ws6{word-spacing:13.200000px;}
.wsf{word-spacing:13.320000px;}
.ws10{word-spacing:13.920000px;}
.ws20{word-spacing:14.340000px;}
.ws3{word-spacing:14.460000px;}
.ws31{word-spacing:14.520000px;}
.ws17{word-spacing:18.060000px;}
.ws1b{word-spacing:31.440000px;}
.ws1a{word-spacing:49.500000px;}
.ws12{word-spacing:49.560000px;}
._2{margin-left:-1096.128000px;}
._11{margin-left:-6.927600px;}
._0{margin-left:-5.875200px;}
._1{margin-left:-3.938400px;}
._3{margin-left:-1.940400px;}
._5{width:1.016400px;}
._f{width:2.997600px;}
._e{width:4.087200px;}
._14{width:5.203800px;}
._8{width:6.483600px;}
._7{width:7.784400px;}
._12{width:8.790000px;}
._b{width:10.302000px;}
._d{width:11.766000px;}
._13{width:12.786000px;}
._10{width:14.508000px;}
._6{width:15.654000px;}
._c{width:17.868000px;}
._9{width:43.402200px;}
._4{width:522.825000px;}
._a{width:2618.633400px;}
.fc4{color:transparent;}
.fc3{color:rgb(35,80,169);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(239,46,49);}
.fs9{font-size:31.482000px;}
.fs6{font-size:36.000000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:45.301200px;}
.y54{bottom:49.553250px;}
.y35{bottom:51.826200px;}
.y2e{bottom:63.301200px;}
.y7b{bottom:66.070350px;}
.y53{bottom:67.553250px;}
.y34{bottom:68.026200px;}
.y6{bottom:70.518900px;}
.y2d{bottom:81.301200px;}
.y7a{bottom:82.270350px;}
.y33{bottom:84.226200px;}
.y79{bottom:98.470350px;}
.y2c{bottom:99.301200px;}
.y32{bottom:100.426200px;}
.y52{bottom:103.553250px;}
.y5{bottom:113.718900px;}
.y78{bottom:114.670350px;}
.y2b{bottom:117.301200px;}
.y51{bottom:121.553250px;}
.y2a{bottom:135.301200px;}
.y4{bottom:135.318900px;}
.y50{bottom:139.553250px;}
.y29{bottom:153.301200px;}
.y4f{bottom:157.553250px;}
.y28{bottom:171.301200px;}
.y4e{bottom:175.553250px;}
.y27{bottom:189.301200px;}
.y4d{bottom:193.553250px;}
.y26{bottom:207.301200px;}
.y4c{bottom:211.553250px;}
.y25{bottom:225.301200px;}
.y4b{bottom:229.553250px;}
.y24{bottom:243.301200px;}
.y4a{bottom:247.553250px;}
.y23{bottom:261.301200px;}
.y49{bottom:265.553250px;}
.y22{bottom:279.301200px;}
.y48{bottom:283.553250px;}
.y47{bottom:301.553250px;}
.y21{bottom:315.301200px;}
.y46{bottom:319.553250px;}
.y20{bottom:333.301200px;}
.y45{bottom:337.553250px;}
.y1f{bottom:351.301200px;}
.y56{bottom:355.553250px;}
.y1e{bottom:369.301200px;}
.y44{bottom:373.553250px;}
.y1d{bottom:387.301200px;}
.y43{bottom:391.553250px;}
.y1c{bottom:405.301200px;}
.y42{bottom:409.553250px;}
.y1b{bottom:423.301200px;}
.y41{bottom:427.553250px;}
.y1a{bottom:441.301200px;}
.y6a{bottom:442.264950px;}
.y40{bottom:445.553250px;}
.y69{bottom:456.664950px;}
.y30{bottom:459.301200px;}
.y3f{bottom:463.553250px;}
.y68{bottom:471.064950px;}
.y19{bottom:477.301200px;}
.y3e{bottom:481.553250px;}
.y67{bottom:485.464950px;}
.y18{bottom:495.301200px;}
.y77{bottom:498.514950px;}
.y3d{bottom:499.553250px;}
.y66{bottom:499.864950px;}
.y76{bottom:512.914950px;}
.y17{bottom:513.301200px;}
.y65{bottom:514.264950px;}
.y3c{bottom:517.553250px;}
.y75{bottom:527.314950px;}
.y64{bottom:528.664950px;}
.y16{bottom:531.301200px;}
.y3b{bottom:535.553250px;}
.y74{bottom:541.714950px;}
.y15{bottom:549.301200px;}
.y3a{bottom:553.553250px;}
.y73{bottom:556.114950px;}
.y14{bottom:567.301200px;}
.y72{bottom:570.514950px;}
.y55{bottom:571.553250px;}
.y63{bottom:579.064950px;}
.y71{bottom:584.914950px;}
.y13{bottom:585.301200px;}
.y39{bottom:589.553250px;}
.y62{bottom:597.064950px;}
.y70{bottom:599.314950px;}
.y12{bottom:603.301200px;}
.y38{bottom:607.553250px;}
.y6f{bottom:613.714950px;}
.y61{bottom:615.064950px;}
.y11{bottom:621.301200px;}
.y37{bottom:625.553250px;}
.y6e{bottom:628.114950px;}
.y60{bottom:633.064950px;}
.y10{bottom:639.301200px;}
.y6d{bottom:642.514950px;}
.y36{bottom:643.553250px;}
.y5f{bottom:651.064950px;}
.ya{bottom:653.148450px;}
.y6c{bottom:656.914950px;}
.y5e{bottom:669.064950px;}
.y31{bottom:669.764700px;}
.y6b{bottom:671.314950px;}
.y5d{bottom:676.950600px;}
.y9{bottom:689.148450px;}
.y5c{bottom:693.150600px;}
.y8d{bottom:703.907850px;}
.y5b{bottom:709.350600px;}
.y90{bottom:719.938500px;}
.y8c{bottom:720.108000px;}
.y5a{bottom:725.550600px;}
.y8{bottom:732.348450px;}
.y8f{bottom:736.138500px;}
.y8b{bottom:736.307850px;}
.y59{bottom:741.750600px;}
.y8e{bottom:752.338500px;}
.y8a{bottom:752.507850px;}
.y58{bottom:757.950600px;}
.y89{bottom:768.707850px;}
.y57{bottom:774.150600px;}
.y88{bottom:784.908000px;}
.y87{bottom:801.108000px;}
.y86{bottom:817.308000px;}
.y85{bottom:833.508000px;}
.y84{bottom:849.708000px;}
.y83{bottom:865.908000px;}
.y82{bottom:882.108000px;}
.y7{bottom:885.047250px;}
.y81{bottom:898.308000px;}
.y80{bottom:914.508000px;}
.y7f{bottom:930.708000px;}
.y7e{bottom:946.908000px;}
.y3{bottom:948.688650px;}
.y7d{bottom:963.108000px;}
.y7c{bottom:979.308000px;}
.y2{bottom:1021.992600px;}
.yf{bottom:1099.605150px;}
.ye{bottom:1135.605150px;}
.y1{bottom:1159.671300px;}
.yd{bottom:1178.805150px;}
.y91{bottom:1187.805150px;}
.yc{bottom:1226.444850px;}
.yb{bottom:1227.569850px;}
.h8{height:26.525391px;}
.hd{height:31.054688px;}
.hf{height:35.367188px;}
.h9{height:35.554688px;}
.hb{height:39.708984px;}
.hc{height:39.788086px;}
.h10{height:41.178454px;}
.h7{height:44.208984px;}
.he{height:44.859375px;}
.h4{height:53.050781px;}
.ha{height:56.074219px;}
.h6{height:62.220703px;}
.h2{height:79.998047px;}
.h5{height:106.664062px;}
.h3{height:159.996094px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:41.927850px;}
.x10{left:44.424450px;}
.x9{left:57.310650px;}
.x3{left:97.355100px;}
.xe{left:98.373600px;}
.xa{left:118.840800px;}
.x2{left:222.955200px;}
.x5{left:245.872650px;}
.xf{left:255.118050px;}
.x8{left:278.398800px;}
.x4{left:289.369800px;}
.x7{left:309.444000px;}
.x6{left:318.351750px;}
.xd{left:457.086600px;}
.x1{left:561.838500px;}
.xb{left:710.078700px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v1{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004096pt;}
.ls2{letter-spacing:0.004629pt;}
.ls1{letter-spacing:0.006933pt;}
.ws0{word-spacing:-17.792000pt;}
.ws49{word-spacing:-11.861333pt;}
.wse{word-spacing:-3.253333pt;}
.ws30{word-spacing:-2.666667pt;}
.ws2d{word-spacing:-2.080000pt;}
.ws55{word-spacing:-2.016000pt;}
.ws47{word-spacing:-1.632000pt;}
.ws8{word-spacing:-1.600000pt;}
.ws48{word-spacing:-1.392000pt;}
.ws11{word-spacing:-1.386667pt;}
.ws4e{word-spacing:-1.194667pt;}
.wsc{word-spacing:-0.960000pt;}
.ws59{word-spacing:-0.864000pt;}
.ws3b{word-spacing:-0.693333pt;}
.ws54{word-spacing:-0.672000pt;}
.ws34{word-spacing:-0.533333pt;}
.ws56{word-spacing:-0.288000pt;}
.ws2f{word-spacing:-0.266667pt;}
.ws51{word-spacing:-0.144000pt;}
.ws2c{word-spacing:-0.106667pt;}
.ws4d{word-spacing:-0.085333pt;}
.ws1{word-spacing:0.000000pt;}
.ws62{word-spacing:0.096000pt;}
.ws61{word-spacing:0.336000pt;}
.ws23{word-spacing:0.693333pt;}
.ws27{word-spacing:0.720000pt;}
.ws33{word-spacing:0.746667pt;}
.ws36{word-spacing:0.800000pt;}
.ws2e{word-spacing:0.906667pt;}
.ws18{word-spacing:1.226667pt;}
.ws26{word-spacing:1.296000pt;}
.ws5c{word-spacing:1.392000pt;}
.ws22{word-spacing:1.760000pt;}
.ws28{word-spacing:1.872000pt;}
.ws3c{word-spacing:2.026667pt;}
.ws5e{word-spacing:2.112000pt;}
.wsd{word-spacing:2.720000pt;}
.ws4f{word-spacing:2.730667pt;}
.ws15{word-spacing:2.773333pt;}
.ws2a{word-spacing:2.826667pt;}
.ws58{word-spacing:2.928000pt;}
.ws45{word-spacing:3.168000pt;}
.ws3e{word-spacing:3.306667pt;}
.ws60{word-spacing:3.312000pt;}
.ws44{word-spacing:3.360000pt;}
.ws9{word-spacing:3.413333pt;}
.ws5b{word-spacing:3.600000pt;}
.ws64{word-spacing:3.744000pt;}
.ws39{word-spacing:3.840000pt;}
.ws38{word-spacing:3.946667pt;}
.ws3f{word-spacing:4.053333pt;}
.ws2{word-spacing:4.320000pt;}
.ws35{word-spacing:4.373333pt;}
.ws41{word-spacing:4.960000pt;}
.ws46{word-spacing:5.088000pt;}
.ws4c{word-spacing:5.162667pt;}
.wsa{word-spacing:5.173333pt;}
.ws53{word-spacing:5.376000pt;}
.ws25{word-spacing:5.386667pt;}
.ws43{word-spacing:5.440000pt;}
.ws63{word-spacing:5.568000pt;}
.ws1d{word-spacing:5.813333pt;}
.ws1c{word-spacing:5.920000pt;}
.ws4{word-spacing:6.400000pt;}
.ws32{word-spacing:6.506667pt;}
.ws4a{word-spacing:6.666667pt;}
.ws52{word-spacing:6.720000pt;}
.ws29{word-spacing:6.933333pt;}
.ws5a{word-spacing:7.056000pt;}
.ws4b{word-spacing:7.093333pt;}
.ws19{word-spacing:7.253333pt;}
.ws2b{word-spacing:7.306667pt;}
.ws16{word-spacing:7.573333pt;}
.ws3d{word-spacing:7.680000pt;}
.ws1f{word-spacing:7.840000pt;}
.ws1e{word-spacing:8.053333pt;}
.ws57{word-spacing:8.544000pt;}
.ws5d{word-spacing:8.592000pt;}
.wsb{word-spacing:8.640000pt;}
.ws3a{word-spacing:8.693333pt;}
.ws50{word-spacing:8.704000pt;}
.ws7{word-spacing:8.800000pt;}
.ws5f{word-spacing:9.072000pt;}
.ws5{word-spacing:9.120000pt;}
.ws24{word-spacing:9.333333pt;}
.ws40{word-spacing:9.546667pt;}
.ws14{word-spacing:9.600000pt;}
.ws42{word-spacing:9.813333pt;}
.ws21{word-spacing:10.026667pt;}
.ws13{word-spacing:10.880000pt;}
.ws37{word-spacing:11.146667pt;}
.ws6{word-spacing:11.733333pt;}
.wsf{word-spacing:11.840000pt;}
.ws10{word-spacing:12.373333pt;}
.ws20{word-spacing:12.746667pt;}
.ws3{word-spacing:12.853333pt;}
.ws31{word-spacing:12.906667pt;}
.ws17{word-spacing:16.053333pt;}
.ws1b{word-spacing:27.946667pt;}
.ws1a{word-spacing:44.000000pt;}
.ws12{word-spacing:44.053333pt;}
._2{margin-left:-974.336000pt;}
._11{margin-left:-6.157867pt;}
._0{margin-left:-5.222400pt;}
._1{margin-left:-3.500800pt;}
._3{margin-left:-1.724800pt;}
._5{width:0.903467pt;}
._f{width:2.664533pt;}
._e{width:3.633067pt;}
._14{width:4.625600pt;}
._8{width:5.763200pt;}
._7{width:6.919467pt;}
._12{width:7.813333pt;}
._b{width:9.157333pt;}
._d{width:10.458667pt;}
._13{width:11.365333pt;}
._10{width:12.896000pt;}
._6{width:13.914667pt;}
._c{width:15.882667pt;}
._9{width:38.579733pt;}
._4{width:464.733333pt;}
._a{width:2327.674133pt;}
.fs9{font-size:27.984000pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:40.267733pt;}
.y54{bottom:44.047333pt;}
.y35{bottom:46.067733pt;}
.y2e{bottom:56.267733pt;}
.y7b{bottom:58.729200pt;}
.y53{bottom:60.047333pt;}
.y34{bottom:60.467733pt;}
.y6{bottom:62.683467pt;}
.y2d{bottom:72.267733pt;}
.y7a{bottom:73.129200pt;}
.y33{bottom:74.867733pt;}
.y79{bottom:87.529200pt;}
.y2c{bottom:88.267733pt;}
.y32{bottom:89.267733pt;}
.y52{bottom:92.047333pt;}
.y5{bottom:101.083467pt;}
.y78{bottom:101.929200pt;}
.y2b{bottom:104.267733pt;}
.y51{bottom:108.047333pt;}
.y2a{bottom:120.267733pt;}
.y4{bottom:120.283467pt;}
.y50{bottom:124.047333pt;}
.y29{bottom:136.267733pt;}
.y4f{bottom:140.047333pt;}
.y28{bottom:152.267733pt;}
.y4e{bottom:156.047333pt;}
.y27{bottom:168.267733pt;}
.y4d{bottom:172.047333pt;}
.y26{bottom:184.267733pt;}
.y4c{bottom:188.047333pt;}
.y25{bottom:200.267733pt;}
.y4b{bottom:204.047333pt;}
.y24{bottom:216.267733pt;}
.y4a{bottom:220.047333pt;}
.y23{bottom:232.267733pt;}
.y49{bottom:236.047333pt;}
.y22{bottom:248.267733pt;}
.y48{bottom:252.047333pt;}
.y47{bottom:268.047333pt;}
.y21{bottom:280.267733pt;}
.y46{bottom:284.047333pt;}
.y20{bottom:296.267733pt;}
.y45{bottom:300.047333pt;}
.y1f{bottom:312.267733pt;}
.y56{bottom:316.047333pt;}
.y1e{bottom:328.267733pt;}
.y44{bottom:332.047333pt;}
.y1d{bottom:344.267733pt;}
.y43{bottom:348.047333pt;}
.y1c{bottom:360.267733pt;}
.y42{bottom:364.047333pt;}
.y1b{bottom:376.267733pt;}
.y41{bottom:380.047333pt;}
.y1a{bottom:392.267733pt;}
.y6a{bottom:393.124400pt;}
.y40{bottom:396.047333pt;}
.y69{bottom:405.924400pt;}
.y30{bottom:408.267733pt;}
.y3f{bottom:412.047333pt;}
.y68{bottom:418.724400pt;}
.y19{bottom:424.267733pt;}
.y3e{bottom:428.047333pt;}
.y67{bottom:431.524400pt;}
.y18{bottom:440.267733pt;}
.y77{bottom:443.124400pt;}
.y3d{bottom:444.047333pt;}
.y66{bottom:444.324400pt;}
.y76{bottom:455.924400pt;}
.y17{bottom:456.267733pt;}
.y65{bottom:457.124400pt;}
.y3c{bottom:460.047333pt;}
.y75{bottom:468.724400pt;}
.y64{bottom:469.924400pt;}
.y16{bottom:472.267733pt;}
.y3b{bottom:476.047333pt;}
.y74{bottom:481.524400pt;}
.y15{bottom:488.267733pt;}
.y3a{bottom:492.047333pt;}
.y73{bottom:494.324400pt;}
.y14{bottom:504.267733pt;}
.y72{bottom:507.124400pt;}
.y55{bottom:508.047333pt;}
.y63{bottom:514.724400pt;}
.y71{bottom:519.924400pt;}
.y13{bottom:520.267733pt;}
.y39{bottom:524.047333pt;}
.y62{bottom:530.724400pt;}
.y70{bottom:532.724400pt;}
.y12{bottom:536.267733pt;}
.y38{bottom:540.047333pt;}
.y6f{bottom:545.524400pt;}
.y61{bottom:546.724400pt;}
.y11{bottom:552.267733pt;}
.y37{bottom:556.047333pt;}
.y6e{bottom:558.324400pt;}
.y60{bottom:562.724400pt;}
.y10{bottom:568.267733pt;}
.y6d{bottom:571.124400pt;}
.y36{bottom:572.047333pt;}
.y5f{bottom:578.724400pt;}
.ya{bottom:580.576400pt;}
.y6c{bottom:583.924400pt;}
.y5e{bottom:594.724400pt;}
.y31{bottom:595.346400pt;}
.y6b{bottom:596.724400pt;}
.y5d{bottom:601.733867pt;}
.y9{bottom:612.576400pt;}
.y5c{bottom:616.133867pt;}
.y8d{bottom:625.695867pt;}
.y5b{bottom:630.533867pt;}
.y90{bottom:639.945333pt;}
.y8c{bottom:640.096000pt;}
.y5a{bottom:644.933867pt;}
.y8{bottom:650.976400pt;}
.y8f{bottom:654.345333pt;}
.y8b{bottom:654.495867pt;}
.y59{bottom:659.333867pt;}
.y8e{bottom:668.745333pt;}
.y8a{bottom:668.895867pt;}
.y58{bottom:673.733867pt;}
.y89{bottom:683.295867pt;}
.y57{bottom:688.133867pt;}
.y88{bottom:697.696000pt;}
.y87{bottom:712.096000pt;}
.y86{bottom:726.496000pt;}
.y85{bottom:740.896000pt;}
.y84{bottom:755.296000pt;}
.y83{bottom:769.696000pt;}
.y82{bottom:784.096000pt;}
.y7{bottom:786.708667pt;}
.y81{bottom:798.496000pt;}
.y80{bottom:812.896000pt;}
.y7f{bottom:827.296000pt;}
.y7e{bottom:841.696000pt;}
.y3{bottom:843.278800pt;}
.y7d{bottom:856.096000pt;}
.y7c{bottom:870.496000pt;}
.y2{bottom:908.437867pt;}
.yf{bottom:977.426800pt;}
.ye{bottom:1009.426800pt;}
.y1{bottom:1030.818933pt;}
.yd{bottom:1047.826800pt;}
.y91{bottom:1055.826800pt;}
.yc{bottom:1090.173200pt;}
.yb{bottom:1091.173200pt;}
.h8{height:23.578125pt;}
.hd{height:27.604167pt;}
.hf{height:31.437500pt;}
.h9{height:31.604167pt;}
.hb{height:35.296875pt;}
.hc{height:35.367188pt;}
.h10{height:36.603070pt;}
.h7{height:39.296875pt;}
.he{height:39.875000pt;}
.h4{height:47.156250pt;}
.ha{height:49.843750pt;}
.h6{height:55.307292pt;}
.h2{height:71.109375pt;}
.h5{height:94.812500pt;}
.h3{height:142.218750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:37.269200pt;}
.x10{left:39.488400pt;}
.x9{left:50.942800pt;}
.x3{left:86.537867pt;}
.xe{left:87.443200pt;}
.xa{left:105.636267pt;}
.x2{left:198.182400pt;}
.x5{left:218.553467pt;}
.xf{left:226.771600pt;}
.x8{left:247.465600pt;}
.x4{left:257.217600pt;}
.x7{left:275.061333pt;}
.x6{left:282.979333pt;}
.xd{left:406.299200pt;}
.x1{left:499.412000pt;}
.xb{left:631.181067pt;}
}




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