
    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_fcddc69919276f3d323645dc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0b49218501b8bc7856bd5785.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5c992eb1e2484950554930c7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_b87845e418c0582450e58b51.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_0537b2ddc8baaaf326c64765.woff')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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);}
.v3{vertical-align:-89.280000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.720000px;}
.ls8{letter-spacing:2.880000px;}
.ls7{letter-spacing:3.600000px;}
.lsd{letter-spacing:6.480000px;}
.ls1{letter-spacing:7.680000px;}
.ls5{letter-spacing:33.960000px;}
.ls3{letter-spacing:194.376000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws0{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.432000px;}
.ws6{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws4{word-spacing:-17.064000px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-4.392000px;}
._7{margin-left:-2.952000px;}
._0{margin-left:-1.516320px;}
._4{width:1.008000px;}
._c{width:2.880000px;}
._2{width:4.104000px;}
._13{width:5.616000px;}
._1{width:7.152000px;}
._16{width:8.548320px;}
._8{width:9.624000px;}
._9{width:11.592000px;}
._10{width:13.536000px;}
._11{width:14.904000px;}
._f{width:16.632000px;}
._d{width:19.296000px;}
._e{width:20.376000px;}
._17{width:21.960000px;}
._a{width:23.544000px;}
._b{width:24.768000px;}
._19{width:26.136000px;}
._1b{width:27.792000px;}
._1a{width:29.736000px;}
._3{width:31.392000px;}
._5{width:32.976000px;}
._14{width:35.784000px;}
._15{width:37.152000px;}
._12{width:40.032000px;}
._18{width:73.000320px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs5{font-size:36.000000px;}
.fs2{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:74.880000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.420000px;}
.y1{bottom:76.320000px;}
.y2a{bottom:94.860000px;}
.ya1{bottom:104.220000px;}
.y83{bottom:111.780000px;}
.y29{bottom:113.580000px;}
.y57{bottom:115.020000px;}
.ya0{bottom:124.920000px;}
.y28{bottom:133.200000px;}
.y82{bottom:134.100000px;}
.y56{bottom:137.340000px;}
.y27{bottom:140.040000px;}
.y9f{bottom:145.620000px;}
.y26{bottom:153.540000px;}
.y81{bottom:156.420000px;}
.y55{bottom:159.660000px;}
.y9e{bottom:166.320000px;}
.y80{bottom:178.740000px;}
.y54{bottom:181.980000px;}
.y9d{bottom:187.020000px;}
.y25{bottom:191.160000px;}
.y7f{bottom:201.060000px;}
.y53{bottom:204.480000px;}
.y9c{bottom:207.720000px;}
.y24{bottom:213.510000px;}
.y7e{bottom:223.410000px;}
.y52{bottom:226.830000px;}
.y9b{bottom:228.450000px;}
.y23{bottom:234.390000px;}
.y7d{bottom:245.910000px;}
.y51{bottom:249.150000px;}
.y22{bottom:258.150000px;}
.y7c{bottom:268.230000px;}
.y9a{bottom:269.850000px;}
.y50{bottom:271.470000px;}
.y21{bottom:280.470000px;}
.y7b{bottom:290.550000px;}
.y99{bottom:292.170000px;}
.y4f{bottom:293.790000px;}
.y20{bottom:302.790000px;}
.y7a{bottom:312.870000px;}
.y98{bottom:314.490000px;}
.y4e{bottom:316.110000px;}
.y1f{bottom:325.110000px;}
.y79{bottom:335.190000px;}
.y97{bottom:336.810000px;}
.y4d{bottom:338.430000px;}
.y1e{bottom:347.430000px;}
.yc5{bottom:351.210000px;}
.y78{bottom:357.510000px;}
.y96{bottom:359.130000px;}
.y4c{bottom:360.750000px;}
.y1d{bottom:369.750000px;}
.yc4{bottom:371.910000px;}
.y77{bottom:379.830000px;}
.y95{bottom:381.450000px;}
.y4b{bottom:383.070000px;}
.y1c{bottom:392.250000px;}
.yc3{bottom:392.610000px;}
.y76{bottom:402.150000px;}
.y94{bottom:403.770000px;}
.y4a{bottom:405.390000px;}
.yc2{bottom:413.310000px;}
.y1b{bottom:414.570000px;}
.y75{bottom:424.470000px;}
.y93{bottom:426.090000px;}
.y49{bottom:427.890000px;}
.yc1{bottom:434.010000px;}
.y1a{bottom:436.890000px;}
.y74{bottom:446.835000px;}
.y92{bottom:448.635000px;}
.y48{bottom:450.255000px;}
.yc0{bottom:454.755000px;}
.y19{bottom:459.255000px;}
.y73{bottom:469.335000px;}
.y91{bottom:470.955000px;}
.y47{bottom:472.575000px;}
.ybf{bottom:475.455000px;}
.y18{bottom:481.575000px;}
.y72{bottom:491.655000px;}
.y90{bottom:493.275000px;}
.y46{bottom:494.895000px;}
.ybe{bottom:496.155000px;}
.y17{bottom:503.895000px;}
.y71{bottom:513.975000px;}
.y8f{bottom:515.595000px;}
.ybd{bottom:516.855000px;}
.y45{bottom:517.215000px;}
.y16{bottom:526.215000px;}
.y70{bottom:536.295000px;}
.ybc{bottom:537.555000px;}
.y8e{bottom:537.915000px;}
.y44{bottom:539.535000px;}
.y15{bottom:548.535000px;}
.ybb{bottom:558.255000px;}
.y6f{bottom:558.615000px;}
.y8d{bottom:560.235000px;}
.y43{bottom:561.855000px;}
.y14{bottom:570.855000px;}
.yba{bottom:578.955000px;}
.y6e{bottom:580.935000px;}
.y8c{bottom:582.555000px;}
.y42{bottom:584.175000px;}
.y13{bottom:593.175000px;}
.yb9{bottom:599.655000px;}
.y6d{bottom:603.255000px;}
.y8b{bottom:604.875000px;}
.y41{bottom:606.495000px;}
.y12{bottom:615.675000px;}
.yb8{bottom:620.175000px;}
.y6c{bottom:625.575000px;}
.y8a{bottom:627.195000px;}
.y40{bottom:628.815000px;}
.y11{bottom:637.995000px;}
.yb7{bottom:640.875000px;}
.y6b{bottom:647.895000px;}
.y89{bottom:649.515000px;}
.y3f{bottom:651.135000px;}
.y10{bottom:660.315000px;}
.yb6{bottom:661.575000px;}
.y6a{bottom:670.215000px;}
.y88{bottom:671.835000px;}
.y3e{bottom:673.635000px;}
.yb5{bottom:682.305000px;}
.yf{bottom:682.665000px;}
.y69{bottom:692.565000px;}
.y87{bottom:694.365000px;}
.y3d{bottom:695.985000px;}
.yb4{bottom:703.005000px;}
.ye{bottom:704.985000px;}
.y68{bottom:715.065000px;}
.y86{bottom:716.685000px;}
.y3c{bottom:718.305000px;}
.yb3{bottom:723.705000px;}
.yd{bottom:727.305000px;}
.y67{bottom:737.385000px;}
.y3b{bottom:740.625000px;}
.yb2{bottom:744.405000px;}
.yc{bottom:748.185000px;}
.y66{bottom:759.705000px;}
.y85{bottom:761.325000px;}
.y3a{bottom:762.945000px;}
.yb1{bottom:765.105000px;}
.ya{bottom:771.945000px;}
.yb{bottom:775.725000px;}
.y65{bottom:782.025000px;}
.y39{bottom:785.265000px;}
.yb0{bottom:785.805000px;}
.y84{bottom:804.345000px;}
.yaf{bottom:806.505000px;}
.y38{bottom:807.585000px;}
.y9{bottom:814.065000px;}
.y64{bottom:826.665000px;}
.yae{bottom:827.205000px;}
.y37{bottom:829.905000px;}
.y8{bottom:838.365000px;}
.yad{bottom:847.905000px;}
.y63{bottom:848.985000px;}
.y36{bottom:852.225000px;}
.y7{bottom:862.485000px;}
.yac{bottom:868.605000px;}
.y62{bottom:871.305000px;}
.y35{bottom:874.545000px;}
.yab{bottom:889.305000px;}
.y61{bottom:893.625000px;}
.y34{bottom:897.045000px;}
.y6{bottom:907.485000px;}
.yaa{bottom:910.005000px;}
.y60{bottom:915.990000px;}
.y33{bottom:919.410000px;}
.y5{bottom:930.390000px;}
.ya9{bottom:930.750000px;}
.y5f{bottom:938.310000px;}
.y32{bottom:941.730000px;}
.y4{bottom:944.790000px;}
.ya8{bottom:951.450000px;}
.y3{bottom:958.830000px;}
.y5e{bottom:960.810000px;}
.y31{bottom:964.050000px;}
.ya7{bottom:972.150000px;}
.y5d{bottom:983.130000px;}
.y30{bottom:986.370000px;}
.ya6{bottom:992.850000px;}
.y5c{bottom:1005.450000px;}
.y2f{bottom:1008.690000px;}
.ya5{bottom:1013.550000px;}
.y5b{bottom:1027.770000px;}
.y2e{bottom:1031.010000px;}
.ya4{bottom:1034.250000px;}
.y5a{bottom:1050.090000px;}
.y2d{bottom:1053.330000px;}
.ya3{bottom:1054.950000px;}
.y59{bottom:1072.410000px;}
.ya2{bottom:1075.650000px;}
.y58{bottom:1094.730000px;}
.y2c{bottom:1096.350000px;}
.y2b{bottom:1117.050000px;}
.h7{height:23.945625px;}
.h8{height:36.281250px;}
.h4{height:44.518359px;}
.hb{height:47.344922px;}
.h3{height:58.651172px;}
.h2{height:65.010937px;}
.ha{height:70.664062px;}
.h6{height:72.562500px;}
.hc{height:74.953125px;}
.h9{height:75.465000px;}
.h5{height:84.898125px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w3{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:126.215987px;}
.x1{left:127.655987px;}
.xa{left:133.775987px;}
.x4{left:168.869987px;}
.xb{left:180.749987px;}
.x3{left:186.149987px;}
.xd{left:197.309987px;}
.x9{left:343.694987px;}
.x6{left:352.154987px;}
.x5{left:427.964987px;}
.x7{left:588.164973px;}
.x8{left:591.224987px;}
.x2{left:625.469987px;}
@media print{
.v3{vertical-align:-79.360000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls8{letter-spacing:2.560000pt;}
.ls7{letter-spacing:3.200000pt;}
.lsd{letter-spacing:5.760000pt;}
.ls1{letter-spacing:6.826667pt;}
.ls5{letter-spacing:30.186667pt;}
.ls3{letter-spacing:172.778667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws4{word-spacing:-15.168000pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-3.904000pt;}
._7{margin-left:-2.624000pt;}
._0{margin-left:-1.347840pt;}
._4{width:0.896000pt;}
._c{width:2.560000pt;}
._2{width:3.648000pt;}
._13{width:4.992000pt;}
._1{width:6.357333pt;}
._16{width:7.598507pt;}
._8{width:8.554667pt;}
._9{width:10.304000pt;}
._10{width:12.032000pt;}
._11{width:13.248000pt;}
._f{width:14.784000pt;}
._d{width:17.152000pt;}
._e{width:18.112000pt;}
._17{width:19.520000pt;}
._a{width:20.928000pt;}
._b{width:22.016000pt;}
._19{width:23.232000pt;}
._1b{width:24.704000pt;}
._1a{width:26.432000pt;}
._3{width:27.904000pt;}
._5{width:29.312000pt;}
._14{width:31.808000pt;}
._15{width:33.024000pt;}
._12{width:35.584000pt;}
._18{width:64.889173pt;}
.fs6{font-size:21.120000pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:66.560000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.040000pt;}
.y1{bottom:67.840000pt;}
.y2a{bottom:84.320000pt;}
.ya1{bottom:92.640000pt;}
.y83{bottom:99.360000pt;}
.y29{bottom:100.960000pt;}
.y57{bottom:102.240000pt;}
.ya0{bottom:111.040000pt;}
.y28{bottom:118.400000pt;}
.y82{bottom:119.200000pt;}
.y56{bottom:122.080000pt;}
.y27{bottom:124.480000pt;}
.y9f{bottom:129.440000pt;}
.y26{bottom:136.480000pt;}
.y81{bottom:139.040000pt;}
.y55{bottom:141.920000pt;}
.y9e{bottom:147.840000pt;}
.y80{bottom:158.880000pt;}
.y54{bottom:161.760000pt;}
.y9d{bottom:166.240000pt;}
.y25{bottom:169.920000pt;}
.y7f{bottom:178.720000pt;}
.y53{bottom:181.760000pt;}
.y9c{bottom:184.640000pt;}
.y24{bottom:189.786667pt;}
.y7e{bottom:198.586667pt;}
.y52{bottom:201.626667pt;}
.y9b{bottom:203.066667pt;}
.y23{bottom:208.346667pt;}
.y7d{bottom:218.586667pt;}
.y51{bottom:221.466667pt;}
.y22{bottom:229.466667pt;}
.y7c{bottom:238.426667pt;}
.y9a{bottom:239.866667pt;}
.y50{bottom:241.306667pt;}
.y21{bottom:249.306667pt;}
.y7b{bottom:258.266667pt;}
.y99{bottom:259.706667pt;}
.y4f{bottom:261.146667pt;}
.y20{bottom:269.146667pt;}
.y7a{bottom:278.106667pt;}
.y98{bottom:279.546667pt;}
.y4e{bottom:280.986667pt;}
.y1f{bottom:288.986667pt;}
.y79{bottom:297.946667pt;}
.y97{bottom:299.386667pt;}
.y4d{bottom:300.826667pt;}
.y1e{bottom:308.826667pt;}
.yc5{bottom:312.186667pt;}
.y78{bottom:317.786667pt;}
.y96{bottom:319.226667pt;}
.y4c{bottom:320.666667pt;}
.y1d{bottom:328.666667pt;}
.yc4{bottom:330.586667pt;}
.y77{bottom:337.626667pt;}
.y95{bottom:339.066667pt;}
.y4b{bottom:340.506667pt;}
.y1c{bottom:348.666667pt;}
.yc3{bottom:348.986667pt;}
.y76{bottom:357.466667pt;}
.y94{bottom:358.906667pt;}
.y4a{bottom:360.346667pt;}
.yc2{bottom:367.386667pt;}
.y1b{bottom:368.506667pt;}
.y75{bottom:377.306667pt;}
.y93{bottom:378.746667pt;}
.y49{bottom:380.346667pt;}
.yc1{bottom:385.786667pt;}
.y1a{bottom:388.346667pt;}
.y74{bottom:397.186667pt;}
.y92{bottom:398.786667pt;}
.y48{bottom:400.226667pt;}
.yc0{bottom:404.226667pt;}
.y19{bottom:408.226667pt;}
.y73{bottom:417.186667pt;}
.y91{bottom:418.626667pt;}
.y47{bottom:420.066667pt;}
.ybf{bottom:422.626667pt;}
.y18{bottom:428.066667pt;}
.y72{bottom:437.026667pt;}
.y90{bottom:438.466667pt;}
.y46{bottom:439.906667pt;}
.ybe{bottom:441.026667pt;}
.y17{bottom:447.906667pt;}
.y71{bottom:456.866667pt;}
.y8f{bottom:458.306667pt;}
.ybd{bottom:459.426667pt;}
.y45{bottom:459.746667pt;}
.y16{bottom:467.746667pt;}
.y70{bottom:476.706667pt;}
.ybc{bottom:477.826667pt;}
.y8e{bottom:478.146667pt;}
.y44{bottom:479.586667pt;}
.y15{bottom:487.586667pt;}
.ybb{bottom:496.226667pt;}
.y6f{bottom:496.546667pt;}
.y8d{bottom:497.986667pt;}
.y43{bottom:499.426667pt;}
.y14{bottom:507.426667pt;}
.yba{bottom:514.626667pt;}
.y6e{bottom:516.386667pt;}
.y8c{bottom:517.826667pt;}
.y42{bottom:519.266667pt;}
.y13{bottom:527.266667pt;}
.yb9{bottom:533.026667pt;}
.y6d{bottom:536.226667pt;}
.y8b{bottom:537.666667pt;}
.y41{bottom:539.106667pt;}
.y12{bottom:547.266667pt;}
.yb8{bottom:551.266667pt;}
.y6c{bottom:556.066667pt;}
.y8a{bottom:557.506667pt;}
.y40{bottom:558.946667pt;}
.y11{bottom:567.106667pt;}
.yb7{bottom:569.666667pt;}
.y6b{bottom:575.906667pt;}
.y89{bottom:577.346667pt;}
.y3f{bottom:578.786667pt;}
.y10{bottom:586.946667pt;}
.yb6{bottom:588.066667pt;}
.y6a{bottom:595.746667pt;}
.y88{bottom:597.186667pt;}
.y3e{bottom:598.786667pt;}
.yb5{bottom:606.493333pt;}
.yf{bottom:606.813333pt;}
.y69{bottom:615.613333pt;}
.y87{bottom:617.213333pt;}
.y3d{bottom:618.653333pt;}
.yb4{bottom:624.893333pt;}
.ye{bottom:626.653333pt;}
.y68{bottom:635.613333pt;}
.y86{bottom:637.053333pt;}
.y3c{bottom:638.493333pt;}
.yb3{bottom:643.293333pt;}
.yd{bottom:646.493333pt;}
.y67{bottom:655.453333pt;}
.y3b{bottom:658.333333pt;}
.yb2{bottom:661.693333pt;}
.yc{bottom:665.053333pt;}
.y66{bottom:675.293333pt;}
.y85{bottom:676.733333pt;}
.y3a{bottom:678.173333pt;}
.yb1{bottom:680.093333pt;}
.ya{bottom:686.173333pt;}
.yb{bottom:689.533333pt;}
.y65{bottom:695.133333pt;}
.y39{bottom:698.013333pt;}
.yb0{bottom:698.493333pt;}
.y84{bottom:714.973333pt;}
.yaf{bottom:716.893333pt;}
.y38{bottom:717.853333pt;}
.y9{bottom:723.613333pt;}
.y64{bottom:734.813333pt;}
.yae{bottom:735.293333pt;}
.y37{bottom:737.693333pt;}
.y8{bottom:745.213333pt;}
.yad{bottom:753.693333pt;}
.y63{bottom:754.653333pt;}
.y36{bottom:757.533333pt;}
.y7{bottom:766.653333pt;}
.yac{bottom:772.093333pt;}
.y62{bottom:774.493333pt;}
.y35{bottom:777.373333pt;}
.yab{bottom:790.493333pt;}
.y61{bottom:794.333333pt;}
.y34{bottom:797.373333pt;}
.y6{bottom:806.653333pt;}
.yaa{bottom:808.893333pt;}
.y60{bottom:814.213333pt;}
.y33{bottom:817.253333pt;}
.y5{bottom:827.013333pt;}
.ya9{bottom:827.333333pt;}
.y5f{bottom:834.053333pt;}
.y32{bottom:837.093333pt;}
.y4{bottom:839.813333pt;}
.ya8{bottom:845.733333pt;}
.y3{bottom:852.293333pt;}
.y5e{bottom:854.053333pt;}
.y31{bottom:856.933333pt;}
.ya7{bottom:864.133333pt;}
.y5d{bottom:873.893333pt;}
.y30{bottom:876.773333pt;}
.ya6{bottom:882.533333pt;}
.y5c{bottom:893.733333pt;}
.y2f{bottom:896.613333pt;}
.ya5{bottom:900.933333pt;}
.y5b{bottom:913.573333pt;}
.y2e{bottom:916.453333pt;}
.ya4{bottom:919.333333pt;}
.y5a{bottom:933.413333pt;}
.y2d{bottom:936.293333pt;}
.ya3{bottom:937.733333pt;}
.y59{bottom:953.253333pt;}
.ya2{bottom:956.133333pt;}
.y58{bottom:973.093333pt;}
.y2c{bottom:974.533333pt;}
.y2b{bottom:992.933333pt;}
.h7{height:21.285000pt;}
.h8{height:32.250000pt;}
.h4{height:39.571875pt;}
.hb{height:42.084375pt;}
.h3{height:52.134375pt;}
.h2{height:57.787500pt;}
.ha{height:62.812500pt;}
.h6{height:64.500000pt;}
.hc{height:66.625000pt;}
.h9{height:67.080000pt;}
.h5{height:75.465000pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w3{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:112.191988pt;}
.x1{left:113.471988pt;}
.xa{left:118.911988pt;}
.x4{left:150.106655pt;}
.xb{left:160.666655pt;}
.x3{left:165.466655pt;}
.xd{left:175.386655pt;}
.x9{left:305.506655pt;}
.x6{left:313.026655pt;}
.x5{left:380.413322pt;}
.x7{left:522.813310pt;}
.x8{left:525.533322pt;}
.x2{left:555.973322pt;}
}




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