
    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_10cb45da6b49a1b3c0095321.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_f9150cd91d79df028532d734.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_22aa63f65425c0b834254893.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_44fcc94824111f10cbd494c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_216ae2ff4af89ae4fac53d50.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_cc5546cbfba77b77c76fb9df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_d116e14aef971bc29bcb8b75.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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:ff8;src:url('chunks/assets/font_6f1c8a315191daaffb03800e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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:ff9;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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);}
.v2{vertical-align:-84.240000px;}
.v1{vertical-align:-82.200000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.238800px;}
.ls0{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.288000px;}
.ls2{letter-spacing:11.664000px;}
.ls4{letter-spacing:90.000000px;}
.ls5{letter-spacing:197.976000px;}
.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:-72.000000px;}
.ws4{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:11.172480px;}
._1c{margin-left:-14.400000px;}
._6{margin-left:-1.095120px;}
._1{width:1.127520px;}
._a{width:2.592000px;}
._b{width:4.464000px;}
._12{width:5.832000px;}
._c{width:6.922800px;}
._5{width:8.845200px;}
._4{width:9.856080px;}
._7{width:11.372400px;}
._e{width:12.384000px;}
._13{width:18.144000px;}
._14{width:21.951600px;}
._17{width:23.020560px;}
._3{width:24.020640px;}
._19{width:25.161360px;}
._2{width:26.204640px;}
._11{width:27.229440px;}
._15{width:28.512000px;}
._16{width:36.230640px;}
._d{width:37.785360px;}
._9{width:38.808000px;}
._8{width:39.960000px;}
._10{width:48.312000px;}
._f{width:49.320000px;}
._18{width:51.240000px;}
._1b{width:54.864000px;}
._1a{width:68.688000px;}
._0{width:1438.980000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:55.260000px;}
.y5{bottom:65.700000px;}
.y32{bottom:189.930000px;}
.y5c{bottom:197.130000px;}
.y31{bottom:210.990000px;}
.y30{bottom:231.510000px;}
.y5b{bottom:238.530000px;}
.y2f{bottom:252.210000px;}
.y5a{bottom:258.870000px;}
.y2e{bottom:272.910000px;}
.y59{bottom:279.570000px;}
.y2d{bottom:293.610000px;}
.y58{bottom:300.630000px;}
.y2c{bottom:314.490000px;}
.y57{bottom:320.970000px;}
.y2b{bottom:334.830000px;}
.y56{bottom:342.075000px;}
.y2a{bottom:355.575000px;}
.y55{bottom:362.415000px;}
.y29{bottom:376.275000px;}
.y54{bottom:383.115000px;}
.y28{bottom:396.975000px;}
.y53{bottom:403.815000px;}
.y27{bottom:418.035000px;}
.y52{bottom:424.515000px;}
.y26{bottom:438.375000px;}
.y51{bottom:445.035000px;}
.y25{bottom:459.435000px;}
.y50{bottom:466.095000px;}
.y24{bottom:479.775000px;}
.y4f{bottom:486.435000px;}
.y23{bottom:500.475000px;}
.y4e{bottom:507.495000px;}
.y22{bottom:521.535000px;}
.y4d{bottom:527.835000px;}
.y21{bottom:541.875000px;}
.y4c{bottom:548.535000px;}
.y20{bottom:562.575000px;}
.y4b{bottom:569.235000px;}
.y1f{bottom:583.275000px;}
.y4a{bottom:590.295000px;}
.y1e{bottom:604.005000px;}
.y1d{bottom:624.705000px;}
.y49{bottom:631.725000px;}
.y69{bottom:635.505000px;}
.y1c{bottom:645.405000px;}
.y48{bottom:652.065000px;}
.y68{bottom:656.205000px;}
.y1b{bottom:666.465000px;}
.y47{bottom:673.125000px;}
.y67{bottom:676.905000px;}
.y1a{bottom:686.805000px;}
.y46{bottom:693.825000px;}
.y66{bottom:697.605000px;}
.y19{bottom:707.505000px;}
.y45{bottom:714.165000px;}
.y65{bottom:717.945000px;}
.y18{bottom:728.565000px;}
.y44{bottom:734.865000px;}
.y64{bottom:739.005000px;}
.y17{bottom:748.905000px;}
.y43{bottom:756.825000px;}
.y63{bottom:759.705000px;}
.y16{bottom:769.605000px;}
.y42{bottom:777.525000px;}
.y15{bottom:790.305000px;}
.y41{bottom:799.485000px;}
.y62{bottom:801.105000px;}
.y14{bottom:811.365000px;}
.y40{bottom:821.805000px;}
.y13{bottom:831.705000px;}
.y3f{bottom:842.145000px;}
.y61{bottom:842.505000px;}
.y12{bottom:852.405000px;}
.y60{bottom:862.845000px;}
.y3e{bottom:863.205000px;}
.y11{bottom:873.150000px;}
.y3d{bottom:883.950000px;}
.y10{bottom:893.850000px;}
.y3c{bottom:904.110000px;}
.yf{bottom:914.910000px;}
.y3b{bottom:924.810000px;}
.y5f{bottom:925.170000px;}
.ye{bottom:935.430000px;}
.y3a{bottom:945.510000px;}
.yd{bottom:956.130000px;}
.y39{bottom:966.570000px;}
.yc{bottom:976.650000px;}
.y38{bottom:986.910000px;}
.yb{bottom:997.710000px;}
.y37{bottom:1007.610000px;}
.y5e{bottom:1007.970000px;}
.ya{bottom:1018.410000px;}
.y36{bottom:1028.310000px;}
.y9{bottom:1039.290000px;}
.y35{bottom:1049.370000px;}
.y8{bottom:1063.410000px;}
.y34{bottom:1069.710000px;}
.y5d{bottom:1070.070000px;}
.y7{bottom:1087.530000px;}
.y33{bottom:1090.410000px;}
.y4{bottom:1111.470000px;}
.y3{bottom:1148.400000px;}
.y2{bottom:1225.980000px;}
.y1{bottom:1246.680000px;}
.h3{height:34.174687px;}
.h6{height:64.546875px;}
.h2{height:74.004654px;}
.h5{height:75.093750px;}
.h4{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.900000px;}
.x5{left:106.416000px;}
.x7{left:133.416000px;}
.x6{left:159.510000px;}
.x8{left:214.410000px;}
.x2{left:369.615000px;}
.x3{left:462.705000px;}
.x4{left:770.940000px;}
@media print{
.v2{vertical-align:-74.880000pt;}
.v1{vertical-align:-73.066667pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.212267pt;}
.ls0{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.256000pt;}
.ls2{letter-spacing:10.368000pt;}
.ls4{letter-spacing:80.000000pt;}
.ls5{letter-spacing:175.978667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:9.931093pt;}
._1c{margin-left:-12.800000pt;}
._6{margin-left:-0.973440pt;}
._1{width:1.002240pt;}
._a{width:2.304000pt;}
._b{width:3.968000pt;}
._12{width:5.184000pt;}
._c{width:6.153600pt;}
._5{width:7.862400pt;}
._4{width:8.760960pt;}
._7{width:10.108800pt;}
._e{width:11.008000pt;}
._13{width:16.128000pt;}
._14{width:19.512533pt;}
._17{width:20.462720pt;}
._3{width:21.351680pt;}
._19{width:22.365653pt;}
._2{width:23.293013pt;}
._11{width:24.203947pt;}
._15{width:25.344000pt;}
._16{width:32.205013pt;}
._d{width:33.586987pt;}
._9{width:34.496000pt;}
._8{width:35.520000pt;}
._10{width:42.944000pt;}
._f{width:43.840000pt;}
._18{width:45.546667pt;}
._1b{width:48.768000pt;}
._1a{width:61.056000pt;}
._0{width:1279.093333pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:49.120000pt;}
.y5{bottom:58.400000pt;}
.y32{bottom:168.826667pt;}
.y5c{bottom:175.226667pt;}
.y31{bottom:187.546667pt;}
.y30{bottom:205.786667pt;}
.y5b{bottom:212.026667pt;}
.y2f{bottom:224.186667pt;}
.y5a{bottom:230.106667pt;}
.y2e{bottom:242.586667pt;}
.y59{bottom:248.506667pt;}
.y2d{bottom:260.986667pt;}
.y58{bottom:267.226667pt;}
.y2c{bottom:279.546667pt;}
.y57{bottom:285.306667pt;}
.y2b{bottom:297.626667pt;}
.y56{bottom:304.066667pt;}
.y2a{bottom:316.066667pt;}
.y55{bottom:322.146667pt;}
.y29{bottom:334.466667pt;}
.y54{bottom:340.546667pt;}
.y28{bottom:352.866667pt;}
.y53{bottom:358.946667pt;}
.y27{bottom:371.586667pt;}
.y52{bottom:377.346667pt;}
.y26{bottom:389.666667pt;}
.y51{bottom:395.586667pt;}
.y25{bottom:408.386667pt;}
.y50{bottom:414.306667pt;}
.y24{bottom:426.466667pt;}
.y4f{bottom:432.386667pt;}
.y23{bottom:444.866667pt;}
.y4e{bottom:451.106667pt;}
.y22{bottom:463.586667pt;}
.y4d{bottom:469.186667pt;}
.y21{bottom:481.666667pt;}
.y4c{bottom:487.586667pt;}
.y20{bottom:500.066667pt;}
.y4b{bottom:505.986667pt;}
.y1f{bottom:518.466667pt;}
.y4a{bottom:524.706667pt;}
.y1e{bottom:536.893333pt;}
.y1d{bottom:555.293333pt;}
.y49{bottom:561.533333pt;}
.y69{bottom:564.893333pt;}
.y1c{bottom:573.693333pt;}
.y48{bottom:579.613333pt;}
.y68{bottom:583.293333pt;}
.y1b{bottom:592.413333pt;}
.y47{bottom:598.333333pt;}
.y67{bottom:601.693333pt;}
.y1a{bottom:610.493333pt;}
.y46{bottom:616.733333pt;}
.y66{bottom:620.093333pt;}
.y19{bottom:628.893333pt;}
.y45{bottom:634.813333pt;}
.y65{bottom:638.173333pt;}
.y18{bottom:647.613333pt;}
.y44{bottom:653.213333pt;}
.y64{bottom:656.893333pt;}
.y17{bottom:665.693333pt;}
.y43{bottom:672.733333pt;}
.y63{bottom:675.293333pt;}
.y16{bottom:684.093333pt;}
.y42{bottom:691.133333pt;}
.y15{bottom:702.493333pt;}
.y41{bottom:710.653333pt;}
.y62{bottom:712.093333pt;}
.y14{bottom:721.213333pt;}
.y40{bottom:730.493333pt;}
.y13{bottom:739.293333pt;}
.y3f{bottom:748.573333pt;}
.y61{bottom:748.893333pt;}
.y12{bottom:757.693333pt;}
.y60{bottom:766.973333pt;}
.y3e{bottom:767.293333pt;}
.y11{bottom:776.133333pt;}
.y3d{bottom:785.733333pt;}
.y10{bottom:794.533333pt;}
.y3c{bottom:803.653333pt;}
.yf{bottom:813.253333pt;}
.y3b{bottom:822.053333pt;}
.y5f{bottom:822.373333pt;}
.ye{bottom:831.493333pt;}
.y3a{bottom:840.453333pt;}
.yd{bottom:849.893333pt;}
.y39{bottom:859.173333pt;}
.yc{bottom:868.133333pt;}
.y38{bottom:877.253333pt;}
.yb{bottom:886.853333pt;}
.y37{bottom:895.653333pt;}
.y5e{bottom:895.973333pt;}
.ya{bottom:905.253333pt;}
.y36{bottom:914.053333pt;}
.y9{bottom:923.813333pt;}
.y35{bottom:932.773333pt;}
.y8{bottom:945.253333pt;}
.y34{bottom:950.853333pt;}
.y5d{bottom:951.173333pt;}
.y7{bottom:966.693333pt;}
.y33{bottom:969.253333pt;}
.y4{bottom:987.973333pt;}
.y3{bottom:1020.800000pt;}
.y2{bottom:1089.760000pt;}
.y1{bottom:1108.160000pt;}
.h3{height:30.377500pt;}
.h6{height:57.375000pt;}
.h2{height:65.781915pt;}
.h5{height:66.750000pt;}
.h4{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.800000pt;}
.x5{left:94.592000pt;}
.x7{left:118.592000pt;}
.x6{left:141.786667pt;}
.x8{left:190.586667pt;}
.x2{left:328.546667pt;}
.x3{left:411.293333pt;}
.x4{left:685.280000pt;}
}




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