
    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_ab45652b3c1a5e31dc24fa42.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.980000;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_a3305ea83ddb6692c9f30b43.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734863;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_06d20b3779b74c50efbb9c22.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_52d60f6a9c857fa1c5af7635.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_78e76aad0143edc56a329c73.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_5238158ec14cfa144790fad5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:30.852000px;}
.ls3{letter-spacing:82.440000px;}
.ls2{letter-spacing:86.700000px;}
.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:-21.684000px;}
.ws0{word-spacing:-18.348000px;}
.ws5{word-spacing:-16.680000px;}
.ws1{word-spacing:-15.012000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:1.068000px;}
._1b{margin-left:-7.704000px;}
._1c{margin-left:-5.742000px;}
._13{margin-left:-3.930000px;}
._f{margin-left:-2.610000px;}
._0{margin-left:-1.056000px;}
._5{width:1.254000px;}
._d{width:2.310000px;}
._3{width:4.026000px;}
._4{width:5.610000px;}
._c{width:6.732000px;}
._8{width:7.854000px;}
._9{width:8.910000px;}
._14{width:10.218000px;}
._b{width:11.682000px;}
._6{width:12.870000px;}
._7{width:13.926000px;}
._12{width:14.982000px;}
._15{width:16.038000px;}
._a{width:17.226000px;}
._21{width:18.594000px;}
._18{width:19.602000px;}
._17{width:21.210000px;}
._10{width:22.836000px;}
._11{width:24.222000px;}
._1{width:25.410000px;}
._2{width:26.796000px;}
._19{width:28.182000px;}
._1a{width:29.568000px;}
._1e{width:31.218000px;}
._1f{width:32.274000px;}
._20{width:33.726000px;}
._e{width:42.948000px;}
._16{width:44.652000px;}
._1d{width:52.956000px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(37,37,37);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y1b{bottom:109.050000px;}
.y68{bottom:169.800000px;}
.y1a{bottom:172.650000px;}
.y2c{bottom:174.450000px;}
.yaa{bottom:183.450000px;}
.y5a{bottom:184.200000px;}
.y8a{bottom:184.500000px;}
.y67{bottom:199.200000px;}
.ya9{bottom:202.500000px;}
.y2b{bottom:203.850000px;}
.y78{bottom:205.200000px;}
.y19{bottom:210.300000px;}
.y59{bottom:213.600000px;}
.y89{bottom:214.050000px;}
.y3c{bottom:227.100000px;}
.y66{bottom:228.750000px;}
.y2a{bottom:233.400000px;}
.y48{bottom:234.750000px;}
.ya8{bottom:238.500000px;}
.y58{bottom:243.150000px;}
.y88{bottom:243.450000px;}
.y18{bottom:248.400000px;}
.y3b{bottom:256.650000px;}
.ya7{bottom:257.400000px;}
.y65{bottom:258.150000px;}
.y29{bottom:262.800000px;}
.y47{bottom:264.150000px;}
.y57{bottom:272.550000px;}
.y87{bottom:273.000000px;}
.y17{bottom:286.050000px;}
.y64{bottom:287.700000px;}
.y28{bottom:292.350000px;}
.ya6{bottom:293.400000px;}
.y46{bottom:293.700000px;}
.y86{bottom:302.550000px;}
.ya5{bottom:312.450000px;}
.y3a{bottom:315.600000px;}
.y63{bottom:317.100000px;}
.y56{bottom:320.100000px;}
.y27{bottom:321.750000px;}
.y77{bottom:323.100000px;}
.y45{bottom:323.550000px;}
.y39{bottom:345.000000px;}
.y16{bottom:345.450000px;}
.y62{bottom:346.650000px;}
.ya4{bottom:348.450000px;}
.y55{bottom:349.500000px;}
.y85{bottom:350.400000px;}
.y26{bottom:351.300000px;}
.y76{bottom:352.650000px;}
.ya3{bottom:368.250000px;}
.y38{bottom:374.550000px;}
.y15{bottom:374.850000px;}
.y61{bottom:376.050000px;}
.y54{bottom:379.050000px;}
.y84{bottom:379.800000px;}
.y25{bottom:380.700000px;}
.y75{bottom:382.050000px;}
.y95{bottom:394.350000px;}
.y37{bottom:403.950000px;}
.y14{bottom:404.400000px;}
.y60{bottom:405.600000px;}
.ya2{bottom:406.500000px;}
.y53{bottom:408.450000px;}
.y83{bottom:409.350000px;}
.y24{bottom:410.250000px;}
.y74{bottom:411.600000px;}
.y94{bottom:423.900000px;}
.ya1{bottom:425.400000px;}
.y36{bottom:433.500000px;}
.y13{bottom:433.800000px;}
.y5f{bottom:435.150000px;}
.y52{bottom:438.000000px;}
.y82{bottom:438.750000px;}
.y23{bottom:439.650000px;}
.y73{bottom:441.000000px;}
.y93{bottom:453.300000px;}
.ya0{bottom:461.400000px;}
.y35{bottom:462.900000px;}
.y12{bottom:463.350000px;}
.y51{bottom:467.400000px;}
.y81{bottom:468.300000px;}
.y22{bottom:469.200000px;}
.y72{bottom:470.550000px;}
.y9f{bottom:480.450000px;}
.y92{bottom:482.850000px;}
.y34{bottom:492.450000px;}
.y11{bottom:492.750000px;}
.y50{bottom:496.950000px;}
.y80{bottom:497.700000px;}
.y21{bottom:499.050000px;}
.y71{bottom:499.950000px;}
.y91{bottom:512.250000px;}
.y9e{bottom:517.500000px;}
.y10{bottom:522.600000px;}
.y4f{bottom:526.350000px;}
.y7f{bottom:527.250000px;}
.y70{bottom:529.500000px;}
.y90{bottom:541.800000px;}
.y9d{bottom:554.550000px;}
.y4e{bottom:555.900000px;}
.y7e{bottom:556.650000px;}
.y6f{bottom:558.900000px;}
.y8f{bottom:571.200000px;}
.yf{bottom:581.850000px;}
.y4d{bottom:585.300000px;}
.y7d{bottom:586.200000px;}
.y6e{bottom:588.450000px;}
.y9c{bottom:590.550000px;}
.y8e{bottom:600.750000px;}
.y9b{bottom:609.450000px;}
.ye{bottom:611.400000px;}
.y7c{bottom:615.600000px;}
.y6d{bottom:617.850000px;}
.y8d{bottom:630.300000px;}
.y4c{bottom:632.850000px;}
.yd{bottom:640.800000px;}
.y7b{bottom:645.150000px;}
.y9a{bottom:646.500000px;}
.y6c{bottom:647.700000px;}
.y4b{bottom:662.400000px;}
.yc{bottom:670.350000px;}
.y7a{bottom:674.550000px;}
.y99{bottom:682.500000px;}
.y4a{bottom:691.800000px;}
.yb{bottom:699.750000px;}
.y98{bottom:701.550000px;}
.y79{bottom:704.100000px;}
.y49{bottom:724.350000px;}
.ya{bottom:729.300000px;}
.y97{bottom:738.600000px;}
.y9{bottom:758.700000px;}
.y96{bottom:787.650000px;}
.y8{bottom:788.250000px;}
.y7{bottom:817.950000px;}
.yb2{bottom:879.450000px;}
.y44{bottom:882.750000px;}
.y43{bottom:912.300000px;}
.y33{bottom:913.050000px;}
.yb1{bottom:915.450000px;}
.y6{bottom:919.650000px;}
.yb0{bottom:934.350000px;}
.y42{bottom:941.850000px;}
.y32{bottom:942.600000px;}
.y5{bottom:952.500000px;}
.y41{bottom:971.400000px;}
.y31{bottom:972.000000px;}
.y6b{bottom:984.000000px;}
.y4{bottom:985.350000px;}
.y20{bottom:995.850000px;}
.y40{bottom:1000.800000px;}
.y30{bottom:1001.550000px;}
.y8c{bottom:1002.150000px;}
.yaf{bottom:1009.350000px;}
.y6a{bottom:1013.550000px;}
.y1f{bottom:1025.400000px;}
.y3f{bottom:1030.350000px;}
.y2f{bottom:1030.950000px;}
.y5e{bottom:1031.550000px;}
.y8b{bottom:1031.700000px;}
.y69{bottom:1043.100000px;}
.yae{bottom:1047.600000px;}
.y1e{bottom:1054.800000px;}
.y3e{bottom:1059.750000px;}
.y2e{bottom:1060.500000px;}
.y5d{bottom:1061.100000px;}
.yad{bottom:1066.500000px;}
.y3{bottom:1066.650000px;}
.y1d{bottom:1084.350000px;}
.y3d{bottom:1089.600000px;}
.y2d{bottom:1090.200000px;}
.y5c{bottom:1090.650000px;}
.yac{bottom:1102.500000px;}
.y2{bottom:1112.400000px;}
.y1c{bottom:1116.750000px;}
.y5b{bottom:1120.050000px;}
.yab{bottom:1121.550000px;}
.h9{height:39.990234px;}
.h7{height:50.058000px;}
.h5{height:51.810000px;}
.h3{height:52.171875px;}
.h8{height:55.620000px;}
.h6{height:61.182000px;}
.h4{height:61.230000px;}
.h2{height:75.360000px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:85.200000px;}
.x9{left:112.200000px;}
.x7{left:138.450000px;}
.xe{left:139.650000px;}
.xd{left:141.300000px;}
.x1{left:144.300000px;}
.xa{left:166.200000px;}
.xc{left:168.150000px;}
.xb{left:170.700000px;}
.x2{left:199.800000px;}
.x4{left:307.500000px;}
.x5{left:353.250000px;}
.x3{left:368.850000px;}
.xf{left:428.700000px;}
.x8{left:432.450000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:27.424000pt;}
.ls3{letter-spacing:73.280000pt;}
.ls2{letter-spacing:77.066667pt;}
.ws4{word-spacing:-19.274667pt;}
.ws0{word-spacing:-16.309333pt;}
.ws5{word-spacing:-14.826667pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.949333pt;}
._1b{margin-left:-6.848000pt;}
._1c{margin-left:-5.104000pt;}
._13{margin-left:-3.493333pt;}
._f{margin-left:-2.320000pt;}
._0{margin-left:-0.938667pt;}
._5{width:1.114667pt;}
._d{width:2.053333pt;}
._3{width:3.578667pt;}
._4{width:4.986667pt;}
._c{width:5.984000pt;}
._8{width:6.981333pt;}
._9{width:7.920000pt;}
._14{width:9.082667pt;}
._b{width:10.384000pt;}
._6{width:11.440000pt;}
._7{width:12.378667pt;}
._12{width:13.317333pt;}
._15{width:14.256000pt;}
._a{width:15.312000pt;}
._21{width:16.528000pt;}
._18{width:17.424000pt;}
._17{width:18.853333pt;}
._10{width:20.298667pt;}
._11{width:21.530667pt;}
._1{width:22.586667pt;}
._2{width:23.818667pt;}
._19{width:25.050667pt;}
._1a{width:26.282667pt;}
._1e{width:27.749333pt;}
._1f{width:28.688000pt;}
._20{width:29.978667pt;}
._e{width:38.176000pt;}
._16{width:39.690667pt;}
._1d{width:47.072000pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y1b{bottom:96.933333pt;}
.y68{bottom:150.933333pt;}
.y1a{bottom:153.466667pt;}
.y2c{bottom:155.066667pt;}
.yaa{bottom:163.066667pt;}
.y5a{bottom:163.733333pt;}
.y8a{bottom:164.000000pt;}
.y67{bottom:177.066667pt;}
.ya9{bottom:180.000000pt;}
.y2b{bottom:181.200000pt;}
.y78{bottom:182.400000pt;}
.y19{bottom:186.933333pt;}
.y59{bottom:189.866667pt;}
.y89{bottom:190.266667pt;}
.y3c{bottom:201.866667pt;}
.y66{bottom:203.333333pt;}
.y2a{bottom:207.466667pt;}
.y48{bottom:208.666667pt;}
.ya8{bottom:212.000000pt;}
.y58{bottom:216.133333pt;}
.y88{bottom:216.400000pt;}
.y18{bottom:220.800000pt;}
.y3b{bottom:228.133333pt;}
.ya7{bottom:228.800000pt;}
.y65{bottom:229.466667pt;}
.y29{bottom:233.600000pt;}
.y47{bottom:234.800000pt;}
.y57{bottom:242.266667pt;}
.y87{bottom:242.666667pt;}
.y17{bottom:254.266667pt;}
.y64{bottom:255.733333pt;}
.y28{bottom:259.866667pt;}
.ya6{bottom:260.800000pt;}
.y46{bottom:261.066667pt;}
.y86{bottom:268.933333pt;}
.ya5{bottom:277.733333pt;}
.y3a{bottom:280.533333pt;}
.y63{bottom:281.866667pt;}
.y56{bottom:284.533333pt;}
.y27{bottom:286.000000pt;}
.y77{bottom:287.200000pt;}
.y45{bottom:287.600000pt;}
.y39{bottom:306.666667pt;}
.y16{bottom:307.066667pt;}
.y62{bottom:308.133333pt;}
.ya4{bottom:309.733333pt;}
.y55{bottom:310.666667pt;}
.y85{bottom:311.466667pt;}
.y26{bottom:312.266667pt;}
.y76{bottom:313.466667pt;}
.ya3{bottom:327.333333pt;}
.y38{bottom:332.933333pt;}
.y15{bottom:333.200000pt;}
.y61{bottom:334.266667pt;}
.y54{bottom:336.933333pt;}
.y84{bottom:337.600000pt;}
.y25{bottom:338.400000pt;}
.y75{bottom:339.600000pt;}
.y95{bottom:350.533333pt;}
.y37{bottom:359.066667pt;}
.y14{bottom:359.466667pt;}
.y60{bottom:360.533333pt;}
.ya2{bottom:361.333333pt;}
.y53{bottom:363.066667pt;}
.y83{bottom:363.866667pt;}
.y24{bottom:364.666667pt;}
.y74{bottom:365.866667pt;}
.y94{bottom:376.800000pt;}
.ya1{bottom:378.133333pt;}
.y36{bottom:385.333333pt;}
.y13{bottom:385.600000pt;}
.y5f{bottom:386.800000pt;}
.y52{bottom:389.333333pt;}
.y82{bottom:390.000000pt;}
.y23{bottom:390.800000pt;}
.y73{bottom:392.000000pt;}
.y93{bottom:402.933333pt;}
.ya0{bottom:410.133333pt;}
.y35{bottom:411.466667pt;}
.y12{bottom:411.866667pt;}
.y51{bottom:415.466667pt;}
.y81{bottom:416.266667pt;}
.y22{bottom:417.066667pt;}
.y72{bottom:418.266667pt;}
.y9f{bottom:427.066667pt;}
.y92{bottom:429.200000pt;}
.y34{bottom:437.733333pt;}
.y11{bottom:438.000000pt;}
.y50{bottom:441.733333pt;}
.y80{bottom:442.400000pt;}
.y21{bottom:443.600000pt;}
.y71{bottom:444.400000pt;}
.y91{bottom:455.333333pt;}
.y9e{bottom:460.000000pt;}
.y10{bottom:464.533333pt;}
.y4f{bottom:467.866667pt;}
.y7f{bottom:468.666667pt;}
.y70{bottom:470.666667pt;}
.y90{bottom:481.600000pt;}
.y9d{bottom:492.933333pt;}
.y4e{bottom:494.133333pt;}
.y7e{bottom:494.800000pt;}
.y6f{bottom:496.800000pt;}
.y8f{bottom:507.733333pt;}
.yf{bottom:517.200000pt;}
.y4d{bottom:520.266667pt;}
.y7d{bottom:521.066667pt;}
.y6e{bottom:523.066667pt;}
.y9c{bottom:524.933333pt;}
.y8e{bottom:534.000000pt;}
.y9b{bottom:541.733333pt;}
.ye{bottom:543.466667pt;}
.y7c{bottom:547.200000pt;}
.y6d{bottom:549.200000pt;}
.y8d{bottom:560.266667pt;}
.y4c{bottom:562.533333pt;}
.yd{bottom:569.600000pt;}
.y7b{bottom:573.466667pt;}
.y9a{bottom:574.666667pt;}
.y6c{bottom:575.733333pt;}
.y4b{bottom:588.800000pt;}
.yc{bottom:595.866667pt;}
.y7a{bottom:599.600000pt;}
.y99{bottom:606.666667pt;}
.y4a{bottom:614.933333pt;}
.yb{bottom:622.000000pt;}
.y98{bottom:623.600000pt;}
.y79{bottom:625.866667pt;}
.y49{bottom:643.866667pt;}
.ya{bottom:648.266667pt;}
.y97{bottom:656.533333pt;}
.y9{bottom:674.400000pt;}
.y96{bottom:700.133333pt;}
.y8{bottom:700.666667pt;}
.y7{bottom:727.066667pt;}
.yb2{bottom:781.733333pt;}
.y44{bottom:784.666667pt;}
.y43{bottom:810.933333pt;}
.y33{bottom:811.600000pt;}
.yb1{bottom:813.733333pt;}
.y6{bottom:817.466667pt;}
.yb0{bottom:830.533333pt;}
.y42{bottom:837.200000pt;}
.y32{bottom:837.866667pt;}
.y5{bottom:846.666667pt;}
.y41{bottom:863.466667pt;}
.y31{bottom:864.000000pt;}
.y6b{bottom:874.666667pt;}
.y4{bottom:875.866667pt;}
.y20{bottom:885.200000pt;}
.y40{bottom:889.600000pt;}
.y30{bottom:890.266667pt;}
.y8c{bottom:890.800000pt;}
.yaf{bottom:897.200000pt;}
.y6a{bottom:900.933333pt;}
.y1f{bottom:911.466667pt;}
.y3f{bottom:915.866667pt;}
.y2f{bottom:916.400000pt;}
.y5e{bottom:916.933333pt;}
.y8b{bottom:917.066667pt;}
.y69{bottom:927.200000pt;}
.yae{bottom:931.200000pt;}
.y1e{bottom:937.600000pt;}
.y3e{bottom:942.000000pt;}
.y2e{bottom:942.666667pt;}
.y5d{bottom:943.200000pt;}
.yad{bottom:948.000000pt;}
.y3{bottom:948.133333pt;}
.y1d{bottom:963.866667pt;}
.y3d{bottom:968.533333pt;}
.y2d{bottom:969.066667pt;}
.y5c{bottom:969.466667pt;}
.yac{bottom:980.000000pt;}
.y2{bottom:988.800000pt;}
.y1c{bottom:992.666667pt;}
.y5b{bottom:995.600000pt;}
.yab{bottom:996.933333pt;}
.h9{height:35.546875pt;}
.h7{height:44.496000pt;}
.h5{height:46.053333pt;}
.h3{height:46.375000pt;}
.h8{height:49.440000pt;}
.h6{height:54.384000pt;}
.h4{height:54.426667pt;}
.h2{height:66.986667pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:75.733333pt;}
.x9{left:99.733333pt;}
.x7{left:123.066667pt;}
.xe{left:124.133333pt;}
.xd{left:125.600000pt;}
.x1{left:128.266667pt;}
.xa{left:147.733333pt;}
.xc{left:149.466667pt;}
.xb{left:151.733333pt;}
.x2{left:177.600000pt;}
.x4{left:273.333333pt;}
.x5{left:314.000000pt;}
.x3{left:327.866667pt;}
.xf{left:381.066667pt;}
.x8{left:384.400000pt;}
}




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