
    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_de9efdee2a11b02dcfadd558.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0d6de3ee3523b6a832442fe9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b184c48260d78dd967cdc391.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.786621;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_f55862296854830bc756360e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.869141;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{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);}
.m3{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);}
.v1{vertical-align:-80.639968px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.003379px;}
.ls0{letter-spacing:0.019699px;}
.ls2{letter-spacing:0.019800px;}
.ls5{letter-spacing:0.019814px;}
.ls6{letter-spacing:0.187843px;}
.ls8{letter-spacing:0.235800px;}
.ls9{letter-spacing:0.277118px;}
.ls3{letter-spacing:0.740220px;}
.ls1{letter-spacing:1054.691578px;}
.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:-60.419496px;}
.ws2{word-spacing:-53.706219px;}
.ws5{word-spacing:-41.957983px;}
.ws4{word-spacing:-17.279993px;}
.ws6{word-spacing:-13.499995px;}
.ws0{word-spacing:-12.059995px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-2.763302px;}
._0{margin-left:-1.709061px;}
._1{width:1.163284px;}
._5{width:2.221731px;}
._4{width:3.398517px;}
._3{width:4.418155px;}
._2{width:5.577042px;}
._6{width:7.477715px;}
._d{width:8.696922px;}
._7{width:10.619904px;}
._a{width:12.226894px;}
._8{width:13.344967px;}
._9{width:15.146713px;}
._10{width:16.229264px;}
._13{width:18.507609px;}
._12{width:19.808881px;}
._11{width:25.748607px;}
._c{width:28.328002px;}
._b{width:29.675508px;}
._f{width:35.657528px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.239981px;}
.fs5{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs3{font-size:69.119972px;}
.fs2{font-size:71.999971px;}
.fs4{font-size:77.759969px;}
.y0{bottom:0.000000px;}
.y29{bottom:4.138922px;}
.y4{bottom:327.539869px;}
.y51{bottom:372.899851px;}
.y50{bottom:393.239843px;}
.y4f{bottom:413.399835px;}
.y26{bottom:424.559830px;}
.y4e{bottom:433.739827px;}
.y25{bottom:444.719822px;}
.y4d{bottom:453.899818px;}
.y24{bottom:465.059814px;}
.y4c{bottom:474.239810px;}
.y23{bottom:485.219806px;}
.y4b{bottom:494.399802px;}
.y22{bottom:505.559798px;}
.y4a{bottom:514.739794px;}
.y21{bottom:525.719790px;}
.y49{bottom:534.899786px;}
.y20{bottom:546.059782px;}
.y48{bottom:555.239778px;}
.y1f{bottom:566.219774px;}
.y47{bottom:575.399770px;}
.y1e{bottom:586.559765px;}
.y46{bottom:595.739762px;}
.y1d{bottom:606.719757px;}
.y45{bottom:615.899754px;}
.y1c{bottom:627.059749px;}
.y54{bottom:628.139749px;}
.y44{bottom:636.239746px;}
.y1b{bottom:647.219741px;}
.y53{bottom:647.939741px;}
.y43{bottom:656.399737px;}
.y1a{bottom:667.559733px;}
.y52{bottom:667.739733px;}
.y42{bottom:676.739729px;}
.y19{bottom:687.719725px;}
.y41{bottom:696.899721px;}
.y18{bottom:708.059717px;}
.y40{bottom:717.239713px;}
.y17{bottom:728.219709px;}
.y3f{bottom:737.399705px;}
.y16{bottom:748.559701px;}
.y3e{bottom:757.739697px;}
.y15{bottom:768.719693px;}
.y3d{bottom:777.899689px;}
.y14{bottom:789.059684px;}
.y3c{bottom:798.239681px;}
.y13{bottom:809.219676px;}
.y3b{bottom:818.399673px;}
.y12{bottom:829.559668px;}
.y3a{bottom:838.739665px;}
.y11{bottom:849.719660px;}
.y39{bottom:858.899656px;}
.y10{bottom:870.059652px;}
.y38{bottom:879.239648px;}
.yf{bottom:890.219644px;}
.y37{bottom:899.399640px;}
.ye{bottom:910.559636px;}
.y36{bottom:919.739632px;}
.yd{bottom:930.719628px;}
.y35{bottom:939.899624px;}
.yc{bottom:951.059620px;}
.y34{bottom:960.239616px;}
.yb{bottom:971.219612px;}
.y33{bottom:980.399608px;}
.y32{bottom:1000.739600px;}
.ya{bottom:1011.719595px;}
.y31{bottom:1020.899592px;}
.y9{bottom:1032.059587px;}
.y30{bottom:1041.239584px;}
.y8{bottom:1052.759579px;}
.y2f{bottom:1061.399575px;}
.y7{bottom:1075.259570px;}
.y2e{bottom:1081.739567px;}
.y6{bottom:1097.219561px;}
.y2d{bottom:1101.899559px;}
.y5{bottom:1117.559553px;}
.y2c{bottom:1122.239551px;}
.y3{bottom:1138.259545px;}
.y2b{bottom:1142.399543px;}
.y2a{bottom:1163.099535px;}
.y2{bottom:1165.439534px;}
.y1{bottom:1186.499525px;}
.y28{bottom:1190.100600px;}
.y27{bottom:1194.239522px;}
.h7{height:19.620000px;}
.h2{height:47.344903px;}
.h1{height:58.651148px;}
.h4{height:67.837473px;}
.h5{height:69.659972px;}
.h3{height:70.664034px;}
.h6{height:78.367469px;}
.h0{height:1263.000000px;}
.w1{width:1.080000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:267.839893px;}
.x24{left:272.159891px;}
.x1{left:276.479889px;}
.x6{left:284.939886px;}
.x2{left:287.279885px;}
.x21{left:289.080867px;}
.x1f{left:300.600258px;}
.x22{left:320.759872px;}
.x7{left:343.079863px;}
.x3{left:348.839860px;}
.x8{left:353.879858px;}
.x4{left:358.199857px;}
.x20{left:373.860226px;}
.x1b{left:376.919849px;}
.x5{left:408.059837px;}
.x1e{left:432.900253px;}
.x1c{left:438.299822px;}
.x9{left:462.959815px;}
.xa{left:472.319811px;}
.xb{left:519.479792px;}
.x1d{left:535.679786px;}
.x1a{left:546.300392px;}
.xc{left:574.739870px;}
.xd{left:583.019767px;}
.xe{left:614.519754px;}
.xf{left:625.319750px;}
.x25{left:671.578461px;}
.x10{left:673.019731px;}
.x11{left:683.819726px;}
.x13{left:697.499623px;}
.x14{left:708.299717px;}
.x15{left:763.199695px;}
.x16{left:766.799693px;}
.x17{left:769.859692px;}
.x19{left:777.599689px;}
.x12{left:780.839688px;}
.x23{left:802.080000px;}
@media print{
.v1{vertical-align:-71.679971pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.003004pt;}
.ls0{letter-spacing:0.017510pt;}
.ls2{letter-spacing:0.017600pt;}
.ls5{letter-spacing:0.017613pt;}
.ls6{letter-spacing:0.166972pt;}
.ls8{letter-spacing:0.209600pt;}
.ls9{letter-spacing:0.246327pt;}
.ls3{letter-spacing:0.657973pt;}
.ls1{letter-spacing:937.503625pt;}
.ws1{word-spacing:-53.706219pt;}
.ws2{word-spacing:-47.738861pt;}
.ws5{word-spacing:-37.295985pt;}
.ws4{word-spacing:-15.359994pt;}
.ws6{word-spacing:-11.999995pt;}
.ws0{word-spacing:-10.719996pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-2.456269pt;}
._0{margin-left:-1.519165pt;}
._1{width:1.034031pt;}
._5{width:1.974872pt;}
._4{width:3.020904pt;}
._3{width:3.927249pt;}
._2{width:4.957371pt;}
._6{width:6.646858pt;}
._d{width:7.730598pt;}
._7{width:9.439915pt;}
._a{width:10.868350pt;}
._8{width:11.862193pt;}
._9{width:13.463744pt;}
._10{width:14.426012pt;}
._13{width:16.451208pt;}
._12{width:17.607894pt;}
._11{width:22.887651pt;}
._c{width:25.180446pt;}
._b{width:26.378230pt;}
._f{width:31.695581pt;}
.fs1{font-size:42.879983pt;}
.fs5{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:61.439975pt;}
.fs2{font-size:63.999974pt;}
.fs4{font-size:69.119972pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:3.679042pt;}
.y4{bottom:291.146550pt;}
.y51{bottom:331.466534pt;}
.y50{bottom:349.546527pt;}
.y4f{bottom:367.466520pt;}
.y26{bottom:377.386516pt;}
.y4e{bottom:385.546512pt;}
.y25{bottom:395.306509pt;}
.y4d{bottom:403.466505pt;}
.y24{bottom:413.386501pt;}
.y4c{bottom:421.546498pt;}
.y23{bottom:431.306494pt;}
.y4b{bottom:439.466491pt;}
.y22{bottom:449.386487pt;}
.y4a{bottom:457.546484pt;}
.y21{bottom:467.306480pt;}
.y49{bottom:475.466476pt;}
.y20{bottom:485.386473pt;}
.y48{bottom:493.546469pt;}
.y1f{bottom:503.306465pt;}
.y47{bottom:511.466462pt;}
.y1e{bottom:521.386458pt;}
.y46{bottom:529.546455pt;}
.y1d{bottom:539.306451pt;}
.y45{bottom:547.466448pt;}
.y1c{bottom:557.386444pt;}
.y54{bottom:558.346443pt;}
.y44{bottom:565.546440pt;}
.y1b{bottom:575.306437pt;}
.y53{bottom:575.946436pt;}
.y43{bottom:583.466433pt;}
.y1a{bottom:593.386429pt;}
.y52{bottom:593.546429pt;}
.y42{bottom:601.546426pt;}
.y19{bottom:611.306422pt;}
.y41{bottom:619.466419pt;}
.y18{bottom:629.386415pt;}
.y40{bottom:637.546412pt;}
.y17{bottom:647.306408pt;}
.y3f{bottom:655.466404pt;}
.y16{bottom:665.386401pt;}
.y3e{bottom:673.546397pt;}
.y15{bottom:683.306393pt;}
.y3d{bottom:691.466390pt;}
.y14{bottom:701.386386pt;}
.y3c{bottom:709.546383pt;}
.y13{bottom:719.306379pt;}
.y3b{bottom:727.466376pt;}
.y12{bottom:737.386372pt;}
.y3a{bottom:745.546368pt;}
.y11{bottom:755.306365pt;}
.y39{bottom:763.466361pt;}
.y10{bottom:773.386357pt;}
.y38{bottom:781.546354pt;}
.yf{bottom:791.306350pt;}
.y37{bottom:799.466347pt;}
.ye{bottom:809.386343pt;}
.y36{bottom:817.546340pt;}
.yd{bottom:827.306336pt;}
.y35{bottom:835.466332pt;}
.yc{bottom:845.386329pt;}
.y34{bottom:853.546325pt;}
.yb{bottom:863.306321pt;}
.y33{bottom:871.466318pt;}
.y32{bottom:889.546311pt;}
.ya{bottom:899.306307pt;}
.y31{bottom:907.466304pt;}
.y9{bottom:917.386300pt;}
.y30{bottom:925.546296pt;}
.y8{bottom:935.786292pt;}
.y2f{bottom:943.466289pt;}
.y7{bottom:955.786284pt;}
.y2e{bottom:961.546282pt;}
.y6{bottom:975.306277pt;}
.y2d{bottom:979.466275pt;}
.y5{bottom:993.386269pt;}
.y2c{bottom:997.546268pt;}
.y3{bottom:1011.786262pt;}
.y2b{bottom:1015.466260pt;}
.y2a{bottom:1033.866253pt;}
.y2{bottom:1035.946252pt;}
.y1{bottom:1054.666245pt;}
.y28{bottom:1057.867200pt;}
.y27{bottom:1061.546242pt;}
.h7{height:17.440000pt;}
.h2{height:42.084358pt;}
.h1{height:52.134354pt;}
.h4{height:60.299976pt;}
.h5{height:61.919975pt;}
.h3{height:62.812475pt;}
.h6{height:69.659972pt;}
.h0{height:1122.666667pt;}
.w1{width:0.960000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:238.079905pt;}
.x24{left:241.919903pt;}
.x1{left:245.759902pt;}
.x6{left:253.279899pt;}
.x2{left:255.359898pt;}
.x21{left:256.960770pt;}
.x1f{left:267.200229pt;}
.x22{left:285.119886pt;}
.x7{left:304.959878pt;}
.x3{left:310.079876pt;}
.x8{left:314.559874pt;}
.x4{left:318.399873pt;}
.x20{left:332.320201pt;}
.x1b{left:335.039866pt;}
.x5{left:362.719855pt;}
.x1e{left:384.800225pt;}
.x1c{left:389.599842pt;}
.x9{left:411.519835pt;}
.xa{left:419.839832pt;}
.xb{left:461.759815pt;}
.x1d{left:476.159810pt;}
.x1a{left:485.600348pt;}
.xc{left:510.879884pt;}
.xd{left:518.239793pt;}
.xe{left:546.239782pt;}
.xf{left:555.839778pt;}
.x25{left:596.958632pt;}
.x10{left:598.239761pt;}
.x11{left:607.839757pt;}
.x13{left:619.999665pt;}
.x14{left:629.599748pt;}
.x15{left:678.399729pt;}
.x16{left:681.599727pt;}
.x17{left:684.319726pt;}
.x19{left:691.199724pt;}
.x12{left:694.079722pt;}
.x23{left:712.960000pt;}
}




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