
    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_961cfab28b7a4aa1fa51a172.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_fa443f68077322cc7b10c255.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_4168857bb8c8f60a57273f7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_c66006a0ef676987f757d11c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_e016c9c7b5b5bc8a840c83ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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);}
.v2{vertical-align:-82.920000px;}
.v1{vertical-align:-80.280000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.530000px;}
.ls7{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.368000px;}
.ls2{letter-spacing:-1.260000px;}
.ls3{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-1.002000px;}
.lsb{letter-spacing:-0.648000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:2.880000px;}
.ls0{letter-spacing:197.850000px;}
.ls8{letter-spacing:638.580000px;}
.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;}
.ws7{word-spacing:-16.920000px;}
.ws2{word-spacing:-15.030000px;}
.ws6{word-spacing:-13.886880px;}
.ws3{word-spacing:-13.770000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.420000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-5.496000px;}
._17{margin-left:-3.936000px;}
._3{margin-left:-2.268000px;}
._2{margin-left:-1.140000px;}
._d{width:1.128000px;}
._c{width:2.731680px;}
._9{width:4.106160px;}
._8{width:5.310720px;}
._10{width:6.492000px;}
._11{width:7.608000px;}
._14{width:9.204000px;}
._15{width:10.596000px;}
._1a{width:12.024000px;}
._b{width:13.656000px;}
._a{width:14.664000px;}
._12{width:15.876000px;}
._13{width:16.884000px;}
._f{width:19.476000px;}
._e{width:20.700000px;}
._19{width:22.068000px;}
._5{width:26.729880px;}
._7{width:28.404240px;}
._6{width:29.728200px;}
._1b{width:312.996000px;}
._1{width:863.940000px;}
._4{width:1765.260000px;}
._16{width:1827.953640px;}
._0{width:2113.020000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y52{bottom:98.039908px;}
.y51{bottom:118.739908px;}
.y2a{bottom:119.729908px;}
.y50{bottom:139.439908px;}
.y29{bottom:140.429908px;}
.y4f{bottom:160.139908px;}
.y28{bottom:161.129908px;}
.y4e{bottom:180.839908px;}
.y27{bottom:181.829908px;}
.y4d{bottom:201.539908px;}
.y26{bottom:202.529908px;}
.y4c{bottom:222.239908px;}
.y25{bottom:223.229908px;}
.y4b{bottom:242.939908px;}
.y24{bottom:243.929908px;}
.y4a{bottom:263.639908px;}
.y23{bottom:264.629908px;}
.y49{bottom:284.339908px;}
.y22{bottom:285.329908px;}
.y48{bottom:305.039908px;}
.y21{bottom:306.029908px;}
.y47{bottom:325.739908px;}
.y20{bottom:326.729908px;}
.y46{bottom:346.439908px;}
.y1f{bottom:347.429908px;}
.y45{bottom:367.139908px;}
.y1e{bottom:368.129908px;}
.y44{bottom:387.839908px;}
.y1d{bottom:388.829908px;}
.y43{bottom:408.539908px;}
.y1c{bottom:409.529908px;}
.y42{bottom:429.239908px;}
.y1b{bottom:430.229908px;}
.y41{bottom:449.969908px;}
.y1a{bottom:450.959908px;}
.y40{bottom:470.669908px;}
.y19{bottom:471.659908px;}
.y3f{bottom:491.369908px;}
.y18{bottom:492.359908px;}
.y3e{bottom:512.069908px;}
.y17{bottom:513.059908px;}
.y3d{bottom:532.769908px;}
.y16{bottom:533.759908px;}
.y3c{bottom:553.469908px;}
.y15{bottom:554.459908px;}
.y3b{bottom:574.169908px;}
.y14{bottom:575.159908px;}
.y3a{bottom:594.869908px;}
.y13{bottom:595.859908px;}
.y39{bottom:615.569908px;}
.y12{bottom:616.559908px;}
.y38{bottom:636.269908px;}
.y11{bottom:637.259908px;}
.y37{bottom:656.969908px;}
.y10{bottom:657.869908px;}
.y36{bottom:677.669908px;}
.y35{bottom:698.369908px;}
.yf{bottom:698.639908px;}
.ye{bottom:715.919908px;}
.y34{bottom:719.069908px;}
.yd{bottom:733.199908px;}
.y33{bottom:739.769908px;}
.yc{bottom:750.389908px;}
.y32{bottom:760.469908px;}
.yb{bottom:767.669908px;}
.y31{bottom:781.169908px;}
.ya{bottom:784.949908px;}
.y30{bottom:801.869908px;}
.y9{bottom:804.569908px;}
.y2f{bottom:822.569908px;}
.y8{bottom:830.219908px;}
.y2e{bottom:843.299908px;}
.y7{bottom:855.899908px;}
.y2d{bottom:863.999908px;}
.y6{bottom:881.549908px;}
.y2c{bottom:884.699908px;}
.y2b{bottom:936.809908px;}
.y2{bottom:939.959908px;}
.h3{height:52.998047px;}
.h6{height:59.004492px;}
.h5{height:63.688184px;}
.h9{height:65.526152px;}
.h8{height:70.628906px;}
.h7{height:70.664062px;}
.h4{height:83.429473px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.x2{left:148.889989px;}
.x3{left:279.749989px;}
.x4{left:281.549989px;}
.x5{left:304.589989px;}
@media print{
.v2{vertical-align:-73.706667pt;}
.v1{vertical-align:-71.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.360000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.216000pt;}
.ls2{letter-spacing:-1.120000pt;}
.ls3{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.890667pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:2.560000pt;}
.ls0{letter-spacing:175.866667pt;}
.ls8{letter-spacing:567.626667pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.040000pt;}
.ws2{word-spacing:-13.360000pt;}
.ws6{word-spacing:-12.343893pt;}
.ws3{word-spacing:-12.240000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-4.885333pt;}
._17{margin-left:-3.498667pt;}
._3{margin-left:-2.016000pt;}
._2{margin-left:-1.013333pt;}
._d{width:1.002667pt;}
._c{width:2.428160pt;}
._9{width:3.649920pt;}
._8{width:4.720640pt;}
._10{width:5.770667pt;}
._11{width:6.762667pt;}
._14{width:8.181333pt;}
._15{width:9.418667pt;}
._1a{width:10.688000pt;}
._b{width:12.138667pt;}
._a{width:13.034667pt;}
._12{width:14.112000pt;}
._13{width:15.008000pt;}
._f{width:17.312000pt;}
._e{width:18.400000pt;}
._19{width:19.616000pt;}
._5{width:23.759893pt;}
._7{width:25.248213pt;}
._6{width:26.425067pt;}
._1b{width:278.218667pt;}
._1{width:767.946667pt;}
._4{width:1569.120000pt;}
._16{width:1624.847680pt;}
._0{width:1878.240000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y52{bottom:87.146585pt;}
.y51{bottom:105.546585pt;}
.y2a{bottom:106.426585pt;}
.y50{bottom:123.946585pt;}
.y29{bottom:124.826585pt;}
.y4f{bottom:142.346585pt;}
.y28{bottom:143.226585pt;}
.y4e{bottom:160.746585pt;}
.y27{bottom:161.626585pt;}
.y4d{bottom:179.146585pt;}
.y26{bottom:180.026585pt;}
.y4c{bottom:197.546585pt;}
.y25{bottom:198.426585pt;}
.y4b{bottom:215.946585pt;}
.y24{bottom:216.826585pt;}
.y4a{bottom:234.346585pt;}
.y23{bottom:235.226585pt;}
.y49{bottom:252.746585pt;}
.y22{bottom:253.626585pt;}
.y48{bottom:271.146585pt;}
.y21{bottom:272.026585pt;}
.y47{bottom:289.546585pt;}
.y20{bottom:290.426585pt;}
.y46{bottom:307.946585pt;}
.y1f{bottom:308.826585pt;}
.y45{bottom:326.346585pt;}
.y1e{bottom:327.226585pt;}
.y44{bottom:344.746585pt;}
.y1d{bottom:345.626585pt;}
.y43{bottom:363.146585pt;}
.y1c{bottom:364.026585pt;}
.y42{bottom:381.546585pt;}
.y1b{bottom:382.426585pt;}
.y41{bottom:399.973252pt;}
.y1a{bottom:400.853252pt;}
.y40{bottom:418.373252pt;}
.y19{bottom:419.253252pt;}
.y3f{bottom:436.773252pt;}
.y18{bottom:437.653252pt;}
.y3e{bottom:455.173252pt;}
.y17{bottom:456.053252pt;}
.y3d{bottom:473.573252pt;}
.y16{bottom:474.453252pt;}
.y3c{bottom:491.973252pt;}
.y15{bottom:492.853252pt;}
.y3b{bottom:510.373252pt;}
.y14{bottom:511.253252pt;}
.y3a{bottom:528.773252pt;}
.y13{bottom:529.653252pt;}
.y39{bottom:547.173252pt;}
.y12{bottom:548.053252pt;}
.y38{bottom:565.573252pt;}
.y11{bottom:566.453252pt;}
.y37{bottom:583.973252pt;}
.y10{bottom:584.773252pt;}
.y36{bottom:602.373252pt;}
.y35{bottom:620.773252pt;}
.yf{bottom:621.013252pt;}
.ye{bottom:636.373252pt;}
.y34{bottom:639.173252pt;}
.yd{bottom:651.733252pt;}
.y33{bottom:657.573252pt;}
.yc{bottom:667.013252pt;}
.y32{bottom:675.973252pt;}
.yb{bottom:682.373252pt;}
.y31{bottom:694.373252pt;}
.ya{bottom:697.733252pt;}
.y30{bottom:712.773252pt;}
.y9{bottom:715.173252pt;}
.y2f{bottom:731.173252pt;}
.y8{bottom:737.973252pt;}
.y2e{bottom:749.599919pt;}
.y7{bottom:760.799919pt;}
.y2d{bottom:767.999919pt;}
.y6{bottom:783.599919pt;}
.y2c{bottom:786.399919pt;}
.y2b{bottom:832.719919pt;}
.y2{bottom:835.519919pt;}
.h3{height:47.109375pt;}
.h6{height:52.448437pt;}
.h5{height:56.611719pt;}
.h9{height:58.245469pt;}
.h8{height:62.781250pt;}
.h7{height:62.812500pt;}
.h4{height:74.159531pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.x2{left:132.346657pt;}
.x3{left:248.666657pt;}
.x4{left:250.266657pt;}
.x5{left:270.746657pt;}
}




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