
    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_dea5f5f390d3e428f01e6ad8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_0fe9e79611e35d0c1f26c431.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_ec235f5048a0392ddeb61248.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_52472d967252d0e69a8e28d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_1af778b7c8b132d51967f14a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e31be65b4ee97a426afcfd6f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_0b7f525aa06308e0ad67c1f5.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_574dbd694609ff7efd605f51.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_94fe34755b9d8d11411329bb.woff')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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:ffa;src:url('chunks/assets/font_1b3ff76f8fcf02ff29fac2f8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.007812;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:ffb;src:url('chunks/assets/font_790b130f2ee7ef3dcaaf3f9f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls12{letter-spacing:-0.882000px;}
.lsf{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.175800px;}
.ls13{letter-spacing:-0.161400px;}
.ls1e{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.028080px;}
.ls14{letter-spacing:-0.018720px;}
.lse{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.028080px;}
.ls1a{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.169200px;}
.ls18{letter-spacing:0.174240px;}
.ls19{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.187200px;}
.ls5{letter-spacing:0.291600px;}
.ls23{letter-spacing:0.341400px;}
.ls1c{letter-spacing:0.348600px;}
.lsb{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.378600px;}
.lsc{letter-spacing:0.558720px;}
.ls1f{letter-spacing:0.666000px;}
.ls16{letter-spacing:7.740000px;}
.ls6{letter-spacing:8.460000px;}
.ls4{letter-spacing:9.180000px;}
.lsa{letter-spacing:9.900000px;}
.ls9{letter-spacing:10.620000px;}
.ls17{letter-spacing:13.500000px;}
.ls1{letter-spacing:30.780000px;}
.ls3{letter-spacing:50.220000px;}
.ls2{letter-spacing:50.940000px;}
.ls8{letter-spacing:70.380000px;}
.ls7{letter-spacing:70.560000px;}
.ls22{letter-spacing:87.461280px;}
.ls21{letter-spacing:129.221280px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-21.795720px;}
.ws2{word-spacing:-21.438600px;}
.wse{word-spacing:-21.420000px;}
.wsf{word-spacing:-21.401400px;}
.ws3{word-spacing:-21.351600px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.wsc{word-spacing:-16.973280px;}
.wsd{word-spacing:-16.613280px;}
.wsb{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.353480px;}
.ws8{word-spacing:-13.854360px;}
.ws7{word-spacing:-13.674960px;}
.ws6{word-spacing:-13.505760px;}
.ws5{word-spacing:0.000000px;}
._25{margin-left:-6.149520px;}
._8{margin-left:-4.970160px;}
._0{margin-left:-3.032640px;}
._1{margin-left:-1.869840px;}
._2{width:1.221840px;}
._3{width:2.281920px;}
._c{width:3.540000px;}
._11{width:4.885680px;}
._15{width:6.402240px;}
._e{width:7.772160px;}
._f{width:9.024720px;}
._1d{width:10.049280px;}
._d{width:11.851920px;}
._16{width:13.562640px;}
._1a{width:15.078960px;}
._1b{width:16.215120px;}
._14{width:17.858880px;}
._1c{width:18.910080px;}
._a{width:20.056080px;}
._24{width:22.074240px;}
._b{width:23.167920px;}
._9{width:24.513840px;}
._19{width:25.608960px;}
._17{width:29.022000px;}
._4{width:30.253440px;}
._5{width:31.690800px;}
._18{width:33.611760px;}
._6{width:36.475920px;}
._7{width:37.772640px;}
._22{width:39.508560px;}
._23{width:40.669200px;}
._12{width:42.178320px;}
._13{width:43.905600px;}
._26{width:45.173760px;}
._10{width:50.406240px;}
._1e{width:52.220880px;}
._1f{width:53.913600px;}
._21{width:85.250880px;}
._20{width:86.362560px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:12.960000px;}
.y6{bottom:39.420000px;}
.y5{bottom:57.600000px;}
.y32{bottom:99.576000px;}
.y2b{bottom:102.456000px;}
.y31{bottom:104.796000px;}
.y4a{bottom:112.356000px;}
.y5d{bottom:117.576000px;}
.y30{bottom:117.936000px;}
.y2f{bottom:123.156000px;}
.y2a{bottom:130.356000px;}
.y49{bottom:132.336000px;}
.y2e{bottom:135.936000px;}
.y48{bottom:142.056000px;}
.y5c{bottom:153.930000px;}
.y29{bottom:158.070000px;}
.y47{bottom:161.130000px;}
.y5b{bottom:181.650000px;}
.y28{bottom:185.790000px;}
.y5a{bottom:209.370000px;}
.y46{bottom:210.810000px;}
.y27{bottom:213.510000px;}
.y59{bottom:237.270000px;}
.y45{bottom:238.710000px;}
.y26{bottom:241.410000px;}
.y58{bottom:264.990000px;}
.y44{bottom:266.430000px;}
.y25{bottom:269.130000px;}
.y57{bottom:292.710000px;}
.y43{bottom:294.150000px;}
.y24{bottom:296.850000px;}
.y56{bottom:320.610000px;}
.y42{bottom:321.870000px;}
.y23{bottom:324.750000px;}
.y55{bottom:348.375000px;}
.y41{bottom:349.815000px;}
.y22{bottom:352.515000px;}
.y54{bottom:376.095000px;}
.y40{bottom:377.535000px;}
.y21{bottom:380.235000px;}
.y53{bottom:403.815000px;}
.y3f{bottom:405.255000px;}
.y20{bottom:407.955000px;}
.y2d{bottom:415.515000px;}
.y52{bottom:431.715000px;}
.y3e{bottom:432.975000px;}
.y1f{bottom:435.855000px;}
.y51{bottom:459.435000px;}
.y3d{bottom:460.875000px;}
.y1e{bottom:463.575000px;}
.y50{bottom:487.155000px;}
.y3b{bottom:488.595000px;}
.y1d{bottom:491.295000px;}
.y3c{bottom:496.155000px;}
.y4f{bottom:514.875000px;}
.y3a{bottom:516.315000px;}
.y1c{bottom:519.195000px;}
.y4e{bottom:542.775000px;}
.y39{bottom:544.215000px;}
.y1b{bottom:546.915000px;}
.y4d{bottom:570.495000px;}
.y38{bottom:571.935000px;}
.y1a{bottom:574.635000px;}
.y4c{bottom:593.715000px;}
.y37{bottom:599.655000px;}
.y19{bottom:602.355000px;}
.y36{bottom:627.405000px;}
.y18{bottom:630.285000px;}
.y35{bottom:655.305000px;}
.y17{bottom:658.005000px;}
.y34{bottom:683.025000px;}
.y16{bottom:685.725000px;}
.y33{bottom:706.245000px;}
.y15{bottom:713.445000px;}
.y14{bottom:741.345000px;}
.y13{bottom:769.065000px;}
.y12{bottom:796.785000px;}
.y11{bottom:824.685000px;}
.y2c{bottom:832.245000px;}
.y10{bottom:852.405000px;}
.yf{bottom:880.170000px;}
.ye{bottom:907.890000px;}
.y4b{bottom:915.450000px;}
.yd{bottom:935.790000px;}
.yc{bottom:963.510000px;}
.yb{bottom:991.230000px;}
.ya{bottom:1019.130000px;}
.y9{bottom:1046.850000px;}
.y8{bottom:1074.570000px;}
.y4{bottom:1098.330000px;}
.y3{bottom:1126.230000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1198.440000px;}
.h5{height:36.396000px;}
.hb{height:38.671172px;}
.h2{height:48.224531px;}
.ha{height:52.998047px;}
.h9{height:59.066719px;}
.h7{height:59.436914px;}
.hc{height:59.439023px;}
.he{height:62.327813px;}
.h4{height:65.010937px;}
.hd{height:67.837500px;}
.h6{height:82.676953px;}
.h8{height:84.898125px;}
.hf{height:86.585445px;}
.h3{height:108.843750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:55.296000px;}
.w1{width:893.250000px;}
.w4{width:893.339973px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x7{left:11.880000px;}
.x6{left:27.000000px;}
.x5{left:84.995987px;}
.xc{left:90.755987px;}
.x8{left:111.455987px;}
.x3{left:213.689987px;}
.x21{left:215.489987px;}
.x1b{left:222.329987px;}
.x14{left:230.249987px;}
.x1d{left:260.894987px;}
.x2{left:267.734987px;}
.x19{left:271.154973px;}
.x1a{left:277.994987px;}
.xd{left:281.774987px;}
.xb{left:286.454987px;}
.x17{left:301.034987px;}
.x10{left:320.294987px;}
.xf{left:323.894987px;}
.x9{left:383.294987px;}
.x20{left:415.694987px;}
.xe{left:418.034987px;}
.x4{left:445.244987px;}
.xa{left:446.684987px;}
.x11{left:457.484973px;}
.x12{left:464.324987px;}
.x1{left:600.809987px;}
.x1e{left:625.469973px;}
.x1f{left:632.309987px;}
.x15{left:656.069973px;}
.x16{left:662.909987px;}
.x13{left:744.809987px;}
.x1c{left:750.029987px;}
.x18{left:787.139987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.784000pt;}
.lsf{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.156267pt;}
.ls13{letter-spacing:-0.143467pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.024960pt;}
.ls14{letter-spacing:-0.016640pt;}
.lse{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.024960pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.150400pt;}
.ls18{letter-spacing:0.154880pt;}
.ls19{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.166400pt;}
.ls5{letter-spacing:0.259200pt;}
.ls23{letter-spacing:0.303467pt;}
.ls1c{letter-spacing:0.309867pt;}
.lsb{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.336533pt;}
.lsc{letter-spacing:0.496640pt;}
.ls1f{letter-spacing:0.592000pt;}
.ls16{letter-spacing:6.880000pt;}
.ls6{letter-spacing:7.520000pt;}
.ls4{letter-spacing:8.160000pt;}
.lsa{letter-spacing:8.800000pt;}
.ls9{letter-spacing:9.440000pt;}
.ls17{letter-spacing:12.000000pt;}
.ls1{letter-spacing:27.360000pt;}
.ls3{letter-spacing:44.640000pt;}
.ls2{letter-spacing:45.280000pt;}
.ls8{letter-spacing:62.560000pt;}
.ls7{letter-spacing:62.720000pt;}
.ls22{letter-spacing:77.743360pt;}
.ls21{letter-spacing:114.863360pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-19.373973pt;}
.ws2{word-spacing:-19.056533pt;}
.wse{word-spacing:-19.040000pt;}
.wsf{word-spacing:-19.023467pt;}
.ws3{word-spacing:-18.979200pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.wsc{word-spacing:-15.087360pt;}
.wsd{word-spacing:-14.767360pt;}
.wsb{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.536427pt;}
.ws8{word-spacing:-12.314987pt;}
.ws7{word-spacing:-12.155520pt;}
.ws6{word-spacing:-12.005120pt;}
.ws5{word-spacing:0.000000pt;}
._25{margin-left:-5.466240pt;}
._8{margin-left:-4.417920pt;}
._0{margin-left:-2.695680pt;}
._1{margin-left:-1.662080pt;}
._2{width:1.086080pt;}
._3{width:2.028373pt;}
._c{width:3.146667pt;}
._11{width:4.342827pt;}
._15{width:5.690880pt;}
._e{width:6.908587pt;}
._f{width:8.021973pt;}
._1d{width:8.932693pt;}
._d{width:10.535040pt;}
._16{width:12.055680pt;}
._1a{width:13.403520pt;}
._1b{width:14.413440pt;}
._14{width:15.874560pt;}
._1c{width:16.808960pt;}
._a{width:17.827627pt;}
._24{width:19.621547pt;}
._b{width:20.593707pt;}
._9{width:21.790080pt;}
._19{width:22.763520pt;}
._17{width:25.797333pt;}
._4{width:26.891947pt;}
._5{width:28.169600pt;}
._18{width:29.877120pt;}
._6{width:32.423040pt;}
._7{width:33.575680pt;}
._22{width:35.118720pt;}
._23{width:36.150400pt;}
._12{width:37.491840pt;}
._13{width:39.027200pt;}
._26{width:40.154453pt;}
._10{width:44.805547pt;}
._1e{width:46.418560pt;}
._1f{width:47.923200pt;}
._21{width:75.778560pt;}
._20{width:76.766720pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:11.520000pt;}
.y6{bottom:35.040000pt;}
.y5{bottom:51.200000pt;}
.y32{bottom:88.512000pt;}
.y2b{bottom:91.072000pt;}
.y31{bottom:93.152000pt;}
.y4a{bottom:99.872000pt;}
.y5d{bottom:104.512000pt;}
.y30{bottom:104.832000pt;}
.y2f{bottom:109.472000pt;}
.y2a{bottom:115.872000pt;}
.y49{bottom:117.632000pt;}
.y2e{bottom:120.832000pt;}
.y48{bottom:126.272000pt;}
.y5c{bottom:136.826667pt;}
.y29{bottom:140.506667pt;}
.y47{bottom:143.226667pt;}
.y5b{bottom:161.466667pt;}
.y28{bottom:165.146667pt;}
.y5a{bottom:186.106667pt;}
.y46{bottom:187.386667pt;}
.y27{bottom:189.786667pt;}
.y59{bottom:210.906667pt;}
.y45{bottom:212.186667pt;}
.y26{bottom:214.586667pt;}
.y58{bottom:235.546667pt;}
.y44{bottom:236.826667pt;}
.y25{bottom:239.226667pt;}
.y57{bottom:260.186667pt;}
.y43{bottom:261.466667pt;}
.y24{bottom:263.866667pt;}
.y56{bottom:284.986667pt;}
.y42{bottom:286.106667pt;}
.y23{bottom:288.666667pt;}
.y55{bottom:309.666667pt;}
.y41{bottom:310.946667pt;}
.y22{bottom:313.346667pt;}
.y54{bottom:334.306667pt;}
.y40{bottom:335.586667pt;}
.y21{bottom:337.986667pt;}
.y53{bottom:358.946667pt;}
.y3f{bottom:360.226667pt;}
.y20{bottom:362.626667pt;}
.y2d{bottom:369.346667pt;}
.y52{bottom:383.746667pt;}
.y3e{bottom:384.866667pt;}
.y1f{bottom:387.426667pt;}
.y51{bottom:408.386667pt;}
.y3d{bottom:409.666667pt;}
.y1e{bottom:412.066667pt;}
.y50{bottom:433.026667pt;}
.y3b{bottom:434.306667pt;}
.y1d{bottom:436.706667pt;}
.y3c{bottom:441.026667pt;}
.y4f{bottom:457.666667pt;}
.y3a{bottom:458.946667pt;}
.y1c{bottom:461.506667pt;}
.y4e{bottom:482.466667pt;}
.y39{bottom:483.746667pt;}
.y1b{bottom:486.146667pt;}
.y4d{bottom:507.106667pt;}
.y38{bottom:508.386667pt;}
.y1a{bottom:510.786667pt;}
.y4c{bottom:527.746667pt;}
.y37{bottom:533.026667pt;}
.y19{bottom:535.426667pt;}
.y36{bottom:557.693333pt;}
.y18{bottom:560.253333pt;}
.y35{bottom:582.493333pt;}
.y17{bottom:584.893333pt;}
.y34{bottom:607.133333pt;}
.y16{bottom:609.533333pt;}
.y33{bottom:627.773333pt;}
.y15{bottom:634.173333pt;}
.y14{bottom:658.973333pt;}
.y13{bottom:683.613333pt;}
.y12{bottom:708.253333pt;}
.y11{bottom:733.053333pt;}
.y2c{bottom:739.773333pt;}
.y10{bottom:757.693333pt;}
.yf{bottom:782.373333pt;}
.ye{bottom:807.013333pt;}
.y4b{bottom:813.733333pt;}
.yd{bottom:831.813333pt;}
.yc{bottom:856.453333pt;}
.yb{bottom:881.093333pt;}
.ya{bottom:905.893333pt;}
.y9{bottom:930.533333pt;}
.y8{bottom:955.173333pt;}
.y4{bottom:976.293333pt;}
.y3{bottom:1001.093333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1065.280000pt;}
.h5{height:32.352000pt;}
.hb{height:34.374375pt;}
.h2{height:42.866250pt;}
.ha{height:47.109375pt;}
.h9{height:52.503750pt;}
.h7{height:52.832812pt;}
.hc{height:52.834688pt;}
.he{height:55.402500pt;}
.h4{height:57.787500pt;}
.hd{height:60.300000pt;}
.h6{height:73.490625pt;}
.h8{height:75.465000pt;}
.hf{height:76.964840pt;}
.h3{height:96.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:49.152000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079976pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x7{left:10.560000pt;}
.x6{left:24.000000pt;}
.x5{left:75.551988pt;}
.xc{left:80.671988pt;}
.x8{left:99.071988pt;}
.x3{left:189.946655pt;}
.x21{left:191.546655pt;}
.x1b{left:197.626655pt;}
.x14{left:204.666655pt;}
.x1d{left:231.906655pt;}
.x2{left:237.986655pt;}
.x19{left:241.026643pt;}
.x1a{left:247.106655pt;}
.xd{left:250.466655pt;}
.xb{left:254.626655pt;}
.x17{left:267.586655pt;}
.x10{left:284.706655pt;}
.xf{left:287.906655pt;}
.x9{left:340.706655pt;}
.x20{left:369.506655pt;}
.xe{left:371.586655pt;}
.x4{left:395.773321pt;}
.xa{left:397.053321pt;}
.x11{left:406.653310pt;}
.x12{left:412.733321pt;}
.x1{left:534.053322pt;}
.x1e{left:555.973310pt;}
.x1f{left:562.053322pt;}
.x15{left:583.173310pt;}
.x16{left:589.253321pt;}
.x13{left:662.053322pt;}
.x1c{left:666.693322pt;}
.x18{left:699.679988pt;}
}




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