
    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_fbbc72df4b41797179bb167f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.769000;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_fc49936cfa32aa3f619d74d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.789000;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_526d92ef4f633de1d42544d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_98462401d12858cc6dd1fa0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.917000;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_4258c9f8bae808641682383f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_24f7cdb294c21ffa9843955b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.094258;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:ff7;src:url('chunks/assets/font_f8a92289d6525739346f0fc5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls4{letter-spacing:-1.044000px;}
.ls3{letter-spacing:-0.522000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020880px;}
.ls1{letter-spacing:1.044000px;}
.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;}
}
.wsd{word-spacing:-2.964960px;}
.ws11{word-spacing:-2.599560px;}
.ws2{word-spacing:-2.176740px;}
.ws35{word-spacing:-1.905300px;}
.ws17{word-spacing:-1.623420px;}
.wse{word-spacing:-1.070100px;}
.ws4{word-spacing:-0.950040px;}
.ws21{word-spacing:-0.595080px;}
.ws3{word-spacing:-0.428040px;}
.ws34{word-spacing:-0.381060px;}
.ws30{word-spacing:-0.354960px;}
.ws31{word-spacing:-0.328860px;}
.ws36{word-spacing:-0.281880px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:0.026100px;}
.ws2b{word-spacing:0.297540px;}
.ws2e{word-spacing:0.772560px;}
.ws33{word-spacing:1.164060px;}
.ws23{word-spacing:2.093220px;}
.ws22{word-spacing:2.458620px;}
.wsf{word-spacing:2.980620px;}
.ws16{word-spacing:3.366900px;}
.ws1f{word-spacing:3.920220px;}
.ws25{word-spacing:4.938120px;}
.wsa{word-spacing:5.073840px;}
.wsc{word-spacing:5.230440px;}
.wsb{word-spacing:5.235660px;}
.ws2f{word-spacing:5.355720px;}
.ws26{word-spacing:5.496660px;}
.ws7{word-spacing:5.851620px;}
.ws1e{word-spacing:5.987340px;}
.ws2c{word-spacing:6.060420px;}
.ws2a{word-spacing:6.331860px;}
.ws2d{word-spacing:6.624180px;}
.ws27{word-spacing:6.754680px;}
.ws37{word-spacing:6.853860px;}
.ws6{word-spacing:7.699500px;}
.ws10{word-spacing:7.709940px;}
.ws20{word-spacing:8.038800px;}
.ws18{word-spacing:8.952300px;}
.ws19{word-spacing:9.505620px;}
.ws15{word-spacing:9.985860px;}
.ws28{word-spacing:11.113380px;}
.ws12{word-spacing:12.360960px;}
.ws24{word-spacing:12.496680px;}
.ws0{word-spacing:14.094000px;}
.ws14{word-spacing:14.099220px;}
.ws32{word-spacing:15.305040px;}
.ws29{word-spacing:15.440760px;}
.ws8{word-spacing:16.067160px;}
.ws9{word-spacing:16.077600px;}
.ws1b{word-spacing:21.438540px;}
.ws5{word-spacing:21.908340px;}
.ws13{word-spacing:23.526540px;}
.ws1c{word-spacing:23.938920px;}
.ws1d{word-spacing:33.214860px;}
._5{margin-left:-3.758400px;}
._4{margin-left:-2.140200px;}
._3{margin-left:-1.044000px;}
._2{width:1.618200px;}
._0{width:2.698740px;}
._1{width:17.925480px;}
.fc4{color:rgb(57,54,55);}
.fc3{color:rgb(57,53,54);}
.fc2{color:rgb(232,20,84);}
.fc1{color:rgb(232,21,85);}
.fc0{color:rgb(41,93,108);}
.fs4{font-size:52.200000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:180.000000px;}
.fs2{font-size:270.000000px;}
.y45{bottom:-6.456000px;}
.y0{bottom:0.000000px;}
.y1{bottom:39.181650px;}
.y18{bottom:74.095470px;}
.y2d{bottom:74.098080px;}
.y43{bottom:74.100690px;}
.y17{bottom:92.095335px;}
.y2c{bottom:92.097945px;}
.y42{bottom:92.100555px;}
.y16{bottom:110.095200px;}
.y2b{bottom:110.097810px;}
.y41{bottom:110.100420px;}
.y15{bottom:128.095065px;}
.y2a{bottom:146.097540px;}
.y40{bottom:146.100150px;}
.y14{bottom:164.094795px;}
.y29{bottom:164.097405px;}
.y3f{bottom:164.100015px;}
.y13{bottom:182.094660px;}
.y28{bottom:182.097270px;}
.y3e{bottom:182.099880px;}
.y12{bottom:200.094525px;}
.y27{bottom:200.097135px;}
.y3d{bottom:200.099745px;}
.y11{bottom:218.094390px;}
.y26{bottom:218.097000px;}
.y3c{bottom:218.099610px;}
.y25{bottom:236.096865px;}
.y3b{bottom:236.099475px;}
.y10{bottom:254.094120px;}
.y24{bottom:254.096730px;}
.y3a{bottom:254.099340px;}
.yf{bottom:272.093985px;}
.y23{bottom:272.096595px;}
.y39{bottom:272.099205px;}
.ye{bottom:290.093850px;}
.y22{bottom:290.096460px;}
.y38{bottom:290.099070px;}
.yd{bottom:308.093715px;}
.y37{bottom:308.098935px;}
.yc{bottom:326.093580px;}
.y21{bottom:326.096190px;}
.y36{bottom:326.098800px;}
.y20{bottom:344.096055px;}
.y35{bottom:344.098665px;}
.yb{bottom:362.093310px;}
.y1f{bottom:362.095920px;}
.y34{bottom:362.098530px;}
.ya{bottom:380.093175px;}
.y1e{bottom:380.095785px;}
.y9{bottom:398.093040px;}
.y1d{bottom:398.095650px;}
.y33{bottom:398.098260px;}
.y8{bottom:416.092905px;}
.y32{bottom:416.098125px;}
.y7{bottom:434.092770px;}
.y1c{bottom:434.095380px;}
.y31{bottom:434.097990px;}
.y1b{bottom:452.095245px;}
.y30{bottom:452.097855px;}
.y6{bottom:470.092500px;}
.y1a{bottom:470.095110px;}
.y2f{bottom:470.097720px;}
.y19{bottom:488.094975px;}
.y2e{bottom:488.097585px;}
.y44{bottom:494.548500px;}
.y5{bottom:1033.314000px;}
.y4{bottom:1078.312500px;}
.y2{bottom:1094.608650px;}
.y3{bottom:1144.314000px;}
.h7{height:3.540000px;}
.h3{height:41.742000px;}
.h2{height:45.240000px;}
.h6{height:46.040400px;}
.h5{height:129.060000px;}
.h4{height:196.020000px;}
.h1{height:1262.250000px;}
.h0{height:1262.400000px;}
.w2{width:102.591000px;}
.w1{width:891.750000px;}
.w0{width:891.846000px;}
.x0{left:0.000000px;}
.x2{left:31.546800px;}
.x6{left:54.054000px;}
.x1{left:61.451100px;}
.x5{left:127.287150px;}
.x3{left:137.095350px;}
.x4{left:291.029100px;}
.x7{left:321.688620px;}
.x8{left:589.325850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.928000pt;}
.ls3{letter-spacing:-0.464000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.018560pt;}
.ls1{letter-spacing:0.928000pt;}
.wsd{word-spacing:-2.635520pt;}
.ws11{word-spacing:-2.310720pt;}
.ws2{word-spacing:-1.934880pt;}
.ws35{word-spacing:-1.693600pt;}
.ws17{word-spacing:-1.443040pt;}
.wse{word-spacing:-0.951200pt;}
.ws4{word-spacing:-0.844480pt;}
.ws21{word-spacing:-0.528960pt;}
.ws3{word-spacing:-0.380480pt;}
.ws34{word-spacing:-0.338720pt;}
.ws30{word-spacing:-0.315520pt;}
.ws31{word-spacing:-0.292320pt;}
.ws36{word-spacing:-0.250560pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.023200pt;}
.ws2b{word-spacing:0.264480pt;}
.ws2e{word-spacing:0.686720pt;}
.ws33{word-spacing:1.034720pt;}
.ws23{word-spacing:1.860640pt;}
.ws22{word-spacing:2.185440pt;}
.wsf{word-spacing:2.649440pt;}
.ws16{word-spacing:2.992800pt;}
.ws1f{word-spacing:3.484640pt;}
.ws25{word-spacing:4.389440pt;}
.wsa{word-spacing:4.510080pt;}
.wsc{word-spacing:4.649280pt;}
.wsb{word-spacing:4.653920pt;}
.ws2f{word-spacing:4.760640pt;}
.ws26{word-spacing:4.885920pt;}
.ws7{word-spacing:5.201440pt;}
.ws1e{word-spacing:5.322080pt;}
.ws2c{word-spacing:5.387040pt;}
.ws2a{word-spacing:5.628320pt;}
.ws2d{word-spacing:5.888160pt;}
.ws27{word-spacing:6.004160pt;}
.ws37{word-spacing:6.092320pt;}
.ws6{word-spacing:6.844000pt;}
.ws10{word-spacing:6.853280pt;}
.ws20{word-spacing:7.145600pt;}
.ws18{word-spacing:7.957600pt;}
.ws19{word-spacing:8.449440pt;}
.ws15{word-spacing:8.876320pt;}
.ws28{word-spacing:9.878560pt;}
.ws12{word-spacing:10.987520pt;}
.ws24{word-spacing:11.108160pt;}
.ws0{word-spacing:12.528000pt;}
.ws14{word-spacing:12.532640pt;}
.ws32{word-spacing:13.604480pt;}
.ws29{word-spacing:13.725120pt;}
.ws8{word-spacing:14.281920pt;}
.ws9{word-spacing:14.291200pt;}
.ws1b{word-spacing:19.056480pt;}
.ws5{word-spacing:19.474080pt;}
.ws13{word-spacing:20.912480pt;}
.ws1c{word-spacing:21.279040pt;}
.ws1d{word-spacing:29.524320pt;}
._5{margin-left:-3.340800pt;}
._4{margin-left:-1.902400pt;}
._3{margin-left:-0.928000pt;}
._2{width:1.438400pt;}
._0{width:2.398880pt;}
._1{width:15.933760pt;}
.fs4{font-size:46.400000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:160.000000pt;}
.fs2{font-size:240.000000pt;}
.y45{bottom:-5.738667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:34.828133pt;}
.y18{bottom:65.862640pt;}
.y2d{bottom:65.864960pt;}
.y43{bottom:65.867280pt;}
.y17{bottom:81.862520pt;}
.y2c{bottom:81.864840pt;}
.y42{bottom:81.867160pt;}
.y16{bottom:97.862400pt;}
.y2b{bottom:97.864720pt;}
.y41{bottom:97.867040pt;}
.y15{bottom:113.862280pt;}
.y2a{bottom:129.864480pt;}
.y40{bottom:129.866800pt;}
.y14{bottom:145.862040pt;}
.y29{bottom:145.864360pt;}
.y3f{bottom:145.866680pt;}
.y13{bottom:161.861920pt;}
.y28{bottom:161.864240pt;}
.y3e{bottom:161.866560pt;}
.y12{bottom:177.861800pt;}
.y27{bottom:177.864120pt;}
.y3d{bottom:177.866440pt;}
.y11{bottom:193.861680pt;}
.y26{bottom:193.864000pt;}
.y3c{bottom:193.866320pt;}
.y25{bottom:209.863880pt;}
.y3b{bottom:209.866200pt;}
.y10{bottom:225.861440pt;}
.y24{bottom:225.863760pt;}
.y3a{bottom:225.866080pt;}
.yf{bottom:241.861320pt;}
.y23{bottom:241.863640pt;}
.y39{bottom:241.865960pt;}
.ye{bottom:257.861200pt;}
.y22{bottom:257.863520pt;}
.y38{bottom:257.865840pt;}
.yd{bottom:273.861080pt;}
.y37{bottom:273.865720pt;}
.yc{bottom:289.860960pt;}
.y21{bottom:289.863280pt;}
.y36{bottom:289.865600pt;}
.y20{bottom:305.863160pt;}
.y35{bottom:305.865480pt;}
.yb{bottom:321.860720pt;}
.y1f{bottom:321.863040pt;}
.y34{bottom:321.865360pt;}
.ya{bottom:337.860600pt;}
.y1e{bottom:337.862920pt;}
.y9{bottom:353.860480pt;}
.y1d{bottom:353.862800pt;}
.y33{bottom:353.865120pt;}
.y8{bottom:369.860360pt;}
.y32{bottom:369.865000pt;}
.y7{bottom:385.860240pt;}
.y1c{bottom:385.862560pt;}
.y31{bottom:385.864880pt;}
.y1b{bottom:401.862440pt;}
.y30{bottom:401.864760pt;}
.y6{bottom:417.860000pt;}
.y1a{bottom:417.862320pt;}
.y2f{bottom:417.864640pt;}
.y19{bottom:433.862200pt;}
.y2e{bottom:433.864520pt;}
.y44{bottom:439.598667pt;}
.y5{bottom:918.501333pt;}
.y4{bottom:958.500000pt;}
.y2{bottom:972.985467pt;}
.y3{bottom:1017.168000pt;}
.h7{height:3.146667pt;}
.h3{height:37.104000pt;}
.h2{height:40.213333pt;}
.h6{height:40.924800pt;}
.h5{height:114.720000pt;}
.h4{height:174.240000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.133333pt;}
.w2{width:91.192000pt;}
.w1{width:792.666667pt;}
.w0{width:792.752000pt;}
.x0{left:0.000000pt;}
.x2{left:28.041600pt;}
.x6{left:48.048000pt;}
.x1{left:54.623200pt;}
.x5{left:113.144133pt;}
.x3{left:121.862533pt;}
.x4{left:258.692533pt;}
.x7{left:285.945440pt;}
.x8{left:523.845200pt;}
}




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