
    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_5588cb6250e9fe188aa0fc1c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_c381757116da203257542f55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_7d0f6796dd93f019aacc2b27.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_180d2e09cdbd9e44a9c2c7d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_421f09ca35b8c2486fcd9a1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_8b707d2e1da42032691e9e6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_c8d30c586a1f7f4707ca6e79.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.220000px;}
.lsa{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.132000px;}
.ls8{letter-spacing:0.198000px;}
.ls1{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.396000px;}
.ls11{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.726000px;}
.lsb{letter-spacing:0.756000px;}
.ls10{letter-spacing:0.792000px;}
.ls6{letter-spacing:0.858000px;}
.ls7{letter-spacing:0.990000px;}
.lsf{letter-spacing:1.188000px;}
.ls12{letter-spacing:1.254000px;}
.lse{letter-spacing:1267.089600px;}
.ls0{letter-spacing:1923.148200px;}
.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;}
}
.ws16{word-spacing:-15.000000px;}
.ws0{word-spacing:-8.262000px;}
.ws15{word-spacing:-0.858000px;}
.wse{word-spacing:-0.726000px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:0.132000px;}
.ws20{word-spacing:1.056000px;}
.ws5{word-spacing:1.122000px;}
.wsb{word-spacing:1.188000px;}
.ws1c{word-spacing:1.320000px;}
.ws7{word-spacing:1.782000px;}
.wsc{word-spacing:2.046000px;}
.ws2{word-spacing:2.220000px;}
.ws9{word-spacing:2.310000px;}
.ws19{word-spacing:3.036000px;}
.ws1e{word-spacing:3.102000px;}
.ws22{word-spacing:3.234000px;}
.ws1a{word-spacing:4.026000px;}
.ws21{word-spacing:4.158000px;}
.ws14{word-spacing:4.224000px;}
.wsd{word-spacing:4.290000px;}
.ws8{word-spacing:4.686000px;}
.ws23{word-spacing:4.752000px;}
.ws12{word-spacing:4.818000px;}
.ws1d{word-spacing:5.016000px;}
.wsa{word-spacing:6.204000px;}
.ws10{word-spacing:7.062000px;}
.ws1f{word-spacing:7.524000px;}
.ws17{word-spacing:7.590000px;}
.ws1b{word-spacing:7.722000px;}
.wsf{word-spacing:7.788000px;}
.ws18{word-spacing:7.920000px;}
.ws11{word-spacing:7.986000px;}
.ws24{word-spacing:8.184000px;}
.ws6{word-spacing:8.250000px;}
.ws4{word-spacing:10.656000px;}
.ws3{word-spacing:13.344000px;}
._2{margin-left:-1.003200px;}
._0{width:1.050300px;}
._1{width:13.344000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.000000px;}
.fs0{font-size:36.000000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y28{bottom:85.039500px;}
.y27{bottom:120.644100px;}
.y26{bottom:138.233100px;}
.y25{bottom:155.822100px;}
.y24{bottom:173.411100px;}
.y23{bottom:199.811100px;}
.y22{bottom:217.400100px;}
.y21{bottom:234.989100px;}
.y20{bottom:252.578100px;}
.y1f{bottom:270.167100px;}
.y1e{bottom:287.756100px;}
.y1d{bottom:305.345100px;}
.y49{bottom:305.770500px;}
.y1c{bottom:322.934100px;}
.y48{bottom:323.359500px;}
.y1b{bottom:340.523100px;}
.y47{bottom:340.948500px;}
.y1a{bottom:358.112100px;}
.y46{bottom:358.537500px;}
.y19{bottom:375.701100px;}
.y45{bottom:376.126500px;}
.y18{bottom:393.290100px;}
.y44{bottom:393.715500px;}
.y17{bottom:410.879100px;}
.y43{bottom:411.304500px;}
.y16{bottom:428.468100px;}
.y42{bottom:437.704500px;}
.y15{bottom:454.868100px;}
.y41{bottom:455.293500px;}
.y14{bottom:472.457100px;}
.y40{bottom:472.882500px;}
.y13{bottom:490.046100px;}
.y3f{bottom:490.471500px;}
.y12{bottom:507.635100px;}
.y3e{bottom:508.060500px;}
.y11{bottom:525.224100px;}
.y3d{bottom:525.649500px;}
.y10{bottom:542.813100px;}
.y3c{bottom:543.238500px;}
.yf{bottom:560.402100px;}
.y3b{bottom:560.827500px;}
.ye{bottom:577.991100px;}
.y3a{bottom:587.227500px;}
.yd{bottom:595.580100px;}
.y39{bottom:604.816500px;}
.yc{bottom:613.169100px;}
.y38{bottom:622.405500px;}
.yb{bottom:630.758100px;}
.y37{bottom:639.994500px;}
.ya{bottom:648.347100px;}
.y36{bottom:657.583500px;}
.y35{bottom:675.172500px;}
.y34{bottom:692.761500px;}
.y33{bottom:710.350500px;}
.y32{bottom:727.939500px;}
.y31{bottom:745.528500px;}
.y30{bottom:763.117500px;}
.y2f{bottom:780.706500px;}
.y2e{bottom:798.295500px;}
.y2d{bottom:815.884500px;}
.y2c{bottom:833.473500px;}
.y9{bottom:836.176950px;}
.y2b{bottom:851.062500px;}
.y8{bottom:856.416000px;}
.y2a{bottom:868.651500px;}
.y7{bottom:882.267900px;}
.y29{bottom:886.240500px;}
.y5{bottom:920.367150px;}
.y4{bottom:937.978500px;}
.y3{bottom:945.477750px;}
.y2{bottom:953.272050px;}
.y6{bottom:971.391150px;}
.h4{height:19.602000px;}
.h5{height:35.328000px;}
.h8{height:47.381836px;}
.h2{height:52.646484px;}
.h9{height:57.911133px;}
.ha{height:58.072266px;}
.h6{height:61.611328px;}
.h7{height:63.351562px;}
.h3{height:104.850000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:110.551200px;}
.x1{left:113.476500px;}
.x6{left:136.060200px;}
.x4{left:138.988350px;}
.x3{left:441.045750px;}
.x2{left:521.280900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.973333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.117333pt;}
.ls8{letter-spacing:0.176000pt;}
.ls1{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.352000pt;}
.ls11{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.645333pt;}
.lsb{letter-spacing:0.672000pt;}
.ls10{letter-spacing:0.704000pt;}
.ls6{letter-spacing:0.762667pt;}
.ls7{letter-spacing:0.880000pt;}
.lsf{letter-spacing:1.056000pt;}
.ls12{letter-spacing:1.114667pt;}
.lse{letter-spacing:1126.301867pt;}
.ls0{letter-spacing:1709.465067pt;}
.ws16{word-spacing:-13.333333pt;}
.ws0{word-spacing:-7.344000pt;}
.ws15{word-spacing:-0.762667pt;}
.wse{word-spacing:-0.645333pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:0.117333pt;}
.ws20{word-spacing:0.938667pt;}
.ws5{word-spacing:0.997333pt;}
.wsb{word-spacing:1.056000pt;}
.ws1c{word-spacing:1.173333pt;}
.ws7{word-spacing:1.584000pt;}
.wsc{word-spacing:1.818667pt;}
.ws2{word-spacing:1.973333pt;}
.ws9{word-spacing:2.053333pt;}
.ws19{word-spacing:2.698667pt;}
.ws1e{word-spacing:2.757333pt;}
.ws22{word-spacing:2.874667pt;}
.ws1a{word-spacing:3.578667pt;}
.ws21{word-spacing:3.696000pt;}
.ws14{word-spacing:3.754667pt;}
.wsd{word-spacing:3.813333pt;}
.ws8{word-spacing:4.165333pt;}
.ws23{word-spacing:4.224000pt;}
.ws12{word-spacing:4.282667pt;}
.ws1d{word-spacing:4.458667pt;}
.wsa{word-spacing:5.514667pt;}
.ws10{word-spacing:6.277333pt;}
.ws1f{word-spacing:6.688000pt;}
.ws17{word-spacing:6.746667pt;}
.ws1b{word-spacing:6.864000pt;}
.wsf{word-spacing:6.922667pt;}
.ws18{word-spacing:7.040000pt;}
.ws11{word-spacing:7.098667pt;}
.ws24{word-spacing:7.274667pt;}
.ws6{word-spacing:7.333333pt;}
.ws4{word-spacing:9.472000pt;}
.ws3{word-spacing:11.861333pt;}
._2{margin-left:-0.891733pt;}
._0{width:0.933600pt;}
._1{width:11.861333pt;}
.fs3{font-size:24.000000pt;}
.fs0{font-size:32.000000pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y28{bottom:75.590667pt;}
.y27{bottom:107.239200pt;}
.y26{bottom:122.873867pt;}
.y25{bottom:138.508533pt;}
.y24{bottom:154.143200pt;}
.y23{bottom:177.609867pt;}
.y22{bottom:193.244533pt;}
.y21{bottom:208.879200pt;}
.y20{bottom:224.513867pt;}
.y1f{bottom:240.148533pt;}
.y1e{bottom:255.783200pt;}
.y1d{bottom:271.417867pt;}
.y49{bottom:271.796000pt;}
.y1c{bottom:287.052533pt;}
.y48{bottom:287.430667pt;}
.y1b{bottom:302.687200pt;}
.y47{bottom:303.065333pt;}
.y1a{bottom:318.321867pt;}
.y46{bottom:318.700000pt;}
.y19{bottom:333.956533pt;}
.y45{bottom:334.334667pt;}
.y18{bottom:349.591200pt;}
.y44{bottom:349.969333pt;}
.y17{bottom:365.225867pt;}
.y43{bottom:365.604000pt;}
.y16{bottom:380.860533pt;}
.y42{bottom:389.070667pt;}
.y15{bottom:404.327200pt;}
.y41{bottom:404.705333pt;}
.y14{bottom:419.961867pt;}
.y40{bottom:420.340000pt;}
.y13{bottom:435.596533pt;}
.y3f{bottom:435.974667pt;}
.y12{bottom:451.231200pt;}
.y3e{bottom:451.609333pt;}
.y11{bottom:466.865867pt;}
.y3d{bottom:467.244000pt;}
.y10{bottom:482.500533pt;}
.y3c{bottom:482.878667pt;}
.yf{bottom:498.135200pt;}
.y3b{bottom:498.513333pt;}
.ye{bottom:513.769867pt;}
.y3a{bottom:521.980000pt;}
.yd{bottom:529.404533pt;}
.y39{bottom:537.614667pt;}
.yc{bottom:545.039200pt;}
.y38{bottom:553.249333pt;}
.yb{bottom:560.673867pt;}
.y37{bottom:568.884000pt;}
.ya{bottom:576.308533pt;}
.y36{bottom:584.518667pt;}
.y35{bottom:600.153333pt;}
.y34{bottom:615.788000pt;}
.y33{bottom:631.422667pt;}
.y32{bottom:647.057333pt;}
.y31{bottom:662.692000pt;}
.y30{bottom:678.326667pt;}
.y2f{bottom:693.961333pt;}
.y2e{bottom:709.596000pt;}
.y2d{bottom:725.230667pt;}
.y2c{bottom:740.865333pt;}
.y9{bottom:743.268400pt;}
.y2b{bottom:756.500000pt;}
.y8{bottom:761.258667pt;}
.y2a{bottom:772.134667pt;}
.y7{bottom:784.238133pt;}
.y29{bottom:787.769333pt;}
.y5{bottom:818.104133pt;}
.y4{bottom:833.758667pt;}
.y3{bottom:840.424667pt;}
.y2{bottom:847.352933pt;}
.y6{bottom:863.458800pt;}
.h4{height:17.424000pt;}
.h5{height:31.402667pt;}
.h8{height:42.117188pt;}
.h2{height:46.796875pt;}
.h9{height:51.476562pt;}
.ha{height:51.619792pt;}
.h6{height:54.765625pt;}
.h7{height:56.312500pt;}
.h3{height:93.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:98.267733pt;}
.x1{left:100.868000pt;}
.x6{left:120.942400pt;}
.x4{left:123.545200pt;}
.x3{left:392.040667pt;}
.x2{left:463.360800pt;}
}




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