
    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_c43831ffe17f81273f182621.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.716000;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_89ba5647a014047fc1454bc5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_549bba06b115525f694ebb22.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_72889b41ec3409b4ec7b0862.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_91106f44b9cb2cc80dfec9e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.878418;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_d96a63933be21092792105e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732422;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,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);}
.m2{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);}
.v2{vertical-align:-5.697600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:64.696800px;}
.ls9{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.721356px;}
.ls7{letter-spacing:1.200000px;}
.lsc{letter-spacing:1.404600px;}
.lsa{letter-spacing:1.426200px;}
.ls4{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.920000px;}
.ls3{letter-spacing:2.880000px;}
.ls2{letter-spacing:3.360000px;}
.ls1{letter-spacing:5.880000px;}
.lse{letter-spacing:6.268800px;}
.lsd{letter-spacing:14.676000px;}
.lsb{letter-spacing:15.741000px;}
.ls0{letter-spacing:17.950740px;}
.ls8{letter-spacing:43.081776px;}
.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;}
}
.ws4{word-spacing:-43.081776px;}
.ws13{word-spacing:-17.950740px;}
.ws1{word-spacing:-17.712000px;}
.ws14{word-spacing:-16.272000px;}
.ws3{word-spacing:-10.800000px;}
.wse{word-spacing:-6.840000px;}
.ws11{word-spacing:-6.768000px;}
.ws7{word-spacing:-5.328000px;}
.ws8{word-spacing:-2.376000px;}
.ws9{word-spacing:-1.920000px;}
.ws6{word-spacing:-1.440000px;}
.wsa{word-spacing:-0.721356px;}
.ws2{word-spacing:-0.179186px;}
.ws5{word-spacing:0.000000px;}
.ws15{word-spacing:9.432000px;}
.ws12{word-spacing:14.328000px;}
.wsc{word-spacing:23.616000px;}
.wsd{word-spacing:42.840000px;}
.wsb{word-spacing:44.764200px;}
.wsf{word-spacing:46.800000px;}
.ws10{word-spacing:48.600000px;}
.ws0{word-spacing:1403.300271px;}
._10{margin-left:-61.748400px;}
._c{margin-left:-9.201600px;}
._2{margin-left:-7.293600px;}
._b{margin-left:-5.779200px;}
._a{margin-left:-4.536000px;}
._0{margin-left:-3.376800px;}
._3{margin-left:-2.056800px;}
._1{margin-left:-1.008000px;}
._4{width:1.024800px;}
._5{width:2.071200px;}
._d{width:4.248000px;}
._12{width:5.439581px;}
._8{width:7.131619px;}
._7{width:8.625600px;}
._6{width:9.940800px;}
._e{width:11.580000px;}
._f{width:14.083200px;}
._11{width:22.514400px;}
._9{width:1013.669447px;}
.fc9{color:transparent;}
.fc6{color:rgb(36,146,150);}
.fc5{color:rgb(102,190,197);}
.fc8{color:rgb(101,98,99);}
.fc3{color:rgb(79,76,77);}
.fc2{color:rgb(0,145,148);}
.fc7{color:rgb(35,31,32);}
.fc4{color:rgb(59,155,157);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(121,198,202);}
.fs7{font-size:36.067800px;}
.fs9{font-size:46.274400px;}
.fs8{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:168.000000px;}
.fs6{font-size:179.186400px;}
.fs0{font-size:179.507400px;}
.fs1{font-size:294.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:29.019600px;}
.y15{bottom:36.295050px;}
.y14{bottom:40.715850px;}
.y13{bottom:53.597250px;}
.y12{bottom:66.478500px;}
.y11{bottom:79.359900px;}
.y18{bottom:130.500000px;}
.y17{bottom:154.500000px;}
.y16{bottom:178.500000px;}
.yd{bottom:343.003950px;}
.yc{bottom:367.003950px;}
.yb{bottom:391.003950px;}
.ya{bottom:415.003950px;}
.y9{bottom:439.003950px;}
.y8{bottom:463.003950px;}
.y2d{bottom:466.769700px;}
.y7{bottom:487.003950px;}
.y2c{bottom:490.769700px;}
.y6{bottom:511.003950px;}
.y5{bottom:535.003950px;}
.y2b{bottom:538.769700px;}
.y2a{bottom:562.769700px;}
.y29{bottom:586.769700px;}
.y28{bottom:610.769700px;}
.y27{bottom:634.769700px;}
.y26{bottom:682.769700px;}
.y25{bottom:706.769700px;}
.y24{bottom:730.769700px;}
.y23{bottom:754.769700px;}
.y22{bottom:778.769700px;}
.y21{bottom:802.769700px;}
.y20{bottom:826.769700px;}
.y1f{bottom:850.769700px;}
.y4{bottom:870.910950px;}
.y1e{bottom:874.769700px;}
.y31{bottom:876.956700px;}
.y1d{bottom:898.769700px;}
.y30{bottom:900.956700px;}
.y3{bottom:914.110950px;}
.y1c{bottom:922.769700px;}
.y2f{bottom:924.956700px;}
.y1b{bottom:946.769700px;}
.y2e{bottom:948.956700px;}
.ye{bottom:970.751250px;}
.y1a{bottom:970.769700px;}
.y2{bottom:1014.819450px;}
.y19{bottom:1030.993650px;}
.y1{bottom:1059.696300px;}
.yf{bottom:1166.483400px;}
.hb{height:25.254504px;}
.hd{height:33.598649px;}
.hc{height:36.902400px;}
.h8{height:49.218750px;}
.h7{height:50.414062px;}
.h6{height:52.277344px;}
.h9{height:67.218750px;}
.h5{height:102.240000px;}
.h4{height:119.280000px;}
.h2{height:127.091239px;}
.ha{height:131.240039px;}
.he{height:208.740000px;}
.h3{height:273.436800px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.462300px;}
.x2{left:51.515700px;}
.x1{left:54.208500px;}
.x4{left:104.176650px;}
.x9{left:218.815950px;}
.x6{left:257.822850px;}
.x3{left:314.725800px;}
.x7{left:352.949850px;}
.xa{left:495.909000px;}
.x8{left:858.734700px;}
@media print{
.v2{vertical-align:-5.064533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:57.508267pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.641205pt;}
.ls7{letter-spacing:1.066667pt;}
.lsc{letter-spacing:1.248533pt;}
.lsa{letter-spacing:1.267733pt;}
.ls4{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.706667pt;}
.ls3{letter-spacing:2.560000pt;}
.ls2{letter-spacing:2.986667pt;}
.ls1{letter-spacing:5.226667pt;}
.lse{letter-spacing:5.572267pt;}
.lsd{letter-spacing:13.045333pt;}
.lsb{letter-spacing:13.992000pt;}
.ls0{letter-spacing:15.956213pt;}
.ls8{letter-spacing:38.294912pt;}
.ws4{word-spacing:-38.294912pt;}
.ws13{word-spacing:-15.956213pt;}
.ws1{word-spacing:-15.744000pt;}
.ws14{word-spacing:-14.464000pt;}
.ws3{word-spacing:-9.600000pt;}
.wse{word-spacing:-6.080000pt;}
.ws11{word-spacing:-6.016000pt;}
.ws7{word-spacing:-4.736000pt;}
.ws8{word-spacing:-2.112000pt;}
.ws9{word-spacing:-1.706667pt;}
.ws6{word-spacing:-1.280000pt;}
.wsa{word-spacing:-0.641205pt;}
.ws2{word-spacing:-0.159277pt;}
.ws5{word-spacing:0.000000pt;}
.ws15{word-spacing:8.384000pt;}
.ws12{word-spacing:12.736000pt;}
.wsc{word-spacing:20.992000pt;}
.wsd{word-spacing:38.080000pt;}
.wsb{word-spacing:39.790400pt;}
.wsf{word-spacing:41.600000pt;}
.ws10{word-spacing:43.200000pt;}
.ws0{word-spacing:1247.378019pt;}
._10{margin-left:-54.887467pt;}
._c{margin-left:-8.179200pt;}
._2{margin-left:-6.483200pt;}
._b{margin-left:-5.137067pt;}
._a{margin-left:-4.032000pt;}
._0{margin-left:-3.001600pt;}
._3{margin-left:-1.828267pt;}
._1{margin-left:-0.896000pt;}
._4{width:0.910933pt;}
._5{width:1.841067pt;}
._d{width:3.776000pt;}
._12{width:4.835183pt;}
._8{width:6.339217pt;}
._7{width:7.667200pt;}
._6{width:8.836267pt;}
._e{width:10.293333pt;}
._f{width:12.518400pt;}
._11{width:20.012800pt;}
._9{width:901.039508pt;}
.fs7{font-size:32.060267pt;}
.fs9{font-size:41.132800pt;}
.fs8{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:149.333333pt;}
.fs6{font-size:159.276800pt;}
.fs0{font-size:159.562133pt;}
.fs1{font-size:261.333333pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:25.795200pt;}
.y15{bottom:32.262267pt;}
.y14{bottom:36.191867pt;}
.y13{bottom:47.642000pt;}
.y12{bottom:59.092000pt;}
.y11{bottom:70.542133pt;}
.y18{bottom:116.000000pt;}
.y17{bottom:137.333333pt;}
.y16{bottom:158.666667pt;}
.yd{bottom:304.892400pt;}
.yc{bottom:326.225733pt;}
.yb{bottom:347.559067pt;}
.ya{bottom:368.892400pt;}
.y9{bottom:390.225733pt;}
.y8{bottom:411.559067pt;}
.y2d{bottom:414.906400pt;}
.y7{bottom:432.892400pt;}
.y2c{bottom:436.239733pt;}
.y6{bottom:454.225733pt;}
.y5{bottom:475.559067pt;}
.y2b{bottom:478.906400pt;}
.y2a{bottom:500.239733pt;}
.y29{bottom:521.573067pt;}
.y28{bottom:542.906400pt;}
.y27{bottom:564.239733pt;}
.y26{bottom:606.906400pt;}
.y25{bottom:628.239733pt;}
.y24{bottom:649.573067pt;}
.y23{bottom:670.906400pt;}
.y22{bottom:692.239733pt;}
.y21{bottom:713.573067pt;}
.y20{bottom:734.906400pt;}
.y1f{bottom:756.239733pt;}
.y4{bottom:774.143067pt;}
.y1e{bottom:777.573067pt;}
.y31{bottom:779.517067pt;}
.y1d{bottom:798.906400pt;}
.y30{bottom:800.850400pt;}
.y3{bottom:812.543067pt;}
.y1c{bottom:820.239733pt;}
.y2f{bottom:822.183733pt;}
.y1b{bottom:841.573067pt;}
.y2e{bottom:843.517067pt;}
.ye{bottom:862.890000pt;}
.y1a{bottom:862.906400pt;}
.y2{bottom:902.061733pt;}
.y19{bottom:916.438800pt;}
.y1{bottom:941.952267pt;}
.yf{bottom:1036.874133pt;}
.hb{height:22.448448pt;}
.hd{height:29.865466pt;}
.hc{height:32.802133pt;}
.h8{height:43.750000pt;}
.h7{height:44.812500pt;}
.h6{height:46.468750pt;}
.h9{height:59.750000pt;}
.h5{height:90.880000pt;}
.h4{height:106.026667pt;}
.h2{height:112.969990pt;}
.ha{height:116.657812pt;}
.he{height:185.546667pt;}
.h3{height:243.054933pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.744267pt;}
.x2{left:45.791733pt;}
.x1{left:48.185333pt;}
.x4{left:92.601467pt;}
.x9{left:194.503067pt;}
.x6{left:229.175867pt;}
.x3{left:279.756267pt;}
.x7{left:313.733200pt;}
.xa{left:440.808000pt;}
.x8{left:763.319733pt;}
}




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