
    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_9eb6372ee2f60997d707c975.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_42ecc516c9516292d5940b88.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_28b2dccd02c998e10b108395.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_5df297efb3fa004deaddcf03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_eb64cca4101049c857ba5f12.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_5b63f5a79842a31946e319b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_814ab456c8a299fc4d986c53.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_4e0fef12ed06fbc2fd31ad1c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-63.360600px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.198000px;}
.lsd{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.192000px;}
.ls4{letter-spacing:0.234000px;}
.ls5{letter-spacing:0.306000px;}
.ls2{letter-spacing:2.160000px;}
.lsa{letter-spacing:7.200000px;}
.lsb{letter-spacing:12.240000px;}
.ls9{letter-spacing:12.384000px;}
.ls1{letter-spacing:17.460000px;}
.lsc{letter-spacing:25.200000px;}
.lse{letter-spacing:68.544000px;}
.ls0{letter-spacing:410.004000px;}
.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;}
}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws1{word-spacing:-15.588000px;}
.ws0{word-spacing:-15.282000px;}
.ws2{word-spacing:-15.084000px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-5.256000px;}
._4{margin-left:-4.176000px;}
._1{margin-left:-2.791440px;}
._0{margin-left:-1.258560px;}
._2{width:1.278000px;}
._8{width:2.946000px;}
._a{width:4.536000px;}
._5{width:6.480000px;}
._7{width:7.866000px;}
._b{width:9.792000px;}
._c{width:10.944000px;}
._d{width:11.970000px;}
._10{width:13.662000px;}
._1a{width:14.739120px;}
._9{width:15.744960px;}
._6{width:16.917120px;}
._11{width:19.008000px;}
._18{width:20.808000px;}
._e{width:22.392000px;}
._f{width:23.904000px;}
._14{width:25.380000px;}
._19{width:27.114000px;}
._1b{width:28.170000px;}
._15{width:29.448000px;}
._16{width:30.744000px;}
._1f{width:31.896000px;}
._20{width:33.066000px;}
._12{width:38.016000px;}
._13{width:39.258000px;}
._1c{width:40.428000px;}
._22{width:41.472000px;}
._21{width:43.344000px;}
._1d{width:44.352000px;}
._23{width:56.808000px;}
._1e{width:70.416000px;}
._3{width:82.776000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y6{bottom:-27.180000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.500000px;}
.y5{bottom:6.480000px;}
.yc{bottom:7.020000px;}
.ya{bottom:9.540000px;}
.y12{bottom:12.600000px;}
.y7{bottom:19.080000px;}
.y10{bottom:20.160000px;}
.y2{bottom:37.620000px;}
.y4{bottom:40.320000px;}
.y9{bottom:63.540000px;}
.yb{bottom:64.620000px;}
.yd{bottom:68.040000px;}
.y42{bottom:121.860000px;}
.y74{bottom:125.460000px;}
.y41{bottom:142.560000px;}
.y73{bottom:146.160000px;}
.y40{bottom:163.260000px;}
.y72{bottom:166.860000px;}
.y3f{bottom:183.960000px;}
.y71{bottom:187.560000px;}
.y3e{bottom:204.690000px;}
.y70{bottom:208.290000px;}
.y3d{bottom:225.390000px;}
.y6f{bottom:228.990000px;}
.y6e{bottom:249.690000px;}
.y3c{bottom:255.090000px;}
.y6d{bottom:270.390000px;}
.y3b{bottom:275.790000px;}
.y6c{bottom:291.090000px;}
.y3a{bottom:296.490000px;}
.y6b{bottom:311.790000px;}
.y39{bottom:317.190000px;}
.y6a{bottom:332.490000px;}
.y38{bottom:346.890000px;}
.y69{bottom:353.190000px;}
.y37{bottom:367.590000px;}
.y68{bottom:373.890000px;}
.y36{bottom:388.290000px;}
.y67{bottom:394.590000px;}
.y35{bottom:408.990000px;}
.y66{bottom:415.290000px;}
.y34{bottom:429.690000px;}
.y65{bottom:436.035000px;}
.y33{bottom:450.435000px;}
.y64{bottom:456.735000px;}
.y63{bottom:477.435000px;}
.y32{bottom:480.135000px;}
.y62{bottom:498.135000px;}
.y31{bottom:500.835000px;}
.y61{bottom:518.835000px;}
.y30{bottom:521.535000px;}
.y60{bottom:539.535000px;}
.y2f{bottom:542.235000px;}
.y5f{bottom:560.235000px;}
.y2e{bottom:562.935000px;}
.y5e{bottom:580.935000px;}
.y2d{bottom:583.635000px;}
.y5d{bottom:601.635000px;}
.y2c{bottom:604.335000px;}
.y11{bottom:617.475000px;}
.y5c{bottom:622.335000px;}
.y2b{bottom:625.035000px;}
.y5b{bottom:643.035000px;}
.y2a{bottom:645.735000px;}
.y5a{bottom:663.735000px;}
.y29{bottom:675.465000px;}
.y59{bottom:684.465000px;}
.y28{bottom:696.165000px;}
.y58{bottom:705.165000px;}
.y27{bottom:716.865000px;}
.y57{bottom:725.865000px;}
.y26{bottom:737.565000px;}
.y56{bottom:746.565000px;}
.y25{bottom:758.265000px;}
.y55{bottom:767.265000px;}
.y24{bottom:778.965000px;}
.y54{bottom:787.965000px;}
.y23{bottom:799.665000px;}
.y53{bottom:808.665000px;}
.y22{bottom:820.365000px;}
.y52{bottom:829.365000px;}
.y21{bottom:841.065000px;}
.y51{bottom:850.065000px;}
.y20{bottom:861.765000px;}
.y50{bottom:870.765000px;}
.y1f{bottom:882.465000px;}
.y4f{bottom:891.465000px;}
.y1e{bottom:903.165000px;}
.y4e{bottom:912.165000px;}
.y1d{bottom:923.910000px;}
.y4d{bottom:932.910000px;}
.y1c{bottom:944.610000px;}
.y4c{bottom:953.610000px;}
.y1b{bottom:965.310000px;}
.y4b{bottom:974.310000px;}
.y1a{bottom:986.010000px;}
.y4a{bottom:995.010000px;}
.y19{bottom:1006.710000px;}
.y49{bottom:1015.710000px;}
.y18{bottom:1027.410000px;}
.y48{bottom:1036.410000px;}
.y17{bottom:1048.110000px;}
.y47{bottom:1057.110000px;}
.y16{bottom:1068.810000px;}
.y46{bottom:1077.810000px;}
.y15{bottom:1089.510000px;}
.y45{bottom:1098.510000px;}
.y14{bottom:1110.210000px;}
.y44{bottom:1119.210000px;}
.y13{bottom:1130.910000px;}
.y43{bottom:1139.910000px;}
.y1{bottom:1193.040000px;}
.y3{bottom:1206.180000px;}
.yf{bottom:1246.320000px;}
.ye{bottom:1261.980000px;}
.h6{height:19.620000px;}
.ha{height:21.240000px;}
.h8{height:23.760000px;}
.hc{height:28.260000px;}
.hb{height:49.868086px;}
.h9{height:50.274000px;}
.h2{height:52.740000px;}
.h4{height:56.700000px;}
.he{height:60.082031px;}
.h7{height:61.189805px;}
.hd{height:61.734375px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:84.990000px;}
.w6{width:108.756000px;}
.w9{width:121.680000px;}
.w3{width:135.036000px;}
.w8{width:187.590000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w7{width:204.330000px;}
.w2{width:552.705000px;}
.wa{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:1.440000px;}
.x11{left:10.800000px;}
.x5{left:40.140000px;}
.x7{left:47.340000px;}
.x2{left:48.816000px;}
.x4{left:60.840000px;}
.x6{left:76.140000px;}
.x1{left:87.480000px;}
.xc{left:92.874000px;}
.xd{left:104.034000px;}
.xb{left:106.236000px;}
.x17{left:137.735987px;}
.x16{left:159.329987px;}
.x13{left:169.769987px;}
.x12{left:216.929987px;}
.xe{left:391.035000px;}
.x15{left:401.654987px;}
.x9{left:420.375000px;}
.x14{left:446.474987px;}
.xf{left:665.070000px;}
.x3{left:733.650000px;}
.xa{left:748.050000px;}
.x10{left:807.990000px;}
@media print{
.v1{vertical-align:-56.320533pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.176000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.170667pt;}
.ls4{letter-spacing:0.208000pt;}
.ls5{letter-spacing:0.272000pt;}
.ls2{letter-spacing:1.920000pt;}
.lsa{letter-spacing:6.400000pt;}
.lsb{letter-spacing:10.880000pt;}
.ls9{letter-spacing:11.008000pt;}
.ls1{letter-spacing:15.520000pt;}
.lsc{letter-spacing:22.400000pt;}
.lse{letter-spacing:60.928000pt;}
.ls0{letter-spacing:364.448000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws1{word-spacing:-13.856000pt;}
.ws0{word-spacing:-13.584000pt;}
.ws2{word-spacing:-13.408000pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-4.672000pt;}
._4{margin-left:-3.712000pt;}
._1{margin-left:-2.481280pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.136000pt;}
._8{width:2.618667pt;}
._a{width:4.032000pt;}
._5{width:5.760000pt;}
._7{width:6.992000pt;}
._b{width:8.704000pt;}
._c{width:9.728000pt;}
._d{width:10.640000pt;}
._10{width:12.144000pt;}
._1a{width:13.101440pt;}
._9{width:13.995520pt;}
._6{width:15.037440pt;}
._11{width:16.896000pt;}
._18{width:18.496000pt;}
._e{width:19.904000pt;}
._f{width:21.248000pt;}
._14{width:22.560000pt;}
._19{width:24.101333pt;}
._1b{width:25.040000pt;}
._15{width:26.176000pt;}
._16{width:27.328000pt;}
._1f{width:28.352000pt;}
._20{width:29.392000pt;}
._12{width:33.792000pt;}
._13{width:34.896000pt;}
._1c{width:35.936000pt;}
._22{width:36.864000pt;}
._21{width:38.528000pt;}
._1d{width:39.424000pt;}
._23{width:50.496000pt;}
._1e{width:62.592000pt;}
._3{width:73.578667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y6{bottom:-24.160000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.000000pt;}
.y5{bottom:5.760000pt;}
.yc{bottom:6.240000pt;}
.ya{bottom:8.480000pt;}
.y12{bottom:11.200000pt;}
.y7{bottom:16.960000pt;}
.y10{bottom:17.920000pt;}
.y2{bottom:33.440000pt;}
.y4{bottom:35.840000pt;}
.y9{bottom:56.480000pt;}
.yb{bottom:57.440000pt;}
.yd{bottom:60.480000pt;}
.y42{bottom:108.320000pt;}
.y74{bottom:111.520000pt;}
.y41{bottom:126.720000pt;}
.y73{bottom:129.920000pt;}
.y40{bottom:145.120000pt;}
.y72{bottom:148.320000pt;}
.y3f{bottom:163.520000pt;}
.y71{bottom:166.720000pt;}
.y3e{bottom:181.946667pt;}
.y70{bottom:185.146667pt;}
.y3d{bottom:200.346667pt;}
.y6f{bottom:203.546667pt;}
.y6e{bottom:221.946667pt;}
.y3c{bottom:226.746667pt;}
.y6d{bottom:240.346667pt;}
.y3b{bottom:245.146667pt;}
.y6c{bottom:258.746667pt;}
.y3a{bottom:263.546667pt;}
.y6b{bottom:277.146667pt;}
.y39{bottom:281.946667pt;}
.y6a{bottom:295.546667pt;}
.y38{bottom:308.346667pt;}
.y69{bottom:313.946667pt;}
.y37{bottom:326.746667pt;}
.y68{bottom:332.346667pt;}
.y36{bottom:345.146667pt;}
.y67{bottom:350.746667pt;}
.y35{bottom:363.546667pt;}
.y66{bottom:369.146667pt;}
.y34{bottom:381.946667pt;}
.y65{bottom:387.586667pt;}
.y33{bottom:400.386667pt;}
.y64{bottom:405.986667pt;}
.y63{bottom:424.386667pt;}
.y32{bottom:426.786667pt;}
.y62{bottom:442.786667pt;}
.y31{bottom:445.186667pt;}
.y61{bottom:461.186667pt;}
.y30{bottom:463.586667pt;}
.y60{bottom:479.586667pt;}
.y2f{bottom:481.986667pt;}
.y5f{bottom:497.986667pt;}
.y2e{bottom:500.386667pt;}
.y5e{bottom:516.386667pt;}
.y2d{bottom:518.786667pt;}
.y5d{bottom:534.786667pt;}
.y2c{bottom:537.186667pt;}
.y11{bottom:548.866667pt;}
.y5c{bottom:553.186667pt;}
.y2b{bottom:555.586667pt;}
.y5b{bottom:571.586667pt;}
.y2a{bottom:573.986667pt;}
.y5a{bottom:589.986667pt;}
.y29{bottom:600.413333pt;}
.y59{bottom:608.413333pt;}
.y28{bottom:618.813333pt;}
.y58{bottom:626.813333pt;}
.y27{bottom:637.213333pt;}
.y57{bottom:645.213333pt;}
.y26{bottom:655.613333pt;}
.y56{bottom:663.613333pt;}
.y25{bottom:674.013333pt;}
.y55{bottom:682.013333pt;}
.y24{bottom:692.413333pt;}
.y54{bottom:700.413333pt;}
.y23{bottom:710.813333pt;}
.y53{bottom:718.813333pt;}
.y22{bottom:729.213333pt;}
.y52{bottom:737.213333pt;}
.y21{bottom:747.613333pt;}
.y51{bottom:755.613333pt;}
.y20{bottom:766.013333pt;}
.y50{bottom:774.013333pt;}
.y1f{bottom:784.413333pt;}
.y4f{bottom:792.413333pt;}
.y1e{bottom:802.813333pt;}
.y4e{bottom:810.813333pt;}
.y1d{bottom:821.253333pt;}
.y4d{bottom:829.253333pt;}
.y1c{bottom:839.653333pt;}
.y4c{bottom:847.653333pt;}
.y1b{bottom:858.053333pt;}
.y4b{bottom:866.053333pt;}
.y1a{bottom:876.453333pt;}
.y4a{bottom:884.453333pt;}
.y19{bottom:894.853333pt;}
.y49{bottom:902.853333pt;}
.y18{bottom:913.253333pt;}
.y48{bottom:921.253333pt;}
.y17{bottom:931.653333pt;}
.y47{bottom:939.653333pt;}
.y16{bottom:950.053333pt;}
.y46{bottom:958.053333pt;}
.y15{bottom:968.453333pt;}
.y45{bottom:976.453333pt;}
.y14{bottom:986.853333pt;}
.y44{bottom:994.853333pt;}
.y13{bottom:1005.253333pt;}
.y43{bottom:1013.253333pt;}
.y1{bottom:1060.480000pt;}
.y3{bottom:1072.160000pt;}
.yf{bottom:1107.840000pt;}
.ye{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.ha{height:18.880000pt;}
.h8{height:21.120000pt;}
.hc{height:25.120000pt;}
.hb{height:44.327188pt;}
.h9{height:44.688000pt;}
.h2{height:46.880000pt;}
.h4{height:50.400000pt;}
.he{height:53.406250pt;}
.h7{height:54.390938pt;}
.hd{height:54.875000pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:75.546667pt;}
.w6{width:96.672000pt;}
.w9{width:108.160000pt;}
.w3{width:120.032000pt;}
.w8{width:166.746667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w7{width:181.626667pt;}
.w2{width:491.293333pt;}
.wa{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:1.280000pt;}
.x11{left:9.600000pt;}
.x5{left:35.680000pt;}
.x7{left:42.080000pt;}
.x2{left:43.392000pt;}
.x4{left:54.080000pt;}
.x6{left:67.680000pt;}
.x1{left:77.760000pt;}
.xc{left:82.554667pt;}
.xd{left:92.474667pt;}
.xb{left:94.432000pt;}
.x17{left:122.431988pt;}
.x16{left:141.626655pt;}
.x13{left:150.906655pt;}
.x12{left:192.826655pt;}
.xe{left:347.586667pt;}
.x15{left:357.026655pt;}
.x9{left:373.666667pt;}
.x14{left:396.866655pt;}
.xf{left:591.173333pt;}
.x3{left:652.133333pt;}
.xa{left:664.933333pt;}
.x10{left:718.213333pt;}
}




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