
    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_fc089b10557ced4379d395a3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_34f364ca414ba57fa6e9270c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0c1b32f250524198f1ebb991.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.974121;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_03315269edc7dd57a2aa5767.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b42e2d11b907122ee70ee7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974152;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;}
.ls5{letter-spacing:-0.756000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.057600px;}
.ls4{letter-spacing:0.077760px;}
.ls8{letter-spacing:0.117600px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.312000px;}
.ls3{letter-spacing:0.360000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.104960px;}
.ws2{word-spacing:-16.096320px;}
.ws5{word-spacing:-15.340320px;}
.ws8{word-spacing:-14.833680px;}
.ws6{word-spacing:-14.579280px;}
.ws7{word-spacing:-14.521680px;}
.ws1{word-spacing:-13.266000px;}
.ws0{word-spacing:-13.122000px;}
.ws4{word-spacing:0.000000px;}
._19{margin-left:-4.524480px;}
._18{margin-left:-3.225600px;}
._4{margin-left:-2.054880px;}
._0{margin-left:-1.026000px;}
._1{width:1.038000px;}
._b{width:2.402640px;}
._a{width:3.648960px;}
._1a{width:4.836960px;}
._1d{width:5.965920px;}
._1b{width:7.668240px;}
._20{width:9.146640px;}
._d{width:10.255200px;}
._c{width:11.592000px;}
._1f{width:12.873840px;}
._24{width:13.910400px;}
._23{width:14.959200px;}
._7{width:18.105360px;}
._8{width:19.677600px;}
._9{width:20.773920px;}
._25{width:21.946320px;}
._13{width:24.243840px;}
._12{width:25.460880px;}
._22{width:27.496080px;}
._21{width:28.880640px;}
._f{width:30.019440px;}
._e{width:31.132800px;}
._6{width:32.414640px;}
._26{width:33.583680px;}
._1c{width:34.979760px;}
._5{width:36.829440px;}
._27{width:38.508720px;}
._15{width:40.694640px;}
._14{width:41.929920px;}
._11{width:42.992880px;}
._10{width:44.405520px;}
._16{width:53.810160px;}
._17{width:54.846720px;}
._3{width:68.888160px;}
._2{width:70.080480px;}
._1e{width:101.923680px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:93.276000px;}
.y4f{bottom:106.236000px;}
.y1e{bottom:110.376000px;}
.y4e{bottom:126.036000px;}
.y7b{bottom:132.336000px;}
.y4d{bottom:145.836000px;}
.y7a{bottom:150.330000px;}
.y1d{bottom:151.050000px;}
.y4c{bottom:165.630000px;}
.y79{bottom:168.330000px;}
.y1c{bottom:170.850000px;}
.y4b{bottom:185.430000px;}
.y78{bottom:186.330000px;}
.y1b{bottom:190.650000px;}
.y4a{bottom:205.230000px;}
.y1a{bottom:210.450000px;}
.y49{bottom:225.030000px;}
.y77{bottom:225.390000px;}
.y19{bottom:230.250000px;}
.y76{bottom:243.390000px;}
.y48{bottom:244.830000px;}
.y18{bottom:250.050000px;}
.y17{bottom:269.850000px;}
.y75{bottom:278.535000px;}
.y47{bottom:285.735000px;}
.y16{bottom:289.695000px;}
.y15{bottom:309.495000px;}
.y74{bottom:325.335000px;}
.y46{bottom:326.595000px;}
.y14{bottom:329.295000px;}
.y73{bottom:345.135000px;}
.y45{bottom:346.395000px;}
.y13{bottom:349.095000px;}
.y72{bottom:364.935000px;}
.y44{bottom:366.195000px;}
.y12{bottom:368.895000px;}
.y71{bottom:384.735000px;}
.y43{bottom:385.995000px;}
.y11{bottom:388.695000px;}
.y70{bottom:404.535000px;}
.y42{bottom:405.795000px;}
.y10{bottom:408.495000px;}
.y6f{bottom:424.335000px;}
.y41{bottom:425.595000px;}
.y6e{bottom:444.135000px;}
.y40{bottom:445.395000px;}
.yf{bottom:449.355000px;}
.y6d{bottom:463.935000px;}
.y3f{bottom:465.195000px;}
.ye{bottom:469.155000px;}
.y6c{bottom:483.735000px;}
.y3e{bottom:484.995000px;}
.yd{bottom:488.955000px;}
.y6b{bottom:503.535000px;}
.y3d{bottom:504.795000px;}
.yc{bottom:508.755000px;}
.y6a{bottom:523.335000px;}
.y3c{bottom:524.595000px;}
.y69{bottom:543.135000px;}
.y3b{bottom:544.395000px;}
.yb{bottom:549.615000px;}
.y68{bottom:562.965000px;}
.y3a{bottom:564.225000px;}
.ya{bottom:569.445000px;}
.y67{bottom:582.765000px;}
.y39{bottom:584.025000px;}
.y9{bottom:589.245000px;}
.y66{bottom:602.565000px;}
.y38{bottom:603.825000px;}
.y8{bottom:609.045000px;}
.y65{bottom:622.365000px;}
.y37{bottom:623.625000px;}
.y64{bottom:642.165000px;}
.y36{bottom:643.425000px;}
.y7{bottom:649.905000px;}
.y63{bottom:661.965000px;}
.y35{bottom:663.225000px;}
.y6{bottom:669.705000px;}
.y62{bottom:681.765000px;}
.y34{bottom:683.025000px;}
.y61{bottom:701.565000px;}
.y33{bottom:702.825000px;}
.y8c{bottom:704.265000px;}
.y5{bottom:709.305000px;}
.y4{bottom:720.825000px;}
.y60{bottom:721.365000px;}
.y32{bottom:722.625000px;}
.y5f{bottom:741.165000px;}
.y8b{bottom:743.325000px;}
.y5e{bottom:760.965000px;}
.y31{bottom:763.485000px;}
.y5d{bottom:780.765000px;}
.y8a{bottom:782.205000px;}
.y30{bottom:804.165000px;}
.y89{bottom:821.265000px;}
.y5c{bottom:821.625000px;}
.y2f{bottom:823.965000px;}
.y2e{bottom:843.810000px;}
.y88{bottom:860.370000px;}
.y5b{bottom:862.530000px;}
.y2d{bottom:863.610000px;}
.y87{bottom:878.370000px;}
.y5a{bottom:882.330000px;}
.y2c{bottom:883.410000px;}
.y59{bottom:902.130000px;}
.y2b{bottom:903.210000px;}
.y86{bottom:917.250000px;}
.y58{bottom:921.930000px;}
.y2a{bottom:923.010000px;}
.y85{bottom:935.250000px;}
.y57{bottom:941.730000px;}
.y29{bottom:942.810000px;}
.y56{bottom:961.530000px;}
.y28{bottom:962.610000px;}
.y84{bottom:974.310000px;}
.y55{bottom:981.330000px;}
.y27{bottom:982.410000px;}
.y83{bottom:992.310000px;}
.y54{bottom:1001.130000px;}
.y26{bottom:1002.210000px;}
.y53{bottom:1020.930000px;}
.y25{bottom:1022.010000px;}
.y82{bottom:1031.370000px;}
.y52{bottom:1040.730000px;}
.y24{bottom:1041.810000px;}
.y81{bottom:1049.370000px;}
.y51{bottom:1060.530000px;}
.y23{bottom:1061.790000px;}
.y50{bottom:1080.330000px;}
.y22{bottom:1081.590000px;}
.y80{bottom:1088.430000px;}
.y21{bottom:1101.390000px;}
.y7f{bottom:1106.430000px;}
.y3{bottom:1107.870000px;}
.y20{bottom:1121.190000px;}
.y7e{bottom:1124.460000px;}
.y2{bottom:1127.700000px;}
.y1f{bottom:1141.020000px;}
.y7d{bottom:1142.460000px;}
.y1{bottom:1143.900000px;}
.h2{height:47.250000px;}
.h4{height:49.583118px;}
.h7{height:52.290000px;}
.h5{height:57.960000px;}
.h6{height:63.000000px;}
.h3{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.235987px;}
.x2{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.672000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.051200pt;}
.ls4{letter-spacing:0.069120pt;}
.ls8{letter-spacing:0.104533pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.277333pt;}
.ls3{letter-spacing:0.320000pt;}
.ws3{word-spacing:-14.315520pt;}
.ws2{word-spacing:-14.307840pt;}
.ws5{word-spacing:-13.635840pt;}
.ws8{word-spacing:-13.185493pt;}
.ws6{word-spacing:-12.959360pt;}
.ws7{word-spacing:-12.908160pt;}
.ws1{word-spacing:-11.792000pt;}
.ws0{word-spacing:-11.664000pt;}
.ws4{word-spacing:0.000000pt;}
._19{margin-left:-4.021760pt;}
._18{margin-left:-2.867200pt;}
._4{margin-left:-1.826560pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.922667pt;}
._b{width:2.135680pt;}
._a{width:3.243520pt;}
._1a{width:4.299520pt;}
._1d{width:5.303040pt;}
._1b{width:6.816213pt;}
._20{width:8.130347pt;}
._d{width:9.115733pt;}
._c{width:10.304000pt;}
._1f{width:11.443413pt;}
._24{width:12.364800pt;}
._23{width:13.297067pt;}
._7{width:16.093653pt;}
._8{width:17.491200pt;}
._9{width:18.465707pt;}
._25{width:19.507840pt;}
._13{width:21.550080pt;}
._12{width:22.631893pt;}
._22{width:24.440960pt;}
._21{width:25.671680pt;}
._f{width:26.683947pt;}
._e{width:27.673600pt;}
._6{width:28.813013pt;}
._26{width:29.852160pt;}
._1c{width:31.093120pt;}
._5{width:32.737280pt;}
._27{width:34.229973pt;}
._15{width:36.173013pt;}
._14{width:37.271040pt;}
._11{width:38.215893pt;}
._10{width:39.471573pt;}
._16{width:47.831253pt;}
._17{width:48.752640pt;}
._3{width:61.233920pt;}
._2{width:62.293760pt;}
._1e{width:90.598827pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:82.912000pt;}
.y4f{bottom:94.432000pt;}
.y1e{bottom:98.112000pt;}
.y4e{bottom:112.032000pt;}
.y7b{bottom:117.632000pt;}
.y4d{bottom:129.632000pt;}
.y7a{bottom:133.626667pt;}
.y1d{bottom:134.266667pt;}
.y4c{bottom:147.226667pt;}
.y79{bottom:149.626667pt;}
.y1c{bottom:151.866667pt;}
.y4b{bottom:164.826667pt;}
.y78{bottom:165.626667pt;}
.y1b{bottom:169.466667pt;}
.y4a{bottom:182.426667pt;}
.y1a{bottom:187.066667pt;}
.y49{bottom:200.026667pt;}
.y77{bottom:200.346667pt;}
.y19{bottom:204.666667pt;}
.y76{bottom:216.346667pt;}
.y48{bottom:217.626667pt;}
.y18{bottom:222.266667pt;}
.y17{bottom:239.866667pt;}
.y75{bottom:247.586667pt;}
.y47{bottom:253.986667pt;}
.y16{bottom:257.506667pt;}
.y15{bottom:275.106667pt;}
.y74{bottom:289.186667pt;}
.y46{bottom:290.306667pt;}
.y14{bottom:292.706667pt;}
.y73{bottom:306.786667pt;}
.y45{bottom:307.906667pt;}
.y13{bottom:310.306667pt;}
.y72{bottom:324.386667pt;}
.y44{bottom:325.506667pt;}
.y12{bottom:327.906667pt;}
.y71{bottom:341.986667pt;}
.y43{bottom:343.106667pt;}
.y11{bottom:345.506667pt;}
.y70{bottom:359.586667pt;}
.y42{bottom:360.706667pt;}
.y10{bottom:363.106667pt;}
.y6f{bottom:377.186667pt;}
.y41{bottom:378.306667pt;}
.y6e{bottom:394.786667pt;}
.y40{bottom:395.906667pt;}
.yf{bottom:399.426667pt;}
.y6d{bottom:412.386667pt;}
.y3f{bottom:413.506667pt;}
.ye{bottom:417.026667pt;}
.y6c{bottom:429.986667pt;}
.y3e{bottom:431.106667pt;}
.yd{bottom:434.626667pt;}
.y6b{bottom:447.586667pt;}
.y3d{bottom:448.706667pt;}
.yc{bottom:452.226667pt;}
.y6a{bottom:465.186667pt;}
.y3c{bottom:466.306667pt;}
.y69{bottom:482.786667pt;}
.y3b{bottom:483.906667pt;}
.yb{bottom:488.546667pt;}
.y68{bottom:500.413333pt;}
.y3a{bottom:501.533333pt;}
.ya{bottom:506.173333pt;}
.y67{bottom:518.013333pt;}
.y39{bottom:519.133333pt;}
.y9{bottom:523.773333pt;}
.y66{bottom:535.613333pt;}
.y38{bottom:536.733333pt;}
.y8{bottom:541.373333pt;}
.y65{bottom:553.213333pt;}
.y37{bottom:554.333333pt;}
.y64{bottom:570.813333pt;}
.y36{bottom:571.933333pt;}
.y7{bottom:577.693333pt;}
.y63{bottom:588.413333pt;}
.y35{bottom:589.533333pt;}
.y6{bottom:595.293333pt;}
.y62{bottom:606.013333pt;}
.y34{bottom:607.133333pt;}
.y61{bottom:623.613333pt;}
.y33{bottom:624.733333pt;}
.y8c{bottom:626.013333pt;}
.y5{bottom:630.493333pt;}
.y4{bottom:640.733333pt;}
.y60{bottom:641.213333pt;}
.y32{bottom:642.333333pt;}
.y5f{bottom:658.813333pt;}
.y8b{bottom:660.733333pt;}
.y5e{bottom:676.413333pt;}
.y31{bottom:678.653333pt;}
.y5d{bottom:694.013333pt;}
.y8a{bottom:695.293333pt;}
.y30{bottom:714.813333pt;}
.y89{bottom:730.013333pt;}
.y5c{bottom:730.333333pt;}
.y2f{bottom:732.413333pt;}
.y2e{bottom:750.053333pt;}
.y88{bottom:764.773333pt;}
.y5b{bottom:766.693333pt;}
.y2d{bottom:767.653333pt;}
.y87{bottom:780.773333pt;}
.y5a{bottom:784.293333pt;}
.y2c{bottom:785.253333pt;}
.y59{bottom:801.893333pt;}
.y2b{bottom:802.853333pt;}
.y86{bottom:815.333333pt;}
.y58{bottom:819.493333pt;}
.y2a{bottom:820.453333pt;}
.y85{bottom:831.333333pt;}
.y57{bottom:837.093333pt;}
.y29{bottom:838.053333pt;}
.y56{bottom:854.693333pt;}
.y28{bottom:855.653333pt;}
.y84{bottom:866.053333pt;}
.y55{bottom:872.293333pt;}
.y27{bottom:873.253333pt;}
.y83{bottom:882.053333pt;}
.y54{bottom:889.893333pt;}
.y26{bottom:890.853333pt;}
.y53{bottom:907.493333pt;}
.y25{bottom:908.453333pt;}
.y82{bottom:916.773333pt;}
.y52{bottom:925.093333pt;}
.y24{bottom:926.053333pt;}
.y81{bottom:932.773333pt;}
.y51{bottom:942.693333pt;}
.y23{bottom:943.813333pt;}
.y50{bottom:960.293333pt;}
.y22{bottom:961.413333pt;}
.y80{bottom:967.493333pt;}
.y21{bottom:979.013333pt;}
.y7f{bottom:983.493333pt;}
.y3{bottom:984.773333pt;}
.y20{bottom:996.613333pt;}
.y7e{bottom:999.520000pt;}
.y2{bottom:1002.400000pt;}
.y1f{bottom:1014.240000pt;}
.y7d{bottom:1015.520000pt;}
.y1{bottom:1016.800000pt;}
.h2{height:42.000000pt;}
.h4{height:44.073883pt;}
.h7{height:46.480000pt;}
.h5{height:51.520000pt;}
.h6{height:56.000000pt;}
.h3{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.431988pt;}
.x2{left:699.333322pt;}
}




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