
    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_eb2b977c880ffaf763d7fd30.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_0dc8865d12f23d1f148e72f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.929199;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_f8b873da8fa25c681525207e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.201172;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_0737ece7bd7a83eda012420f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_3d8ce6c717e2903f8b82be32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_95d3f4b93d622007492bceb1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_2d861de50d48ae2ed4a471ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.310800px;}
.lsd{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.107400px;}
.ls8{letter-spacing:-0.064800px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.089400px;}
.ls3{letter-spacing:0.126600px;}
.ls6{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.186600px;}
.ls4{letter-spacing:0.220320px;}
.lsa{letter-spacing:0.243600px;}
.ls5{letter-spacing:0.940320px;}
.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;}
}
.ws0{word-spacing:-15.059640px;}
.ws1{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.754240px;}
.ws8{word-spacing:-14.659440px;}
.ws3{word-spacing:-14.340240px;}
.ws6{word-spacing:-13.749360px;}
.ws4{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.440960px;}
.ws7{word-spacing:-13.398360px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-4.968000px;}
._1{margin-left:-3.444480px;}
._7{margin-left:-2.256000px;}
._0{margin-left:-1.204800px;}
._3{width:1.002240px;}
._a{width:2.029440px;}
._6{width:3.170880px;}
._11{width:4.181760px;}
._9{width:5.439360px;}
._8{width:6.822720px;}
._b{width:8.366400px;}
._f{width:9.406080px;}
._10{width:10.465920px;}
._4{width:11.724480px;}
._e{width:13.450560px;}
._16{width:14.581440px;}
._c{width:16.440000px;}
._d{width:17.466240px;}
._17{width:20.497920px;}
._13{width:21.528000px;}
._12{width:22.657920px;}
._2{width:24.508800px;}
._14{width:26.164800px;}
._15{width:27.224640px;}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.120000px;}
.y1{bottom:62.280000px;}
.yb8{bottom:120.276000px;}
.yb7{bottom:140.436000px;}
.y4a{bottom:144.396000px;}
.y23{bottom:155.910000px;}
.y6e{bottom:157.710000px;}
.yb6{bottom:160.590000px;}
.y49{bottom:164.550000px;}
.y92{bottom:165.810000px;}
.y22{bottom:176.070000px;}
.y91{bottom:183.990000px;}
.y48{bottom:184.710000px;}
.y21{bottom:196.230000px;}
.y6d{bottom:198.750000px;}
.yb5{bottom:201.630000px;}
.y90{bottom:202.350000px;}
.y47{bottom:204.870000px;}
.y6c{bottom:218.910000px;}
.yb4{bottom:221.790000px;}
.y20{bottom:237.450000px;}
.y8f{bottom:241.770000px;}
.yb3{bottom:241.950000px;}
.y46{bottom:245.910000px;}
.y8e{bottom:259.950000px;}
.y6b{bottom:260.130000px;}
.yb2{bottom:262.110000px;}
.y45{bottom:266.070000px;}
.y8d{bottom:278.310000px;}
.y1f{bottom:278.490000px;}
.y6a{bottom:280.290000px;}
.yb1{bottom:282.270000px;}
.y44{bottom:286.230000px;}
.y8c{bottom:296.670000px;}
.y1e{bottom:298.650000px;}
.yb0{bottom:302.430000px;}
.y43{bottom:306.390000px;}
.y8b{bottom:314.850000px;}
.y1d{bottom:318.810000px;}
.y69{bottom:321.330000px;}
.yaf{bottom:322.590000px;}
.y42{bottom:326.550000px;}
.y8a{bottom:333.210000px;}
.y68{bottom:341.535000px;}
.yae{bottom:342.615000px;}
.y89{bottom:351.615000px;}
.y1c{bottom:360.435000px;}
.y41{bottom:367.815000px;}
.y88{bottom:369.975000px;}
.y67{bottom:382.395000px;}
.yad{bottom:383.835000px;}
.y40{bottom:387.975000px;}
.y87{bottom:388.155000px;}
.y66{bottom:400.575000px;}
.yac{bottom:403.995000px;}
.y86{bottom:406.515000px;}
.y3f{bottom:407.955000px;}
.y1b{bottom:409.035000px;}
.y65{bottom:418.755000px;}
.yab{bottom:424.155000px;}
.y85{bottom:424.875000px;}
.y3e{bottom:428.115000px;}
.y1a{bottom:429.195000px;}
.yaa{bottom:444.315000px;}
.y3d{bottom:448.275000px;}
.y64{bottom:458.715000px;}
.y84{bottom:464.295000px;}
.y19{bottom:470.235000px;}
.y63{bottom:478.875000px;}
.y83{bottom:482.475000px;}
.ya9{bottom:485.355000px;}
.y3c{bottom:489.495000px;}
.y18{bottom:490.395000px;}
.y62{bottom:499.035000px;}
.y82{bottom:500.835000px;}
.ya8{bottom:505.515000px;}
.y3b{bottom:509.655000px;}
.y17{bottom:510.555000px;}
.y81{bottom:519.015000px;}
.y61{bottom:519.195000px;}
.ya7{bottom:525.675000px;}
.y3a{bottom:529.815000px;}
.y16{bottom:530.715000px;}
.y80{bottom:537.375000px;}
.ya6{bottom:545.835000px;}
.y39{bottom:549.795000px;}
.y15{bottom:550.875000px;}
.y7f{bottom:555.735000px;}
.y60{bottom:560.235000px;}
.ya5{bottom:565.995000px;}
.y38{bottom:569.955000px;}
.y14{bottom:571.035000px;}
.y7e{bottom:574.095000px;}
.y5f{bottom:580.395000px;}
.y37{bottom:590.115000px;}
.y7d{bottom:592.275000px;}
.y5e{bottom:600.555000px;}
.ya4{bottom:607.065000px;}
.y13{bottom:611.745000px;}
.y5d{bottom:620.745000px;}
.ya3{bottom:627.225000px;}
.y12{bottom:629.925000px;}
.y36{bottom:631.365000px;}
.y7c{bottom:632.265000px;}
.y5c{bottom:640.905000px;}
.y7b{bottom:652.425000px;}
.ya2{bottom:668.805000px;}
.y11{bottom:669.705000px;}
.y35{bottom:672.405000px;}
.y5b{bottom:681.945000px;}
.y10{bottom:689.865000px;}
.y34{bottom:692.565000px;}
.y5a{bottom:702.105000px;}
.yf{bottom:710.025000px;}
.y33{bottom:712.725000px;}
.ya1{bottom:717.405000px;}
.y59{bottom:722.265000px;}
.y7a{bottom:733.785000px;}
.ya0{bottom:737.565000px;}
.y58{bottom:742.425000px;}
.ye{bottom:751.245000px;}
.y32{bottom:753.945000px;}
.yd{bottom:771.405000px;}
.y31{bottom:774.105000px;}
.y9f{bottom:778.605000px;}
.y57{bottom:783.105000px;}
.y30{bottom:794.265000px;}
.y79{bottom:794.985000px;}
.y56{bottom:801.285000px;}
.yc{bottom:812.445000px;}
.y55{bottom:819.645000px;}
.y9e{bottom:819.825000px;}
.yb{bottom:832.605000px;}
.y2f{bottom:835.305000px;}
.y78{bottom:836.205000px;}
.y54{bottom:838.005000px;}
.y9d{bottom:839.985000px;}
.y2e{bottom:855.465000px;}
.y53{bottom:856.185000px;}
.y77{bottom:856.365000px;}
.y9c{bottom:860.145000px;}
.ya{bottom:873.690000px;}
.y52{bottom:874.590000px;}
.y2d{bottom:875.670000px;}
.y76{bottom:876.570000px;}
.y75{bottom:896.730000px;}
.y9b{bottom:901.230000px;}
.y51{bottom:914.010000px;}
.y9{bottom:915.450000px;}
.y2c{bottom:916.710000px;}
.yba{bottom:916.890000px;}
.y9a{bottom:921.390000px;}
.y50{bottom:932.190000px;}
.y2b{bottom:936.870000px;}
.y74{bottom:937.770000px;}
.y4f{bottom:950.550000px;}
.y2a{bottom:957.030000px;}
.y73{bottom:957.930000px;}
.y99{bottom:962.610000px;}
.y8{bottom:963.870000px;}
.y72{bottom:978.090000px;}
.y7{bottom:984.030000px;}
.y4e{bottom:990.330000px;}
.y29{bottom:998.250000px;}
.y98{bottom:1003.650000px;}
.y4d{bottom:1010.490000px;}
.y28{bottom:1018.410000px;}
.y71{bottom:1019.130000px;}
.y97{bottom:1023.810000px;}
.y6{bottom:1025.610000px;}
.y4c{bottom:1030.650000px;}
.y70{bottom:1039.290000px;}
.y27{bottom:1059.450000px;}
.y96{bottom:1065.030000px;}
.y4b{bottom:1072.230000px;}
.y5{bottom:1074.210000px;}
.yb9{bottom:1079.610000px;}
.y6f{bottom:1080.510000px;}
.y4{bottom:1094.370000px;}
.y26{bottom:1100.670000px;}
.y95{bottom:1105.710000px;}
.y25{bottom:1120.830000px;}
.y94{bottom:1123.890000px;}
.y3{bottom:1136.670000px;}
.y24{bottom:1141.020000px;}
.y93{bottom:1142.280000px;}
.h2{height:43.506914px;}
.h8{height:48.088125px;}
.h4{height:53.302500px;}
.h7{height:59.439023px;}
.h6{height:65.884219px;}
.h5{height:73.722656px;}
.h3{height:86.255508px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x3{left:180.749987px;}
.x1{left:433.154987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.276267pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.095467pt;}
.ls8{letter-spacing:-0.057600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.079467pt;}
.ls3{letter-spacing:0.112533pt;}
.ls6{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.165867pt;}
.ls4{letter-spacing:0.195840pt;}
.lsa{letter-spacing:0.216533pt;}
.ls5{letter-spacing:0.835840pt;}
.ws0{word-spacing:-13.386347pt;}
.ws1{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.114880pt;}
.ws8{word-spacing:-13.030613pt;}
.ws3{word-spacing:-12.746880pt;}
.ws6{word-spacing:-12.221653pt;}
.ws4{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.947520pt;}
.ws7{word-spacing:-11.909653pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-4.416000pt;}
._1{margin-left:-3.061760pt;}
._7{margin-left:-2.005333pt;}
._0{margin-left:-1.070933pt;}
._3{width:0.890880pt;}
._a{width:1.803947pt;}
._6{width:2.818560pt;}
._11{width:3.717120pt;}
._9{width:4.834987pt;}
._8{width:6.064640pt;}
._b{width:7.436800pt;}
._f{width:8.360960pt;}
._10{width:9.303040pt;}
._4{width:10.421760pt;}
._e{width:11.956053pt;}
._16{width:12.961280pt;}
._c{width:14.613333pt;}
._d{width:15.525547pt;}
._17{width:18.220373pt;}
._13{width:19.136000pt;}
._12{width:20.140373pt;}
._2{width:21.785600pt;}
._14{width:23.257600pt;}
._15{width:24.199680pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.440000pt;}
.y1{bottom:55.360000pt;}
.yb8{bottom:106.912000pt;}
.yb7{bottom:124.832000pt;}
.y4a{bottom:128.352000pt;}
.y23{bottom:138.586667pt;}
.y6e{bottom:140.186667pt;}
.yb6{bottom:142.746667pt;}
.y49{bottom:146.266667pt;}
.y92{bottom:147.386667pt;}
.y22{bottom:156.506667pt;}
.y91{bottom:163.546667pt;}
.y48{bottom:164.186667pt;}
.y21{bottom:174.426667pt;}
.y6d{bottom:176.666667pt;}
.yb5{bottom:179.226667pt;}
.y90{bottom:179.866667pt;}
.y47{bottom:182.106667pt;}
.y6c{bottom:194.586667pt;}
.yb4{bottom:197.146667pt;}
.y20{bottom:211.066667pt;}
.y8f{bottom:214.906667pt;}
.yb3{bottom:215.066667pt;}
.y46{bottom:218.586667pt;}
.y8e{bottom:231.066667pt;}
.y6b{bottom:231.226667pt;}
.yb2{bottom:232.986667pt;}
.y45{bottom:236.506667pt;}
.y8d{bottom:247.386667pt;}
.y1f{bottom:247.546667pt;}
.y6a{bottom:249.146667pt;}
.yb1{bottom:250.906667pt;}
.y44{bottom:254.426667pt;}
.y8c{bottom:263.706667pt;}
.y1e{bottom:265.466667pt;}
.yb0{bottom:268.826667pt;}
.y43{bottom:272.346667pt;}
.y8b{bottom:279.866667pt;}
.y1d{bottom:283.386667pt;}
.y69{bottom:285.626667pt;}
.yaf{bottom:286.746667pt;}
.y42{bottom:290.266667pt;}
.y8a{bottom:296.186667pt;}
.y68{bottom:303.586667pt;}
.yae{bottom:304.546667pt;}
.y89{bottom:312.546667pt;}
.y1c{bottom:320.386667pt;}
.y41{bottom:326.946667pt;}
.y88{bottom:328.866667pt;}
.y67{bottom:339.906667pt;}
.yad{bottom:341.186667pt;}
.y40{bottom:344.866667pt;}
.y87{bottom:345.026667pt;}
.y66{bottom:356.066667pt;}
.yac{bottom:359.106667pt;}
.y86{bottom:361.346667pt;}
.y3f{bottom:362.626667pt;}
.y1b{bottom:363.586667pt;}
.y65{bottom:372.226667pt;}
.yab{bottom:377.026667pt;}
.y85{bottom:377.666667pt;}
.y3e{bottom:380.546667pt;}
.y1a{bottom:381.506667pt;}
.yaa{bottom:394.946667pt;}
.y3d{bottom:398.466667pt;}
.y64{bottom:407.746667pt;}
.y84{bottom:412.706667pt;}
.y19{bottom:417.986667pt;}
.y63{bottom:425.666667pt;}
.y83{bottom:428.866667pt;}
.ya9{bottom:431.426667pt;}
.y3c{bottom:435.106667pt;}
.y18{bottom:435.906667pt;}
.y62{bottom:443.586667pt;}
.y82{bottom:445.186667pt;}
.ya8{bottom:449.346667pt;}
.y3b{bottom:453.026667pt;}
.y17{bottom:453.826667pt;}
.y81{bottom:461.346667pt;}
.y61{bottom:461.506667pt;}
.ya7{bottom:467.266667pt;}
.y3a{bottom:470.946667pt;}
.y16{bottom:471.746667pt;}
.y80{bottom:477.666667pt;}
.ya6{bottom:485.186667pt;}
.y39{bottom:488.706667pt;}
.y15{bottom:489.666667pt;}
.y7f{bottom:493.986667pt;}
.y60{bottom:497.986667pt;}
.ya5{bottom:503.106667pt;}
.y38{bottom:506.626667pt;}
.y14{bottom:507.586667pt;}
.y7e{bottom:510.306667pt;}
.y5f{bottom:515.906667pt;}
.y37{bottom:524.546667pt;}
.y7d{bottom:526.466667pt;}
.y5e{bottom:533.826667pt;}
.ya4{bottom:539.613333pt;}
.y13{bottom:543.773333pt;}
.y5d{bottom:551.773333pt;}
.ya3{bottom:557.533333pt;}
.y12{bottom:559.933333pt;}
.y36{bottom:561.213333pt;}
.y7c{bottom:562.013333pt;}
.y5c{bottom:569.693333pt;}
.y7b{bottom:579.933333pt;}
.ya2{bottom:594.493333pt;}
.y11{bottom:595.293333pt;}
.y35{bottom:597.693333pt;}
.y5b{bottom:606.173333pt;}
.y10{bottom:613.213333pt;}
.y34{bottom:615.613333pt;}
.y5a{bottom:624.093333pt;}
.yf{bottom:631.133333pt;}
.y33{bottom:633.533333pt;}
.ya1{bottom:637.693333pt;}
.y59{bottom:642.013333pt;}
.y7a{bottom:652.253333pt;}
.ya0{bottom:655.613333pt;}
.y58{bottom:659.933333pt;}
.ye{bottom:667.773333pt;}
.y32{bottom:670.173333pt;}
.yd{bottom:685.693333pt;}
.y31{bottom:688.093333pt;}
.y9f{bottom:692.093333pt;}
.y57{bottom:696.093333pt;}
.y30{bottom:706.013333pt;}
.y79{bottom:706.653333pt;}
.y56{bottom:712.253333pt;}
.yc{bottom:722.173333pt;}
.y55{bottom:728.573333pt;}
.y9e{bottom:728.733333pt;}
.yb{bottom:740.093333pt;}
.y2f{bottom:742.493333pt;}
.y78{bottom:743.293333pt;}
.y54{bottom:744.893333pt;}
.y9d{bottom:746.653333pt;}
.y2e{bottom:760.413333pt;}
.y53{bottom:761.053333pt;}
.y77{bottom:761.213333pt;}
.y9c{bottom:764.573333pt;}
.ya{bottom:776.613333pt;}
.y52{bottom:777.413333pt;}
.y2d{bottom:778.373333pt;}
.y76{bottom:779.173333pt;}
.y75{bottom:797.093333pt;}
.y9b{bottom:801.093333pt;}
.y51{bottom:812.453333pt;}
.y9{bottom:813.733333pt;}
.y2c{bottom:814.853333pt;}
.yba{bottom:815.013333pt;}
.y9a{bottom:819.013333pt;}
.y50{bottom:828.613333pt;}
.y2b{bottom:832.773333pt;}
.y74{bottom:833.573333pt;}
.y4f{bottom:844.933333pt;}
.y2a{bottom:850.693333pt;}
.y73{bottom:851.493333pt;}
.y99{bottom:855.653333pt;}
.y8{bottom:856.773333pt;}
.y72{bottom:869.413333pt;}
.y7{bottom:874.693333pt;}
.y4e{bottom:880.293333pt;}
.y29{bottom:887.333333pt;}
.y98{bottom:892.133333pt;}
.y4d{bottom:898.213333pt;}
.y28{bottom:905.253333pt;}
.y71{bottom:905.893333pt;}
.y97{bottom:910.053333pt;}
.y6{bottom:911.653333pt;}
.y4c{bottom:916.133333pt;}
.y70{bottom:923.813333pt;}
.y27{bottom:941.733333pt;}
.y96{bottom:946.693333pt;}
.y4b{bottom:953.093333pt;}
.y5{bottom:954.853333pt;}
.yb9{bottom:959.653333pt;}
.y6f{bottom:960.453333pt;}
.y4{bottom:972.773333pt;}
.y26{bottom:978.373333pt;}
.y95{bottom:982.853333pt;}
.y25{bottom:996.293333pt;}
.y94{bottom:999.013333pt;}
.y3{bottom:1010.373333pt;}
.y24{bottom:1014.240000pt;}
.y93{bottom:1015.360000pt;}
.h2{height:38.672812pt;}
.h8{height:42.745000pt;}
.h4{height:47.380000pt;}
.h7{height:52.834688pt;}
.h6{height:58.563750pt;}
.h5{height:65.531250pt;}
.h3{height:76.671562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x3{left:160.666655pt;}
.x1{left:385.026655pt;}
}




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