
    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_de7037bd47a5682492bfa71e.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_a9b5d6fc51bc6f28835c3eb5.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_14a1e1443c12508b342533ba.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_5122528fd7aae3f04a321a6d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a53438e14c8bdf60d3d881ab.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_d47ef30796fdcebdbc6c8e77.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:52.668000px;}
.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:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-3.189600px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._6{width:2.748960px;}
._7{width:4.694640px;}
._a{width:5.848464px;}
._9{width:7.304400px;}
._e{width:8.370000px;}
._14{width:9.834480px;}
._8{width:10.995840px;}
._f{width:12.474000px;}
._12{width:14.820000px;}
._16{width:15.924000px;}
._15{width:17.064000px;}
._d{width:19.170000px;}
._10{width:21.222000px;}
._11{width:22.236000px;}
._17{width:23.274000px;}
._13{width:24.678000px;}
._18{width:39.960000px;}
._19{width:49.458000px;}
._3{width:59.652000px;}
._4{width:76.500000px;}
._5{width:202.500000px;}
._2{width:1037.280000px;}
._b{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.fs5{font-size:126.000000px;}
.ye{bottom:-5.190000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y41{bottom:3.060000px;}
.y4{bottom:15.480000px;}
.y42{bottom:15.660000px;}
.y2{bottom:18.720000px;}
.y40{bottom:18.900000px;}
.y5{bottom:36.720000px;}
.y43{bottom:39.780000px;}
.y1{bottom:57.600000px;}
.y3f{bottom:60.660000px;}
.yb{bottom:72.435000px;}
.ya{bottom:92.235000px;}
.y3b{bottom:108.360000px;}
.y9{bottom:112.035000px;}
.y3a{bottom:126.180000px;}
.y7b{bottom:126.720000px;}
.y8{bottom:131.835000px;}
.y39{bottom:144.180000px;}
.y7a{bottom:144.540000px;}
.y38{bottom:162.000000px;}
.y7{bottom:162.255000px;}
.y79{bottom:162.360000px;}
.yb4{bottom:162.900000px;}
.y3e{bottom:171.000000px;}
.y37{bottom:179.820000px;}
.y78{bottom:180.180000px;}
.yb3{bottom:180.720000px;}
.y3d{bottom:188.820000px;}
.y36{bottom:197.640000px;}
.y77{bottom:198.180000px;}
.yb2{bottom:198.540000px;}
.y3c{bottom:206.670000px;}
.y76{bottom:216.030000px;}
.yb1{bottom:216.390000px;}
.y35{bottom:224.490000px;}
.yb0{bottom:234.210000px;}
.y75{bottom:235.830000px;}
.y34{bottom:242.490000px;}
.yaf{bottom:252.210000px;}
.y33{bottom:260.310000px;}
.y74{bottom:268.590000px;}
.yae{bottom:270.030000px;}
.y32{bottom:278.130000px;}
.y73{bottom:286.410000px;}
.yad{bottom:287.850000px;}
.y31{bottom:295.950000px;}
.y72{bottom:304.410000px;}
.yac{bottom:305.670000px;}
.y30{bottom:313.770000px;}
.y71{bottom:322.230000px;}
.yab{bottom:323.490000px;}
.y2f{bottom:333.750000px;}
.y70{bottom:340.050000px;}
.yaa{bottom:341.490000px;}
.y6f{bottom:357.870000px;}
.ya9{bottom:359.310000px;}
.y2e{bottom:367.770000px;}
.y6e{bottom:375.690000px;}
.ya8{bottom:377.130000px;}
.y6{bottom:379.620000px;}
.y6d{bottom:393.690000px;}
.y2d{bottom:394.050000px;}
.ya7{bottom:394.950000px;}
.yd{bottom:403.230000px;}
.y6c{bottom:411.510000px;}
.ya6{bottom:412.770000px;}
.y2c{bottom:420.330000px;}
.ya5{bottom:430.590000px;}
.yc{bottom:432.030000px;}
.y6b{bottom:438.330000px;}
.y2b{bottom:446.655000px;}
.ya4{bottom:448.635000px;}
.y6a{bottom:456.195000px;}
.ya3{bottom:466.455000px;}
.y2a{bottom:473.115000px;}
.y69{bottom:474.015000px;}
.ya2{bottom:484.275000px;}
.y68{bottom:491.835000px;}
.y29{bottom:499.395000px;}
.ya1{bottom:502.095000px;}
.y67{bottom:509.835000px;}
.ya0{bottom:519.915000px;}
.y28{bottom:525.675000px;}
.y66{bottom:536.655000px;}
.y9f{bottom:537.915000px;}
.y27{bottom:551.955000px;}
.y65{bottom:554.475000px;}
.y9e{bottom:555.735000px;}
.y64{bottom:572.295000px;}
.y9d{bottom:573.555000px;}
.y26{bottom:578.415000px;}
.y63{bottom:590.115000px;}
.y9c{bottom:591.375000px;}
.y25{bottom:604.695000px;}
.y62{bottom:608.115000px;}
.y9b{bottom:609.195000px;}
.y61{bottom:625.935000px;}
.y9a{bottom:627.015000px;}
.y24{bottom:630.975000px;}
.y60{bottom:643.755000px;}
.y99{bottom:645.015000px;}
.y5f{bottom:661.575000px;}
.y23{bottom:661.755000px;}
.y98{bottom:662.835000px;}
.y5e{bottom:679.425000px;}
.y97{bottom:680.685000px;}
.y22{bottom:683.565000px;}
.y5d{bottom:697.245000px;}
.y96{bottom:698.505000px;}
.y21{bottom:710.025000px;}
.y5c{bottom:715.245000px;}
.y95{bottom:716.325000px;}
.y5b{bottom:733.065000px;}
.y94{bottom:734.325000px;}
.y20{bottom:736.305000px;}
.y5a{bottom:750.885000px;}
.y93{bottom:752.145000px;}
.y1f{bottom:757.725000px;}
.y59{bottom:768.705000px;}
.y92{bottom:769.965000px;}
.y91{bottom:787.785000px;}
.y58{bottom:795.525000px;}
.y1e{bottom:799.305000px;}
.y90{bottom:805.605000px;}
.y57{bottom:813.345000px;}
.y8f{bottom:823.425000px;}
.y56{bottom:831.345000px;}
.y8e{bottom:841.425000px;}
.y1d{bottom:845.565000px;}
.y55{bottom:849.165000px;}
.y8d{bottom:859.245000px;}
.y54{bottom:866.985000px;}
.y1c{bottom:870.765000px;}
.y8c{bottom:877.065000px;}
.y53{bottom:884.805000px;}
.y1b{bottom:890.565000px;}
.y8b{bottom:894.885000px;}
.y52{bottom:904.605000px;}
.y1a{bottom:911.130000px;}
.y8a{bottom:912.750000px;}
.y89{bottom:930.570000px;}
.y19{bottom:931.830000px;}
.y51{bottom:937.590000px;}
.y88{bottom:948.570000px;}
.y18{bottom:952.170000px;}
.y50{bottom:955.410000px;}
.y87{bottom:966.390000px;}
.y4f{bottom:973.230000px;}
.y86{bottom:984.210000px;}
.y4e{bottom:991.050000px;}
.y17{bottom:993.930000px;}
.y85{bottom:1002.030000px;}
.y16{bottom:1007.790000px;}
.y4d{bottom:1008.870000px;}
.y15{bottom:1021.650000px;}
.y84{bottom:1021.830000px;}
.y4c{bottom:1026.870000px;}
.y14{bottom:1035.510000px;}
.y4b{bottom:1053.690000px;}
.y13{bottom:1054.050000px;}
.y83{bottom:1054.770000px;}
.y4a{bottom:1071.510000px;}
.y82{bottom:1072.590000px;}
.y12{bottom:1083.210000px;}
.y49{bottom:1089.330000px;}
.y81{bottom:1090.410000px;}
.y80{bottom:1108.230000px;}
.y11{bottom:1110.930000px;}
.y48{bottom:1116.150000px;}
.y7f{bottom:1126.050000px;}
.y47{bottom:1133.970000px;}
.y10{bottom:1138.830000px;}
.y7e{bottom:1144.050000px;}
.y46{bottom:1161.000000px;}
.y7d{bottom:1161.900000px;}
.yf{bottom:1170.540000px;}
.y45{bottom:1178.820000px;}
.y7c{bottom:1190.700000px;}
.y44{bottom:1196.640000px;}
.h2{height:30.955500px;}
.h12{height:31.135500px;}
.hd{height:40.985156px;}
.h3{height:52.998047px;}
.h13{height:55.503491px;}
.h7{height:58.621992px;}
.he{height:58.651172px;}
.h8{height:58.763250px;}
.h9{height:60.226875px;}
.hf{height:65.010937px;}
.h4{height:65.884219px;}
.h11{height:66.757500px;}
.h6{height:78.367500px;}
.h10{height:82.676953px;}
.hb{height:84.898125px;}
.hc{height:90.703125px;}
.ha{height:126.984375px;}
.h5{height:192.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x7{left:10.800000px;}
.x6{left:39.240000px;}
.x1{left:45.364500px;}
.x8{left:50.040000px;}
.x5{left:54.000000px;}
.xf{left:181.290000px;}
.x2{left:222.370500px;}
.xa{left:270.615000px;}
.xc{left:272.595000px;}
.xd{left:296.535000px;}
.x12{left:324.075000px;}
.xb{left:364.395000px;}
.xe{left:378.795000px;}
.x10{left:393.375000px;}
.x11{left:408.675000px;}
.x9{left:446.505000px;}
.x13{left:473.505000px;}
.x14{left:500.505000px;}
.x15{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:46.816000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-2.835200pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._6{width:2.443520pt;}
._7{width:4.173013pt;}
._a{width:5.198635pt;}
._9{width:6.492800pt;}
._e{width:7.440000pt;}
._14{width:8.741760pt;}
._8{width:9.774080pt;}
._f{width:11.088000pt;}
._12{width:13.173333pt;}
._16{width:14.154667pt;}
._15{width:15.168000pt;}
._d{width:17.040000pt;}
._10{width:18.864000pt;}
._11{width:19.765333pt;}
._17{width:20.688000pt;}
._13{width:21.936000pt;}
._18{width:35.520000pt;}
._19{width:43.962667pt;}
._3{width:53.024000pt;}
._4{width:68.000000pt;}
._5{width:180.000000pt;}
._2{width:922.026667pt;}
._b{width:1088.266667pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.fs5{font-size:112.000000pt;}
.ye{bottom:-4.613333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y41{bottom:2.720000pt;}
.y4{bottom:13.760000pt;}
.y42{bottom:13.920000pt;}
.y2{bottom:16.640000pt;}
.y40{bottom:16.800000pt;}
.y5{bottom:32.640000pt;}
.y43{bottom:35.360000pt;}
.y1{bottom:51.200000pt;}
.y3f{bottom:53.920000pt;}
.yb{bottom:64.386667pt;}
.ya{bottom:81.986667pt;}
.y3b{bottom:96.320000pt;}
.y9{bottom:99.586667pt;}
.y3a{bottom:112.160000pt;}
.y7b{bottom:112.640000pt;}
.y8{bottom:117.186667pt;}
.y39{bottom:128.160000pt;}
.y7a{bottom:128.480000pt;}
.y38{bottom:144.000000pt;}
.y7{bottom:144.226667pt;}
.y79{bottom:144.320000pt;}
.yb4{bottom:144.800000pt;}
.y3e{bottom:152.000000pt;}
.y37{bottom:159.840000pt;}
.y78{bottom:160.160000pt;}
.yb3{bottom:160.640000pt;}
.y3d{bottom:167.840000pt;}
.y36{bottom:175.680000pt;}
.y77{bottom:176.160000pt;}
.yb2{bottom:176.480000pt;}
.y3c{bottom:183.706667pt;}
.y76{bottom:192.026667pt;}
.yb1{bottom:192.346667pt;}
.y35{bottom:199.546667pt;}
.yb0{bottom:208.186667pt;}
.y75{bottom:209.626667pt;}
.y34{bottom:215.546667pt;}
.yaf{bottom:224.186667pt;}
.y33{bottom:231.386667pt;}
.y74{bottom:238.746667pt;}
.yae{bottom:240.026667pt;}
.y32{bottom:247.226667pt;}
.y73{bottom:254.586667pt;}
.yad{bottom:255.866667pt;}
.y31{bottom:263.066667pt;}
.y72{bottom:270.586667pt;}
.yac{bottom:271.706667pt;}
.y30{bottom:278.906667pt;}
.y71{bottom:286.426667pt;}
.yab{bottom:287.546667pt;}
.y2f{bottom:296.666667pt;}
.y70{bottom:302.266667pt;}
.yaa{bottom:303.546667pt;}
.y6f{bottom:318.106667pt;}
.ya9{bottom:319.386667pt;}
.y2e{bottom:326.906667pt;}
.y6e{bottom:333.946667pt;}
.ya8{bottom:335.226667pt;}
.y6{bottom:337.440000pt;}
.y6d{bottom:349.946667pt;}
.y2d{bottom:350.266667pt;}
.ya7{bottom:351.066667pt;}
.yd{bottom:358.426667pt;}
.y6c{bottom:365.786667pt;}
.ya6{bottom:366.906667pt;}
.y2c{bottom:373.626667pt;}
.ya5{bottom:382.746667pt;}
.yc{bottom:384.026667pt;}
.y6b{bottom:389.626667pt;}
.y2b{bottom:397.026667pt;}
.ya4{bottom:398.786667pt;}
.y6a{bottom:405.506667pt;}
.ya3{bottom:414.626667pt;}
.y2a{bottom:420.546667pt;}
.y69{bottom:421.346667pt;}
.ya2{bottom:430.466667pt;}
.y68{bottom:437.186667pt;}
.y29{bottom:443.906667pt;}
.ya1{bottom:446.306667pt;}
.y67{bottom:453.186667pt;}
.ya0{bottom:462.146667pt;}
.y28{bottom:467.266667pt;}
.y66{bottom:477.026667pt;}
.y9f{bottom:478.146667pt;}
.y27{bottom:490.626667pt;}
.y65{bottom:492.866667pt;}
.y9e{bottom:493.986667pt;}
.y64{bottom:508.706667pt;}
.y9d{bottom:509.826667pt;}
.y26{bottom:514.146667pt;}
.y63{bottom:524.546667pt;}
.y9c{bottom:525.666667pt;}
.y25{bottom:537.506667pt;}
.y62{bottom:540.546667pt;}
.y9b{bottom:541.506667pt;}
.y61{bottom:556.386667pt;}
.y9a{bottom:557.346667pt;}
.y24{bottom:560.866667pt;}
.y60{bottom:572.226667pt;}
.y99{bottom:573.346667pt;}
.y5f{bottom:588.066667pt;}
.y23{bottom:588.226667pt;}
.y98{bottom:589.186667pt;}
.y5e{bottom:603.933333pt;}
.y97{bottom:605.053333pt;}
.y22{bottom:607.613333pt;}
.y5d{bottom:619.773333pt;}
.y96{bottom:620.893333pt;}
.y21{bottom:631.133333pt;}
.y5c{bottom:635.773333pt;}
.y95{bottom:636.733333pt;}
.y5b{bottom:651.613333pt;}
.y94{bottom:652.733333pt;}
.y20{bottom:654.493333pt;}
.y5a{bottom:667.453333pt;}
.y93{bottom:668.573333pt;}
.y1f{bottom:673.533333pt;}
.y59{bottom:683.293333pt;}
.y92{bottom:684.413333pt;}
.y91{bottom:700.253333pt;}
.y58{bottom:707.133333pt;}
.y1e{bottom:710.493333pt;}
.y90{bottom:716.093333pt;}
.y57{bottom:722.973333pt;}
.y8f{bottom:731.933333pt;}
.y56{bottom:738.973333pt;}
.y8e{bottom:747.933333pt;}
.y1d{bottom:751.613333pt;}
.y55{bottom:754.813333pt;}
.y8d{bottom:763.773333pt;}
.y54{bottom:770.653333pt;}
.y1c{bottom:774.013333pt;}
.y8c{bottom:779.613333pt;}
.y53{bottom:786.493333pt;}
.y1b{bottom:791.613333pt;}
.y8b{bottom:795.453333pt;}
.y52{bottom:804.093333pt;}
.y1a{bottom:809.893333pt;}
.y8a{bottom:811.333333pt;}
.y89{bottom:827.173333pt;}
.y19{bottom:828.293333pt;}
.y51{bottom:833.413333pt;}
.y88{bottom:843.173333pt;}
.y18{bottom:846.373333pt;}
.y50{bottom:849.253333pt;}
.y87{bottom:859.013333pt;}
.y4f{bottom:865.093333pt;}
.y86{bottom:874.853333pt;}
.y4e{bottom:880.933333pt;}
.y17{bottom:883.493333pt;}
.y85{bottom:890.693333pt;}
.y16{bottom:895.813333pt;}
.y4d{bottom:896.773333pt;}
.y15{bottom:908.133333pt;}
.y84{bottom:908.293333pt;}
.y4c{bottom:912.773333pt;}
.y14{bottom:920.453333pt;}
.y4b{bottom:936.613333pt;}
.y13{bottom:936.933333pt;}
.y83{bottom:937.573333pt;}
.y4a{bottom:952.453333pt;}
.y82{bottom:953.413333pt;}
.y12{bottom:962.853333pt;}
.y49{bottom:968.293333pt;}
.y81{bottom:969.253333pt;}
.y80{bottom:985.093333pt;}
.y11{bottom:987.493333pt;}
.y48{bottom:992.133333pt;}
.y7f{bottom:1000.933333pt;}
.y47{bottom:1007.973333pt;}
.y10{bottom:1012.293333pt;}
.y7e{bottom:1016.933333pt;}
.y46{bottom:1032.000000pt;}
.y7d{bottom:1032.800000pt;}
.yf{bottom:1040.480000pt;}
.y45{bottom:1047.840000pt;}
.y7c{bottom:1058.400000pt;}
.y44{bottom:1063.680000pt;}
.h2{height:27.516000pt;}
.h12{height:27.676000pt;}
.hd{height:36.431250pt;}
.h3{height:47.109375pt;}
.h13{height:49.336436pt;}
.h7{height:52.108438pt;}
.he{height:52.134375pt;}
.h8{height:52.234000pt;}
.h9{height:53.535000pt;}
.hf{height:57.787500pt;}
.h4{height:58.563750pt;}
.h11{height:59.340000pt;}
.h6{height:69.660000pt;}
.h10{height:73.490625pt;}
.hb{height:75.465000pt;}
.hc{height:80.625000pt;}
.ha{height:112.875000pt;}
.h5{height:171.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x7{left:9.600000pt;}
.x6{left:34.880000pt;}
.x1{left:40.324000pt;}
.x8{left:44.480000pt;}
.x5{left:48.000000pt;}
.xf{left:161.146667pt;}
.x2{left:197.662667pt;}
.xa{left:240.546667pt;}
.xc{left:242.306667pt;}
.xd{left:263.586667pt;}
.x12{left:288.066667pt;}
.xb{left:323.906667pt;}
.xe{left:336.706667pt;}
.x10{left:349.666667pt;}
.x11{left:363.266667pt;}
.x9{left:396.893333pt;}
.x13{left:420.893333pt;}
.x14{left:444.893333pt;}
.x15{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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