
    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_cf006af933d912ef2fdce404.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_767bc2f27587d90e0054c71d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_29bf86ca3199d19037d3f4e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_304e363f8be2aeb114a8563f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_5c22511b0427b6476daf62ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_338381a48395c4545f4e3d89.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.540000px;}
.ls5{letter-spacing:5.040000px;}
.ls4{letter-spacing:5.580000px;}
.ls0{letter-spacing:10.080000px;}
.ls1{letter-spacing:10.260000px;}
.lsc{letter-spacing:17.820000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-4.920000px;}
._18{margin-left:-3.888000px;}
._4{margin-left:-2.808000px;}
._0{margin-left:-1.324800px;}
._1{width:1.330080px;}
._15{width:2.341920px;}
._5{width:3.744000px;}
._6{width:5.040000px;}
._e{width:6.408000px;}
._14{width:7.669920px;}
._12{width:9.216000px;}
._d{width:10.944000px;}
._a{width:12.888000px;}
._9{width:13.968000px;}
._c{width:15.724800px;}
._19{width:16.920000px;}
._8{width:19.828800px;}
._7{width:20.880000px;}
._11{width:21.888000px;}
._16{width:23.448000px;}
._1e{width:24.528000px;}
._2{width:25.663680px;}
._3{width:26.738160px;}
._17{width:27.890160px;}
._1a{width:29.150880px;}
._10{width:32.112000px;}
._f{width:33.120000px;}
._1b{width:40.680000px;}
._1c{width:41.961600px;}
._b{width:52.128000px;}
._13{width:59.544000px;}
._21{width:97.632000px;}
._22{width:98.667840px;}
._1f{width:136.296000px;}
._20{width:138.289920px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:23.760000px;}
.y5{bottom:44.460000px;}
.y4{bottom:64.800000px;}
.y3{bottom:83.916000px;}
.y2{bottom:103.176000px;}
.y50{bottom:128.196000px;}
.y30{bottom:138.276000px;}
.y96{bottom:143.136000px;}
.y6f{bottom:145.656000px;}
.y8d{bottom:155.910000px;}
.y4f{bottom:159.150000px;}
.y2f{bottom:162.210000px;}
.y95{bottom:174.270000px;}
.y6e{bottom:176.610000px;}
.y2e{bottom:185.970000px;}
.y8c{bottom:187.050000px;}
.y4e{bottom:190.290000px;}
.yaf{bottom:197.490000px;}
.y94{bottom:205.230000px;}
.y6d{bottom:207.750000px;}
.y2d{bottom:209.730000px;}
.y8b{bottom:218.010000px;}
.y4d{bottom:221.250000px;}
.yae{bottom:228.450000px;}
.y2c{bottom:233.490000px;}
.y93{bottom:236.190000px;}
.y6c{bottom:238.710000px;}
.y8a{bottom:249.150000px;}
.y4c{bottom:252.390000px;}
.y2b{bottom:257.430000px;}
.yad{bottom:259.590000px;}
.y92{bottom:267.330000px;}
.y6b{bottom:269.850000px;}
.y89{bottom:280.110000px;}
.y2a{bottom:281.190000px;}
.y4b{bottom:283.350000px;}
.y6a{bottom:300.810000px;}
.y29{bottom:304.950000px;}
.yac{bottom:305.670000px;}
.y91{bottom:309.270000px;}
.y88{bottom:311.250000px;}
.y4a{bottom:314.490000px;}
.y28{bottom:328.710000px;}
.y69{bottom:331.950000px;}
.yab{bottom:336.675000px;}
.y87{bottom:342.255000px;}
.y49{bottom:345.495000px;}
.y27{bottom:352.695000px;}
.y68{bottom:362.955000px;}
.y86{bottom:373.395000px;}
.y26{bottom:376.455000px;}
.y48{bottom:376.635000px;}
.yaa{bottom:382.755000px;}
.y67{bottom:394.095000px;}
.y25{bottom:400.215000px;}
.y85{bottom:404.355000px;}
.y47{bottom:407.595000px;}
.ya9{bottom:413.895000px;}
.y24{bottom:423.975000px;}
.y66{bottom:425.055000px;}
.y84{bottom:435.495000px;}
.y46{bottom:438.735000px;}
.ya8{bottom:444.855000px;}
.y23{bottom:447.915000px;}
.y65{bottom:456.195000px;}
.y83{bottom:466.455000px;}
.y45{bottom:469.695000px;}
.y22{bottom:471.675000px;}
.ya7{bottom:475.995000px;}
.y64{bottom:487.155000px;}
.y21{bottom:495.435000px;}
.y82{bottom:497.595000px;}
.y44{bottom:500.835000px;}
.y63{bottom:518.295000px;}
.y20{bottom:519.195000px;}
.ya6{bottom:521.895000px;}
.y81{bottom:528.555000px;}
.y43{bottom:531.795000px;}
.y1f{bottom:539.895000px;}
.y62{bottom:549.255000px;}
.y80{bottom:559.695000px;}
.y1e{bottom:560.595000px;}
.y42{bottom:562.935000px;}
.ya5{bottom:564.375000px;}
.y61{bottom:580.395000px;}
.y1d{bottom:581.295000px;}
.y7f{bottom:590.655000px;}
.y41{bottom:593.895000px;}
.ya4{bottom:600.555000px;}
.y1c{bottom:601.995000px;}
.y60{bottom:611.385000px;}
.y7e{bottom:621.645000px;}
.y1b{bottom:622.725000px;}
.y40{bottom:625.065000px;}
.y5f{bottom:642.345000px;}
.y1a{bottom:643.425000px;}
.ya3{bottom:649.545000px;}
.y7d{bottom:652.785000px;}
.y3f{bottom:656.025000px;}
.y19{bottom:664.125000px;}
.y5e{bottom:673.485000px;}
.ya2{bottom:680.505000px;}
.y7c{bottom:683.745000px;}
.y18{bottom:684.825000px;}
.y3e{bottom:687.165000px;}
.y5d{bottom:704.445000px;}
.y17{bottom:705.525000px;}
.ya1{bottom:711.645000px;}
.y7b{bottom:714.885000px;}
.y3d{bottom:718.125000px;}
.y16{bottom:726.225000px;}
.y5c{bottom:735.585000px;}
.y90{bottom:737.025000px;}
.ya0{bottom:742.605000px;}
.y7a{bottom:745.845000px;}
.y15{bottom:746.925000px;}
.y3c{bottom:749.265000px;}
.y5b{bottom:766.545000px;}
.y14{bottom:767.625000px;}
.y9f{bottom:773.745000px;}
.y8f{bottom:774.105000px;}
.y79{bottom:776.985000px;}
.y3b{bottom:780.225000px;}
.y13{bottom:788.325000px;}
.y5a{bottom:797.685000px;}
.y9e{bottom:804.705000px;}
.y8e{bottom:807.225000px;}
.y78{bottom:807.945000px;}
.y12{bottom:809.025000px;}
.y3a{bottom:811.365000px;}
.y59{bottom:828.645000px;}
.y11{bottom:832.785000px;}
.y9d{bottom:835.845000px;}
.y77{bottom:839.085000px;}
.y39{bottom:842.325000px;}
.y10{bottom:856.725000px;}
.y58{bottom:859.785000px;}
.y9c{bottom:866.805000px;}
.y76{bottom:870.045000px;}
.y38{bottom:873.510000px;}
.yf{bottom:880.530000px;}
.y57{bottom:890.790000px;}
.y9b{bottom:897.990000px;}
.y75{bottom:901.230000px;}
.ye{bottom:904.290000px;}
.y37{bottom:904.470000px;}
.y56{bottom:921.930000px;}
.y9a{bottom:928.950000px;}
.yd{bottom:929.130000px;}
.y74{bottom:932.190000px;}
.y36{bottom:935.610000px;}
.y55{bottom:952.890000px;}
.yc{bottom:958.290000px;}
.y99{bottom:959.910000px;}
.y73{bottom:963.330000px;}
.y35{bottom:966.570000px;}
.y54{bottom:984.030000px;}
.yb{bottom:989.970000px;}
.y72{bottom:994.290000px;}
.y34{bottom:997.710000px;}
.y98{bottom:1002.390000px;}
.y53{bottom:1017.330000px;}
.ya{bottom:1021.650000px;}
.y71{bottom:1025.430000px;}
.y33{bottom:1028.670000px;}
.y97{bottom:1038.570000px;}
.y9{bottom:1053.510000px;}
.y70{bottom:1056.390000px;}
.y32{bottom:1059.630000px;}
.y8{bottom:1085.190000px;}
.y52{bottom:1087.530000px;}
.y31{bottom:1090.770000px;}
.y7{bottom:1115.610000px;}
.y51{bottom:1118.490000px;}
.y1{bottom:1192.140000px;}
.h6{height:52.628906px;}
.h3{height:59.383125px;}
.h7{height:63.949219px;}
.h2{height:64.546875px;}
.h4{height:74.820586px;}
.h8{height:75.519844px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x2{left:170.129987px;}
.x3{left:287.354987px;}
.x4{left:751.829987px;}
.x5{left:809.789987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls5{letter-spacing:4.480000pt;}
.ls4{letter-spacing:4.960000pt;}
.ls0{letter-spacing:8.960000pt;}
.ls1{letter-spacing:9.120000pt;}
.lsc{letter-spacing:15.840000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-4.373333pt;}
._18{margin-left:-3.456000pt;}
._4{margin-left:-2.496000pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.182293pt;}
._15{width:2.081707pt;}
._5{width:3.328000pt;}
._6{width:4.480000pt;}
._e{width:5.696000pt;}
._14{width:6.817707pt;}
._12{width:8.192000pt;}
._d{width:9.728000pt;}
._a{width:11.456000pt;}
._9{width:12.416000pt;}
._c{width:13.977600pt;}
._19{width:15.040000pt;}
._8{width:17.625600pt;}
._7{width:18.560000pt;}
._11{width:19.456000pt;}
._16{width:20.842667pt;}
._1e{width:21.802667pt;}
._2{width:22.812160pt;}
._3{width:23.767253pt;}
._17{width:24.791253pt;}
._1a{width:25.911893pt;}
._10{width:28.544000pt;}
._f{width:29.440000pt;}
._1b{width:36.160000pt;}
._1c{width:37.299200pt;}
._b{width:46.336000pt;}
._13{width:52.928000pt;}
._21{width:86.784000pt;}
._22{width:87.704747pt;}
._1f{width:121.152000pt;}
._20{width:122.924373pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:21.120000pt;}
.y5{bottom:39.520000pt;}
.y4{bottom:57.600000pt;}
.y3{bottom:74.592000pt;}
.y2{bottom:91.712000pt;}
.y50{bottom:113.952000pt;}
.y30{bottom:122.912000pt;}
.y96{bottom:127.232000pt;}
.y6f{bottom:129.472000pt;}
.y8d{bottom:138.586667pt;}
.y4f{bottom:141.466667pt;}
.y2f{bottom:144.186667pt;}
.y95{bottom:154.906667pt;}
.y6e{bottom:156.986667pt;}
.y2e{bottom:165.306667pt;}
.y8c{bottom:166.266667pt;}
.y4e{bottom:169.146667pt;}
.yaf{bottom:175.546667pt;}
.y94{bottom:182.426667pt;}
.y6d{bottom:184.666667pt;}
.y2d{bottom:186.426667pt;}
.y8b{bottom:193.786667pt;}
.y4d{bottom:196.666667pt;}
.yae{bottom:203.066667pt;}
.y2c{bottom:207.546667pt;}
.y93{bottom:209.946667pt;}
.y6c{bottom:212.186667pt;}
.y8a{bottom:221.466667pt;}
.y4c{bottom:224.346667pt;}
.y2b{bottom:228.826667pt;}
.yad{bottom:230.746667pt;}
.y92{bottom:237.626667pt;}
.y6b{bottom:239.866667pt;}
.y89{bottom:248.986667pt;}
.y2a{bottom:249.946667pt;}
.y4b{bottom:251.866667pt;}
.y6a{bottom:267.386667pt;}
.y29{bottom:271.066667pt;}
.yac{bottom:271.706667pt;}
.y91{bottom:274.906667pt;}
.y88{bottom:276.666667pt;}
.y4a{bottom:279.546667pt;}
.y28{bottom:292.186667pt;}
.y69{bottom:295.066667pt;}
.yab{bottom:299.266667pt;}
.y87{bottom:304.226667pt;}
.y49{bottom:307.106667pt;}
.y27{bottom:313.506667pt;}
.y68{bottom:322.626667pt;}
.y86{bottom:331.906667pt;}
.y26{bottom:334.626667pt;}
.y48{bottom:334.786667pt;}
.yaa{bottom:340.226667pt;}
.y67{bottom:350.306667pt;}
.y25{bottom:355.746667pt;}
.y85{bottom:359.426667pt;}
.y47{bottom:362.306667pt;}
.ya9{bottom:367.906667pt;}
.y24{bottom:376.866667pt;}
.y66{bottom:377.826667pt;}
.y84{bottom:387.106667pt;}
.y46{bottom:389.986667pt;}
.ya8{bottom:395.426667pt;}
.y23{bottom:398.146667pt;}
.y65{bottom:405.506667pt;}
.y83{bottom:414.626667pt;}
.y45{bottom:417.506667pt;}
.y22{bottom:419.266667pt;}
.ya7{bottom:423.106667pt;}
.y64{bottom:433.026667pt;}
.y21{bottom:440.386667pt;}
.y82{bottom:442.306667pt;}
.y44{bottom:445.186667pt;}
.y63{bottom:460.706667pt;}
.y20{bottom:461.506667pt;}
.ya6{bottom:463.906667pt;}
.y81{bottom:469.826667pt;}
.y43{bottom:472.706667pt;}
.y1f{bottom:479.906667pt;}
.y62{bottom:488.226667pt;}
.y80{bottom:497.506667pt;}
.y1e{bottom:498.306667pt;}
.y42{bottom:500.386667pt;}
.ya5{bottom:501.666667pt;}
.y61{bottom:515.906667pt;}
.y1d{bottom:516.706667pt;}
.y7f{bottom:525.026667pt;}
.y41{bottom:527.906667pt;}
.ya4{bottom:533.826667pt;}
.y1c{bottom:535.106667pt;}
.y60{bottom:543.453333pt;}
.y7e{bottom:552.573333pt;}
.y1b{bottom:553.533333pt;}
.y40{bottom:555.613333pt;}
.y5f{bottom:570.973333pt;}
.y1a{bottom:571.933333pt;}
.ya3{bottom:577.373333pt;}
.y7d{bottom:580.253333pt;}
.y3f{bottom:583.133333pt;}
.y19{bottom:590.333333pt;}
.y5e{bottom:598.653333pt;}
.ya2{bottom:604.893333pt;}
.y7c{bottom:607.773333pt;}
.y18{bottom:608.733333pt;}
.y3e{bottom:610.813333pt;}
.y5d{bottom:626.173333pt;}
.y17{bottom:627.133333pt;}
.ya1{bottom:632.573333pt;}
.y7b{bottom:635.453333pt;}
.y3d{bottom:638.333333pt;}
.y16{bottom:645.533333pt;}
.y5c{bottom:653.853333pt;}
.y90{bottom:655.133333pt;}
.ya0{bottom:660.093333pt;}
.y7a{bottom:662.973333pt;}
.y15{bottom:663.933333pt;}
.y3c{bottom:666.013333pt;}
.y5b{bottom:681.373333pt;}
.y14{bottom:682.333333pt;}
.y9f{bottom:687.773333pt;}
.y8f{bottom:688.093333pt;}
.y79{bottom:690.653333pt;}
.y3b{bottom:693.533333pt;}
.y13{bottom:700.733333pt;}
.y5a{bottom:709.053333pt;}
.y9e{bottom:715.293333pt;}
.y8e{bottom:717.533333pt;}
.y78{bottom:718.173333pt;}
.y12{bottom:719.133333pt;}
.y3a{bottom:721.213333pt;}
.y59{bottom:736.573333pt;}
.y11{bottom:740.253333pt;}
.y9d{bottom:742.973333pt;}
.y77{bottom:745.853333pt;}
.y39{bottom:748.733333pt;}
.y10{bottom:761.533333pt;}
.y58{bottom:764.253333pt;}
.y9c{bottom:770.493333pt;}
.y76{bottom:773.373333pt;}
.y38{bottom:776.453333pt;}
.yf{bottom:782.693333pt;}
.y57{bottom:791.813333pt;}
.y9b{bottom:798.213333pt;}
.y75{bottom:801.093333pt;}
.ye{bottom:803.813333pt;}
.y37{bottom:803.973333pt;}
.y56{bottom:819.493333pt;}
.y9a{bottom:825.733333pt;}
.yd{bottom:825.893333pt;}
.y74{bottom:828.613333pt;}
.y36{bottom:831.653333pt;}
.y55{bottom:847.013333pt;}
.yc{bottom:851.813333pt;}
.y99{bottom:853.253333pt;}
.y73{bottom:856.293333pt;}
.y35{bottom:859.173333pt;}
.y54{bottom:874.693333pt;}
.yb{bottom:879.973333pt;}
.y72{bottom:883.813333pt;}
.y34{bottom:886.853333pt;}
.y98{bottom:891.013333pt;}
.y53{bottom:904.293333pt;}
.ya{bottom:908.133333pt;}
.y71{bottom:911.493333pt;}
.y33{bottom:914.373333pt;}
.y97{bottom:923.173333pt;}
.y9{bottom:936.453333pt;}
.y70{bottom:939.013333pt;}
.y32{bottom:941.893333pt;}
.y8{bottom:964.613333pt;}
.y52{bottom:966.693333pt;}
.y31{bottom:969.573333pt;}
.y7{bottom:991.653333pt;}
.y51{bottom:994.213333pt;}
.y1{bottom:1059.680000pt;}
.h6{height:46.781250pt;}
.h3{height:52.785000pt;}
.h7{height:56.843750pt;}
.h2{height:57.375000pt;}
.h4{height:66.507188pt;}
.h8{height:67.128750pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x2{left:151.226655pt;}
.x3{left:255.426655pt;}
.x4{left:668.293322pt;}
.x5{left:719.813322pt;}
}




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