
    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_0e76d03c5d2df427473838e1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088867;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_9a8aabd3397fecb8fbb83962.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5e8e09ecfe77a8a6aa1a67d7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912109;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_2527732fb83ab44a7dcc636b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088867;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_ec131a76786abe28ca627f2e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a3652e66a7446da479d8ba2f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084473;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_6472e2df85f60b3226a2d647.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084473;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_72a26cd423d892f4ceb6b448.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9cd8e2f4ac4ca7224d66d225.woff')format("woff");}.ff9{font-family:ff9;line-height:1.110352;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_33c9fc9de1802c99cc01807d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.110352;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_a22da93576f2b6d8e9617f68.woff')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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);}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v2{vertical-align:18.000000px;}
.ls19{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.093600px;}
.ls1a{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.036000px;}
.ls2b{letter-spacing:-0.000003px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.172440px;}
.ls0{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.216000px;}
.ls26{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls24{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.440000px;}
.ls1d{letter-spacing:2.160000px;}
.ls1e{letter-spacing:2.280000px;}
.ls21{letter-spacing:2.520000px;}
.ls22{letter-spacing:2.880000px;}
.ls11{letter-spacing:4.320000px;}
.lsa{letter-spacing:4.680000px;}
.ls1c{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.120000px;}
.ls27{letter-spacing:6.480000px;}
.ls23{letter-spacing:6.840000px;}
.ls2f{letter-spacing:8.280000px;}
.ls13{letter-spacing:8.640000px;}
.ls12{letter-spacing:9.000000px;}
.ls28{letter-spacing:9.360000px;}
.ls2c{letter-spacing:12.240000px;}
.ls2e{letter-spacing:12.360000px;}
.ls2d{letter-spacing:12.600000px;}
.ls15{letter-spacing:13.320000px;}
.ls16{letter-spacing:13.680000px;}
.ls17{letter-spacing:13.800000px;}
.ls4{letter-spacing:14.760000px;}
.lse{letter-spacing:15.120000px;}
.ls10{letter-spacing:15.240000px;}
.lsf{letter-spacing:15.480000px;}
.ls29{letter-spacing:15.840000px;}
.ls2a{letter-spacing:16.200000px;}
.ls3{letter-spacing:17.280000px;}
.lsd{letter-spacing:20.160000px;}
.lsc{letter-spacing:20.520000px;}
.ls18{letter-spacing:33.386400px;}
.lsb{letter-spacing:95.664000px;}
.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;}
}
.ws4{word-spacing:-18.453600px;}
.ws0{word-spacing:-16.650000px;}
.ws8{word-spacing:-16.128000px;}
.ws9{word-spacing:-16.056000px;}
.ws3{word-spacing:-15.912000px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.696000px;}
.ws1{word-spacing:-11.844000px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-3.744000px;}
._14{margin-left:-2.688000px;}
._1{margin-left:-1.036920px;}
._0{width:1.172280px;}
._18{width:2.571720px;}
._b{width:4.104000px;}
._c{width:5.184000px;}
._5{width:6.696000px;}
._d{width:7.992000px;}
._10{width:9.216000px;}
._12{width:10.224000px;}
._11{width:11.359440px;}
._1e{width:12.600000px;}
._22{width:13.621560px;}
._8{width:14.644920px;}
._7{width:17.136000px;}
._26{width:18.156360px;}
._25{width:19.200000px;}
._1f{width:20.448000px;}
._1a{width:21.456000px;}
._f{width:22.680000px;}
._15{width:23.904000px;}
._24{width:25.488000px;}
._13{width:26.784000px;}
._20{width:28.080000px;}
._21{width:29.232000px;}
._e{width:31.032000px;}
._1d{width:32.112000px;}
._4{width:33.192000px;}
._27{width:36.480000px;}
._28{width:37.536000px;}
._30{width:38.836920px;}
._19{width:40.176000px;}
._1c{width:41.544000px;}
._3{width:43.488000px;}
._2{width:44.496000px;}
._16{width:46.368000px;}
._17{width:47.520000px;}
._1b{width:48.607440px;}
._2e{width:49.925400px;}
._2c{width:52.536000px;}
._6{width:54.648000px;}
._2a{width:55.656000px;}
._29{width:56.808000px;}
._9{width:59.400000px;}
._a{width:60.552000px;}
._2f{width:64.512000px;}
._31{width:81.936000px;}
._2b{width:108.144000px;}
._2d{width:174.864000px;}
.fc1{color:rgb(56,86,35);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.ya{bottom:1.350000px;}
.ye{bottom:2.250000px;}
.y10{bottom:2.520000px;}
.y4{bottom:3.600000px;}
.y6{bottom:4.590000px;}
.y12{bottom:5.220000px;}
.y8{bottom:7.380000px;}
.yd{bottom:16.290000px;}
.yc{bottom:30.420000px;}
.y7{bottom:43.020000px;}
.y5{bottom:45.720000px;}
.y3{bottom:46.620000px;}
.y2{bottom:51.030000px;}
.y67{bottom:98.730000px;}
.y66{bottom:123.030000px;}
.y3c{bottom:132.930000px;}
.y65{bottom:147.330000px;}
.y3b{bottom:156.510000px;}
.y64{bottom:171.540000px;}
.y3a{bottom:181.440000px;}
.y63{bottom:195.840000px;}
.y39{bottom:205.740000px;}
.y62{bottom:220.140000px;}
.y38{bottom:230.070000px;}
.y61{bottom:244.380000px;}
.y37{bottom:254.280000px;}
.y60{bottom:268.680000px;}
.y36{bottom:278.580000px;}
.y5f{bottom:292.980000px;}
.y35{bottom:302.880000px;}
.y5e{bottom:317.190000px;}
.y34{bottom:327.090000px;}
.y5d{bottom:341.490000px;}
.y33{bottom:351.390000px;}
.y5c{bottom:365.700000px;}
.y32{bottom:375.690000px;}
.y76{bottom:389.280000px;}
.y5b{bottom:390.000000px;}
.y31{bottom:399.900000px;}
.y75{bottom:413.580000px;}
.y5a{bottom:414.300000px;}
.y30{bottom:424.200000px;}
.y74{bottom:437.880000px;}
.y59{bottom:438.510000px;}
.y2f{bottom:448.410000px;}
.y73{bottom:462.090000px;}
.y58{bottom:462.810000px;}
.y2e{bottom:472.710000px;}
.y72{bottom:486.390000px;}
.y57{bottom:487.110000px;}
.y2d{bottom:497.010000px;}
.y71{bottom:510.690000px;}
.y56{bottom:511.320000px;}
.y2c{bottom:521.220000px;}
.y70{bottom:534.900000px;}
.y55{bottom:535.620000px;}
.y2b{bottom:545.520000px;}
.y6f{bottom:559.200000px;}
.y54{bottom:559.920000px;}
.y2a{bottom:567.390000px;}
.y6e{bottom:583.410000px;}
.y53{bottom:584.130000px;}
.y29{bottom:592.050000px;}
.y6d{bottom:607.710000px;}
.y52{bottom:608.430000px;}
.y28{bottom:616.620000px;}
.y6c{bottom:632.010000px;}
.y51{bottom:632.730000px;}
.y27{bottom:643.620000px;}
.y6b{bottom:656.250000px;}
.y50{bottom:656.970000px;}
.y26{bottom:667.950000px;}
.y6a{bottom:680.550000px;}
.y4f{bottom:681.270000px;}
.y25{bottom:692.250000px;}
.y69{bottom:702.420000px;}
.y4e{bottom:705.570000px;}
.y24{bottom:716.460000px;}
.y68{bottom:727.080000px;}
.y4d{bottom:729.780000px;}
.y23{bottom:740.760000px;}
.y4c{bottom:754.080000px;}
.y22{bottom:765.060000px;}
.y4b{bottom:778.290000px;}
.y21{bottom:786.930000px;}
.y4a{bottom:802.590000px;}
.y20{bottom:811.500000px;}
.y49{bottom:826.890000px;}
.y1f{bottom:836.160000px;}
.y48{bottom:851.100000px;}
.y1e{bottom:860.730000px;}
.y47{bottom:875.400000px;}
.y1d{bottom:887.730000px;}
.y46{bottom:899.700000px;}
.y1c{bottom:912.030000px;}
.y45{bottom:923.910000px;}
.y1b{bottom:936.330000px;}
.y44{bottom:948.210000px;}
.y1a{bottom:960.540000px;}
.y43{bottom:972.510000px;}
.y19{bottom:984.840000px;}
.y42{bottom:996.720000px;}
.y18{bottom:1005.990000px;}
.y41{bottom:1021.020000px;}
.y17{bottom:1027.140000px;}
.y40{bottom:1045.320000px;}
.y16{bottom:1048.200000px;}
.y15{bottom:1069.200000px;}
.y3f{bottom:1069.560000px;}
.y14{bottom:1090.710000px;}
.y3e{bottom:1093.860000px;}
.y13{bottom:1115.370000px;}
.y3d{bottom:1118.070000px;}
.y11{bottom:1150.740000px;}
.yf{bottom:1156.050000px;}
.yb{bottom:1173.600000px;}
.y9{bottom:1213.650000px;}
.y1{bottom:1245.780000px;}
.hc{height:13.950000px;}
.hd{height:18.090000px;}
.h4{height:18.900000px;}
.h6{height:19.980000px;}
.h7{height:22.770000px;}
.h8{height:24.210000px;}
.ha{height:41.850000px;}
.hb{height:41.918379px;}
.he{height:47.276367px;}
.h11{height:62.367188px;}
.h2{height:63.035156px;}
.h14{height:64.230469px;}
.h5{height:64.657617px;}
.h12{height:65.247187px;}
.h3{height:70.664062px;}
.h10{height:72.562500px;}
.hf{height:73.435957px;}
.h13{height:74.004654px;}
.h9{height:84.151934px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.330000px;}
.w9{width:124.920000px;}
.w6{width:147.510000px;}
.w5{width:149.760000px;}
.w8{width:192.540000px;}
.w7{width:270.840000px;}
.w4{width:340.530000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x8{left:17.550000px;}
.x3{left:20.790000px;}
.x4{left:77.850000px;}
.x1{left:85.049987px;}
.x16{left:99.629987px;}
.x11{left:127.649987px;}
.x13{left:131.879987px;}
.x17{left:134.669987px;}
.x14{left:148.169987px;}
.x7{left:164.010000px;}
.xc{left:169.499987px;}
.x9{left:171.210000px;}
.xb{left:190.199987px;}
.xe{left:270.749987px;}
.x10{left:278.039987px;}
.xf{left:317.369987px;}
.xd{left:325.019987px;}
.x15{left:371.849987px;}
.x18{left:387.689987px;}
.x2{left:438.180000px;}
.x12{left:446.549987px;}
.x6{left:676.080000px;}
.xa{left:708.210000px;}
@media print{
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v2{vertical-align:16.000000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.083200pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls2b{letter-spacing:-0.000003pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.153280pt;}
.ls0{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.192000pt;}
.ls26{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls21{letter-spacing:2.240000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls11{letter-spacing:3.840000pt;}
.lsa{letter-spacing:4.160000pt;}
.ls1c{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.440000pt;}
.ls27{letter-spacing:5.760000pt;}
.ls23{letter-spacing:6.080000pt;}
.ls2f{letter-spacing:7.360000pt;}
.ls13{letter-spacing:7.680000pt;}
.ls12{letter-spacing:8.000000pt;}
.ls28{letter-spacing:8.320000pt;}
.ls2c{letter-spacing:10.880000pt;}
.ls2e{letter-spacing:10.986667pt;}
.ls2d{letter-spacing:11.200000pt;}
.ls15{letter-spacing:11.840000pt;}
.ls16{letter-spacing:12.160000pt;}
.ls17{letter-spacing:12.266667pt;}
.ls4{letter-spacing:13.120000pt;}
.lse{letter-spacing:13.440000pt;}
.ls10{letter-spacing:13.546667pt;}
.lsf{letter-spacing:13.760000pt;}
.ls29{letter-spacing:14.080000pt;}
.ls2a{letter-spacing:14.400000pt;}
.ls3{letter-spacing:15.360000pt;}
.lsd{letter-spacing:17.920000pt;}
.lsc{letter-spacing:18.240000pt;}
.ls18{letter-spacing:29.676800pt;}
.lsb{letter-spacing:85.034667pt;}
.ws4{word-spacing:-16.403200pt;}
.ws0{word-spacing:-14.800000pt;}
.ws8{word-spacing:-14.336000pt;}
.ws9{word-spacing:-14.272000pt;}
.ws3{word-spacing:-14.144000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.952000pt;}
.ws1{word-spacing:-10.528000pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-3.328000pt;}
._14{margin-left:-2.389333pt;}
._1{margin-left:-0.921707pt;}
._0{width:1.042027pt;}
._18{width:2.285973pt;}
._b{width:3.648000pt;}
._c{width:4.608000pt;}
._5{width:5.952000pt;}
._d{width:7.104000pt;}
._10{width:8.192000pt;}
._12{width:9.088000pt;}
._11{width:10.097280pt;}
._1e{width:11.200000pt;}
._22{width:12.108053pt;}
._8{width:13.017707pt;}
._7{width:15.232000pt;}
._26{width:16.138987pt;}
._25{width:17.066667pt;}
._1f{width:18.176000pt;}
._1a{width:19.072000pt;}
._f{width:20.160000pt;}
._15{width:21.248000pt;}
._24{width:22.656000pt;}
._13{width:23.808000pt;}
._20{width:24.960000pt;}
._21{width:25.984000pt;}
._e{width:27.584000pt;}
._1d{width:28.544000pt;}
._4{width:29.504000pt;}
._27{width:32.426667pt;}
._28{width:33.365333pt;}
._30{width:34.521707pt;}
._19{width:35.712000pt;}
._1c{width:36.928000pt;}
._3{width:38.656000pt;}
._2{width:39.552000pt;}
._16{width:41.216000pt;}
._17{width:42.240000pt;}
._1b{width:43.206613pt;}
._2e{width:44.378133pt;}
._2c{width:46.698667pt;}
._6{width:48.576000pt;}
._2a{width:49.472000pt;}
._29{width:50.496000pt;}
._9{width:52.800000pt;}
._a{width:53.824000pt;}
._2f{width:57.344000pt;}
._31{width:72.832000pt;}
._2b{width:96.128000pt;}
._2d{width:155.434667pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.200000pt;}
.ye{bottom:2.000000pt;}
.y10{bottom:2.240000pt;}
.y4{bottom:3.200000pt;}
.y6{bottom:4.080000pt;}
.y12{bottom:4.640000pt;}
.y8{bottom:6.560000pt;}
.yd{bottom:14.480000pt;}
.yc{bottom:27.040000pt;}
.y7{bottom:38.240000pt;}
.y5{bottom:40.640000pt;}
.y3{bottom:41.440000pt;}
.y2{bottom:45.360000pt;}
.y67{bottom:87.760000pt;}
.y66{bottom:109.360000pt;}
.y3c{bottom:118.160000pt;}
.y65{bottom:130.960000pt;}
.y3b{bottom:139.120000pt;}
.y64{bottom:152.480000pt;}
.y3a{bottom:161.280000pt;}
.y63{bottom:174.080000pt;}
.y39{bottom:182.880000pt;}
.y62{bottom:195.680000pt;}
.y38{bottom:204.506667pt;}
.y61{bottom:217.226667pt;}
.y37{bottom:226.026667pt;}
.y60{bottom:238.826667pt;}
.y36{bottom:247.626667pt;}
.y5f{bottom:260.426667pt;}
.y35{bottom:269.226667pt;}
.y5e{bottom:281.946667pt;}
.y34{bottom:290.746667pt;}
.y5d{bottom:303.546667pt;}
.y33{bottom:312.346667pt;}
.y5c{bottom:325.066667pt;}
.y32{bottom:333.946667pt;}
.y76{bottom:346.026667pt;}
.y5b{bottom:346.666667pt;}
.y31{bottom:355.466667pt;}
.y75{bottom:367.626667pt;}
.y5a{bottom:368.266667pt;}
.y30{bottom:377.066667pt;}
.y74{bottom:389.226667pt;}
.y59{bottom:389.786667pt;}
.y2f{bottom:398.586667pt;}
.y73{bottom:410.746667pt;}
.y58{bottom:411.386667pt;}
.y2e{bottom:420.186667pt;}
.y72{bottom:432.346667pt;}
.y57{bottom:432.986667pt;}
.y2d{bottom:441.786667pt;}
.y71{bottom:453.946667pt;}
.y56{bottom:454.506667pt;}
.y2c{bottom:463.306667pt;}
.y70{bottom:475.466667pt;}
.y55{bottom:476.106667pt;}
.y2b{bottom:484.906667pt;}
.y6f{bottom:497.066667pt;}
.y54{bottom:497.706667pt;}
.y2a{bottom:504.346667pt;}
.y6e{bottom:518.586667pt;}
.y53{bottom:519.226667pt;}
.y29{bottom:526.266667pt;}
.y6d{bottom:540.186667pt;}
.y52{bottom:540.826667pt;}
.y28{bottom:548.106667pt;}
.y6c{bottom:561.786667pt;}
.y51{bottom:562.426667pt;}
.y27{bottom:572.106667pt;}
.y6b{bottom:583.333333pt;}
.y50{bottom:583.973333pt;}
.y26{bottom:593.733333pt;}
.y6a{bottom:604.933333pt;}
.y4f{bottom:605.573333pt;}
.y25{bottom:615.333333pt;}
.y69{bottom:624.373333pt;}
.y4e{bottom:627.173333pt;}
.y24{bottom:636.853333pt;}
.y68{bottom:646.293333pt;}
.y4d{bottom:648.693333pt;}
.y23{bottom:658.453333pt;}
.y4c{bottom:670.293333pt;}
.y22{bottom:680.053333pt;}
.y4b{bottom:691.813333pt;}
.y21{bottom:699.493333pt;}
.y4a{bottom:713.413333pt;}
.y20{bottom:721.333333pt;}
.y49{bottom:735.013333pt;}
.y1f{bottom:743.253333pt;}
.y48{bottom:756.533333pt;}
.y1e{bottom:765.093333pt;}
.y47{bottom:778.133333pt;}
.y1d{bottom:789.093333pt;}
.y46{bottom:799.733333pt;}
.y1c{bottom:810.693333pt;}
.y45{bottom:821.253333pt;}
.y1b{bottom:832.293333pt;}
.y44{bottom:842.853333pt;}
.y1a{bottom:853.813333pt;}
.y43{bottom:864.453333pt;}
.y19{bottom:875.413333pt;}
.y42{bottom:885.973333pt;}
.y18{bottom:894.213333pt;}
.y41{bottom:907.573333pt;}
.y17{bottom:913.013333pt;}
.y40{bottom:929.173333pt;}
.y16{bottom:931.733333pt;}
.y15{bottom:950.400000pt;}
.y3f{bottom:950.720000pt;}
.y14{bottom:969.520000pt;}
.y3e{bottom:972.320000pt;}
.y13{bottom:991.440000pt;}
.y3d{bottom:993.840000pt;}
.y11{bottom:1022.880000pt;}
.yf{bottom:1027.600000pt;}
.yb{bottom:1043.200000pt;}
.y9{bottom:1078.800000pt;}
.y1{bottom:1107.360000pt;}
.hc{height:12.400000pt;}
.hd{height:16.080000pt;}
.h4{height:16.800000pt;}
.h6{height:17.760000pt;}
.h7{height:20.240000pt;}
.h8{height:21.520000pt;}
.ha{height:37.200000pt;}
.hb{height:37.260781pt;}
.he{height:42.023438pt;}
.h11{height:55.437500pt;}
.h2{height:56.031250pt;}
.h14{height:57.093750pt;}
.h5{height:57.473437pt;}
.h12{height:57.997500pt;}
.h3{height:62.812500pt;}
.h10{height:64.500000pt;}
.hf{height:65.276406pt;}
.h13{height:65.781915pt;}
.h9{height:74.801719pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.960000pt;}
.w9{width:111.040000pt;}
.w6{width:131.120000pt;}
.w5{width:133.120000pt;}
.w8{width:171.146667pt;}
.w7{width:240.746667pt;}
.w4{width:302.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x8{left:15.600000pt;}
.x3{left:18.480000pt;}
.x4{left:69.200000pt;}
.x1{left:75.599988pt;}
.x16{left:88.559988pt;}
.x11{left:113.466655pt;}
.x13{left:117.226655pt;}
.x17{left:119.706655pt;}
.x14{left:131.706655pt;}
.x7{left:145.786667pt;}
.xc{left:150.666655pt;}
.x9{left:152.186667pt;}
.xb{left:169.066655pt;}
.xe{left:240.666655pt;}
.x10{left:247.146655pt;}
.xf{left:282.106655pt;}
.xd{left:288.906655pt;}
.x15{left:330.533322pt;}
.x18{left:344.613322pt;}
.x2{left:389.493333pt;}
.x12{left:396.933322pt;}
.x6{left:600.960000pt;}
.xa{left:629.520000pt;}
}




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