
    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_ce634476210e5f8b1c19f8dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_845466947b67541b4d41b420.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_de64791d9d13158e6e6a2d28.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.876000;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_a6308e9dd40ac9088d95d599.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_f2cb1ee69a49153d63f97172.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.800000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.052800px;}
.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;}
}
.ws0{word-spacing:-15.012000px;}
.ws2{word-spacing:-9.674400px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.176000px;}
._1{width:1.518000px;}
._2{width:2.640000px;}
._7{width:3.720000px;}
._3{width:4.752000px;}
._4{width:5.940000px;}
._8{width:7.128000px;}
._9{width:8.532000px;}
._5{width:9.882000px;}
._6{width:11.124000px;}
._b{width:12.960000px;}
._d{width:13.998000px;}
._a{width:16.170000px;}
._c{width:30.402000px;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:31.200000px;}
.fs7{font-size:34.800000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y36{bottom:58.650000px;}
.y78{bottom:96.600000px;}
.ybf{bottom:101.400000px;}
.yb2{bottom:102.750000px;}
.y35{bottom:110.850000px;}
.y77{bottom:114.900000px;}
.yb1{bottom:116.250000px;}
.yb0{bottom:129.750000px;}
.ybe{bottom:144.750000px;}
.y76{bottom:148.350000px;}
.y34{bottom:160.350000px;}
.y75{bottom:161.850000px;}
.yac{bottom:166.350000px;}
.y33{bottom:173.850000px;}
.yaf{bottom:174.750000px;}
.y74{bottom:175.350000px;}
.yab{bottom:179.850000px;}
.yc0{bottom:186.150000px;}
.y32{bottom:187.350000px;}
.y73{bottom:188.850000px;}
.yaa{bottom:193.350000px;}
.y72{bottom:202.350000px;}
.ycb{bottom:206.850000px;}
.y71{bottom:215.850000px;}
.y31{bottom:218.850000px;}
.yc1{bottom:223.800000px;}
.ya9{bottom:224.850000px;}
.y70{bottom:229.350000px;}
.y30{bottom:232.350000px;}
.ya8{bottom:238.350000px;}
.y6f{bottom:242.850000px;}
.y2f{bottom:245.850000px;}
.ya7{bottom:251.850000px;}
.y6e{bottom:256.350000px;}
.y2e{bottom:259.350000px;}
.ya6{bottom:265.350000px;}
.y6d{bottom:269.850000px;}
.ya5{bottom:278.850000px;}
.y6c{bottom:283.350000px;}
.y2d{bottom:290.850000px;}
.ya4{bottom:292.350000px;}
.y6b{bottom:296.850000px;}
.yca{bottom:301.350000px;}
.y2c{bottom:304.350000px;}
.ya3{bottom:305.850000px;}
.y6a{bottom:310.350000px;}
.y2b{bottom:317.850000px;}
.ya2{bottom:319.350000px;}
.y2a{bottom:331.350000px;}
.ya1{bottom:332.850000px;}
.y69{bottom:341.850000px;}
.y29{bottom:344.850000px;}
.ya0{bottom:346.350000px;}
.y68{bottom:355.350000px;}
.y28{bottom:358.350000px;}
.yc9{bottom:364.350000px;}
.y67{bottom:368.850000px;}
.y27{bottom:371.850000px;}
.y9f{bottom:377.850000px;}
.y66{bottom:382.350000px;}
.y26{bottom:385.350000px;}
.y9e{bottom:391.350000px;}
.y65{bottom:395.850000px;}
.y25{bottom:398.850000px;}
.y9d{bottom:404.850000px;}
.y64{bottom:409.350000px;}
.y24{bottom:412.350000px;}
.y9c{bottom:418.350000px;}
.y63{bottom:422.850000px;}
.y9b{bottom:431.850000px;}
.y62{bottom:436.350000px;}
.yc8{bottom:440.850000px;}
.y23{bottom:443.850000px;}
.y9a{bottom:445.350000px;}
.y61{bottom:449.850000px;}
.ybd{bottom:451.350000px;}
.yc7{bottom:454.350000px;}
.y99{bottom:458.850000px;}
.y60{bottom:463.350000px;}
.ybc{bottom:464.850000px;}
.y98{bottom:472.350000px;}
.y22{bottom:475.350000px;}
.y5f{bottom:476.850000px;}
.ybb{bottom:478.350000px;}
.y97{bottom:485.850000px;}
.y21{bottom:488.850000px;}
.y5e{bottom:490.350000px;}
.yba{bottom:491.850000px;}
.y96{bottom:499.350000px;}
.y20{bottom:502.350000px;}
.y5d{bottom:503.850000px;}
.y95{bottom:512.850000px;}
.y5c{bottom:517.350000px;}
.y94{bottom:526.350000px;}
.y5b{bottom:530.850000px;}
.y1f{bottom:533.850000px;}
.y5a{bottom:544.350000px;}
.y1e{bottom:547.350000px;}
.yb9{bottom:553.050000px;}
.y59{bottom:557.850000px;}
.y1d{bottom:560.850000px;}
.yc6{bottom:562.350000px;}
.y58{bottom:571.350000px;}
.y1c{bottom:574.350000px;}
.y57{bottom:584.850000px;}
.y93{bottom:589.350000px;}
.yc5{bottom:593.850000px;}
.y56{bottom:598.350000px;}
.y92{bottom:602.850000px;}
.y1b{bottom:605.850000px;}
.y55{bottom:611.850000px;}
.y91{bottom:616.350000px;}
.y1a{bottom:619.350000px;}
.y54{bottom:625.350000px;}
.y19{bottom:632.850000px;}
.y53{bottom:638.850000px;}
.y18{bottom:646.350000px;}
.y90{bottom:647.850000px;}
.yae{bottom:656.850000px;}
.y17{bottom:659.850000px;}
.y8f{bottom:661.350000px;}
.y52{bottom:670.350000px;}
.y16{bottom:673.350000px;}
.y8e{bottom:674.850000px;}
.y51{bottom:683.850000px;}
.y15{bottom:686.850000px;}
.y8d{bottom:688.350000px;}
.y50{bottom:697.350000px;}
.y14{bottom:700.350000px;}
.y8c{bottom:701.850000px;}
.y4f{bottom:710.850000px;}
.y13{bottom:713.850000px;}
.y8b{bottom:715.350000px;}
.yc4{bottom:719.850000px;}
.y4e{bottom:724.350000px;}
.y12{bottom:727.350000px;}
.y8a{bottom:728.850000px;}
.y4d{bottom:737.850000px;}
.y11{bottom:740.850000px;}
.y89{bottom:742.350000px;}
.y4c{bottom:751.350000px;}
.y88{bottom:755.850000px;}
.y4b{bottom:764.850000px;}
.y10{bottom:772.350000px;}
.yc3{bottom:782.850000px;}
.y87{bottom:787.350000px;}
.y4a{bottom:796.350000px;}
.y86{bottom:800.850000px;}
.yf{bottom:803.850000px;}
.y85{bottom:814.350000px;}
.y49{bottom:827.850000px;}
.ye{bottom:835.350000px;}
.y48{bottom:841.350000px;}
.y47{bottom:854.850000px;}
.yd{bottom:866.850000px;}
.y46{bottom:868.350000px;}
.y45{bottom:881.850000px;}
.y84{bottom:886.350000px;}
.yb8{bottom:890.850000px;}
.y44{bottom:895.350000px;}
.yc{bottom:898.350000px;}
.y83{bottom:899.850000px;}
.yb7{bottom:904.350000px;}
.y43{bottom:908.850000px;}
.y82{bottom:913.350000px;}
.yb6{bottom:917.850000px;}
.y81{bottom:926.850000px;}
.yb{bottom:929.850000px;}
.yb5{bottom:931.350000px;}
.y42{bottom:940.350000px;}
.yb4{bottom:944.850000px;}
.y80{bottom:953.850000px;}
.yb3{bottom:958.350000px;}
.y7f{bottom:967.350000px;}
.y41{bottom:971.850000px;}
.ya{bottom:973.500000px;}
.yc2{bottom:980.850000px;}
.y40{bottom:985.350000px;}
.y3f{bottom:998.850000px;}
.y3e{bottom:1012.350000px;}
.y3d{bottom:1025.850000px;}
.y7e{bottom:1030.350000px;}
.y9{bottom:1031.100000px;}
.y3c{bottom:1039.350000px;}
.y7d{bottom:1043.850000px;}
.y8{bottom:1048.500000px;}
.y3b{bottom:1052.850000px;}
.y7c{bottom:1057.350000px;}
.y3a{bottom:1066.350000px;}
.y7b{bottom:1070.850000px;}
.y39{bottom:1079.850000px;}
.y7a{bottom:1084.350000px;}
.y7{bottom:1085.100000px;}
.yad{bottom:1093.350000px;}
.y79{bottom:1097.850000px;}
.y6{bottom:1101.600000px;}
.y38{bottom:1111.350000px;}
.y5{bottom:1119.000000px;}
.y37{bottom:1124.850000px;}
.y4{bottom:1176.450000px;}
.y3{bottom:1188.450000px;}
.y2{bottom:1200.450000px;}
.h8{height:38.320312px;}
.h7{height:46.260000px;}
.h2{height:50.062500px;}
.h6{height:56.320312px;}
.h4{height:68.835938px;}
.h3{height:87.609375px;}
.h5{height:112.640625px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:76.800000px;}
.x3{left:215.700000px;}
.x1{left:279.450000px;}
.x2{left:289.800000px;}
.x5{left:389.850000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.046933pt;}
.ws0{word-spacing:-13.344000pt;}
.ws2{word-spacing:-8.599467pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.045333pt;}
._1{width:1.349333pt;}
._2{width:2.346667pt;}
._7{width:3.306667pt;}
._3{width:4.224000pt;}
._4{width:5.280000pt;}
._8{width:6.336000pt;}
._9{width:7.584000pt;}
._5{width:8.784000pt;}
._6{width:9.888000pt;}
._b{width:11.520000pt;}
._d{width:12.442667pt;}
._a{width:14.373333pt;}
._c{width:27.024000pt;}
.fs6{font-size:27.733333pt;}
.fs7{font-size:30.933333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y36{bottom:52.133333pt;}
.y78{bottom:85.866667pt;}
.ybf{bottom:90.133333pt;}
.yb2{bottom:91.333333pt;}
.y35{bottom:98.533333pt;}
.y77{bottom:102.133333pt;}
.yb1{bottom:103.333333pt;}
.yb0{bottom:115.333333pt;}
.ybe{bottom:128.666667pt;}
.y76{bottom:131.866667pt;}
.y34{bottom:142.533333pt;}
.y75{bottom:143.866667pt;}
.yac{bottom:147.866667pt;}
.y33{bottom:154.533333pt;}
.yaf{bottom:155.333333pt;}
.y74{bottom:155.866667pt;}
.yab{bottom:159.866667pt;}
.yc0{bottom:165.466667pt;}
.y32{bottom:166.533333pt;}
.y73{bottom:167.866667pt;}
.yaa{bottom:171.866667pt;}
.y72{bottom:179.866667pt;}
.ycb{bottom:183.866667pt;}
.y71{bottom:191.866667pt;}
.y31{bottom:194.533333pt;}
.yc1{bottom:198.933333pt;}
.ya9{bottom:199.866667pt;}
.y70{bottom:203.866667pt;}
.y30{bottom:206.533333pt;}
.ya8{bottom:211.866667pt;}
.y6f{bottom:215.866667pt;}
.y2f{bottom:218.533333pt;}
.ya7{bottom:223.866667pt;}
.y6e{bottom:227.866667pt;}
.y2e{bottom:230.533333pt;}
.ya6{bottom:235.866667pt;}
.y6d{bottom:239.866667pt;}
.ya5{bottom:247.866667pt;}
.y6c{bottom:251.866667pt;}
.y2d{bottom:258.533333pt;}
.ya4{bottom:259.866667pt;}
.y6b{bottom:263.866667pt;}
.yca{bottom:267.866667pt;}
.y2c{bottom:270.533333pt;}
.ya3{bottom:271.866667pt;}
.y6a{bottom:275.866667pt;}
.y2b{bottom:282.533333pt;}
.ya2{bottom:283.866667pt;}
.y2a{bottom:294.533333pt;}
.ya1{bottom:295.866667pt;}
.y69{bottom:303.866667pt;}
.y29{bottom:306.533333pt;}
.ya0{bottom:307.866667pt;}
.y68{bottom:315.866667pt;}
.y28{bottom:318.533333pt;}
.yc9{bottom:323.866667pt;}
.y67{bottom:327.866667pt;}
.y27{bottom:330.533333pt;}
.y9f{bottom:335.866667pt;}
.y66{bottom:339.866667pt;}
.y26{bottom:342.533333pt;}
.y9e{bottom:347.866667pt;}
.y65{bottom:351.866667pt;}
.y25{bottom:354.533333pt;}
.y9d{bottom:359.866667pt;}
.y64{bottom:363.866667pt;}
.y24{bottom:366.533333pt;}
.y9c{bottom:371.866667pt;}
.y63{bottom:375.866667pt;}
.y9b{bottom:383.866667pt;}
.y62{bottom:387.866667pt;}
.yc8{bottom:391.866667pt;}
.y23{bottom:394.533333pt;}
.y9a{bottom:395.866667pt;}
.y61{bottom:399.866667pt;}
.ybd{bottom:401.200000pt;}
.yc7{bottom:403.866667pt;}
.y99{bottom:407.866667pt;}
.y60{bottom:411.866667pt;}
.ybc{bottom:413.200000pt;}
.y98{bottom:419.866667pt;}
.y22{bottom:422.533333pt;}
.y5f{bottom:423.866667pt;}
.ybb{bottom:425.200000pt;}
.y97{bottom:431.866667pt;}
.y21{bottom:434.533333pt;}
.y5e{bottom:435.866667pt;}
.yba{bottom:437.200000pt;}
.y96{bottom:443.866667pt;}
.y20{bottom:446.533333pt;}
.y5d{bottom:447.866667pt;}
.y95{bottom:455.866667pt;}
.y5c{bottom:459.866667pt;}
.y94{bottom:467.866667pt;}
.y5b{bottom:471.866667pt;}
.y1f{bottom:474.533333pt;}
.y5a{bottom:483.866667pt;}
.y1e{bottom:486.533333pt;}
.yb9{bottom:491.600000pt;}
.y59{bottom:495.866667pt;}
.y1d{bottom:498.533333pt;}
.yc6{bottom:499.866667pt;}
.y58{bottom:507.866667pt;}
.y1c{bottom:510.533333pt;}
.y57{bottom:519.866667pt;}
.y93{bottom:523.866667pt;}
.yc5{bottom:527.866667pt;}
.y56{bottom:531.866667pt;}
.y92{bottom:535.866667pt;}
.y1b{bottom:538.533333pt;}
.y55{bottom:543.866667pt;}
.y91{bottom:547.866667pt;}
.y1a{bottom:550.533333pt;}
.y54{bottom:555.866667pt;}
.y19{bottom:562.533333pt;}
.y53{bottom:567.866667pt;}
.y18{bottom:574.533333pt;}
.y90{bottom:575.866667pt;}
.yae{bottom:583.866667pt;}
.y17{bottom:586.533333pt;}
.y8f{bottom:587.866667pt;}
.y52{bottom:595.866667pt;}
.y16{bottom:598.533333pt;}
.y8e{bottom:599.866667pt;}
.y51{bottom:607.866667pt;}
.y15{bottom:610.533333pt;}
.y8d{bottom:611.866667pt;}
.y50{bottom:619.866667pt;}
.y14{bottom:622.533333pt;}
.y8c{bottom:623.866667pt;}
.y4f{bottom:631.866667pt;}
.y13{bottom:634.533333pt;}
.y8b{bottom:635.866667pt;}
.yc4{bottom:639.866667pt;}
.y4e{bottom:643.866667pt;}
.y12{bottom:646.533333pt;}
.y8a{bottom:647.866667pt;}
.y4d{bottom:655.866667pt;}
.y11{bottom:658.533333pt;}
.y89{bottom:659.866667pt;}
.y4c{bottom:667.866667pt;}
.y88{bottom:671.866667pt;}
.y4b{bottom:679.866667pt;}
.y10{bottom:686.533333pt;}
.yc3{bottom:695.866667pt;}
.y87{bottom:699.866667pt;}
.y4a{bottom:707.866667pt;}
.y86{bottom:711.866667pt;}
.yf{bottom:714.533333pt;}
.y85{bottom:723.866667pt;}
.y49{bottom:735.866667pt;}
.ye{bottom:742.533333pt;}
.y48{bottom:747.866667pt;}
.y47{bottom:759.866667pt;}
.yd{bottom:770.533333pt;}
.y46{bottom:771.866667pt;}
.y45{bottom:783.866667pt;}
.y84{bottom:787.866667pt;}
.yb8{bottom:791.866667pt;}
.y44{bottom:795.866667pt;}
.yc{bottom:798.533333pt;}
.y83{bottom:799.866667pt;}
.yb7{bottom:803.866667pt;}
.y43{bottom:807.866667pt;}
.y82{bottom:811.866667pt;}
.yb6{bottom:815.866667pt;}
.y81{bottom:823.866667pt;}
.yb{bottom:826.533333pt;}
.yb5{bottom:827.866667pt;}
.y42{bottom:835.866667pt;}
.yb4{bottom:839.866667pt;}
.y80{bottom:847.866667pt;}
.yb3{bottom:851.866667pt;}
.y7f{bottom:859.866667pt;}
.y41{bottom:863.866667pt;}
.ya{bottom:865.333333pt;}
.yc2{bottom:871.866667pt;}
.y40{bottom:875.866667pt;}
.y3f{bottom:887.866667pt;}
.y3e{bottom:899.866667pt;}
.y3d{bottom:911.866667pt;}
.y7e{bottom:915.866667pt;}
.y9{bottom:916.533333pt;}
.y3c{bottom:923.866667pt;}
.y7d{bottom:927.866667pt;}
.y8{bottom:932.000000pt;}
.y3b{bottom:935.866667pt;}
.y7c{bottom:939.866667pt;}
.y3a{bottom:947.866667pt;}
.y7b{bottom:951.866667pt;}
.y39{bottom:959.866667pt;}
.y7a{bottom:963.866667pt;}
.y7{bottom:964.533333pt;}
.yad{bottom:971.866667pt;}
.y79{bottom:975.866667pt;}
.y6{bottom:979.200000pt;}
.y38{bottom:987.866667pt;}
.y5{bottom:994.666667pt;}
.y37{bottom:999.866667pt;}
.y4{bottom:1045.733333pt;}
.y3{bottom:1056.400000pt;}
.y2{bottom:1067.066667pt;}
.h8{height:34.062500pt;}
.h7{height:41.120000pt;}
.h2{height:44.500000pt;}
.h6{height:50.062500pt;}
.h4{height:61.187500pt;}
.h3{height:77.875000pt;}
.h5{height:100.125000pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:68.266667pt;}
.x3{left:191.733333pt;}
.x1{left:248.400000pt;}
.x2{left:257.600000pt;}
.x5{left:346.533333pt;}
}




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