
    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_d367135a08cef2faceb996d3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_4c749605260e04f71d81f5b6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_d0df3f6592a407e55da53019.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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;}
.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:23.760000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:11.466720px;}
.ls5{letter-spacing:34.740000px;}
.ls6{letter-spacing:41.682720px;}
.ls3{letter-spacing:64.026720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._5{width:2.373600px;}
._2{width:3.960960px;}
._6{width:5.781600px;}
._b{width:6.790320px;}
._9{width:7.880640px;}
._a{width:9.037920px;}
._e{width:10.115520px;}
._8{width:11.832480px;}
._7{width:12.967920px;}
._d{width:16.589040px;}
._c{width:18.585360px;}
._10{width:19.681680px;}
._f{width:20.989200px;}
._12{width:35.352720px;}
._11{width:36.503280px;}
._4{width:85.656000px;}
._13{width:142.040880px;}
._3{width:687.306000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:14.760000px;}
.y7b{bottom:15.660000px;}
.y76{bottom:15.840000px;}
.yc{bottom:36.000000px;}
.yb{bottom:54.540000px;}
.ya{bottom:70.056000px;}
.y41{bottom:111.636000px;}
.y9d{bottom:127.656000px;}
.y40{bottom:129.996000px;}
.y9c{bottom:146.016000px;}
.y3f{bottom:147.276000px;}
.y9b{bottom:163.290000px;}
.y3e{bottom:164.550000px;}
.y9a{bottom:180.390000px;}
.y3d{bottom:181.830000px;}
.y72{bottom:185.250000px;}
.y99{bottom:197.670000px;}
.y3c{bottom:198.930000px;}
.y71{bottom:202.530000px;}
.y98{bottom:214.950000px;}
.y3b{bottom:216.210000px;}
.yc8{bottom:217.470000px;}
.y70{bottom:220.710000px;}
.y97{bottom:232.230000px;}
.y3a{bottom:233.490000px;}
.yc7{bottom:234.750000px;}
.y6f{bottom:239.070000px;}
.y96{bottom:249.510000px;}
.y39{bottom:250.770000px;}
.yc6{bottom:252.030000px;}
.y6e{bottom:256.350000px;}
.y95{bottom:267.870000px;}
.y38{bottom:268.050000px;}
.yc5{bottom:269.310000px;}
.y6d{bottom:274.710000px;}
.y37{bottom:285.330000px;}
.y94{bottom:286.050000px;}
.yc4{bottom:286.590000px;}
.y6c{bottom:291.990000px;}
.y36{bottom:302.430000px;}
.yc3{bottom:303.690000px;}
.y93{bottom:304.410000px;}
.y6b{bottom:309.090000px;}
.y35{bottom:319.710000px;}
.yc2{bottom:320.970000px;}
.y92{bottom:321.690000px;}
.y6a{bottom:327.450000px;}
.y34{bottom:337.035000px;}
.yc1{bottom:338.295000px;}
.y91{bottom:339.015000px;}
.y69{bottom:345.855000px;}
.y33{bottom:354.315000px;}
.yc0{bottom:355.575000px;}
.y90{bottom:356.295000px;}
.y68{bottom:363.135000px;}
.y32{bottom:371.595000px;}
.ybf{bottom:372.855000px;}
.y8f{bottom:373.395000px;}
.y67{bottom:381.495000px;}
.y31{bottom:388.695000px;}
.ybe{bottom:390.135000px;}
.y8e{bottom:390.675000px;}
.y66{bottom:398.775000px;}
.y30{bottom:405.975000px;}
.ybd{bottom:407.235000px;}
.y8d{bottom:407.955000px;}
.y65{bottom:416.955000px;}
.y2f{bottom:423.255000px;}
.ybc{bottom:424.515000px;}
.y8c{bottom:425.235000px;}
.y64{bottom:434.235000px;}
.y2e{bottom:440.535000px;}
.ybb{bottom:441.795000px;}
.y8b{bottom:442.515000px;}
.y63{bottom:451.515000px;}
.y2d{bottom:457.815000px;}
.yba{bottom:459.075000px;}
.y8a{bottom:459.795000px;}
.y62{bottom:468.795000px;}
.y2c{bottom:475.095000px;}
.yb9{bottom:476.355000px;}
.y89{bottom:476.895000px;}
.y61{bottom:486.075000px;}
.y2b{bottom:492.195000px;}
.yb8{bottom:493.635000px;}
.y88{bottom:494.175000px;}
.y60{bottom:503.175000px;}
.y2a{bottom:509.475000px;}
.yb7{bottom:510.735000px;}
.y87{bottom:511.455000px;}
.y5f{bottom:520.455000px;}
.y29{bottom:526.755000px;}
.yb6{bottom:528.015000px;}
.y86{bottom:528.735000px;}
.y5e{bottom:537.735000px;}
.y28{bottom:544.035000px;}
.yb5{bottom:545.295000px;}
.y85{bottom:546.015000px;}
.y5d{bottom:555.015000px;}
.y27{bottom:561.315000px;}
.yb4{bottom:562.575000px;}
.y84{bottom:563.295000px;}
.y5c{bottom:572.295000px;}
.y26{bottom:578.595000px;}
.yb3{bottom:579.855000px;}
.y83{bottom:580.395000px;}
.y5b{bottom:589.575000px;}
.y25{bottom:595.695000px;}
.yb2{bottom:596.955000px;}
.y82{bottom:597.675000px;}
.y5a{bottom:606.705000px;}
.y24{bottom:609.765000px;}
.yb1{bottom:614.265000px;}
.y81{bottom:614.985000px;}
.y59{bottom:623.985000px;}
.y80{bottom:629.385000px;}
.y23{bottom:630.285000px;}
.yb0{bottom:631.545000px;}
.y58{bottom:641.265000px;}
.y22{bottom:647.565000px;}
.yaf{bottom:648.825000px;}
.y57{bottom:659.625000px;}
.y21{bottom:664.845000px;}
.yae{bottom:666.105000px;}
.y7f{bottom:671.865000px;}
.y56{bottom:677.985000px;}
.y20{bottom:682.125000px;}
.yad{bottom:683.385000px;}
.y55{bottom:696.165000px;}
.y1f{bottom:699.225000px;}
.yac{bottom:700.485000px;}
.y7e{bottom:714.345000px;}
.y54{bottom:714.525000px;}
.y1e{bottom:716.505000px;}
.yab{bottom:717.765000px;}
.y53{bottom:731.805000px;}
.y1d{bottom:733.785000px;}
.yaa{bottom:735.045000px;}
.y52{bottom:749.085000px;}
.y1c{bottom:751.065000px;}
.ya9{bottom:752.325000px;}
.y7d{bottom:757.005000px;}
.y51{bottom:766.365000px;}
.y1b{bottom:768.345000px;}
.ya8{bottom:769.605000px;}
.y50{bottom:784.725000px;}
.y1a{bottom:785.445000px;}
.ya7{bottom:786.885000px;}
.y7c{bottom:799.485000px;}
.y4f{bottom:801.825000px;}
.y19{bottom:802.725000px;}
.ya6{bottom:803.985000px;}
.y18{bottom:820.005000px;}
.y4e{bottom:820.185000px;}
.ya5{bottom:821.265000px;}
.y17{bottom:834.045000px;}
.y4d{bottom:837.465000px;}
.ya4{bottom:838.545000px;}
.y7a{bottom:841.965000px;}
.y16{bottom:854.925000px;}
.y4c{bottom:855.825000px;}
.y4b{bottom:873.150000px;}
.y15{bottom:874.050000px;}
.y79{bottom:884.490000px;}
.ya3{bottom:890.250000px;}
.y4a{bottom:891.330000px;}
.y14{bottom:892.950000px;}
.ya2{bottom:907.530000px;}
.y49{bottom:908.610000px;}
.y13{bottom:911.850000px;}
.ya1{bottom:924.810000px;}
.y48{bottom:925.890000px;}
.y77{bottom:927.150000px;}
.y12{bottom:930.930000px;}
.ya0{bottom:942.090000px;}
.y47{bottom:943.170000px;}
.y11{bottom:949.830000px;}
.y9f{bottom:959.370000px;}
.y46{bottom:960.450000px;}
.y10{bottom:968.910000px;}
.y75{bottom:969.630000px;}
.y9e{bottom:976.650000px;}
.y45{bottom:977.730000px;}
.yf{bottom:988.170000px;}
.y44{bottom:994.830000px;}
.ye{bottom:1009.230000px;}
.y43{bottom:1013.190000px;}
.y74{bottom:1015.350000px;}
.yd{bottom:1029.930000px;}
.y42{bottom:1031.550000px;}
.y73{bottom:1032.630000px;}
.y9{bottom:1050.270000px;}
.y8{bottom:1069.170000px;}
.y7{bottom:1086.450000px;}
.y6{bottom:1104.450000px;}
.y5{bottom:1121.190000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h7{height:38.759766px;}
.hd{height:40.140000px;}
.h10{height:42.120000px;}
.hf{height:42.156000px;}
.h5{height:42.164648px;}
.he{height:42.300000px;}
.hc{height:42.480000px;}
.h2{height:42.894141px;}
.hb{height:43.506914px;}
.ha{height:46.736719px;}
.h3{height:47.545312px;}
.h4{height:50.800781px;}
.h9{height:53.224453px;}
.h6{height:55.825312px;}
.h8{height:60.679688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:221.250000px;}
.w3{width:221.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x2{left:108.035987px;}
.x16{left:114.336000px;}
.x8{left:117.935987px;}
.x1{left:128.015987px;}
.x14{left:135.035987px;}
.x1e{left:162.029987px;}
.x5{left:167.069987px;}
.x15{left:184.169987px;}
.xb{left:198.749987px;}
.xe{left:223.769987px;}
.x9{left:228.089987px;}
.x12{left:254.729987px;}
.x1a{left:285.194987px;}
.x13{left:326.054987px;}
.x18{left:335.775000px;}
.xf{left:341.894987px;}
.xa{left:352.874987px;}
.xd{left:357.914987px;}
.x1b{left:361.514987px;}
.xc{left:364.754987px;}
.x11{left:378.974987px;}
.x7{left:386.354987px;}
.x1c{left:388.154987px;}
.x1d{left:396.074987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x4{left:519.764987px;}
.x19{left:557.205000px;}
.x10{left:785.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:10.192640pt;}
.ls5{letter-spacing:30.880000pt;}
.ls6{letter-spacing:37.051307pt;}
.ls3{letter-spacing:56.912640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._5{width:2.109867pt;}
._2{width:3.520853pt;}
._6{width:5.139200pt;}
._b{width:6.035840pt;}
._9{width:7.005013pt;}
._a{width:8.033707pt;}
._e{width:8.991573pt;}
._8{width:10.517760pt;}
._7{width:11.527040pt;}
._d{width:14.745813pt;}
._c{width:16.520320pt;}
._10{width:17.494827pt;}
._f{width:18.657067pt;}
._12{width:31.424640pt;}
._11{width:32.447360pt;}
._4{width:76.138667pt;}
._13{width:126.258560pt;}
._3{width:610.938667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:13.120000pt;}
.y7b{bottom:13.920000pt;}
.y76{bottom:14.080000pt;}
.yc{bottom:32.000000pt;}
.yb{bottom:48.480000pt;}
.ya{bottom:62.272000pt;}
.y41{bottom:99.232000pt;}
.y9d{bottom:113.472000pt;}
.y40{bottom:115.552000pt;}
.y9c{bottom:129.792000pt;}
.y3f{bottom:130.912000pt;}
.y9b{bottom:145.146667pt;}
.y3e{bottom:146.266667pt;}
.y9a{bottom:160.346667pt;}
.y3d{bottom:161.626667pt;}
.y72{bottom:164.666667pt;}
.y99{bottom:175.706667pt;}
.y3c{bottom:176.826667pt;}
.y71{bottom:180.026667pt;}
.y98{bottom:191.066667pt;}
.y3b{bottom:192.186667pt;}
.yc8{bottom:193.306667pt;}
.y70{bottom:196.186667pt;}
.y97{bottom:206.426667pt;}
.y3a{bottom:207.546667pt;}
.yc7{bottom:208.666667pt;}
.y6f{bottom:212.506667pt;}
.y96{bottom:221.786667pt;}
.y39{bottom:222.906667pt;}
.yc6{bottom:224.026667pt;}
.y6e{bottom:227.866667pt;}
.y95{bottom:238.106667pt;}
.y38{bottom:238.266667pt;}
.yc5{bottom:239.386667pt;}
.y6d{bottom:244.186667pt;}
.y37{bottom:253.626667pt;}
.y94{bottom:254.266667pt;}
.yc4{bottom:254.746667pt;}
.y6c{bottom:259.546667pt;}
.y36{bottom:268.826667pt;}
.yc3{bottom:269.946667pt;}
.y93{bottom:270.586667pt;}
.y6b{bottom:274.746667pt;}
.y35{bottom:284.186667pt;}
.yc2{bottom:285.306667pt;}
.y92{bottom:285.946667pt;}
.y6a{bottom:291.066667pt;}
.y34{bottom:299.586667pt;}
.yc1{bottom:300.706667pt;}
.y91{bottom:301.346667pt;}
.y69{bottom:307.426667pt;}
.y33{bottom:314.946667pt;}
.yc0{bottom:316.066667pt;}
.y90{bottom:316.706667pt;}
.y68{bottom:322.786667pt;}
.y32{bottom:330.306667pt;}
.ybf{bottom:331.426667pt;}
.y8f{bottom:331.906667pt;}
.y67{bottom:339.106667pt;}
.y31{bottom:345.506667pt;}
.ybe{bottom:346.786667pt;}
.y8e{bottom:347.266667pt;}
.y66{bottom:354.466667pt;}
.y30{bottom:360.866667pt;}
.ybd{bottom:361.986667pt;}
.y8d{bottom:362.626667pt;}
.y65{bottom:370.626667pt;}
.y2f{bottom:376.226667pt;}
.ybc{bottom:377.346667pt;}
.y8c{bottom:377.986667pt;}
.y64{bottom:385.986667pt;}
.y2e{bottom:391.586667pt;}
.ybb{bottom:392.706667pt;}
.y8b{bottom:393.346667pt;}
.y63{bottom:401.346667pt;}
.y2d{bottom:406.946667pt;}
.yba{bottom:408.066667pt;}
.y8a{bottom:408.706667pt;}
.y62{bottom:416.706667pt;}
.y2c{bottom:422.306667pt;}
.yb9{bottom:423.426667pt;}
.y89{bottom:423.906667pt;}
.y61{bottom:432.066667pt;}
.y2b{bottom:437.506667pt;}
.yb8{bottom:438.786667pt;}
.y88{bottom:439.266667pt;}
.y60{bottom:447.266667pt;}
.y2a{bottom:452.866667pt;}
.yb7{bottom:453.986667pt;}
.y87{bottom:454.626667pt;}
.y5f{bottom:462.626667pt;}
.y29{bottom:468.226667pt;}
.yb6{bottom:469.346667pt;}
.y86{bottom:469.986667pt;}
.y5e{bottom:477.986667pt;}
.y28{bottom:483.586667pt;}
.yb5{bottom:484.706667pt;}
.y85{bottom:485.346667pt;}
.y5d{bottom:493.346667pt;}
.y27{bottom:498.946667pt;}
.yb4{bottom:500.066667pt;}
.y84{bottom:500.706667pt;}
.y5c{bottom:508.706667pt;}
.y26{bottom:514.306667pt;}
.yb3{bottom:515.426667pt;}
.y83{bottom:515.906667pt;}
.y5b{bottom:524.066667pt;}
.y25{bottom:529.506667pt;}
.yb2{bottom:530.626667pt;}
.y82{bottom:531.266667pt;}
.y5a{bottom:539.293333pt;}
.y24{bottom:542.013333pt;}
.yb1{bottom:546.013333pt;}
.y81{bottom:546.653333pt;}
.y59{bottom:554.653333pt;}
.y80{bottom:559.453333pt;}
.y23{bottom:560.253333pt;}
.yb0{bottom:561.373333pt;}
.y58{bottom:570.013333pt;}
.y22{bottom:575.613333pt;}
.yaf{bottom:576.733333pt;}
.y57{bottom:586.333333pt;}
.y21{bottom:590.973333pt;}
.yae{bottom:592.093333pt;}
.y7f{bottom:597.213333pt;}
.y56{bottom:602.653333pt;}
.y20{bottom:606.333333pt;}
.yad{bottom:607.453333pt;}
.y55{bottom:618.813333pt;}
.y1f{bottom:621.533333pt;}
.yac{bottom:622.653333pt;}
.y7e{bottom:634.973333pt;}
.y54{bottom:635.133333pt;}
.y1e{bottom:636.893333pt;}
.yab{bottom:638.013333pt;}
.y53{bottom:650.493333pt;}
.y1d{bottom:652.253333pt;}
.yaa{bottom:653.373333pt;}
.y52{bottom:665.853333pt;}
.y1c{bottom:667.613333pt;}
.ya9{bottom:668.733333pt;}
.y7d{bottom:672.893333pt;}
.y51{bottom:681.213333pt;}
.y1b{bottom:682.973333pt;}
.ya8{bottom:684.093333pt;}
.y50{bottom:697.533333pt;}
.y1a{bottom:698.173333pt;}
.ya7{bottom:699.453333pt;}
.y7c{bottom:710.653333pt;}
.y4f{bottom:712.733333pt;}
.y19{bottom:713.533333pt;}
.ya6{bottom:714.653333pt;}
.y18{bottom:728.893333pt;}
.y4e{bottom:729.053333pt;}
.ya5{bottom:730.013333pt;}
.y17{bottom:741.373333pt;}
.y4d{bottom:744.413333pt;}
.ya4{bottom:745.373333pt;}
.y7a{bottom:748.413333pt;}
.y16{bottom:759.933333pt;}
.y4c{bottom:760.733333pt;}
.y4b{bottom:776.133333pt;}
.y15{bottom:776.933333pt;}
.y79{bottom:786.213333pt;}
.ya3{bottom:791.333333pt;}
.y4a{bottom:792.293333pt;}
.y14{bottom:793.733333pt;}
.ya2{bottom:806.693333pt;}
.y49{bottom:807.653333pt;}
.y13{bottom:810.533333pt;}
.ya1{bottom:822.053333pt;}
.y48{bottom:823.013333pt;}
.y77{bottom:824.133333pt;}
.y12{bottom:827.493333pt;}
.ya0{bottom:837.413333pt;}
.y47{bottom:838.373333pt;}
.y11{bottom:844.293333pt;}
.y9f{bottom:852.773333pt;}
.y46{bottom:853.733333pt;}
.y10{bottom:861.253333pt;}
.y75{bottom:861.893333pt;}
.y9e{bottom:868.133333pt;}
.y45{bottom:869.093333pt;}
.yf{bottom:878.373333pt;}
.y44{bottom:884.293333pt;}
.ye{bottom:897.093333pt;}
.y43{bottom:900.613333pt;}
.y74{bottom:902.533333pt;}
.yd{bottom:915.493333pt;}
.y42{bottom:916.933333pt;}
.y73{bottom:917.893333pt;}
.y9{bottom:933.573333pt;}
.y8{bottom:950.373333pt;}
.y7{bottom:965.733333pt;}
.y6{bottom:981.733333pt;}
.y5{bottom:996.613333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h7{height:34.453125pt;}
.hd{height:35.680000pt;}
.h10{height:37.440000pt;}
.hf{height:37.472000pt;}
.h5{height:37.479688pt;}
.he{height:37.600000pt;}
.hc{height:37.760000pt;}
.h2{height:38.128125pt;}
.hb{height:38.672812pt;}
.ha{height:41.543750pt;}
.h3{height:42.262500pt;}
.h4{height:45.156250pt;}
.h9{height:47.310625pt;}
.h6{height:49.622500pt;}
.h8{height:53.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:196.666667pt;}
.w3{width:196.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x2{left:96.031988pt;}
.x16{left:101.632000pt;}
.x8{left:104.831988pt;}
.x1{left:113.791988pt;}
.x14{left:120.031988pt;}
.x1e{left:144.026655pt;}
.x5{left:148.506655pt;}
.x15{left:163.706655pt;}
.xb{left:176.666655pt;}
.xe{left:198.906655pt;}
.x9{left:202.746655pt;}
.x12{left:226.426655pt;}
.x1a{left:253.506655pt;}
.x13{left:289.826655pt;}
.x18{left:298.466667pt;}
.xf{left:303.906655pt;}
.xa{left:313.666655pt;}
.xd{left:318.146655pt;}
.x1b{left:321.346655pt;}
.xc{left:324.226655pt;}
.x11{left:336.866655pt;}
.x7{left:343.426655pt;}
.x1c{left:345.026655pt;}
.x1d{left:352.066655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x4{left:462.013322pt;}
.x19{left:495.293333pt;}
.x10{left:697.893322pt;}
}




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