
    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_e8e94ac5b583dfb4f9ac6c45.woff')format("woff");}.ff1{font-family:ff1;line-height:0.886230;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_80f38acb7696fe27d83c28c6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.886230;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_9ef7a57d38da97ac6214f87d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_20e77517c0bf1b4f79339dac.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_31aa52d1ae0a83772c8f6140.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_510adf356f4e031e2d797ece.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_5716ff44c6d71adf93e0e9b6.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_da00100aa1c5837154b8cc03.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ebf376d83f737b00e4266b7c.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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:27.600000px;}
.lsd{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-0.384000px;}
.ls1{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.384000px;}
.lsa{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.480000px;}
.lsb{letter-spacing:27.984000px;}
.ls2{letter-spacing:33.984000px;}
.ls9{letter-spacing:44.784000px;}
.ls5{letter-spacing:54.384000px;}
.lsc{letter-spacing:152.934000px;}
.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;}
}
.ws7{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.384000px;}
.ws4{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.616000px;}
.ws1{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.856000px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-7.638000px;}
._0{margin-left:-6.120000px;}
._6{margin-left:-5.064000px;}
._2{margin-left:-4.032000px;}
._4{margin-left:-2.370000px;}
._3{margin-left:-1.320000px;}
._1{width:1.320000px;}
._5{width:2.676000px;}
._7{width:3.804000px;}
._d{width:5.544000px;}
._17{width:7.512000px;}
._1a{width:8.580000px;}
._c{width:9.636000px;}
._b{width:10.764000px;}
._9{width:12.570000px;}
._a{width:14.082000px;}
._19{width:15.672000px;}
._e{width:16.746000px;}
._10{width:19.098000px;}
._f{width:20.220000px;}
._18{width:21.744000px;}
._15{width:62.616000px;}
._16{width:63.906000px;}
._12{width:190.950000px;}
._14{width:194.580000px;}
._13{width:195.600000px;}
._8{width:846.072000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.885000px;}
.y5b{bottom:3.900000px;}
.y61{bottom:3.945000px;}
.y51{bottom:4.185000px;}
.y49{bottom:4.200000px;}
.y45{bottom:4.215000px;}
.y40{bottom:14.085000px;}
.y42{bottom:14.115000px;}
.y58{bottom:24.600000px;}
.y44{bottom:26.100000px;}
.y57{bottom:45.300000px;}
.y56{bottom:65.985000px;}
.y55{bottom:86.685000px;}
.y7b{bottom:96.037500px;}
.y86{bottom:97.237500px;}
.y23{bottom:105.037500px;}
.y54{bottom:107.400000px;}
.y6f{bottom:108.037500px;}
.y7a{bottom:126.637500px;}
.y85{bottom:128.137500px;}
.y3e{bottom:130.537500px;}
.y22{bottom:135.937500px;}
.y6e{bottom:138.937500px;}
.y79{bottom:159.345000px;}
.y3d{bottom:162.930000px;}
.y21{bottom:167.130000px;}
.y6d{bottom:170.130000px;}
.y78{bottom:190.245000px;}
.y3c{bottom:195.675000px;}
.y20{bottom:198.075000px;}
.y6c{bottom:201.075000px;}
.y77{bottom:221.475000px;}
.y3b{bottom:226.575000px;}
.y1f{bottom:229.275000px;}
.y6b{bottom:232.275000px;}
.y76{bottom:252.375000px;}
.y3a{bottom:257.775000px;}
.y1e{bottom:260.175000px;}
.y6a{bottom:263.175000px;}
.y75{bottom:283.575000px;}
.y39{bottom:288.675000px;}
.y1d{bottom:291.375000px;}
.y69{bottom:294.375000px;}
.y74{bottom:314.475000px;}
.y38{bottom:319.875000px;}
.y1c{bottom:322.275000px;}
.y68{bottom:325.275000px;}
.y84{bottom:345.375000px;}
.y73{bottom:346.875000px;}
.y37{bottom:350.775000px;}
.y1b{bottom:353.475000px;}
.y67{bottom:356.475000px;}
.y83{bottom:377.805000px;}
.y72{bottom:379.005000px;}
.y36{bottom:382.005000px;}
.y1a{bottom:384.405000px;}
.y66{bottom:387.405000px;}
.y82{bottom:410.205000px;}
.y71{bottom:411.405000px;}
.y35{bottom:412.620000px;}
.y19{bottom:415.620000px;}
.y65{bottom:418.605000px;}
.y81{bottom:441.405000px;}
.y70{bottom:443.820000px;}
.y34{bottom:445.320000px;}
.y18{bottom:446.505000px;}
.y64{bottom:449.505000px;}
.y80{bottom:472.320000px;}
.y33{bottom:476.205000px;}
.y17{bottom:477.705000px;}
.y63{bottom:480.705000px;}
.y62{bottom:497.505000px;}
.y7f{bottom:503.505000px;}
.y32{bottom:507.405000px;}
.y16{bottom:508.605000px;}
.y60{bottom:520.005000px;}
.y7e{bottom:534.450000px;}
.y31{bottom:538.350000px;}
.y15{bottom:539.850000px;}
.y5f{bottom:542.550000px;}
.y7d{bottom:566.850000px;}
.y30{bottom:569.550000px;}
.y14{bottom:570.750000px;}
.y7c{bottom:598.950000px;}
.y2f{bottom:600.450000px;}
.y13{bottom:601.950000px;}
.y5e{bottom:605.850000px;}
.y5d{bottom:628.350000px;}
.y2e{bottom:631.650000px;}
.y12{bottom:632.850000px;}
.y5c{bottom:650.850000px;}
.y2d{bottom:662.550000px;}
.y11{bottom:664.050000px;}
.y5a{bottom:673.350000px;}
.y2c{bottom:693.780000px;}
.y10{bottom:694.995000px;}
.y53{bottom:695.895000px;}
.y2b{bottom:724.680000px;}
.yf{bottom:726.195000px;}
.y2a{bottom:755.880000px;}
.ye{bottom:757.080000px;}
.y29{bottom:786.795000px;}
.yd{bottom:788.295000px;}
.y28{bottom:817.995000px;}
.yc{bottom:819.195000px;}
.y52{bottom:821.295000px;}
.y91{bottom:829.995000px;}
.y50{bottom:843.795000px;}
.y27{bottom:848.880000px;}
.yb{bottom:850.380000px;}
.y4f{bottom:866.325000px;}
.y90{bottom:868.725000px;}
.y26{bottom:880.125000px;}
.ya{bottom:881.325000px;}
.y4e{bottom:888.825000px;}
.y8f{bottom:889.425000px;}
.y25{bottom:911.025000px;}
.y4d{bottom:911.325000px;}
.y9{bottom:912.525000px;}
.y8e{bottom:928.125000px;}
.y4c{bottom:933.825000px;}
.y24{bottom:941.925000px;}
.y8{bottom:943.425000px;}
.y8d{bottom:948.825000px;}
.y4b{bottom:956.325000px;}
.y8c{bottom:969.525000px;}
.y7{bottom:974.625000px;}
.y4a{bottom:978.825000px;}
.y48{bottom:1001.325000px;}
.y6{bottom:1005.525000px;}
.y8b{bottom:1008.225000px;}
.y47{bottom:1023.855000px;}
.y8a{bottom:1028.955000px;}
.y5{bottom:1036.755000px;}
.y46{bottom:1046.355000px;}
.y89{bottom:1049.670000px;}
.y4{bottom:1067.670000px;}
.y43{bottom:1068.855000px;}
.y88{bottom:1088.370000px;}
.y3{bottom:1098.870000px;}
.y87{bottom:1109.070000px;}
.y41{bottom:1112.955000px;}
.y2{bottom:1129.755000px;}
.y3f{bottom:1145.370000px;}
.y1{bottom:1160.955000px;}
.hb{height:22.500000px;}
.hc{height:22.537500px;}
.h9{height:32.400000px;}
.ha{height:44.100000px;}
.h2{height:49.535156px;}
.h4{height:50.273438px;}
.h8{height:52.417969px;}
.h3{height:59.343750px;}
.h7{height:61.055625px;}
.h5{height:61.115625px;}
.h6{height:61.295625px;}
.he{height:63.300000px;}
.hd{height:125.400000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:723.225000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:32.400000px;}
.x6{left:59.400000px;}
.x2{left:84.937487px;}
.x9{left:104.737487px;}
.x3{left:111.937487px;}
.x4{left:138.937487px;}
.x7{left:165.929987px;}
.x8{left:192.974987px;}
.x1{left:392.219987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.533333pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.341333pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.341333pt;}
.lsa{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.426667pt;}
.lsb{letter-spacing:24.874667pt;}
.ls2{letter-spacing:30.208000pt;}
.ls9{letter-spacing:39.808000pt;}
.ls5{letter-spacing:48.341333pt;}
.lsc{letter-spacing:135.941333pt;}
.ws7{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.341333pt;}
.ws4{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.658667pt;}
.ws1{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.538667pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-6.789333pt;}
._0{margin-left:-5.440000pt;}
._6{margin-left:-4.501333pt;}
._2{margin-left:-3.584000pt;}
._4{margin-left:-2.106667pt;}
._3{margin-left:-1.173333pt;}
._1{width:1.173333pt;}
._5{width:2.378667pt;}
._7{width:3.381333pt;}
._d{width:4.928000pt;}
._17{width:6.677333pt;}
._1a{width:7.626667pt;}
._c{width:8.565333pt;}
._b{width:9.568000pt;}
._9{width:11.173333pt;}
._a{width:12.517333pt;}
._19{width:13.930667pt;}
._e{width:14.885333pt;}
._10{width:16.976000pt;}
._f{width:17.973333pt;}
._18{width:19.328000pt;}
._15{width:55.658667pt;}
._16{width:56.805333pt;}
._12{width:169.733333pt;}
._14{width:172.960000pt;}
._13{width:173.866667pt;}
._8{width:752.064000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:3.453333pt;}
.y5b{bottom:3.466667pt;}
.y61{bottom:3.506667pt;}
.y51{bottom:3.720000pt;}
.y49{bottom:3.733333pt;}
.y45{bottom:3.746667pt;}
.y40{bottom:12.520000pt;}
.y42{bottom:12.546667pt;}
.y58{bottom:21.866667pt;}
.y44{bottom:23.200000pt;}
.y57{bottom:40.266667pt;}
.y56{bottom:58.653333pt;}
.y55{bottom:77.053333pt;}
.y7b{bottom:85.366667pt;}
.y86{bottom:86.433333pt;}
.y23{bottom:93.366667pt;}
.y54{bottom:95.466667pt;}
.y6f{bottom:96.033333pt;}
.y7a{bottom:112.566667pt;}
.y85{bottom:113.900000pt;}
.y3e{bottom:116.033333pt;}
.y22{bottom:120.833333pt;}
.y6e{bottom:123.500000pt;}
.y79{bottom:141.640000pt;}
.y3d{bottom:144.826667pt;}
.y21{bottom:148.560000pt;}
.y6d{bottom:151.226667pt;}
.y78{bottom:169.106667pt;}
.y3c{bottom:173.933333pt;}
.y20{bottom:176.066667pt;}
.y6c{bottom:178.733333pt;}
.y77{bottom:196.866667pt;}
.y3b{bottom:201.400000pt;}
.y1f{bottom:203.800000pt;}
.y6b{bottom:206.466667pt;}
.y76{bottom:224.333333pt;}
.y3a{bottom:229.133333pt;}
.y1e{bottom:231.266667pt;}
.y6a{bottom:233.933333pt;}
.y75{bottom:252.066667pt;}
.y39{bottom:256.600000pt;}
.y1d{bottom:259.000000pt;}
.y69{bottom:261.666667pt;}
.y74{bottom:279.533333pt;}
.y38{bottom:284.333333pt;}
.y1c{bottom:286.466667pt;}
.y68{bottom:289.133333pt;}
.y84{bottom:307.000000pt;}
.y73{bottom:308.333333pt;}
.y37{bottom:311.800000pt;}
.y1b{bottom:314.200000pt;}
.y67{bottom:316.866667pt;}
.y83{bottom:335.826667pt;}
.y72{bottom:336.893333pt;}
.y36{bottom:339.560000pt;}
.y1a{bottom:341.693333pt;}
.y66{bottom:344.360000pt;}
.y82{bottom:364.626667pt;}
.y71{bottom:365.693333pt;}
.y35{bottom:366.773333pt;}
.y19{bottom:369.440000pt;}
.y65{bottom:372.093333pt;}
.y81{bottom:392.360000pt;}
.y70{bottom:394.506667pt;}
.y34{bottom:395.840000pt;}
.y18{bottom:396.893333pt;}
.y64{bottom:399.560000pt;}
.y80{bottom:419.840000pt;}
.y33{bottom:423.293333pt;}
.y17{bottom:424.626667pt;}
.y63{bottom:427.293333pt;}
.y62{bottom:442.226667pt;}
.y7f{bottom:447.560000pt;}
.y32{bottom:451.026667pt;}
.y16{bottom:452.093333pt;}
.y60{bottom:462.226667pt;}
.y7e{bottom:475.066667pt;}
.y31{bottom:478.533333pt;}
.y15{bottom:479.866667pt;}
.y5f{bottom:482.266667pt;}
.y7d{bottom:503.866667pt;}
.y30{bottom:506.266667pt;}
.y14{bottom:507.333333pt;}
.y7c{bottom:532.400000pt;}
.y2f{bottom:533.733333pt;}
.y13{bottom:535.066667pt;}
.y5e{bottom:538.533333pt;}
.y5d{bottom:558.533333pt;}
.y2e{bottom:561.466667pt;}
.y12{bottom:562.533333pt;}
.y5c{bottom:578.533333pt;}
.y2d{bottom:588.933333pt;}
.y11{bottom:590.266667pt;}
.y5a{bottom:598.533333pt;}
.y2c{bottom:616.693333pt;}
.y10{bottom:617.773333pt;}
.y53{bottom:618.573333pt;}
.y2b{bottom:644.160000pt;}
.yf{bottom:645.506667pt;}
.y2a{bottom:671.893333pt;}
.ye{bottom:672.960000pt;}
.y29{bottom:699.373333pt;}
.yd{bottom:700.706667pt;}
.y28{bottom:727.106667pt;}
.yc{bottom:728.173333pt;}
.y52{bottom:730.040000pt;}
.y91{bottom:737.773333pt;}
.y50{bottom:750.040000pt;}
.y27{bottom:754.560000pt;}
.yb{bottom:755.893333pt;}
.y4f{bottom:770.066667pt;}
.y90{bottom:772.200000pt;}
.y26{bottom:782.333333pt;}
.ya{bottom:783.400000pt;}
.y4e{bottom:790.066667pt;}
.y8f{bottom:790.600000pt;}
.y25{bottom:809.800000pt;}
.y4d{bottom:810.066667pt;}
.y9{bottom:811.133333pt;}
.y8e{bottom:825.000000pt;}
.y4c{bottom:830.066667pt;}
.y24{bottom:837.266667pt;}
.y8{bottom:838.600000pt;}
.y8d{bottom:843.400000pt;}
.y4b{bottom:850.066667pt;}
.y8c{bottom:861.800000pt;}
.y7{bottom:866.333333pt;}
.y4a{bottom:870.066667pt;}
.y48{bottom:890.066667pt;}
.y6{bottom:893.800000pt;}
.y8b{bottom:896.200000pt;}
.y47{bottom:910.093333pt;}
.y8a{bottom:914.626667pt;}
.y5{bottom:921.560000pt;}
.y46{bottom:930.093333pt;}
.y89{bottom:933.040000pt;}
.y4{bottom:949.040000pt;}
.y43{bottom:950.093333pt;}
.y88{bottom:967.440000pt;}
.y3{bottom:976.773333pt;}
.y87{bottom:985.840000pt;}
.y41{bottom:989.293333pt;}
.y2{bottom:1004.226667pt;}
.y3f{bottom:1018.106667pt;}
.y1{bottom:1031.960000pt;}
.hb{height:20.000000pt;}
.hc{height:20.033333pt;}
.h9{height:28.800000pt;}
.ha{height:39.200000pt;}
.h2{height:44.031250pt;}
.h4{height:44.687500pt;}
.h8{height:46.593750pt;}
.h3{height:52.750000pt;}
.h7{height:54.271667pt;}
.h5{height:54.325000pt;}
.h6{height:54.485000pt;}
.he{height:56.266667pt;}
.hd{height:111.466667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:642.866667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:28.800000pt;}
.x6{left:52.800000pt;}
.x2{left:75.499988pt;}
.x9{left:93.099988pt;}
.x3{left:99.499988pt;}
.x4{left:123.499988pt;}
.x7{left:147.493322pt;}
.x8{left:171.533322pt;}
.x1{left:348.639988pt;}
}




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