
    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_cfc5d38744821a694b55f660.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_ea8eb9766f9936250dbb56cd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_39814506c2faa83bbc7ee288.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c1068f4d847601930ae23e9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_370bb8f73a79282b9894e236.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_fb8c31673ed55ce799e35ace.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aaa951e948e6e20db1bf0115.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1a960504edcccc81e7dbadf7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_3e9d586eb0ed7ab1add79910.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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:ffb;src:url('chunks/assets/font_ca43eb84fbe8fbcf4f1fedb3.woff')format("woff");}.ffb{font-family:ffb;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;}
.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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls9{letter-spacing:-0.738000px;}
.lsa{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.428400px;}
.ls13{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.341400px;}
.ls11{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000001px;}
.ls10{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.252720px;}
.ls12{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.504000px;}
.ls2{letter-spacing:4.860000px;}
.ls15{letter-spacing:9.180000px;}
.ls3{letter-spacing:15.660000px;}
.ls14{letter-spacing:68.400000px;}
.lsc{letter-spacing:89.820000px;}
.ls17{letter-spacing:119.141280px;}
.ls16{letter-spacing:161.597280px;}
.lse{letter-spacing:191.484000px;}
.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;}
}
.wsa{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.031920px;}
.ws3{word-spacing:-20.718600px;}
.ws9{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.322000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.696000px;}
.ws8{word-spacing:-14.940000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-6.369840px;}
._b{margin-left:-5.138640px;}
._1f{margin-left:-3.875040px;}
._3{margin-left:-2.436480px;}
._0{margin-left:-1.296000px;}
._1{width:1.152000px;}
._4{width:3.074640px;}
._2{width:4.314720px;}
._22{width:5.346480px;}
._14{width:6.512400px;}
._13{width:7.750080px;}
._29{width:8.793360px;}
._5{width:9.972720px;}
._7{width:11.877840px;}
._6{width:12.921120px;}
._12{width:14.016240px;}
._27{width:15.041520px;}
._15{width:16.543440px;}
._1e{width:17.742240px;}
._2e{width:18.753120px;}
._17{width:19.796400px;}
._23{width:22.070880px;}
._20{width:23.334480px;}
._d{width:25.187760px;}
._8{width:27.105840px;}
._10{width:28.453680px;}
._16{width:30.055680px;}
._26{width:31.168800px;}
._19{width:32.425920px;}
._28{width:34.138080px;}
._e{width:35.970480px;}
._30{width:37.234080px;}
._32{width:38.244960px;}
._31{width:40.420560px;}
._3e{width:41.489760px;}
._25{width:42.742080px;}
._24{width:44.595360px;}
._1d{width:46.584720px;}
._34{width:48.517200px;}
._2d{width:50.375520px;}
._2c{width:51.450960px;}
._9{width:52.598160px;}
._a{width:53.693280px;}
._11{width:55.209600px;}
._39{width:59.240160px;}
._2b{width:60.377040px;}
._2a{width:61.443360px;}
._f{width:62.687520px;}
._42{width:64.612080px;}
._21{width:67.296000px;}
._33{width:68.962800px;}
._1c{width:72.057600px;}
._41{width:76.826880px;}
._40{width:77.944800px;}
._2f{width:80.038560px;}
._38{width:84.246480px;}
._37{width:86.255280px;}
._1a{width:88.788960px;}
._1b{width:89.851440px;}
._18{width:109.291680px;}
._36{width:115.661520px;}
._35{width:116.704800px;}
._3f{width:129.224160px;}
._3d{width:162.762720px;}
._3c{width:191.484000px;}
._3a{width:395.785200px;}
._3b{width:396.887040px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(192,0,0);}
.fc0{color:rgb(0,112,192);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.170000px;}
.y7a{bottom:15.660000px;}
.y78{bottom:15.840000px;}
.y3{bottom:24.330000px;}
.y5{bottom:25.230000px;}
.y2{bottom:45.570000px;}
.y4{bottom:45.930000px;}
.y9{bottom:75.240000px;}
.y8{bottom:96.300000px;}
.y30{bottom:121.860000px;}
.ya7{bottom:139.860000px;}
.y75{bottom:141.300000px;}
.y58{bottom:141.480000px;}
.y89{bottom:141.660000px;}
.y2f{bottom:145.980000px;}
.ya6{bottom:164.340000px;}
.y74{bottom:165.420000px;}
.y57{bottom:165.600000px;}
.y88{bottom:165.780000px;}
.y2e{bottom:170.280000px;}
.y87{bottom:185.610000px;}
.y73{bottom:189.570000px;}
.y56{bottom:189.750000px;}
.ya5{bottom:189.930000px;}
.y2d{bottom:194.430000px;}
.y55{bottom:213.870000px;}
.ya4{bottom:214.050000px;}
.y86{bottom:215.670000px;}
.y2c{bottom:218.550000px;}
.y72{bottom:237.990000px;}
.y54{bottom:238.170000px;}
.y2b{bottom:242.670000px;}
.y85{bottom:245.550000px;}
.y71{bottom:262.110000px;}
.y53{bottom:262.290000px;}
.ya3{bottom:262.470000px;}
.y2a{bottom:266.790000px;}
.y70{bottom:286.230000px;}
.y52{bottom:286.410000px;}
.ya2{bottom:286.590000px;}
.y29{bottom:290.910000px;}
.y84{bottom:292.350000px;}
.y6f{bottom:310.350000px;}
.y51{bottom:310.530000px;}
.ya1{bottom:310.710000px;}
.y83{bottom:316.830000px;}
.y28{bottom:326.730000px;}
.y6e{bottom:334.470000px;}
.y50{bottom:334.650000px;}
.ya0{bottom:334.830000px;}
.y82{bottom:336.630000px;}
.y4f{bottom:358.770000px;}
.y9f{bottom:358.950000px;}
.y27{bottom:363.270000px;}
.y81{bottom:366.690000px;}
.y6d{bottom:382.890000px;}
.y4e{bottom:383.070000px;}
.y26{bottom:387.390000px;}
.y80{bottom:396.570000px;}
.y6c{bottom:407.010000px;}
.y4d{bottom:407.190000px;}
.y9e{bottom:407.370000px;}
.y25{bottom:411.510000px;}
.y7f{bottom:426.675000px;}
.y6b{bottom:431.175000px;}
.y4c{bottom:431.355000px;}
.y9d{bottom:431.535000px;}
.y24{bottom:435.675000px;}
.y6a{bottom:455.295000px;}
.y4b{bottom:455.475000px;}
.y9c{bottom:455.655000px;}
.y7e{bottom:456.735000px;}
.y23{bottom:459.975000px;}
.y69{bottom:479.415000px;}
.y4a{bottom:479.595000px;}
.y9b{bottom:479.775000px;}
.y22{bottom:484.095000px;}
.y68{bottom:503.535000px;}
.y7d{bottom:503.715000px;}
.y9a{bottom:503.895000px;}
.y21{bottom:508.215000px;}
.y49{bottom:515.775000px;}
.y7c{bottom:523.515000px;}
.y67{bottom:527.835000px;}
.y99{bottom:528.015000px;}
.y20{bottom:532.335000px;}
.y48{bottom:539.895000px;}
.y66{bottom:551.955000px;}
.y98{bottom:552.135000px;}
.y7b{bottom:553.575000px;}
.y1f{bottom:556.455000px;}
.y47{bottom:564.015000px;}
.y65{bottom:576.075000px;}
.y97{bottom:576.435000px;}
.y1e{bottom:580.575000px;}
.y79{bottom:583.635000px;}
.y46{bottom:588.135000px;}
.y64{bottom:600.195000px;}
.y96{bottom:600.555000px;}
.y1d{bottom:604.875000px;}
.y45{bottom:612.435000px;}
.y77{bottom:613.515000px;}
.y63{bottom:624.315000px;}
.y1c{bottom:628.995000px;}
.y95{bottom:636.375000px;}
.y44{bottom:636.555000px;}
.y62{bottom:648.435000px;}
.y1b{bottom:653.115000px;}
.y43{bottom:660.675000px;}
.y61{bottom:672.765000px;}
.y1a{bottom:677.265000px;}
.y42{bottom:684.825000px;}
.y76{bottom:696.525000px;}
.y60{bottom:696.885000px;}
.y94{bottom:697.065000px;}
.y19{bottom:701.385000px;}
.y41{bottom:708.945000px;}
.y5f{bottom:721.005000px;}
.y93{bottom:721.185000px;}
.y40{bottom:733.065000px;}
.y18{bottom:737.205000px;}
.y5e{bottom:745.125000px;}
.y92{bottom:745.305000px;}
.y3f{bottom:757.365000px;}
.y5d{bottom:769.245000px;}
.y91{bottom:769.425000px;}
.y17{bottom:773.385000px;}
.y3e{bottom:781.485000px;}
.y5c{bottom:793.365000px;}
.y90{bottom:793.545000px;}
.y3d{bottom:805.605000px;}
.y16{bottom:812.085000px;}
.y5b{bottom:817.665000px;}
.y3c{bottom:829.725000px;}
.y5a{bottom:841.785000px;}
.y15{bottom:845.385000px;}
.y3b{bottom:853.485000px;}
.y14{bottom:863.925000px;}
.y59{bottom:865.905000px;}
.y8f{bottom:866.085000px;}
.y3a{bottom:890.025000px;}
.y8e{bottom:890.205000px;}
.y13{bottom:897.585000px;}
.y12{bottom:913.830000px;}
.y39{bottom:914.190000px;}
.y8d{bottom:914.370000px;}
.y11{bottom:937.950000px;}
.y38{bottom:938.310000px;}
.y8c{bottom:938.490000px;}
.y10{bottom:962.070000px;}
.y37{bottom:962.430000px;}
.y8b{bottom:962.610000px;}
.yf{bottom:986.190000px;}
.y36{bottom:986.730000px;}
.y8a{bottom:998.430000px;}
.ye{bottom:1010.490000px;}
.y35{bottom:1010.850000px;}
.yd{bottom:1034.610000px;}
.y34{bottom:1034.970000px;}
.yc{bottom:1058.730000px;}
.y33{bottom:1059.090000px;}
.yb{bottom:1082.850000px;}
.y32{bottom:1083.210000px;}
.ya{bottom:1106.970000px;}
.y31{bottom:1107.330000px;}
.y7{bottom:1130.730000px;}
.y1{bottom:1147.110000px;}
.h10{height:29.160000px;}
.he{height:29.340000px;}
.h11{height:29.376000px;}
.h4{height:50.800781px;}
.ha{height:52.971680px;}
.hf{height:58.651172px;}
.h7{height:60.679688px;}
.hc{height:60.917695px;}
.h3{height:60.960938px;}
.h2{height:62.676000px;}
.hd{height:65.884219px;}
.h6{height:70.664062px;}
.h13{height:71.324297px;}
.h5{height:72.562500px;}
.h9{height:82.635820px;}
.hb{height:82.676953px;}
.h8{height:84.898125px;}
.h12{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:161.280000px;}
.w5{width:161.310000px;}
.w2{width:223.095000px;}
.w3{width:499.215000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.136000px;}
.x5{left:23.580000px;}
.x4{left:38.880000px;}
.x1{left:84.960000px;}
.x7{left:108.935987px;}
.xe{left:111.095987px;}
.x10{left:119.195987px;}
.x18{left:122.796000px;}
.x1d{left:127.475987px;}
.x8{left:133.955987px;}
.x14{left:138.095987px;}
.xc{left:218.369987px;}
.xd{left:231.689987px;}
.x12{left:266.429987px;}
.x1c{left:271.109987px;}
.xb{left:276.554987px;}
.x19{left:284.835000px;}
.x3{left:308.055000px;}
.x6{left:336.450000px;}
.x9{left:368.894987px;}
.x13{left:392.114987px;}
.x15{left:393.374987px;}
.x17{left:395.714987px;}
.xf{left:399.134987px;}
.x11{left:414.254987px;}
.x1b{left:415.514987px;}
.xa{left:446.474987px;}
.x1e{left:472.964987px;}
.x1a{left:608.865000px;}
.x16{left:807.989987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.656000pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.380800pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.303467pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000001pt;}
.ls10{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.224640pt;}
.ls12{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.448000pt;}
.ls2{letter-spacing:4.320000pt;}
.ls15{letter-spacing:8.160000pt;}
.ls3{letter-spacing:13.920000pt;}
.ls14{letter-spacing:60.800000pt;}
.lsc{letter-spacing:79.840000pt;}
.ls17{letter-spacing:105.903360pt;}
.ls16{letter-spacing:143.642027pt;}
.lse{letter-spacing:170.208000pt;}
.wsa{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.695040pt;}
.ws3{word-spacing:-18.416533pt;}
.ws9{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.952000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-5.662080pt;}
._b{margin-left:-4.567680pt;}
._1f{margin-left:-3.444480pt;}
._3{margin-left:-2.165760pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.024000pt;}
._4{width:2.733013pt;}
._2{width:3.835307pt;}
._22{width:4.752427pt;}
._14{width:5.788800pt;}
._13{width:6.888960pt;}
._29{width:7.816320pt;}
._5{width:8.864640pt;}
._7{width:10.558080pt;}
._6{width:11.485440pt;}
._12{width:12.458880pt;}
._27{width:13.370240pt;}
._15{width:14.705280pt;}
._1e{width:15.770880pt;}
._2e{width:16.669440pt;}
._17{width:17.596800pt;}
._23{width:19.618560pt;}
._20{width:20.741760pt;}
._d{width:22.389120pt;}
._8{width:24.094080pt;}
._10{width:25.292160pt;}
._16{width:26.716160pt;}
._26{width:27.705600pt;}
._19{width:28.823040pt;}
._28{width:30.344960pt;}
._e{width:31.973760pt;}
._30{width:33.096960pt;}
._32{width:33.995520pt;}
._31{width:35.929387pt;}
._3e{width:36.879787pt;}
._25{width:37.992960pt;}
._24{width:39.640320pt;}
._1d{width:41.408640pt;}
._34{width:43.126400pt;}
._2d{width:44.778240pt;}
._2c{width:45.734187pt;}
._9{width:46.753920pt;}
._a{width:47.727360pt;}
._11{width:49.075200pt;}
._39{width:52.657920pt;}
._2b{width:53.668480pt;}
._2a{width:54.616320pt;}
._f{width:55.722240pt;}
._42{width:57.432960pt;}
._21{width:59.818667pt;}
._33{width:61.300267pt;}
._1c{width:64.051200pt;}
._41{width:68.290560pt;}
._40{width:69.284267pt;}
._2f{width:71.145387pt;}
._38{width:74.885760pt;}
._37{width:76.671360pt;}
._1a{width:78.923520pt;}
._1b{width:79.867947pt;}
._18{width:97.148160pt;}
._36{width:102.810240pt;}
._35{width:103.737600pt;}
._3f{width:114.865920pt;}
._3d{width:144.677973pt;}
._3c{width:170.208000pt;}
._3a{width:351.809067pt;}
._3b{width:352.788480pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.706667pt;}
.y7a{bottom:13.920000pt;}
.y78{bottom:14.080000pt;}
.y3{bottom:21.626667pt;}
.y5{bottom:22.426667pt;}
.y2{bottom:40.506667pt;}
.y4{bottom:40.826667pt;}
.y9{bottom:66.880000pt;}
.y8{bottom:85.600000pt;}
.y30{bottom:108.320000pt;}
.ya7{bottom:124.320000pt;}
.y75{bottom:125.600000pt;}
.y58{bottom:125.760000pt;}
.y89{bottom:125.920000pt;}
.y2f{bottom:129.760000pt;}
.ya6{bottom:146.080000pt;}
.y74{bottom:147.040000pt;}
.y57{bottom:147.200000pt;}
.y88{bottom:147.360000pt;}
.y2e{bottom:151.360000pt;}
.y87{bottom:164.986667pt;}
.y73{bottom:168.506667pt;}
.y56{bottom:168.666667pt;}
.ya5{bottom:168.826667pt;}
.y2d{bottom:172.826667pt;}
.y55{bottom:190.106667pt;}
.ya4{bottom:190.266667pt;}
.y86{bottom:191.706667pt;}
.y2c{bottom:194.266667pt;}
.y72{bottom:211.546667pt;}
.y54{bottom:211.706667pt;}
.y2b{bottom:215.706667pt;}
.y85{bottom:218.266667pt;}
.y71{bottom:232.986667pt;}
.y53{bottom:233.146667pt;}
.ya3{bottom:233.306667pt;}
.y2a{bottom:237.146667pt;}
.y70{bottom:254.426667pt;}
.y52{bottom:254.586667pt;}
.ya2{bottom:254.746667pt;}
.y29{bottom:258.586667pt;}
.y84{bottom:259.866667pt;}
.y6f{bottom:275.866667pt;}
.y51{bottom:276.026667pt;}
.ya1{bottom:276.186667pt;}
.y83{bottom:281.626667pt;}
.y28{bottom:290.426667pt;}
.y6e{bottom:297.306667pt;}
.y50{bottom:297.466667pt;}
.ya0{bottom:297.626667pt;}
.y82{bottom:299.226667pt;}
.y4f{bottom:318.906667pt;}
.y9f{bottom:319.066667pt;}
.y27{bottom:322.906667pt;}
.y81{bottom:325.946667pt;}
.y6d{bottom:340.346667pt;}
.y4e{bottom:340.506667pt;}
.y26{bottom:344.346667pt;}
.y80{bottom:352.506667pt;}
.y6c{bottom:361.786667pt;}
.y4d{bottom:361.946667pt;}
.y9e{bottom:362.106667pt;}
.y25{bottom:365.786667pt;}
.y7f{bottom:379.266667pt;}
.y6b{bottom:383.266667pt;}
.y4c{bottom:383.426667pt;}
.y9d{bottom:383.586667pt;}
.y24{bottom:387.266667pt;}
.y6a{bottom:404.706667pt;}
.y4b{bottom:404.866667pt;}
.y9c{bottom:405.026667pt;}
.y7e{bottom:405.986667pt;}
.y23{bottom:408.866667pt;}
.y69{bottom:426.146667pt;}
.y4a{bottom:426.306667pt;}
.y9b{bottom:426.466667pt;}
.y22{bottom:430.306667pt;}
.y68{bottom:447.586667pt;}
.y7d{bottom:447.746667pt;}
.y9a{bottom:447.906667pt;}
.y21{bottom:451.746667pt;}
.y49{bottom:458.466667pt;}
.y7c{bottom:465.346667pt;}
.y67{bottom:469.186667pt;}
.y99{bottom:469.346667pt;}
.y20{bottom:473.186667pt;}
.y48{bottom:479.906667pt;}
.y66{bottom:490.626667pt;}
.y98{bottom:490.786667pt;}
.y7b{bottom:492.066667pt;}
.y1f{bottom:494.626667pt;}
.y47{bottom:501.346667pt;}
.y65{bottom:512.066667pt;}
.y97{bottom:512.386667pt;}
.y1e{bottom:516.066667pt;}
.y79{bottom:518.786667pt;}
.y46{bottom:522.786667pt;}
.y64{bottom:533.506667pt;}
.y96{bottom:533.826667pt;}
.y1d{bottom:537.666667pt;}
.y45{bottom:544.386667pt;}
.y77{bottom:545.346667pt;}
.y63{bottom:554.946667pt;}
.y1c{bottom:559.106667pt;}
.y95{bottom:565.666667pt;}
.y44{bottom:565.826667pt;}
.y62{bottom:576.386667pt;}
.y1b{bottom:580.546667pt;}
.y43{bottom:587.266667pt;}
.y61{bottom:598.013333pt;}
.y1a{bottom:602.013333pt;}
.y42{bottom:608.733333pt;}
.y76{bottom:619.133333pt;}
.y60{bottom:619.453333pt;}
.y94{bottom:619.613333pt;}
.y19{bottom:623.453333pt;}
.y41{bottom:630.173333pt;}
.y5f{bottom:640.893333pt;}
.y93{bottom:641.053333pt;}
.y40{bottom:651.613333pt;}
.y18{bottom:655.293333pt;}
.y5e{bottom:662.333333pt;}
.y92{bottom:662.493333pt;}
.y3f{bottom:673.213333pt;}
.y5d{bottom:683.773333pt;}
.y91{bottom:683.933333pt;}
.y17{bottom:687.453333pt;}
.y3e{bottom:694.653333pt;}
.y5c{bottom:705.213333pt;}
.y90{bottom:705.373333pt;}
.y3d{bottom:716.093333pt;}
.y16{bottom:721.853333pt;}
.y5b{bottom:726.813333pt;}
.y3c{bottom:737.533333pt;}
.y5a{bottom:748.253333pt;}
.y15{bottom:751.453333pt;}
.y3b{bottom:758.653333pt;}
.y14{bottom:767.933333pt;}
.y59{bottom:769.693333pt;}
.y8f{bottom:769.853333pt;}
.y3a{bottom:791.133333pt;}
.y8e{bottom:791.293333pt;}
.y13{bottom:797.853333pt;}
.y12{bottom:812.293333pt;}
.y39{bottom:812.613333pt;}
.y8d{bottom:812.773333pt;}
.y11{bottom:833.733333pt;}
.y38{bottom:834.053333pt;}
.y8c{bottom:834.213333pt;}
.y10{bottom:855.173333pt;}
.y37{bottom:855.493333pt;}
.y8b{bottom:855.653333pt;}
.yf{bottom:876.613333pt;}
.y36{bottom:877.093333pt;}
.y8a{bottom:887.493333pt;}
.ye{bottom:898.213333pt;}
.y35{bottom:898.533333pt;}
.yd{bottom:919.653333pt;}
.y34{bottom:919.973333pt;}
.yc{bottom:941.093333pt;}
.y33{bottom:941.413333pt;}
.yb{bottom:962.533333pt;}
.y32{bottom:962.853333pt;}
.ya{bottom:983.973333pt;}
.y31{bottom:984.293333pt;}
.y7{bottom:1005.093333pt;}
.y1{bottom:1019.653333pt;}
.h10{height:25.920000pt;}
.he{height:26.080000pt;}
.h11{height:26.112000pt;}
.h4{height:45.156250pt;}
.ha{height:47.085938pt;}
.hf{height:52.134375pt;}
.h7{height:53.937500pt;}
.hc{height:54.149062pt;}
.h3{height:54.187500pt;}
.h2{height:55.712000pt;}
.hd{height:58.563750pt;}
.h6{height:62.812500pt;}
.h13{height:63.399375pt;}
.h5{height:64.500000pt;}
.h9{height:73.454062pt;}
.hb{height:73.490625pt;}
.h8{height:75.465000pt;}
.h12{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:143.360000pt;}
.w5{width:143.386667pt;}
.w2{width:198.306667pt;}
.w3{width:443.746667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.232000pt;}
.x5{left:20.960000pt;}
.x4{left:34.560000pt;}
.x1{left:75.520000pt;}
.x7{left:96.831988pt;}
.xe{left:98.751988pt;}
.x10{left:105.951988pt;}
.x18{left:109.152000pt;}
.x1d{left:113.311988pt;}
.x8{left:119.071988pt;}
.x14{left:122.751988pt;}
.xc{left:194.106655pt;}
.xd{left:205.946655pt;}
.x12{left:236.826655pt;}
.x1c{left:240.986655pt;}
.xb{left:245.826655pt;}
.x19{left:253.186667pt;}
.x3{left:273.826667pt;}
.x6{left:299.066667pt;}
.x9{left:327.906655pt;}
.x13{left:348.546655pt;}
.x15{left:349.666655pt;}
.x17{left:351.746655pt;}
.xf{left:354.786655pt;}
.x11{left:368.226655pt;}
.x1b{left:369.346655pt;}
.xa{left:396.866655pt;}
.x1e{left:420.413322pt;}
.x1a{left:541.213333pt;}
.x16{left:718.213322pt;}
}




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