
    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_8eb24acdad34e0b8a52e4221.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.926270;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_aa3d426a6ea171f1b588f865.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_b47441d049860b5849a2cdeb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.725000;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_8c20f3a64777ddb046e95029.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_8dc34b146d6ac856b4699eda.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_ab8ec9f7f16fb5c63e3dcb87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.747000;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_e605edf83fe573cac84221fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939453;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:ff8;src:url('chunks/assets/font_4b6c78c9ce59fc5a3603cfab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926000;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:ff9;src:url('chunks/assets/font_6ab81a0441e98de1f53d9379.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925293;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:ffa;src:url('chunks/assets/font_002bc469a8edeafcdf3fc869.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.926000;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:ffb;src:url('chunks/assets/font_ac7959d7ae96c0ca319732c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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:ffc;src:url('chunks/assets/font_c8e60c63aec302ff3daee291.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958008;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:ffd;src:url('chunks/assets/font_62003316d22a63370efb6a64.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959473;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:ffe;src:url('chunks/assets/font_39991c92358d2c5382641a6f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947754;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:fff;src:url('chunks/assets/font_e1a71c79807b234fba7c0725.woff2')format("woff");}.fff{font-family:fff;line-height:0.941895;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.065896px;}
.ls2{letter-spacing:0.065941px;}
.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;}
}
.ws1{word-spacing:-22.504393px;}
.ws0{word-spacing:-20.015999px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:198.035149px;}
._8{margin-left:-9.140629px;}
._1{margin-left:-6.156707px;}
._5{margin-left:-4.631806px;}
._2{margin-left:-3.124483px;}
._0{margin-left:-1.300781px;}
._7{width:2.799255px;}
._6{width:4.499952px;}
._3{width:184.555117px;}
._4{width:1933.384419px;}
.fc5{color:rgb(7,39,113);}
.fc4{color:transparent;}
.fc2{color:rgb(51,134,176);}
.fc1{color:rgb(9,33,112);}
.fc6{color:rgb(32,32,32);}
.fc3{color:rgb(68,68,68);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:44.999998px;}
.fs2{font-size:62.999997px;}
.fs0{font-size:71.999997px;}
.fs1{font-size:80.999997px;}
.fs4{font-size:89.999996px;}
.fs3{font-size:94.499996px;}
.y0{bottom:0.000000px;}
.y7{bottom:20.636711px;}
.y2a{bottom:24.011711px;}
.y1{bottom:42.363336px;}
.y6{bottom:76.886709px;}
.y5{bottom:105.011708px;}
.y29{bottom:112.886707px;}
.y3e{bottom:128.636707px;}
.y16{bottom:129.761707px;}
.y28{bottom:141.011706px;}
.y3d{bottom:142.136706px;}
.y3c{bottom:156.761705px;}
.y27{bottom:169.136705px;}
.y3b{bottom:170.261705px;}
.y3a{bottom:184.886704px;}
.y26{bottom:197.261704px;}
.y39{bottom:213.011703px;}
.y25{bottom:225.386703px;}
.y38{bottom:268.136701px;}
.y24{bottom:282.761700px;}
.y37{bottom:349.136697px;}
.y23{bottom:371.636697px;}
.y18{bottom:373.886696px;}
.y36{bottom:377.261696px;}
.y22{bottom:399.761695px;}
.y15{bottom:431.261694px;}
.y35{bottom:443.636694px;}
.y21{bottom:456.011693px;}
.y14{bottom:459.386693px;}
.y20{bottom:484.136692px;}
.y13{bottom:487.511692px;}
.y1f{bottom:512.261691px;}
.y12{bottom:515.636691px;}
.y11{bottom:543.761689px;}
.y1e{bottom:568.511688px;}
.y1d{bottom:596.636687px;}
.y10{bottom:600.011687px;}
.y1c{bottom:624.761686px;}
.yf{bottom:628.136686px;}
.y4{bottom:642.761685px;}
.y1b{bottom:652.886685px;}
.ye{bottom:656.261685px;}
.y3{bottom:670.886684px;}
.y1a{bottom:681.011684px;}
.yd{bottom:684.386683px;}
.y19{bottom:709.136682px;}
.y34{bottom:718.136682px;}
.y33{bottom:746.261681px;}
.y32{bottom:774.386680px;}
.y31{bottom:802.511679px;}
.y30{bottom:830.636677px;}
.y2f{bottom:858.761676px;}
.y17{bottom:913.886674px;}
.y2e{bottom:922.886674px;}
.y3f{bottom:948.761672px;}
.yc{bottom:971.261672px;}
.yb{bottom:999.386670px;}
.y2d{bottom:1006.136670px;}
.y2{bottom:1019.636670px;}
.ya{bottom:1027.511669px;}
.y2c{bottom:1034.261669px;}
.y2b{bottom:1062.386668px;}
.y8{bottom:1075.886667px;}
.y9{bottom:1083.761667px;}
.hd{height:32.695311px;}
.he{height:32.739256px;}
.hb{height:33.156737px;}
.hc{height:33.376463px;}
.h5{height:46.052998px;}
.h2{height:51.539060px;}
.h3{height:51.983998px;}
.ha{height:52.417967px;}
.h6{height:58.970212px;}
.h4{height:59.009763px;}
.h7{height:59.049314px;}
.h9{height:65.789997px;}
.h8{height:69.079497px;}
.h1{height:1104.011666px;}
.h0{height:1188.000000px;}
.w1{width:834.011677px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:22.499999px;}
.x1{left:41.624998px;}
.x2{left:100.124996px;}
.x3{left:112.429683px;}
.x5{left:116.314448px;}
.xb{left:147.374994px;}
.xd{left:157.218743px;}
.xc{left:163.406243px;}
.xa{left:190.212888px;}
.x8{left:215.208981px;}
.x10{left:240.152334px;}
.x9{left:241.892574px;}
.x12{left:263.091792px;}
.x6{left:267.732416px;}
.xf{left:271.283197px;}
.x7{left:280.107416px;}
.xe{left:289.617175px;}
.x11{left:299.689446px;}
.x14{left:301.464831px;}
.x13{left:415.792951px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.058574pt;}
.ls2{letter-spacing:0.058614pt;}
.ws1{word-spacing:-20.003905pt;}
.ws0{word-spacing:-17.791999pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:176.031244pt;}
._8{margin-left:-8.125004pt;}
._1{margin-left:-5.472628pt;}
._5{margin-left:-4.117161pt;}
._2{margin-left:-2.777318pt;}
._0{margin-left:-1.156250pt;}
._7{width:2.488227pt;}
._6{width:3.999957pt;}
._3{width:164.048993pt;}
._4{width:1718.563928pt;}
.fs5{font-size:39.999998pt;}
.fs2{font-size:55.999998pt;}
.fs0{font-size:63.999997pt;}
.fs1{font-size:71.999997pt;}
.fs4{font-size:79.999997pt;}
.fs3{font-size:83.999997pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:18.343743pt;}
.y2a{bottom:21.343743pt;}
.y1{bottom:37.656298pt;}
.y6{bottom:68.343741pt;}
.y5{bottom:93.343740pt;}
.y29{bottom:100.343740pt;}
.y3e{bottom:114.343739pt;}
.y16{bottom:115.343739pt;}
.y28{bottom:125.343739pt;}
.y3d{bottom:126.343739pt;}
.y3c{bottom:139.343738pt;}
.y27{bottom:150.343738pt;}
.y3b{bottom:151.343738pt;}
.y3a{bottom:164.343737pt;}
.y26{bottom:175.343737pt;}
.y39{bottom:189.343736pt;}
.y25{bottom:200.343736pt;}
.y38{bottom:238.343734pt;}
.y24{bottom:251.343734pt;}
.y37{bottom:310.343731pt;}
.y23{bottom:330.343730pt;}
.y18{bottom:332.343730pt;}
.y36{bottom:335.343730pt;}
.y22{bottom:355.343729pt;}
.y15{bottom:383.343728pt;}
.y35{bottom:394.343728pt;}
.y21{bottom:405.343727pt;}
.y14{bottom:408.343727pt;}
.y20{bottom:430.343726pt;}
.y13{bottom:433.343726pt;}
.y1f{bottom:455.343725pt;}
.y12{bottom:458.343725pt;}
.y11{bottom:483.343724pt;}
.y1e{bottom:505.343723pt;}
.y1d{bottom:530.343722pt;}
.y10{bottom:533.343722pt;}
.y1c{bottom:555.343721pt;}
.yf{bottom:558.343721pt;}
.y4{bottom:571.343720pt;}
.y1b{bottom:580.343720pt;}
.ye{bottom:583.343720pt;}
.y3{bottom:596.343719pt;}
.y1a{bottom:605.343719pt;}
.yd{bottom:608.343719pt;}
.y19{bottom:630.343718pt;}
.y34{bottom:638.343717pt;}
.y33{bottom:663.343716pt;}
.y32{bottom:688.343715pt;}
.y31{bottom:713.343714pt;}
.y30{bottom:738.343713pt;}
.y2f{bottom:763.343712pt;}
.y17{bottom:812.343710pt;}
.y2e{bottom:820.343710pt;}
.y3f{bottom:843.343709pt;}
.yc{bottom:863.343708pt;}
.yb{bottom:888.343707pt;}
.y2d{bottom:894.343707pt;}
.y2{bottom:906.343706pt;}
.ya{bottom:913.343706pt;}
.y2c{bottom:919.343706pt;}
.y2b{bottom:944.343705pt;}
.y8{bottom:956.343704pt;}
.y9{bottom:963.343704pt;}
.hd{height:29.062499pt;}
.he{height:29.101561pt;}
.hb{height:29.472655pt;}
.hc{height:29.667968pt;}
.h5{height:40.935998pt;}
.h2{height:45.812498pt;}
.h3{height:46.207998pt;}
.ha{height:46.593748pt;}
.h6{height:52.417967pt;}
.h4{height:52.453123pt;}
.h7{height:52.488279pt;}
.h9{height:58.479998pt;}
.h8{height:61.403997pt;}
.h1{height:981.343703pt;}
.h0{height:1056.000000pt;}
.w1{width:741.343713pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:19.999999pt;}
.x1{left:36.999998pt;}
.x2{left:88.999996pt;}
.x3{left:99.937496pt;}
.x5{left:103.390621pt;}
.xb{left:130.999995pt;}
.xd{left:139.749994pt;}
.xc{left:145.249994pt;}
.xa{left:169.078123pt;}
.x8{left:191.296872pt;}
.x10{left:213.468741pt;}
.x9{left:215.015621pt;}
.x12{left:233.859370pt;}
.x6{left:237.984370pt;}
.xf{left:241.140620pt;}
.x7{left:248.984370pt;}
.xe{left:257.437489pt;}
.x11{left:266.390619pt;}
.x14{left:267.968739pt;}
.x13{left:369.593735pt;}
}




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