
    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_317bf3867e703fd0c61aa646.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fa3277cb4b6bdae1c934e648.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_d5151d2fcbfdd5ce7f96e2db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_102471781ab97749eb1fa15b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_32438991827075b46c77d76f.woff2')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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-1.440000px;}
.ls1{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.360000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws9{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.833200px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-5.295360px;}
._a{margin-left:-3.848640px;}
._1{margin-left:-2.583360px;}
._0{margin-left:-1.457280px;}
._2{width:1.373280px;}
._9{width:2.513760px;}
._d{width:3.645120px;}
._c{width:5.040000px;}
._14{width:6.192000px;}
._18{width:7.234560px;}
._f{width:8.280000px;}
._10{width:9.570720px;}
._11{width:10.812000px;}
._b{width:12.312000px;}
._17{width:13.674720px;}
._15{width:14.904000px;}
._16{width:16.200000px;}
._e{width:19.080000px;}
._19{width:21.384000px;}
._1a{width:22.422720px;}
._1e{width:23.770560px;}
._12{width:24.912000px;}
._13{width:26.058720px;}
._1b{width:27.360000px;}
._1c{width:28.738560px;}
._8{width:31.089360px;}
._7{width:36.900240px;}
._6{width:38.175600px;}
._5{width:89.119920px;}
._4{width:90.397440px;}
._3{width:106.835520px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.240000px;}
.y8b{bottom:3.420000px;}
.y80{bottom:8.640000px;}
.y87{bottom:11.880000px;}
.y9c{bottom:14.220000px;}
.y8c{bottom:15.120000px;}
.ya4{bottom:17.280000px;}
.y89{bottom:20.340000px;}
.y86{bottom:20.520000px;}
.y9a{bottom:31.140000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y88{bottom:164.910000px;}
.y4e{bottom:168.510000px;}
.yb1{bottom:170.490000px;}
.y2f{bottom:172.110000px;}
.yc5{bottom:186.150000px;}
.y8a{bottom:188.130000px;}
.y2e{bottom:192.810000px;}
.y4d{bottom:199.470000px;}
.yb0{bottom:201.450000px;}
.y69{bottom:206.490000px;}
.yc4{bottom:206.850000px;}
.y85{bottom:210.990000px;}
.y2d{bottom:213.510000px;}
.y4c{bottom:230.610000px;}
.yaf{bottom:232.410000px;}
.y2c{bottom:234.210000px;}
.y68{bottom:237.630000px;}
.yc3{bottom:248.430000px;}
.y84{bottom:250.770000px;}
.y2b{bottom:254.910000px;}
.yae{bottom:263.550000px;}
.y67{bottom:268.590000px;}
.y4b{bottom:272.910000px;}
.y83{bottom:273.270000px;}
.y2a{bottom:275.610000px;}
.yc2{bottom:290.190000px;}
.yad{bottom:294.510000px;}
.y82{bottom:295.770000px;}
.y29{bottom:296.310000px;}
.y66{bottom:299.730000px;}
.y4a{bottom:305.490000px;}
.yc1{bottom:310.890000px;}
.y28{bottom:317.010000px;}
.y81{bottom:318.270000px;}
.yac{bottom:325.650000px;}
.y65{bottom:330.690000px;}
.y49{bottom:336.495000px;}
.y27{bottom:337.755000px;}
.y7f{bottom:340.815000px;}
.yc0{bottom:352.695000px;}
.yab{bottom:356.655000px;}
.y26{bottom:358.455000px;}
.y64{bottom:361.875000px;}
.y7e{bottom:363.315000px;}
.y48{bottom:367.635000px;}
.ybf{bottom:373.395000px;}
.yaa{bottom:376.635000px;}
.y25{bottom:379.155000px;}
.y7c{bottom:385.815000px;}
.y63{bottom:392.835000px;}
.ya9{bottom:394.815000px;}
.y47{bottom:398.595000px;}
.y24{bottom:399.855000px;}
.ybe{bottom:414.975000px;}
.y7b{bottom:416.415000px;}
.ya8{bottom:417.315000px;}
.y23{bottom:420.555000px;}
.y62{bottom:423.975000px;}
.y46{bottom:429.735000px;}
.ybd{bottom:435.675000px;}
.ya7{bottom:439.815000px;}
.y7a{bottom:440.895000px;}
.y22{bottom:441.255000px;}
.y61{bottom:454.935000px;}
.y45{bottom:460.695000px;}
.y21{bottom:461.955000px;}
.ya6{bottom:463.035000px;}
.y79{bottom:471.135000px;}
.ybc{bottom:477.435000px;}
.y20{bottom:482.655000px;}
.y60{bottom:486.075000px;}
.ya5{bottom:486.255000px;}
.y44{bottom:491.835000px;}
.ybb{bottom:498.135000px;}
.y78{bottom:499.935000px;}
.y1f{bottom:503.355000px;}
.ya3{bottom:508.755000px;}
.y5f{bottom:517.035000px;}
.y43{bottom:522.795000px;}
.y1e{bottom:524.055000px;}
.yba{bottom:540.435000px;}
.y1d{bottom:544.755000px;}
.y5e{bottom:548.175000px;}
.ya2{bottom:548.535000px;}
.y42{bottom:553.935000px;}
.y1c{bottom:565.455000px;}
.ya1{bottom:571.755000px;}
.y5d{bottom:579.135000px;}
.yb9{bottom:583.275000px;}
.y41{bottom:584.895000px;}
.y1b{bottom:586.155000px;}
.y75{bottom:590.115000px;}
.y1a{bottom:606.885000px;}
.y5c{bottom:610.305000px;}
.ya0{bottom:611.565000px;}
.y40{bottom:616.065000px;}
.y74{bottom:621.105000px;}
.y19{bottom:627.585000px;}
.yb8{bottom:628.485000px;}
.y9f{bottom:634.065000px;}
.y5b{bottom:641.265000px;}
.y3f{bottom:647.025000px;}
.y18{bottom:648.285000px;}
.y73{bottom:652.245000px;}
.y9e{bottom:656.565000px;}
.yb7{bottom:659.445000px;}
.y17{bottom:668.985000px;}
.y5a{bottom:672.405000px;}
.y3e{bottom:678.165000px;}
.y9d{bottom:679.065000px;}
.y72{bottom:683.205000px;}
.y16{bottom:689.685000px;}
.yb6{bottom:690.585000px;}
.y99{bottom:701.565000px;}
.y59{bottom:703.365000px;}
.y3d{bottom:709.125000px;}
.y15{bottom:710.385000px;}
.y71{bottom:714.345000px;}
.yb5{bottom:721.545000px;}
.y9b{bottom:724.785000px;}
.y14{bottom:731.085000px;}
.y58{bottom:734.505000px;}
.y3c{bottom:740.265000px;}
.y70{bottom:745.305000px;}
.y13{bottom:751.605000px;}
.yb4{bottom:752.685000px;}
.y57{bottom:765.465000px;}
.y98{bottom:769.785000px;}
.y3b{bottom:771.225000px;}
.y12{bottom:772.305000px;}
.y6f{bottom:776.445000px;}
.yb3{bottom:783.645000px;}
.y97{bottom:792.285000px;}
.y11{bottom:793.005000px;}
.y56{bottom:796.605000px;}
.y3a{bottom:802.365000px;}
.y6e{bottom:807.405000px;}
.y10{bottom:813.705000px;}
.y96{bottom:814.785000px;}
.y55{bottom:827.565000px;}
.y39{bottom:833.325000px;}
.yf{bottom:834.405000px;}
.y6d{bottom:838.545000px;}
.y95{bottom:854.565000px;}
.ye{bottom:855.105000px;}
.yb2{bottom:857.085000px;}
.y54{bottom:858.705000px;}
.y38{bottom:864.465000px;}
.y6c{bottom:869.505000px;}
.y94{bottom:877.110000px;}
.yd{bottom:877.290000px;}
.yc9{bottom:888.810000px;}
.y53{bottom:889.710000px;}
.y6b{bottom:900.510000px;}
.yc{bottom:904.830000px;}
.y37{bottom:906.810000px;}
.y93{bottom:916.890000px;}
.y52{bottom:920.850000px;}
.yc8{bottom:930.570000px;}
.yb{bottom:932.370000px;}
.y92{bottom:939.390000px;}
.y6a{bottom:939.750000px;}
.y36{bottom:939.930000px;}
.yc7{bottom:951.270000px;}
.y51{bottom:951.810000px;}
.ya{bottom:960.090000px;}
.y91{bottom:961.890000px;}
.y35{bottom:972.510000px;}
.y50{bottom:982.950000px;}
.y90{bottom:985.110000px;}
.y9{bottom:987.630000px;}
.yc6{bottom:992.850000px;}
.y34{bottom:993.210000px;}
.y33{bottom:1013.910000px;}
.y8{bottom:1015.170000px;}
.y8f{bottom:1024.890000px;}
.y32{bottom:1034.610000px;}
.y7{bottom:1042.890000px;}
.y4f{bottom:1045.050000px;}
.y8e{bottom:1048.110000px;}
.y77{bottom:1049.910000px;}
.y31{bottom:1055.310000px;}
.y6{bottom:1070.430000px;}
.y8d{bottom:1071.330000px;}
.y30{bottom:1076.010000px;}
.y76{bottom:1078.710000px;}
.y1{bottom:1233.900000px;}
.hb{height:17.280000px;}
.h10{height:17.316000px;}
.hf{height:17.640000px;}
.hd{height:34.560000px;}
.h13{height:34.596000px;}
.h12{height:39.060000px;}
.he{height:40.860000px;}
.h9{height:43.681992px;}
.h6{height:52.628906px;}
.hc{height:53.077852px;}
.ha{height:53.573906px;}
.h3{height:59.383125px;}
.h11{height:62.280000px;}
.h7{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:69.996445px;}
.h8{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:86.400000px;}
.w4{width:180.930000px;}
.w3{width:398.775000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.080000px;}
.x18{left:43.740000px;}
.x15{left:67.320000px;}
.x2{left:106.415987px;}
.x12{left:109.836000px;}
.x4{left:132.155987px;}
.x8{left:137.015987px;}
.xd{left:138.815987px;}
.x5{left:144.035987px;}
.xc{left:148.895987px;}
.xa{left:153.209987px;}
.xe{left:159.509987px;}
.x13{left:169.779000px;}
.x11{left:309.314987px;}
.xb{left:337.214987px;}
.xf{left:339.374987px;}
.x9{left:343.874987px;}
.x10{left:391.574987px;}
.x6{left:403.454987px;}
.x7{left:446.474987px;}
.x1{left:467.744987px;}
.x14{left:512.205000px;}
.x16{left:696.930000px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-1.280000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.320000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.185067pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-4.706987pt;}
._a{margin-left:-3.421013pt;}
._1{margin-left:-2.296320pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.220693pt;}
._9{width:2.234453pt;}
._d{width:3.240107pt;}
._c{width:4.480000pt;}
._14{width:5.504000pt;}
._18{width:6.430720pt;}
._f{width:7.360000pt;}
._10{width:8.507307pt;}
._11{width:9.610667pt;}
._b{width:10.944000pt;}
._17{width:12.155307pt;}
._15{width:13.248000pt;}
._16{width:14.400000pt;}
._e{width:16.960000pt;}
._19{width:19.008000pt;}
._1a{width:19.931307pt;}
._1e{width:21.129387pt;}
._12{width:22.144000pt;}
._13{width:23.163307pt;}
._1b{width:24.320000pt;}
._1c{width:25.545387pt;}
._8{width:27.634987pt;}
._7{width:32.800213pt;}
._6{width:33.933867pt;}
._5{width:79.217707pt;}
._4{width:80.353280pt;}
._3{width:94.964907pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.880000pt;}
.y8b{bottom:3.040000pt;}
.y80{bottom:7.680000pt;}
.y87{bottom:10.560000pt;}
.y9c{bottom:12.640000pt;}
.y8c{bottom:13.440000pt;}
.ya4{bottom:15.360000pt;}
.y89{bottom:18.080000pt;}
.y86{bottom:18.240000pt;}
.y9a{bottom:27.680000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y88{bottom:146.586667pt;}
.y4e{bottom:149.786667pt;}
.yb1{bottom:151.546667pt;}
.y2f{bottom:152.986667pt;}
.yc5{bottom:165.466667pt;}
.y8a{bottom:167.226667pt;}
.y2e{bottom:171.386667pt;}
.y4d{bottom:177.306667pt;}
.yb0{bottom:179.066667pt;}
.y69{bottom:183.546667pt;}
.yc4{bottom:183.866667pt;}
.y85{bottom:187.546667pt;}
.y2d{bottom:189.786667pt;}
.y4c{bottom:204.986667pt;}
.yaf{bottom:206.586667pt;}
.y2c{bottom:208.186667pt;}
.y68{bottom:211.226667pt;}
.yc3{bottom:220.826667pt;}
.y84{bottom:222.906667pt;}
.y2b{bottom:226.586667pt;}
.yae{bottom:234.266667pt;}
.y67{bottom:238.746667pt;}
.y4b{bottom:242.586667pt;}
.y83{bottom:242.906667pt;}
.y2a{bottom:244.986667pt;}
.yc2{bottom:257.946667pt;}
.yad{bottom:261.786667pt;}
.y82{bottom:262.906667pt;}
.y29{bottom:263.386667pt;}
.y66{bottom:266.426667pt;}
.y4a{bottom:271.546667pt;}
.yc1{bottom:276.346667pt;}
.y28{bottom:281.786667pt;}
.y81{bottom:282.906667pt;}
.yac{bottom:289.466667pt;}
.y65{bottom:293.946667pt;}
.y49{bottom:299.106667pt;}
.y27{bottom:300.226667pt;}
.y7f{bottom:302.946667pt;}
.yc0{bottom:313.506667pt;}
.yab{bottom:317.026667pt;}
.y26{bottom:318.626667pt;}
.y64{bottom:321.666667pt;}
.y7e{bottom:322.946667pt;}
.y48{bottom:326.786667pt;}
.ybf{bottom:331.906667pt;}
.yaa{bottom:334.786667pt;}
.y25{bottom:337.026667pt;}
.y7c{bottom:342.946667pt;}
.y63{bottom:349.186667pt;}
.ya9{bottom:350.946667pt;}
.y47{bottom:354.306667pt;}
.y24{bottom:355.426667pt;}
.ybe{bottom:368.866667pt;}
.y7b{bottom:370.146667pt;}
.ya8{bottom:370.946667pt;}
.y23{bottom:373.826667pt;}
.y62{bottom:376.866667pt;}
.y46{bottom:381.986667pt;}
.ybd{bottom:387.266667pt;}
.ya7{bottom:390.946667pt;}
.y7a{bottom:391.906667pt;}
.y22{bottom:392.226667pt;}
.y61{bottom:404.386667pt;}
.y45{bottom:409.506667pt;}
.y21{bottom:410.626667pt;}
.ya6{bottom:411.586667pt;}
.y79{bottom:418.786667pt;}
.ybc{bottom:424.386667pt;}
.y20{bottom:429.026667pt;}
.y60{bottom:432.066667pt;}
.ya5{bottom:432.226667pt;}
.y44{bottom:437.186667pt;}
.ybb{bottom:442.786667pt;}
.y78{bottom:444.386667pt;}
.y1f{bottom:447.426667pt;}
.ya3{bottom:452.226667pt;}
.y5f{bottom:459.586667pt;}
.y43{bottom:464.706667pt;}
.y1e{bottom:465.826667pt;}
.yba{bottom:480.386667pt;}
.y1d{bottom:484.226667pt;}
.y5e{bottom:487.266667pt;}
.ya2{bottom:487.586667pt;}
.y42{bottom:492.386667pt;}
.y1c{bottom:502.626667pt;}
.ya1{bottom:508.226667pt;}
.y5d{bottom:514.786667pt;}
.yb9{bottom:518.466667pt;}
.y41{bottom:519.906667pt;}
.y1b{bottom:521.026667pt;}
.y75{bottom:524.546667pt;}
.y1a{bottom:539.453333pt;}
.y5c{bottom:542.493333pt;}
.ya0{bottom:543.613333pt;}
.y40{bottom:547.613333pt;}
.y74{bottom:552.093333pt;}
.y19{bottom:557.853333pt;}
.yb8{bottom:558.653333pt;}
.y9f{bottom:563.613333pt;}
.y5b{bottom:570.013333pt;}
.y3f{bottom:575.133333pt;}
.y18{bottom:576.253333pt;}
.y73{bottom:579.773333pt;}
.y9e{bottom:583.613333pt;}
.yb7{bottom:586.173333pt;}
.y17{bottom:594.653333pt;}
.y5a{bottom:597.693333pt;}
.y3e{bottom:602.813333pt;}
.y9d{bottom:603.613333pt;}
.y72{bottom:607.293333pt;}
.y16{bottom:613.053333pt;}
.yb6{bottom:613.853333pt;}
.y99{bottom:623.613333pt;}
.y59{bottom:625.213333pt;}
.y3d{bottom:630.333333pt;}
.y15{bottom:631.453333pt;}
.y71{bottom:634.973333pt;}
.yb5{bottom:641.373333pt;}
.y9b{bottom:644.253333pt;}
.y14{bottom:649.853333pt;}
.y58{bottom:652.893333pt;}
.y3c{bottom:658.013333pt;}
.y70{bottom:662.493333pt;}
.y13{bottom:668.093333pt;}
.yb4{bottom:669.053333pt;}
.y57{bottom:680.413333pt;}
.y98{bottom:684.253333pt;}
.y3b{bottom:685.533333pt;}
.y12{bottom:686.493333pt;}
.y6f{bottom:690.173333pt;}
.yb3{bottom:696.573333pt;}
.y97{bottom:704.253333pt;}
.y11{bottom:704.893333pt;}
.y56{bottom:708.093333pt;}
.y3a{bottom:713.213333pt;}
.y6e{bottom:717.693333pt;}
.y10{bottom:723.293333pt;}
.y96{bottom:724.253333pt;}
.y55{bottom:735.613333pt;}
.y39{bottom:740.733333pt;}
.yf{bottom:741.693333pt;}
.y6d{bottom:745.373333pt;}
.y95{bottom:759.613333pt;}
.ye{bottom:760.093333pt;}
.yb2{bottom:761.853333pt;}
.y54{bottom:763.293333pt;}
.y38{bottom:768.413333pt;}
.y6c{bottom:772.893333pt;}
.y94{bottom:779.653333pt;}
.yd{bottom:779.813333pt;}
.yc9{bottom:790.053333pt;}
.y53{bottom:790.853333pt;}
.y6b{bottom:800.453333pt;}
.yc{bottom:804.293333pt;}
.y37{bottom:806.053333pt;}
.y93{bottom:815.013333pt;}
.y52{bottom:818.533333pt;}
.yc8{bottom:827.173333pt;}
.yb{bottom:828.773333pt;}
.y92{bottom:835.013333pt;}
.y6a{bottom:835.333333pt;}
.y36{bottom:835.493333pt;}
.yc7{bottom:845.573333pt;}
.y51{bottom:846.053333pt;}
.ya{bottom:853.413333pt;}
.y91{bottom:855.013333pt;}
.y35{bottom:864.453333pt;}
.y50{bottom:873.733333pt;}
.y90{bottom:875.653333pt;}
.y9{bottom:877.893333pt;}
.yc6{bottom:882.533333pt;}
.y34{bottom:882.853333pt;}
.y33{bottom:901.253333pt;}
.y8{bottom:902.373333pt;}
.y8f{bottom:911.013333pt;}
.y32{bottom:919.653333pt;}
.y7{bottom:927.013333pt;}
.y4f{bottom:928.933333pt;}
.y8e{bottom:931.653333pt;}
.y77{bottom:933.253333pt;}
.y31{bottom:938.053333pt;}
.y6{bottom:951.493333pt;}
.y8d{bottom:952.293333pt;}
.y30{bottom:956.453333pt;}
.y76{bottom:958.853333pt;}
.y1{bottom:1096.800000pt;}
.hb{height:15.360000pt;}
.h10{height:15.392000pt;}
.hf{height:15.680000pt;}
.hd{height:30.720000pt;}
.h13{height:30.752000pt;}
.h12{height:34.720000pt;}
.he{height:36.320000pt;}
.h9{height:38.828437pt;}
.h6{height:46.781250pt;}
.hc{height:47.180312pt;}
.ha{height:47.621250pt;}
.h3{height:52.785000pt;}
.h11{height:55.360000pt;}
.h7{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:62.219062pt;}
.h8{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:76.800000pt;}
.w4{width:160.826667pt;}
.w3{width:354.466667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.960000pt;}
.x18{left:38.880000pt;}
.x15{left:59.840000pt;}
.x2{left:94.591988pt;}
.x12{left:97.632000pt;}
.x4{left:117.471988pt;}
.x8{left:121.791988pt;}
.xd{left:123.391988pt;}
.x5{left:128.031988pt;}
.xc{left:132.351988pt;}
.xa{left:136.186655pt;}
.xe{left:141.786655pt;}
.x13{left:150.914667pt;}
.x11{left:274.946655pt;}
.xb{left:299.746655pt;}
.xf{left:301.666655pt;}
.x9{left:305.666655pt;}
.x10{left:348.066655pt;}
.x6{left:358.626655pt;}
.x7{left:396.866655pt;}
.x1{left:415.773322pt;}
.x14{left:455.293333pt;}
.x16{left:619.493333pt;}
.x3{left:699.333322pt;}
}




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