
    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_699a6af3d6ae33cb8991773e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_7a342548c0de5daebd27fe76.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_50501819a2ff03f7fdadb28d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.908203;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:-20.880480px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880480px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001380px;}
.ls2{letter-spacing:0.068100px;}
.ls1{letter-spacing:0.720960px;}
.ls4{letter-spacing:15.840000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-4.890240px;}
._e{margin-left:-3.826342px;}
._5{margin-left:-2.736769px;}
._0{margin-left:-1.609276px;}
._1{width:1.131733px;}
._d{width:2.152627px;}
._4{width:3.209998px;}
._a{width:4.961250px;}
._8{width:6.749163px;}
._7{width:7.770093px;}
._6{width:9.621123px;}
._9{width:11.177956px;}
._2{width:13.015554px;}
._f{width:14.672170px;}
._b{width:17.329265px;}
._c{width:18.413720px;}
._11{width:19.473266px;}
._12{width:20.485956px;}
._3{width:54.743322px;}
._13{width:67.402648px;}
.fc2{color:rgb(17,84,204);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:84.816000px;}
.y1{bottom:84.816150px;}
.y8b{bottom:120.816150px;}
.y33{bottom:128.917050px;}
.y8a{bottom:141.516150px;}
.y32{bottom:147.817050px;}
.y57{bottom:159.510300px;}
.y31{bottom:166.891050px;}
.y56{bottom:178.410300px;}
.y89{bottom:180.209550px;}
.y30{bottom:185.791050px;}
.y55{bottom:197.310300px;}
.y88{bottom:199.109550px;}
.y2f{bottom:204.691050px;}
.y54{bottom:216.390750px;}
.y87{bottom:218.009550px;}
.y2e{bottom:223.770900px;}
.y53{bottom:235.290750px;}
.y86{bottom:236.909550px;}
.y69{bottom:242.670300px;}
.y2d{bottom:242.670900px;}
.y52{bottom:254.370600px;}
.y85{bottom:255.990000px;}
.y68{bottom:261.570300px;}
.y2c{bottom:261.750750px;}
.y51{bottom:273.450450px;}
.y67{bottom:280.650150px;}
.y2b{bottom:280.650750px;}
.y50{bottom:292.350450px;}
.y84{bottom:292.890000px;}
.y66{bottom:299.550150px;}
.y2a{bottom:299.550750px;}
.y4f{bottom:311.430300px;}
.y83{bottom:311.790000px;}
.y65{bottom:318.630000px;}
.y29{bottom:318.630600px;}
.y4e{bottom:330.195600px;}
.y64{bottom:337.575150px;}
.y28{bottom:337.575750px;}
.y82{bottom:349.094850px;}
.y4d{bottom:349.275450px;}
.y63{bottom:356.475150px;}
.y27{bottom:356.655600px;}
.y81{bottom:367.994850px;}
.y4c{bottom:368.175450px;}
.y26{bottom:375.735450px;}
.y80{bottom:386.894850px;}
.y4b{bottom:387.255300px;}
.y62{bottom:394.275150px;}
.y25{bottom:394.635450px;}
.y4a{bottom:406.155300px;}
.y61{bottom:409.755000px;}
.y24{bottom:413.715900px;}
.y7f{bottom:424.694850px;}
.y49{bottom:425.055300px;}
.y23{bottom:432.795750px;}
.y7e{bottom:443.774700px;}
.y48{bottom:444.135150px;}
.y22{bottom:451.695750px;}
.y7d{bottom:462.674700px;}
.y47{bottom:463.035150px;}
.y21{bottom:470.595750px;}
.y7c{bottom:481.754550px;}
.y46{bottom:482.115600px;}
.y20{bottom:489.675600px;}
.y45{bottom:501.015600px;}
.y1f{bottom:508.575600px;}
.y7b{bottom:519.554550px;}
.y44{bottom:519.915600px;}
.y1e{bottom:527.655450px;}
.y7a{bottom:538.634400px;}
.y1d{bottom:546.555450px;}
.y43{bottom:557.355300px;}
.y79{bottom:557.534400px;}
.y1c{bottom:565.455450px;}
.y42{bottom:572.835150px;}
.y78{bottom:576.614850px;}
.y1b{bottom:584.535300px;}
.y77{bottom:595.544700px;}
.y1a{bottom:603.465750px;}
.y76{bottom:614.444700px;}
.y75{bottom:633.524550px;}
.y19{bottom:639.645600px;}
.y74{bottom:652.424550px;}
.y18{bottom:658.545600px;}
.y60{bottom:662.145000px;}
.y73{bottom:671.504400px;}
.y5f{bottom:681.224850px;}
.y17{bottom:695.085900px;}
.y5e{bottom:700.124850px;}
.y72{bottom:709.304400px;}
.y16{bottom:713.265750px;}
.y5d{bottom:719.204700px;}
.y71{bottom:728.204400px;}
.y15{bottom:730.545600px;}
.y5c{bottom:738.104700px;}
.y70{bottom:747.284250px;}
.y14{bottom:747.825450px;}
.y5b{bottom:757.004700px;}
.y13{bottom:765.105300px;}
.y6f{bottom:766.184250px;}
.y12{bottom:782.385750px;}
.y5a{bottom:794.445000px;}
.y6e{bottom:795.524550px;}
.y11{bottom:799.485150px;}
.y59{bottom:809.745000px;}
.y6d{bottom:810.824550px;}
.y10{bottom:816.765600px;}
.yf{bottom:834.045450px;}
.ye{bottom:851.325300px;}
.yd{bottom:869.010600px;}
.y41{bottom:883.590150px;}
.y40{bottom:902.490150px;}
.yc{bottom:905.370300px;}
.y3f{bottom:921.570000px;}
.yb{bottom:924.270300px;}
.y3e{bottom:940.470000px;}
.ya{bottom:943.530000px;}
.y3d{bottom:959.549850px;}
.y3c{bottom:978.449850px;}
.y9{bottom:984.210000px;}
.y8{bottom:996.270000px;}
.y3b{bottom:997.529700px;}
.y3a{bottom:1016.429700px;}
.y7{bottom:1018.770390px;}
.y6{bottom:1030.830150px;}
.y39{bottom:1035.510150px;}
.y5{bottom:1048.110000px;}
.y6c{bottom:1054.229550px;}
.y38{bottom:1054.409550px;}
.y6b{bottom:1073.309400px;}
.y37{bottom:1073.490000px;}
.y4{bottom:1086.630150px;}
.y58{bottom:1092.210000px;}
.y36{bottom:1092.390000px;}
.y6a{bottom:1098.510000px;}
.y3{bottom:1107.330150px;}
.y2{bottom:1129.830150px;}
.y34{bottom:1181.700000px;}
.h5{height:34.114922px;}
.h8{height:45.992813px;}
.h2{height:52.435898px;}
.h4{height:54.995402px;}
.h6{height:58.121719px;}
.h9{height:58.123519px;}
.h7{height:58.833281px;}
.ha{height:63.175781px;}
.h3{height:63.949219px;}
.h1{height:1263.750000px;}
.h0{height:1263.780030px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x1{left:97.596150px;}
.x5{left:106.416150px;}
.x13{left:113.969115px;}
.x3{left:115.596150px;}
.xa{left:158.972925px;}
.xe{left:160.410000px;}
.x16{left:178.410150px;}
.x7{left:198.390000px;}
.xb{left:259.095000px;}
.xf{left:285.015150px;}
.x4{left:291.495150px;}
.x9{left:296.356755px;}
.x14{left:302.295150px;}
.x11{left:340.095615px;}
.x8{left:360.975525px;}
.xd{left:372.495000px;}
.x6{left:395.535000px;}
.x15{left:553.785150px;}
.x12{left:602.970615px;}
.xc{left:608.010000px;}
.x2{left:610.890150px;}
.x10{left:612.150150px;}
@media print{
.v2{vertical-align:-18.560427pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560427pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001227pt;}
.ls2{letter-spacing:0.060533pt;}
.ls1{letter-spacing:0.640853pt;}
.ls4{letter-spacing:14.080000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-4.346880pt;}
._e{margin-left:-3.401193pt;}
._5{margin-left:-2.432683pt;}
._0{margin-left:-1.430467pt;}
._1{width:1.005985pt;}
._d{width:1.913446pt;}
._4{width:2.853331pt;}
._a{width:4.410000pt;}
._8{width:5.999256pt;}
._7{width:6.906750pt;}
._6{width:8.552109pt;}
._9{width:9.935960pt;}
._2{width:11.569381pt;}
._f{width:13.041929pt;}
._b{width:15.403791pt;}
._c{width:16.367751pt;}
._11{width:17.309570pt;}
._12{width:18.209739pt;}
._3{width:48.660731pt;}
._13{width:59.913465pt;}
.fs2{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:75.392000pt;}
.y1{bottom:75.392133pt;}
.y8b{bottom:107.392133pt;}
.y33{bottom:114.592933pt;}
.y8a{bottom:125.792133pt;}
.y32{bottom:131.392933pt;}
.y57{bottom:141.786933pt;}
.y31{bottom:148.347600pt;}
.y56{bottom:158.586933pt;}
.y89{bottom:160.186267pt;}
.y30{bottom:165.147600pt;}
.y55{bottom:175.386933pt;}
.y88{bottom:176.986267pt;}
.y2f{bottom:181.947600pt;}
.y54{bottom:192.347333pt;}
.y87{bottom:193.786267pt;}
.y2e{bottom:198.907467pt;}
.y53{bottom:209.147333pt;}
.y86{bottom:210.586267pt;}
.y69{bottom:215.706933pt;}
.y2d{bottom:215.707467pt;}
.y52{bottom:226.107200pt;}
.y85{bottom:227.546667pt;}
.y68{bottom:232.506933pt;}
.y2c{bottom:232.667333pt;}
.y51{bottom:243.067067pt;}
.y67{bottom:249.466800pt;}
.y2b{bottom:249.467333pt;}
.y50{bottom:259.867067pt;}
.y84{bottom:260.346667pt;}
.y66{bottom:266.266800pt;}
.y2a{bottom:266.267333pt;}
.y4f{bottom:276.826933pt;}
.y83{bottom:277.146667pt;}
.y65{bottom:283.226667pt;}
.y29{bottom:283.227200pt;}
.y4e{bottom:293.507200pt;}
.y64{bottom:300.066800pt;}
.y28{bottom:300.067333pt;}
.y82{bottom:310.306533pt;}
.y4d{bottom:310.467067pt;}
.y63{bottom:316.866800pt;}
.y27{bottom:317.027200pt;}
.y81{bottom:327.106533pt;}
.y4c{bottom:327.267067pt;}
.y26{bottom:333.987067pt;}
.y80{bottom:343.906533pt;}
.y4b{bottom:344.226933pt;}
.y62{bottom:350.466800pt;}
.y25{bottom:350.787067pt;}
.y4a{bottom:361.026933pt;}
.y61{bottom:364.226667pt;}
.y24{bottom:367.747467pt;}
.y7f{bottom:377.506533pt;}
.y49{bottom:377.826933pt;}
.y23{bottom:384.707333pt;}
.y7e{bottom:394.466400pt;}
.y48{bottom:394.786800pt;}
.y22{bottom:401.507333pt;}
.y7d{bottom:411.266400pt;}
.y47{bottom:411.586800pt;}
.y21{bottom:418.307333pt;}
.y7c{bottom:428.226267pt;}
.y46{bottom:428.547200pt;}
.y20{bottom:435.267200pt;}
.y45{bottom:445.347200pt;}
.y1f{bottom:452.067200pt;}
.y7b{bottom:461.826267pt;}
.y44{bottom:462.147200pt;}
.y1e{bottom:469.027067pt;}
.y7a{bottom:478.786133pt;}
.y1d{bottom:485.827067pt;}
.y43{bottom:495.426933pt;}
.y79{bottom:495.586133pt;}
.y1c{bottom:502.627067pt;}
.y42{bottom:509.186800pt;}
.y78{bottom:512.546533pt;}
.y1b{bottom:519.586933pt;}
.y77{bottom:529.373067pt;}
.y1a{bottom:536.414000pt;}
.y76{bottom:546.173067pt;}
.y75{bottom:563.132933pt;}
.y19{bottom:568.573867pt;}
.y74{bottom:579.932933pt;}
.y18{bottom:585.373867pt;}
.y60{bottom:588.573333pt;}
.y73{bottom:596.892800pt;}
.y5f{bottom:605.533200pt;}
.y17{bottom:617.854133pt;}
.y5e{bottom:622.333200pt;}
.y72{bottom:630.492800pt;}
.y16{bottom:634.014000pt;}
.y5d{bottom:639.293067pt;}
.y71{bottom:647.292800pt;}
.y15{bottom:649.373867pt;}
.y5c{bottom:656.093067pt;}
.y70{bottom:664.252667pt;}
.y14{bottom:664.733733pt;}
.y5b{bottom:672.893067pt;}
.y13{bottom:680.093600pt;}
.y6f{bottom:681.052667pt;}
.y12{bottom:695.454000pt;}
.y5a{bottom:706.173333pt;}
.y6e{bottom:707.132933pt;}
.y11{bottom:710.653467pt;}
.y59{bottom:719.773333pt;}
.y6d{bottom:720.732933pt;}
.y10{bottom:726.013867pt;}
.yf{bottom:741.373733pt;}
.ye{bottom:756.733600pt;}
.yd{bottom:772.453867pt;}
.y41{bottom:785.413467pt;}
.y40{bottom:802.213467pt;}
.yc{bottom:804.773600pt;}
.y3f{bottom:819.173333pt;}
.yb{bottom:821.573600pt;}
.y3e{bottom:835.973333pt;}
.ya{bottom:838.693333pt;}
.y3d{bottom:852.933200pt;}
.y3c{bottom:869.733200pt;}
.y9{bottom:874.853333pt;}
.y8{bottom:885.573333pt;}
.y3b{bottom:886.693067pt;}
.y3a{bottom:903.493067pt;}
.y7{bottom:905.573680pt;}
.y6{bottom:916.293467pt;}
.y39{bottom:920.453467pt;}
.y5{bottom:931.653333pt;}
.y6c{bottom:937.092933pt;}
.y38{bottom:937.252933pt;}
.y6b{bottom:954.052800pt;}
.y37{bottom:954.213333pt;}
.y4{bottom:965.893467pt;}
.y58{bottom:970.853333pt;}
.y36{bottom:971.013333pt;}
.y6a{bottom:976.453333pt;}
.y3{bottom:984.293467pt;}
.y2{bottom:1004.293467pt;}
.y34{bottom:1050.400000pt;}
.h5{height:30.324375pt;}
.h8{height:40.882500pt;}
.h2{height:46.609688pt;}
.h4{height:48.884802pt;}
.h6{height:51.663750pt;}
.h9{height:51.665350pt;}
.h7{height:52.296250pt;}
.ha{height:56.156250pt;}
.h3{height:56.843750pt;}
.h1{height:1123.333333pt;}
.h0{height:1123.360027pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1{left:86.752133pt;}
.x5{left:94.592133pt;}
.x13{left:101.305880pt;}
.x3{left:102.752133pt;}
.xa{left:141.309267pt;}
.xe{left:142.586667pt;}
.x16{left:158.586800pt;}
.x7{left:176.346667pt;}
.xb{left:230.306667pt;}
.xf{left:253.346800pt;}
.x4{left:259.106800pt;}
.x9{left:263.428227pt;}
.x14{left:268.706800pt;}
.x11{left:302.307213pt;}
.x8{left:320.867133pt;}
.xd{left:331.106667pt;}
.x6{left:351.586667pt;}
.x15{left:492.253467pt;}
.x12{left:535.973880pt;}
.xc{left:540.453333pt;}
.x2{left:543.013467pt;}
.x10{left:544.133467pt;}
}




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