
    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_2bfa18a7993e5c3a22b688ca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d2e27d7fc416ea677ff4dfc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;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_463e822dbd97c9818d52d561.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_138f57aeb63b6e133e8ed2da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_08328963bd5123580907ae83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910500;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_9fb3f520de6de07dd333021a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919500;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_ca23d0a221e0c7f4c7503c00.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.965000;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_fd0f3d78abf3b2ccc3fe84c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919500;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_0d31d8136afb0a19fdeead4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.925491;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_030b159c1fa84682bd1b22ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919500;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_75440bca4b53e50977c2368b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923000;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_72c03133c2e2730afe28e494.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923500;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;}
.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:-15.904348px;}
.ws1{word-spacing:-12.723479px;}
.ws4{word-spacing:-11.842199px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:569.132774px;}
._3{margin-left:-31.808738px;}
._7{margin-left:-7.328174px;}
._6{margin-left:-5.783812px;}
._4{margin-left:-4.699963px;}
._0{margin-left:-3.562499px;}
._5{margin-left:-1.625130px;}
._2{width:1.718298px;}
._1{width:761.554626px;}
.fc2{color:rgb(33,37,41);}
.fc1{color:rgb(0,41,87);}
.fc4{color:rgb(170,170,170);}
.fc3{color:rgb(241,86,63);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.309996px;}
.fs0{font-size:47.999996px;}
.fs2{font-size:55.079994px;}
.fs3{font-size:68.849993px;}
.fs5{font-size:73.439992px;}
.fs1{font-size:137.699986px;}
.y0{bottom:0.000000px;}
.y2{bottom:25.320101px;}
.y3{bottom:44.632625px;}
.y1e{bottom:44.632652px;}
.y33{bottom:44.632668px;}
.y2b{bottom:44.632672px;}
.y50{bottom:44.633028px;}
.y31{bottom:87.209851px;}
.y30{bottom:107.864849px;}
.y2f{bottom:128.519847px;}
.y42{bottom:133.109924px;}
.y2e{bottom:149.174844px;}
.y41{bottom:153.764922px;}
.y2d{bottom:169.829842px;}
.y40{bottom:174.419920px;}
.y2c{bottom:190.484840px;}
.y3f{bottom:195.074918px;}
.y3e{bottom:215.729916px;}
.y32{bottom:250.154834px;}
.y29{bottom:250.154960px;}
.y4e{bottom:250.154986px;}
.y3d{bottom:270.809910px;}
.y28{bottom:270.809958px;}
.y4d{bottom:270.809984px;}
.y3c{bottom:291.464908px;}
.y27{bottom:291.464956px;}
.y4c{bottom:291.464981px;}
.y3b{bottom:312.119905px;}
.y26{bottom:312.119954px;}
.y4b{bottom:312.119979px;}
.y3a{bottom:332.774903px;}
.y39{bottom:353.429901px;}
.y25{bottom:367.199948px;}
.y4a{bottom:367.199974px;}
.y24{bottom:387.854946px;}
.y49{bottom:387.854971px;}
.y23{bottom:408.509944px;}
.y48{bottom:408.509969px;}
.y43{bottom:414.247395px;}
.y22{bottom:429.164942px;}
.y47{bottom:429.164967px;}
.y21{bottom:449.819939px;}
.y46{bottom:449.819965px;}
.y20{bottom:470.474937px;}
.y45{bottom:470.474963px;}
.y51{bottom:478.507176px;}
.y1f{bottom:491.129935px;}
.y44{bottom:491.129961px;}
.y1c{bottom:492.277450px;}
.y1b{bottom:512.932448px;}
.y1a{bottom:533.587446px;}
.y52{bottom:547.357169px;}
.y2a{bottom:551.947429px;}
.y4f{bottom:551.947454px;}
.y19{bottom:554.242444px;}
.y18{bottom:574.897442px;}
.y17{bottom:595.552440px;}
.y16{bottom:616.207437px;}
.y15{bottom:636.862435px;}
.y14{bottom:657.517433px;}
.y13{bottom:678.172431px;}
.y12{bottom:698.827429px;}
.y11{bottom:719.482427px;}
.y10{bottom:774.562421px;}
.yf{bottom:795.217419px;}
.ye{bottom:815.872417px;}
.yd{bottom:836.527414px;}
.yc{bottom:857.182412px;}
.yb{bottom:877.837410px;}
.ya{bottom:898.492408px;}
.y9{bottom:919.147406px;}
.y8{bottom:939.802404px;}
.y7{bottom:960.457402px;}
.y6{bottom:981.112399px;}
.y5{bottom:1036.192394px;}
.y38{bottom:1078.649825px;}
.y4{bottom:1086.682388px;}
.y37{bottom:1099.304823px;}
.y36{bottom:1119.959821px;}
.y35{bottom:1140.614819px;}
.y1d{bottom:1157.827381px;}
.y34{bottom:1161.269817px;}
.y1{bottom:1231.320003px;}
.h8{height:30.693327px;}
.he{height:30.796239px;}
.hb{height:32.428347px;}
.h2{height:34.945310px;}
.ha{height:40.621496px;}
.h5{height:40.924436px;}
.hd{height:41.061653px;}
.h6{height:42.742076px;}
.h7{height:51.155545px;}
.h10{height:54.565914px;}
.h4{height:102.311089px;}
.hf{height:1176.187091px;}
.h9{height:1176.187271px;}
.h3{height:1176.187379px;}
.hc{height:1176.187451px;}
.h0{height:1264.320000px;}
.h1{height:1264.500000px;}
.w2{width:807.839894px;}
.w0{width:893.879970px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:17.212498px;}
.x1{left:39.679684px;}
.x2{left:43.499996px;}
.x6{left:271.796110px;}
.x8{left:285.691611px;}
.x5{left:323.290167px;}
.x9{left:330.713057px;}
.x7{left:361.121804px;}
.x4{left:398.182458px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-14.137199pt;}
.ws1{word-spacing:-11.309759pt;}
.ws4{word-spacing:-10.526399pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:505.895799pt;}
._3{margin-left:-28.274434pt;}
._7{margin-left:-6.513933pt;}
._6{margin-left:-5.141166pt;}
._4{margin-left:-4.177745pt;}
._0{margin-left:-3.166666pt;}
._5{margin-left:-1.444560pt;}
._2{width:1.527376pt;}
._1{width:676.937446pt;}
.fs4{font-size:36.719996pt;}
.fs0{font-size:42.666663pt;}
.fs2{font-size:48.959995pt;}
.fs3{font-size:61.199994pt;}
.fs5{font-size:65.279993pt;}
.fs1{font-size:122.399987pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:22.506757pt;}
.y3{bottom:39.673444pt;}
.y1e{bottom:39.673469pt;}
.y33{bottom:39.673483pt;}
.y2b{bottom:39.673486pt;}
.y50{bottom:39.673803pt;}
.y31{bottom:77.519867pt;}
.y30{bottom:95.879866pt;}
.y2f{bottom:114.239864pt;}
.y42{bottom:118.319933pt;}
.y2e{bottom:132.599862pt;}
.y41{bottom:136.679931pt;}
.y2d{bottom:150.959860pt;}
.y40{bottom:155.039929pt;}
.y2c{bottom:169.319858pt;}
.y3f{bottom:173.399927pt;}
.y3e{bottom:191.759925pt;}
.y32{bottom:222.359852pt;}
.y29{bottom:222.359965pt;}
.y4e{bottom:222.359987pt;}
.y3d{bottom:240.719920pt;}
.y28{bottom:240.719963pt;}
.y4d{bottom:240.719985pt;}
.y3c{bottom:259.079918pt;}
.y27{bottom:259.079961pt;}
.y4c{bottom:259.079984pt;}
.y3b{bottom:277.439916pt;}
.y26{bottom:277.439959pt;}
.y4b{bottom:277.439982pt;}
.y3a{bottom:295.799914pt;}
.y39{bottom:314.159912pt;}
.y25{bottom:326.399954pt;}
.y4a{bottom:326.399976pt;}
.y24{bottom:344.759952pt;}
.y49{bottom:344.759975pt;}
.y23{bottom:363.119950pt;}
.y48{bottom:363.119973pt;}
.y43{bottom:368.219907pt;}
.y22{bottom:381.479948pt;}
.y47{bottom:381.479971pt;}
.y21{bottom:399.839946pt;}
.y46{bottom:399.839969pt;}
.y20{bottom:418.199944pt;}
.y45{bottom:418.199967pt;}
.y51{bottom:425.339712pt;}
.y1f{bottom:436.559942pt;}
.y44{bottom:436.559965pt;}
.y1c{bottom:437.579956pt;}
.y1b{bottom:455.939954pt;}
.y1a{bottom:474.299952pt;}
.y52{bottom:486.539705pt;}
.y2a{bottom:490.619937pt;}
.y4f{bottom:490.619959pt;}
.y19{bottom:492.659950pt;}
.y18{bottom:511.019948pt;}
.y17{bottom:529.379946pt;}
.y16{bottom:547.739944pt;}
.y15{bottom:566.099942pt;}
.y14{bottom:584.459941pt;}
.y13{bottom:602.819939pt;}
.y12{bottom:621.179937pt;}
.y11{bottom:639.539935pt;}
.y10{bottom:688.499930pt;}
.yf{bottom:706.859928pt;}
.ye{bottom:725.219926pt;}
.yd{bottom:743.579924pt;}
.yc{bottom:761.939922pt;}
.yb{bottom:780.299920pt;}
.ya{bottom:798.659918pt;}
.y9{bottom:817.019916pt;}
.y8{bottom:835.379914pt;}
.y7{bottom:853.739912pt;}
.y6{bottom:872.099911pt;}
.y5{bottom:921.059905pt;}
.y38{bottom:958.799845pt;}
.y4{bottom:965.939901pt;}
.y37{bottom:977.159843pt;}
.y36{bottom:995.519841pt;}
.y35{bottom:1013.879839pt;}
.y1d{bottom:1029.179894pt;}
.y34{bottom:1032.239837pt;}
.y1{bottom:1094.506669pt;}
.h8{height:27.282957pt;}
.he{height:27.374435pt;}
.hb{height:28.825197pt;}
.h2{height:31.062497pt;}
.ha{height:36.107996pt;}
.h5{height:36.377276pt;}
.hd{height:36.499247pt;}
.h6{height:37.992956pt;}
.h7{height:45.471595pt;}
.h10{height:48.503035pt;}
.h4{height:90.943191pt;}
.hf{height:1045.499636pt;}
.h9{height:1045.499796pt;}
.h3{height:1045.499892pt;}
.hc{height:1045.499956pt;}
.h0{height:1123.840000pt;}
.h1{height:1124.000000pt;}
.w2{width:718.079906pt;}
.w0{width:794.559973pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:15.299998pt;}
.x1{left:35.270830pt;}
.x2{left:38.666663pt;}
.x6{left:241.596542pt;}
.x8{left:253.948098pt;}
.x5{left:287.369038pt;}
.x9{left:293.967162pt;}
.x7{left:320.997159pt;}
.x4{left:353.939963pt;}
}




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