
    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_f38f9ad51048b2bab3150455.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_2605565fbe90c5463bdc3488.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f6529baf55d7d0cc4f6547e6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_79fae423d8e24ee7fd7ea5cb.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7a3e2e4d9246baed144683a3.woff2')format("woff");}.ff6{font-family:ff6;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);}
.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;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls1{letter-spacing:64.397280px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-4.564320px;}
._b{margin-left:-3.024000px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._8{width:2.356800px;}
._10{width:4.248000px;}
._12{width:5.328000px;}
._a{width:6.353280px;}
._9{width:7.488000px;}
._f{width:8.784000px;}
._15{width:9.864000px;}
._7{width:11.592000px;}
._18{width:12.603840px;}
._2{width:13.621440px;}
._17{width:14.876160px;}
._c{width:15.898560px;}
._16{width:16.920000px;}
._5{width:19.034400px;}
._6{width:20.205600px;}
._d{width:21.595200px;}
._1c{width:23.760000px;}
._1d{width:25.154400px;}
._19{width:26.568000px;}
._1e{width:28.152000px;}
._1f{width:29.222400px;}
._e{width:30.276000px;}
._13{width:35.064000px;}
._14{width:36.242400px;}
._21{width:40.049280px;}
._20{width:41.112000px;}
._1a{width:42.552000px;}
._1b{width:43.848000px;}
._3{width:45.390240px;}
._4{width:97.675200px;}
._22{width:101.160000px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y88{bottom:3.960000px;}
.y8d{bottom:24.660000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:133.416000px;}
.y2{bottom:152.490000px;}
.y8f{bottom:172.470000px;}
.y31{bottom:173.190000px;}
.ycc{bottom:175.350000px;}
.y73{bottom:187.050000px;}
.y50{bottom:187.950000px;}
.y30{bottom:193.890000px;}
.ycb{bottom:196.050000px;}
.y92{bottom:196.410000px;}
.y6d{bottom:197.850000px;}
.ya8{bottom:199.650000px;}
.y8e{bottom:204.330000px;}
.y2f{bottom:214.590000px;}
.yca{bottom:216.750000px;}
.y72{bottom:218.010000px;}
.y4f{bottom:218.910000px;}
.y91{bottom:219.090000px;}
.ya7{bottom:220.350000px;}
.y6c{bottom:228.990000px;}
.y2e{bottom:235.290000px;}
.ya6{bottom:241.050000px;}
.y71{bottom:249.150000px;}
.y4e{bottom:250.050000px;}
.yc9{bottom:255.450000px;}
.y2d{bottom:255.990000px;}
.y6b{bottom:259.950000px;}
.y8c{bottom:262.110000px;}
.yc8{bottom:276.150000px;}
.y2c{bottom:276.690000px;}
.ya5{bottom:279.750000px;}
.y70{bottom:280.110000px;}
.y4d{bottom:281.010000px;}
.y6a{bottom:291.090000px;}
.yc7{bottom:296.850000px;}
.y2b{bottom:297.390000px;}
.ya4{bottom:300.450000px;}
.y6f{bottom:311.250000px;}
.y4c{bottom:312.150000px;}
.y2a{bottom:318.090000px;}
.y8b{bottom:320.070000px;}
.ya3{bottom:321.150000px;}
.y69{bottom:330.330000px;}
.yc6{bottom:335.550000px;}
.y29{bottom:338.835000px;}
.y6e{bottom:342.255000px;}
.y4b{bottom:343.155000px;}
.yc5{bottom:356.295000px;}
.y8a{bottom:357.375000px;}
.y28{bottom:359.535000px;}
.ya2{bottom:359.895000px;}
.y68{bottom:373.395000px;}
.y4a{bottom:374.295000px;}
.yc4{bottom:376.995000px;}
.y27{bottom:380.235000px;}
.ya1{bottom:380.595000px;}
.y89{bottom:394.455000px;}
.yc3{bottom:397.695000px;}
.y26{bottom:400.935000px;}
.y67{bottom:404.355000px;}
.y49{bottom:405.255000px;}
.yc2{bottom:418.395000px;}
.ya0{bottom:419.295000px;}
.y25{bottom:421.635000px;}
.y87{bottom:431.715000px;}
.y66{bottom:435.495000px;}
.y48{bottom:436.395000px;}
.y24{bottom:442.335000px;}
.y9f{bottom:446.475000px;}
.yc1{bottom:456.915000px;}
.y23{bottom:463.035000px;}
.y65{bottom:466.455000px;}
.y47{bottom:467.355000px;}
.y86{bottom:471.315000px;}
.yc0{bottom:477.615000px;}
.y22{bottom:483.735000px;}
.y9e{bottom:489.495000px;}
.y64{bottom:497.595000px;}
.y46{bottom:498.495000px;}
.y21{bottom:504.435000px;}
.y85{bottom:508.395000px;}
.ybf{bottom:516.315000px;}
.y9d{bottom:520.455000px;}
.y20{bottom:525.135000px;}
.y63{bottom:528.555000px;}
.y45{bottom:529.455000px;}
.y90{bottom:532.875000px;}
.ybe{bottom:537.015000px;}
.y84{bottom:539.355000px;}
.y1f{bottom:545.835000px;}
.y9c{bottom:551.595000px;}
.ybd{bottom:557.715000px;}
.y62{bottom:559.695000px;}
.y44{bottom:560.595000px;}
.y1e{bottom:566.535000px;}
.y83{bottom:570.495000px;}
.ybc{bottom:578.415000px;}
.y9b{bottom:582.555000px;}
.y1d{bottom:587.235000px;}
.y61{bottom:590.655000px;}
.y43{bottom:591.555000px;}
.y82{bottom:601.455000px;}
.y1c{bottom:607.965000px;}
.y9a{bottom:613.545000px;}
.ybb{bottom:617.145000px;}
.y60{bottom:621.645000px;}
.y42{bottom:622.545000px;}
.y1b{bottom:628.665000px;}
.y81{bottom:632.625000px;}
.yba{bottom:637.845000px;}
.y99{bottom:644.685000px;}
.y1a{bottom:649.365000px;}
.y5f{bottom:652.785000px;}
.y41{bottom:653.685000px;}
.y80{bottom:663.585000px;}
.y19{bottom:670.065000px;}
.y98{bottom:675.645000px;}
.yb9{bottom:676.545000px;}
.y5e{bottom:683.745000px;}
.y40{bottom:684.645000px;}
.y18{bottom:690.765000px;}
.y7f{bottom:694.725000px;}
.yb8{bottom:697.245000px;}
.y97{bottom:706.785000px;}
.y17{bottom:711.465000px;}
.y5d{bottom:714.885000px;}
.y3f{bottom:715.785000px;}
.yb7{bottom:717.945000px;}
.y7e{bottom:725.685000px;}
.y16{bottom:732.165000px;}
.y96{bottom:737.745000px;}
.y5c{bottom:745.845000px;}
.y3e{bottom:746.745000px;}
.y15{bottom:752.865000px;}
.yb6{bottom:756.645000px;}
.y7d{bottom:756.825000px;}
.y95{bottom:768.885000px;}
.y14{bottom:773.565000px;}
.y5b{bottom:776.985000px;}
.yb5{bottom:777.345000px;}
.y3d{bottom:777.885000px;}
.y7c{bottom:787.785000px;}
.y13{bottom:794.265000px;}
.y94{bottom:799.845000px;}
.y5a{bottom:807.945000px;}
.y3c{bottom:808.845000px;}
.y12{bottom:814.965000px;}
.yb4{bottom:816.045000px;}
.y7b{bottom:818.925000px;}
.y93{bottom:827.205000px;}
.y11{bottom:835.665000px;}
.yb3{bottom:836.745000px;}
.y59{bottom:839.085000px;}
.y3b{bottom:839.985000px;}
.y7a{bottom:849.885000px;}
.y10{bottom:856.365000px;}
.yb2{bottom:857.445000px;}
.y58{bottom:870.045000px;}
.y3a{bottom:870.990000px;}
.yf{bottom:877.110000px;}
.yb1{bottom:878.190000px;}
.y79{bottom:881.070000px;}
.yb0{bottom:898.890000px;}
.ye{bottom:899.070000px;}
.y57{bottom:901.230000px;}
.y39{bottom:902.130000px;}
.y78{bottom:912.030000px;}
.yd{bottom:926.610000px;}
.y56{bottom:932.190000px;}
.y38{bottom:933.090000px;}
.yaf{bottom:937.590000px;}
.y77{bottom:943.170000px;}
.yc{bottom:954.330000px;}
.yae{bottom:958.290000px;}
.y55{bottom:963.330000px;}
.y37{bottom:964.230000px;}
.y76{bottom:974.130000px;}
.yad{bottom:978.990000px;}
.yb{bottom:981.870000px;}
.y54{bottom:994.290000px;}
.y36{bottom:995.190000px;}
.y75{bottom:1005.270000px;}
.ya{bottom:1009.410000px;}
.yac{bottom:1017.690000px;}
.y53{bottom:1025.430000px;}
.y35{bottom:1026.330000px;}
.y9{bottom:1037.130000px;}
.yab{bottom:1038.390000px;}
.y74{bottom:1044.510000px;}
.y52{bottom:1056.390000px;}
.y34{bottom:1057.290000px;}
.ycd{bottom:1059.090000px;}
.y8{bottom:1064.670000px;}
.yaa{bottom:1077.090000px;}
.y51{bottom:1087.530000px;}
.y33{bottom:1088.430000px;}
.y7{bottom:1092.210000px;}
.ya9{bottom:1097.790000px;}
.y32{bottom:1115.610000px;}
.y6{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h9{height:20.520000px;}
.h8{height:20.700000px;}
.ha{height:20.736000px;}
.hb{height:41.400000px;}
.h4{height:52.628906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:69.996445px;}
.h7{height:74.820586px;}
.hc{height:75.519844px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:85.140000px;}
.w3{width:171.750000px;}
.w5{width:440.715000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:6.840000px;}
.x2{left:127.655987px;}
.xa{left:129.096000px;}
.x8{left:160.049987px;}
.x3{left:170.129987px;}
.x9{left:292.574987px;}
.xc{left:302.475000px;}
.xe{left:344.234987px;}
.x6{left:363.674987px;}
.xd{left:389.055000px;}
.x5{left:391.394987px;}
.x10{left:412.814987px;}
.x4{left:467.924987px;}
.x1{left:489.164987px;}
.xf{left:656.249987px;}
.x7{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1{letter-spacing:57.242027pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-4.057173pt;}
._b{margin-left:-2.688000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._8{width:2.094933pt;}
._10{width:3.776000pt;}
._12{width:4.736000pt;}
._a{width:5.647360pt;}
._9{width:6.656000pt;}
._f{width:7.808000pt;}
._15{width:8.768000pt;}
._7{width:10.304000pt;}
._18{width:11.203413pt;}
._2{width:12.107947pt;}
._17{width:13.223253pt;}
._c{width:14.132053pt;}
._16{width:15.040000pt;}
._5{width:16.919467pt;}
._6{width:17.960533pt;}
._d{width:19.195733pt;}
._1c{width:21.120000pt;}
._1d{width:22.359467pt;}
._19{width:23.616000pt;}
._1e{width:25.024000pt;}
._1f{width:25.975467pt;}
._e{width:26.912000pt;}
._13{width:31.168000pt;}
._14{width:32.215467pt;}
._21{width:35.599360pt;}
._20{width:36.544000pt;}
._1a{width:37.824000pt;}
._1b{width:38.976000pt;}
._3{width:40.346880pt;}
._4{width:86.822400pt;}
._22{width:89.920000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:3.520000pt;}
.y8d{bottom:21.920000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:118.592000pt;}
.y2{bottom:135.546667pt;}
.y8f{bottom:153.306667pt;}
.y31{bottom:153.946667pt;}
.ycc{bottom:155.866667pt;}
.y73{bottom:166.266667pt;}
.y50{bottom:167.066667pt;}
.y30{bottom:172.346667pt;}
.ycb{bottom:174.266667pt;}
.y92{bottom:174.586667pt;}
.y6d{bottom:175.866667pt;}
.ya8{bottom:177.466667pt;}
.y8e{bottom:181.626667pt;}
.y2f{bottom:190.746667pt;}
.yca{bottom:192.666667pt;}
.y72{bottom:193.786667pt;}
.y4f{bottom:194.586667pt;}
.y91{bottom:194.746667pt;}
.ya7{bottom:195.866667pt;}
.y6c{bottom:203.546667pt;}
.y2e{bottom:209.146667pt;}
.ya6{bottom:214.266667pt;}
.y71{bottom:221.466667pt;}
.y4e{bottom:222.266667pt;}
.yc9{bottom:227.066667pt;}
.y2d{bottom:227.546667pt;}
.y6b{bottom:231.066667pt;}
.y8c{bottom:232.986667pt;}
.yc8{bottom:245.466667pt;}
.y2c{bottom:245.946667pt;}
.ya5{bottom:248.666667pt;}
.y70{bottom:248.986667pt;}
.y4d{bottom:249.786667pt;}
.y6a{bottom:258.746667pt;}
.yc7{bottom:263.866667pt;}
.y2b{bottom:264.346667pt;}
.ya4{bottom:267.066667pt;}
.y6f{bottom:276.666667pt;}
.y4c{bottom:277.466667pt;}
.y2a{bottom:282.746667pt;}
.y8b{bottom:284.506667pt;}
.ya3{bottom:285.466667pt;}
.y69{bottom:293.626667pt;}
.yc6{bottom:298.266667pt;}
.y29{bottom:301.186667pt;}
.y6e{bottom:304.226667pt;}
.y4b{bottom:305.026667pt;}
.yc5{bottom:316.706667pt;}
.y8a{bottom:317.666667pt;}
.y28{bottom:319.586667pt;}
.ya2{bottom:319.906667pt;}
.y68{bottom:331.906667pt;}
.y4a{bottom:332.706667pt;}
.yc4{bottom:335.106667pt;}
.y27{bottom:337.986667pt;}
.ya1{bottom:338.306667pt;}
.y89{bottom:350.626667pt;}
.yc3{bottom:353.506667pt;}
.y26{bottom:356.386667pt;}
.y67{bottom:359.426667pt;}
.y49{bottom:360.226667pt;}
.yc2{bottom:371.906667pt;}
.ya0{bottom:372.706667pt;}
.y25{bottom:374.786667pt;}
.y87{bottom:383.746667pt;}
.y66{bottom:387.106667pt;}
.y48{bottom:387.906667pt;}
.y24{bottom:393.186667pt;}
.y9f{bottom:396.866667pt;}
.yc1{bottom:406.146667pt;}
.y23{bottom:411.586667pt;}
.y65{bottom:414.626667pt;}
.y47{bottom:415.426667pt;}
.y86{bottom:418.946667pt;}
.yc0{bottom:424.546667pt;}
.y22{bottom:429.986667pt;}
.y9e{bottom:435.106667pt;}
.y64{bottom:442.306667pt;}
.y46{bottom:443.106667pt;}
.y21{bottom:448.386667pt;}
.y85{bottom:451.906667pt;}
.ybf{bottom:458.946667pt;}
.y9d{bottom:462.626667pt;}
.y20{bottom:466.786667pt;}
.y63{bottom:469.826667pt;}
.y45{bottom:470.626667pt;}
.y90{bottom:473.666667pt;}
.ybe{bottom:477.346667pt;}
.y84{bottom:479.426667pt;}
.y1f{bottom:485.186667pt;}
.y9c{bottom:490.306667pt;}
.ybd{bottom:495.746667pt;}
.y62{bottom:497.506667pt;}
.y44{bottom:498.306667pt;}
.y1e{bottom:503.586667pt;}
.y83{bottom:507.106667pt;}
.ybc{bottom:514.146667pt;}
.y9b{bottom:517.826667pt;}
.y1d{bottom:521.986667pt;}
.y61{bottom:525.026667pt;}
.y43{bottom:525.826667pt;}
.y82{bottom:534.626667pt;}
.y1c{bottom:540.413333pt;}
.y9a{bottom:545.373333pt;}
.ybb{bottom:548.573333pt;}
.y60{bottom:552.573333pt;}
.y42{bottom:553.373333pt;}
.y1b{bottom:558.813333pt;}
.y81{bottom:562.333333pt;}
.yba{bottom:566.973333pt;}
.y99{bottom:573.053333pt;}
.y1a{bottom:577.213333pt;}
.y5f{bottom:580.253333pt;}
.y41{bottom:581.053333pt;}
.y80{bottom:589.853333pt;}
.y19{bottom:595.613333pt;}
.y98{bottom:600.573333pt;}
.yb9{bottom:601.373333pt;}
.y5e{bottom:607.773333pt;}
.y40{bottom:608.573333pt;}
.y18{bottom:614.013333pt;}
.y7f{bottom:617.533333pt;}
.yb8{bottom:619.773333pt;}
.y97{bottom:628.253333pt;}
.y17{bottom:632.413333pt;}
.y5d{bottom:635.453333pt;}
.y3f{bottom:636.253333pt;}
.yb7{bottom:638.173333pt;}
.y7e{bottom:645.053333pt;}
.y16{bottom:650.813333pt;}
.y96{bottom:655.773333pt;}
.y5c{bottom:662.973333pt;}
.y3e{bottom:663.773333pt;}
.y15{bottom:669.213333pt;}
.yb6{bottom:672.573333pt;}
.y7d{bottom:672.733333pt;}
.y95{bottom:683.453333pt;}
.y14{bottom:687.613333pt;}
.y5b{bottom:690.653333pt;}
.yb5{bottom:690.973333pt;}
.y3d{bottom:691.453333pt;}
.y7c{bottom:700.253333pt;}
.y13{bottom:706.013333pt;}
.y94{bottom:710.973333pt;}
.y5a{bottom:718.173333pt;}
.y3c{bottom:718.973333pt;}
.y12{bottom:724.413333pt;}
.yb4{bottom:725.373333pt;}
.y7b{bottom:727.933333pt;}
.y93{bottom:735.293333pt;}
.y11{bottom:742.813333pt;}
.yb3{bottom:743.773333pt;}
.y59{bottom:745.853333pt;}
.y3b{bottom:746.653333pt;}
.y7a{bottom:755.453333pt;}
.y10{bottom:761.213333pt;}
.yb2{bottom:762.173333pt;}
.y58{bottom:773.373333pt;}
.y3a{bottom:774.213333pt;}
.yf{bottom:779.653333pt;}
.yb1{bottom:780.613333pt;}
.y79{bottom:783.173333pt;}
.yb0{bottom:799.013333pt;}
.ye{bottom:799.173333pt;}
.y57{bottom:801.093333pt;}
.y39{bottom:801.893333pt;}
.y78{bottom:810.693333pt;}
.yd{bottom:823.653333pt;}
.y56{bottom:828.613333pt;}
.y38{bottom:829.413333pt;}
.yaf{bottom:833.413333pt;}
.y77{bottom:838.373333pt;}
.yc{bottom:848.293333pt;}
.yae{bottom:851.813333pt;}
.y55{bottom:856.293333pt;}
.y37{bottom:857.093333pt;}
.y76{bottom:865.893333pt;}
.yad{bottom:870.213333pt;}
.yb{bottom:872.773333pt;}
.y54{bottom:883.813333pt;}
.y36{bottom:884.613333pt;}
.y75{bottom:893.573333pt;}
.ya{bottom:897.253333pt;}
.yac{bottom:904.613333pt;}
.y53{bottom:911.493333pt;}
.y35{bottom:912.293333pt;}
.y9{bottom:921.893333pt;}
.yab{bottom:923.013333pt;}
.y74{bottom:928.453333pt;}
.y52{bottom:939.013333pt;}
.y34{bottom:939.813333pt;}
.ycd{bottom:941.413333pt;}
.y8{bottom:946.373333pt;}
.yaa{bottom:957.413333pt;}
.y51{bottom:966.693333pt;}
.y33{bottom:967.493333pt;}
.y7{bottom:970.853333pt;}
.ya9{bottom:975.813333pt;}
.y32{bottom:991.653333pt;}
.y6{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h9{height:18.240000pt;}
.h8{height:18.400000pt;}
.ha{height:18.432000pt;}
.hb{height:36.800000pt;}
.h4{height:46.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:62.219062pt;}
.h7{height:66.507188pt;}
.hc{height:67.128750pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:75.680000pt;}
.w3{width:152.666667pt;}
.w5{width:391.746667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.080000pt;}
.x2{left:113.471988pt;}
.xa{left:114.752000pt;}
.x8{left:142.266655pt;}
.x3{left:151.226655pt;}
.x9{left:260.066655pt;}
.xc{left:268.866667pt;}
.xe{left:305.986655pt;}
.x6{left:323.266655pt;}
.xd{left:345.826667pt;}
.x5{left:347.906655pt;}
.x10{left:366.946655pt;}
.x4{left:415.933322pt;}
.x1{left:434.813322pt;}
.xf{left:583.333322pt;}
.x7{left:718.373322pt;}
}




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