
    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_fb54806d351818551907e955.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_72d0ac919b8a85c4763cfd04.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_90c0cbdff83eab11771f2cb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932617;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_ad5445140afb7160882cd9fe.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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;}
.ls9{letter-spacing:-0.516000px;}
.ls3{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.468000px;}
.ls4{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.516000px;}
.ls0{letter-spacing:0.750000px;}
.ls5{letter-spacing:1.500000px;}
.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;}
}
.ws5{word-spacing:-18.516000px;}
.ws8{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.892000px;}
.ws4{word-spacing:-17.532000px;}
.ws6{word-spacing:-17.484000px;}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.520000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-2.376000px;}
._1{margin-left:-1.320000px;}
._0{width:1.152000px;}
._2{width:2.160000px;}
._5{width:3.468000px;}
._6{width:4.968000px;}
._7{width:5.988000px;}
._8{width:7.368000px;}
._9{width:8.532000px;}
._b{width:9.840000px;}
._a{width:10.920000px;}
._d{width:12.438000px;}
._c{width:13.680000px;}
._10{width:15.072000px;}
._e{width:16.152000px;}
._3{width:19.020000px;}
._4{width:20.400000px;}
._18{width:21.888000px;}
._19{width:22.896000px;}
._11{width:25.416000px;}
._12{width:26.478000px;}
._17{width:27.594000px;}
._15{width:29.688000px;}
._16{width:30.816000px;}
._f{width:34.518000px;}
._14{width:37.026000px;}
._13{width:38.184000px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:4.125000px;}
.y73{bottom:5.610000px;}
.y75{bottom:5.625000px;}
.y6f{bottom:14.250000px;}
.y70{bottom:24.750000px;}
.y3b{bottom:65.662500px;}
.y3a{bottom:86.662500px;}
.y39{bottom:107.287500px;}
.y8b{bottom:112.537500px;}
.y6d{bottom:124.537500px;}
.y38{bottom:127.912500px;}
.y8a{bottom:133.537500px;}
.y6c{bottom:145.162500px;}
.y37{bottom:148.537500px;}
.y89{bottom:150.420000px;}
.y6b{bottom:165.795000px;}
.y36{bottom:169.170000px;}
.y6a{bottom:186.450000px;}
.y35{bottom:190.200000px;}
.y69{bottom:207.450000px;}
.y34{bottom:210.825000px;}
.y68{bottom:228.075000px;}
.y33{bottom:231.450000px;}
.y67{bottom:248.700000px;}
.y32{bottom:252.075000px;}
.y66{bottom:269.325000px;}
.y31{bottom:272.700000px;}
.y65{bottom:289.950000px;}
.y30{bottom:293.700000px;}
.y64{bottom:310.995000px;}
.y2f{bottom:314.370000px;}
.y63{bottom:331.620000px;}
.y2e{bottom:334.995000px;}
.y9f{bottom:335.370000px;}
.y62{bottom:352.245000px;}
.y2d{bottom:355.620000px;}
.y9e{bottom:355.995000px;}
.y61{bottom:372.870000px;}
.y2c{bottom:376.245000px;}
.y9d{bottom:376.620000px;}
.y60{bottom:393.495000px;}
.y2b{bottom:397.245000px;}
.y5f{bottom:414.495000px;}
.y2a{bottom:417.870000px;}
.y5e{bottom:435.120000px;}
.y29{bottom:438.525000px;}
.y9c{bottom:438.900000px;}
.y5d{bottom:455.775000px;}
.y28{bottom:459.150000px;}
.y9b{bottom:459.525000px;}
.y5c{bottom:476.400000px;}
.y27{bottom:479.775000px;}
.y9a{bottom:480.150000px;}
.y5b{bottom:497.025000px;}
.y88{bottom:499.650000px;}
.y26{bottom:500.775000px;}
.y5a{bottom:518.025000px;}
.y87{bottom:520.650000px;}
.y25{bottom:521.400000px;}
.y59{bottom:538.650000px;}
.y86{bottom:541.275000px;}
.y24{bottom:542.025000px;}
.y99{bottom:542.400000px;}
.y58{bottom:559.275000px;}
.y85{bottom:561.900000px;}
.y23{bottom:562.650000px;}
.y98{bottom:563.025000px;}
.y57{bottom:579.945000px;}
.y84{bottom:582.570000px;}
.y22{bottom:583.320000px;}
.y97{bottom:583.695000px;}
.y56{bottom:600.570000px;}
.y83{bottom:603.195000px;}
.y21{bottom:604.320000px;}
.y55{bottom:621.570000px;}
.y82{bottom:623.820000px;}
.y20{bottom:624.945000px;}
.y54{bottom:642.195000px;}
.y81{bottom:644.820000px;}
.y1f{bottom:645.195000px;}
.y96{bottom:645.945000px;}
.y1e{bottom:662.445000px;}
.y53{bottom:662.820000px;}
.y80{bottom:665.445000px;}
.y95{bottom:666.570000px;}
.y1d{bottom:679.695000px;}
.y52{bottom:683.445000px;}
.y7f{bottom:686.070000px;}
.y94{bottom:687.195000px;}
.y1c{bottom:696.975000px;}
.y51{bottom:704.100000px;}
.y7e{bottom:706.725000px;}
.y93{bottom:707.850000px;}
.y1b{bottom:714.225000px;}
.y50{bottom:724.725000px;}
.y7d{bottom:727.350000px;}
.y92{bottom:728.475000px;}
.y1a{bottom:731.475000px;}
.y4f{bottom:745.725000px;}
.y7c{bottom:748.350000px;}
.y19{bottom:748.725000px;}
.y91{bottom:749.475000px;}
.y18{bottom:765.975000px;}
.y4e{bottom:766.350000px;}
.y7b{bottom:768.975000px;}
.y90{bottom:770.100000px;}
.y17{bottom:783.225000px;}
.y4d{bottom:786.975000px;}
.y7a{bottom:789.600000px;}
.y8f{bottom:790.725000px;}
.y16{bottom:800.475000px;}
.y4c{bottom:807.600000px;}
.y79{bottom:810.225000px;}
.y8e{bottom:811.350000px;}
.y15{bottom:817.725000px;}
.y4b{bottom:828.270000px;}
.y78{bottom:830.880000px;}
.y8d{bottom:832.020000px;}
.y14{bottom:835.005000px;}
.y77{bottom:848.505000px;}
.y4a{bottom:849.255000px;}
.y13{bottom:852.270000px;}
.y8c{bottom:853.755000px;}
.y12{bottom:869.505000px;}
.y49{bottom:869.880000px;}
.y76{bottom:873.630000px;}
.y11{bottom:886.755000px;}
.y48{bottom:890.505000px;}
.y74{bottom:898.755000px;}
.y10{bottom:904.005000px;}
.y47{bottom:911.130000px;}
.yf{bottom:921.255000px;}
.y72{bottom:923.895000px;}
.y46{bottom:931.755000px;}
.ye{bottom:938.505000px;}
.y6e{bottom:948.675000px;}
.y45{bottom:952.800000px;}
.yd{bottom:955.800000px;}
.yc{bottom:973.050000px;}
.y44{bottom:973.425000px;}
.yb{bottom:990.300000px;}
.y43{bottom:994.050000px;}
.ya{bottom:1007.175000px;}
.y42{bottom:1014.675000px;}
.y9{bottom:1023.675000px;}
.y41{bottom:1035.300000px;}
.y8{bottom:1040.925000px;}
.y40{bottom:1056.300000px;}
.y7{bottom:1058.175000px;}
.y6{bottom:1075.455000px;}
.y3f{bottom:1076.955000px;}
.y5{bottom:1092.705000px;}
.y3e{bottom:1097.580000px;}
.y4{bottom:1111.830000px;}
.y3d{bottom:1118.205000px;}
.y3c{bottom:1138.830000px;}
.y3{bottom:1139.580000px;}
.y2{bottom:1165.080000px;}
.y1{bottom:1182.330000px;}
.ha{height:24.000000px;}
.h9{height:24.022500px;}
.hb{height:39.990234px;}
.h8{height:41.625000px;}
.h5{height:42.333984px;}
.h4{height:43.007812px;}
.h7{height:50.800781px;}
.h3{height:51.099609px;}
.h1{height:53.789062px;}
.h6{height:64.546875px;}
.h2{height:67.734375px;}
.h0{height:1262.250000px;}
.w2{width:99.787500px;}
.w4{width:100.162500px;}
.w6{width:100.537500px;}
.w5{width:136.200000px;}
.w3{width:154.575000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.250000px;}
.x17{left:9.750000px;}
.xb{left:10.875000px;}
.x9{left:12.375000px;}
.x4{left:21.750000px;}
.x7{left:23.250000px;}
.xe{left:25.125000px;}
.xd{left:26.250000px;}
.x12{left:29.610000px;}
.x16{left:32.235000px;}
.x15{left:36.375000px;}
.x14{left:40.875000px;}
.x10{left:46.530000px;}
.x1a{left:54.030000px;}
.x6{left:55.545000px;}
.x13{left:59.295000px;}
.x18{left:63.795000px;}
.x3{left:76.912500px;}
.x1{left:85.162487px;}
.x1d{left:139.199987px;}
.x2{left:148.949987px;}
.x5{left:177.075000px;}
.x8{left:331.650000px;}
.xa{left:431.820000px;}
.x1c{left:446.819987px;}
.xc{left:531.975000px;}
.x1b{left:622.019987px;}
.xf{left:632.145000px;}
.x11{left:768.345000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.458667pt;}
.ls3{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.416000pt;}
.ls4{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.458667pt;}
.ls0{letter-spacing:0.666667pt;}
.ls5{letter-spacing:1.333333pt;}
.ws5{word-spacing:-16.458667pt;}
.ws8{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.904000pt;}
.ws4{word-spacing:-15.584000pt;}
.ws6{word-spacing:-15.541333pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.906667pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-2.112000pt;}
._1{margin-left:-1.173333pt;}
._0{width:1.024000pt;}
._2{width:1.920000pt;}
._5{width:3.082667pt;}
._6{width:4.416000pt;}
._7{width:5.322667pt;}
._8{width:6.549333pt;}
._9{width:7.584000pt;}
._b{width:8.746667pt;}
._a{width:9.706667pt;}
._d{width:11.056000pt;}
._c{width:12.160000pt;}
._10{width:13.397333pt;}
._e{width:14.357333pt;}
._3{width:16.906667pt;}
._4{width:18.133333pt;}
._18{width:19.456000pt;}
._19{width:20.352000pt;}
._11{width:22.592000pt;}
._12{width:23.536000pt;}
._17{width:24.528000pt;}
._15{width:26.389333pt;}
._16{width:27.392000pt;}
._f{width:30.682667pt;}
._14{width:32.912000pt;}
._13{width:33.941333pt;}
.fs2{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:3.666667pt;}
.y73{bottom:4.986667pt;}
.y75{bottom:5.000000pt;}
.y6f{bottom:12.666667pt;}
.y70{bottom:22.000000pt;}
.y3b{bottom:58.366667pt;}
.y3a{bottom:77.033333pt;}
.y39{bottom:95.366667pt;}
.y8b{bottom:100.033333pt;}
.y6d{bottom:110.700000pt;}
.y38{bottom:113.700000pt;}
.y8a{bottom:118.700000pt;}
.y6c{bottom:129.033333pt;}
.y37{bottom:132.033333pt;}
.y89{bottom:133.706667pt;}
.y6b{bottom:147.373333pt;}
.y36{bottom:150.373333pt;}
.y6a{bottom:165.733333pt;}
.y35{bottom:169.066667pt;}
.y69{bottom:184.400000pt;}
.y34{bottom:187.400000pt;}
.y68{bottom:202.733333pt;}
.y33{bottom:205.733333pt;}
.y67{bottom:221.066667pt;}
.y32{bottom:224.066667pt;}
.y66{bottom:239.400000pt;}
.y31{bottom:242.400000pt;}
.y65{bottom:257.733333pt;}
.y30{bottom:261.066667pt;}
.y64{bottom:276.440000pt;}
.y2f{bottom:279.440000pt;}
.y63{bottom:294.773333pt;}
.y2e{bottom:297.773333pt;}
.y9f{bottom:298.106667pt;}
.y62{bottom:313.106667pt;}
.y2d{bottom:316.106667pt;}
.y9e{bottom:316.440000pt;}
.y61{bottom:331.440000pt;}
.y2c{bottom:334.440000pt;}
.y9d{bottom:334.773333pt;}
.y60{bottom:349.773333pt;}
.y2b{bottom:353.106667pt;}
.y5f{bottom:368.440000pt;}
.y2a{bottom:371.440000pt;}
.y5e{bottom:386.773333pt;}
.y29{bottom:389.800000pt;}
.y9c{bottom:390.133333pt;}
.y5d{bottom:405.133333pt;}
.y28{bottom:408.133333pt;}
.y9b{bottom:408.466667pt;}
.y5c{bottom:423.466667pt;}
.y27{bottom:426.466667pt;}
.y9a{bottom:426.800000pt;}
.y5b{bottom:441.800000pt;}
.y88{bottom:444.133333pt;}
.y26{bottom:445.133333pt;}
.y5a{bottom:460.466667pt;}
.y87{bottom:462.800000pt;}
.y25{bottom:463.466667pt;}
.y59{bottom:478.800000pt;}
.y86{bottom:481.133333pt;}
.y24{bottom:481.800000pt;}
.y99{bottom:482.133333pt;}
.y58{bottom:497.133333pt;}
.y85{bottom:499.466667pt;}
.y23{bottom:500.133333pt;}
.y98{bottom:500.466667pt;}
.y57{bottom:515.506667pt;}
.y84{bottom:517.840000pt;}
.y22{bottom:518.506667pt;}
.y97{bottom:518.840000pt;}
.y56{bottom:533.840000pt;}
.y83{bottom:536.173333pt;}
.y21{bottom:537.173333pt;}
.y55{bottom:552.506667pt;}
.y82{bottom:554.506667pt;}
.y20{bottom:555.506667pt;}
.y54{bottom:570.840000pt;}
.y81{bottom:573.173333pt;}
.y1f{bottom:573.506667pt;}
.y96{bottom:574.173333pt;}
.y1e{bottom:588.840000pt;}
.y53{bottom:589.173333pt;}
.y80{bottom:591.506667pt;}
.y95{bottom:592.506667pt;}
.y1d{bottom:604.173333pt;}
.y52{bottom:607.506667pt;}
.y7f{bottom:609.840000pt;}
.y94{bottom:610.840000pt;}
.y1c{bottom:619.533333pt;}
.y51{bottom:625.866667pt;}
.y7e{bottom:628.200000pt;}
.y93{bottom:629.200000pt;}
.y1b{bottom:634.866667pt;}
.y50{bottom:644.200000pt;}
.y7d{bottom:646.533333pt;}
.y92{bottom:647.533333pt;}
.y1a{bottom:650.200000pt;}
.y4f{bottom:662.866667pt;}
.y7c{bottom:665.200000pt;}
.y19{bottom:665.533333pt;}
.y91{bottom:666.200000pt;}
.y18{bottom:680.866667pt;}
.y4e{bottom:681.200000pt;}
.y7b{bottom:683.533333pt;}
.y90{bottom:684.533333pt;}
.y17{bottom:696.200000pt;}
.y4d{bottom:699.533333pt;}
.y7a{bottom:701.866667pt;}
.y8f{bottom:702.866667pt;}
.y16{bottom:711.533333pt;}
.y4c{bottom:717.866667pt;}
.y79{bottom:720.200000pt;}
.y8e{bottom:721.200000pt;}
.y15{bottom:726.866667pt;}
.y4b{bottom:736.240000pt;}
.y78{bottom:738.560000pt;}
.y8d{bottom:739.573333pt;}
.y14{bottom:742.226667pt;}
.y77{bottom:754.226667pt;}
.y4a{bottom:754.893333pt;}
.y13{bottom:757.573333pt;}
.y8c{bottom:758.893333pt;}
.y12{bottom:772.893333pt;}
.y49{bottom:773.226667pt;}
.y76{bottom:776.560000pt;}
.y11{bottom:788.226667pt;}
.y48{bottom:791.560000pt;}
.y74{bottom:798.893333pt;}
.y10{bottom:803.560000pt;}
.y47{bottom:809.893333pt;}
.yf{bottom:818.893333pt;}
.y72{bottom:821.240000pt;}
.y46{bottom:828.226667pt;}
.ye{bottom:834.226667pt;}
.y6e{bottom:843.266667pt;}
.y45{bottom:846.933333pt;}
.yd{bottom:849.600000pt;}
.yc{bottom:864.933333pt;}
.y44{bottom:865.266667pt;}
.yb{bottom:880.266667pt;}
.y43{bottom:883.600000pt;}
.ya{bottom:895.266667pt;}
.y42{bottom:901.933333pt;}
.y9{bottom:909.933333pt;}
.y41{bottom:920.266667pt;}
.y8{bottom:925.266667pt;}
.y40{bottom:938.933333pt;}
.y7{bottom:940.600000pt;}
.y6{bottom:955.960000pt;}
.y3f{bottom:957.293333pt;}
.y5{bottom:971.293333pt;}
.y3e{bottom:975.626667pt;}
.y4{bottom:988.293333pt;}
.y3d{bottom:993.960000pt;}
.y3c{bottom:1012.293333pt;}
.y3{bottom:1012.960000pt;}
.y2{bottom:1035.626667pt;}
.y1{bottom:1050.960000pt;}
.ha{height:21.333333pt;}
.h9{height:21.353333pt;}
.hb{height:35.546875pt;}
.h8{height:37.000000pt;}
.h5{height:37.630208pt;}
.h4{height:38.229167pt;}
.h7{height:45.156250pt;}
.h3{height:45.421875pt;}
.h1{height:47.812500pt;}
.h6{height:57.375000pt;}
.h2{height:60.208333pt;}
.h0{height:1122.000000pt;}
.w2{width:88.700000pt;}
.w4{width:89.033333pt;}
.w6{width:89.366667pt;}
.w5{width:121.066667pt;}
.w3{width:137.400000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.333333pt;}
.x17{left:8.666667pt;}
.xb{left:9.666667pt;}
.x9{left:11.000000pt;}
.x4{left:19.333333pt;}
.x7{left:20.666667pt;}
.xe{left:22.333333pt;}
.xd{left:23.333333pt;}
.x12{left:26.320000pt;}
.x16{left:28.653333pt;}
.x15{left:32.333333pt;}
.x14{left:36.333333pt;}
.x10{left:41.360000pt;}
.x1a{left:48.026667pt;}
.x6{left:49.373333pt;}
.x13{left:52.706667pt;}
.x18{left:56.706667pt;}
.x3{left:68.366667pt;}
.x1{left:75.699988pt;}
.x1d{left:123.733322pt;}
.x2{left:132.399988pt;}
.x5{left:157.400000pt;}
.x8{left:294.800000pt;}
.xa{left:383.840000pt;}
.x1c{left:397.173322pt;}
.xc{left:472.866667pt;}
.x1b{left:552.906655pt;}
.xf{left:561.906667pt;}
.x11{left:682.973333pt;}
}




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