
    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_35d3f8f461f9562c8cd3ca3f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_00fcf7e7e19652641c9b0f97.woff')format("woff");}.ff2{font-family:ff2;line-height:1.095703;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_a1b1cb1fdcef86ba9ba7cb8e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_86256fb0f355313c7aba39c7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1c43995cfb4b987b73c2e76f.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_6ac2e6f3f8d2dcee6d4512f6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_b3ace438385000d867a3af3a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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;}
.m3{transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213415,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,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;}
.ls1a{letter-spacing:-2.880000px;}
.ls18{letter-spacing:-2.772000px;}
.ls19{letter-spacing:-2.730000px;}
.ls8{letter-spacing:-1.854000px;}
.lsa{letter-spacing:-1.746000px;}
.ls12{letter-spacing:-1.704000px;}
.ls16{letter-spacing:-1.548000px;}
.lsc{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.332000px;}
.ls15{letter-spacing:-1.290000px;}
.ls17{letter-spacing:-1.134000px;}
.ls6{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-1.026000px;}
.lsb{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.567600px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.720000px;}
.lsd{letter-spacing:9.360000px;}
.ls13{letter-spacing:199.416000px;}
.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;}
}
.ws6{word-spacing:-19.440000px;}
.ws7{word-spacing:-18.738000px;}
.wsb{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.254600px;}
.wsf{word-spacing:-15.992400px;}
.wsc{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.534000px;}
.ws15{word-spacing:-15.426000px;}
.ws2{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.270000px;}
.wsd{word-spacing:-15.120000px;}
.ws14{word-spacing:-15.012000px;}
.ws5{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.856000px;}
.wsa{word-spacing:-14.814000px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.830000px;}
.ws16{word-spacing:-13.788000px;}
.ws18{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.086000px;}
.ws1{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.980000px;}
.wse{word-spacing:0.000000px;}
._18{margin-left:-17.709120px;}
._14{margin-left:-7.127280px;}
._5{margin-left:-5.707680px;}
._6{margin-left:-3.905040px;}
._4{margin-left:-2.464080px;}
._0{margin-left:-1.192320px;}
._3{width:1.219440px;}
._a{width:2.276400px;}
._9{width:3.482880px;}
._f{width:4.631520px;}
._b{width:6.149760px;}
._17{width:7.197360px;}
._7{width:8.271840px;}
._8{width:9.750480px;}
._e{width:11.073360px;}
._c{width:12.287760px;}
._d{width:13.405200px;}
._12{width:14.771040px;}
._11{width:17.961360px;}
._13{width:19.332000px;}
._15{width:22.353360px;}
._16{width:23.605920px;}
._19{width:24.707280px;}
._2{width:87.420000px;}
._10{width:167.463120px;}
._1{width:1099.706880px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.360000px;}
.y5{bottom:57.600000px;}
.y4{bottom:75.456000px;}
.y75{bottom:114.876000px;}
.y3e{bottom:123.516000px;}
.y74{bottom:133.776000px;}
.y3d{bottom:142.416000px;}
.y73{bottom:152.850000px;}
.y3c{bottom:161.490000px;}
.y72{bottom:171.750000px;}
.y3b{bottom:180.390000px;}
.y71{bottom:190.830000px;}
.y3a{bottom:199.470000px;}
.y70{bottom:209.730000px;}
.y39{bottom:218.370000px;}
.y6f{bottom:228.630000px;}
.y38{bottom:237.270000px;}
.y6e{bottom:247.710000px;}
.y37{bottom:256.350000px;}
.y6d{bottom:266.610000px;}
.y36{bottom:275.250000px;}
.y6c{bottom:285.690000px;}
.y35{bottom:294.330000px;}
.y6b{bottom:304.590000px;}
.y34{bottom:313.230000px;}
.y6a{bottom:323.490000px;}
.y33{bottom:332.130000px;}
.y69{bottom:342.615000px;}
.y32{bottom:351.255000px;}
.y68{bottom:361.515000px;}
.y31{bottom:370.155000px;}
.y67{bottom:380.595000px;}
.y30{bottom:389.235000px;}
.y66{bottom:399.495000px;}
.y2f{bottom:408.135000px;}
.y65{bottom:418.575000px;}
.y2e{bottom:427.035000px;}
.y64{bottom:437.475000px;}
.y2d{bottom:446.115000px;}
.y63{bottom:456.375000px;}
.y2c{bottom:465.015000px;}
.y62{bottom:475.455000px;}
.y2b{bottom:484.095000px;}
.y61{bottom:494.355000px;}
.y2a{bottom:502.995000px;}
.y60{bottom:513.435000px;}
.y29{bottom:520.815000px;}
.y5f{bottom:532.335000px;}
.y28{bottom:534.675000px;}
.y27{bottom:549.615000px;}
.y5e{bottom:551.235000px;}
.y26{bottom:568.155000px;}
.y5d{bottom:570.315000px;}
.y25{bottom:585.435000px;}
.y5c{bottom:589.215000px;}
.y24{bottom:602.535000px;}
.y5b{bottom:608.325000px;}
.y23{bottom:619.845000px;}
.y5a{bottom:627.225000px;}
.y22{bottom:637.125000px;}
.y59{bottom:646.125000px;}
.y21{bottom:654.405000px;}
.y58{bottom:665.205000px;}
.y20{bottom:671.685000px;}
.y57{bottom:684.105000px;}
.y1f{bottom:688.965000px;}
.y56{bottom:703.185000px;}
.y1e{bottom:706.065000px;}
.y55{bottom:722.085000px;}
.y1d{bottom:723.345000px;}
.y1c{bottom:740.625000px;}
.y54{bottom:740.985000px;}
.y1b{bottom:757.905000px;}
.y53{bottom:760.065000px;}
.y1a{bottom:775.185000px;}
.y52{bottom:778.965000px;}
.y19{bottom:792.465000px;}
.y51{bottom:798.045000px;}
.y18{bottom:809.565000px;}
.y50{bottom:816.945000px;}
.y17{bottom:826.845000px;}
.y4f{bottom:835.845000px;}
.y16{bottom:844.125000px;}
.y4e{bottom:854.925000px;}
.y15{bottom:861.405000px;}
.y4d{bottom:873.870000px;}
.y14{bottom:878.730000px;}
.y4c{bottom:892.950000px;}
.y13{bottom:895.830000px;}
.y4b{bottom:911.850000px;}
.y12{bottom:913.110000px;}
.y11{bottom:930.390000px;}
.y4a{bottom:930.930000px;}
.y10{bottom:948.030000px;}
.y49{bottom:949.830000px;}
.yf{bottom:967.110000px;}
.y48{bottom:968.730000px;}
.ye{bottom:986.010000px;}
.y47{bottom:987.810000px;}
.yd{bottom:1005.450000px;}
.y46{bottom:1006.710000px;}
.y45{bottom:1025.790000px;}
.yc{bottom:1027.950000px;}
.y44{bottom:1044.690000px;}
.yb{bottom:1050.270000px;}
.y43{bottom:1063.590000px;}
.ya{bottom:1071.870000px;}
.y42{bottom:1082.670000px;}
.y9{bottom:1089.150000px;}
.y41{bottom:1101.570000px;}
.y8{bottom:1106.430000px;}
.y40{bottom:1120.650000px;}
.y7{bottom:1123.530000px;}
.y3f{bottom:1139.580000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1165.680000px;}
.y1{bottom:1180.980000px;}
.h2{height:27.900000px;}
.he{height:34.036523px;}
.h6{height:42.164648px;}
.h5{height:42.445547px;}
.hc{height:43.156758px;}
.hd{height:45.549492px;}
.hb{height:46.736719px;}
.h3{height:47.836406px;}
.hf{height:48.224531px;}
.ha{height:50.488594px;}
.h7{height:52.581797px;}
.h8{height:54.864844px;}
.h9{height:56.155781px;}
.h4{height:58.283437px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.100000px;}
.w3{width:618.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x4{left:17.100000px;}
.x1{left:108.036000px;}
.x6{left:127.295987px;}
.xd{left:139.535987px;}
.xe{left:151.409987px;}
.xc{left:162.029987px;}
.x3{left:170.130000px;}
.xf{left:171.389987px;}
.x7{left:293.654987px;}
.x9{left:315.614987px;}
.xa{left:334.514987px;}
.x8{left:385.094987px;}
.xb{left:420.734987px;}
.x5{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-2.560000pt;}
.ls18{letter-spacing:-2.464000pt;}
.ls19{letter-spacing:-2.426667pt;}
.ls8{letter-spacing:-1.648000pt;}
.lsa{letter-spacing:-1.552000pt;}
.ls12{letter-spacing:-1.514667pt;}
.ls16{letter-spacing:-1.376000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.184000pt;}
.ls15{letter-spacing:-1.146667pt;}
.ls17{letter-spacing:-1.008000pt;}
.ls6{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.912000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.504533pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.640000pt;}
.lsd{letter-spacing:8.320000pt;}
.ls13{letter-spacing:177.258667pt;}
.ws6{word-spacing:-17.280000pt;}
.ws7{word-spacing:-16.656000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.448533pt;}
.wsf{word-spacing:-14.215467pt;}
.wsc{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.808000pt;}
.ws15{word-spacing:-13.712000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.573333pt;}
.wsd{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.205333pt;}
.wsa{word-spacing:-13.168000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.293333pt;}
.ws16{word-spacing:-12.256000pt;}
.ws18{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.632000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.760000pt;}
.wse{word-spacing:0.000000pt;}
._18{margin-left:-15.741440pt;}
._14{margin-left:-6.335360pt;}
._5{margin-left:-5.073493pt;}
._6{margin-left:-3.471147pt;}
._4{margin-left:-2.190293pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.083947pt;}
._a{width:2.023467pt;}
._9{width:3.095893pt;}
._f{width:4.116907pt;}
._b{width:5.466453pt;}
._17{width:6.397653pt;}
._7{width:7.352747pt;}
._8{width:8.667093pt;}
._e{width:9.842987pt;}
._c{width:10.922453pt;}
._d{width:11.915733pt;}
._12{width:13.129813pt;}
._11{width:15.965653pt;}
._13{width:17.184000pt;}
._15{width:19.869653pt;}
._16{width:20.983040pt;}
._19{width:21.962027pt;}
._2{width:77.706667pt;}
._10{width:148.856107pt;}
._1{width:977.517227pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.320000pt;}
.y5{bottom:51.200000pt;}
.y4{bottom:67.072000pt;}
.y75{bottom:102.112000pt;}
.y3e{bottom:109.792000pt;}
.y74{bottom:118.912000pt;}
.y3d{bottom:126.592000pt;}
.y73{bottom:135.866667pt;}
.y3c{bottom:143.546667pt;}
.y72{bottom:152.666667pt;}
.y3b{bottom:160.346667pt;}
.y71{bottom:169.626667pt;}
.y3a{bottom:177.306667pt;}
.y70{bottom:186.426667pt;}
.y39{bottom:194.106667pt;}
.y6f{bottom:203.226667pt;}
.y38{bottom:210.906667pt;}
.y6e{bottom:220.186667pt;}
.y37{bottom:227.866667pt;}
.y6d{bottom:236.986667pt;}
.y36{bottom:244.666667pt;}
.y6c{bottom:253.946667pt;}
.y35{bottom:261.626667pt;}
.y6b{bottom:270.746667pt;}
.y34{bottom:278.426667pt;}
.y6a{bottom:287.546667pt;}
.y33{bottom:295.226667pt;}
.y69{bottom:304.546667pt;}
.y32{bottom:312.226667pt;}
.y68{bottom:321.346667pt;}
.y31{bottom:329.026667pt;}
.y67{bottom:338.306667pt;}
.y30{bottom:345.986667pt;}
.y66{bottom:355.106667pt;}
.y2f{bottom:362.786667pt;}
.y65{bottom:372.066667pt;}
.y2e{bottom:379.586667pt;}
.y64{bottom:388.866667pt;}
.y2d{bottom:396.546667pt;}
.y63{bottom:405.666667pt;}
.y2c{bottom:413.346667pt;}
.y62{bottom:422.626667pt;}
.y2b{bottom:430.306667pt;}
.y61{bottom:439.426667pt;}
.y2a{bottom:447.106667pt;}
.y60{bottom:456.386667pt;}
.y29{bottom:462.946667pt;}
.y5f{bottom:473.186667pt;}
.y28{bottom:475.266667pt;}
.y27{bottom:488.546667pt;}
.y5e{bottom:489.986667pt;}
.y26{bottom:505.026667pt;}
.y5d{bottom:506.946667pt;}
.y25{bottom:520.386667pt;}
.y5c{bottom:523.746667pt;}
.y24{bottom:535.586667pt;}
.y5b{bottom:540.733333pt;}
.y23{bottom:550.973333pt;}
.y5a{bottom:557.533333pt;}
.y22{bottom:566.333333pt;}
.y59{bottom:574.333333pt;}
.y21{bottom:581.693333pt;}
.y58{bottom:591.293333pt;}
.y20{bottom:597.053333pt;}
.y57{bottom:608.093333pt;}
.y1f{bottom:612.413333pt;}
.y56{bottom:625.053333pt;}
.y1e{bottom:627.613333pt;}
.y55{bottom:641.853333pt;}
.y1d{bottom:642.973333pt;}
.y1c{bottom:658.333333pt;}
.y54{bottom:658.653333pt;}
.y1b{bottom:673.693333pt;}
.y53{bottom:675.613333pt;}
.y1a{bottom:689.053333pt;}
.y52{bottom:692.413333pt;}
.y19{bottom:704.413333pt;}
.y51{bottom:709.373333pt;}
.y18{bottom:719.613333pt;}
.y50{bottom:726.173333pt;}
.y17{bottom:734.973333pt;}
.y4f{bottom:742.973333pt;}
.y16{bottom:750.333333pt;}
.y4e{bottom:759.933333pt;}
.y15{bottom:765.693333pt;}
.y4d{bottom:776.773333pt;}
.y14{bottom:781.093333pt;}
.y4c{bottom:793.733333pt;}
.y13{bottom:796.293333pt;}
.y4b{bottom:810.533333pt;}
.y12{bottom:811.653333pt;}
.y11{bottom:827.013333pt;}
.y4a{bottom:827.493333pt;}
.y10{bottom:842.693333pt;}
.y49{bottom:844.293333pt;}
.yf{bottom:859.653333pt;}
.y48{bottom:861.093333pt;}
.ye{bottom:876.453333pt;}
.y47{bottom:878.053333pt;}
.yd{bottom:893.733333pt;}
.y46{bottom:894.853333pt;}
.y45{bottom:911.813333pt;}
.yc{bottom:913.733333pt;}
.y44{bottom:928.613333pt;}
.yb{bottom:933.573333pt;}
.y43{bottom:945.413333pt;}
.ya{bottom:952.773333pt;}
.y42{bottom:962.373333pt;}
.y9{bottom:968.133333pt;}
.y41{bottom:979.173333pt;}
.y8{bottom:983.493333pt;}
.y40{bottom:996.133333pt;}
.y7{bottom:998.693333pt;}
.y3f{bottom:1012.960000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1036.160000pt;}
.y1{bottom:1049.760000pt;}
.h2{height:24.800000pt;}
.he{height:30.254687pt;}
.h6{height:37.479688pt;}
.h5{height:37.729375pt;}
.hc{height:38.361562pt;}
.hd{height:40.488438pt;}
.hb{height:41.543750pt;}
.h3{height:42.521250pt;}
.hf{height:42.866250pt;}
.ha{height:44.878750pt;}
.h7{height:46.739375pt;}
.h8{height:48.768750pt;}
.h9{height:49.916250pt;}
.h4{height:51.807500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.200000pt;}
.w3{width:549.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x4{left:15.200000pt;}
.x1{left:96.032000pt;}
.x6{left:113.151988pt;}
.xd{left:124.031988pt;}
.xe{left:134.586655pt;}
.xc{left:144.026655pt;}
.x3{left:151.226667pt;}
.xf{left:152.346655pt;}
.x7{left:261.026655pt;}
.x9{left:280.546655pt;}
.xa{left:297.346655pt;}
.x8{left:342.306655pt;}
.xb{left:373.986655pt;}
.x5{left:396.866655pt;}
}




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