
    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_552ee7c17ccc4976067d9292.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_b600680b59e091e836577c53.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_3312172c8bb1e7e928c447cc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_81ef1de11f2695d34cdce45e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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);}
.v1{vertical-align:-96.480000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.684000px;}
.ls5{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.378600px;}
.lsc{letter-spacing:0.540000px;}
.ls7{letter-spacing:1.980000px;}
.lsa{letter-spacing:2.700000px;}
.lsb{letter-spacing:9.900000px;}
.ls8{letter-spacing:10.620000px;}
.ls10{letter-spacing:21.221280px;}
.ls1{letter-spacing:31.500000px;}
.ls2{letter-spacing:57.420000px;}
.lse{letter-spacing:58.860000px;}
.ls0{letter-spacing:84.780000px;}
.lsf{letter-spacing:720.696000px;}
.ls12{letter-spacing:1531.560000px;}
.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:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-21.041280px;}
.ws4{word-spacing:-20.376000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-5.896800px;}
._1{margin-left:-3.875040px;}
._0{margin-left:-2.864160px;}
._2{margin-left:-1.684800px;}
._5{width:1.095120px;}
._9{width:2.937840px;}
._12{width:4.380480px;}
._f{width:5.391360px;}
._19{width:6.486480px;}
._b{width:7.750080px;}
._2b{width:8.760960px;}
._17{width:9.771840px;}
._16{width:10.782720px;}
._15{width:11.793600px;}
._1f{width:12.849600px;}
._28{width:14.191440px;}
._1a{width:15.752880px;}
._1c{width:17.269200px;}
._a{width:18.537600px;}
._2c{width:19.960080px;}
._25{width:22.165920px;}
._2a{width:24.149040px;}
._d{width:25.278960px;}
._e{width:26.973120px;}
._29{width:28.047120px;}
._1b{width:29.585760px;}
._10{width:30.651600px;}
._11{width:32.011200px;}
._1e{width:33.611760px;}
._7{width:34.791120px;}
._6{width:35.886240px;}
._22{width:38.203680px;}
._20{width:39.677040px;}
._21{width:40.856160px;}
._26{width:41.951520px;}
._27{width:42.962400px;}
._2f{width:52.868160px;}
._13{width:56.440800px;}
._14{width:57.594000px;}
._2d{width:58.631040px;}
._2e{width:59.923680px;}
._24{width:74.720880px;}
._23{width:75.816000px;}
._18{width:77.753520px;}
._8{width:85.015920px;}
._c{width:104.373360px;}
._4{width:121.642560px;}
._3{width:122.971440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y55{bottom:110.736000px;}
.y2b{bottom:120.996000px;}
.y54{bottom:134.856000px;}
.y2a{bottom:145.116000px;}
.y53{bottom:159.150000px;}
.y29{bottom:169.230000px;}
.y52{bottom:183.270000px;}
.y28{bottom:193.350000px;}
.y51{bottom:207.390000px;}
.y27{bottom:217.470000px;}
.y50{bottom:231.510000px;}
.y26{bottom:241.770000px;}
.y4f{bottom:255.630000px;}
.y25{bottom:265.890000px;}
.y4e{bottom:279.795000px;}
.y24{bottom:302.115000px;}
.y4d{bottom:303.915000px;}
.y23{bottom:326.235000px;}
.y4c{bottom:328.215000px;}
.y22{bottom:350.355000px;}
.y4b{bottom:352.335000px;}
.y21{bottom:374.475000px;}
.y4a{bottom:376.455000px;}
.y20{bottom:398.595000px;}
.y49{bottom:400.575000px;}
.y1f{bottom:422.715000px;}
.y48{bottom:424.695000px;}
.y1e{bottom:447.015000px;}
.y47{bottom:448.815000px;}
.y46{bottom:473.115000px;}
.y1d{bottom:483.015000px;}
.y45{bottom:497.235000px;}
.y1c{bottom:507.315000px;}
.y44{bottom:521.355000px;}
.y1b{bottom:531.435000px;}
.y43{bottom:545.475000px;}
.y1a{bottom:555.555000px;}
.y42{bottom:569.625000px;}
.y19{bottom:579.705000px;}
.y41{bottom:593.745000px;}
.y18{bottom:603.825000px;}
.y40{bottom:618.045000px;}
.y17{bottom:640.005000px;}
.y3f{bottom:642.165000px;}
.y16{bottom:664.125000px;}
.y3e{bottom:666.285000px;}
.y15{bottom:688.245000px;}
.y3d{bottom:690.405000px;}
.y14{bottom:712.365000px;}
.y3c{bottom:714.525000px;}
.y13{bottom:736.665000px;}
.y3b{bottom:738.645000px;}
.y12{bottom:760.785000px;}
.y3a{bottom:762.765000px;}
.y39{bottom:787.065000px;}
.y11{bottom:796.965000px;}
.y38{bottom:811.185000px;}
.y10{bottom:821.085000px;}
.y37{bottom:835.305000px;}
.yf{bottom:845.250000px;}
.y36{bottom:859.470000px;}
.ye{bottom:869.370000px;}
.y35{bottom:883.590000px;}
.yd{bottom:893.490000px;}
.y34{bottom:907.710000px;}
.yc{bottom:917.610000px;}
.y33{bottom:932.010000px;}
.yb{bottom:947.850000px;}
.y32{bottom:956.130000px;}
.ya{bottom:971.970000px;}
.y31{bottom:980.250000px;}
.y30{bottom:1004.370000px;}
.y9{bottom:1006.890000px;}
.y2f{bottom:1028.490000px;}
.y8{bottom:1031.010000px;}
.y2e{bottom:1052.610000px;}
.y7{bottom:1065.930000px;}
.y2d{bottom:1076.730000px;}
.y6{bottom:1090.230000px;}
.y2c{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h3{height:74.820586px;}
.h5{height:75.519844px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h6{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x7{left:90.899987px;}
.xc{left:112.355987px;}
.x3{left:136.835987px;}
.xb{left:139.355987px;}
.x5{left:141.515987px;}
.xa{left:166.349987px;}
.x4{left:169.589987px;}
.x6{left:175.169987px;}
.x8{left:206.669987px;}
.x9{left:355.034987px;}
.x2{left:430.814987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.608000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.336533pt;}
.lsc{letter-spacing:0.480000pt;}
.ls7{letter-spacing:1.760000pt;}
.lsa{letter-spacing:2.400000pt;}
.lsb{letter-spacing:8.800000pt;}
.ls8{letter-spacing:9.440000pt;}
.ls10{letter-spacing:18.863360pt;}
.ls1{letter-spacing:28.000000pt;}
.ls2{letter-spacing:51.040000pt;}
.lse{letter-spacing:52.320000pt;}
.ls0{letter-spacing:75.360000pt;}
.lsf{letter-spacing:640.618667pt;}
.ls12{letter-spacing:1361.386667pt;}
.ws2{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.703360pt;}
.ws4{word-spacing:-18.112000pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-5.241600pt;}
._1{margin-left:-3.444480pt;}
._0{margin-left:-2.545920pt;}
._2{margin-left:-1.497600pt;}
._5{width:0.973440pt;}
._9{width:2.611413pt;}
._12{width:3.893760pt;}
._f{width:4.792320pt;}
._19{width:5.765760pt;}
._b{width:6.888960pt;}
._2b{width:7.787520pt;}
._17{width:8.686080pt;}
._16{width:9.584640pt;}
._15{width:10.483200pt;}
._1f{width:11.421867pt;}
._28{width:12.614613pt;}
._1a{width:14.002560pt;}
._1c{width:15.350400pt;}
._a{width:16.477867pt;}
._2c{width:17.742293pt;}
._25{width:19.703040pt;}
._2a{width:21.465813pt;}
._d{width:22.470187pt;}
._e{width:23.976107pt;}
._29{width:24.930773pt;}
._1b{width:26.298453pt;}
._10{width:27.245867pt;}
._11{width:28.454400pt;}
._1e{width:29.877120pt;}
._7{width:30.925440pt;}
._6{width:31.898880pt;}
._22{width:33.958827pt;}
._20{width:35.268480pt;}
._21{width:36.316587pt;}
._26{width:37.290240pt;}
._27{width:38.188800pt;}
._2f{width:46.993920pt;}
._13{width:50.169600pt;}
._14{width:51.194667pt;}
._2d{width:52.116480pt;}
._2e{width:53.265493pt;}
._24{width:66.418560pt;}
._23{width:67.392000pt;}
._18{width:69.114240pt;}
._8{width:75.569707pt;}
._c{width:92.776320pt;}
._4{width:108.126720pt;}
._3{width:109.307947pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y55{bottom:98.432000pt;}
.y2b{bottom:107.552000pt;}
.y54{bottom:119.872000pt;}
.y2a{bottom:128.992000pt;}
.y53{bottom:141.466667pt;}
.y29{bottom:150.426667pt;}
.y52{bottom:162.906667pt;}
.y28{bottom:171.866667pt;}
.y51{bottom:184.346667pt;}
.y27{bottom:193.306667pt;}
.y50{bottom:205.786667pt;}
.y26{bottom:214.906667pt;}
.y4f{bottom:227.226667pt;}
.y25{bottom:236.346667pt;}
.y4e{bottom:248.706667pt;}
.y24{bottom:268.546667pt;}
.y4d{bottom:270.146667pt;}
.y23{bottom:289.986667pt;}
.y4c{bottom:291.746667pt;}
.y22{bottom:311.426667pt;}
.y4b{bottom:313.186667pt;}
.y21{bottom:332.866667pt;}
.y4a{bottom:334.626667pt;}
.y20{bottom:354.306667pt;}
.y49{bottom:356.066667pt;}
.y1f{bottom:375.746667pt;}
.y48{bottom:377.506667pt;}
.y1e{bottom:397.346667pt;}
.y47{bottom:398.946667pt;}
.y46{bottom:420.546667pt;}
.y1d{bottom:429.346667pt;}
.y45{bottom:441.986667pt;}
.y1c{bottom:450.946667pt;}
.y44{bottom:463.426667pt;}
.y1b{bottom:472.386667pt;}
.y43{bottom:484.866667pt;}
.y1a{bottom:493.826667pt;}
.y42{bottom:506.333333pt;}
.y19{bottom:515.293333pt;}
.y41{bottom:527.773333pt;}
.y18{bottom:536.733333pt;}
.y40{bottom:549.373333pt;}
.y17{bottom:568.893333pt;}
.y3f{bottom:570.813333pt;}
.y16{bottom:590.333333pt;}
.y3e{bottom:592.253333pt;}
.y15{bottom:611.773333pt;}
.y3d{bottom:613.693333pt;}
.y14{bottom:633.213333pt;}
.y3c{bottom:635.133333pt;}
.y13{bottom:654.813333pt;}
.y3b{bottom:656.573333pt;}
.y12{bottom:676.253333pt;}
.y3a{bottom:678.013333pt;}
.y39{bottom:699.613333pt;}
.y11{bottom:708.413333pt;}
.y38{bottom:721.053333pt;}
.y10{bottom:729.853333pt;}
.y37{bottom:742.493333pt;}
.yf{bottom:751.333333pt;}
.y36{bottom:763.973333pt;}
.ye{bottom:772.773333pt;}
.y35{bottom:785.413333pt;}
.yd{bottom:794.213333pt;}
.y34{bottom:806.853333pt;}
.yc{bottom:815.653333pt;}
.y33{bottom:828.453333pt;}
.yb{bottom:842.533333pt;}
.y32{bottom:849.893333pt;}
.ya{bottom:863.973333pt;}
.y31{bottom:871.333333pt;}
.y30{bottom:892.773333pt;}
.y9{bottom:895.013333pt;}
.y2f{bottom:914.213333pt;}
.y8{bottom:916.453333pt;}
.y2e{bottom:935.653333pt;}
.y7{bottom:947.493333pt;}
.y2d{bottom:957.093333pt;}
.y6{bottom:969.093333pt;}
.y2c{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h3{height:66.507188pt;}
.h5{height:67.128750pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h6{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x7{left:80.799988pt;}
.xc{left:99.871988pt;}
.x3{left:121.631988pt;}
.xb{left:123.871988pt;}
.x5{left:125.791988pt;}
.xa{left:147.866655pt;}
.x4{left:150.746655pt;}
.x6{left:155.706655pt;}
.x8{left:183.706655pt;}
.x9{left:315.586655pt;}
.x2{left:382.946655pt;}
}




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