
    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_a071faacd8f747b91ae7e9b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080000;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_1ab2849b3340e54a794b8d98.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_2c059cf7dda346c9ce2b01ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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;}
.m3{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);}
.m0{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);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls2{letter-spacing:0.155922px;}
.ls3{letter-spacing:8.655723px;}
.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;}
}
.ws2{word-spacing:-18.155914px;}
.ws0{word-spacing:-17.999993px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-2.140170px;}
._2{margin-left:-1.105464px;}
._0{width:1.122021px;}
._1{width:2.122505px;}
._4{width:3.781458px;}
._18{width:4.787509px;}
._8{width:5.905072px;}
._9{width:7.032630px;}
._7{width:8.045173px;}
._f{width:9.196662px;}
._13{width:10.462579px;}
._14{width:11.884695px;}
._1b{width:13.826394px;}
._e{width:15.143163px;}
._d{width:16.168291px;}
._16{width:19.329868px;}
._15{width:20.782478px;}
._12{width:22.386202px;}
._1c{width:23.446125px;}
._17{width:24.505248px;}
._10{width:25.662414px;}
._11{width:27.121198px;}
._19{width:28.859470px;}
._1a{width:30.148236px;}
._b{width:34.609871px;}
._c{width:36.164207px;}
._1d{width:39.390316px;}
._6{width:41.002029px;}
._5{width:42.170821px;}
._1e{width:57.386065px;}
._1f{width:58.855525px;}
._3{width:90.064044px;}
.fc1{color:rgb(181,8,46);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y37{bottom:122.879951px;}
.y65{bottom:126.300249px;}
.y36{bottom:143.579943px;}
.y64{bottom:146.999941px;}
.y35{bottom:164.279934px;}
.y63{bottom:167.699933px;}
.y34{bottom:184.979926px;}
.y62{bottom:188.399925px;}
.y33{bottom:205.679918px;}
.y61{bottom:209.099916px;}
.y32{bottom:226.379909px;}
.y60{bottom:229.799908px;}
.y31{bottom:247.079901px;}
.y5f{bottom:250.499900px;}
.y30{bottom:267.779893px;}
.y5e{bottom:271.199892px;}
.y2f{bottom:288.479885px;}
.y5d{bottom:291.899883px;}
.y2e{bottom:309.179876px;}
.y5c{bottom:312.599875px;}
.y2d{bottom:329.879868px;}
.y5b{bottom:333.299867px;}
.y69{bottom:348.779860px;}
.y2c{bottom:350.579860px;}
.y5a{bottom:353.999858px;}
.y68{bottom:369.479852px;}
.y2b{bottom:371.279851px;}
.y59{bottom:374.699850px;}
.y67{bottom:390.179844px;}
.y2a{bottom:391.979843px;}
.y58{bottom:395.399842px;}
.y66{bottom:406.559837px;}
.y29{bottom:412.679835px;}
.y57{bottom:416.099834px;}
.y28{bottom:433.379827px;}
.y56{bottom:436.799825px;}
.y27{bottom:454.079818px;}
.y55{bottom:457.499817px;}
.y26{bottom:474.779810px;}
.y54{bottom:478.199809px;}
.y25{bottom:495.479802px;}
.y53{bottom:498.899800px;}
.y24{bottom:516.179794px;}
.y52{bottom:519.599792px;}
.y23{bottom:536.879785px;}
.y51{bottom:540.299784px;}
.y22{bottom:557.579777px;}
.y50{bottom:560.999776px;}
.y21{bottom:578.279769px;}
.y4f{bottom:581.699767px;}
.y20{bottom:598.979760px;}
.y4e{bottom:602.399759px;}
.y1f{bottom:619.679752px;}
.y4d{bottom:623.099751px;}
.y1e{bottom:640.379744px;}
.y4c{bottom:643.799742px;}
.y1d{bottom:661.079736px;}
.y4b{bottom:664.499734px;}
.y1c{bottom:681.779727px;}
.y4a{bottom:685.199726px;}
.y1b{bottom:702.479719px;}
.y49{bottom:705.899718px;}
.y1a{bottom:723.179711px;}
.y48{bottom:726.599709px;}
.y19{bottom:743.879702px;}
.y47{bottom:747.299701px;}
.y18{bottom:764.579694px;}
.y46{bottom:767.999693px;}
.y17{bottom:785.279686px;}
.y45{bottom:788.699685px;}
.y16{bottom:805.979678px;}
.y44{bottom:809.399676px;}
.y15{bottom:826.679669px;}
.y43{bottom:830.099668px;}
.y14{bottom:847.379661px;}
.y42{bottom:850.799660px;}
.y13{bottom:868.079653px;}
.y41{bottom:871.499651px;}
.y12{bottom:888.779644px;}
.y40{bottom:892.199643px;}
.y11{bottom:909.479636px;}
.y3f{bottom:912.899635px;}
.y10{bottom:929.279628px;}
.y3e{bottom:933.599627px;}
.yf{bottom:946.559621px;}
.y3d{bottom:954.299618px;}
.ye{bottom:963.839614px;}
.yd{bottom:969.059612px;}
.y3c{bottom:974.999610px;}
.yc{bottom:981.119608px;}
.y3b{bottom:995.699602px;}
.yb{bottom:998.399601px;}
.ya{bottom:1003.619599px;}
.y9{bottom:1016.399593px;}
.y7{bottom:1037.099585px;}
.y8{bottom:1043.939582px;}
.y5{bottom:1057.799577px;}
.y6{bottom:1064.639574px;}
.y4{bottom:1078.499569px;}
.y3{bottom:1098.839560px;}
.y3a{bottom:1099.199560px;}
.y2{bottom:1119.539552px;}
.y39{bottom:1119.899552px;}
.y1{bottom:1140.239544px;}
.y38{bottom:1140.599544px;}
.h4{height:26.749429px;}
.h3{height:33.189107px;}
.h5{height:41.114864px;}
.h2{height:49.535980px;}
.h7{height:49.537180px;}
.h6{height:49.895980px;}
.h1{height:65.087974px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:127.620640px;}
.x1{left:130.139948px;}
.x2{left:143.459579px;}
.x5{left:151.201006px;}
.x13{left:153.539939px;}
.x19{left:154.619938px;}
.x14{left:158.399937px;}
.x16{left:210.240734px;}
.x15{left:223.560377px;}
.x17{left:256.500795px;}
.x3{left:287.460011px;}
.x6{left:293.039883px;}
.x7{left:299.159880px;}
.x10{left:379.979815px;}
.x8{left:383.039847px;}
.x9{left:389.159844px;}
.x4{left:446.400617px;}
.x11{left:506.699797px;}
.x12{left:512.999795px;}
.xa{left:543.599783px;}
.xb{left:549.719780px;}
.xc{left:625.499750px;}
.xd{left:631.619747px;}
.xe{left:709.199716px;}
.xf{left:715.319714px;}
.x1a{left:764.639694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls2{letter-spacing:0.138597pt;}
.ls3{letter-spacing:7.693976pt;}
.ws2{word-spacing:-16.138591pt;}
.ws0{word-spacing:-15.999994pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-1.902374pt;}
._2{margin-left:-0.982635pt;}
._0{width:0.997352pt;}
._1{width:1.886671pt;}
._4{width:3.361296pt;}
._18{width:4.255564pt;}
._8{width:5.248953pt;}
._9{width:6.251227pt;}
._7{width:7.151265pt;}
._f{width:8.174811pt;}
._13{width:9.300070pt;}
._14{width:10.564174pt;}
._1b{width:12.290128pt;}
._e{width:13.460589pt;}
._d{width:14.371814pt;}
._16{width:17.182105pt;}
._15{width:18.473314pt;}
._12{width:19.898846pt;}
._1c{width:20.841000pt;}
._17{width:21.782442pt;}
._10{width:22.811034pt;}
._11{width:24.107732pt;}
._19{width:25.652862pt;}
._1a{width:26.798432pt;}
._b{width:30.764330pt;}
._c{width:32.145962pt;}
._1d{width:35.013614pt;}
._6{width:36.446248pt;}
._5{width:37.485174pt;}
._1e{width:51.009836pt;}
._1f{width:52.316022pt;}
._3{width:80.056928pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:109.226623pt;}
.y65{bottom:112.266888pt;}
.y36{bottom:127.626616pt;}
.y64{bottom:130.666614pt;}
.y35{bottom:146.026608pt;}
.y63{bottom:149.066607pt;}
.y34{bottom:164.426601pt;}
.y62{bottom:167.466600pt;}
.y33{bottom:182.826594pt;}
.y61{bottom:185.866592pt;}
.y32{bottom:201.226586pt;}
.y60{bottom:204.266585pt;}
.y31{bottom:219.626579pt;}
.y5f{bottom:222.666578pt;}
.y30{bottom:238.026571pt;}
.y5e{bottom:241.066570pt;}
.y2f{bottom:256.426564pt;}
.y5d{bottom:259.466563pt;}
.y2e{bottom:274.826557pt;}
.y5c{bottom:277.866556pt;}
.y2d{bottom:293.226549pt;}
.y5b{bottom:296.266548pt;}
.y69{bottom:310.026543pt;}
.y2c{bottom:311.626542pt;}
.y5a{bottom:314.666541pt;}
.y68{bottom:328.426535pt;}
.y2b{bottom:330.026535pt;}
.y59{bottom:333.066533pt;}
.y67{bottom:346.826528pt;}
.y2a{bottom:348.426527pt;}
.y58{bottom:351.466526pt;}
.y66{bottom:361.386522pt;}
.y29{bottom:366.826520pt;}
.y57{bottom:369.866519pt;}
.y28{bottom:385.226513pt;}
.y56{bottom:388.266511pt;}
.y27{bottom:403.626505pt;}
.y55{bottom:406.666504pt;}
.y26{bottom:422.026498pt;}
.y54{bottom:425.066497pt;}
.y25{bottom:440.426490pt;}
.y53{bottom:443.466489pt;}
.y24{bottom:458.826483pt;}
.y52{bottom:461.866482pt;}
.y23{bottom:477.226476pt;}
.y51{bottom:480.266475pt;}
.y22{bottom:495.626468pt;}
.y50{bottom:498.666467pt;}
.y21{bottom:514.026461pt;}
.y4f{bottom:517.066460pt;}
.y20{bottom:532.426454pt;}
.y4e{bottom:535.466452pt;}
.y1f{bottom:550.826446pt;}
.y4d{bottom:553.866445pt;}
.y1e{bottom:569.226439pt;}
.y4c{bottom:572.266438pt;}
.y1d{bottom:587.626432pt;}
.y4b{bottom:590.666430pt;}
.y1c{bottom:606.026424pt;}
.y4a{bottom:609.066423pt;}
.y1b{bottom:624.426417pt;}
.y49{bottom:627.466416pt;}
.y1a{bottom:642.826410pt;}
.y48{bottom:645.866408pt;}
.y19{bottom:661.226402pt;}
.y47{bottom:664.266401pt;}
.y18{bottom:679.626395pt;}
.y46{bottom:682.666394pt;}
.y17{bottom:698.026387pt;}
.y45{bottom:701.066386pt;}
.y16{bottom:716.426380pt;}
.y44{bottom:719.466379pt;}
.y15{bottom:734.826373pt;}
.y43{bottom:737.866372pt;}
.y14{bottom:753.226365pt;}
.y42{bottom:756.266364pt;}
.y13{bottom:771.626358pt;}
.y41{bottom:774.666357pt;}
.y12{bottom:790.026351pt;}
.y40{bottom:793.066349pt;}
.y11{bottom:808.426343pt;}
.y3f{bottom:811.466342pt;}
.y10{bottom:826.026336pt;}
.y3e{bottom:829.866335pt;}
.yf{bottom:841.386330pt;}
.y3d{bottom:848.266327pt;}
.ye{bottom:856.746324pt;}
.yd{bottom:861.386322pt;}
.y3c{bottom:866.666320pt;}
.yc{bottom:872.106318pt;}
.y3b{bottom:885.066313pt;}
.yb{bottom:887.466312pt;}
.ya{bottom:892.106310pt;}
.y9{bottom:903.466305pt;}
.y7{bottom:921.866298pt;}
.y8{bottom:927.946295pt;}
.y5{bottom:940.266291pt;}
.y6{bottom:946.346288pt;}
.y4{bottom:958.666283pt;}
.y3{bottom:976.746276pt;}
.y3a{bottom:977.066276pt;}
.y2{bottom:995.146269pt;}
.y39{bottom:995.466268pt;}
.y1{bottom:1013.546261pt;}
.y38{bottom:1013.866261pt;}
.h4{height:23.777270pt;}
.h3{height:29.501428pt;}
.h5{height:36.546545pt;}
.h2{height:44.031982pt;}
.h7{height:44.033049pt;}
.h6{height:44.351982pt;}
.h1{height:57.855977pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:113.440569pt;}
.x1{left:115.679954pt;}
.x2{left:127.519626pt;}
.x5{left:134.400894pt;}
.x13{left:136.479945pt;}
.x19{left:137.439945pt;}
.x14{left:140.799944pt;}
.x16{left:186.880653pt;}
.x15{left:198.720336pt;}
.x17{left:228.000706pt;}
.x3{left:255.520010pt;}
.x6{left:260.479896pt;}
.x7{left:265.919894pt;}
.x10{left:337.759836pt;}
.x8{left:340.479864pt;}
.x9{left:345.919862pt;}
.x4{left:396.800549pt;}
.x11{left:450.399820pt;}
.x12{left:455.999818pt;}
.xa{left:483.199807pt;}
.xb{left:488.639805pt;}
.xc{left:555.999778pt;}
.xd{left:561.439775pt;}
.xe{left:630.399748pt;}
.xf{left:635.839746pt;}
.x1a{left:679.679728pt;}
}




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