
    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_4fddda12f9f121f0a36f8d1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.048828;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_a43d53f74781e4877e4bd0c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961426;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_f12bf6d80fe3e99289037eea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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;}
.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;}
}
.ws0{word-spacing:-23.268000px;}
.ws1{word-spacing:-19.944000px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:182.280000px;}
.ws3{word-spacing:213.300000px;}
.ws5{word-spacing:801.180000px;}
._0{width:1.020000px;}
._1{width:2.100000px;}
._e{width:358.380000px;}
._f{width:391.800000px;}
._b{width:398.580000px;}
._11{width:408.600000px;}
._c{width:411.720000px;}
._4{width:477.660000px;}
._3{width:481.080000px;}
._5{width:554.280000px;}
._9{width:564.420000px;}
._6{width:581.160000px;}
._7{width:614.520000px;}
._8{width:697.740000px;}
._10{width:802.260000px;}
._d{width:805.680000px;}
._12{width:878.880000px;}
._2{width:888.360000px;}
._13{width:925.620000px;}
._14{width:939.120000px;}
._15{width:1022.340000px;}
._a{width:1191.360000px;}
._16{width:1681.680000px;}
.fc4{color:rgb(44,82,130);}
.fc3{color:rgb(26,54,93);}
.fc2{color:rgb(66,153,225);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(113,128,150);}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y23{bottom:56.866500px;}
.y48{bottom:138.991500px;}
.y47{bottom:159.691500px;}
.y70{bottom:169.291500px;}
.y22{bottom:173.491500px;}
.y6f{bottom:186.541500px;}
.y46{bottom:191.641500px;}
.y21{bottom:194.191500px;}
.y20{bottom:214.891500px;}
.y45{bottom:234.841500px;}
.y1f{bottom:246.841500px;}
.y6e{bottom:255.316500px;}
.y44{bottom:255.541500px;}
.y6d{bottom:276.016500px;}
.y43{bottom:276.241500px;}
.y1e{bottom:290.041500px;}
.y6c{bottom:304.216500px;}
.y1d{bottom:310.741500px;}
.y42{bottom:311.941500px;}
.y1c{bottom:331.441500px;}
.y6b{bottom:332.416500px;}
.y41{bottom:340.141500px;}
.y6a{bottom:353.116500px;}
.y1b{bottom:367.141500px;}
.y40{bottom:368.341500px;}
.y69{bottom:381.316500px;}
.y1a{bottom:387.841500px;}
.y68{bottom:402.016500px;}
.y3f{bottom:404.041500px;}
.y19{bottom:408.541500px;}
.y3e{bottom:424.741500px;}
.y18{bottom:429.241500px;}
.y67{bottom:438.316500px;}
.y3d{bottom:456.691500px;}
.y17{bottom:461.191500px;}
.y66{bottom:491.866500px;}
.y16{bottom:504.991500px;}
.y65{bottom:512.566500px;}
.y64{bottom:540.766500px;}
.y3c{bottom:546.016500px;}
.y15{bottom:558.541500px;}
.y63{bottom:561.466500px;}
.y3b{bottom:563.416500px;}
.y14{bottom:579.241500px;}
.y3a{bottom:580.666500px;}
.y62{bottom:589.666500px;}
.y39{bottom:598.066500px;}
.y13{bottom:599.941500px;}
.y61{bottom:610.366500px;}
.y38{bottom:615.316500px;}
.y37{bottom:632.716500px;}
.y12{bottom:635.641500px;}
.y60{bottom:638.566500px;}
.y36{bottom:650.116500px;}
.y11{bottom:656.341500px;}
.y5f{bottom:659.266500px;}
.y35{bottom:667.516500px;}
.y10{bottom:677.041500px;}
.y34{bottom:684.766500px;}
.y5e{bottom:694.966500px;}
.yf{bottom:697.741500px;}
.y33{bottom:702.166500px;}
.y32{bottom:719.416500px;}
.y5d{bottom:731.266500px;}
.ye{bottom:734.041500px;}
.y31{bottom:736.816500px;}
.y30{bottom:754.216500px;}
.y5c{bottom:784.816500px;}
.y2f{bottom:787.291500px;}
.yd{bottom:787.591500px;}
.y5b{bottom:805.516500px;}
.yc{bottom:808.291500px;}
.y2e{bottom:815.491500px;}
.yb{bottom:828.991500px;}
.y5a{bottom:841.816500px;}
.y2d{bottom:843.691500px;}
.ya{bottom:849.691500px;}
.y9{bottom:870.391500px;}
.y2c{bottom:879.391500px;}
.y59{bottom:880.366500px;}
.y2b{bottom:900.091500px;}
.y8{bottom:906.691500px;}
.y58{bottom:926.491500px;}
.y2a{bottom:932.041500px;}
.y57{bottom:943.891500px;}
.y7{bottom:959.566500px;}
.y56{bottom:961.291500px;}
.y29{bottom:975.241500px;}
.y55{bottom:978.691500px;}
.y6{bottom:984.691500px;}
.y28{bottom:995.941500px;}
.y54{bottom:996.091500px;}
.y4e{bottom:1004.416500px;}
.y53{bottom:1013.491500px;}
.y27{bottom:1016.641500px;}
.y4d{bottom:1025.116500px;}
.y52{bottom:1030.891500px;}
.y5{bottom:1033.966500px;}
.y4c{bottom:1045.816500px;}
.y51{bottom:1048.291500px;}
.y26{bottom:1048.591500px;}
.y50{bottom:1065.691500px;}
.y4{bottom:1073.416500px;}
.y4b{bottom:1081.516500px;}
.y25{bottom:1093.066500px;}
.y4f{bottom:1098.766500px;}
.y4a{bottom:1109.716500px;}
.y24{bottom:1135.066500px;}
.y49{bottom:1137.916500px;}
.y3{bottom:1140.541500px;}
.y2{bottom:1197.016500px;}
.hc{height:44.970703px;}
.h3{height:45.193359px;}
.h7{height:49.467773px;}
.h4{height:50.214844px;}
.h9{height:52.171875px;}
.ha{height:53.964844px;}
.h6{height:60.257812px;}
.h8{height:62.958984px;}
.hb{height:71.953125px;}
.h5{height:107.929688px;}
.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;}
.x2{left:108.150000px;}
.xa{left:116.325000px;}
.x7{left:162.150000px;}
.x4{left:177.450000px;}
.x8{left:250.200000px;}
.x9{left:261.975000px;}
.x3{left:311.625000px;}
.x6{left:333.375000px;}
.x5{left:343.050000px;}
.xb{left:453.825000px;}
.x1{left:530.025000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-20.682667pt;}
.ws1{word-spacing:-17.728000pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:162.026667pt;}
.ws3{word-spacing:189.600000pt;}
.ws5{word-spacing:712.160000pt;}
._0{width:0.906667pt;}
._1{width:1.866667pt;}
._e{width:318.560000pt;}
._f{width:348.266667pt;}
._b{width:354.293333pt;}
._11{width:363.200000pt;}
._c{width:365.973333pt;}
._4{width:424.586667pt;}
._3{width:427.626667pt;}
._5{width:492.693333pt;}
._9{width:501.706667pt;}
._6{width:516.586667pt;}
._7{width:546.240000pt;}
._8{width:620.213333pt;}
._10{width:713.120000pt;}
._d{width:716.160000pt;}
._12{width:781.226667pt;}
._2{width:789.653333pt;}
._13{width:822.773333pt;}
._14{width:834.773333pt;}
._15{width:908.746667pt;}
._a{width:1058.986667pt;}
._16{width:1494.826667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y23{bottom:50.548000pt;}
.y48{bottom:123.548000pt;}
.y47{bottom:141.948000pt;}
.y70{bottom:150.481333pt;}
.y22{bottom:154.214667pt;}
.y6f{bottom:165.814667pt;}
.y46{bottom:170.348000pt;}
.y21{bottom:172.614667pt;}
.y20{bottom:191.014667pt;}
.y45{bottom:208.748000pt;}
.y1f{bottom:219.414667pt;}
.y6e{bottom:226.948000pt;}
.y44{bottom:227.148000pt;}
.y6d{bottom:245.348000pt;}
.y43{bottom:245.548000pt;}
.y1e{bottom:257.814667pt;}
.y6c{bottom:270.414667pt;}
.y1d{bottom:276.214667pt;}
.y42{bottom:277.281333pt;}
.y1c{bottom:294.614667pt;}
.y6b{bottom:295.481333pt;}
.y41{bottom:302.348000pt;}
.y6a{bottom:313.881333pt;}
.y1b{bottom:326.348000pt;}
.y40{bottom:327.414667pt;}
.y69{bottom:338.948000pt;}
.y1a{bottom:344.748000pt;}
.y68{bottom:357.348000pt;}
.y3f{bottom:359.148000pt;}
.y19{bottom:363.148000pt;}
.y3e{bottom:377.548000pt;}
.y18{bottom:381.548000pt;}
.y67{bottom:389.614667pt;}
.y3d{bottom:405.948000pt;}
.y17{bottom:409.948000pt;}
.y66{bottom:437.214667pt;}
.y16{bottom:448.881333pt;}
.y65{bottom:455.614667pt;}
.y64{bottom:480.681333pt;}
.y3c{bottom:485.348000pt;}
.y15{bottom:496.481333pt;}
.y63{bottom:499.081333pt;}
.y3b{bottom:500.814667pt;}
.y14{bottom:514.881333pt;}
.y3a{bottom:516.148000pt;}
.y62{bottom:524.148000pt;}
.y39{bottom:531.614667pt;}
.y13{bottom:533.281333pt;}
.y61{bottom:542.548000pt;}
.y38{bottom:546.948000pt;}
.y37{bottom:562.414667pt;}
.y12{bottom:565.014667pt;}
.y60{bottom:567.614667pt;}
.y36{bottom:577.881333pt;}
.y11{bottom:583.414667pt;}
.y5f{bottom:586.014667pt;}
.y35{bottom:593.348000pt;}
.y10{bottom:601.814667pt;}
.y34{bottom:608.681333pt;}
.y5e{bottom:617.748000pt;}
.yf{bottom:620.214667pt;}
.y33{bottom:624.148000pt;}
.y32{bottom:639.481333pt;}
.y5d{bottom:650.014667pt;}
.ye{bottom:652.481333pt;}
.y31{bottom:654.948000pt;}
.y30{bottom:670.414667pt;}
.y5c{bottom:697.614667pt;}
.y2f{bottom:699.814667pt;}
.yd{bottom:700.081333pt;}
.y5b{bottom:716.014667pt;}
.yc{bottom:718.481333pt;}
.y2e{bottom:724.881333pt;}
.yb{bottom:736.881333pt;}
.y5a{bottom:748.281333pt;}
.y2d{bottom:749.948000pt;}
.ya{bottom:755.281333pt;}
.y9{bottom:773.681333pt;}
.y2c{bottom:781.681333pt;}
.y59{bottom:782.548000pt;}
.y2b{bottom:800.081333pt;}
.y8{bottom:805.948000pt;}
.y58{bottom:823.548000pt;}
.y2a{bottom:828.481333pt;}
.y57{bottom:839.014667pt;}
.y7{bottom:852.948000pt;}
.y56{bottom:854.481333pt;}
.y29{bottom:866.881333pt;}
.y55{bottom:869.948000pt;}
.y6{bottom:875.281333pt;}
.y28{bottom:885.281333pt;}
.y54{bottom:885.414667pt;}
.y4e{bottom:892.814667pt;}
.y53{bottom:900.881333pt;}
.y27{bottom:903.681333pt;}
.y4d{bottom:911.214667pt;}
.y52{bottom:916.348000pt;}
.y5{bottom:919.081333pt;}
.y4c{bottom:929.614667pt;}
.y51{bottom:931.814667pt;}
.y26{bottom:932.081333pt;}
.y50{bottom:947.281333pt;}
.y4{bottom:954.148000pt;}
.y4b{bottom:961.348000pt;}
.y25{bottom:971.614667pt;}
.y4f{bottom:976.681333pt;}
.y4a{bottom:986.414667pt;}
.y24{bottom:1008.948000pt;}
.y49{bottom:1011.481333pt;}
.y3{bottom:1013.814667pt;}
.y2{bottom:1064.014667pt;}
.hc{height:39.973958pt;}
.h3{height:40.171875pt;}
.h7{height:43.971354pt;}
.h4{height:44.635417pt;}
.h9{height:46.375000pt;}
.ha{height:47.968750pt;}
.h6{height:53.562500pt;}
.h8{height:55.963542pt;}
.hb{height:63.958333pt;}
.h5{height:95.937500pt;}
.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;}
.x2{left:96.133333pt;}
.xa{left:103.400000pt;}
.x7{left:144.133333pt;}
.x4{left:157.733333pt;}
.x8{left:222.400000pt;}
.x9{left:232.866667pt;}
.x3{left:277.000000pt;}
.x6{left:296.333333pt;}
.x5{left:304.933333pt;}
.xb{left:403.400000pt;}
.x1{left:471.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; }
  