
    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_225138f1167db226812961eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;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_b7b477943dc492d41cd53c94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890137;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_8c72ac1e3103fc31881eed47.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863281;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_4a3f9a64ff51fdb1f39bf435.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_be7b5ff57eef0f2d4e24ef89.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-63.071100px;}
.ws17{word-spacing:-55.944000px;}
.ws13{word-spacing:-38.864100px;}
.ws3{word-spacing:-38.791500px;}
.ws21{word-spacing:-38.659200px;}
.ws38{word-spacing:-38.655600px;}
.wse{word-spacing:-38.649000px;}
.ws31{word-spacing:-38.645400px;}
.ws29{word-spacing:-38.636400px;}
.ws2b{word-spacing:-38.435400px;}
.ws2e{word-spacing:-38.427600px;}
.ws36{word-spacing:-38.426400px;}
.ws1a{word-spacing:-38.160000px;}
.ws12{word-spacing:-38.148600px;}
.ws11{word-spacing:-37.939200px;}
.ws5{word-spacing:-37.935900px;}
.ws26{word-spacing:-37.935600px;}
.ws1f{word-spacing:-37.935000px;}
.ws2c{word-spacing:-37.928100px;}
.ws32{word-spacing:-37.926300px;}
.ws4{word-spacing:-37.853700px;}
.ws15{word-spacing:-37.711200px;}
.ws1d{word-spacing:-37.696800px;}
.ws14{word-spacing:-37.440000px;}
.ws28{word-spacing:-37.207800px;}
.wsd{word-spacing:-36.493200px;}
.ws2f{word-spacing:-35.058000px;}
.ws2d{word-spacing:-34.344000px;}
.ws19{word-spacing:-34.331400px;}
.ws2{word-spacing:-33.547800px;}
.ws18{word-spacing:-33.403200px;}
.wsb{word-spacing:-30.742800px;}
.ws1b{word-spacing:-29.298000px;}
.ws37{word-spacing:-28.558800px;}
.ws27{word-spacing:-26.915400px;}
.ws1e{word-spacing:-26.171400px;}
.ws16{word-spacing:-24.766800px;}
.ws30{word-spacing:-23.527200px;}
.ws35{word-spacing:-23.296800px;}
.ws33{word-spacing:-22.600800px;}
.wsa{word-spacing:-18.499200px;}
.ws23{word-spacing:-16.126800px;}
.ws22{word-spacing:-15.825600px;}
.ws7{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.372400px;}
.ws20{word-spacing:-12.520800px;}
.ws2a{word-spacing:-8.393400px;}
.ws1c{word-spacing:-2.874600px;}
.wsc{word-spacing:-1.931400px;}
.ws8{word-spacing:3.601800px;}
.ws34{word-spacing:11.769600px;}
.ws9{word-spacing:16.072800px;}
.ws24{word-spacing:22.335900px;}
.ws25{word-spacing:22.759200px;}
.wsf{word-spacing:25.215900px;}
.ws10{word-spacing:25.639200px;}
.ws1{word-spacing:1807.277400px;}
._10{margin-left:-2.091600px;}
._2{margin-left:-1.089000px;}
._0{width:1.148400px;}
._1{width:18.347100px;}
._19{width:19.458300px;}
._7{width:20.815800px;}
._16{width:21.954600px;}
._b{width:22.969200px;}
._a{width:24.121200px;}
._c{width:28.080000px;}
._e{width:31.195800px;}
._9{width:32.761200px;}
._17{width:34.159200px;}
._13{width:36.000000px;}
._6{width:38.746200px;}
._3{width:42.606000px;}
._f{width:44.494800px;}
._15{width:48.929400px;}
._d{width:54.786600px;}
._12{width:58.326000px;}
._4{width:61.071000px;}
._18{width:69.596400px;}
._5{width:73.363800px;}
._11{width:79.328100px;}
._8{width:82.774200px;}
._14{width:95.766000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(0,51,204);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.471500px;}
.y3{bottom:72.825000px;}
.y2a{bottom:123.915000px;}
.y29{bottom:159.555000px;}
.y28{bottom:195.196500px;}
.y27{bottom:215.896500px;}
.y26{bottom:251.715000px;}
.y25{bottom:287.355000px;}
.y24{bottom:308.055000px;}
.y23{bottom:343.696500px;}
.y22{bottom:364.396500px;}
.y21{bottom:400.215000px;}
.y20{bottom:420.915000px;}
.y1f{bottom:456.555000px;}
.y1e{bottom:477.255000px;}
.y1d{bottom:512.896500px;}
.y1c{bottom:533.596500px;}
.y1b{bottom:554.296500px;}
.y1a{bottom:590.115000px;}
.y19{bottom:610.815000px;}
.y18{bottom:631.515000px;}
.y17{bottom:667.155000px;}
.y36{bottom:678.496500px;}
.y16{bottom:687.855000px;}
.y35{bottom:699.195000px;}
.y15{bottom:723.496500px;}
.y34{bottom:735.015000px;}
.y14{bottom:744.195000px;}
.y33{bottom:770.655000px;}
.y13{bottom:780.015000px;}
.y32{bottom:791.355000px;}
.y31{bottom:812.055000px;}
.y12{bottom:815.655000px;}
.y30{bottom:832.755000px;}
.y11{bottom:836.355000px;}
.y10{bottom:857.055000px;}
.y2f{bottom:868.395000px;}
.yf{bottom:892.695000px;}
.y2e{bottom:904.215000px;}
.ye{bottom:913.395000px;}
.y2d{bottom:924.915000px;}
.yd{bottom:934.095000px;}
.yc{bottom:954.795000px;}
.y2c{bottom:960.555000px;}
.yb{bottom:975.495000px;}
.y2b{bottom:981.255000px;}
.ya{bottom:996.195000px;}
.y9{bottom:1016.895000px;}
.y8{bottom:1037.595000px;}
.y7{bottom:1073.415000px;}
.y6{bottom:1109.055000px;}
.y5{bottom:1129.575000px;}
.y2{bottom:1150.455000px;}
.y1{bottom:1175.475000px;}
.h4{height:20.175000px;}
.h6{height:48.796875px;}
.h5{height:49.304150px;}
.h7{height:50.027344px;}
.h3{height:50.308594px;}
.h2{height:97.101563px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:138.238500px;}
.x4{left:150.660000px;}
.x1{left:153.000000px;}
.x2{left:154.080000px;}
.x5{left:241.200000px;}
.x3{left:475.350000px;}
.x6{left:576.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-56.063200pt;}
.ws17{word-spacing:-49.728000pt;}
.ws13{word-spacing:-34.545867pt;}
.ws3{word-spacing:-34.481333pt;}
.ws21{word-spacing:-34.363733pt;}
.ws38{word-spacing:-34.360533pt;}
.wse{word-spacing:-34.354667pt;}
.ws31{word-spacing:-34.351467pt;}
.ws29{word-spacing:-34.343467pt;}
.ws2b{word-spacing:-34.164800pt;}
.ws2e{word-spacing:-34.157867pt;}
.ws36{word-spacing:-34.156800pt;}
.ws1a{word-spacing:-33.920000pt;}
.ws12{word-spacing:-33.909867pt;}
.ws11{word-spacing:-33.723733pt;}
.ws5{word-spacing:-33.720800pt;}
.ws26{word-spacing:-33.720533pt;}
.ws1f{word-spacing:-33.720000pt;}
.ws2c{word-spacing:-33.713867pt;}
.ws32{word-spacing:-33.712267pt;}
.ws4{word-spacing:-33.647733pt;}
.ws15{word-spacing:-33.521067pt;}
.ws1d{word-spacing:-33.508267pt;}
.ws14{word-spacing:-33.280000pt;}
.ws28{word-spacing:-33.073600pt;}
.wsd{word-spacing:-32.438400pt;}
.ws2f{word-spacing:-31.162667pt;}
.ws2d{word-spacing:-30.528000pt;}
.ws19{word-spacing:-30.516800pt;}
.ws2{word-spacing:-29.820267pt;}
.ws18{word-spacing:-29.691733pt;}
.wsb{word-spacing:-27.326933pt;}
.ws1b{word-spacing:-26.042667pt;}
.ws37{word-spacing:-25.385600pt;}
.ws27{word-spacing:-23.924800pt;}
.ws1e{word-spacing:-23.263467pt;}
.ws16{word-spacing:-22.014933pt;}
.ws30{word-spacing:-20.913067pt;}
.ws35{word-spacing:-20.708267pt;}
.ws33{word-spacing:-20.089600pt;}
.wsa{word-spacing:-16.443733pt;}
.ws23{word-spacing:-14.334933pt;}
.ws22{word-spacing:-14.067200pt;}
.ws7{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.775467pt;}
.ws20{word-spacing:-11.129600pt;}
.ws2a{word-spacing:-7.460800pt;}
.ws1c{word-spacing:-2.555200pt;}
.wsc{word-spacing:-1.716800pt;}
.ws8{word-spacing:3.201600pt;}
.ws34{word-spacing:10.461867pt;}
.ws9{word-spacing:14.286933pt;}
.ws24{word-spacing:19.854133pt;}
.ws25{word-spacing:20.230400pt;}
.wsf{word-spacing:22.414133pt;}
.ws10{word-spacing:22.790400pt;}
.ws1{word-spacing:1606.468800pt;}
._10{margin-left:-1.859200pt;}
._2{margin-left:-0.968000pt;}
._0{width:1.020800pt;}
._1{width:16.308533pt;}
._19{width:17.296267pt;}
._7{width:18.502933pt;}
._16{width:19.515200pt;}
._b{width:20.417067pt;}
._a{width:21.441067pt;}
._c{width:24.960000pt;}
._e{width:27.729600pt;}
._9{width:29.121067pt;}
._17{width:30.363733pt;}
._13{width:32.000000pt;}
._6{width:34.441067pt;}
._3{width:37.872000pt;}
._f{width:39.550933pt;}
._15{width:43.492800pt;}
._d{width:48.699200pt;}
._12{width:51.845333pt;}
._4{width:54.285333pt;}
._18{width:61.863467pt;}
._5{width:65.212267pt;}
._11{width:70.513867pt;}
._8{width:73.577067pt;}
._14{width:85.125333pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.974667pt;}
.y3{bottom:64.733333pt;}
.y2a{bottom:110.146667pt;}
.y29{bottom:141.826667pt;}
.y28{bottom:173.508000pt;}
.y27{bottom:191.908000pt;}
.y26{bottom:223.746667pt;}
.y25{bottom:255.426667pt;}
.y24{bottom:273.826667pt;}
.y23{bottom:305.508000pt;}
.y22{bottom:323.908000pt;}
.y21{bottom:355.746667pt;}
.y20{bottom:374.146667pt;}
.y1f{bottom:405.826667pt;}
.y1e{bottom:424.226667pt;}
.y1d{bottom:455.908000pt;}
.y1c{bottom:474.308000pt;}
.y1b{bottom:492.708000pt;}
.y1a{bottom:524.546667pt;}
.y19{bottom:542.946667pt;}
.y18{bottom:561.346667pt;}
.y17{bottom:593.026667pt;}
.y36{bottom:603.108000pt;}
.y16{bottom:611.426667pt;}
.y35{bottom:621.506667pt;}
.y15{bottom:643.108000pt;}
.y34{bottom:653.346667pt;}
.y14{bottom:661.506667pt;}
.y33{bottom:685.026667pt;}
.y13{bottom:693.346667pt;}
.y32{bottom:703.426667pt;}
.y31{bottom:721.826667pt;}
.y12{bottom:725.026667pt;}
.y30{bottom:740.226667pt;}
.y11{bottom:743.426667pt;}
.y10{bottom:761.826667pt;}
.y2f{bottom:771.906667pt;}
.yf{bottom:793.506667pt;}
.y2e{bottom:803.746667pt;}
.ye{bottom:811.906667pt;}
.y2d{bottom:822.146667pt;}
.yd{bottom:830.306667pt;}
.yc{bottom:848.706667pt;}
.y2c{bottom:853.826667pt;}
.yb{bottom:867.106667pt;}
.y2b{bottom:872.226667pt;}
.ya{bottom:885.506667pt;}
.y9{bottom:903.906667pt;}
.y8{bottom:922.306667pt;}
.y7{bottom:954.146667pt;}
.y6{bottom:985.826667pt;}
.y5{bottom:1004.066667pt;}
.y2{bottom:1022.626667pt;}
.y1{bottom:1044.866667pt;}
.h4{height:17.933333pt;}
.h6{height:43.375000pt;}
.h5{height:43.825911pt;}
.h7{height:44.468750pt;}
.h3{height:44.718750pt;}
.h2{height:86.312500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:122.878667pt;}
.x4{left:133.920000pt;}
.x1{left:136.000000pt;}
.x2{left:136.960000pt;}
.x5{left:214.400000pt;}
.x3{left:422.533333pt;}
.x6{left:512.640000pt;}
}




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