
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_21596fada049186ef58e56d8.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_817917c5bb8c67eb373aeb13.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_a5cfd377be05315ce7e78075.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1a98df826e7792077a0dc1b1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0b6775917f6377e8e0dbafb2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_9625f5867d3fabd0ddfdbf58.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8712cac6c14809417a82e952.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.367800px;}
.lsd{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.135000px;}
.ls8{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.018360px;}
.ls12{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.041760px;}
.ls13{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.111000px;}
.lsc{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:47.726640px;}
.lsb{letter-spacing:63.566640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.337400px;}
.wsa{word-spacing:-13.328400px;}
.ws8{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.218840px;}
.wse{word-spacing:-13.065600px;}
.ws7{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.858600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._12{margin-left:-3.366720px;}
._b{margin-left:-2.173200px;}
._0{margin-left:-1.110000px;}
._4{width:1.203960px;}
._5{width:2.464800px;}
._6{width:3.815642px;}
._9{width:5.050200px;}
._a{width:6.132000px;}
._7{width:8.056200px;}
._8{width:9.138000px;}
._10{width:10.881720px;}
._14{width:12.226200px;}
._c{width:14.428800px;}
._d{width:15.571200px;}
._3{width:17.179560px;}
._13{width:19.478880px;}
._11{width:22.064040px;}
._2{width:27.149376px;}
._1{width:28.292040px;}
._f{width:129.979440px;}
._e{width:191.482200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y68{bottom:7.740000px;}
.y6e{bottom:7.830000px;}
.y74{bottom:7.920000px;}
.y73{bottom:25.470000px;}
.y76{bottom:29.880000px;}
.y6d{bottom:29.970000px;}
.y72{bottom:47.520000px;}
.y78{bottom:51.930000px;}
.y7a{bottom:52.020000px;}
.y6c{bottom:52.050000px;}
.y71{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y7c{bottom:74.070000px;}
.y6b{bottom:74.100000px;}
.y29{bottom:74.190000px;}
.y70{bottom:91.710000px;}
.y6a{bottom:96.150000px;}
.y1{bottom:101.640000px;}
.y27{bottom:136.290000px;}
.y8d{bottom:137.370000px;}
.y4e{bottom:151.950000px;}
.y26{bottom:153.840000px;}
.y8c{bottom:154.920000px;}
.ydd{bottom:155.730000px;}
.yb3{bottom:163.650000px;}
.y4d{bottom:169.500000px;}
.y25{bottom:171.480000px;}
.ydc{bottom:173.280000px;}
.y66{bottom:182.370000px;}
.y4c{bottom:187.140000px;}
.y24{bottom:189.030000px;}
.y8b{bottom:190.470000px;}
.yb2{bottom:199.200000px;}
.ydb{bottom:199.830000px;}
.y65{bottom:199.920000px;}
.y8a{bottom:208.110000px;}
.y23{bottom:215.940000px;}
.yb1{bottom:216.840000px;}
.yda{bottom:217.470000px;}
.y64{bottom:217.560000px;}
.y4b{bottom:222.690000px;}
.y89{bottom:225.660000px;}
.yb0{bottom:234.390000px;}
.y63{bottom:235.110000px;}
.y4a{bottom:240.330000px;}
.y88{bottom:243.300000px;}
.yd9{bottom:244.020000px;}
.yaf{bottom:251.940000px;}
.y62{bottom:252.660000px;}
.y49{bottom:257.880000px;}
.y87{bottom:260.850000px;}
.yd8{bottom:261.660000px;}
.y22{bottom:264.180000px;}
.yae{bottom:269.580000px;}
.y61{bottom:270.300000px;}
.y48{bottom:275.430000px;}
.y21{bottom:281.820000px;}
.yd7{bottom:288.210000px;}
.y86{bottom:293.790000px;}
.yad{bottom:296.490000px;}
.y20{bottom:299.370000px;}
.yd6{bottom:305.760000px;}
.y60{bottom:305.850000px;}
.y47{bottom:311.070000px;}
.y1f{bottom:317.010000px;}
.y85{bottom:321.150000px;}
.y5f{bottom:323.490000px;}
.y46{bottom:328.620000px;}
.yd5{bottom:332.400000px;}
.y1e{bottom:334.560000px;}
.y3c{bottom:338.160000px;}
.y5e{bottom:341.040000px;}
.yac{bottom:344.730000px;}
.y45{bottom:346.260000px;}
.y84{bottom:348.510000px;}
.yd4{bottom:349.950000px;}
.y1d{bottom:352.110000px;}
.y5d{bottom:358.590000px;}
.yab{bottom:362.370000px;}
.y1c{bottom:369.750000px;}
.y83{bottom:375.870000px;}
.y5c{bottom:376.230000px;}
.yd3{bottom:376.590000px;}
.y44{bottom:378.480000px;}
.yaa{bottom:379.920000px;}
.y1b{bottom:387.300000px;}
.y5b{bottom:393.780000px;}
.yd2{bottom:394.140000px;}
.ya9{bottom:397.470000px;}
.y82{bottom:403.140000px;}
.y1a{bottom:404.850000px;}
.yd1{bottom:420.690000px;}
.y19{bottom:422.490000px;}
.y5a{bottom:429.420000px;}
.y81{bottom:430.500000px;}
.ya8{bottom:433.110000px;}
.yd0{bottom:438.330000px;}
.y59{bottom:446.970000px;}
.y18{bottom:449.400000px;}
.ya7{bottom:450.660000px;}
.y80{bottom:457.860000px;}
.y58{bottom:464.520000px;}
.ycf{bottom:464.880000px;}
.ya6{bottom:468.300000px;}
.yce{bottom:482.550000px;}
.ya5{bottom:485.880000px;}
.y17{bottom:497.670000px;}
.y57{bottom:500.190000px;}
.ya4{bottom:503.430000px;}
.y7f{bottom:506.580000px;}
.ycd{bottom:509.100000px;}
.y16{bottom:515.580000px;}
.y56{bottom:517.740000px;}
.ycc{bottom:526.650000px;}
.y55{bottom:535.290000px;}
.ya3{bottom:539.070000px;}
.y7e{bottom:542.130000px;}
.y15{bottom:552.660000px;}
.y54{bottom:552.930000px;}
.ycb{bottom:553.290000px;}
.ya2{bottom:556.620000px;}
.y14{bottom:570.210000px;}
.yca{bottom:570.840000px;}
.ya1{bottom:574.260000px;}
.y7d{bottom:577.050000px;}
.y53{bottom:579.840000px;}
.y13{bottom:587.760000px;}
.y7b{bottom:589.200000px;}
.yc9{bottom:597.480000px;}
.y12{bottom:605.400000px;}
.ya0{bottom:609.810000px;}
.yc8{bottom:615.030000px;}
.y11{bottom:622.950000px;}
.y9f{bottom:627.360000px;}
.y52{bottom:628.080000px;}
.y10{bottom:640.590000px;}
.yc7{bottom:641.580000px;}
.y9e{bottom:645.000000px;}
.y51{bottom:645.720000px;}
.yf{bottom:658.140000px;}
.yc6{bottom:659.220000px;}
.y50{bottom:663.270000px;}
.ye{bottom:675.690000px;}
.y9d{bottom:680.550000px;}
.y79{bottom:681.270000px;}
.yc5{bottom:685.770000px;}
.yd{bottom:693.330000px;}
.y4f{bottom:695.490000px;}
.y9c{bottom:698.190000px;}
.yc4{bottom:703.410000px;}
.yc{bottom:710.880000px;}
.yc3{bottom:729.960000px;}
.y9b{bottom:733.740000px;}
.y43{bottom:735.090000px;}
.yb{bottom:737.790000px;}
.yc2{bottom:747.510000px;}
.y77{bottom:751.290000px;}
.y42{bottom:752.640000px;}
.y9a{bottom:769.290000px;}
.yc1{bottom:774.150000px;}
.y3b{bottom:784.860000px;}
.ya{bottom:786.030000px;}
.y99{bottom:786.930000px;}
.y41{bottom:788.280000px;}
.yc0{bottom:791.700000px;}
.y98{bottom:804.480000px;}
.y40{bottom:805.830000px;}
.ybf{bottom:818.340000px;}
.y3a{bottom:820.320000px;}
.y75{bottom:821.310000px;}
.y9{bottom:821.850000px;}
.y97{bottom:822.030000px;}
.y3f{bottom:823.470000px;}
.ybe{bottom:835.890000px;}
.y39{bottom:838.770000px;}
.y3e{bottom:841.020000px;}
.y38{bottom:857.220000px;}
.y96{bottom:857.670000px;}
.y8{bottom:857.850000px;}
.ybd{bottom:862.440000px;}
.y6f{bottom:869.190000px;}
.y3d{bottom:873.240000px;}
.y95{bottom:875.220000px;}
.ybc{bottom:880.080000px;}
.y94{bottom:892.860000px;}
.y37{bottom:893.670000px;}
.y7{bottom:893.850000px;}
.ybb{bottom:906.630000px;}
.y36{bottom:911.220000px;}
.yba{bottom:924.180000px;}
.y93{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y92{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yb9{bottom:951.090000px;}
.y91{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y69{bottom:978.900000px;}
.y90{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y31{bottom:999.150000px;}
.yb8{bottom:999.420000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.yb7{bottom:1026.360000px;}
.y2f{bottom:1034.370000px;}
.ye0{bottom:1043.370000px;}
.y2e{bottom:1051.920000px;}
.ydf{bottom:1060.920000px;}
.yb6{bottom:1063.350000px;}
.y8f{bottom:1069.560000px;}
.yde{bottom:1078.560000px;}
.y8e{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.yb5{bottom:1090.260000px;}
.y67{bottom:1093.140000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.yb4{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.ha{height:25.020000px;}
.h13{height:26.550000px;}
.h12{height:26.580000px;}
.h14{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h11{height:40.539023px;}
.hd{height:47.160000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:61.793886px;}
.h9{height:68.582109px;}
.he{height:69.210000px;}
.hf{height:69.300000px;}
.h4{height:71.019492px;}
.h7{height:74.004654px;}
.h10{height:91.350000px;}
.hc{height:108.990000px;}
.hb{height:113.430000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:57.150000px;}
.w4{width:85.590000px;}
.w3{width:248.070000px;}
.w5{width:315.120000px;}
.w7{width:487.920000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:69.389987px;}
.xf{left:73.349987px;}
.xb{left:81.269987px;}
.x8{left:85.679987px;}
.x10{left:90.539987px;}
.x4{left:95.039987px;}
.x19{left:111.239987px;}
.x7{left:117.449987px;}
.x12{left:121.500000px;}
.x17{left:173.730000px;}
.x2{left:202.799987px;}
.x18{left:231.600000px;}
.xd{left:238.889987px;}
.x11{left:293.879987px;}
.x14{left:370.290000px;}
.x9{left:388.559987px;}
.x16{left:390.719987px;}
.x15{left:456.600000px;}
.x5{left:716.639987px;}
.x6{left:723.119987px;}
.x3{left:792.059987px;}
.xe{left:810.059987px;}
.xa{left:821.309987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.326933pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls8{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.016320pt;}
.ls12{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.037120pt;}
.ls13{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.098667pt;}
.lsc{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:42.423680pt;}
.lsb{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.855467pt;}
.wsa{word-spacing:-11.847467pt;}
.ws8{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.750080pt;}
.wse{word-spacing:-11.613867pt;}
.ws7{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.429867pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._12{margin-left:-2.992640pt;}
._b{margin-left:-1.931733pt;}
._0{margin-left:-0.986667pt;}
._4{width:1.070187pt;}
._5{width:2.190933pt;}
._6{width:3.391682pt;}
._9{width:4.489067pt;}
._a{width:5.450666pt;}
._7{width:7.161067pt;}
._8{width:8.122666pt;}
._10{width:9.672640pt;}
._14{width:10.867733pt;}
._c{width:12.825600pt;}
._d{width:13.841067pt;}
._3{width:15.270720pt;}
._13{width:17.314560pt;}
._11{width:19.612480pt;}
._2{width:24.132778pt;}
._1{width:25.148480pt;}
._f{width:115.537280pt;}
._e{width:170.206400pt;}
.fs0{font-size:34.560000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:6.880000pt;}
.y6e{bottom:6.960000pt;}
.y74{bottom:7.040000pt;}
.y73{bottom:22.640000pt;}
.y76{bottom:26.560000pt;}
.y6d{bottom:26.640000pt;}
.y72{bottom:42.240000pt;}
.y78{bottom:46.160000pt;}
.y7a{bottom:46.240000pt;}
.y6c{bottom:46.266667pt;}
.y71{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y7c{bottom:65.840000pt;}
.y6b{bottom:65.866667pt;}
.y29{bottom:65.946667pt;}
.y70{bottom:81.520000pt;}
.y6a{bottom:85.466667pt;}
.y1{bottom:90.346667pt;}
.y27{bottom:121.146667pt;}
.y8d{bottom:122.106667pt;}
.y4e{bottom:135.066667pt;}
.y26{bottom:136.746667pt;}
.y8c{bottom:137.706667pt;}
.ydd{bottom:138.426667pt;}
.yb3{bottom:145.466667pt;}
.y4d{bottom:150.666667pt;}
.y25{bottom:152.426667pt;}
.ydc{bottom:154.026667pt;}
.y66{bottom:162.106667pt;}
.y4c{bottom:166.346667pt;}
.y24{bottom:168.026667pt;}
.y8b{bottom:169.306667pt;}
.yb2{bottom:177.066667pt;}
.ydb{bottom:177.626667pt;}
.y65{bottom:177.706667pt;}
.y8a{bottom:184.986667pt;}
.y23{bottom:191.946667pt;}
.yb1{bottom:192.746667pt;}
.yda{bottom:193.306667pt;}
.y64{bottom:193.386667pt;}
.y4b{bottom:197.946667pt;}
.y89{bottom:200.586667pt;}
.yb0{bottom:208.346667pt;}
.y63{bottom:208.986667pt;}
.y4a{bottom:213.626667pt;}
.y88{bottom:216.266667pt;}
.yd9{bottom:216.906667pt;}
.yaf{bottom:223.946667pt;}
.y62{bottom:224.586667pt;}
.y49{bottom:229.226667pt;}
.y87{bottom:231.866667pt;}
.yd8{bottom:232.586667pt;}
.y22{bottom:234.826667pt;}
.yae{bottom:239.626667pt;}
.y61{bottom:240.266667pt;}
.y48{bottom:244.826667pt;}
.y21{bottom:250.506667pt;}
.yd7{bottom:256.186667pt;}
.y86{bottom:261.146667pt;}
.yad{bottom:263.546667pt;}
.y20{bottom:266.106667pt;}
.yd6{bottom:271.786667pt;}
.y60{bottom:271.866667pt;}
.y47{bottom:276.506667pt;}
.y1f{bottom:281.786667pt;}
.y85{bottom:285.466667pt;}
.y5f{bottom:287.546667pt;}
.y46{bottom:292.106667pt;}
.yd5{bottom:295.466667pt;}
.y1e{bottom:297.386667pt;}
.y3c{bottom:300.586667pt;}
.y5e{bottom:303.146667pt;}
.yac{bottom:306.426667pt;}
.y45{bottom:307.786667pt;}
.y84{bottom:309.786667pt;}
.yd4{bottom:311.066667pt;}
.y1d{bottom:312.986667pt;}
.y5d{bottom:318.746667pt;}
.yab{bottom:322.106667pt;}
.y1c{bottom:328.666667pt;}
.y83{bottom:334.106667pt;}
.y5c{bottom:334.426667pt;}
.yd3{bottom:334.746667pt;}
.y44{bottom:336.426667pt;}
.yaa{bottom:337.706667pt;}
.y1b{bottom:344.266667pt;}
.y5b{bottom:350.026667pt;}
.yd2{bottom:350.346667pt;}
.ya9{bottom:353.306667pt;}
.y82{bottom:358.346667pt;}
.y1a{bottom:359.866667pt;}
.yd1{bottom:373.946667pt;}
.y19{bottom:375.546667pt;}
.y5a{bottom:381.706667pt;}
.y81{bottom:382.666667pt;}
.ya8{bottom:384.986667pt;}
.yd0{bottom:389.626667pt;}
.y59{bottom:397.306667pt;}
.y18{bottom:399.466667pt;}
.ya7{bottom:400.586667pt;}
.y80{bottom:406.986667pt;}
.y58{bottom:412.906667pt;}
.ycf{bottom:413.226667pt;}
.ya6{bottom:416.266667pt;}
.yce{bottom:428.933333pt;}
.ya5{bottom:431.893333pt;}
.y17{bottom:442.373333pt;}
.y57{bottom:444.613333pt;}
.ya4{bottom:447.493333pt;}
.y7f{bottom:450.293333pt;}
.ycd{bottom:452.533333pt;}
.y16{bottom:458.293333pt;}
.y56{bottom:460.213333pt;}
.ycc{bottom:468.133333pt;}
.y55{bottom:475.813333pt;}
.ya3{bottom:479.173333pt;}
.y7e{bottom:481.893333pt;}
.y15{bottom:491.253333pt;}
.y54{bottom:491.493333pt;}
.ycb{bottom:491.813333pt;}
.ya2{bottom:494.773333pt;}
.y14{bottom:506.853333pt;}
.yca{bottom:507.413333pt;}
.ya1{bottom:510.453333pt;}
.y7d{bottom:512.933333pt;}
.y53{bottom:515.413333pt;}
.y13{bottom:522.453333pt;}
.y7b{bottom:523.733333pt;}
.yc9{bottom:531.093333pt;}
.y12{bottom:538.133333pt;}
.ya0{bottom:542.053333pt;}
.yc8{bottom:546.693333pt;}
.y11{bottom:553.733333pt;}
.y9f{bottom:557.653333pt;}
.y52{bottom:558.293333pt;}
.y10{bottom:569.413333pt;}
.yc7{bottom:570.293333pt;}
.y9e{bottom:573.333333pt;}
.y51{bottom:573.973333pt;}
.yf{bottom:585.013333pt;}
.yc6{bottom:585.973333pt;}
.y50{bottom:589.573333pt;}
.ye{bottom:600.613333pt;}
.y9d{bottom:604.933333pt;}
.y79{bottom:605.573333pt;}
.yc5{bottom:609.573333pt;}
.yd{bottom:616.293333pt;}
.y4f{bottom:618.213333pt;}
.y9c{bottom:620.613333pt;}
.yc4{bottom:625.253333pt;}
.yc{bottom:631.893333pt;}
.yc3{bottom:648.853333pt;}
.y9b{bottom:652.213333pt;}
.y43{bottom:653.413333pt;}
.yb{bottom:655.813333pt;}
.yc2{bottom:664.453333pt;}
.y77{bottom:667.813333pt;}
.y42{bottom:669.013333pt;}
.y9a{bottom:683.813333pt;}
.yc1{bottom:688.133333pt;}
.y3b{bottom:697.653333pt;}
.ya{bottom:698.693333pt;}
.y99{bottom:699.493333pt;}
.y41{bottom:700.693333pt;}
.yc0{bottom:703.733333pt;}
.y98{bottom:715.093333pt;}
.y40{bottom:716.293333pt;}
.ybf{bottom:727.413333pt;}
.y3a{bottom:729.173333pt;}
.y75{bottom:730.053333pt;}
.y9{bottom:730.533333pt;}
.y97{bottom:730.693333pt;}
.y3f{bottom:731.973333pt;}
.ybe{bottom:743.013333pt;}
.y39{bottom:745.573333pt;}
.y3e{bottom:747.573333pt;}
.y38{bottom:761.973333pt;}
.y96{bottom:762.373333pt;}
.y8{bottom:762.533333pt;}
.ybd{bottom:766.613333pt;}
.y6f{bottom:772.613333pt;}
.y3d{bottom:776.213333pt;}
.y95{bottom:777.973333pt;}
.ybc{bottom:782.293333pt;}
.y94{bottom:793.653333pt;}
.y37{bottom:794.373333pt;}
.y7{bottom:794.533333pt;}
.ybb{bottom:805.893333pt;}
.y36{bottom:809.973333pt;}
.yba{bottom:821.493333pt;}
.y93{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y92{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yb9{bottom:845.413333pt;}
.y91{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y69{bottom:870.133333pt;}
.y90{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y31{bottom:888.133333pt;}
.yb8{bottom:888.373333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.yb7{bottom:912.320000pt;}
.y2f{bottom:919.440000pt;}
.ye0{bottom:927.440000pt;}
.y2e{bottom:935.040000pt;}
.ydf{bottom:943.040000pt;}
.yb6{bottom:945.200000pt;}
.y8f{bottom:950.720000pt;}
.yde{bottom:958.720000pt;}
.y8e{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.yb5{bottom:969.120000pt;}
.y67{bottom:971.680000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.yb4{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.ha{height:22.240000pt;}
.h13{height:23.600000pt;}
.h12{height:23.626667pt;}
.h14{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h11{height:36.034687pt;}
.hd{height:41.920000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.927899pt;}
.h9{height:60.961875pt;}
.he{height:61.520000pt;}
.hf{height:61.600000pt;}
.h4{height:63.128437pt;}
.h7{height:65.781915pt;}
.h10{height:81.200000pt;}
.hc{height:96.880000pt;}
.hb{height:100.826667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:50.800000pt;}
.w4{width:76.080000pt;}
.w3{width:220.506667pt;}
.w5{width:280.106667pt;}
.w7{width:433.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:61.679988pt;}
.xf{left:65.199988pt;}
.xb{left:72.239988pt;}
.x8{left:76.159988pt;}
.x10{left:80.479988pt;}
.x4{left:84.479988pt;}
.x19{left:98.879988pt;}
.x7{left:104.399988pt;}
.x12{left:108.000000pt;}
.x17{left:154.426667pt;}
.x2{left:180.266655pt;}
.x18{left:205.866667pt;}
.xd{left:212.346655pt;}
.x11{left:261.226655pt;}
.x14{left:329.146667pt;}
.x9{left:345.386655pt;}
.x16{left:347.306655pt;}
.x15{left:405.866667pt;}
.x5{left:637.013322pt;}
.x6{left:642.773322pt;}
.x3{left:704.053322pt;}
.xe{left:720.053322pt;}
.xa{left:730.053322pt;}
}




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