
    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_127f7158d00e7a32b4474211.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_6253ad7b929766adbbb67829.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_f092ebff57e714fca41d35af.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_29a0e6dae2f82bea7ca7eb20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747559;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_905f260df79c5c13e9ecbd04.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.lsa{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.150000px;}
.ls4{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.720000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._1e{margin-left:-5.112000px;}
._8{margin-left:-4.032000px;}
._9{margin-left:-2.780640px;}
._0{margin-left:-1.328640px;}
._6{width:1.340640px;}
._11{width:2.808000px;}
._12{width:4.536000px;}
._16{width:5.832000px;}
._17{width:7.200000px;}
._f{width:8.424000px;}
._10{width:9.576000px;}
._14{width:10.800000px;}
._a{width:12.456000px;}
._b{width:13.464000px;}
._13{width:14.619360px;}
._7{width:15.696000px;}
._15{width:16.992000px;}
._e{width:19.539360px;}
._18{width:20.856000px;}
._19{width:22.320000px;}
._21{width:23.400000px;}
._c{width:24.552000px;}
._d{width:25.992000px;}
._1f{width:27.636000px;}
._1c{width:29.208000px;}
._1d{width:30.252000px;}
._20{width:31.551360px;}
._22{width:32.885280px;}
._1a{width:39.024000px;}
._1b{width:40.347360px;}
._23{width:41.472000px;}
._24{width:42.480000px;}
._4{width:54.149760px;}
._26{width:100.944000px;}
._25{width:103.320000px;}
._5{width:104.549760px;}
._2{width:725.556960px;}
._3{width:1260.449760px;}
._1{width:1812.660000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.700000px;}
.y35{bottom:90.396000px;}
.yc4{bottom:93.996000px;}
.yb6{bottom:97.956000px;}
.y9e{bottom:102.996000px;}
.y77{bottom:104.256000px;}
.y34{bottom:111.096000px;}
.y93{bottom:114.696000px;}
.y90{bottom:124.956000px;}
.yb5{bottom:128.916000px;}
.y33{bottom:131.796000px;}
.yc2{bottom:133.956000px;}
.y9d{bottom:134.136000px;}
.y76{bottom:135.396000px;}
.y61{bottom:145.656000px;}
.y32{bottom:152.490000px;}
.y8f{bottom:156.090000px;}
.yb4{bottom:160.050000px;}
.y9c{bottom:165.090000px;}
.y75{bottom:166.350000px;}
.y31{bottom:173.190000px;}
.y60{bottom:176.790000px;}
.y8e{bottom:187.050000px;}
.yb3{bottom:191.010000px;}
.y30{bottom:193.890000px;}
.yc1{bottom:196.050000px;}
.y9b{bottom:196.230000px;}
.y74{bottom:197.490000px;}
.y5f{bottom:207.750000px;}
.yb2{bottom:211.710000px;}
.y2f{bottom:214.590000px;}
.y8d{bottom:218.190000px;}
.y9a{bottom:227.190000px;}
.y73{bottom:228.450000px;}
.yb1{bottom:232.410000px;}
.y2e{bottom:235.290000px;}
.y5e{bottom:238.890000px;}
.y8c{bottom:249.150000px;}
.y2d{bottom:255.990000px;}
.yc0{bottom:258.150000px;}
.y99{bottom:258.330000px;}
.y72{bottom:259.590000px;}
.yb0{bottom:263.370000px;}
.y5d{bottom:269.850000px;}
.y2c{bottom:276.690000px;}
.y98{bottom:278.310000px;}
.y8b{bottom:280.290000px;}
.ybf{bottom:289.290000px;}
.y71{bottom:290.550000px;}
.yaf{bottom:294.510000px;}
.y97{bottom:295.590000px;}
.y2b{bottom:297.390000px;}
.y5c{bottom:300.990000px;}
.y8a{bottom:311.250000px;}
.y96{bottom:312.690000px;}
.y2a{bottom:318.090000px;}
.ybe{bottom:320.250000px;}
.y70{bottom:321.690000px;}
.yae{bottom:325.470000px;}
.y95{bottom:329.970000px;}
.y5b{bottom:331.950000px;}
.y29{bottom:338.835000px;}
.y89{bottom:342.435000px;}
.y94{bottom:344.055000px;}
.ybd{bottom:351.435000px;}
.y6f{bottom:352.695000px;}
.yad{bottom:356.655000px;}
.y28{bottom:359.535000px;}
.y5a{bottom:363.135000px;}
.y88{bottom:373.395000px;}
.y27{bottom:380.235000px;}
.ybc{bottom:382.395000px;}
.y6e{bottom:383.835000px;}
.yac{bottom:387.615000px;}
.y59{bottom:394.095000px;}
.y26{bottom:400.935000px;}
.y87{bottom:404.535000px;}
.ybb{bottom:413.535000px;}
.y6d{bottom:414.795000px;}
.yab{bottom:418.755000px;}
.y25{bottom:421.635000px;}
.y58{bottom:425.055000px;}
.yc7{bottom:425.235000px;}
.y82{bottom:435.495000px;}
.y24{bottom:442.335000px;}
.yba{bottom:444.495000px;}
.y57{bottom:445.755000px;}
.yaa{bottom:449.715000px;}
.y81{bottom:456.195000px;}
.y23{bottom:463.035000px;}
.yb9{bottom:464.475000px;}
.y56{bottom:466.455000px;}
.y6c{bottom:476.895000px;}
.ya9{bottom:480.855000px;}
.yb8{bottom:481.755000px;}
.y22{bottom:483.735000px;}
.y55{bottom:487.155000px;}
.yb7{bottom:495.795000px;}
.y86{bottom:497.595000px;}
.y21{bottom:504.435000px;}
.y54{bottom:507.855000px;}
.ya8{bottom:511.815000px;}
.y80{bottom:518.295000px;}
.y20{bottom:525.135000px;}
.y53{bottom:528.555000px;}
.y6b{bottom:538.995000px;}
.ya7{bottom:542.955000px;}
.y1f{bottom:545.835000px;}
.y52{bottom:549.255000px;}
.y85{bottom:559.695000px;}
.y1e{bottom:566.535000px;}
.y51{bottom:569.955000px;}
.ya6{bottom:573.915000px;}
.y7f{bottom:580.395000px;}
.y1d{bottom:587.235000px;}
.y50{bottom:590.655000px;}
.y6a{bottom:601.095000px;}
.ya5{bottom:605.085000px;}
.y1c{bottom:607.965000px;}
.y4f{bottom:611.385000px;}
.y84{bottom:621.825000px;}
.y1b{bottom:628.665000px;}
.y4e{bottom:632.085000px;}
.ya4{bottom:636.045000px;}
.y7e{bottom:642.525000px;}
.y1a{bottom:649.365000px;}
.y4d{bottom:652.785000px;}
.ya3{bottom:656.025000px;}
.y69{bottom:663.225000px;}
.y19{bottom:670.065000px;}
.ya2{bottom:673.305000px;}
.y4c{bottom:673.485000px;}
.y83{bottom:683.925000px;}
.ya1{bottom:690.585000px;}
.y18{bottom:690.765000px;}
.y4b{bottom:694.185000px;}
.y7d{bottom:704.625000px;}
.ya0{bottom:707.865000px;}
.y17{bottom:711.465000px;}
.y4a{bottom:714.885000px;}
.y9f{bottom:721.905000px;}
.y68{bottom:725.325000px;}
.y16{bottom:732.165000px;}
.y49{bottom:735.585000px;}
.y92{bottom:746.025000px;}
.y15{bottom:752.865000px;}
.y48{bottom:756.285000px;}
.yc6{bottom:766.725000px;}
.y14{bottom:773.565000px;}
.y47{bottom:776.985000px;}
.y67{bottom:787.425000px;}
.y13{bottom:794.265000px;}
.y46{bottom:797.685000px;}
.y7c{bottom:808.125000px;}
.y12{bottom:814.965000px;}
.y45{bottom:818.385000px;}
.yc3{bottom:828.825000px;}
.y11{bottom:835.665000px;}
.y44{bottom:839.085000px;}
.y66{bottom:849.525000px;}
.y10{bottom:856.365000px;}
.y43{bottom:859.785000px;}
.y7b{bottom:870.225000px;}
.yf{bottom:877.110000px;}
.y42{bottom:880.530000px;}
.y91{bottom:890.970000px;}
.ye{bottom:897.810000px;}
.y41{bottom:901.230000px;}
.y65{bottom:911.670000px;}
.yd{bottom:918.510000px;}
.y40{bottom:921.930000px;}
.y7a{bottom:932.370000px;}
.yc{bottom:939.210000px;}
.y3f{bottom:942.630000px;}
.yc5{bottom:953.070000px;}
.yb{bottom:959.910000px;}
.y3e{bottom:963.330000px;}
.y64{bottom:973.770000px;}
.ya{bottom:980.610000px;}
.y3d{bottom:984.030000px;}
.y79{bottom:994.470000px;}
.y9{bottom:1001.310000px;}
.y3c{bottom:1004.730000px;}
.y78{bottom:1015.170000px;}
.y8{bottom:1022.550000px;}
.y3b{bottom:1025.430000px;}
.y63{bottom:1035.870000px;}
.y3a{bottom:1046.130000px;}
.y7{bottom:1046.670000px;}
.y39{bottom:1066.830000px;}
.y6{bottom:1070.970000px;}
.y38{bottom:1087.530000px;}
.y5{bottom:1095.810000px;}
.y62{bottom:1097.970000px;}
.y37{bottom:1108.230000px;}
.y4{bottom:1123.350000px;}
.y36{bottom:1128.930000px;}
.y2{bottom:1170.180000px;}
.y1{bottom:1191.960000px;}
.h8{height:53.573906px;}
.h2{height:59.383125px;}
.h6{height:63.949219px;}
.h7{height:64.546875px;}
.h3{height:65.884219px;}
.h5{height:75.519844px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959987px;}
.xd{left:96.875987px;}
.xb{left:103.535987px;}
.xc{left:107.495987px;}
.x2{left:116.675987px;}
.x5{left:119.375987px;}
.x9{left:127.475987px;}
.x3{left:131.615987px;}
.x12{left:160.049987px;}
.x8{left:169.949987px;}
.x7{left:231.689987px;}
.x10{left:376.454987px;}
.x6{left:389.414987px;}
.xe{left:404.354987px;}
.x4{left:446.474987px;}
.x11{left:714.209987px;}
.xf{left:729.149987px;}
.xa{left:732.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1e{margin-left:-4.544000pt;}
._8{margin-left:-3.584000pt;}
._9{margin-left:-2.471680pt;}
._0{margin-left:-1.181013pt;}
._6{width:1.191680pt;}
._11{width:2.496000pt;}
._12{width:4.032000pt;}
._16{width:5.184000pt;}
._17{width:6.400000pt;}
._f{width:7.488000pt;}
._10{width:8.512000pt;}
._14{width:9.600000pt;}
._a{width:11.072000pt;}
._b{width:11.968000pt;}
._13{width:12.994987pt;}
._7{width:13.952000pt;}
._15{width:15.104000pt;}
._e{width:17.368320pt;}
._18{width:18.538667pt;}
._19{width:19.840000pt;}
._21{width:20.800000pt;}
._c{width:21.824000pt;}
._d{width:23.104000pt;}
._1f{width:24.565333pt;}
._1c{width:25.962667pt;}
._1d{width:26.890667pt;}
._20{width:28.045653pt;}
._22{width:29.231360pt;}
._1a{width:34.688000pt;}
._1b{width:35.864320pt;}
._23{width:36.864000pt;}
._24{width:37.760000pt;}
._4{width:48.133120pt;}
._26{width:89.728000pt;}
._25{width:91.840000pt;}
._5{width:92.933120pt;}
._2{width:644.939520pt;}
._3{width:1120.399787pt;}
._1{width:1611.253333pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.400000pt;}
.y35{bottom:80.352000pt;}
.yc4{bottom:83.552000pt;}
.yb6{bottom:87.072000pt;}
.y9e{bottom:91.552000pt;}
.y77{bottom:92.672000pt;}
.y34{bottom:98.752000pt;}
.y93{bottom:101.952000pt;}
.y90{bottom:111.072000pt;}
.yb5{bottom:114.592000pt;}
.y33{bottom:117.152000pt;}
.yc2{bottom:119.072000pt;}
.y9d{bottom:119.232000pt;}
.y76{bottom:120.352000pt;}
.y61{bottom:129.472000pt;}
.y32{bottom:135.546667pt;}
.y8f{bottom:138.746667pt;}
.yb4{bottom:142.266667pt;}
.y9c{bottom:146.746667pt;}
.y75{bottom:147.866667pt;}
.y31{bottom:153.946667pt;}
.y60{bottom:157.146667pt;}
.y8e{bottom:166.266667pt;}
.yb3{bottom:169.786667pt;}
.y30{bottom:172.346667pt;}
.yc1{bottom:174.266667pt;}
.y9b{bottom:174.426667pt;}
.y74{bottom:175.546667pt;}
.y5f{bottom:184.666667pt;}
.yb2{bottom:188.186667pt;}
.y2f{bottom:190.746667pt;}
.y8d{bottom:193.946667pt;}
.y9a{bottom:201.946667pt;}
.y73{bottom:203.066667pt;}
.yb1{bottom:206.586667pt;}
.y2e{bottom:209.146667pt;}
.y5e{bottom:212.346667pt;}
.y8c{bottom:221.466667pt;}
.y2d{bottom:227.546667pt;}
.yc0{bottom:229.466667pt;}
.y99{bottom:229.626667pt;}
.y72{bottom:230.746667pt;}
.yb0{bottom:234.106667pt;}
.y5d{bottom:239.866667pt;}
.y2c{bottom:245.946667pt;}
.y98{bottom:247.386667pt;}
.y8b{bottom:249.146667pt;}
.ybf{bottom:257.146667pt;}
.y71{bottom:258.266667pt;}
.yaf{bottom:261.786667pt;}
.y97{bottom:262.746667pt;}
.y2b{bottom:264.346667pt;}
.y5c{bottom:267.546667pt;}
.y8a{bottom:276.666667pt;}
.y96{bottom:277.946667pt;}
.y2a{bottom:282.746667pt;}
.ybe{bottom:284.666667pt;}
.y70{bottom:285.946667pt;}
.yae{bottom:289.306667pt;}
.y95{bottom:293.306667pt;}
.y5b{bottom:295.066667pt;}
.y29{bottom:301.186667pt;}
.y89{bottom:304.386667pt;}
.y94{bottom:305.826667pt;}
.ybd{bottom:312.386667pt;}
.y6f{bottom:313.506667pt;}
.yad{bottom:317.026667pt;}
.y28{bottom:319.586667pt;}
.y5a{bottom:322.786667pt;}
.y88{bottom:331.906667pt;}
.y27{bottom:337.986667pt;}
.ybc{bottom:339.906667pt;}
.y6e{bottom:341.186667pt;}
.yac{bottom:344.546667pt;}
.y59{bottom:350.306667pt;}
.y26{bottom:356.386667pt;}
.y87{bottom:359.586667pt;}
.ybb{bottom:367.586667pt;}
.y6d{bottom:368.706667pt;}
.yab{bottom:372.226667pt;}
.y25{bottom:374.786667pt;}
.y58{bottom:377.826667pt;}
.yc7{bottom:377.986667pt;}
.y82{bottom:387.106667pt;}
.y24{bottom:393.186667pt;}
.yba{bottom:395.106667pt;}
.y57{bottom:396.226667pt;}
.yaa{bottom:399.746667pt;}
.y81{bottom:405.506667pt;}
.y23{bottom:411.586667pt;}
.yb9{bottom:412.866667pt;}
.y56{bottom:414.626667pt;}
.y6c{bottom:423.906667pt;}
.ya9{bottom:427.426667pt;}
.yb8{bottom:428.226667pt;}
.y22{bottom:429.986667pt;}
.y55{bottom:433.026667pt;}
.yb7{bottom:440.706667pt;}
.y86{bottom:442.306667pt;}
.y21{bottom:448.386667pt;}
.y54{bottom:451.426667pt;}
.ya8{bottom:454.946667pt;}
.y80{bottom:460.706667pt;}
.y20{bottom:466.786667pt;}
.y53{bottom:469.826667pt;}
.y6b{bottom:479.106667pt;}
.ya7{bottom:482.626667pt;}
.y1f{bottom:485.186667pt;}
.y52{bottom:488.226667pt;}
.y85{bottom:497.506667pt;}
.y1e{bottom:503.586667pt;}
.y51{bottom:506.626667pt;}
.ya6{bottom:510.146667pt;}
.y7f{bottom:515.906667pt;}
.y1d{bottom:521.986667pt;}
.y50{bottom:525.026667pt;}
.y6a{bottom:534.306667pt;}
.ya5{bottom:537.853333pt;}
.y1c{bottom:540.413333pt;}
.y4f{bottom:543.453333pt;}
.y84{bottom:552.733333pt;}
.y1b{bottom:558.813333pt;}
.y4e{bottom:561.853333pt;}
.ya4{bottom:565.373333pt;}
.y7e{bottom:571.133333pt;}
.y1a{bottom:577.213333pt;}
.y4d{bottom:580.253333pt;}
.ya3{bottom:583.133333pt;}
.y69{bottom:589.533333pt;}
.y19{bottom:595.613333pt;}
.ya2{bottom:598.493333pt;}
.y4c{bottom:598.653333pt;}
.y83{bottom:607.933333pt;}
.ya1{bottom:613.853333pt;}
.y18{bottom:614.013333pt;}
.y4b{bottom:617.053333pt;}
.y7d{bottom:626.333333pt;}
.ya0{bottom:629.213333pt;}
.y17{bottom:632.413333pt;}
.y4a{bottom:635.453333pt;}
.y9f{bottom:641.693333pt;}
.y68{bottom:644.733333pt;}
.y16{bottom:650.813333pt;}
.y49{bottom:653.853333pt;}
.y92{bottom:663.133333pt;}
.y15{bottom:669.213333pt;}
.y48{bottom:672.253333pt;}
.yc6{bottom:681.533333pt;}
.y14{bottom:687.613333pt;}
.y47{bottom:690.653333pt;}
.y67{bottom:699.933333pt;}
.y13{bottom:706.013333pt;}
.y46{bottom:709.053333pt;}
.y7c{bottom:718.333333pt;}
.y12{bottom:724.413333pt;}
.y45{bottom:727.453333pt;}
.yc3{bottom:736.733333pt;}
.y11{bottom:742.813333pt;}
.y44{bottom:745.853333pt;}
.y66{bottom:755.133333pt;}
.y10{bottom:761.213333pt;}
.y43{bottom:764.253333pt;}
.y7b{bottom:773.533333pt;}
.yf{bottom:779.653333pt;}
.y42{bottom:782.693333pt;}
.y91{bottom:791.973333pt;}
.ye{bottom:798.053333pt;}
.y41{bottom:801.093333pt;}
.y65{bottom:810.373333pt;}
.yd{bottom:816.453333pt;}
.y40{bottom:819.493333pt;}
.y7a{bottom:828.773333pt;}
.yc{bottom:834.853333pt;}
.y3f{bottom:837.893333pt;}
.yc5{bottom:847.173333pt;}
.yb{bottom:853.253333pt;}
.y3e{bottom:856.293333pt;}
.y64{bottom:865.573333pt;}
.ya{bottom:871.653333pt;}
.y3d{bottom:874.693333pt;}
.y79{bottom:883.973333pt;}
.y9{bottom:890.053333pt;}
.y3c{bottom:893.093333pt;}
.y78{bottom:902.373333pt;}
.y8{bottom:908.933333pt;}
.y3b{bottom:911.493333pt;}
.y63{bottom:920.773333pt;}
.y3a{bottom:929.893333pt;}
.y7{bottom:930.373333pt;}
.y39{bottom:948.293333pt;}
.y6{bottom:951.973333pt;}
.y38{bottom:966.693333pt;}
.y5{bottom:974.053333pt;}
.y62{bottom:975.973333pt;}
.y37{bottom:985.093333pt;}
.y4{bottom:998.533333pt;}
.y36{bottom:1003.493333pt;}
.y2{bottom:1040.160000pt;}
.y1{bottom:1059.520000pt;}
.h8{height:47.621250pt;}
.h2{height:52.785000pt;}
.h6{height:56.843750pt;}
.h7{height:57.375000pt;}
.h3{height:58.563750pt;}
.h5{height:67.128750pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519988pt;}
.xd{left:86.111988pt;}
.xb{left:92.031988pt;}
.xc{left:95.551988pt;}
.x2{left:103.711988pt;}
.x5{left:106.111988pt;}
.x9{left:113.311988pt;}
.x3{left:116.991988pt;}
.x12{left:142.266655pt;}
.x8{left:151.066655pt;}
.x7{left:205.946655pt;}
.x10{left:334.626655pt;}
.x6{left:346.146655pt;}
.xe{left:359.426655pt;}
.x4{left:396.866655pt;}
.x11{left:634.853322pt;}
.xf{left:648.133322pt;}
.xa{left:650.853322pt;}
}




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