
    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_871820ac95fc2a1e1e85dfc0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c87f07e6202df1f88dc64ec9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8b7635939f5d5d8356a6c6a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_e65f97a3b75a5d867fbaed84.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163086;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_46d0214ad42b185f55ac60c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_d6a2901d044addb39c06bab6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_32a9b96110b2297ffc49c362.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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_82551ca2621c8baeddb4b1b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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:61.920000px;}
.ls11{letter-spacing:-0.270000px;}
.ls10{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.132480px;}
.ls14{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.198720px;}
.ls7{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.302400px;}
.ls1{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.480240px;}
.lse{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.610560px;}
.lsd{letter-spacing:0.630000px;}
.lsa{letter-spacing:2.309760px;}
.ls2{letter-spacing:20.484000px;}
.lsc{letter-spacing:178.086240px;}
.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;}
}
.ws9{word-spacing:-40.680000px;}
.ws3{word-spacing:-28.674000px;}
.ws2{word-spacing:-28.566000px;}
.ws4{word-spacing:-28.512000px;}
.ws1{word-spacing:-28.476000px;}
.ws5{word-spacing:-27.174240px;}
.wsa{word-spacing:-20.340000px;}
.ws0{word-spacing:-19.363680px;}
.ws8{word-spacing:-15.272640px;}
.ws7{word-spacing:-15.226440px;}
.ws6{word-spacing:-14.970240px;}
.wsb{word-spacing:0.000000px;}
._1e{margin-left:-18.521280px;}
._1d{margin-left:-15.280560px;}
._1b{margin-left:-13.031760px;}
._6{margin-left:-11.813760px;}
._2{margin-left:-10.746000px;}
._1c{margin-left:-9.298080px;}
._e{margin-left:-8.064000px;}
._7{margin-left:-6.012720px;}
._17{margin-left:-4.741920px;}
._4{margin-left:-3.558960px;}
._0{margin-left:-2.503440px;}
._1{margin-left:-1.185840px;}
._3{width:1.449360px;}
._5{width:2.466960px;}
._14{width:4.187520px;}
._a{width:5.819520px;}
._9{width:6.876000px;}
._d{width:8.929440px;}
._15{width:10.272240px;}
._16{width:11.305440px;}
._8{width:12.509280px;}
._18{width:13.734000px;}
._19{width:15.575040px;}
._1a{width:16.773840px;}
._10{width:18.374400px;}
._f{width:19.581840px;}
._11{width:21.061200px;}
._12{width:30.240000px;}
._13{width:31.299840px;}
._b{width:47.250000px;}
._c{width:48.419280px;}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:85.680000px;}
.fsc{font-size:90.000000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:126.000000px;}
.fs0{font-size:131.760000px;}
.fsa{font-size:167.760000px;}
.fsb{font-size:180.000000px;}
.fs9{font-size:216.000000px;}
.fs8{font-size:288.000000px;}
.fs7{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:21.060000px;}
.y52{bottom:41.220000px;}
.y51{bottom:61.380000px;}
.y50{bottom:81.540000px;}
.y4f{bottom:101.700000px;}
.y4e{bottom:121.860000px;}
.y4d{bottom:142.020000px;}
.y4c{bottom:162.000000px;}
.y4b{bottom:182.520000px;}
.y4a{bottom:204.120000px;}
.y49{bottom:224.310000px;}
.y48{bottom:248.790000px;}
.y41{bottom:340.050000px;}
.y47{bottom:356.610000px;}
.y46{bottom:404.670000px;}
.y45{bottom:452.730000px;}
.y44{bottom:500.790000px;}
.y43{bottom:548.850000px;}
.y42{bottom:596.910000px;}
.y59{bottom:690.690000px;}
.y5e{bottom:815.970000px;}
.y40{bottom:925.770000px;}
.y3f{bottom:973.830000px;}
.y3e{bottom:1021.935000px;}
.y3d{bottom:1069.995000px;}
.y3c{bottom:1118.055000px;}
.y3b{bottom:1166.115000px;}
.y3a{bottom:1214.175000px;}
.y39{bottom:1262.235000px;}
.y5f{bottom:1278.615000px;}
.y38{bottom:1310.295000px;}
.y37{bottom:1358.355000px;}
.y1e{bottom:1394.715000px;}
.y36{bottom:1418.475000px;}
.y1d{bottom:1442.955000px;}
.y35{bottom:1466.535000px;}
.y1c{bottom:1491.015000px;}
.y34{bottom:1514.595000px;}
.y1b{bottom:1550.955000px;}
.y33{bottom:1562.655000px;}
.y1a{bottom:1599.015000px;}
.y32{bottom:1610.715000px;}
.y19{bottom:1647.075000px;}
.y31{bottom:1658.775000px;}
.y30{bottom:1706.835000px;}
.y18{bottom:1707.195000px;}
.y2f{bottom:1754.895000px;}
.y17{bottom:1755.255000px;}
.y2e{bottom:1802.955000px;}
.y16{bottom:1803.315000px;}
.y15{bottom:1851.405000px;}
.y2d{bottom:1863.105000px;}
.y14{bottom:1899.465000px;}
.y2c{bottom:1911.165000px;}
.y2b{bottom:1959.225000px;}
.y13{bottom:1959.585000px;}
.y2a{bottom:2007.285000px;}
.y12{bottom:2007.645000px;}
.y29{bottom:2055.345000px;}
.y11{bottom:2055.705000px;}
.y28{bottom:2103.405000px;}
.y10{bottom:2103.765000px;}
.y27{bottom:2151.465000px;}
.yf{bottom:2151.825000px;}
.y26{bottom:2199.525000px;}
.ye{bottom:2199.885000px;}
.y25{bottom:2247.585000px;}
.yd{bottom:2247.945000px;}
.y24{bottom:2295.645000px;}
.y58{bottom:2335.065000px;}
.y23{bottom:2355.765000px;}
.y22{bottom:2403.825000px;}
.y21{bottom:2451.885000px;}
.y20{bottom:2499.945000px;}
.yc{bottom:2520.105000px;}
.y1f{bottom:2548.005000px;}
.yb{bottom:2568.165000px;}
.y57{bottom:2662.710000px;}
.ya{bottom:2841.270000px;}
.y9{bottom:2889.330000px;}
.y8{bottom:2937.390000px;}
.y7{bottom:2985.450000px;}
.y6{bottom:3033.510000px;}
.y5{bottom:3081.570000px;}
.y4{bottom:3129.630000px;}
.y3{bottom:3177.690000px;}
.y2{bottom:3225.750000px;}
.y56{bottom:3282.810000px;}
.y5d{bottom:3373.350000px;}
.y5c{bottom:3400.710000px;}
.y5b{bottom:3428.250000px;}
.y5a{bottom:3455.640000px;}
.y1{bottom:3495.960000px;}
.y55{bottom:3549.240000px;}
.y54{bottom:3624.120000px;}
.h4{height:49.992188px;}
.h9{height:65.884219px;}
.h6{height:67.824844px;}
.h7{height:71.613281px;}
.h8{height:73.722656px;}
.hd{height:89.516602px;}
.h3{height:125.323242px;}
.h5{height:131.052305px;}
.h2{height:147.139805px;}
.hc{height:184.306641px;}
.hb{height:294.890625px;}
.ha{height:368.613281px;}
.h1{height:3826.500000px;}
.h0{height:3826.800000px;}
.w2{width:2551.139962px;}
.w0{width:2551.140000px;}
.w1{width:2551.500000px;}
.x0{left:0.000000px;}
.xd{left:102.599962px;}
.x3{left:118.799962px;}
.x5{left:145.439962px;}
.x9{left:168.479962px;}
.xc{left:172.079962px;}
.xf{left:175.859962px;}
.x2{left:194.759962px;}
.x8{left:197.279962px;}
.x4{left:311.429962px;}
.x15{left:325.469962px;}
.x14{left:331.049962px;}
.xb{left:381.989962px;}
.x12{left:525.089962px;}
.x11{left:611.849962px;}
.x10{left:666.209962px;}
.x1{left:815.294962px;}
.x13{left:819.614962px;}
.xa{left:832.214962px;}
.xe{left:1137.314962px;}
.x6{left:1198.694962px;}
.x7{left:2348.099962px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:55.040000pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.117760pt;}
.ls14{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.176640pt;}
.ls7{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.268800pt;}
.ls1{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.426880pt;}
.lse{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.542720pt;}
.lsd{letter-spacing:0.560000pt;}
.lsa{letter-spacing:2.053120pt;}
.ls2{letter-spacing:18.208000pt;}
.lsc{letter-spacing:158.298880pt;}
.ws9{word-spacing:-36.160000pt;}
.ws3{word-spacing:-25.488000pt;}
.ws2{word-spacing:-25.392000pt;}
.ws4{word-spacing:-25.344000pt;}
.ws1{word-spacing:-25.312000pt;}
.ws5{word-spacing:-24.154880pt;}
.wsa{word-spacing:-18.080000pt;}
.ws0{word-spacing:-17.212160pt;}
.ws8{word-spacing:-13.575680pt;}
.ws7{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.306880pt;}
.wsb{word-spacing:0.000000pt;}
._1e{margin-left:-16.463360pt;}
._1d{margin-left:-13.582720pt;}
._1b{margin-left:-11.583787pt;}
._6{margin-left:-10.501120pt;}
._2{margin-left:-9.552000pt;}
._1c{margin-left:-8.264960pt;}
._e{margin-left:-7.168000pt;}
._7{margin-left:-5.344640pt;}
._17{margin-left:-4.215040pt;}
._4{margin-left:-3.163520pt;}
._0{margin-left:-2.225280pt;}
._1{margin-left:-1.054080pt;}
._3{width:1.288320pt;}
._5{width:2.192853pt;}
._14{width:3.722240pt;}
._a{width:5.172907pt;}
._9{width:6.112000pt;}
._d{width:7.937280pt;}
._15{width:9.130880pt;}
._16{width:10.049280pt;}
._8{width:11.119360pt;}
._18{width:12.208000pt;}
._19{width:13.844480pt;}
._1a{width:14.910080pt;}
._10{width:16.332800pt;}
._f{width:17.406080pt;}
._11{width:18.721067pt;}
._12{width:26.880000pt;}
._13{width:27.822080pt;}
._b{width:42.000000pt;}
._c{width:43.039360pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:76.160000pt;}
.fsc{font-size:80.000000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:112.000000pt;}
.fs0{font-size:117.120000pt;}
.fsa{font-size:149.120000pt;}
.fsb{font-size:160.000000pt;}
.fs9{font-size:192.000000pt;}
.fs8{font-size:256.000000pt;}
.fs7{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:18.720000pt;}
.y52{bottom:36.640000pt;}
.y51{bottom:54.560000pt;}
.y50{bottom:72.480000pt;}
.y4f{bottom:90.400000pt;}
.y4e{bottom:108.320000pt;}
.y4d{bottom:126.240000pt;}
.y4c{bottom:144.000000pt;}
.y4b{bottom:162.240000pt;}
.y4a{bottom:181.440000pt;}
.y49{bottom:199.386667pt;}
.y48{bottom:221.146667pt;}
.y41{bottom:302.266667pt;}
.y47{bottom:316.986667pt;}
.y46{bottom:359.706667pt;}
.y45{bottom:402.426667pt;}
.y44{bottom:445.146667pt;}
.y43{bottom:487.866667pt;}
.y42{bottom:530.586667pt;}
.y59{bottom:613.946667pt;}
.y5e{bottom:725.306667pt;}
.y40{bottom:822.906667pt;}
.y3f{bottom:865.626667pt;}
.y3e{bottom:908.386667pt;}
.y3d{bottom:951.106667pt;}
.y3c{bottom:993.826667pt;}
.y3b{bottom:1036.546667pt;}
.y3a{bottom:1079.266667pt;}
.y39{bottom:1121.986667pt;}
.y5f{bottom:1136.546667pt;}
.y38{bottom:1164.706667pt;}
.y37{bottom:1207.426667pt;}
.y1e{bottom:1239.746667pt;}
.y36{bottom:1260.866667pt;}
.y1d{bottom:1282.626667pt;}
.y35{bottom:1303.586667pt;}
.y1c{bottom:1325.346667pt;}
.y34{bottom:1346.306667pt;}
.y1b{bottom:1378.626667pt;}
.y33{bottom:1389.026667pt;}
.y1a{bottom:1421.346667pt;}
.y32{bottom:1431.746667pt;}
.y19{bottom:1464.066667pt;}
.y31{bottom:1474.466667pt;}
.y30{bottom:1517.186667pt;}
.y18{bottom:1517.506667pt;}
.y2f{bottom:1559.906667pt;}
.y17{bottom:1560.226667pt;}
.y2e{bottom:1602.626667pt;}
.y16{bottom:1602.946667pt;}
.y15{bottom:1645.693333pt;}
.y2d{bottom:1656.093333pt;}
.y14{bottom:1688.413333pt;}
.y2c{bottom:1698.813333pt;}
.y2b{bottom:1741.533333pt;}
.y13{bottom:1741.853333pt;}
.y2a{bottom:1784.253333pt;}
.y12{bottom:1784.573333pt;}
.y29{bottom:1826.973333pt;}
.y11{bottom:1827.293333pt;}
.y28{bottom:1869.693333pt;}
.y10{bottom:1870.013333pt;}
.y27{bottom:1912.413333pt;}
.yf{bottom:1912.733333pt;}
.y26{bottom:1955.133333pt;}
.ye{bottom:1955.453333pt;}
.y25{bottom:1997.853333pt;}
.yd{bottom:1998.173333pt;}
.y24{bottom:2040.573333pt;}
.y58{bottom:2075.613333pt;}
.y23{bottom:2094.013333pt;}
.y22{bottom:2136.733333pt;}
.y21{bottom:2179.453333pt;}
.y20{bottom:2222.173333pt;}
.yc{bottom:2240.093333pt;}
.y1f{bottom:2264.893333pt;}
.yb{bottom:2282.813333pt;}
.y57{bottom:2366.853333pt;}
.ya{bottom:2525.573333pt;}
.y9{bottom:2568.293333pt;}
.y8{bottom:2611.013333pt;}
.y7{bottom:2653.733333pt;}
.y6{bottom:2696.453333pt;}
.y5{bottom:2739.173333pt;}
.y4{bottom:2781.893333pt;}
.y3{bottom:2824.613333pt;}
.y2{bottom:2867.333333pt;}
.y56{bottom:2918.053333pt;}
.y5d{bottom:2998.533333pt;}
.y5c{bottom:3022.853333pt;}
.y5b{bottom:3047.333333pt;}
.y5a{bottom:3071.680000pt;}
.y1{bottom:3107.520000pt;}
.y55{bottom:3154.880000pt;}
.y54{bottom:3221.440000pt;}
.h4{height:44.437500pt;}
.h9{height:58.563750pt;}
.h6{height:60.288750pt;}
.h7{height:63.656250pt;}
.h8{height:65.531250pt;}
.hd{height:79.570312pt;}
.h3{height:111.398438pt;}
.h5{height:116.490937pt;}
.h2{height:130.790938pt;}
.hc{height:163.828125pt;}
.hb{height:262.125000pt;}
.ha{height:327.656250pt;}
.h1{height:3401.333333pt;}
.h0{height:3401.600000pt;}
.w2{width:2267.679966pt;}
.w0{width:2267.680000pt;}
.w1{width:2268.000000pt;}
.x0{left:0.000000pt;}
.xd{left:91.199966pt;}
.x3{left:105.599966pt;}
.x5{left:129.279966pt;}
.x9{left:149.759966pt;}
.xc{left:152.959966pt;}
.xf{left:156.319966pt;}
.x2{left:173.119966pt;}
.x8{left:175.359966pt;}
.x4{left:276.826633pt;}
.x15{left:289.306633pt;}
.x14{left:294.266633pt;}
.xb{left:339.546633pt;}
.x12{left:466.746633pt;}
.x11{left:543.866633pt;}
.x10{left:592.186633pt;}
.x1{left:724.706633pt;}
.x13{left:728.546633pt;}
.xa{left:739.746633pt;}
.xe{left:1010.946633pt;}
.x6{left:1065.506633pt;}
.x7{left:2087.199966pt;}
}




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