
    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_d4a1505556dca5ebac09dbc9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_f5ee69b553a71fb693978f74.woff')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_4f260a2117df8cf3f7879309.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_5989da1cb0391f00eb6078b6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_3b34b3751f4473d10895df1a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_2a9c7d27256365061f03a003.woff')format("woff");}.ff6{font-family:ff6;line-height:1.097168;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_157daa301e598ca5ebc0f420.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_b9177d176ebd1fd12c23d35e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_b3984e8b8ab0258b8b32417d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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;}
.ls5{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.378600px;}
.lsf{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.270000px;}
.lse{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:1.980000px;}
.ls8{letter-spacing:5.040000px;}
.ls7{letter-spacing:5.580000px;}
.ls1{letter-spacing:8.460000px;}
.lsa{letter-spacing:9.900000px;}
.ls9{letter-spacing:18.540000px;}
.ls6{letter-spacing:22.140000px;}
.lsc{letter-spacing:81.180000px;}
.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;}
}
.ws1{word-spacing:-29.700000px;}
.ws2{word-spacing:-22.770000px;}
.ws3{word-spacing:-22.500000px;}
.ws4{word-spacing:-21.600000px;}
.wsb{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.401400px;}
.ws5{word-spacing:-21.060000px;}
.ws7{word-spacing:-21.022560px;}
.ws8{word-spacing:-20.700000px;}
.ws9{word-spacing:-20.681400px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:0.000000px;}
._d{margin-left:-5.644080px;}
._9{margin-left:-4.500000px;}
._e{margin-left:-3.201120px;}
._8{margin-left:-2.106000px;}
._1{margin-left:-1.010880px;}
._0{width:1.185840px;}
._5{width:2.358720px;}
._f{width:4.296240px;}
._a{width:6.402240px;}
._3{width:7.918560px;}
._4{width:9.603360px;}
._b{width:10.675680px;}
._c{width:14.657760px;}
._2{width:16.258320px;}
._7{width:17.774640px;}
._6{width:18.785520px;}
._14{width:19.880640px;}
._10{width:22.416480px;}
._11{width:24.008400px;}
._13{width:34.538400px;}
._1a{width:39.417840px;}
._19{width:40.603680px;}
._12{width:60.652800px;}
._1c{width:66.115440px;}
._1b{width:67.392000px;}
._1d{width:68.470080px;}
._1f{width:80.364960px;}
._1e{width:81.375840px;}
._16{width:85.924800px;}
._17{width:87.019920px;}
._15{width:99.228240px;}
._18{width:114.313680px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,55,99);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(102,255,102);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.y2{bottom:-0.144012px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.500000px;}
.yc{bottom:5.580000px;}
.y6{bottom:6.480000px;}
.ya{bottom:9.720000px;}
.y4{bottom:14.400000px;}
.y3{bottom:16.236000px;}
.y5{bottom:17.316000px;}
.y64{bottom:18.360000px;}
.y69{bottom:18.540000px;}
.y62{bottom:31.320000px;}
.y66{bottom:31.500000px;}
.y63{bottom:44.460000px;}
.y68{bottom:44.640000px;}
.y2f{bottom:109.836000px;}
.y2e{bottom:133.956000px;}
.y4f{bottom:158.430000px;}
.y6b{bottom:174.450000px;}
.y2d{bottom:179.130000px;}
.y4e{bottom:203.610000px;}
.y2c{bottom:224.310000px;}
.y4d{bottom:227.730000px;}
.y6a{bottom:244.650000px;}
.y2b{bottom:248.430000px;}
.y4c{bottom:272.730000px;}
.y67{bottom:288.615000px;}
.y2a{bottom:293.655000px;}
.y4b{bottom:317.955000px;}
.y29{bottom:338.655000px;}
.y4a{bottom:342.075000px;}
.y65{bottom:358.815000px;}
.y28{bottom:362.955000px;}
.y27{bottom:387.075000px;}
.y49{bottom:387.255000px;}
.y26{bottom:411.195000px;}
.y48{bottom:411.375000px;}
.y61{bottom:429.015000px;}
.y25{bottom:435.315000px;}
.y47{bottom:456.555000px;}
.y24{bottom:459.435000px;}
.y7b{bottom:474.375000px;}
.y23{bottom:483.555000px;}
.y46{bottom:501.735000px;}
.y60{bottom:504.435000px;}
.y22{bottom:507.675000px;}
.y7a{bottom:511.995000px;}
.y45{bottom:525.855000px;}
.y21{bottom:531.975000px;}
.y5f{bottom:549.435000px;}
.y44{bottom:549.975000px;}
.y79{bottom:553.215000px;}
.y20{bottom:556.095000px;}
.y5e{bottom:573.765000px;}
.y78{bottom:577.365000px;}
.y43{bottom:595.185000px;}
.y5d{bottom:597.885000px;}
.y1f{bottom:601.305000px;}
.y77{bottom:601.485000px;}
.y5c{bottom:622.005000px;}
.y76{bottom:625.605000px;}
.y42{bottom:640.365000px;}
.y1e{bottom:646.305000px;}
.y41{bottom:664.485000px;}
.y5b{bottom:668.985000px;}
.y1d{bottom:670.605000px;}
.y75{bottom:670.785000px;}
.y40{bottom:688.605000px;}
.y74{bottom:694.905000px;}
.y5a{bottom:714.165000px;}
.y1c{bottom:715.605000px;}
.y73{bottom:719.025000px;}
.y3f{bottom:733.785000px;}
.y59{bottom:738.285000px;}
.y1b{bottom:739.905000px;}
.y72{bottom:743.145000px;}
.y3e{bottom:757.905000px;}
.y58{bottom:762.585000px;}
.y1a{bottom:764.025000px;}
.y3d{bottom:782.025000px;}
.y57{bottom:786.705000px;}
.y19{bottom:788.145000px;}
.y71{bottom:788.325000px;}
.y3c{bottom:806.325000px;}
.y18{bottom:812.265000px;}
.y3b{bottom:830.445000px;}
.y70{bottom:833.505000px;}
.y56{bottom:833.685000px;}
.y17{bottom:836.385000px;}
.y3a{bottom:854.610000px;}
.y6f{bottom:857.670000px;}
.y16{bottom:860.550000px;}
.y55{bottom:860.910000px;}
.y39{bottom:878.730000px;}
.y6e{bottom:881.970000px;}
.y15{bottom:884.670000px;}
.y54{bottom:906.090000px;}
.y38{bottom:923.910000px;}
.y53{bottom:930.210000px;}
.y14{bottom:931.830000px;}
.y37{bottom:948.030000px;}
.y6d{bottom:951.270000px;}
.y13{bottom:969.810000px;}
.y36{bottom:972.150000px;}
.y52{bottom:975.390000px;}
.y35{bottom:996.270000px;}
.y51{bottom:999.510000px;}
.y12{bottom:1007.970000px;}
.y34{bottom:1020.570000px;}
.y6c{bottom:1023.630000px;}
.y33{bottom:1044.690000px;}
.y11{bottom:1045.950000px;}
.y50{bottom:1068.810000px;}
.y10{bottom:1072.050000px;}
.y32{bottom:1089.870000px;}
.yf{bottom:1110.030000px;}
.y31{bottom:1113.990000px;}
.ye{bottom:1136.160000px;}
.y30{bottom:1138.140000px;}
.yd{bottom:1162.260000px;}
.y1{bottom:1181.880000px;}
.y9{bottom:1185.840000px;}
.y7{bottom:1210.320000px;}
.yb{bottom:1224.720000px;}
.h8{height:30.780000px;}
.ha{height:30.960000px;}
.h3{height:31.140000px;}
.h6{height:35.280000px;}
.h10{height:38.016000px;}
.h4{height:62.261719px;}
.he{height:64.080000px;}
.hf{height:64.260000px;}
.h5{height:65.522461px;}
.h2{height:65.884219px;}
.hc{height:72.846211px;}
.hd{height:74.244727px;}
.h9{height:77.827148px;}
.hb{height:93.392578px;}
.h7{height:113.938945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:128.736000px;}
.w4{width:140.256000px;}
.w9{width:197.310000px;}
.w8{width:204.150000px;}
.wa{width:217.290000px;}
.w6{width:224.850000px;}
.w5{width:397.695000px;}
.w3{width:443.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.260000px;}
.x5{left:6.480000px;}
.xc{left:20.520000px;}
.x9{left:24.120000px;}
.xb{left:25.920000px;}
.x8{left:32.400000px;}
.xa{left:49.860000px;}
.x6{left:55.080000px;}
.x4{left:61.590000px;}
.x10{left:63.899987px;}
.x12{left:67.140000px;}
.xf{left:72.359987px;}
.xd{left:107.315987px;}
.x11{left:128.915987px;}
.x14{left:199.650000px;}
.xe{left:247.169987px;}
.x7{left:348.015000px;}
.x17{left:369.074987px;}
.x15{left:407.595000px;}
.x3{left:449.895000px;}
.x16{left:608.685000px;}
.x1{left:894.419987px;}
.x2{left:895.679987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.336533pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.240000pt;}
.lse{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:1.760000pt;}
.ls8{letter-spacing:4.480000pt;}
.ls7{letter-spacing:4.960000pt;}
.ls1{letter-spacing:7.520000pt;}
.lsa{letter-spacing:8.800000pt;}
.ls9{letter-spacing:16.480000pt;}
.ls6{letter-spacing:19.680000pt;}
.lsc{letter-spacing:72.160000pt;}
.ws1{word-spacing:-26.400000pt;}
.ws2{word-spacing:-20.240000pt;}
.ws3{word-spacing:-20.000000pt;}
.ws4{word-spacing:-19.200000pt;}
.wsb{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.023467pt;}
.ws5{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.686720pt;}
.ws8{word-spacing:-18.400000pt;}
.ws9{word-spacing:-18.383467pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:0.000000pt;}
._d{margin-left:-5.016960pt;}
._9{margin-left:-4.000000pt;}
._e{margin-left:-2.845440pt;}
._8{margin-left:-1.872000pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.054080pt;}
._5{width:2.096640pt;}
._f{width:3.818880pt;}
._a{width:5.690880pt;}
._3{width:7.038720pt;}
._4{width:8.536320pt;}
._b{width:9.489493pt;}
._c{width:13.029120pt;}
._2{width:14.451840pt;}
._7{width:15.799680pt;}
._6{width:16.698240pt;}
._14{width:17.671680pt;}
._10{width:19.925760pt;}
._11{width:21.340800pt;}
._13{width:30.700800pt;}
._1a{width:35.038080pt;}
._19{width:36.092160pt;}
._12{width:53.913600pt;}
._1c{width:58.769280pt;}
._1b{width:59.904000pt;}
._1d{width:60.862293pt;}
._1f{width:71.435520pt;}
._1e{width:72.334080pt;}
._16{width:76.377600pt;}
._17{width:77.351040pt;}
._15{width:88.202880pt;}
._18{width:101.612160pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.y2{bottom:-0.128011pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.000000pt;}
.yc{bottom:4.960000pt;}
.y6{bottom:5.760000pt;}
.ya{bottom:8.640000pt;}
.y4{bottom:12.800000pt;}
.y3{bottom:14.432000pt;}
.y5{bottom:15.392000pt;}
.y64{bottom:16.320000pt;}
.y69{bottom:16.480000pt;}
.y62{bottom:27.840000pt;}
.y66{bottom:28.000000pt;}
.y63{bottom:39.520000pt;}
.y68{bottom:39.680000pt;}
.y2f{bottom:97.632000pt;}
.y2e{bottom:119.072000pt;}
.y4f{bottom:140.826667pt;}
.y6b{bottom:155.066667pt;}
.y2d{bottom:159.226667pt;}
.y4e{bottom:180.986667pt;}
.y2c{bottom:199.386667pt;}
.y4d{bottom:202.426667pt;}
.y6a{bottom:217.466667pt;}
.y2b{bottom:220.826667pt;}
.y4c{bottom:242.426667pt;}
.y67{bottom:256.546667pt;}
.y2a{bottom:261.026667pt;}
.y4b{bottom:282.626667pt;}
.y29{bottom:301.026667pt;}
.y4a{bottom:304.066667pt;}
.y65{bottom:318.946667pt;}
.y28{bottom:322.626667pt;}
.y27{bottom:344.066667pt;}
.y49{bottom:344.226667pt;}
.y26{bottom:365.506667pt;}
.y48{bottom:365.666667pt;}
.y61{bottom:381.346667pt;}
.y25{bottom:386.946667pt;}
.y47{bottom:405.826667pt;}
.y24{bottom:408.386667pt;}
.y7b{bottom:421.666667pt;}
.y23{bottom:429.826667pt;}
.y46{bottom:445.986667pt;}
.y60{bottom:448.386667pt;}
.y22{bottom:451.266667pt;}
.y7a{bottom:455.106667pt;}
.y45{bottom:467.426667pt;}
.y21{bottom:472.866667pt;}
.y5f{bottom:488.386667pt;}
.y44{bottom:488.866667pt;}
.y79{bottom:491.746667pt;}
.y20{bottom:494.306667pt;}
.y5e{bottom:510.013333pt;}
.y78{bottom:513.213333pt;}
.y43{bottom:529.053333pt;}
.y5d{bottom:531.453333pt;}
.y1f{bottom:534.493333pt;}
.y77{bottom:534.653333pt;}
.y5c{bottom:552.893333pt;}
.y76{bottom:556.093333pt;}
.y42{bottom:569.213333pt;}
.y1e{bottom:574.493333pt;}
.y41{bottom:590.653333pt;}
.y5b{bottom:594.653333pt;}
.y1d{bottom:596.093333pt;}
.y75{bottom:596.253333pt;}
.y40{bottom:612.093333pt;}
.y74{bottom:617.693333pt;}
.y5a{bottom:634.813333pt;}
.y1c{bottom:636.093333pt;}
.y73{bottom:639.133333pt;}
.y3f{bottom:652.253333pt;}
.y59{bottom:656.253333pt;}
.y1b{bottom:657.693333pt;}
.y72{bottom:660.573333pt;}
.y3e{bottom:673.693333pt;}
.y58{bottom:677.853333pt;}
.y1a{bottom:679.133333pt;}
.y3d{bottom:695.133333pt;}
.y57{bottom:699.293333pt;}
.y19{bottom:700.573333pt;}
.y71{bottom:700.733333pt;}
.y3c{bottom:716.733333pt;}
.y18{bottom:722.013333pt;}
.y3b{bottom:738.173333pt;}
.y70{bottom:740.893333pt;}
.y56{bottom:741.053333pt;}
.y17{bottom:743.453333pt;}
.y3a{bottom:759.653333pt;}
.y6f{bottom:762.373333pt;}
.y16{bottom:764.933333pt;}
.y55{bottom:765.253333pt;}
.y39{bottom:781.093333pt;}
.y6e{bottom:783.973333pt;}
.y15{bottom:786.373333pt;}
.y54{bottom:805.413333pt;}
.y38{bottom:821.253333pt;}
.y53{bottom:826.853333pt;}
.y14{bottom:828.293333pt;}
.y37{bottom:842.693333pt;}
.y6d{bottom:845.573333pt;}
.y13{bottom:862.053333pt;}
.y36{bottom:864.133333pt;}
.y52{bottom:867.013333pt;}
.y35{bottom:885.573333pt;}
.y51{bottom:888.453333pt;}
.y12{bottom:895.973333pt;}
.y34{bottom:907.173333pt;}
.y6c{bottom:909.893333pt;}
.y33{bottom:928.613333pt;}
.y11{bottom:929.733333pt;}
.y50{bottom:950.053333pt;}
.y10{bottom:952.933333pt;}
.y32{bottom:968.773333pt;}
.yf{bottom:986.693333pt;}
.y31{bottom:990.213333pt;}
.ye{bottom:1009.920000pt;}
.y30{bottom:1011.680000pt;}
.yd{bottom:1033.120000pt;}
.y1{bottom:1050.560000pt;}
.y9{bottom:1054.080000pt;}
.y7{bottom:1075.840000pt;}
.yb{bottom:1088.640000pt;}
.h8{height:27.360000pt;}
.ha{height:27.520000pt;}
.h3{height:27.680000pt;}
.h6{height:31.360000pt;}
.h10{height:33.792000pt;}
.h4{height:55.343750pt;}
.he{height:56.960000pt;}
.hf{height:57.120000pt;}
.h5{height:58.242188pt;}
.h2{height:58.563750pt;}
.hc{height:64.752187pt;}
.hd{height:65.995312pt;}
.h9{height:69.179688pt;}
.hb{height:83.015625pt;}
.h7{height:101.279062pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:114.432000pt;}
.w4{width:124.672000pt;}
.w9{width:175.386667pt;}
.w8{width:181.466667pt;}
.wa{width:193.146667pt;}
.w6{width:199.866667pt;}
.w5{width:353.506667pt;}
.w3{width:393.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.120000pt;}
.x5{left:5.760000pt;}
.xc{left:18.240000pt;}
.x9{left:21.440000pt;}
.xb{left:23.040000pt;}
.x8{left:28.800000pt;}
.xa{left:44.320000pt;}
.x6{left:48.960000pt;}
.x4{left:54.746667pt;}
.x10{left:56.799988pt;}
.x12{left:59.680000pt;}
.xf{left:64.319988pt;}
.xd{left:95.391988pt;}
.x11{left:114.591988pt;}
.x14{left:177.466667pt;}
.xe{left:219.706655pt;}
.x7{left:309.346667pt;}
.x17{left:328.066655pt;}
.x15{left:362.306667pt;}
.x3{left:399.906667pt;}
.x16{left:541.053333pt;}
.x1{left:795.039988pt;}
.x2{left:796.159988pt;}
}




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