
    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_c1357f652b3ec1a5f783e526.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_cd26ec8458989a98f471a7dd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ce777bb1ebd03ae84a9761c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_49e19892b04074d2182e0b2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.228000px;}
.ls2{letter-spacing:179.712000px;}
.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;}
}
.ws3{word-spacing:-19.500000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws5{word-spacing:-16.500000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws6{word-spacing:0.000000px;}
._1b{margin-left:-7.992000px;}
._12{margin-left:-6.990000px;}
._4{margin-left:-5.778000px;}
._2{margin-left:-4.500000px;}
._5{margin-left:-3.450000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._f{width:2.784000px;}
._a{width:3.822000px;}
._6{width:5.082000px;}
._16{width:6.144000px;}
._b{width:7.392000px;}
._7{width:8.646000px;}
._8{width:9.966000px;}
._9{width:11.418000px;}
._10{width:12.804000px;}
._13{width:13.854000px;}
._e{width:14.982000px;}
._1c{width:16.236000px;}
._d{width:17.754000px;}
._18{width:19.704000px;}
._c{width:21.054000px;}
._1d{width:22.632000px;}
._11{width:24.270000px;}
._14{width:29.472000px;}
._15{width:32.514000px;}
._19{width:34.644000px;}
._17{width:41.544000px;}
._1a{width:48.666000px;}
._20{width:134.688000px;}
._1e{width:177.900000px;}
._1f{width:635.304000px;}
.fc4{color:rgb(128,128,128);}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y3b{bottom:87.541500px;}
.y5b{bottom:89.641500px;}
.y63{bottom:156.391500px;}
.y62{bottom:187.291500px;}
.y5a{bottom:187.441500px;}
.y61{bottom:218.341500px;}
.y59{bottom:218.491500px;}
.y60{bottom:249.391500px;}
.y58{bottom:249.541500px;}
.y5f{bottom:280.441500px;}
.y57{bottom:280.591500px;}
.y5e{bottom:311.491500px;}
.y56{bottom:311.641500px;}
.y5d{bottom:342.541500px;}
.y55{bottom:342.691500px;}
.y5c{bottom:373.591500px;}
.y54{bottom:373.741500px;}
.y53{bottom:404.791500px;}
.y1e{bottom:426.691500px;}
.y52{bottom:435.841500px;}
.y1d{bottom:443.941500px;}
.y3a{bottom:447.091500px;}
.y1c{bottom:461.341500px;}
.y51{bottom:466.891500px;}
.y39{bottom:468.841500px;}
.y1b{bottom:478.591500px;}
.y38{bottom:490.591500px;}
.y1a{bottom:495.991500px;}
.y50{bottom:497.941500px;}
.y37{bottom:512.341500px;}
.y19{bottom:513.241500px;}
.y4f{bottom:528.991500px;}
.y18{bottom:530.641500px;}
.y36{bottom:534.091500px;}
.y17{bottom:547.891500px;}
.y35{bottom:555.841500px;}
.y4e{bottom:560.041500px;}
.y16{bottom:565.291500px;}
.y34{bottom:577.591500px;}
.y15{bottom:582.541500px;}
.y4d{bottom:591.091500px;}
.y33{bottom:599.341500px;}
.y14{bottom:599.941500px;}
.y13{bottom:617.191500px;}
.y32{bottom:621.091500px;}
.y4c{bottom:622.141500px;}
.y12{bottom:634.591500px;}
.y31{bottom:642.841500px;}
.y11{bottom:651.841500px;}
.y4b{bottom:653.191500px;}
.y30{bottom:664.591500px;}
.y10{bottom:669.241500px;}
.y4a{bottom:684.241500px;}
.y2f{bottom:686.341500px;}
.yf{bottom:686.491500px;}
.y2e{bottom:708.091500px;}
.y49{bottom:715.291500px;}
.ye{bottom:724.291500px;}
.y2d{bottom:729.841500px;}
.yd{bottom:741.691500px;}
.y48{bottom:746.341500px;}
.y2c{bottom:751.591500px;}
.y2b{bottom:773.341500px;}
.yc{bottom:776.341500px;}
.y47{bottom:777.391500px;}
.y2a{bottom:795.091500px;}
.y46{bottom:808.441500px;}
.yb{bottom:810.841500px;}
.y29{bottom:816.841500px;}
.ya{bottom:828.241500px;}
.y28{bottom:838.591500px;}
.y45{bottom:839.491500px;}
.y27{bottom:860.341500px;}
.y9{bottom:862.741500px;}
.y44{bottom:870.541500px;}
.y8{bottom:879.991500px;}
.y26{bottom:882.091500px;}
.y7{bottom:897.391500px;}
.y43{bottom:901.591500px;}
.y25{bottom:903.841500px;}
.y6{bottom:931.891500px;}
.y42{bottom:932.641500px;}
.y24{bottom:933.391500px;}
.y5{bottom:949.291500px;}
.y41{bottom:963.691500px;}
.y23{bottom:976.291500px;}
.y40{bottom:994.741500px;}
.y22{bottom:1012.741500px;}
.y3f{bottom:1025.791500px;}
.y21{bottom:1038.541500px;}
.y3e{bottom:1056.841500px;}
.y20{bottom:1064.191500px;}
.y3d{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.y3c{bottom:1118.941500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.hc{height:33.796875px;}
.h4{height:34.968750px;}
.h6{height:43.710938px;}
.hb{height:46.470703px;}
.h3{height:50.695312px;}
.h7{height:52.646484px;}
.h5{height:53.291016px;}
.h9{height:57.911133px;}
.hd{height:63.175781px;}
.ha{height:63.949219px;}
.h8{height:69.278320px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x9{left:87.300000px;}
.x8{left:140.550000px;}
.x6{left:347.400000px;}
.x7{left:349.200000px;}
.x3{left:361.800000px;}
.x2{left:379.650000px;}
.x4{left:380.850000px;}
.x5{left:535.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls2{letter-spacing:159.744000pt;}
.ws3{word-spacing:-17.333333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws5{word-spacing:-14.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws6{word-spacing:0.000000pt;}
._1b{margin-left:-7.104000pt;}
._12{margin-left:-6.213333pt;}
._4{margin-left:-5.136000pt;}
._2{margin-left:-4.000000pt;}
._5{margin-left:-3.066667pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._f{width:2.474667pt;}
._a{width:3.397333pt;}
._6{width:4.517333pt;}
._16{width:5.461333pt;}
._b{width:6.570667pt;}
._7{width:7.685333pt;}
._8{width:8.858667pt;}
._9{width:10.149333pt;}
._10{width:11.381333pt;}
._13{width:12.314667pt;}
._e{width:13.317333pt;}
._1c{width:14.432000pt;}
._d{width:15.781333pt;}
._18{width:17.514667pt;}
._c{width:18.714667pt;}
._1d{width:20.117333pt;}
._11{width:21.573333pt;}
._14{width:26.197333pt;}
._15{width:28.901333pt;}
._19{width:30.794667pt;}
._17{width:36.928000pt;}
._1a{width:43.258667pt;}
._20{width:119.722667pt;}
._1e{width:158.133333pt;}
._1f{width:564.714667pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y3b{bottom:77.814667pt;}
.y5b{bottom:79.681333pt;}
.y63{bottom:139.014667pt;}
.y62{bottom:166.481333pt;}
.y5a{bottom:166.614667pt;}
.y61{bottom:194.081333pt;}
.y59{bottom:194.214667pt;}
.y60{bottom:221.681333pt;}
.y58{bottom:221.814667pt;}
.y5f{bottom:249.281333pt;}
.y57{bottom:249.414667pt;}
.y5e{bottom:276.881333pt;}
.y56{bottom:277.014667pt;}
.y5d{bottom:304.481333pt;}
.y55{bottom:304.614667pt;}
.y5c{bottom:332.081333pt;}
.y54{bottom:332.214667pt;}
.y53{bottom:359.814667pt;}
.y1e{bottom:379.281333pt;}
.y52{bottom:387.414667pt;}
.y1d{bottom:394.614667pt;}
.y3a{bottom:397.414667pt;}
.y1c{bottom:410.081333pt;}
.y51{bottom:415.014667pt;}
.y39{bottom:416.748000pt;}
.y1b{bottom:425.414667pt;}
.y38{bottom:436.081333pt;}
.y1a{bottom:440.881333pt;}
.y50{bottom:442.614667pt;}
.y37{bottom:455.414667pt;}
.y19{bottom:456.214667pt;}
.y4f{bottom:470.214667pt;}
.y18{bottom:471.681333pt;}
.y36{bottom:474.748000pt;}
.y17{bottom:487.014667pt;}
.y35{bottom:494.081333pt;}
.y4e{bottom:497.814667pt;}
.y16{bottom:502.481333pt;}
.y34{bottom:513.414667pt;}
.y15{bottom:517.814667pt;}
.y4d{bottom:525.414667pt;}
.y33{bottom:532.748000pt;}
.y14{bottom:533.281333pt;}
.y13{bottom:548.614667pt;}
.y32{bottom:552.081333pt;}
.y4c{bottom:553.014667pt;}
.y12{bottom:564.081333pt;}
.y31{bottom:571.414667pt;}
.y11{bottom:579.414667pt;}
.y4b{bottom:580.614667pt;}
.y30{bottom:590.748000pt;}
.y10{bottom:594.881333pt;}
.y4a{bottom:608.214667pt;}
.y2f{bottom:610.081333pt;}
.yf{bottom:610.214667pt;}
.y2e{bottom:629.414667pt;}
.y49{bottom:635.814667pt;}
.ye{bottom:643.814667pt;}
.y2d{bottom:648.748000pt;}
.yd{bottom:659.281333pt;}
.y48{bottom:663.414667pt;}
.y2c{bottom:668.081333pt;}
.y2b{bottom:687.414667pt;}
.yc{bottom:690.081333pt;}
.y47{bottom:691.014667pt;}
.y2a{bottom:706.748000pt;}
.y46{bottom:718.614667pt;}
.yb{bottom:720.748000pt;}
.y29{bottom:726.081333pt;}
.ya{bottom:736.214667pt;}
.y28{bottom:745.414667pt;}
.y45{bottom:746.214667pt;}
.y27{bottom:764.748000pt;}
.y9{bottom:766.881333pt;}
.y44{bottom:773.814667pt;}
.y8{bottom:782.214667pt;}
.y26{bottom:784.081333pt;}
.y7{bottom:797.681333pt;}
.y43{bottom:801.414667pt;}
.y25{bottom:803.414667pt;}
.y6{bottom:828.348000pt;}
.y42{bottom:829.014667pt;}
.y24{bottom:829.681333pt;}
.y5{bottom:843.814667pt;}
.y41{bottom:856.614667pt;}
.y23{bottom:867.814667pt;}
.y40{bottom:884.214667pt;}
.y22{bottom:900.214667pt;}
.y3f{bottom:911.814667pt;}
.y21{bottom:923.148000pt;}
.y3e{bottom:939.414667pt;}
.y20{bottom:945.948000pt;}
.y3d{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.y3c{bottom:994.614667pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.hc{height:30.041667pt;}
.h4{height:31.083333pt;}
.h6{height:38.854167pt;}
.hb{height:41.307292pt;}
.h3{height:45.062500pt;}
.h7{height:46.796875pt;}
.h5{height:47.369792pt;}
.h9{height:51.476562pt;}
.hd{height:56.156250pt;}
.ha{height:56.843750pt;}
.h8{height:61.580729pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x9{left:77.600000pt;}
.x8{left:124.933333pt;}
.x6{left:308.800000pt;}
.x7{left:310.400000pt;}
.x3{left:321.600000pt;}
.x2{left:337.466667pt;}
.x4{left:338.533333pt;}
.x5{left:476.133333pt;}
}




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