
    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_897af190fe48a171282acb47.woff')format("woff");}.ff1{font-family:ff1;line-height:0.880859;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_6e9503afc8d0f47b38962fe4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.880859;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_cbd2eaed865b1b7e3d09d135.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_485048d3eedc71b8b50d8650.woff')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_ccc34d32ba683acefdf0e35b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_ae8f291fb4871998da45af69.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_7c57a1aaba2cb5ce776a097e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_6ef0e78e0ae68c4a95904e72.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_5d123772bb4c8abe91c34807.woff')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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.v1{vertical-align:24.000000px;}
.ls5{letter-spacing:-3.984000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.750000px;}
.ls0{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.500000px;}
.ls8{letter-spacing:33.984000px;}
.ls6{letter-spacing:54.984000px;}
.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:-72.000000px;}
.ws5{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.750000px;}
.ws1{word-spacing:-12.156000px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-9.216000px;}
._4{margin-left:-7.968000px;}
._5{margin-left:-6.552000px;}
._7{margin-left:-5.025000px;}
._3{margin-left:-3.600000px;}
._2{margin-left:-2.592000px;}
._0{margin-left:-1.080000px;}
._1{width:1.500000px;}
._6{width:2.526000px;}
._8{width:3.765000px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(23,43,77);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs2{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:117.412500px;}
.y56{bottom:118.537500px;}
.y94{bottom:127.912500px;}
.ya0{bottom:139.537500px;}
.y7b{bottom:141.412500px;}
.y55{bottom:142.537500px;}
.y20{bottom:157.530000px;}
.y3b{bottom:163.545000px;}
.y93{bottom:163.920000px;}
.y7a{bottom:165.420000px;}
.y54{bottom:166.545000px;}
.y1f{bottom:181.530000px;}
.y3a{bottom:187.575000px;}
.y92{bottom:187.950000px;}
.y79{bottom:189.450000px;}
.y53{bottom:190.575000px;}
.y1e{bottom:205.575000px;}
.y39{bottom:211.575000px;}
.y78{bottom:213.450000px;}
.y52{bottom:215.700000px;}
.y91{bottom:223.950000px;}
.y1d{bottom:229.575000px;}
.y38{bottom:235.575000px;}
.y77{bottom:237.450000px;}
.y51{bottom:239.700000px;}
.y90{bottom:247.950000px;}
.y1c{bottom:253.575000px;}
.y37{bottom:259.575000px;}
.y76{bottom:261.075000px;}
.y50{bottom:263.700000px;}
.y8f{bottom:273.075000px;}
.y1b{bottom:277.575000px;}
.y36{bottom:283.575000px;}
.y4f{bottom:288.075000px;}
.y9f{bottom:295.575000px;}
.y75{bottom:297.075000px;}
.y8e{bottom:297.450000px;}
.y1a{bottom:301.575000px;}
.y35{bottom:307.620000px;}
.y4e{bottom:313.230000px;}
.y8d{bottom:322.620000px;}
.y19{bottom:325.620000px;}
.y9e{bottom:331.620000px;}
.y74{bottom:333.120000px;}
.y4d{bottom:337.245000px;}
.y34{bottom:343.620000px;}
.y8c{bottom:347.745000px;}
.y18{bottom:349.245000px;}
.y4c{bottom:362.370000px;}
.y9d{bottom:367.620000px;}
.y73{bottom:369.120000px;}
.y8b{bottom:371.745000px;}
.y33{bottom:379.620000px;}
.y17{bottom:384.495000px;}
.y4b{bottom:386.370000px;}
.y9c{bottom:391.620000px;}
.y32{bottom:403.620000px;}
.y72{bottom:405.120000px;}
.y8a{bottom:408.870000px;}
.y4a{bottom:410.370000px;}
.y9b{bottom:415.620000px;}
.y16{bottom:417.495000px;}
.y31{bottom:427.650000px;}
.y71{bottom:429.150000px;}
.y49{bottom:435.900000px;}
.y9a{bottom:439.650000px;}
.y89{bottom:444.900000px;}
.y15{bottom:451.275000px;}
.y30{bottom:451.650000px;}
.y70{bottom:453.150000px;}
.y48{bottom:461.025000px;}
.y99{bottom:463.275000px;}
.y14{bottom:475.275000px;}
.y6f{bottom:477.150000px;}
.y88{bottom:480.900000px;}
.y47{bottom:484.650000px;}
.y98{bottom:487.275000px;}
.y13{bottom:499.275000px;}
.y6e{bottom:502.275000px;}
.y46{bottom:509.025000px;}
.y97{bottom:511.275000px;}
.y87{bottom:516.900000px;}
.y12{bottom:523.275000px;}
.y6d{bottom:526.275000px;}
.y45{bottom:534.150000px;}
.y86{bottom:541.320000px;}
.y11{bottom:547.320000px;}
.y6c{bottom:550.320000px;}
.y44{bottom:558.195000px;}
.y2f{bottom:559.320000px;}
.y85{bottom:566.445000px;}
.y10{bottom:571.320000px;}
.y6b{bottom:574.695000px;}
.y2e{bottom:583.320000px;}
.y84{bottom:591.570000px;}
.yf{bottom:595.320000px;}
.y6a{bottom:599.820000px;}
.y2d{bottom:607.320000px;}
.y83{bottom:615.570000px;}
.ye{bottom:619.320000px;}
.y69{bottom:623.820000px;}
.y2c{bottom:631.320000px;}
.y82{bottom:640.695000px;}
.yd{bottom:643.320000px;}
.y68{bottom:647.445000px;}
.y2b{bottom:655.320000px;}
.y81{bottom:665.100000px;}
.yc{bottom:667.350000px;}
.y67{bottom:671.850000px;}
.y2a{bottom:679.350000px;}
.y80{bottom:689.850000px;}
.y43{bottom:691.350000px;}
.y66{bottom:696.975000px;}
.yb{bottom:703.350000px;}
.y7f{bottom:713.850000px;}
.y42{bottom:715.350000px;}
.y65{bottom:720.975000px;}
.y96{bottom:727.350000px;}
.y7e{bottom:738.225000px;}
.ya{bottom:739.350000px;}
.y64{bottom:744.975000px;}
.ya1{bottom:751.350000px;}
.y41{bottom:763.350000px;}
.y63{bottom:770.100000px;}
.y9{bottom:775.350000px;}
.y40{bottom:787.395000px;}
.y62{bottom:794.145000px;}
.y29{bottom:799.380000px;}
.y8{bottom:811.005000px;}
.y3f{bottom:811.380000px;}
.y61{bottom:818.130000px;}
.y28{bottom:823.380000px;}
.y3e{bottom:835.380000px;}
.y60{bottom:843.255000px;}
.y7{bottom:847.005000px;}
.y27{bottom:847.380000px;}
.y95{bottom:859.380000px;}
.y5f{bottom:867.255000px;}
.y26{bottom:871.005000px;}
.y7d{bottom:871.380000px;}
.y6{bottom:883.005000px;}
.y5e{bottom:891.255000px;}
.y25{bottom:895.005000px;}
.y3d{bottom:907.050000px;}
.y5d{bottom:915.675000px;}
.y5{bottom:919.050000px;}
.y5c{bottom:940.425000px;}
.y24{bottom:943.050000px;}
.y4{bottom:955.050000px;}
.y5b{bottom:964.800000px;}
.y23{bottom:967.050000px;}
.y5a{bottom:989.925000px;}
.y3{bottom:991.050000px;}
.y22{bottom:1003.050000px;}
.y59{bottom:1013.925000px;}
.y3c{bottom:1015.080000px;}
.y2{bottom:1027.080000px;}
.y58{bottom:1037.955000px;}
.y21{bottom:1039.080000px;}
.y57{bottom:1061.955000px;}
.y1{bottom:1063.080000px;}
.h5{height:48.019043px;}
.h1{height:50.800781px;}
.h7{height:52.171875px;}
.h2{height:54.878906px;}
.h6{height:55.155762px;}
.h4{height:60.585938px;}
.h3{height:63.035156px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:108.037486px;}
.xd{left:135.074986px;}
.x9{left:145.949986px;}
.xa{left:162.074986px;}
.x6{left:178.574986px;}
.xb{left:189.074986px;}
.x2{left:204.824986px;}
.xc{left:216.074986px;}
.x8{left:268.619986px;}
.x4{left:279.119986px;}
.x1{left:381.149986px;}
.x3{left:384.899986px;}
.x7{left:400.274986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls5{letter-spacing:-3.541333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.666667pt;}
.ls0{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.333333pt;}
.ls8{letter-spacing:30.208000pt;}
.ls6{letter-spacing:48.874667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.000000pt;}
.ws1{word-spacing:-10.805333pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-8.192000pt;}
._4{margin-left:-7.082667pt;}
._5{margin-left:-5.824000pt;}
._7{margin-left:-4.466667pt;}
._3{margin-left:-3.200000pt;}
._2{margin-left:-2.304000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.333333pt;}
._6{width:2.245333pt;}
._8{width:3.346667pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:104.366667pt;}
.y56{bottom:105.366667pt;}
.y94{bottom:113.700000pt;}
.ya0{bottom:124.033333pt;}
.y7b{bottom:125.700000pt;}
.y55{bottom:126.700000pt;}
.y20{bottom:140.026667pt;}
.y3b{bottom:145.373333pt;}
.y93{bottom:145.706667pt;}
.y7a{bottom:147.040000pt;}
.y54{bottom:148.040000pt;}
.y1f{bottom:161.360000pt;}
.y3a{bottom:166.733333pt;}
.y92{bottom:167.066667pt;}
.y79{bottom:168.400000pt;}
.y53{bottom:169.400000pt;}
.y1e{bottom:182.733333pt;}
.y39{bottom:188.066667pt;}
.y78{bottom:189.733333pt;}
.y52{bottom:191.733333pt;}
.y91{bottom:199.066667pt;}
.y1d{bottom:204.066667pt;}
.y38{bottom:209.400000pt;}
.y77{bottom:211.066667pt;}
.y51{bottom:213.066667pt;}
.y90{bottom:220.400000pt;}
.y1c{bottom:225.400000pt;}
.y37{bottom:230.733333pt;}
.y76{bottom:232.066667pt;}
.y50{bottom:234.400000pt;}
.y8f{bottom:242.733333pt;}
.y1b{bottom:246.733333pt;}
.y36{bottom:252.066667pt;}
.y4f{bottom:256.066667pt;}
.y9f{bottom:262.733333pt;}
.y75{bottom:264.066667pt;}
.y8e{bottom:264.400000pt;}
.y1a{bottom:268.066667pt;}
.y35{bottom:273.440000pt;}
.y4e{bottom:278.426667pt;}
.y8d{bottom:286.773333pt;}
.y19{bottom:289.440000pt;}
.y9e{bottom:294.773333pt;}
.y74{bottom:296.106667pt;}
.y4d{bottom:299.773333pt;}
.y34{bottom:305.440000pt;}
.y8c{bottom:309.106667pt;}
.y18{bottom:310.440000pt;}
.y4c{bottom:322.106667pt;}
.y9d{bottom:326.773333pt;}
.y73{bottom:328.106667pt;}
.y8b{bottom:330.440000pt;}
.y33{bottom:337.440000pt;}
.y17{bottom:341.773333pt;}
.y4b{bottom:343.440000pt;}
.y9c{bottom:348.106667pt;}
.y32{bottom:358.773333pt;}
.y72{bottom:360.106667pt;}
.y8a{bottom:363.440000pt;}
.y4a{bottom:364.773333pt;}
.y9b{bottom:369.440000pt;}
.y16{bottom:371.106667pt;}
.y31{bottom:380.133333pt;}
.y71{bottom:381.466667pt;}
.y49{bottom:387.466667pt;}
.y9a{bottom:390.800000pt;}
.y89{bottom:395.466667pt;}
.y15{bottom:401.133333pt;}
.y30{bottom:401.466667pt;}
.y70{bottom:402.800000pt;}
.y48{bottom:409.800000pt;}
.y99{bottom:411.800000pt;}
.y14{bottom:422.466667pt;}
.y6f{bottom:424.133333pt;}
.y88{bottom:427.466667pt;}
.y47{bottom:430.800000pt;}
.y98{bottom:433.133333pt;}
.y13{bottom:443.800000pt;}
.y6e{bottom:446.466667pt;}
.y46{bottom:452.466667pt;}
.y97{bottom:454.466667pt;}
.y87{bottom:459.466667pt;}
.y12{bottom:465.133333pt;}
.y6d{bottom:467.800000pt;}
.y45{bottom:474.800000pt;}
.y86{bottom:481.173333pt;}
.y11{bottom:486.506667pt;}
.y6c{bottom:489.173333pt;}
.y44{bottom:496.173333pt;}
.y2f{bottom:497.173333pt;}
.y85{bottom:503.506667pt;}
.y10{bottom:507.840000pt;}
.y6b{bottom:510.840000pt;}
.y2e{bottom:518.506667pt;}
.y84{bottom:525.840000pt;}
.yf{bottom:529.173333pt;}
.y6a{bottom:533.173333pt;}
.y2d{bottom:539.840000pt;}
.y83{bottom:547.173333pt;}
.ye{bottom:550.506667pt;}
.y69{bottom:554.506667pt;}
.y2c{bottom:561.173333pt;}
.y82{bottom:569.506667pt;}
.yd{bottom:571.840000pt;}
.y68{bottom:575.506667pt;}
.y2b{bottom:582.506667pt;}
.y81{bottom:591.200000pt;}
.yc{bottom:593.200000pt;}
.y67{bottom:597.200000pt;}
.y2a{bottom:603.866667pt;}
.y80{bottom:613.200000pt;}
.y43{bottom:614.533333pt;}
.y66{bottom:619.533333pt;}
.yb{bottom:625.200000pt;}
.y7f{bottom:634.533333pt;}
.y42{bottom:635.866667pt;}
.y65{bottom:640.866667pt;}
.y96{bottom:646.533333pt;}
.y7e{bottom:656.200000pt;}
.ya{bottom:657.200000pt;}
.y64{bottom:662.200000pt;}
.ya1{bottom:667.866667pt;}
.y41{bottom:678.533333pt;}
.y63{bottom:684.533333pt;}
.y9{bottom:689.200000pt;}
.y40{bottom:699.906667pt;}
.y62{bottom:705.906667pt;}
.y29{bottom:710.560000pt;}
.y8{bottom:720.893333pt;}
.y3f{bottom:721.226667pt;}
.y61{bottom:727.226667pt;}
.y28{bottom:731.893333pt;}
.y3e{bottom:742.560000pt;}
.y60{bottom:749.560000pt;}
.y7{bottom:752.893333pt;}
.y27{bottom:753.226667pt;}
.y95{bottom:763.893333pt;}
.y5f{bottom:770.893333pt;}
.y26{bottom:774.226667pt;}
.y7d{bottom:774.560000pt;}
.y6{bottom:784.893333pt;}
.y5e{bottom:792.226667pt;}
.y25{bottom:795.560000pt;}
.y3d{bottom:806.266667pt;}
.y5d{bottom:813.933333pt;}
.y5{bottom:816.933333pt;}
.y5c{bottom:835.933333pt;}
.y24{bottom:838.266667pt;}
.y4{bottom:848.933333pt;}
.y5b{bottom:857.600000pt;}
.y23{bottom:859.600000pt;}
.y5a{bottom:879.933333pt;}
.y3{bottom:880.933333pt;}
.y22{bottom:891.600000pt;}
.y59{bottom:901.266667pt;}
.y3c{bottom:902.293333pt;}
.y2{bottom:912.960000pt;}
.y58{bottom:922.626667pt;}
.y21{bottom:923.626667pt;}
.y57{bottom:943.960000pt;}
.y1{bottom:944.960000pt;}
.h5{height:42.683594pt;}
.h1{height:45.156250pt;}
.h7{height:46.375000pt;}
.h2{height:48.781250pt;}
.h6{height:49.027344pt;}
.h4{height:53.854167pt;}
.h3{height:56.031250pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:96.033321pt;}
.xd{left:120.066655pt;}
.x9{left:129.733321pt;}
.xa{left:144.066655pt;}
.x6{left:158.733321pt;}
.xb{left:168.066655pt;}
.x2{left:182.066655pt;}
.xc{left:192.066655pt;}
.x8{left:238.773321pt;}
.x4{left:248.106655pt;}
.x1{left:338.799988pt;}
.x3{left:342.133321pt;}
.x7{left:355.799988pt;}
}




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