
    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_0376e228cc9860e1cbea7b0f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_2da0575c5431bc5f3c7e1b0c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_e5444618ea6b2e08e68153aa.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_85845c282a616945dd8a4d11.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_a0463e49c571dbda87745aee.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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:23.760000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.106560px;}
.ls0{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:21.546720px;}
.ls3{letter-spacing:65.466720px;}
.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:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.133520px;}
._2{width:1.156560px;}
._8{width:3.146160px;}
._5{width:4.500000px;}
._1{width:5.742240px;}
._9{width:6.932160px;}
._b{width:8.584320px;}
._c{width:9.663600px;}
._10{width:10.752960px;}
._f{width:12.071520px;}
._d{width:13.864320px;}
._6{width:16.272240px;}
._7{width:17.530800px;}
._a{width:18.624000px;}
._e{width:19.780560px;}
._4{width:85.656000px;}
._3{width:687.306000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:35.100000px;}
.yb{bottom:50.580000px;}
.y85{bottom:117.216000px;}
.y3c{bottom:130.716000px;}
.y6b{bottom:133.776000px;}
.y3b{bottom:149.256000px;}
.y6a{bottom:151.050000px;}
.y84{bottom:152.490000px;}
.ya7{bottom:162.390000px;}
.y3a{bottom:167.970000px;}
.y69{bottom:168.330000px;}
.y83{bottom:169.770000px;}
.ya6{bottom:179.670000px;}
.y68{bottom:185.610000px;}
.y39{bottom:186.510000px;}
.y82{bottom:187.050000px;}
.ya5{bottom:196.950000px;}
.y67{bottom:202.890000px;}
.y81{bottom:204.330000px;}
.y38{bottom:205.050000px;}
.ya4{bottom:214.230000px;}
.y66{bottom:220.170000px;}
.y37{bottom:223.770000px;}
.ya3{bottom:231.510000px;}
.y65{bottom:237.270000px;}
.y80{bottom:239.610000px;}
.y36{bottom:242.310000px;}
.ya2{bottom:248.790000px;}
.y35{bottom:261.030000px;}
.ya1{bottom:265.890000px;}
.y64{bottom:267.870000px;}
.y7f{bottom:274.890000px;}
.y34{bottom:279.570000px;}
.ya0{bottom:283.170000px;}
.y63{bottom:286.590000px;}
.y7e{bottom:291.990000px;}
.y33{bottom:298.290000px;}
.y9f{bottom:300.450000px;}
.y7d{bottom:309.270000px;}
.y32{bottom:316.830000px;}
.y62{bottom:317.190000px;}
.y9e{bottom:317.730000px;}
.y7c{bottom:326.550000px;}
.yb4{bottom:327.090000px;}
.y9d{bottom:335.010000px;}
.y31{bottom:335.370000px;}
.y61{bottom:335.730000px;}
.yb3{bottom:344.415000px;}
.y9c{bottom:352.335000px;}
.y30{bottom:354.135000px;}
.yb2{bottom:361.695000px;}
.y7b{bottom:361.875000px;}
.y60{bottom:366.375000px;}
.y9b{bottom:369.435000px;}
.y2f{bottom:372.675000px;}
.yb1{bottom:378.975000px;}
.y5f{bottom:385.095000px;}
.y9a{bottom:386.715000px;}
.y2e{bottom:391.395000px;}
.yb0{bottom:396.075000px;}
.y7a{bottom:397.155000px;}
.y5e{bottom:403.635000px;}
.y99{bottom:403.995000px;}
.y2d{bottom:409.935000px;}
.yaf{bottom:413.355000px;}
.y79{bottom:414.435000px;}
.y98{bottom:421.275000px;}
.y2c{bottom:428.475000px;}
.yae{bottom:430.635000px;}
.y78{bottom:431.535000px;}
.y5d{bottom:434.235000px;}
.y97{bottom:438.555000px;}
.y2b{bottom:447.195000px;}
.yad{bottom:447.915000px;}
.y5c{bottom:452.955000px;}
.y96{bottom:455.655000px;}
.yac{bottom:465.195000px;}
.y2a{bottom:465.735000px;}
.y77{bottom:466.815000px;}
.y95{bottom:472.935000px;}
.yab{bottom:482.295000px;}
.y5b{bottom:483.555000px;}
.y29{bottom:484.455000px;}
.y94{bottom:490.215000px;}
.yaa{bottom:499.575000px;}
.y76{bottom:502.095000px;}
.y28{bottom:502.995000px;}
.y93{bottom:507.495000px;}
.y5a{bottom:514.155000px;}
.ya9{bottom:516.855000px;}
.y75{bottom:519.375000px;}
.y27{bottom:521.535000px;}
.y92{bottom:524.775000px;}
.y59{bottom:532.695000px;}
.ya8{bottom:534.135000px;}
.y74{bottom:536.655000px;}
.y26{bottom:540.255000px;}
.y91{bottom:542.055000px;}
.y58{bottom:551.415000px;}
.y25{bottom:558.795000px;}
.y90{bottom:559.155000px;}
.y57{bottom:568.695000px;}
.y73{bottom:571.755000px;}
.y8f{bottom:576.435000px;}
.y24{bottom:577.155000px;}
.y56{bottom:585.795000px;}
.y8e{bottom:593.715000px;}
.y23{bottom:594.975000px;}
.y55{bottom:603.075000px;}
.y72{bottom:607.065000px;}
.y8d{bottom:611.025000px;}
.y22{bottom:613.905000px;}
.y54{bottom:620.385000px;}
.y71{bottom:624.345000px;}
.y8c{bottom:628.305000px;}
.y21{bottom:632.985000px;}
.y53{bottom:637.665000px;}
.y70{bottom:641.625000px;}
.y8b{bottom:645.585000px;}
.y20{bottom:651.885000px;}
.y52{bottom:654.945000px;}
.y6f{bottom:658.905000px;}
.y8a{bottom:662.685000px;}
.y1f{bottom:670.785000px;}
.y51{bottom:672.225000px;}
.y89{bottom:679.965000px;}
.y50{bottom:689.325000px;}
.y1e{bottom:689.865000px;}
.y6e{bottom:694.005000px;}
.y88{bottom:697.245000px;}
.y4f{bottom:706.605000px;}
.y1d{bottom:708.765000px;}
.y87{bottom:714.525000px;}
.y4e{bottom:723.885000px;}
.y1c{bottom:727.845000px;}
.y6d{bottom:729.285000px;}
.y86{bottom:731.805000px;}
.y4d{bottom:741.165000px;}
.y6c{bottom:743.325000px;}
.y1b{bottom:746.745000px;}
.y4c{bottom:758.445000px;}
.y1a{bottom:765.645000px;}
.y4b{bottom:775.725000px;}
.y19{bottom:784.725000px;}
.y4a{bottom:792.825000px;}
.y18{bottom:803.625000px;}
.y49{bottom:810.105000px;}
.y17{bottom:822.705000px;}
.y48{bottom:827.385000px;}
.y16{bottom:841.605000px;}
.y47{bottom:844.665000px;}
.y15{bottom:860.505000px;}
.y46{bottom:861.945000px;}
.y45{bottom:879.090000px;}
.y14{bottom:879.630000px;}
.y44{bottom:896.370000px;}
.y13{bottom:898.530000px;}
.y43{bottom:913.650000px;}
.y12{bottom:917.610000px;}
.y42{bottom:930.930000px;}
.y11{bottom:936.510000px;}
.y41{bottom:948.210000px;}
.y10{bottom:955.590000px;}
.y40{bottom:965.490000px;}
.yf{bottom:974.490000px;}
.y3f{bottom:982.590000px;}
.ye{bottom:993.750000px;}
.y3e{bottom:999.870000px;}
.yd{bottom:1014.450000px;}
.y3d{bottom:1017.150000px;}
.ya{bottom:1034.790000px;}
.y9{bottom:1053.330000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1088.610000px;}
.y6{bottom:1105.350000px;}
.y5{bottom:1146.240000px;}
.y4{bottom:1164.780000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h6{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.ha{height:43.302656px;}
.h9{height:43.506914px;}
.hc{height:43.681992px;}
.h7{height:46.736719px;}
.h3{height:47.901094px;}
.h4{height:50.800781px;}
.hb{height:52.066406px;}
.h8{height:53.224453px;}
.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:108.035987px;}
.x1c{left:135.035987px;}
.x15{left:139.895987px;}
.x7{left:144.935987px;}
.x4{left:157.169987px;}
.x18{left:162.029987px;}
.xf{left:178.769987px;}
.xb{left:229.169987px;}
.x8{left:317.774987px;}
.xe{left:324.794987px;}
.xa{left:326.774987px;}
.x1a{left:346.394987px;}
.x12{left:349.454987px;}
.xd{left:351.614987px;}
.x17{left:359.354987px;}
.x10{left:362.234987px;}
.x19{left:364.394987px;}
.x6{left:368.174987px;}
.x9{left:371.594987px;}
.x11{left:384.374987px;}
.x13{left:386.534987px;}
.x1b{left:395.714987px;}
.x14{left:398.954987px;}
.x5{left:401.654987px;}
.xc{left:409.394987px;}
.x2{left:446.474987px;}
.x3{left:518.504987px;}
.x16{left:586.544987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.094720pt;}
.ls0{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:19.152640pt;}
.ls3{letter-spacing:58.192640pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.007573pt;}
._2{width:1.028053pt;}
._8{width:2.796587pt;}
._5{width:4.000000pt;}
._1{width:5.104213pt;}
._9{width:6.161920pt;}
._b{width:7.630507pt;}
._c{width:8.589867pt;}
._10{width:9.558187pt;}
._f{width:10.730240pt;}
._d{width:12.323840pt;}
._6{width:14.464213pt;}
._7{width:15.582933pt;}
._a{width:16.554667pt;}
._e{width:17.582720pt;}
._4{width:76.138667pt;}
._3{width:610.938667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:31.200000pt;}
.yb{bottom:44.960000pt;}
.y85{bottom:104.192000pt;}
.y3c{bottom:116.192000pt;}
.y6b{bottom:118.912000pt;}
.y3b{bottom:132.672000pt;}
.y6a{bottom:134.266667pt;}
.y84{bottom:135.546667pt;}
.ya7{bottom:144.346667pt;}
.y3a{bottom:149.306667pt;}
.y69{bottom:149.626667pt;}
.y83{bottom:150.906667pt;}
.ya6{bottom:159.706667pt;}
.y68{bottom:164.986667pt;}
.y39{bottom:165.786667pt;}
.y82{bottom:166.266667pt;}
.ya5{bottom:175.066667pt;}
.y67{bottom:180.346667pt;}
.y81{bottom:181.626667pt;}
.y38{bottom:182.266667pt;}
.ya4{bottom:190.426667pt;}
.y66{bottom:195.706667pt;}
.y37{bottom:198.906667pt;}
.ya3{bottom:205.786667pt;}
.y65{bottom:210.906667pt;}
.y80{bottom:212.986667pt;}
.y36{bottom:215.386667pt;}
.ya2{bottom:221.146667pt;}
.y35{bottom:232.026667pt;}
.ya1{bottom:236.346667pt;}
.y64{bottom:238.106667pt;}
.y7f{bottom:244.346667pt;}
.y34{bottom:248.506667pt;}
.ya0{bottom:251.706667pt;}
.y63{bottom:254.746667pt;}
.y7e{bottom:259.546667pt;}
.y33{bottom:265.146667pt;}
.y9f{bottom:267.066667pt;}
.y7d{bottom:274.906667pt;}
.y32{bottom:281.626667pt;}
.y62{bottom:281.946667pt;}
.y9e{bottom:282.426667pt;}
.y7c{bottom:290.266667pt;}
.yb4{bottom:290.746667pt;}
.y9d{bottom:297.786667pt;}
.y31{bottom:298.106667pt;}
.y61{bottom:298.426667pt;}
.yb3{bottom:306.146667pt;}
.y9c{bottom:313.186667pt;}
.y30{bottom:314.786667pt;}
.yb2{bottom:321.506667pt;}
.y7b{bottom:321.666667pt;}
.y60{bottom:325.666667pt;}
.y9b{bottom:328.386667pt;}
.y2f{bottom:331.266667pt;}
.yb1{bottom:336.866667pt;}
.y5f{bottom:342.306667pt;}
.y9a{bottom:343.746667pt;}
.y2e{bottom:347.906667pt;}
.yb0{bottom:352.066667pt;}
.y7a{bottom:353.026667pt;}
.y5e{bottom:358.786667pt;}
.y99{bottom:359.106667pt;}
.y2d{bottom:364.386667pt;}
.yaf{bottom:367.426667pt;}
.y79{bottom:368.386667pt;}
.y98{bottom:374.466667pt;}
.y2c{bottom:380.866667pt;}
.yae{bottom:382.786667pt;}
.y78{bottom:383.586667pt;}
.y5d{bottom:385.986667pt;}
.y97{bottom:389.826667pt;}
.y2b{bottom:397.506667pt;}
.yad{bottom:398.146667pt;}
.y5c{bottom:402.626667pt;}
.y96{bottom:405.026667pt;}
.yac{bottom:413.506667pt;}
.y2a{bottom:413.986667pt;}
.y77{bottom:414.946667pt;}
.y95{bottom:420.386667pt;}
.yab{bottom:428.706667pt;}
.y5b{bottom:429.826667pt;}
.y29{bottom:430.626667pt;}
.y94{bottom:435.746667pt;}
.yaa{bottom:444.066667pt;}
.y76{bottom:446.306667pt;}
.y28{bottom:447.106667pt;}
.y93{bottom:451.106667pt;}
.y5a{bottom:457.026667pt;}
.ya9{bottom:459.426667pt;}
.y75{bottom:461.666667pt;}
.y27{bottom:463.586667pt;}
.y92{bottom:466.466667pt;}
.y59{bottom:473.506667pt;}
.ya8{bottom:474.786667pt;}
.y74{bottom:477.026667pt;}
.y26{bottom:480.226667pt;}
.y91{bottom:481.826667pt;}
.y58{bottom:490.146667pt;}
.y25{bottom:496.706667pt;}
.y90{bottom:497.026667pt;}
.y57{bottom:505.506667pt;}
.y73{bottom:508.226667pt;}
.y8f{bottom:512.386667pt;}
.y24{bottom:513.026667pt;}
.y56{bottom:520.706667pt;}
.y8e{bottom:527.746667pt;}
.y23{bottom:528.866667pt;}
.y55{bottom:536.066667pt;}
.y72{bottom:539.613333pt;}
.y8d{bottom:543.133333pt;}
.y22{bottom:545.693333pt;}
.y54{bottom:551.453333pt;}
.y71{bottom:554.973333pt;}
.y8c{bottom:558.493333pt;}
.y21{bottom:562.653333pt;}
.y53{bottom:566.813333pt;}
.y70{bottom:570.333333pt;}
.y8b{bottom:573.853333pt;}
.y20{bottom:579.453333pt;}
.y52{bottom:582.173333pt;}
.y6f{bottom:585.693333pt;}
.y8a{bottom:589.053333pt;}
.y1f{bottom:596.253333pt;}
.y51{bottom:597.533333pt;}
.y89{bottom:604.413333pt;}
.y50{bottom:612.733333pt;}
.y1e{bottom:613.213333pt;}
.y6e{bottom:616.893333pt;}
.y88{bottom:619.773333pt;}
.y4f{bottom:628.093333pt;}
.y1d{bottom:630.013333pt;}
.y87{bottom:635.133333pt;}
.y4e{bottom:643.453333pt;}
.y1c{bottom:646.973333pt;}
.y6d{bottom:648.253333pt;}
.y86{bottom:650.493333pt;}
.y4d{bottom:658.813333pt;}
.y6c{bottom:660.733333pt;}
.y1b{bottom:663.773333pt;}
.y4c{bottom:674.173333pt;}
.y1a{bottom:680.573333pt;}
.y4b{bottom:689.533333pt;}
.y19{bottom:697.533333pt;}
.y4a{bottom:704.733333pt;}
.y18{bottom:714.333333pt;}
.y49{bottom:720.093333pt;}
.y17{bottom:731.293333pt;}
.y48{bottom:735.453333pt;}
.y16{bottom:748.093333pt;}
.y47{bottom:750.813333pt;}
.y15{bottom:764.893333pt;}
.y46{bottom:766.173333pt;}
.y45{bottom:781.413333pt;}
.y14{bottom:781.893333pt;}
.y44{bottom:796.773333pt;}
.y13{bottom:798.693333pt;}
.y43{bottom:812.133333pt;}
.y12{bottom:815.653333pt;}
.y42{bottom:827.493333pt;}
.y11{bottom:832.453333pt;}
.y41{bottom:842.853333pt;}
.y10{bottom:849.413333pt;}
.y40{bottom:858.213333pt;}
.yf{bottom:866.213333pt;}
.y3f{bottom:873.413333pt;}
.ye{bottom:883.333333pt;}
.y3e{bottom:888.773333pt;}
.yd{bottom:901.733333pt;}
.y3d{bottom:904.133333pt;}
.ya{bottom:919.813333pt;}
.y9{bottom:936.293333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.653333pt;}
.y6{bottom:982.533333pt;}
.y5{bottom:1018.880000pt;}
.y4{bottom:1035.360000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h6{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.ha{height:38.491250pt;}
.h9{height:38.672812pt;}
.hc{height:38.828437pt;}
.h7{height:41.543750pt;}
.h3{height:42.578750pt;}
.h4{height:45.156250pt;}
.hb{height:46.281250pt;}
.h8{height:47.310625pt;}
.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:96.031988pt;}
.x1c{left:120.031988pt;}
.x15{left:124.351988pt;}
.x7{left:128.831988pt;}
.x4{left:139.706655pt;}
.x18{left:144.026655pt;}
.xf{left:158.906655pt;}
.xb{left:203.706655pt;}
.x8{left:282.466655pt;}
.xe{left:288.706655pt;}
.xa{left:290.466655pt;}
.x1a{left:307.906655pt;}
.x12{left:310.626655pt;}
.xd{left:312.546655pt;}
.x17{left:319.426655pt;}
.x10{left:321.986655pt;}
.x19{left:323.906655pt;}
.x6{left:327.266655pt;}
.x9{left:330.306655pt;}
.x11{left:341.666655pt;}
.x13{left:343.586655pt;}
.x1b{left:351.746655pt;}
.x14{left:354.626655pt;}
.x5{left:357.026655pt;}
.xc{left:363.906655pt;}
.x2{left:396.866655pt;}
.x3{left:460.893322pt;}
.x16{left:521.373322pt;}
}




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