
    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_3df98dfaa7a6203a74974516.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_393afbfb50d55057acab03e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_2c688919f8b5cf01f2d77013.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_400b67eb9d67a3b830394b33.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_632192a46fbcee2de2b2f1f4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_c15798083a4e90ded507c436.woff')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_5d1465ca36dc32941869deb7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902344;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;}
.ls17{letter-spacing:-1.008000px;}
.ls21{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000001px;}
.ls1f{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.648000px;}
.lsf{letter-spacing:1.368000px;}
.ls4{letter-spacing:2.088000px;}
.ls1d{letter-spacing:2.808000px;}
.ls12{letter-spacing:4.248000px;}
.ls1{letter-spacing:5.148000px;}
.ls1c{letter-spacing:5.688000px;}
.lsb{letter-spacing:6.408000px;}
.ls13{letter-spacing:7.848000px;}
.ls19{letter-spacing:10.728000px;}
.ls9{letter-spacing:11.448000px;}
.ls20{letter-spacing:12.168000px;}
.ls18{letter-spacing:13.608000px;}
.lsc{letter-spacing:14.328000px;}
.ls5{letter-spacing:15.768000px;}
.ls14{letter-spacing:16.488000px;}
.ls22{letter-spacing:17.208000px;}
.ls1a{letter-spacing:18.648000px;}
.ls10{letter-spacing:19.368000px;}
.ls1e{letter-spacing:21.528000px;}
.lse{letter-spacing:22.968000px;}
.ls3{letter-spacing:25.128000px;}
.ls2{letter-spacing:27.288000px;}
.ls23{letter-spacing:28.728000px;}
.ls24{letter-spacing:29.448000px;}
.ls11{letter-spacing:44.568000px;}
.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;}
}
.ws5{word-spacing:-20.448000px;}
.ws7{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.232001px;}
.ws2{word-spacing:-20.232000px;}
.ws4{word-spacing:-20.088000px;}
.ws6{word-spacing:-17.928000px;}
.ws0{word-spacing:-17.784000px;}
.ws3{word-spacing:0.000000px;}
._25{margin-left:-5.688000px;}
._b{margin-left:-4.608000px;}
._13{margin-left:-3.528000px;}
._19{margin-left:-2.527440px;}
._3{margin-left:-1.263600px;}
._0{width:1.135440px;}
._f{width:2.199360px;}
._c{width:3.591600px;}
._4{width:4.896000px;}
._5{width:5.955600px;}
._7{width:6.984000px;}
._6{width:8.064000px;}
._16{width:9.151200px;}
._15{width:10.440000px;}
._26{width:11.448000px;}
._11{width:12.528000px;}
._14{width:14.218800px;}
._12{width:15.684000px;}
._e{width:16.827600px;}
._d{width:17.976000px;}
._1f{width:19.080000px;}
._8{width:21.384000px;}
._1a{width:23.184000px;}
._a{width:24.852000px;}
._9{width:26.352000px;}
._10{width:27.897120px;}
._17{width:29.822880px;}
._1c{width:30.960000px;}
._1b{width:32.184000px;}
._18{width:33.768000px;}
._20{width:35.640000px;}
._23{width:38.088000px;}
._1d{width:42.408000px;}
._21{width:43.776000px;}
._22{width:45.144000px;}
._1e{width:56.880000px;}
._24{width:63.360000px;}
._1{width:387.642000px;}
._2{width:564.348720px;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:46.656000px;}
.y5{bottom:46.836000px;}
.y2a{bottom:63.396000px;}
.y4{bottom:67.356000px;}
.y29{bottom:82.836000px;}
.y3{bottom:84.096000px;}
.y97{bottom:102.636000px;}
.y2{bottom:103.536000px;}
.y4e{bottom:112.896000px;}
.y96{bottom:132.876000px;}
.y4d{bottom:143.136000px;}
.y26{bottom:146.016000px;}
.y8a{bottom:150.510000px;}
.y6e{bottom:151.950000px;}
.y95{bottom:163.110000px;}
.y4c{bottom:173.370000px;}
.y25{bottom:176.250000px;}
.y89{bottom:180.750000px;}
.y6d{bottom:182.010000px;}
.y94{bottom:193.350000px;}
.y4b{bottom:198.570000px;}
.y24{bottom:206.310000px;}
.y88{bottom:210.990000px;}
.y6c{bottom:212.250000px;}
.y93{bottom:223.590000px;}
.y4a{bottom:223.770000px;}
.y23{bottom:236.550000px;}
.y87{bottom:241.230000px;}
.y6b{bottom:242.670000px;}
.y92{bottom:253.830000px;}
.y49{bottom:254.010000px;}
.y22{bottom:266.970000px;}
.y86{bottom:271.470000px;}
.y6a{bottom:273.135000px;}
.y91{bottom:283.935000px;}
.y48{bottom:284.295000px;}
.y21{bottom:297.435000px;}
.y85{bottom:301.575000px;}
.y69{bottom:303.555000px;}
.y47{bottom:314.355000px;}
.y90{bottom:314.535000px;}
.y20{bottom:328.035000px;}
.y84{bottom:331.815000px;}
.y68{bottom:333.975000px;}
.y46{bottom:344.595000px;}
.y8f{bottom:344.775000px;}
.y1f{bottom:358.275000px;}
.y83{bottom:362.415000px;}
.y67{bottom:364.575000px;}
.y45{bottom:374.835000px;}
.y1e{bottom:388.335000px;}
.y82{bottom:392.655000px;}
.y66{bottom:394.815000px;}
.y44{bottom:405.075000px;}
.y1d{bottom:418.575000px;}
.y81{bottom:422.895000px;}
.y65{bottom:425.055000px;}
.y43{bottom:435.315000px;}
.y1c{bottom:448.815000px;}
.y80{bottom:452.955000px;}
.y64{bottom:455.295000px;}
.y42{bottom:465.555000px;}
.y1b{bottom:478.875000px;}
.y7f{bottom:483.375000px;}
.y63{bottom:485.355000px;}
.y41{bottom:495.795000px;}
.y1a{bottom:509.475000px;}
.y7e{bottom:513.435000px;}
.y62{bottom:515.595000px;}
.y40{bottom:526.035000px;}
.y19{bottom:539.715000px;}
.y7d{bottom:543.855000px;}
.y61{bottom:545.835000px;}
.y3f{bottom:556.125000px;}
.y8e{bottom:556.305000px;}
.y18{bottom:569.805000px;}
.y7c{bottom:574.485000px;}
.y60{bottom:576.105000px;}
.y3e{bottom:586.365000px;}
.y8d{bottom:586.545000px;}
.y17{bottom:600.225000px;}
.y7b{bottom:604.545000px;}
.y5f{bottom:606.345000px;}
.y3d{bottom:616.605000px;}
.y16{bottom:630.825000px;}
.y7a{bottom:634.965000px;}
.y5e{bottom:636.585000px;}
.y3c{bottom:646.845000px;}
.y15{bottom:661.065000px;}
.y79{bottom:665.385000px;}
.y5d{bottom:666.825000px;}
.y3b{bottom:676.905000px;}
.y8c{bottom:677.085000px;}
.y14{bottom:691.125000px;}
.y78{bottom:695.805000px;}
.y5c{bottom:697.065000px;}
.y9e{bottom:699.765000px;}
.y3a{bottom:707.325000px;}
.y13{bottom:721.545000px;}
.y77{bottom:726.225000px;}
.y5b{bottom:727.125000px;}
.y9d{bottom:730.005000px;}
.y39{bottom:737.565000px;}
.y12{bottom:752.145000px;}
.y76{bottom:756.825000px;}
.y5a{bottom:757.365000px;}
.y9c{bottom:760.245000px;}
.y38{bottom:767.805000px;}
.y11{bottom:782.565000px;}
.y75{bottom:787.245000px;}
.y59{bottom:787.605000px;}
.y9b{bottom:790.485000px;}
.y37{bottom:798.045000px;}
.y10{bottom:813.165000px;}
.y74{bottom:817.665000px;}
.y58{bottom:817.845000px;}
.y9a{bottom:820.725000px;}
.y36{bottom:828.105000px;}
.yf{bottom:843.270000px;}
.y57{bottom:848.130000px;}
.y99{bottom:849.390000px;}
.y35{bottom:858.390000px;}
.ye{bottom:873.510000px;}
.y56{bottom:878.190000px;}
.y98{bottom:878.550000px;}
.y34{bottom:888.630000px;}
.yd{bottom:903.750000px;}
.y73{bottom:908.610000px;}
.y55{bottom:908.790000px;}
.y33{bottom:918.870000px;}
.yc{bottom:933.990000px;}
.y54{bottom:939.030000px;}
.y32{bottom:949.110000px;}
.yb{bottom:964.230000px;}
.y53{bottom:969.270000px;}
.y31{bottom:979.350000px;}
.ya{bottom:994.470000px;}
.y52{bottom:999.330000px;}
.y72{bottom:999.510000px;}
.y8b{bottom:1004.550000px;}
.y30{bottom:1009.590000px;}
.y9{bottom:1024.710000px;}
.y71{bottom:1029.570000px;}
.y51{bottom:1029.750000px;}
.y2f{bottom:1039.830000px;}
.y8{bottom:1054.950000px;}
.y70{bottom:1059.810000px;}
.y50{bottom:1059.990000px;}
.y2e{bottom:1069.890000px;}
.y7{bottom:1085.010000px;}
.y4f{bottom:1090.050000px;}
.y2d{bottom:1095.090000px;}
.y6{bottom:1117.590000px;}
.y6f{bottom:1120.110000px;}
.y2c{bottom:1120.290000px;}
.y28{bottom:1190.880000px;}
.y1{bottom:1204.200000px;}
.y27{bottom:1207.800000px;}
.h6{height:40.961602px;}
.h3{height:50.743477px;}
.h7{height:56.245781px;}
.h5{height:61.136719px;}
.h4{height:71.529961px;}
.h2{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x2{left:181.650000px;}
.x3{left:331.995000px;}
.x8{left:545.325000px;}
.x7{left:551.985000px;}
.x6{left:633.885000px;}
.x9{left:638.565000px;}
.x5{left:688.830000px;}
.x4{left:808.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000001pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.576000pt;}
.lsf{letter-spacing:1.216000pt;}
.ls4{letter-spacing:1.856000pt;}
.ls1d{letter-spacing:2.496000pt;}
.ls12{letter-spacing:3.776000pt;}
.ls1{letter-spacing:4.576000pt;}
.ls1c{letter-spacing:5.056000pt;}
.lsb{letter-spacing:5.696000pt;}
.ls13{letter-spacing:6.976000pt;}
.ls19{letter-spacing:9.536000pt;}
.ls9{letter-spacing:10.176000pt;}
.ls20{letter-spacing:10.816000pt;}
.ls18{letter-spacing:12.096000pt;}
.lsc{letter-spacing:12.736000pt;}
.ls5{letter-spacing:14.016000pt;}
.ls14{letter-spacing:14.656000pt;}
.ls22{letter-spacing:15.296000pt;}
.ls1a{letter-spacing:16.576000pt;}
.ls10{letter-spacing:17.216000pt;}
.ls1e{letter-spacing:19.136000pt;}
.lse{letter-spacing:20.416000pt;}
.ls3{letter-spacing:22.336000pt;}
.ls2{letter-spacing:24.256000pt;}
.ls23{letter-spacing:25.536000pt;}
.ls24{letter-spacing:26.176000pt;}
.ls11{letter-spacing:39.616000pt;}
.ws5{word-spacing:-18.176000pt;}
.ws7{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.984001pt;}
.ws2{word-spacing:-17.984000pt;}
.ws4{word-spacing:-17.856000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws0{word-spacing:-15.808000pt;}
.ws3{word-spacing:0.000000pt;}
._25{margin-left:-5.056000pt;}
._b{margin-left:-4.096000pt;}
._13{margin-left:-3.136000pt;}
._19{margin-left:-2.246613pt;}
._3{margin-left:-1.123200pt;}
._0{width:1.009280pt;}
._f{width:1.954987pt;}
._c{width:3.192533pt;}
._4{width:4.352000pt;}
._5{width:5.293867pt;}
._7{width:6.208000pt;}
._6{width:7.168000pt;}
._16{width:8.134400pt;}
._15{width:9.280000pt;}
._26{width:10.176000pt;}
._11{width:11.136000pt;}
._14{width:12.638933pt;}
._12{width:13.941333pt;}
._e{width:14.957867pt;}
._d{width:15.978667pt;}
._1f{width:16.960000pt;}
._8{width:19.008000pt;}
._1a{width:20.608000pt;}
._a{width:22.090667pt;}
._9{width:23.424000pt;}
._10{width:24.797440pt;}
._17{width:26.509227pt;}
._1c{width:27.520000pt;}
._1b{width:28.608000pt;}
._18{width:30.016000pt;}
._20{width:31.680000pt;}
._23{width:33.856000pt;}
._1d{width:37.696000pt;}
._21{width:38.912000pt;}
._22{width:40.128000pt;}
._1e{width:50.560000pt;}
._24{width:56.320000pt;}
._1{width:344.570667pt;}
._2{width:501.643307pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:41.472000pt;}
.y5{bottom:41.632000pt;}
.y2a{bottom:56.352000pt;}
.y4{bottom:59.872000pt;}
.y29{bottom:73.632000pt;}
.y3{bottom:74.752000pt;}
.y97{bottom:91.232000pt;}
.y2{bottom:92.032000pt;}
.y4e{bottom:100.352000pt;}
.y96{bottom:118.112000pt;}
.y4d{bottom:127.232000pt;}
.y26{bottom:129.792000pt;}
.y8a{bottom:133.786667pt;}
.y6e{bottom:135.066667pt;}
.y95{bottom:144.986667pt;}
.y4c{bottom:154.106667pt;}
.y25{bottom:156.666667pt;}
.y89{bottom:160.666667pt;}
.y6d{bottom:161.786667pt;}
.y94{bottom:171.866667pt;}
.y4b{bottom:176.506667pt;}
.y24{bottom:183.386667pt;}
.y88{bottom:187.546667pt;}
.y6c{bottom:188.666667pt;}
.y93{bottom:198.746667pt;}
.y4a{bottom:198.906667pt;}
.y23{bottom:210.266667pt;}
.y87{bottom:214.426667pt;}
.y6b{bottom:215.706667pt;}
.y92{bottom:225.626667pt;}
.y49{bottom:225.786667pt;}
.y22{bottom:237.306667pt;}
.y86{bottom:241.306667pt;}
.y6a{bottom:242.786667pt;}
.y91{bottom:252.386667pt;}
.y48{bottom:252.706667pt;}
.y21{bottom:264.386667pt;}
.y85{bottom:268.066667pt;}
.y69{bottom:269.826667pt;}
.y47{bottom:279.426667pt;}
.y90{bottom:279.586667pt;}
.y20{bottom:291.586667pt;}
.y84{bottom:294.946667pt;}
.y68{bottom:296.866667pt;}
.y46{bottom:306.306667pt;}
.y8f{bottom:306.466667pt;}
.y1f{bottom:318.466667pt;}
.y83{bottom:322.146667pt;}
.y67{bottom:324.066667pt;}
.y45{bottom:333.186667pt;}
.y1e{bottom:345.186667pt;}
.y82{bottom:349.026667pt;}
.y66{bottom:350.946667pt;}
.y44{bottom:360.066667pt;}
.y1d{bottom:372.066667pt;}
.y81{bottom:375.906667pt;}
.y65{bottom:377.826667pt;}
.y43{bottom:386.946667pt;}
.y1c{bottom:398.946667pt;}
.y80{bottom:402.626667pt;}
.y64{bottom:404.706667pt;}
.y42{bottom:413.826667pt;}
.y1b{bottom:425.666667pt;}
.y7f{bottom:429.666667pt;}
.y63{bottom:431.426667pt;}
.y41{bottom:440.706667pt;}
.y1a{bottom:452.866667pt;}
.y7e{bottom:456.386667pt;}
.y62{bottom:458.306667pt;}
.y40{bottom:467.586667pt;}
.y19{bottom:479.746667pt;}
.y7d{bottom:483.426667pt;}
.y61{bottom:485.186667pt;}
.y3f{bottom:494.333333pt;}
.y8e{bottom:494.493333pt;}
.y18{bottom:506.493333pt;}
.y7c{bottom:510.653333pt;}
.y60{bottom:512.093333pt;}
.y3e{bottom:521.213333pt;}
.y8d{bottom:521.373333pt;}
.y17{bottom:533.533333pt;}
.y7b{bottom:537.373333pt;}
.y5f{bottom:538.973333pt;}
.y3d{bottom:548.093333pt;}
.y16{bottom:560.733333pt;}
.y7a{bottom:564.413333pt;}
.y5e{bottom:565.853333pt;}
.y3c{bottom:574.973333pt;}
.y15{bottom:587.613333pt;}
.y79{bottom:591.453333pt;}
.y5d{bottom:592.733333pt;}
.y3b{bottom:601.693333pt;}
.y8c{bottom:601.853333pt;}
.y14{bottom:614.333333pt;}
.y78{bottom:618.493333pt;}
.y5c{bottom:619.613333pt;}
.y9e{bottom:622.013333pt;}
.y3a{bottom:628.733333pt;}
.y13{bottom:641.373333pt;}
.y77{bottom:645.533333pt;}
.y5b{bottom:646.333333pt;}
.y9d{bottom:648.893333pt;}
.y39{bottom:655.613333pt;}
.y12{bottom:668.573333pt;}
.y76{bottom:672.733333pt;}
.y5a{bottom:673.213333pt;}
.y9c{bottom:675.773333pt;}
.y38{bottom:682.493333pt;}
.y11{bottom:695.613333pt;}
.y75{bottom:699.773333pt;}
.y59{bottom:700.093333pt;}
.y9b{bottom:702.653333pt;}
.y37{bottom:709.373333pt;}
.y10{bottom:722.813333pt;}
.y74{bottom:726.813333pt;}
.y58{bottom:726.973333pt;}
.y9a{bottom:729.533333pt;}
.y36{bottom:736.093333pt;}
.yf{bottom:749.573333pt;}
.y57{bottom:753.893333pt;}
.y99{bottom:755.013333pt;}
.y35{bottom:763.013333pt;}
.ye{bottom:776.453333pt;}
.y56{bottom:780.613333pt;}
.y98{bottom:780.933333pt;}
.y34{bottom:789.893333pt;}
.yd{bottom:803.333333pt;}
.y73{bottom:807.653333pt;}
.y55{bottom:807.813333pt;}
.y33{bottom:816.773333pt;}
.yc{bottom:830.213333pt;}
.y54{bottom:834.693333pt;}
.y32{bottom:843.653333pt;}
.yb{bottom:857.093333pt;}
.y53{bottom:861.573333pt;}
.y31{bottom:870.533333pt;}
.ya{bottom:883.973333pt;}
.y52{bottom:888.293333pt;}
.y72{bottom:888.453333pt;}
.y8b{bottom:892.933333pt;}
.y30{bottom:897.413333pt;}
.y9{bottom:910.853333pt;}
.y71{bottom:915.173333pt;}
.y51{bottom:915.333333pt;}
.y2f{bottom:924.293333pt;}
.y8{bottom:937.733333pt;}
.y70{bottom:942.053333pt;}
.y50{bottom:942.213333pt;}
.y2e{bottom:951.013333pt;}
.y7{bottom:964.453333pt;}
.y4f{bottom:968.933333pt;}
.y2d{bottom:973.413333pt;}
.y6{bottom:993.413333pt;}
.y6f{bottom:995.653333pt;}
.y2c{bottom:995.813333pt;}
.y28{bottom:1058.560000pt;}
.y1{bottom:1070.400000pt;}
.y27{bottom:1073.600000pt;}
.h6{height:36.410312pt;}
.h3{height:45.105313pt;}
.h7{height:49.996250pt;}
.h5{height:54.343750pt;}
.h4{height:63.582187pt;}
.h2{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x2{left:161.466667pt;}
.x3{left:295.106667pt;}
.x8{left:484.733333pt;}
.x7{left:490.653333pt;}
.x6{left:563.453333pt;}
.x9{left:567.613333pt;}
.x5{left:612.293333pt;}
.x4{left:718.373333pt;}
}




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