
    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_8835ae1cefbabe1ce6b8ac7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_d87657821289d0f5a8674c25.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_eb469ad86ff1b2816aa1f63d.woff2')format("woff");}.ff3{font-family:ff3;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);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-8.068032px;}
.ls18{letter-spacing:-6.985440px;}
.ls1a{letter-spacing:-6.344352px;}
.ls1d{letter-spacing:-5.969376px;}
.lsb{letter-spacing:-5.267808px;}
.ls11{letter-spacing:-5.062176px;}
.ls7{letter-spacing:-4.493664px;}
.ls19{letter-spacing:-4.136832px;}
.ls3{letter-spacing:-3.792096px;}
.ls16{letter-spacing:-2.866752px;}
.ls1c{letter-spacing:-2.721600px;}
.ls15{letter-spacing:-2.467584px;}
.ls1e{letter-spacing:-2.413152px;}
.ls5{letter-spacing:-1.306368px;}
.ls20{letter-spacing:-1.245888px;}
.ls12{letter-spacing:-0.417312px;}
.lse{letter-spacing:-0.381024px;}
.ls4{letter-spacing:-0.338688px;}
.lsf{letter-spacing:-0.320544px;}
.lsa{letter-spacing:-0.302400px;}
.ls9{letter-spacing:-0.260064px;}
.ls6{letter-spacing:-0.241920px;}
.ls13{letter-spacing:-0.223776px;}
.ls1f{letter-spacing:-0.211680px;}
.lsc{letter-spacing:-0.175392px;}
.ls8{letter-spacing:-0.157248px;}
.ls14{letter-spacing:-0.145152px;}
.lsd{letter-spacing:-0.120960px;}
.ls17{letter-spacing:-0.084672px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:48.287088px;}
.ls1{letter-spacing:78.287040px;}
.ls0{letter-spacing:108.287136px;}
.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;}
}
.ws3{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.974848px;}
.wsa{word-spacing:-14.962752px;}
.wsc{word-spacing:-14.908320px;}
.ws9{word-spacing:-14.896224px;}
.ws1{word-spacing:-14.878080px;}
.ws8{word-spacing:-14.859936px;}
.ws6{word-spacing:-14.799456px;}
.wsb{word-spacing:-14.781312px;}
.ws0{word-spacing:-13.813632px;}
.ws5{word-spacing:-12.652416px;}
.ws2{word-spacing:-10.626336px;}
.ws4{word-spacing:0.000000px;}
._3{margin-left:-8.346240px;}
._7{margin-left:-6.778080px;}
._8{margin-left:-5.367456px;}
._4{margin-left:-4.208832px;}
._2{margin-left:-2.766816px;}
._6{margin-left:-1.329840px;}
._1{width:1.499616px;}
._a{width:2.540160px;}
._0{width:3.568320px;}
._5{width:4.898880px;}
._9{width:5.927040px;}
._c{width:6.955200px;}
._b{width:8.672832px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.480000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:115.200000px;}
.y37{bottom:119.880000px;}
.y6d{bottom:135.360000px;}
.y36{bottom:139.680000px;}
.y6c{bottom:155.160000px;}
.y35{bottom:159.480000px;}
.y6b{bottom:174.960000px;}
.y34{bottom:179.280000px;}
.y6a{bottom:194.760000px;}
.y33{bottom:199.080000px;}
.y69{bottom:214.560000px;}
.y32{bottom:218.880000px;}
.y68{bottom:234.360000px;}
.y31{bottom:238.680000px;}
.y67{bottom:254.160000px;}
.y30{bottom:258.480000px;}
.y66{bottom:273.960000px;}
.y2f{bottom:278.280000px;}
.y65{bottom:293.760000px;}
.y2e{bottom:298.440000px;}
.y64{bottom:313.560000px;}
.y2d{bottom:318.240000px;}
.y63{bottom:333.360000px;}
.y2c{bottom:338.040000px;}
.y62{bottom:353.520000px;}
.y2b{bottom:357.840000px;}
.y61{bottom:373.320000px;}
.y2a{bottom:377.640000px;}
.y60{bottom:393.120000px;}
.y29{bottom:397.440000px;}
.y5f{bottom:412.920000px;}
.y28{bottom:417.240000px;}
.y5e{bottom:432.720000px;}
.y27{bottom:437.040000px;}
.y5d{bottom:452.520000px;}
.y26{bottom:456.840000px;}
.y5c{bottom:472.320000px;}
.y25{bottom:476.640000px;}
.y5b{bottom:492.120000px;}
.y24{bottom:496.800000px;}
.y5a{bottom:511.920000px;}
.y23{bottom:516.600000px;}
.y59{bottom:531.720000px;}
.y22{bottom:536.400000px;}
.y58{bottom:551.880000px;}
.y21{bottom:556.200000px;}
.y57{bottom:571.680000px;}
.y20{bottom:576.000000px;}
.y56{bottom:591.480000px;}
.y1f{bottom:595.800000px;}
.y55{bottom:611.280000px;}
.y1e{bottom:615.600000px;}
.y54{bottom:631.080000px;}
.y1d{bottom:635.400000px;}
.y53{bottom:650.880000px;}
.y1c{bottom:655.200000px;}
.y52{bottom:670.680000px;}
.y1b{bottom:675.000000px;}
.y51{bottom:690.480000px;}
.y1a{bottom:695.160000px;}
.y50{bottom:710.280000px;}
.y19{bottom:714.960000px;}
.y4f{bottom:730.080000px;}
.y18{bottom:734.760000px;}
.y4e{bottom:750.240000px;}
.y17{bottom:754.560000px;}
.y4d{bottom:770.040000px;}
.y16{bottom:774.360000px;}
.y4c{bottom:789.840000px;}
.y15{bottom:794.160000px;}
.y4b{bottom:809.640000px;}
.y14{bottom:813.960000px;}
.y4a{bottom:829.440000px;}
.y13{bottom:833.760000px;}
.y49{bottom:849.240000px;}
.y12{bottom:853.560000px;}
.y48{bottom:869.040000px;}
.y11{bottom:873.360000px;}
.y47{bottom:888.840000px;}
.y10{bottom:893.520000px;}
.y46{bottom:908.640000px;}
.yf{bottom:913.320000px;}
.y45{bottom:928.440000px;}
.ye{bottom:933.120000px;}
.y44{bottom:948.600000px;}
.yd{bottom:952.920000px;}
.y43{bottom:968.400000px;}
.yc{bottom:972.720000px;}
.y42{bottom:988.200000px;}
.yb{bottom:992.520000px;}
.y41{bottom:1008.000000px;}
.ya{bottom:1012.320000px;}
.y40{bottom:1027.800000px;}
.y9{bottom:1032.120000px;}
.y3f{bottom:1047.600000px;}
.y8{bottom:1051.920000px;}
.y3e{bottom:1067.400000px;}
.y7{bottom:1071.720000px;}
.y3d{bottom:1087.200000px;}
.y6{bottom:1091.880000px;}
.y3c{bottom:1107.000000px;}
.y5{bottom:1111.680000px;}
.y3b{bottom:1126.800000px;}
.y4{bottom:1131.480000px;}
.y3a{bottom:1146.960000px;}
.y3{bottom:1151.280000px;}
.y39{bottom:1166.760000px;}
.y38{bottom:1186.560000px;}
.y2{bottom:1189.080000px;}
.y1{bottom:1206.360000px;}
.h3{height:40.989375px;}
.h2{height:53.067656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:70.200072px;}
.x2{left:112.725216px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-7.171584pt;}
.ls18{letter-spacing:-6.209280pt;}
.ls1a{letter-spacing:-5.639424pt;}
.ls1d{letter-spacing:-5.306112pt;}
.lsb{letter-spacing:-4.682496pt;}
.ls11{letter-spacing:-4.499712pt;}
.ls7{letter-spacing:-3.994368pt;}
.ls19{letter-spacing:-3.677184pt;}
.ls3{letter-spacing:-3.370752pt;}
.ls16{letter-spacing:-2.548224pt;}
.ls1c{letter-spacing:-2.419200pt;}
.ls15{letter-spacing:-2.193408pt;}
.ls1e{letter-spacing:-2.145024pt;}
.ls5{letter-spacing:-1.161216pt;}
.ls20{letter-spacing:-1.107456pt;}
.ls12{letter-spacing:-0.370944pt;}
.lse{letter-spacing:-0.338688pt;}
.ls4{letter-spacing:-0.301056pt;}
.lsf{letter-spacing:-0.284928pt;}
.lsa{letter-spacing:-0.268800pt;}
.ls9{letter-spacing:-0.231168pt;}
.ls6{letter-spacing:-0.215040pt;}
.ls13{letter-spacing:-0.198912pt;}
.ls1f{letter-spacing:-0.188160pt;}
.lsc{letter-spacing:-0.155904pt;}
.ls8{letter-spacing:-0.139776pt;}
.ls14{letter-spacing:-0.129024pt;}
.lsd{letter-spacing:-0.107520pt;}
.ls17{letter-spacing:-0.075264pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:42.921856pt;}
.ls1{letter-spacing:69.588480pt;}
.ls0{letter-spacing:96.255232pt;}
.ws3{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.310976pt;}
.wsa{word-spacing:-13.300224pt;}
.wsc{word-spacing:-13.251840pt;}
.ws9{word-spacing:-13.241088pt;}
.ws1{word-spacing:-13.224960pt;}
.ws8{word-spacing:-13.208832pt;}
.ws6{word-spacing:-13.155072pt;}
.wsb{word-spacing:-13.138944pt;}
.ws0{word-spacing:-12.278784pt;}
.ws5{word-spacing:-11.246592pt;}
.ws2{word-spacing:-9.445632pt;}
.ws4{word-spacing:0.000000pt;}
._3{margin-left:-7.418880pt;}
._7{margin-left:-6.024960pt;}
._8{margin-left:-4.771072pt;}
._4{margin-left:-3.741184pt;}
._2{margin-left:-2.459392pt;}
._6{margin-left:-1.182080pt;}
._1{width:1.332992pt;}
._a{width:2.257920pt;}
._0{width:3.171840pt;}
._5{width:4.354560pt;}
._9{width:5.268480pt;}
._c{width:6.182400pt;}
._b{width:7.709184pt;}
.fs0{font-size:53.760000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:102.400000pt;}
.y37{bottom:106.560000pt;}
.y6d{bottom:120.320000pt;}
.y36{bottom:124.160000pt;}
.y6c{bottom:137.920000pt;}
.y35{bottom:141.760000pt;}
.y6b{bottom:155.520000pt;}
.y34{bottom:159.360000pt;}
.y6a{bottom:173.120000pt;}
.y33{bottom:176.960000pt;}
.y69{bottom:190.720000pt;}
.y32{bottom:194.560000pt;}
.y68{bottom:208.320000pt;}
.y31{bottom:212.160000pt;}
.y67{bottom:225.920000pt;}
.y30{bottom:229.760000pt;}
.y66{bottom:243.520000pt;}
.y2f{bottom:247.360000pt;}
.y65{bottom:261.120000pt;}
.y2e{bottom:265.280000pt;}
.y64{bottom:278.720000pt;}
.y2d{bottom:282.880000pt;}
.y63{bottom:296.320000pt;}
.y2c{bottom:300.480000pt;}
.y62{bottom:314.240000pt;}
.y2b{bottom:318.080000pt;}
.y61{bottom:331.840000pt;}
.y2a{bottom:335.680000pt;}
.y60{bottom:349.440000pt;}
.y29{bottom:353.280000pt;}
.y5f{bottom:367.040000pt;}
.y28{bottom:370.880000pt;}
.y5e{bottom:384.640000pt;}
.y27{bottom:388.480000pt;}
.y5d{bottom:402.240000pt;}
.y26{bottom:406.080000pt;}
.y5c{bottom:419.840000pt;}
.y25{bottom:423.680000pt;}
.y5b{bottom:437.440000pt;}
.y24{bottom:441.600000pt;}
.y5a{bottom:455.040000pt;}
.y23{bottom:459.200000pt;}
.y59{bottom:472.640000pt;}
.y22{bottom:476.800000pt;}
.y58{bottom:490.560000pt;}
.y21{bottom:494.400000pt;}
.y57{bottom:508.160000pt;}
.y20{bottom:512.000000pt;}
.y56{bottom:525.760000pt;}
.y1f{bottom:529.600000pt;}
.y55{bottom:543.360000pt;}
.y1e{bottom:547.200000pt;}
.y54{bottom:560.960000pt;}
.y1d{bottom:564.800000pt;}
.y53{bottom:578.560000pt;}
.y1c{bottom:582.400000pt;}
.y52{bottom:596.160000pt;}
.y1b{bottom:600.000000pt;}
.y51{bottom:613.760000pt;}
.y1a{bottom:617.920000pt;}
.y50{bottom:631.360000pt;}
.y19{bottom:635.520000pt;}
.y4f{bottom:648.960000pt;}
.y18{bottom:653.120000pt;}
.y4e{bottom:666.880000pt;}
.y17{bottom:670.720000pt;}
.y4d{bottom:684.480000pt;}
.y16{bottom:688.320000pt;}
.y4c{bottom:702.080000pt;}
.y15{bottom:705.920000pt;}
.y4b{bottom:719.680000pt;}
.y14{bottom:723.520000pt;}
.y4a{bottom:737.280000pt;}
.y13{bottom:741.120000pt;}
.y49{bottom:754.880000pt;}
.y12{bottom:758.720000pt;}
.y48{bottom:772.480000pt;}
.y11{bottom:776.320000pt;}
.y47{bottom:790.080000pt;}
.y10{bottom:794.240000pt;}
.y46{bottom:807.680000pt;}
.yf{bottom:811.840000pt;}
.y45{bottom:825.280000pt;}
.ye{bottom:829.440000pt;}
.y44{bottom:843.200000pt;}
.yd{bottom:847.040000pt;}
.y43{bottom:860.800000pt;}
.yc{bottom:864.640000pt;}
.y42{bottom:878.400000pt;}
.yb{bottom:882.240000pt;}
.y41{bottom:896.000000pt;}
.ya{bottom:899.840000pt;}
.y40{bottom:913.600000pt;}
.y9{bottom:917.440000pt;}
.y3f{bottom:931.200000pt;}
.y8{bottom:935.040000pt;}
.y3e{bottom:948.800000pt;}
.y7{bottom:952.640000pt;}
.y3d{bottom:966.400000pt;}
.y6{bottom:970.560000pt;}
.y3c{bottom:984.000000pt;}
.y5{bottom:988.160000pt;}
.y3b{bottom:1001.600000pt;}
.y4{bottom:1005.760000pt;}
.y3a{bottom:1019.520000pt;}
.y3{bottom:1023.360000pt;}
.y39{bottom:1037.120000pt;}
.y38{bottom:1054.720000pt;}
.y2{bottom:1056.960000pt;}
.y1{bottom:1072.320000pt;}
.h3{height:36.435000pt;}
.h2{height:47.171250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:62.400064pt;}
.x2{left:100.200192pt;}
}




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