
    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_1897a691f2e3f65a325e7cc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_c8cd948f5226f137973287bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_a4e2bb71064da261c66c8a93.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_b439259bdc39ad3528a247d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_39d566846fe700cb93c9f566.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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;}
.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;}
}
.ws21{word-spacing:-18.183288px;}
.ws31{word-spacing:-16.730196px;}
.ws1a{word-spacing:-3.652367px;}
.ws27{word-spacing:-1.754183px;}
.ws29{word-spacing:-1.688729px;}
.ws19{word-spacing:-1.165092px;}
.ws4{word-spacing:-0.903273px;}
.ws2c{word-spacing:-0.641455px;}
.wsc{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.510546px;}
.ws2f{word-spacing:-0.248727px;}
.ws35{word-spacing:0.000000px;}
.wsf{word-spacing:0.013091px;}
.ws2a{word-spacing:0.078546px;}
.ws10{word-spacing:0.209455px;}
.ws12{word-spacing:0.340364px;}
.ws9{word-spacing:0.405819px;}
.ws28{word-spacing:1.793456px;}
.wsd{word-spacing:2.107638px;}
.ws1c{word-spacing:2.631275px;}
.ws2d{word-spacing:2.775275px;}
.ws11{word-spacing:3.089457px;}
.ws30{word-spacing:3.102548px;}
.ws2b{word-spacing:3.429821px;}
.ws5{word-spacing:3.613094px;}
.ws15{word-spacing:3.940367px;}
.ws18{word-spacing:4.071276px;}
.ws14{word-spacing:4.398549px;}
.wsa{word-spacing:4.725822px;}
.ws2{word-spacing:4.987641px;}
.ws16{word-spacing:5.053095px;}
.ws3{word-spacing:5.707641px;}
.ws1b{word-spacing:5.969460px;}
.wsb{word-spacing:6.165823px;}
.ws22{word-spacing:6.689460px;}
.ws1e{word-spacing:6.702551px;}
.ws20{word-spacing:6.885824px;}
.ws1f{word-spacing:7.016733px;}
.ws32{word-spacing:7.278552px;}
.ws26{word-spacing:8.011643px;}
.ws7{word-spacing:8.129461px;}
.ws17{word-spacing:8.456734px;}
.ws2e{word-spacing:8.862553px;}
.ws24{word-spacing:8.914917px;}
.ws23{word-spacing:9.517099px;}
.ws33{word-spacing:10.040736px;}
.ws13{word-spacing:10.944009px;}
.ws1d{word-spacing:11.402191px;}
.ws25{word-spacing:11.546191px;}
.ws34{word-spacing:13.104011px;}
.wse{word-spacing:13.300375px;}
.ws1{word-spacing:23.312640px;}
.ws0{word-spacing:31.091012px;}
.ws8{word-spacing:32.192873px;}
._9{margin-left:-31.743517px;}
._1{margin-left:-8.056807px;}
._13{margin-left:-5.958332px;}
._3{margin-left:-4.579858px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.440001px;}
._8{width:1.636365px;}
._2{width:2.685602px;}
._7{width:3.730912px;}
._a{width:5.105459px;}
._6{width:19.182125px;}
._c{width:22.321982px;}
._e{width:23.765911px;}
._5{width:25.332894px;}
._12{width:28.208969px;}
._d{width:30.960026px;}
._b{width:33.056537px;}
._f{width:34.103810px;}
._10{width:36.852904px;}
._14{width:47.978222px;}
._11{width:51.711098px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y25{bottom:149.719500px;}
.y24{bottom:170.043000px;}
.y23{bottom:190.368000px;}
.y22{bottom:210.691500px;}
.y21{bottom:231.015000px;}
.y20{bottom:251.338500px;}
.y1f{bottom:271.662000px;}
.y1e{bottom:291.987000px;}
.y1d{bottom:312.310500px;}
.y1c{bottom:332.634000px;}
.y1b{bottom:352.957500px;}
.y1a{bottom:373.281000px;}
.y19{bottom:393.606000px;}
.y18{bottom:430.134000px;}
.y17{bottom:481.692000px;}
.y16{bottom:502.015500px;}
.y15{bottom:522.339000px;}
.y14{bottom:542.662500px;}
.y13{bottom:562.987500px;}
.y3d{bottom:570.010500px;}
.y12{bottom:583.311000px;}
.y3c{bottom:590.334000px;}
.y11{bottom:603.634500px;}
.y3b{bottom:610.659000px;}
.y10{bottom:623.958000px;}
.yf{bottom:644.281500px;}
.y3a{bottom:644.431500px;}
.ye{bottom:664.606500px;}
.y39{bottom:664.755000px;}
.yd{bottom:684.930000px;}
.y38{bottom:698.529000px;}
.y37{bottom:718.852500px;}
.yc{bottom:721.458000px;}
.y36{bottom:752.626500px;}
.y35{bottom:772.950000px;}
.yb{bottom:773.016000px;}
.ya{bottom:793.339500px;}
.y34{bottom:806.724000px;}
.y9{bottom:813.664500px;}
.y33{bottom:827.047500px;}
.y8{bottom:833.988000px;}
.y7{bottom:854.311500px;}
.y32{bottom:860.820000px;}
.y6{bottom:874.635000px;}
.y31{bottom:881.143500px;}
.y5{bottom:894.958500px;}
.y30{bottom:914.917500px;}
.y2f{bottom:935.241000px;}
.y2e{bottom:955.564500px;}
.y4{bottom:957.760500px;}
.y2d{bottom:989.338500px;}
.y3{bottom:994.449000px;}
.y2c{bottom:1009.662000px;}
.y2{bottom:1039.915500px;}
.y2b{bottom:1046.190000px;}
.y1{bottom:1072.792500px;}
.y2a{bottom:1097.749500px;}
.y29{bottom:1118.073000px;}
.y28{bottom:1138.396500px;}
.y27{bottom:1178.440500px;}
.y26{bottom:1198.764000px;}
.h6{height:46.865494px;}
.h4{height:49.090950px;}
.h3{height:50.498765px;}
.h5{height:60.254040px;}
.h2{height:72.201388px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.x1{left:132.247500px;}
.x5{left:133.404000px;}
.x2{left:328.285500px;}
.x4{left:385.488000px;}
.x3{left:395.493000px;}
.x7{left:447.234000px;}
.x8{left:600.336000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws21{word-spacing:-16.162923pt;}
.ws31{word-spacing:-14.871285pt;}
.ws1a{word-spacing:-3.246548pt;}
.ws27{word-spacing:-1.559274pt;}
.ws29{word-spacing:-1.501092pt;}
.ws19{word-spacing:-1.035637pt;}
.ws4{word-spacing:-0.802910pt;}
.ws2c{word-spacing:-0.570182pt;}
.wsc{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.453819pt;}
.ws2f{word-spacing:-0.221091pt;}
.ws35{word-spacing:0.000000pt;}
.wsf{word-spacing:0.011636pt;}
.ws2a{word-spacing:0.069818pt;}
.ws10{word-spacing:0.186182pt;}
.ws12{word-spacing:0.302546pt;}
.ws9{word-spacing:0.360728pt;}
.ws28{word-spacing:1.594183pt;}
.wsd{word-spacing:1.873456pt;}
.ws1c{word-spacing:2.338911pt;}
.ws2d{word-spacing:2.466911pt;}
.ws11{word-spacing:2.746184pt;}
.ws30{word-spacing:2.757820pt;}
.ws2b{word-spacing:3.048730pt;}
.ws5{word-spacing:3.211639pt;}
.ws15{word-spacing:3.502548pt;}
.ws18{word-spacing:3.618912pt;}
.ws14{word-spacing:3.909821pt;}
.wsa{word-spacing:4.200731pt;}
.ws2{word-spacing:4.433458pt;}
.ws16{word-spacing:4.491640pt;}
.ws3{word-spacing:5.073459pt;}
.ws1b{word-spacing:5.306186pt;}
.wsb{word-spacing:5.480732pt;}
.ws22{word-spacing:5.946187pt;}
.ws1e{word-spacing:5.957823pt;}
.ws20{word-spacing:6.120732pt;}
.ws1f{word-spacing:6.237096pt;}
.ws32{word-spacing:6.469824pt;}
.ws26{word-spacing:7.121460pt;}
.ws7{word-spacing:7.226188pt;}
.ws17{word-spacing:7.517097pt;}
.ws2e{word-spacing:7.877825pt;}
.ws24{word-spacing:7.924370pt;}
.ws23{word-spacing:8.459643pt;}
.ws33{word-spacing:8.925098pt;}
.ws13{word-spacing:9.728008pt;}
.ws1d{word-spacing:10.135281pt;}
.ws25{word-spacing:10.263281pt;}
.ws34{word-spacing:11.648010pt;}
.wse{word-spacing:11.822555pt;}
.ws1{word-spacing:20.722347pt;}
.ws0{word-spacing:27.636455pt;}
.ws8{word-spacing:28.615887pt;}
._9{margin-left:-28.216460pt;}
._1{margin-left:-7.161606pt;}
._13{margin-left:-5.296295pt;}
._3{margin-left:-4.070985pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.280001pt;}
._8{width:1.454547pt;}
._2{width:2.387202pt;}
._7{width:3.316366pt;}
._a{width:4.538186pt;}
._6{width:17.050778pt;}
._c{width:19.841762pt;}
._e{width:21.125254pt;}
._5{width:22.518128pt;}
._12{width:25.074639pt;}
._d{width:27.520023pt;}
._b{width:29.383588pt;}
._f{width:30.314498pt;}
._10{width:32.758137pt;}
._14{width:42.647308pt;}
._11{width:45.965420pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:133.084000pt;}
.y24{bottom:151.149333pt;}
.y23{bottom:169.216000pt;}
.y22{bottom:187.281333pt;}
.y21{bottom:205.346667pt;}
.y20{bottom:223.412000pt;}
.y1f{bottom:241.477333pt;}
.y1e{bottom:259.544000pt;}
.y1d{bottom:277.609333pt;}
.y1c{bottom:295.674667pt;}
.y1b{bottom:313.740000pt;}
.y1a{bottom:331.805333pt;}
.y19{bottom:349.872000pt;}
.y18{bottom:382.341333pt;}
.y17{bottom:428.170667pt;}
.y16{bottom:446.236000pt;}
.y15{bottom:464.301333pt;}
.y14{bottom:482.366667pt;}
.y13{bottom:500.433333pt;}
.y3d{bottom:506.676000pt;}
.y12{bottom:518.498667pt;}
.y3c{bottom:524.741333pt;}
.y11{bottom:536.564000pt;}
.y3b{bottom:542.808000pt;}
.y10{bottom:554.629333pt;}
.yf{bottom:572.694667pt;}
.y3a{bottom:572.828000pt;}
.ye{bottom:590.761333pt;}
.y39{bottom:590.893333pt;}
.yd{bottom:608.826667pt;}
.y38{bottom:620.914667pt;}
.y37{bottom:638.980000pt;}
.yc{bottom:641.296000pt;}
.y36{bottom:669.001333pt;}
.y35{bottom:687.066667pt;}
.yb{bottom:687.125333pt;}
.ya{bottom:705.190667pt;}
.y34{bottom:717.088000pt;}
.y9{bottom:723.257333pt;}
.y33{bottom:735.153333pt;}
.y8{bottom:741.322667pt;}
.y7{bottom:759.388000pt;}
.y32{bottom:765.173333pt;}
.y6{bottom:777.453333pt;}
.y31{bottom:783.238667pt;}
.y5{bottom:795.518667pt;}
.y30{bottom:813.260000pt;}
.y2f{bottom:831.325333pt;}
.y2e{bottom:849.390667pt;}
.y4{bottom:851.342667pt;}
.y2d{bottom:879.412000pt;}
.y3{bottom:883.954667pt;}
.y2c{bottom:897.477333pt;}
.y2{bottom:924.369333pt;}
.y2b{bottom:929.946667pt;}
.y1{bottom:953.593333pt;}
.y2a{bottom:975.777333pt;}
.y29{bottom:993.842667pt;}
.y28{bottom:1011.908000pt;}
.y27{bottom:1047.502667pt;}
.y26{bottom:1065.568000pt;}
.h6{height:41.658217pt;}
.h4{height:43.636400pt;}
.h3{height:44.887791pt;}
.h5{height:53.559147pt;}
.h2{height:64.179011pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.x1{left:117.553333pt;}
.x5{left:118.581333pt;}
.x2{left:291.809333pt;}
.x4{left:342.656000pt;}
.x3{left:351.549333pt;}
.x7{left:397.541333pt;}
.x8{left:533.632000pt;}
}




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