
    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_6be91e85feb9045c5595a2a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_64c87fd0a6888a6e2283d9d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_fc597bfc71433de54cd0dee6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_2bb879787d5ee2de0368e304.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_f6c34cf8acdc8af11c2d2e1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_c3821a6c65a64a223201b962.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.673000;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_8e6637b335d13c19a7d8bd19.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.431000;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_2b840bd1edc90fcf4acff37b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.664000;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:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.021929px;}
.lsa{letter-spacing:2.984525px;}
.ls6{letter-spacing:2.990525px;}
.lsc{letter-spacing:3.422408px;}
.ls9{letter-spacing:3.440195px;}
.lse{letter-spacing:13.270183px;}
.ls3{letter-spacing:16.267140px;}
.ls4{letter-spacing:16.273140px;}
.ls1{letter-spacing:16.557841px;}
.lsd{letter-spacing:16.617617px;}
.ls7{letter-spacing:18.590212px;}
.lsb{letter-spacing:21.572525px;}
.ls5{letter-spacing:29.887800px;}
.ls8{letter-spacing:33.295009px;}
.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;}
}
.ws24{word-spacing:-16.605662px;}
.ws1a{word-spacing:-3.335478px;}
.ws22{word-spacing:-2.498620px;}
.ws21{word-spacing:-1.422659px;}
.wse{word-spacing:-1.303108px;}
.ws7{word-spacing:-0.227147px;}
.ws19{word-spacing:-0.059776px;}
.ws17{word-spacing:0.000000px;}
.ws13{word-spacing:0.011955px;}
.ws12{word-spacing:0.071731px;}
.wsa{word-spacing:0.669487px;}
.wsd{word-spacing:0.729262px;}
.ws15{word-spacing:1.924774px;}
.ws14{word-spacing:1.984550px;}
.wsf{word-spacing:2.462755px;}
.ws3{word-spacing:2.582306px;}
.ws16{word-spacing:2.701857px;}
.wsc{word-spacing:3.299613px;}
.ws4{word-spacing:3.538716px;}
.ws5{word-spacing:3.718042px;}
.ws1b{word-spacing:4.076696px;}
.ws23{word-spacing:4.136472px;}
.ws25{word-spacing:4.315798px;}
.ws10{word-spacing:4.853779px;}
.ws0{word-spacing:5.412522px;}
.ws11{word-spacing:5.630862px;}
.ws20{word-spacing:5.690637px;}
.ws8{word-spacing:5.750413px;}
.ws6{word-spacing:6.467720px;}
.wsb{word-spacing:7.125252px;}
.ws1c{word-spacing:7.185027px;}
.ws9{word-spacing:9.097846px;}
.ws1e{word-spacing:13.222363px;}
.ws26{word-spacing:13.270183px;}
.ws18{word-spacing:16.557841px;}
.ws1f{word-spacing:18.470660px;}
.ws1{word-spacing:23.312640px;}
.ws1d{word-spacing:29.768249px;}
.ws2{word-spacing:96.750773px;}
._3{margin-left:-5.260253px;}
._a{margin-left:-4.188592px;}
._0{margin-left:-2.685602px;}
._2{margin-left:-1.374839px;}
._5{width:1.673717px;}
._1{width:2.685602px;}
._12{width:3.873182px;}
._11{width:7.113296px;}
._10{width:8.125182px;}
._e{width:13.748388px;}
._8{width:18.287034px;}
._14{width:20.140078px;}
._f{width:21.813794px;}
._b{width:25.998086px;}
._4{width:27.855430px;}
._c{width:31.143088px;}
._d{width:33.414560px;}
._6{width:36.757694px;}
._9{width:38.132533px;}
._7{width:43.273235px;}
._13{width:62.345951px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1f{bottom:134.047500px;}
.y1e{bottom:191.656500px;}
.y1d{bottom:209.589000px;}
.y1c{bottom:242.320500px;}
.y1b{bottom:291.739500px;}
.y1a{bottom:309.672000px;}
.y19{bottom:327.604500px;}
.y18{bottom:345.537000px;}
.y17{bottom:363.469500px;}
.y16{bottom:381.403500px;}
.y15{bottom:399.336000px;}
.y14{bottom:417.268500px;}
.y13{bottom:435.201000px;}
.y12{bottom:453.133500px;}
.y11{bottom:485.865000px;}
.y10{bottom:535.284000px;}
.yf{bottom:553.216500px;}
.ye{bottom:571.150500px;}
.yd{bottom:589.083000px;}
.yc{bottom:607.015500px;}
.yb{bottom:624.948000px;}
.ya{bottom:642.880500px;}
.y9{bottom:660.813000px;}
.y8{bottom:678.747000px;}
.y7{bottom:696.679500px;}
.y6{bottom:714.612000px;}
.y2f{bottom:716.862000px;}
.y2e{bottom:734.794500px;}
.y5{bottom:747.343500px;}
.y2d{bottom:752.727000px;}
.y2c{bottom:770.659500px;}
.y2b{bottom:788.592000px;}
.y2a{bottom:806.526000px;}
.y4{bottom:811.705500px;}
.y29{bottom:824.458500px;}
.y28{bottom:842.391000px;}
.y3{bottom:846.874500px;}
.y27{bottom:860.323500px;}
.y26{bottom:878.256000px;}
.y2{bottom:890.211000px;}
.y25{bottom:896.188500px;}
.y24{bottom:914.122500px;}
.y1{bottom:923.088000px;}
.y23{bottom:932.055000px;}
.y22{bottom:949.987500px;}
.y21{bottom:967.920000px;}
.y20{bottom:985.852500px;}
.h4{height:44.831700px;}
.h6{height:49.473619px;}
.h5{height:49.479619px;}
.h2{height:50.498765px;}
.h3{height:60.254040px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:200.652000px;}
.x7{left:223.068000px;}
.x1{left:232.336500px;}
.x2{left:283.017000px;}
.x4{left:385.885500px;}
.x3{left:394.668000px;}
.x6{left:454.699500px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.019492pt;}
.lsa{letter-spacing:2.652911pt;}
.ls6{letter-spacing:2.658245pt;}
.lsc{letter-spacing:3.042140pt;}
.ls9{letter-spacing:3.057951pt;}
.lse{letter-spacing:11.795718pt;}
.ls3{letter-spacing:14.459680pt;}
.ls4{letter-spacing:14.465014pt;}
.ls1{letter-spacing:14.718081pt;}
.lsd{letter-spacing:14.771215pt;}
.ls7{letter-spacing:16.524633pt;}
.lsb{letter-spacing:19.175578pt;}
.ls5{letter-spacing:26.566933pt;}
.ls8{letter-spacing:29.595564pt;}
.ws24{word-spacing:-14.760588pt;}
.ws1a{word-spacing:-2.964870pt;}
.ws22{word-spacing:-2.220996pt;}
.ws21{word-spacing:-1.264586pt;}
.wse{word-spacing:-1.158318pt;}
.ws7{word-spacing:-0.201909pt;}
.ws19{word-spacing:-0.053134pt;}
.ws17{word-spacing:0.000000pt;}
.ws13{word-spacing:0.010627pt;}
.ws12{word-spacing:0.063761pt;}
.wsa{word-spacing:0.595099pt;}
.wsd{word-spacing:0.648233pt;}
.ws15{word-spacing:1.710911pt;}
.ws14{word-spacing:1.764044pt;}
.wsf{word-spacing:2.189115pt;}
.ws3{word-spacing:2.295383pt;}
.ws16{word-spacing:2.401651pt;}
.wsc{word-spacing:2.932989pt;}
.ws4{word-spacing:3.145525pt;}
.ws5{word-spacing:3.304927pt;}
.ws1b{word-spacing:3.623730pt;}
.ws23{word-spacing:3.676864pt;}
.ws25{word-spacing:3.836265pt;}
.ws10{word-spacing:4.314470pt;}
.ws0{word-spacing:4.811130pt;}
.ws11{word-spacing:5.005210pt;}
.ws20{word-spacing:5.058344pt;}
.ws8{word-spacing:5.111478pt;}
.ws6{word-spacing:5.749084pt;}
.wsb{word-spacing:6.333557pt;}
.ws1c{word-spacing:6.386691pt;}
.ws9{word-spacing:8.086975pt;}
.ws1e{word-spacing:11.753211pt;}
.ws26{word-spacing:11.795718pt;}
.ws18{word-spacing:14.718081pt;}
.ws1f{word-spacing:16.418365pt;}
.ws1{word-spacing:20.722347pt;}
.ws1d{word-spacing:26.460666pt;}
.ws2{word-spacing:86.000687pt;}
._3{margin-left:-4.675780pt;}
._a{margin-left:-3.723193pt;}
._0{margin-left:-2.387202pt;}
._2{margin-left:-1.222079pt;}
._5{width:1.487748pt;}
._1{width:2.387202pt;}
._12{width:3.442829pt;}
._11{width:6.322930pt;}
._10{width:7.222384pt;}
._e{width:12.220789pt;}
._8{width:16.255141pt;}
._14{width:17.902291pt;}
._f{width:19.390039pt;}
._b{width:23.109410pt;}
._4{width:24.760382pt;}
._c{width:27.682745pt;}
._d{width:29.701831pt;}
._6{width:32.673506pt;}
._9{width:33.895585pt;}
._7{width:38.465098pt;}
._13{width:55.418623pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:119.153333pt;}
.y1e{bottom:170.361333pt;}
.y1d{bottom:186.301333pt;}
.y1c{bottom:215.396000pt;}
.y1b{bottom:259.324000pt;}
.y1a{bottom:275.264000pt;}
.y19{bottom:291.204000pt;}
.y18{bottom:307.144000pt;}
.y17{bottom:323.084000pt;}
.y16{bottom:339.025333pt;}
.y15{bottom:354.965333pt;}
.y14{bottom:370.905333pt;}
.y13{bottom:386.845333pt;}
.y12{bottom:402.785333pt;}
.y11{bottom:431.880000pt;}
.y10{bottom:475.808000pt;}
.yf{bottom:491.748000pt;}
.ye{bottom:507.689333pt;}
.yd{bottom:523.629333pt;}
.yc{bottom:539.569333pt;}
.yb{bottom:555.509333pt;}
.ya{bottom:571.449333pt;}
.y9{bottom:587.389333pt;}
.y8{bottom:603.330667pt;}
.y7{bottom:619.270667pt;}
.y6{bottom:635.210667pt;}
.y2f{bottom:637.210667pt;}
.y2e{bottom:653.150667pt;}
.y5{bottom:664.305333pt;}
.y2d{bottom:669.090667pt;}
.y2c{bottom:685.030667pt;}
.y2b{bottom:700.970667pt;}
.y2a{bottom:716.912000pt;}
.y4{bottom:721.516000pt;}
.y29{bottom:732.852000pt;}
.y28{bottom:748.792000pt;}
.y3{bottom:752.777333pt;}
.y27{bottom:764.732000pt;}
.y26{bottom:780.672000pt;}
.y2{bottom:791.298667pt;}
.y25{bottom:796.612000pt;}
.y24{bottom:812.553333pt;}
.y1{bottom:820.522667pt;}
.y23{bottom:828.493333pt;}
.y22{bottom:844.433333pt;}
.y21{bottom:860.373333pt;}
.y20{bottom:876.313333pt;}
.h4{height:39.850400pt;}
.h6{height:43.976550pt;}
.h5{height:43.981884pt;}
.h2{height:44.887791pt;}
.h3{height:53.559147pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:178.357333pt;}
.x7{left:198.282667pt;}
.x1{left:206.521333pt;}
.x2{left:251.570667pt;}
.x4{left:343.009333pt;}
.x3{left:350.816000pt;}
.x6{left:404.177333pt;}
}




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