
    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_225138f1167db226812961eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_b7b477943dc492d41cd53c94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_4c521b11dc452e7bb93ebd5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_9ef926341efbbacb919df5b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_81b0e4c963bc5e45f2277428.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-63.071100px;}
.wsa{word-spacing:-55.944000px;}
.ws17{word-spacing:-38.662200px;}
.ws4f{word-spacing:-38.653200px;}
.ws23{word-spacing:-38.644200px;}
.ws36{word-spacing:-38.640000px;}
.ws3{word-spacing:-38.439900px;}
.ws30{word-spacing:-38.435400px;}
.ws14{word-spacing:-38.430000px;}
.ws46{word-spacing:-38.376000px;}
.ws3b{word-spacing:-38.368800px;}
.ws42{word-spacing:-38.360100px;}
.ws58{word-spacing:-38.160000px;}
.ws1f{word-spacing:-38.154000px;}
.ws27{word-spacing:-38.152800px;}
.ws5{word-spacing:-38.143800px;}
.ws24{word-spacing:-38.136900px;}
.ws66{word-spacing:-37.944000px;}
.ws47{word-spacing:-37.943100px;}
.ws4{word-spacing:-37.942200px;}
.ws48{word-spacing:-37.938600px;}
.ws37{word-spacing:-37.935600px;}
.ws6c{word-spacing:-37.929900px;}
.ws2c{word-spacing:-37.713000px;}
.wsd{word-spacing:-37.705800px;}
.ws1c{word-spacing:-37.702200px;}
.wsf{word-spacing:-37.577700px;}
.ws52{word-spacing:-37.446000px;}
.wse{word-spacing:-37.416900px;}
.ws62{word-spacing:-37.217700px;}
.ws67{word-spacing:-36.867300px;}
.ws50{word-spacing:-36.000000px;}
.ws6e{word-spacing:-35.784000px;}
.ws69{word-spacing:-35.276400px;}
.ws4d{word-spacing:-35.265900px;}
.ws1d{word-spacing:-35.263200px;}
.ws63{word-spacing:-35.070000px;}
.ws29{word-spacing:-35.056800px;}
.ws5e{word-spacing:-34.566000px;}
.ws6d{word-spacing:-34.560000px;}
.ws4e{word-spacing:-34.557900px;}
.ws26{word-spacing:-34.327200px;}
.ws1e{word-spacing:-34.326000px;}
.ws6a{word-spacing:-33.630000px;}
.ws34{word-spacing:-33.613200px;}
.ws2{word-spacing:-33.547800px;}
.ws1a{word-spacing:-33.120000px;}
.ws55{word-spacing:-32.908200px;}
.ws16{word-spacing:-32.184000px;}
.ws56{word-spacing:-32.175000px;}
.ws10{word-spacing:-32.171700px;}
.ws11{word-spacing:-31.686000px;}
.ws15{word-spacing:-31.674000px;}
.ws6{word-spacing:-31.655100px;}
.ws68{word-spacing:-31.464000px;}
.ws5a{word-spacing:-31.447800px;}
.ws7{word-spacing:-30.960000px;}
.ws59{word-spacing:-30.731700px;}
.ws2a{word-spacing:-30.718200px;}
.ws2f{word-spacing:-30.511800px;}
.ws8{word-spacing:-29.520000px;}
.ws5b{word-spacing:-28.080000px;}
.ws28{word-spacing:-28.077000px;}
.ws18{word-spacing:-28.055100px;}
.ws9{word-spacing:-27.852000px;}
.ws19{word-spacing:-27.356400px;}
.ws53{word-spacing:-27.354000px;}
.ws2d{word-spacing:-27.131400px;}
.ws64{word-spacing:-25.920000px;}
.ws25{word-spacing:-24.960900px;}
.ws2e{word-spacing:-24.456600px;}
.ws2b{word-spacing:-22.816800px;}
.ws51{word-spacing:-22.320000px;}
.ws60{word-spacing:-20.160000px;}
.ws57{word-spacing:-19.434000px;}
.ws61{word-spacing:-19.222200px;}
.ws31{word-spacing:-19.202400px;}
.ws5d{word-spacing:-18.498600px;}
.ws32{word-spacing:-17.774100px;}
.ws1b{word-spacing:-17.045400px;}
.ws22{word-spacing:-15.613200px;}
.ws5f{word-spacing:-13.458600px;}
.ws5c{word-spacing:-12.739200px;}
.ws20{word-spacing:-11.942100px;}
.ws33{word-spacing:-10.059300px;}
.ws12{word-spacing:-8.640000px;}
.ws54{word-spacing:-8.634000px;}
.ws21{word-spacing:-8.411400px;}
.ws35{word-spacing:-6.753000px;}
.wsb{word-spacing:-0.715200px;}
.ws3a{word-spacing:-0.701100px;}
.wsc{word-spacing:-0.492600px;}
.ws4c{word-spacing:0.000000px;}
.ws13{word-spacing:2.887200px;}
.ws4b{word-spacing:7.209900px;}
.ws44{word-spacing:7.416000px;}
.ws65{word-spacing:9.592200px;}
.ws6b{word-spacing:10.298700px;}
.ws43{word-spacing:25.416000px;}
.ws41{word-spacing:35.505900px;}
.ws3f{word-spacing:63.570000px;}
.ws38{word-spacing:63.576000px;}
.ws3c{word-spacing:63.582000px;}
.ws3e{word-spacing:71.004300px;}
.ws39{word-spacing:78.267900px;}
.ws3d{word-spacing:78.279900px;}
.ws40{word-spacing:78.993900px;}
.ws45{word-spacing:90.942300px;}
.ws4a{word-spacing:221.970000px;}
.ws49{word-spacing:257.970000px;}
.ws1{word-spacing:1807.277400px;}
._5{margin-left:-1.963800px;}
._0{width:1.148400px;}
._f{width:2.163000px;}
._1{width:18.510000px;}
._6{width:19.560900px;}
._16{width:21.168000px;}
._e{width:22.741200px;}
._9{width:23.838000px;}
._7{width:24.958200px;}
._2{width:26.117100px;}
._10{width:27.145800px;}
._3{width:29.514000px;}
._12{width:30.819000px;}
._d{width:32.310900px;}
._11{width:34.621200px;}
._17{width:37.915200px;}
._13{width:39.812100px;}
._c{width:41.816400px;}
._18{width:43.704600px;}
._a{width:45.006000px;}
._14{width:46.969800px;}
._b{width:48.634200px;}
._15{width:50.247000px;}
._4{width:56.876400px;}
._8{width:59.960400px;}
._1a{width:65.229900px;}
._19{width:66.688800px;}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:3.765000px;}
.y5f{bottom:3.796500px;}
.y4f{bottom:3.825000px;}
.y55{bottom:3.855000px;}
.y36{bottom:3.886500px;}
.y41{bottom:3.915000px;}
.y78{bottom:3.945000px;}
.y45{bottom:3.946500px;}
.y75{bottom:3.961500px;}
.y49{bottom:3.975000px;}
.y4{bottom:4.471500px;}
.y65{bottom:4.650000px;}
.y89{bottom:4.800000px;}
.y5a{bottom:14.175000px;}
.y5c{bottom:14.205000px;}
.y7f{bottom:14.296500px;}
.y57{bottom:14.325000px;}
.y3b{bottom:14.355000px;}
.y70{bottom:14.400000px;}
.y5d{bottom:24.465000px;}
.y4e{bottom:24.525000px;}
.y54{bottom:24.555000px;}
.y58{bottom:24.586500px;}
.y40{bottom:24.615000px;}
.y43{bottom:24.645000px;}
.y74{bottom:24.661500px;}
.y47{bottom:24.675000px;}
.y64{bottom:25.350000px;}
.y88{bottom:25.500000px;}
.y7a{bottom:34.936500px;}
.y4b{bottom:34.965000px;}
.y51{bottom:34.996500px;}
.y3a{bottom:35.055000px;}
.y6f{bottom:35.100000px;}
.y85{bottom:35.761500px;}
.y61{bottom:35.790000px;}
.y44{bottom:45.165000px;}
.y48{bottom:45.195000px;}
.y4d{bottom:45.225000px;}
.y53{bottom:45.255000px;}
.y3f{bottom:45.315000px;}
.y73{bottom:45.361500px;}
.y7c{bottom:45.375000px;}
.y63{bottom:46.050000px;}
.y87{bottom:46.200000px;}
.y39{bottom:55.755000px;}
.y6e{bottom:55.800000px;}
.y34{bottom:56.115000px;}
.y7b{bottom:65.895000px;}
.y4c{bottom:65.925000px;}
.y52{bottom:65.955000px;}
.y3e{bottom:66.015000px;}
.y72{bottom:66.061500px;}
.y86{bottom:66.721500px;}
.y62{bottom:66.750000px;}
.y3{bottom:72.825000px;}
.y38{bottom:76.455000px;}
.y6d{bottom:76.500000px;}
.y33{bottom:76.815000px;}
.y3d{bottom:86.715000px;}
.y71{bottom:86.761500px;}
.y37{bottom:96.975000px;}
.y6c{bottom:97.020000px;}
.y9b{bottom:107.175000px;}
.y6b{bottom:107.280000px;}
.y3c{bottom:107.415000px;}
.y69{bottom:122.550000px;}
.y9a{bottom:127.875000px;}
.y68{bottom:147.855000px;}
.y99{bottom:148.575000px;}
.y2f{bottom:156.855000px;}
.y67{bottom:168.555000px;}
.y98{bottom:169.275000px;}
.y2e{bottom:177.555000px;}
.y66{bottom:189.255000px;}
.y97{bottom:189.975000px;}
.y2d{bottom:198.255000px;}
.y96{bottom:210.675000px;}
.y2c{bottom:218.955000px;}
.y95{bottom:231.375000px;}
.y2b{bottom:239.655000px;}
.y94{bottom:252.075000px;}
.y93{bottom:272.775000px;}
.y60{bottom:288.825000px;}
.y92{bottom:293.475000px;}
.y2a{bottom:301.755000px;}
.y91{bottom:314.175000px;}
.y29{bottom:322.455000px;}
.y90{bottom:334.875000px;}
.y28{bottom:343.155000px;}
.y8f{bottom:355.575000px;}
.y27{bottom:363.855000px;}
.y5e{bottom:373.200000px;}
.y8e{bottom:376.275000px;}
.y26{bottom:384.555000px;}
.y5b{bottom:394.650000px;}
.y8d{bottom:396.975000px;}
.y25{bottom:405.255000px;}
.y8c{bottom:417.675000px;}
.y24{bottom:425.955000px;}
.y59{bottom:436.800000px;}
.y8b{bottom:438.375000px;}
.y23{bottom:446.655000px;}
.y8a{bottom:459.075000px;}
.y22{bottom:467.355000px;}
.y56{bottom:478.950000px;}
.y21{bottom:488.055000px;}
.y84{bottom:496.575000px;}
.y20{bottom:508.755000px;}
.y50{bottom:521.100000px;}
.y1f{bottom:529.455000px;}
.y1e{bottom:550.155000px;}
.y1d{bottom:570.855000px;}
.y82{bottom:580.950000px;}
.y9c{bottom:591.555000px;}
.y81{bottom:602.400000px;}
.y4a{bottom:604.650000px;}
.y1c{bottom:612.255000px;}
.y1b{bottom:632.955000px;}
.y80{bottom:644.550000px;}
.y1a{bottom:653.655000px;}
.y19{bottom:674.355000px;}
.y7e{bottom:686.700000px;}
.y46{bottom:688.200000px;}
.y18{bottom:695.055000px;}
.y17{bottom:715.755000px;}
.y7d{bottom:728.850000px;}
.y16{bottom:736.455000px;}
.y42{bottom:751.050000px;}
.y15{bottom:757.155000px;}
.y14{bottom:777.855000px;}
.y13{bottom:798.555000px;}
.y79{bottom:812.400000px;}
.y32{bottom:813.900000px;}
.y12{bottom:819.255000px;}
.y11{bottom:839.955000px;}
.y10{bottom:860.655000px;}
.yf{bottom:881.355000px;}
.y77{bottom:895.950000px;}
.ye{bottom:902.055000px;}
.yd{bottom:922.755000px;}
.y35{bottom:938.850000px;}
.yc{bottom:943.455000px;}
.y76{bottom:958.800000px;}
.yb{bottom:964.155000px;}
.ya{bottom:984.855000px;}
.y9{bottom:1005.555000px;}
.y6a{bottom:1021.575000px;}
.y8{bottom:1026.255000px;}
.y31{bottom:1046.955000px;}
.y7{bottom:1067.655000px;}
.y6{bottom:1088.355000px;}
.y30{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h9{height:21.375000px;}
.hf{height:21.450000px;}
.hd{height:42.075000px;}
.h5{height:45.225146px;}
.h6{height:48.796875px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.hb{height:62.775000px;}
.hc{height:83.475000px;}
.he{height:84.300000px;}
.h2{height:97.101563px;}
.ha{height:124.875000px;}
.h8{height:146.325000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w3{width:33.225000px;}
.w6{width:56.400000px;}
.w4{width:117.825000px;}
.w7{width:125.025000px;}
.w8{width:125.100000px;}
.w5{width:556.350000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.113500px;}
.x8{left:130.125000px;}
.x7{left:138.238500px;}
.x4{left:141.838500px;}
.x1{left:153.000000px;}
.x2{left:154.080000px;}
.xa{left:163.275000px;}
.x10{left:191.338500px;}
.xb{left:281.025000px;}
.xc{left:337.350000px;}
.xd{left:462.300000px;}
.x3{left:475.350000px;}
.xe{left:587.250000px;}
.x6{left:639.180000px;}
.x5{left:685.260000px;}
.xf{left:712.275000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.wsa{word-spacing:-49.728000pt;}
.ws17{word-spacing:-34.366400pt;}
.ws4f{word-spacing:-34.358400pt;}
.ws23{word-spacing:-34.350400pt;}
.ws36{word-spacing:-34.346667pt;}
.ws3{word-spacing:-34.168800pt;}
.ws30{word-spacing:-34.164800pt;}
.ws14{word-spacing:-34.160000pt;}
.ws46{word-spacing:-34.112000pt;}
.ws3b{word-spacing:-34.105600pt;}
.ws42{word-spacing:-34.097867pt;}
.ws58{word-spacing:-33.920000pt;}
.ws1f{word-spacing:-33.914667pt;}
.ws27{word-spacing:-33.913600pt;}
.ws5{word-spacing:-33.905600pt;}
.ws24{word-spacing:-33.899467pt;}
.ws66{word-spacing:-33.728000pt;}
.ws47{word-spacing:-33.727200pt;}
.ws4{word-spacing:-33.726400pt;}
.ws48{word-spacing:-33.723200pt;}
.ws37{word-spacing:-33.720533pt;}
.ws6c{word-spacing:-33.715467pt;}
.ws2c{word-spacing:-33.522667pt;}
.wsd{word-spacing:-33.516267pt;}
.ws1c{word-spacing:-33.513067pt;}
.wsf{word-spacing:-33.402400pt;}
.ws52{word-spacing:-33.285333pt;}
.wse{word-spacing:-33.259467pt;}
.ws62{word-spacing:-33.082400pt;}
.ws67{word-spacing:-32.770933pt;}
.ws50{word-spacing:-32.000000pt;}
.ws6e{word-spacing:-31.808000pt;}
.ws69{word-spacing:-31.356800pt;}
.ws4d{word-spacing:-31.347467pt;}
.ws1d{word-spacing:-31.345067pt;}
.ws63{word-spacing:-31.173333pt;}
.ws29{word-spacing:-31.161600pt;}
.ws5e{word-spacing:-30.725333pt;}
.ws6d{word-spacing:-30.720000pt;}
.ws4e{word-spacing:-30.718133pt;}
.ws26{word-spacing:-30.513067pt;}
.ws1e{word-spacing:-30.512000pt;}
.ws6a{word-spacing:-29.893333pt;}
.ws34{word-spacing:-29.878400pt;}
.ws2{word-spacing:-29.820267pt;}
.ws1a{word-spacing:-29.440000pt;}
.ws55{word-spacing:-29.251733pt;}
.ws16{word-spacing:-28.608000pt;}
.ws56{word-spacing:-28.600000pt;}
.ws10{word-spacing:-28.597067pt;}
.ws11{word-spacing:-28.165333pt;}
.ws15{word-spacing:-28.154667pt;}
.ws6{word-spacing:-28.137867pt;}
.ws68{word-spacing:-27.968000pt;}
.ws5a{word-spacing:-27.953600pt;}
.ws7{word-spacing:-27.520000pt;}
.ws59{word-spacing:-27.317067pt;}
.ws2a{word-spacing:-27.305067pt;}
.ws2f{word-spacing:-27.121600pt;}
.ws8{word-spacing:-26.240000pt;}
.ws5b{word-spacing:-24.960000pt;}
.ws28{word-spacing:-24.957333pt;}
.ws18{word-spacing:-24.937867pt;}
.ws9{word-spacing:-24.757333pt;}
.ws19{word-spacing:-24.316800pt;}
.ws53{word-spacing:-24.314667pt;}
.ws2d{word-spacing:-24.116800pt;}
.ws64{word-spacing:-23.040000pt;}
.ws25{word-spacing:-22.187467pt;}
.ws2e{word-spacing:-21.739200pt;}
.ws2b{word-spacing:-20.281600pt;}
.ws51{word-spacing:-19.840000pt;}
.ws60{word-spacing:-17.920000pt;}
.ws57{word-spacing:-17.274667pt;}
.ws61{word-spacing:-17.086400pt;}
.ws31{word-spacing:-17.068800pt;}
.ws5d{word-spacing:-16.443200pt;}
.ws32{word-spacing:-15.799200pt;}
.ws1b{word-spacing:-15.151467pt;}
.ws22{word-spacing:-13.878400pt;}
.ws5f{word-spacing:-11.963200pt;}
.ws5c{word-spacing:-11.323733pt;}
.ws20{word-spacing:-10.615200pt;}
.ws33{word-spacing:-8.941600pt;}
.ws12{word-spacing:-7.680000pt;}
.ws54{word-spacing:-7.674667pt;}
.ws21{word-spacing:-7.476800pt;}
.ws35{word-spacing:-6.002667pt;}
.wsb{word-spacing:-0.635733pt;}
.ws3a{word-spacing:-0.623200pt;}
.wsc{word-spacing:-0.437867pt;}
.ws4c{word-spacing:0.000000pt;}
.ws13{word-spacing:2.566400pt;}
.ws4b{word-spacing:6.408800pt;}
.ws44{word-spacing:6.592000pt;}
.ws65{word-spacing:8.526400pt;}
.ws6b{word-spacing:9.154400pt;}
.ws43{word-spacing:22.592000pt;}
.ws41{word-spacing:31.560800pt;}
.ws3f{word-spacing:56.506667pt;}
.ws38{word-spacing:56.512000pt;}
.ws3c{word-spacing:56.517333pt;}
.ws3e{word-spacing:63.114933pt;}
.ws39{word-spacing:69.571467pt;}
.ws3d{word-spacing:69.582133pt;}
.ws40{word-spacing:70.216800pt;}
.ws45{word-spacing:80.837600pt;}
.ws4a{word-spacing:197.306667pt;}
.ws49{word-spacing:229.306667pt;}
.ws1{word-spacing:1606.468800pt;}
._5{margin-left:-1.745600pt;}
._0{width:1.020800pt;}
._f{width:1.922667pt;}
._1{width:16.453333pt;}
._6{width:17.387467pt;}
._16{width:18.816000pt;}
._e{width:20.214400pt;}
._9{width:21.189333pt;}
._7{width:22.185067pt;}
._2{width:23.215200pt;}
._10{width:24.129600pt;}
._3{width:26.234667pt;}
._12{width:27.394667pt;}
._d{width:28.720800pt;}
._11{width:30.774400pt;}
._17{width:33.702400pt;}
._13{width:35.388533pt;}
._c{width:37.170133pt;}
._18{width:38.848533pt;}
._a{width:40.005333pt;}
._14{width:41.750933pt;}
._b{width:43.230400pt;}
._15{width:44.664000pt;}
._4{width:50.556800pt;}
._8{width:53.298133pt;}
._1a{width:57.982133pt;}
._19{width:59.278933pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:3.346667pt;}
.y5f{bottom:3.374667pt;}
.y4f{bottom:3.400000pt;}
.y55{bottom:3.426667pt;}
.y36{bottom:3.454667pt;}
.y41{bottom:3.480000pt;}
.y78{bottom:3.506667pt;}
.y45{bottom:3.508000pt;}
.y75{bottom:3.521333pt;}
.y49{bottom:3.533333pt;}
.y4{bottom:3.974667pt;}
.y65{bottom:4.133333pt;}
.y89{bottom:4.266667pt;}
.y5a{bottom:12.600000pt;}
.y5c{bottom:12.626667pt;}
.y7f{bottom:12.708000pt;}
.y57{bottom:12.733333pt;}
.y3b{bottom:12.760000pt;}
.y70{bottom:12.800000pt;}
.y5d{bottom:21.746667pt;}
.y4e{bottom:21.800000pt;}
.y54{bottom:21.826667pt;}
.y58{bottom:21.854667pt;}
.y40{bottom:21.880000pt;}
.y43{bottom:21.906667pt;}
.y74{bottom:21.921333pt;}
.y47{bottom:21.933333pt;}
.y64{bottom:22.533333pt;}
.y88{bottom:22.666667pt;}
.y7a{bottom:31.054667pt;}
.y4b{bottom:31.080000pt;}
.y51{bottom:31.108000pt;}
.y3a{bottom:31.160000pt;}
.y6f{bottom:31.200000pt;}
.y85{bottom:31.788000pt;}
.y61{bottom:31.813333pt;}
.y44{bottom:40.146667pt;}
.y48{bottom:40.173333pt;}
.y4d{bottom:40.200000pt;}
.y53{bottom:40.226667pt;}
.y3f{bottom:40.280000pt;}
.y73{bottom:40.321333pt;}
.y7c{bottom:40.333333pt;}
.y63{bottom:40.933333pt;}
.y87{bottom:41.066667pt;}
.y39{bottom:49.560000pt;}
.y6e{bottom:49.600000pt;}
.y34{bottom:49.880000pt;}
.y7b{bottom:58.573333pt;}
.y4c{bottom:58.600000pt;}
.y52{bottom:58.626667pt;}
.y3e{bottom:58.680000pt;}
.y72{bottom:58.721333pt;}
.y86{bottom:59.308000pt;}
.y62{bottom:59.333333pt;}
.y3{bottom:64.733333pt;}
.y38{bottom:67.960000pt;}
.y6d{bottom:68.000000pt;}
.y33{bottom:68.280000pt;}
.y3d{bottom:77.080000pt;}
.y71{bottom:77.121333pt;}
.y37{bottom:86.200000pt;}
.y6c{bottom:86.240000pt;}
.y9b{bottom:95.266667pt;}
.y6b{bottom:95.360000pt;}
.y3c{bottom:95.480000pt;}
.y69{bottom:108.933333pt;}
.y9a{bottom:113.666667pt;}
.y68{bottom:131.426667pt;}
.y99{bottom:132.066667pt;}
.y2f{bottom:139.426667pt;}
.y67{bottom:149.826667pt;}
.y98{bottom:150.466667pt;}
.y2e{bottom:157.826667pt;}
.y66{bottom:168.226667pt;}
.y97{bottom:168.866667pt;}
.y2d{bottom:176.226667pt;}
.y96{bottom:187.266667pt;}
.y2c{bottom:194.626667pt;}
.y95{bottom:205.666667pt;}
.y2b{bottom:213.026667pt;}
.y94{bottom:224.066667pt;}
.y93{bottom:242.466667pt;}
.y60{bottom:256.733333pt;}
.y92{bottom:260.866667pt;}
.y2a{bottom:268.226667pt;}
.y91{bottom:279.266667pt;}
.y29{bottom:286.626667pt;}
.y90{bottom:297.666667pt;}
.y28{bottom:305.026667pt;}
.y8f{bottom:316.066667pt;}
.y27{bottom:323.426667pt;}
.y5e{bottom:331.733333pt;}
.y8e{bottom:334.466667pt;}
.y26{bottom:341.826667pt;}
.y5b{bottom:350.800000pt;}
.y8d{bottom:352.866667pt;}
.y25{bottom:360.226667pt;}
.y8c{bottom:371.266667pt;}
.y24{bottom:378.626667pt;}
.y59{bottom:388.266667pt;}
.y8b{bottom:389.666667pt;}
.y23{bottom:397.026667pt;}
.y8a{bottom:408.066667pt;}
.y22{bottom:415.426667pt;}
.y56{bottom:425.733333pt;}
.y21{bottom:433.826667pt;}
.y84{bottom:441.400000pt;}
.y20{bottom:452.226667pt;}
.y50{bottom:463.200000pt;}
.y1f{bottom:470.626667pt;}
.y1e{bottom:489.026667pt;}
.y1d{bottom:507.426667pt;}
.y82{bottom:516.400000pt;}
.y9c{bottom:525.826667pt;}
.y81{bottom:535.466667pt;}
.y4a{bottom:537.466667pt;}
.y1c{bottom:544.226667pt;}
.y1b{bottom:562.626667pt;}
.y80{bottom:572.933333pt;}
.y1a{bottom:581.026667pt;}
.y19{bottom:599.426667pt;}
.y7e{bottom:610.400000pt;}
.y46{bottom:611.733333pt;}
.y18{bottom:617.826667pt;}
.y17{bottom:636.226667pt;}
.y7d{bottom:647.866667pt;}
.y16{bottom:654.626667pt;}
.y42{bottom:667.600000pt;}
.y15{bottom:673.026667pt;}
.y14{bottom:691.426667pt;}
.y13{bottom:709.826667pt;}
.y79{bottom:722.133333pt;}
.y32{bottom:723.466667pt;}
.y12{bottom:728.226667pt;}
.y11{bottom:746.626667pt;}
.y10{bottom:765.026667pt;}
.yf{bottom:783.426667pt;}
.y77{bottom:796.400000pt;}
.ye{bottom:801.826667pt;}
.yd{bottom:820.226667pt;}
.y35{bottom:834.533333pt;}
.yc{bottom:838.626667pt;}
.y76{bottom:852.266667pt;}
.yb{bottom:857.026667pt;}
.ya{bottom:875.426667pt;}
.y9{bottom:893.826667pt;}
.y6a{bottom:908.066667pt;}
.y8{bottom:912.226667pt;}
.y31{bottom:930.626667pt;}
.y7{bottom:949.026667pt;}
.y6{bottom:967.426667pt;}
.y30{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h9{height:19.000000pt;}
.hf{height:19.066667pt;}
.hd{height:37.400000pt;}
.h5{height:40.200130pt;}
.h6{height:43.375000pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.hb{height:55.800000pt;}
.hc{height:74.200000pt;}
.he{height:74.933333pt;}
.h2{height:86.312500pt;}
.ha{height:111.000000pt;}
.h8{height:130.066667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w3{width:29.533333pt;}
.w6{width:50.133333pt;}
.w4{width:104.733333pt;}
.w7{width:111.133333pt;}
.w8{width:111.200000pt;}
.w5{width:494.533333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.212000pt;}
.x8{left:115.666667pt;}
.x7{left:122.878667pt;}
.x4{left:126.078667pt;}
.x1{left:136.000000pt;}
.x2{left:136.960000pt;}
.xa{left:145.133333pt;}
.x10{left:170.078667pt;}
.xb{left:249.800000pt;}
.xc{left:299.866667pt;}
.xd{left:410.933333pt;}
.x3{left:422.533333pt;}
.xe{left:522.000000pt;}
.x6{left:568.160000pt;}
.x5{left:609.120000pt;}
.xf{left:633.133333pt;}
}




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