
    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_b02e270e8cdefb780c347e8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_d5c231a659390eb4c4a3a135.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_af9d93aa4009c53a4d5caac5.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_34dd8dfcc47ebc0cb8f0dcdd.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_637485c9cfd3d185b410afdf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4448c778dd2e62db51f62092.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.042505px;}
.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;}
}
.ws1{word-spacing:-17.999993px;}
.ws2{word-spacing:-14.219994px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-5.028953px;}
._d{margin-left:-3.623387px;}
._b{margin-left:-2.458888px;}
._2{margin-left:-1.254086px;}
._0{width:1.066329px;}
._c{width:2.937143px;}
._1{width:4.017829px;}
._3{width:5.252100px;}
._6{width:7.173654px;}
._7{width:8.270759px;}
._18{width:9.540277px;}
._f{width:10.541858px;}
._5{width:11.579735px;}
._4{width:12.949959px;}
._14{width:14.838374px;}
._15{width:16.520283px;}
._13{width:20.242037px;}
._12{width:21.457869px;}
._8{width:22.649737px;}
._9{width:23.656996px;}
._16{width:25.172360px;}
._17{width:26.884643px;}
._10{width:28.079949px;}
._11{width:29.150380px;}
._1a{width:33.622545px;}
._1b{width:39.481378px;}
._a{width:40.913083px;}
._19{width:447.974372px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239981px;}
.fs3{font-size:56.879977px;}
.fs2{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs0{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y2a{bottom:116.759953px;}
.y29{bottom:140.699944px;}
.y28{bottom:164.459934px;}
.y27{bottom:188.219925px;}
.y26{bottom:211.979915px;}
.y25{bottom:235.919906px;}
.y24{bottom:259.679896px;}
.y23{bottom:283.439887px;}
.y22{bottom:307.199877px;}
.y21{bottom:330.959868px;}
.y20{bottom:354.899858px;}
.y1f{bottom:378.659849px;}
.y1e{bottom:402.419839px;}
.y35{bottom:407.819837px;}
.y1d{bottom:426.179830px;}
.y57{bottom:426.719829px;}
.y34{bottom:446.879821px;}
.y1c{bottom:450.119820px;}
.y56{bottom:465.599814px;}
.y33{bottom:470.819812px;}
.y1b{bottom:473.879810px;}
.y1a{bottom:497.639801px;}
.y55{bottom:501.239800px;}
.y32{bottom:506.459797px;}
.y19{bottom:521.399791px;}
.y54{bottom:522.119791px;}
.y53{bottom:542.819783px;}
.y18{bottom:545.339782px;}
.y52{bottom:563.519775px;}
.y17{bottom:569.099772px;}
.y51{bottom:584.219766px;}
.y16{bottom:592.859763px;}
.y50{bottom:604.919758px;}
.y15{bottom:616.619753px;}
.y4f{bottom:625.619750px;}
.y14{bottom:640.559744px;}
.y4e{bottom:646.319741px;}
.y13{bottom:664.319734px;}
.y4c{bottom:667.019733px;}
.y4d{bottom:673.859730px;}
.y4b{bottom:687.719725px;}
.y12{bottom:688.079725px;}
.y4a{bottom:708.419717px;}
.y11{bottom:711.839715px;}
.y49{bottom:729.119708px;}
.y10{bottom:735.779706px;}
.y48{bottom:749.819700px;}
.yf{bottom:759.539696px;}
.y47{bottom:770.519692px;}
.ye{bottom:783.299687px;}
.y46{bottom:791.219684px;}
.yd{bottom:807.059677px;}
.y45{bottom:811.919675px;}
.yc{bottom:830.819668px;}
.y44{bottom:832.619667px;}
.y43{bottom:853.319659px;}
.yb{bottom:854.759658px;}
.y42{bottom:874.019650px;}
.ya{bottom:878.519649px;}
.y41{bottom:894.719642px;}
.y9{bottom:902.279639px;}
.y37{bottom:911.099636px;}
.y40{bottom:915.419634px;}
.y8{bottom:926.039630px;}
.y3f{bottom:936.119626px;}
.y7{bottom:949.979620px;}
.y3e{bottom:956.819617px;}
.y6{bottom:973.739611px;}
.y3d{bottom:977.519609px;}
.y5{bottom:997.139601px;}
.y31{bottom:997.499601px;}
.y3c{bottom:998.219601px;}
.y3b{bottom:1018.919592px;}
.y30{bottom:1021.259591px;}
.y4{bottom:1024.679590px;}
.y3a{bottom:1039.619584px;}
.y2f{bottom:1045.199582px;}
.y3{bottom:1060.319576px;}
.y2e{bottom:1068.959572px;}
.y39{bottom:1081.019568px;}
.y2d{bottom:1092.719563px;}
.y2{bottom:1095.959562px;}
.y38{bottom:1101.719559px;}
.y2c{bottom:1116.479553px;}
.y1{bottom:1131.779547px;}
.y36{bottom:1140.059544px;}
.y2b{bottom:1140.419544px;}
.h4{height:44.149201px;}
.h7{height:47.344903px;}
.h5{height:55.824587px;}
.h6{height:70.628878px;}
.h3{height:70.664034px;}
.h2{height:72.562471px;}
.h1{height:108.843706px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xd{left:138.599945px;}
.x28{left:139.679944px;}
.x4{left:140.759944px;}
.x1e{left:143.639943px;}
.x2{left:148.860001px;}
.x30{left:164.879934px;}
.x29{left:168.659933px;}
.x2a{left:173.159931px;}
.x2b{left:178.919928px;}
.x20{left:193.319923px;}
.x21{left:203.579919px;}
.xc{left:209.339916px;}
.x13{left:218.519913px;}
.xe{left:219.599912px;}
.x5{left:220.679912px;}
.x14{left:231.479907px;}
.xf{left:232.559907px;}
.x6{left:233.639907px;}
.x31{left:241.199904px;}
.x22{left:247.679901px;}
.x1f{left:256.319897px;}
.x7{left:271.619891px;}
.x27{left:277.019889px;}
.x32{left:322.379871px;}
.x15{left:333.539867px;}
.x10{left:335.159866px;}
.x16{left:339.119864px;}
.x11{left:340.739864px;}
.x3{left:343.619863px;}
.x2c{left:373.499851px;}
.x2d{left:379.259848px;}
.x2e{left:391.319843px;}
.x33{left:404.459838px;}
.x17{left:419.939832px;}
.x12{left:421.559831px;}
.x23{left:423.359831px;}
.x2f{left:441.359823px;}
.x18{left:445.859822px;}
.x24{left:478.439809px;}
.x25{left:488.519805px;}
.x8{left:504.359798px;}
.x26{left:527.939789px;}
.x19{left:550.619780px;}
.x1a{left:561.599775px;}
.x9{left:563.759774px;}
.xa{left:573.839770px;}
.xb{left:617.939753px;}
.x1b{left:633.599747px;}
.x1c{left:644.579742px;}
.x1d{left:699.839720px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.037782pt;}
.ws1{word-spacing:-15.999994pt;}
.ws2{word-spacing:-12.639995pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-4.470181pt;}
._d{margin-left:-3.220788pt;}
._b{margin-left:-2.185678pt;}
._2{margin-left:-1.114743pt;}
._0{width:0.947848pt;}
._c{width:2.610794pt;}
._1{width:3.571403pt;}
._3{width:4.668533pt;}
._6{width:6.376582pt;}
._7{width:7.351786pt;}
._18{width:8.480246pt;}
._f{width:9.370541pt;}
._5{width:10.293098pt;}
._4{width:11.511075pt;}
._14{width:13.189666pt;}
._15{width:14.684696pt;}
._13{width:17.992922pt;}
._12{width:19.073661pt;}
._8{width:20.133099pt;}
._9{width:21.028441pt;}
._16{width:22.375431pt;}
._17{width:23.897461pt;}
._10{width:24.959955pt;}
._11{width:25.911449pt;}
._1a{width:29.886706pt;}
._1b{width:35.094558pt;}
._a{width:36.367185pt;}
._19{width:398.199442pt;}
.fs4{font-size:42.879983pt;}
.fs3{font-size:50.559980pt;}
.fs2{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs0{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:103.786625pt;}
.y29{bottom:125.066617pt;}
.y28{bottom:146.186608pt;}
.y27{bottom:167.306600pt;}
.y26{bottom:188.426591pt;}
.y25{bottom:209.706583pt;}
.y24{bottom:230.826574pt;}
.y23{bottom:251.946566pt;}
.y22{bottom:273.066557pt;}
.y21{bottom:294.186549pt;}
.y20{bottom:315.466540pt;}
.y1f{bottom:336.586532pt;}
.y1e{bottom:357.706524pt;}
.y35{bottom:362.506522pt;}
.y1d{bottom:378.826515pt;}
.y57{bottom:379.306515pt;}
.y34{bottom:397.226508pt;}
.y1c{bottom:400.106507pt;}
.y56{bottom:413.866501pt;}
.y33{bottom:418.506499pt;}
.y1b{bottom:421.226498pt;}
.y1a{bottom:442.346490pt;}
.y55{bottom:445.546488pt;}
.y32{bottom:450.186487pt;}
.y19{bottom:463.466481pt;}
.y54{bottom:464.106481pt;}
.y53{bottom:482.506474pt;}
.y18{bottom:484.746473pt;}
.y52{bottom:500.906466pt;}
.y17{bottom:505.866464pt;}
.y51{bottom:519.306459pt;}
.y16{bottom:526.986456pt;}
.y50{bottom:537.706452pt;}
.y15{bottom:548.106447pt;}
.y4f{bottom:556.106444pt;}
.y14{bottom:569.386439pt;}
.y4e{bottom:574.506437pt;}
.y13{bottom:590.506430pt;}
.y4c{bottom:592.906430pt;}
.y4d{bottom:598.986427pt;}
.y4b{bottom:611.306422pt;}
.y12{bottom:611.626422pt;}
.y4a{bottom:629.706415pt;}
.y11{bottom:632.746414pt;}
.y49{bottom:648.106407pt;}
.y10{bottom:654.026405pt;}
.y48{bottom:666.506400pt;}
.yf{bottom:675.146397pt;}
.y47{bottom:684.906393pt;}
.ye{bottom:696.266388pt;}
.y46{bottom:703.306385pt;}
.yd{bottom:717.386380pt;}
.y45{bottom:721.706378pt;}
.yc{bottom:738.506371pt;}
.y44{bottom:740.106371pt;}
.y43{bottom:758.506363pt;}
.yb{bottom:759.786363pt;}
.y42{bottom:776.906356pt;}
.ya{bottom:780.906354pt;}
.y41{bottom:795.306349pt;}
.y9{bottom:802.026346pt;}
.y37{bottom:809.866343pt;}
.y40{bottom:813.706341pt;}
.y8{bottom:823.146337pt;}
.y3f{bottom:832.106334pt;}
.y7{bottom:844.426329pt;}
.y3e{bottom:850.506326pt;}
.y6{bottom:865.546320pt;}
.y3d{bottom:868.906319pt;}
.y5{bottom:886.346312pt;}
.y31{bottom:886.666312pt;}
.y3c{bottom:887.306312pt;}
.y3b{bottom:905.706304pt;}
.y30{bottom:907.786304pt;}
.y4{bottom:910.826302pt;}
.y3a{bottom:924.106297pt;}
.y2f{bottom:929.066295pt;}
.y3{bottom:942.506290pt;}
.y2e{bottom:950.186287pt;}
.y39{bottom:960.906282pt;}
.y2d{bottom:971.306278pt;}
.y2{bottom:974.186277pt;}
.y38{bottom:979.306275pt;}
.y2c{bottom:992.426270pt;}
.y1{bottom:1006.026264pt;}
.y36{bottom:1013.386261pt;}
.y2b{bottom:1013.706261pt;}
.h4{height:39.243734pt;}
.h7{height:42.084358pt;}
.h5{height:49.621855pt;}
.h6{height:62.781225pt;}
.h3{height:62.812475pt;}
.h2{height:64.499974pt;}
.h1{height:96.749961pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xd{left:123.199951pt;}
.x28{left:124.159950pt;}
.x4{left:125.119950pt;}
.x1e{left:127.679949pt;}
.x2{left:132.320001pt;}
.x30{left:146.559941pt;}
.x29{left:149.919940pt;}
.x2a{left:153.919938pt;}
.x2b{left:159.039936pt;}
.x20{left:171.839931pt;}
.x21{left:180.959928pt;}
.xc{left:186.079926pt;}
.x13{left:194.239922pt;}
.xe{left:195.199922pt;}
.x5{left:196.159922pt;}
.x14{left:205.759918pt;}
.xf{left:206.719917pt;}
.x6{left:207.679917pt;}
.x31{left:214.399914pt;}
.x22{left:220.159912pt;}
.x1f{left:227.839909pt;}
.x7{left:241.439903pt;}
.x27{left:246.239902pt;}
.x32{left:286.559885pt;}
.x15{left:296.479881pt;}
.x10{left:297.919881pt;}
.x16{left:301.439879pt;}
.x11{left:302.879879pt;}
.x3{left:305.439878pt;}
.x2c{left:331.999867pt;}
.x2d{left:337.119865pt;}
.x2e{left:347.839861pt;}
.x33{left:359.519856pt;}
.x17{left:373.279851pt;}
.x12{left:374.719850pt;}
.x23{left:376.319849pt;}
.x2f{left:392.319843pt;}
.x18{left:396.319841pt;}
.x24{left:425.279830pt;}
.x25{left:434.239826pt;}
.x8{left:448.319821pt;}
.x26{left:469.279812pt;}
.x19{left:489.439804pt;}
.x1a{left:499.199800pt;}
.x9{left:501.119800pt;}
.xa{left:510.079796pt;}
.xb{left:549.279780pt;}
.x1b{left:563.199775pt;}
.x1c{left:572.959771pt;}
.x1d{left:622.079751pt;}
}




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