
    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_7d404168ce4dd26e6db90af6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_92858dc27d7f3f15159b691f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.181152;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_e8c8d22c9dc82dd5f17ef44d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_6c1cc8e9af8887e433decdc4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_563710f26d2663ab9b4dd993.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_e763fe0ed30c0da3524b4ec8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.891602;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_1949895d7dbb085a189839ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.ls2{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.036000px;}
.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:-18.000000px;}
.ws1{word-spacing:-16.500000px;}
.ws0{word-spacing:-0.096000px;}
.ws2{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-15.000000px;}
._1b{margin-left:-8.122020px;}
._1{margin-left:-4.428000px;}
._8{margin-left:-2.772000px;}
._7{margin-left:-1.020000px;}
._0{width:1.140000px;}
._9{width:2.164800px;}
._10{width:3.571200px;}
._2{width:4.752000px;}
._4{width:5.904000px;}
._13{width:7.228800px;}
._6{width:8.527200px;}
._c{width:10.053600px;}
._b{width:11.625600px;}
._e{width:13.308000px;}
._18{width:14.335200px;}
._f{width:15.852000px;}
._12{width:16.958400px;}
._1a{width:19.207620px;}
._1e{width:20.662800px;}
._5{width:21.687600px;}
._16{width:22.959600px;}
._1c{width:24.364800px;}
._15{width:25.466400px;}
._17{width:27.640800px;}
._a{width:28.802400px;}
._1d{width:30.470400px;}
._19{width:32.270400px;}
._d{width:35.136000px;}
._11{width:37.166400px;}
._3{width:38.577600px;}
.fc2{color:rgb(0,0,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,150,255);}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:14.446185px;}
.y2{bottom:14.580000px;}
.y38{bottom:15.064230px;}
.y1c{bottom:15.291510px;}
.y1a{bottom:22.629945px;}
.y36{bottom:36.946185px;}
.y19{bottom:46.629945px;}
.y1b{bottom:52.435770px;}
.y35{bottom:60.946185px;}
.y18{bottom:69.129945px;}
.y34{bottom:83.446185px;}
.y1d{bottom:86.053815px;}
.y51{bottom:91.629945px;}
.y3{bottom:92.870055px;}
.y17{bottom:93.129945px;}
.y33{bottom:107.446185px;}
.y16{bottom:115.629945px;}
.y50{bottom:117.129945px;}
.y32{bottom:131.446185px;}
.y15{bottom:139.629945px;}
.y4f{bottom:150.129945px;}
.y14{bottom:163.629945px;}
.y4e{bottom:172.629945px;}
.y13{bottom:186.129945px;}
.y4d{bottom:196.629945px;}
.y31{bottom:201.946185px;}
.y12{bottom:210.129945px;}
.y4c{bottom:229.629945px;}
.y11{bottom:232.629945px;}
.y30{bottom:237.946185px;}
.y4b{bottom:252.129945px;}
.y10{bottom:256.629945px;}
.y2f{bottom:264.946185px;}
.y4a{bottom:276.129945px;}
.yf{bottom:280.629945px;}
.y2e{bottom:296.446185px;}
.y49{bottom:298.629945px;}
.y2d{bottom:320.446185px;}
.y48{bottom:322.629945px;}
.ye{bottom:336.129945px;}
.y2c{bottom:344.446185px;}
.y47{bottom:346.629945px;}
.yd{bottom:358.629945px;}
.y2b{bottom:366.946185px;}
.y46{bottom:378.129945px;}
.yc{bottom:387.129945px;}
.y2a{bottom:399.946185px;}
.y45{bottom:402.129945px;}
.yb{bottom:418.629945px;}
.y29{bottom:422.446185px;}
.y44{bottom:424.629945px;}
.y28{bottom:446.446185px;}
.ya{bottom:447.129945px;}
.y43{bottom:448.629945px;}
.y27{bottom:470.446185px;}
.y42{bottom:472.629945px;}
.y26{bottom:492.946185px;}
.y41{bottom:495.129945px;}
.y9{bottom:502.629945px;}
.y25{bottom:525.946185px;}
.y40{bottom:528.129945px;}
.y8{bottom:529.629945px;}
.y24{bottom:548.446185px;}
.y3f{bottom:550.629945px;}
.y7{bottom:556.629945px;}
.y23{bottom:572.446185px;}
.y3e{bottom:574.629945px;}
.y6{bottom:592.629945px;}
.y22{bottom:596.446185px;}
.y3d{bottom:598.629945px;}
.y21{bottom:618.946185px;}
.y3c{bottom:621.129945px;}
.y5{bottom:622.629945px;}
.y20{bottom:642.946185px;}
.y3b{bottom:645.129945px;}
.y4{bottom:652.629945px;}
.y3a{bottom:667.629945px;}
.y1f{bottom:674.446185px;}
.y39{bottom:691.629945px;}
.y1e{bottom:698.446185px;}
.y1{bottom:810.420000px;}
.h2{height:33.562500px;}
.he{height:48.656250px;}
.hb{height:48.761719px;}
.h3{height:50.214844px;}
.h7{height:52.675781px;}
.h8{height:55.236328px;}
.ha{height:60.257812px;}
.hd{height:60.328125px;}
.h6{height:63.035156px;}
.h9{height:65.355469px;}
.h5{height:68.765625px;}
.h4{height:711.562500px;}
.hc{height:718.378800px;}
.h0{height:892.913400px;}
.h1{height:893.250000px;}
.w2{width:446.390250px;}
.w5{width:448.341450px;}
.w4{width:448.921500px;}
.w3{width:452.454750px;}
.w1{width:629.250000px;}
.w0{width:629.291400px;}
.x0{left:0.000000px;}
.xb{left:4.419540px;}
.x8{left:5.685165px;}
.x4{left:7.451760px;}
.x9{left:26.685165px;}
.x5{left:28.451760px;}
.x2{left:59.919540px;}
.x3{left:99.048240px;}
.x7{left:100.814835px;}
.x1{left:102.080460px;}
.xa{left:181.185165px;}
.x6{left:421.077840px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.032000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws0{word-spacing:-0.085333pt;}
.ws2{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-13.333333pt;}
._1b{margin-left:-7.219573pt;}
._1{margin-left:-3.936000pt;}
._8{margin-left:-2.464000pt;}
._7{margin-left:-0.906667pt;}
._0{width:1.013333pt;}
._9{width:1.924267pt;}
._10{width:3.174400pt;}
._2{width:4.224000pt;}
._4{width:5.248000pt;}
._13{width:6.425600pt;}
._6{width:7.579733pt;}
._c{width:8.936533pt;}
._b{width:10.333867pt;}
._e{width:11.829333pt;}
._18{width:12.742400pt;}
._f{width:14.090667pt;}
._12{width:15.074133pt;}
._1a{width:17.073440pt;}
._1e{width:18.366933pt;}
._5{width:19.277867pt;}
._16{width:20.408533pt;}
._1c{width:21.657600pt;}
._15{width:22.636800pt;}
._17{width:24.569600pt;}
._a{width:25.602133pt;}
._1d{width:27.084800pt;}
._19{width:28.684800pt;}
._d{width:31.232000pt;}
._11{width:33.036800pt;}
._3{width:34.291200pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:12.841053pt;}
.y2{bottom:12.960000pt;}
.y38{bottom:13.390427pt;}
.y1c{bottom:13.592453pt;}
.y1a{bottom:20.115507pt;}
.y36{bottom:32.841053pt;}
.y19{bottom:41.448840pt;}
.y1b{bottom:46.609573pt;}
.y35{bottom:54.174387pt;}
.y18{bottom:61.448840pt;}
.y34{bottom:74.174387pt;}
.y1d{bottom:76.492280pt;}
.y51{bottom:81.448840pt;}
.y3{bottom:82.551160pt;}
.y17{bottom:82.782173pt;}
.y33{bottom:95.507720pt;}
.y16{bottom:102.782173pt;}
.y50{bottom:104.115507pt;}
.y32{bottom:116.841053pt;}
.y15{bottom:124.115507pt;}
.y4f{bottom:133.448840pt;}
.y14{bottom:145.448840pt;}
.y4e{bottom:153.448840pt;}
.y13{bottom:165.448840pt;}
.y4d{bottom:174.782173pt;}
.y31{bottom:179.507720pt;}
.y12{bottom:186.782173pt;}
.y4c{bottom:204.115507pt;}
.y11{bottom:206.782173pt;}
.y30{bottom:211.507720pt;}
.y4b{bottom:224.115507pt;}
.y10{bottom:228.115507pt;}
.y2f{bottom:235.507720pt;}
.y4a{bottom:245.448840pt;}
.yf{bottom:249.448840pt;}
.y2e{bottom:263.507720pt;}
.y49{bottom:265.448840pt;}
.y2d{bottom:284.841053pt;}
.y48{bottom:286.782173pt;}
.ye{bottom:298.782173pt;}
.y2c{bottom:306.174387pt;}
.y47{bottom:308.115507pt;}
.yd{bottom:318.782173pt;}
.y2b{bottom:326.174387pt;}
.y46{bottom:336.115507pt;}
.yc{bottom:344.115507pt;}
.y2a{bottom:355.507720pt;}
.y45{bottom:357.448840pt;}
.yb{bottom:372.115507pt;}
.y29{bottom:375.507720pt;}
.y44{bottom:377.448840pt;}
.y28{bottom:396.841053pt;}
.ya{bottom:397.448840pt;}
.y43{bottom:398.782173pt;}
.y27{bottom:418.174387pt;}
.y42{bottom:420.115507pt;}
.y26{bottom:438.174387pt;}
.y41{bottom:440.115507pt;}
.y9{bottom:446.782173pt;}
.y25{bottom:467.507720pt;}
.y40{bottom:469.448840pt;}
.y8{bottom:470.782173pt;}
.y24{bottom:487.507720pt;}
.y3f{bottom:489.448840pt;}
.y7{bottom:494.782173pt;}
.y23{bottom:508.841053pt;}
.y3e{bottom:510.782173pt;}
.y6{bottom:526.782173pt;}
.y22{bottom:530.174387pt;}
.y3d{bottom:532.115507pt;}
.y21{bottom:550.174387pt;}
.y3c{bottom:552.115507pt;}
.y5{bottom:553.448840pt;}
.y20{bottom:571.507720pt;}
.y3b{bottom:573.448840pt;}
.y4{bottom:580.115507pt;}
.y3a{bottom:593.448840pt;}
.y1f{bottom:599.507720pt;}
.y39{bottom:614.782173pt;}
.y1e{bottom:620.841053pt;}
.y1{bottom:720.373333pt;}
.h2{height:29.833333pt;}
.he{height:43.250000pt;}
.hb{height:43.343750pt;}
.h3{height:44.635417pt;}
.h7{height:46.822917pt;}
.h8{height:49.098958pt;}
.ha{height:53.562500pt;}
.hd{height:53.625000pt;}
.h6{height:56.031250pt;}
.h9{height:58.093750pt;}
.h5{height:61.125000pt;}
.h4{height:632.500000pt;}
.hc{height:638.558933pt;}
.h0{height:793.700800pt;}
.h1{height:794.000000pt;}
.w2{width:396.791333pt;}
.w5{width:398.525733pt;}
.w4{width:399.041333pt;}
.w3{width:402.182000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370133pt;}
.x0{left:0.000000pt;}
.xb{left:3.928480pt;}
.x8{left:5.053480pt;}
.x4{left:6.623787pt;}
.x9{left:23.720147pt;}
.x5{left:25.290453pt;}
.x2{left:53.261813pt;}
.x3{left:88.042880pt;}
.x7{left:89.613187pt;}
.x1{left:90.738187pt;}
.xa{left:161.053480pt;}
.x6{left:374.291413pt;}
}




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