
    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_236a4bf77edafbbac60a1e4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_7dd43c01962166e0e7f99c97.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_2014a1b2e2927390c466f6af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_2b22d361967ea54df554a8b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_98a3047a422a5e26872b5d99.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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;}
.ls6{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.034560px;}
.ls0{letter-spacing:0.054720px;}
.ls1{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.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:-15.102720px;}
.ws0{word-spacing:-13.734480px;}
.ws2{word-spacing:-13.680000px;}
.ws1{word-spacing:-13.625280px;}
.ws6{word-spacing:-12.294000px;}
.ws5{word-spacing:-12.024000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-1.589760px;}
._3{width:1.391520px;}
._0{width:2.779920px;}
._1{width:4.015200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:12.240000px;}
.fs6{font-size:33.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y3{bottom:-21.090000px;}
.y2{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:0.885000px;}
.y56{bottom:0.892500px;}
.yc{bottom:0.900000px;}
.y1f{bottom:1.080000px;}
.y63{bottom:2.880000px;}
.y14{bottom:3.420000px;}
.y4b{bottom:3.585000px;}
.y54{bottom:3.592500px;}
.y1a{bottom:3.600000px;}
.y59{bottom:3.780000px;}
.y50{bottom:4.125000px;}
.ye{bottom:4.140000px;}
.y12{bottom:4.320000px;}
.y5b{bottom:4.500000px;}
.y5e{bottom:4.680000px;}
.y9{bottom:4.860000px;}
.y5d{bottom:5.220000px;}
.y11{bottom:5.400000px;}
.yf{bottom:6.840000px;}
.y6e{bottom:7.020000px;}
.y64{bottom:10.650000px;}
.y5{bottom:15.120000px;}
.y60{bottom:15.690000px;}
.y61{bottom:17.310000px;}
.y62{bottom:18.390000px;}
.y4a{bottom:20.685000px;}
.y3e{bottom:20.700000px;}
.y6a{bottom:22.680000px;}
.y1d{bottom:23.040000px;}
.y30{bottom:24.120000px;}
.y6b{bottom:24.300000px;}
.y4f{bottom:24.825000px;}
.y24{bottom:25.020000px;}
.y51{bottom:27.525000px;}
.y3a{bottom:27.540000px;}
.y8{bottom:28.980000px;}
.ya{bottom:34.560000px;}
.y75{bottom:35.280000px;}
.y49{bottom:37.965000px;}
.y3d{bottom:37.980000px;}
.y2f{bottom:41.400000px;}
.y39{bottom:44.820000px;}
.y23{bottom:45.720000px;}
.y6{bottom:50.040000px;}
.y48{bottom:55.245000px;}
.y2e{bottom:58.500000px;}
.y38{bottom:61.920000px;}
.y58{bottom:68.400000px;}
.y47{bottom:72.345000px;}
.y2d{bottom:75.780000px;}
.y37{bottom:79.200000px;}
.y46{bottom:89.625000px;}
.y2c{bottom:92.880000px;}
.y57{bottom:93.600000px;}
.y36{bottom:96.480000px;}
.y45{bottom:106.725000px;}
.y2b{bottom:110.190000px;}
.y35{bottom:113.610000px;}
.yde{bottom:118.296000px;}
.y55{bottom:118.483500px;}
.y9e{bottom:119.376000px;}
.y44{bottom:124.005000px;}
.y2a{bottom:127.470000px;}
.y53{bottom:128.023500px;}
.y34{bottom:130.890000px;}
.ydd{bottom:135.396000px;}
.y9d{bottom:136.656000px;}
.y43{bottom:141.285000px;}
.y29{bottom:144.570000px;}
.y33{bottom:147.990000px;}
.ydc{bottom:152.670000px;}
.y52{bottom:152.865000px;}
.y9c{bottom:153.750000px;}
.y42{bottom:158.430000px;}
.y28{bottom:161.850000px;}
.y4e{bottom:162.405000px;}
.y32{bottom:165.270000px;}
.ydb{bottom:169.950000px;}
.y9b{bottom:171.030000px;}
.y41{bottom:175.710000px;}
.y27{bottom:179.850000px;}
.y31{bottom:182.550000px;}
.yda{bottom:187.050000px;}
.y9a{bottom:188.310000px;}
.yd9{bottom:204.330000px;}
.y99{bottom:205.410000px;}
.y4c{bottom:209.745000px;}
.y40{bottom:219.105000px;}
.yd8{bottom:221.430000px;}
.y98{bottom:222.690000px;}
.yd7{bottom:238.710000px;}
.y97{bottom:239.970000px;}
.yd6{bottom:255.990000px;}
.y96{bottom:257.070000px;}
.yd5{bottom:273.090000px;}
.y95{bottom:274.350000px;}
.yd4{bottom:290.370000px;}
.y94{bottom:291.450000px;}
.yd3{bottom:307.650000px;}
.y93{bottom:308.730000px;}
.yd2{bottom:324.750000px;}
.y92{bottom:326.010000px;}
.yd1{bottom:342.030000px;}
.y91{bottom:343.110000px;}
.yd0{bottom:359.130000px;}
.y90{bottom:360.390000px;}
.ycf{bottom:376.455000px;}
.y8f{bottom:377.715000px;}
.yce{bottom:393.735000px;}
.y8e{bottom:394.815000px;}
.ycd{bottom:410.835000px;}
.y8d{bottom:412.095000px;}
.y3f{bottom:414.435000px;}
.ycc{bottom:428.115000px;}
.y8c{bottom:429.195000px;}
.ycb{bottom:445.395000px;}
.y8b{bottom:446.475000px;}
.y3c{bottom:454.935000px;}
.yca{bottom:462.495000px;}
.y8a{bottom:463.755000px;}
.yc9{bottom:479.775000px;}
.y89{bottom:480.855000px;}
.yc8{bottom:496.875000px;}
.y88{bottom:498.135000px;}
.y3b{bottom:512.535000px;}
.yc7{bottom:514.155000px;}
.y87{bottom:515.235000px;}
.y26{bottom:525.495000px;}
.yc6{bottom:531.435000px;}
.y86{bottom:532.515000px;}
.yc5{bottom:548.535000px;}
.y85{bottom:549.795000px;}
.yc4{bottom:565.815000px;}
.y84{bottom:566.895000px;}
.yc3{bottom:583.095000px;}
.y83{bottom:584.175000px;}
.yc2{bottom:600.195000px;}
.y82{bottom:601.455000px;}
.yc1{bottom:617.475000px;}
.y81{bottom:618.555000px;}
.yc0{bottom:634.605000px;}
.y80{bottom:635.865000px;}
.ybf{bottom:651.885000px;}
.y7f{bottom:652.965000px;}
.ybe{bottom:669.165000px;}
.y7e{bottom:670.245000px;}
.ybd{bottom:686.265000px;}
.y7d{bottom:687.525000px;}
.ybc{bottom:703.545000px;}
.y7c{bottom:704.625000px;}
.ybb{bottom:720.825000px;}
.y7b{bottom:721.905000px;}
.y25{bottom:727.665000px;}
.y22{bottom:737.025000px;}
.yba{bottom:737.925000px;}
.y7a{bottom:739.185000px;}
.yb9{bottom:755.205000px;}
.y79{bottom:756.285000px;}
.yb8{bottom:772.305000px;}
.y78{bottom:773.565000px;}
.yb7{bottom:789.585000px;}
.y77{bottom:790.665000px;}
.y21{bottom:805.065000px;}
.yb6{bottom:806.865000px;}
.y76{bottom:807.945000px;}
.y20{bottom:814.425000px;}
.yb5{bottom:823.965000px;}
.y74{bottom:824.685000px;}
.y1e{bottom:837.645000px;}
.yb4{bottom:841.245000px;}
.y1c{bottom:847.185000px;}
.yb3{bottom:857.085000px;}
.yb2{bottom:867.885000px;}
.y73{bottom:882.330000px;}
.yb1{bottom:885.210000px;}
.y1b{bottom:890.070000px;}
.y72{bottom:891.690000px;}
.y19{bottom:899.430000px;}
.y71{bottom:901.230000px;}
.yb0{bottom:902.310000px;}
.yaf{bottom:919.590000px;}
.y18{bottom:922.650000px;}
.y70{bottom:926.070000px;}
.y17{bottom:932.190000px;}
.y6f{bottom:935.610000px;}
.yae{bottom:936.870000px;}
.y6d{bottom:944.970000px;}
.yad{bottom:953.970000px;}
.y16{bottom:955.410000px;}
.yac{bottom:971.250000px;}
.y15{bottom:978.630000px;}
.yab{bottom:988.530000px;}
.y6c{bottom:988.890000px;}
.y69{bottom:998.250000px;}
.y13{bottom:1001.850000px;}
.yaa{bottom:1005.630000px;}
.ya9{bottom:1022.910000px;}
.y10{bottom:1024.890000px;}
.ya8{bottom:1040.010000px;}
.y68{bottom:1042.170000px;}
.yd{bottom:1051.710000px;}
.ya7{bottom:1057.290000px;}
.y67{bottom:1061.070000px;}
.ya6{bottom:1074.570000px;}
.yb{bottom:1078.350000px;}
.y66{bottom:1086.090000px;}
.y7{bottom:1087.710000px;}
.ya5{bottom:1091.670000px;}
.y65{bottom:1100.850000px;}
.ya4{bottom:1108.950000px;}
.y5f{bottom:1125.330000px;}
.ya3{bottom:1126.230000px;}
.y1{bottom:1141.920000px;}
.ya2{bottom:1143.360000px;}
.ya1{bottom:1160.640000px;}
.y5c{bottom:1163.520000px;}
.y4{bottom:1176.840000px;}
.ya0{bottom:1177.740000px;}
.y5a{bottom:1188.540000px;}
.y9f{bottom:1195.020000px;}
.h7{height:3.405000px;}
.h1e{height:3.412500px;}
.h12{height:3.420000px;}
.h29{height:3.585000px;}
.h10{height:3.600000px;}
.h17{height:6.825000px;}
.h8{height:8.923008px;}
.hd{height:17.085000px;}
.h21{height:17.100000px;}
.he{height:17.265000px;}
.h11{height:17.280000px;}
.h27{height:18.885000px;}
.h1c{height:18.892500px;}
.h1f{height:18.898500px;}
.h24{height:18.900000px;}
.h20{height:19.078500px;}
.h9{height:20.505000px;}
.hb{height:20.685000px;}
.h4{height:28.800000px;}
.h25{height:30.990000px;}
.h2b{height:32.489297px;}
.h19{height:34.365000px;}
.hf{height:36.742500px;}
.h28{height:37.965000px;}
.h26{height:38.654297px;}
.h23{height:39.366211px;}
.h1b{height:41.205000px;}
.h22{height:42.777422px;}
.h3{height:43.565273px;}
.h5{height:48.270000px;}
.hc{height:48.289219px;}
.h18{height:51.645000px;}
.h2a{height:51.660000px;}
.h16{height:52.488281px;}
.h15{height:54.361758px;}
.h1d{height:60.256406px;}
.h13{height:62.100000px;}
.h2{height:63.720000px;}
.ha{height:65.496094px;}
.h6{height:76.630430px;}
.h1a{height:189.375000px;}
.h14{height:196.230000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:10.620000px;}
.w15{width:20.865000px;}
.w9{width:20.880000px;}
.w13{width:21.045000px;}
.w11{width:21.060000px;}
.w14{width:91.245000px;}
.w16{width:91.281000px;}
.w17{width:91.290000px;}
.w12{width:91.296000px;}
.w18{width:91.800000px;}
.wf{width:112.341000px;}
.wd{width:112.536000px;}
.we{width:112.665000px;}
.wc{width:112.680000px;}
.w10{width:112.710000px;}
.w7{width:148.881000px;}
.w2{width:212.653500px;}
.w8{width:212.790000px;}
.w6{width:223.050000px;}
.w5{width:223.273500px;}
.wa{width:225.210000px;}
.wb{width:225.240000px;}
.w4{width:584.745000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2e{left:4.500000px;}
.x3{left:8.458500px;}
.x28{left:10.620000px;}
.x34{left:18.358500px;}
.x2b{left:19.605000px;}
.x19{left:21.958500px;}
.x6{left:24.478500px;}
.x9{left:29.014500px;}
.x27{left:33.660000px;}
.x1e{left:36.574500px;}
.x2a{left:39.405000px;}
.x1b{left:43.954500px;}
.x1{left:54.001500px;}
.x2d{left:56.340000px;}
.x14{left:62.134500px;}
.x35{left:63.394500px;}
.x23{left:67.500000px;}
.x25{left:70.050000px;}
.x8{left:76.174500px;}
.xf{left:82.834500px;}
.x1f{left:88.414500px;}
.x37{left:100.468500px;}
.x11{left:105.328500px;}
.x1c{left:106.768500px;}
.x20{left:108.748500px;}
.x1d{left:111.628500px;}
.x21{left:125.308500px;}
.x10{left:136.828500px;}
.xd{left:140.430000px;}
.x18{left:142.228500px;}
.x1a{left:146.368500px;}
.x13{left:149.068500px;}
.xb{left:152.488500px;}
.xa{left:158.788500px;}
.x36{left:160.588500px;}
.x17{left:162.748500px;}
.x7{left:169.768500px;}
.x16{left:182.548500px;}
.x12{left:186.688500px;}
.x2{left:204.193500px;}
.x15{left:214.813500px;}
.x4{left:266.655000px;}
.x5{left:277.275000px;}
.x22{left:298.515000px;}
.x2f{left:319.575000px;}
.x29{left:411.060000px;}
.x30{left:432.300000px;}
.xc{left:500.340000px;}
.x24{left:523.920000px;}
.x31{left:544.980000px;}
.x2c{left:636.450000px;}
.xe{left:649.230000px;}
.x32{left:657.690000px;}
.x26{left:749.340000px;}
.x33{left:770.220000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.030720pt;}
.ls0{letter-spacing:0.048640pt;}
.ls1{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.ws3{word-spacing:-13.424640pt;}
.ws0{word-spacing:-12.208427pt;}
.ws2{word-spacing:-12.160000pt;}
.ws1{word-spacing:-12.111360pt;}
.ws6{word-spacing:-10.928000pt;}
.ws5{word-spacing:-10.688000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-1.413120pt;}
._3{width:1.236907pt;}
._0{width:2.471040pt;}
._1{width:3.569067pt;}
.fs2{font-size:10.880000pt;}
.fs6{font-size:29.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y3{bottom:-18.746667pt;}
.y2{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.786667pt;}
.y56{bottom:0.793333pt;}
.yc{bottom:0.800000pt;}
.y1f{bottom:0.960000pt;}
.y63{bottom:2.560000pt;}
.y14{bottom:3.040000pt;}
.y4b{bottom:3.186667pt;}
.y54{bottom:3.193333pt;}
.y1a{bottom:3.200000pt;}
.y59{bottom:3.360000pt;}
.y50{bottom:3.666667pt;}
.ye{bottom:3.680000pt;}
.y12{bottom:3.840000pt;}
.y5b{bottom:4.000000pt;}
.y5e{bottom:4.160000pt;}
.y9{bottom:4.320000pt;}
.y5d{bottom:4.640000pt;}
.y11{bottom:4.800000pt;}
.yf{bottom:6.080000pt;}
.y6e{bottom:6.240000pt;}
.y64{bottom:9.466667pt;}
.y5{bottom:13.440000pt;}
.y60{bottom:13.946667pt;}
.y61{bottom:15.386667pt;}
.y62{bottom:16.346667pt;}
.y4a{bottom:18.386667pt;}
.y3e{bottom:18.400000pt;}
.y6a{bottom:20.160000pt;}
.y1d{bottom:20.480000pt;}
.y30{bottom:21.440000pt;}
.y6b{bottom:21.600000pt;}
.y4f{bottom:22.066667pt;}
.y24{bottom:22.240000pt;}
.y51{bottom:24.466667pt;}
.y3a{bottom:24.480000pt;}
.y8{bottom:25.760000pt;}
.ya{bottom:30.720000pt;}
.y75{bottom:31.360000pt;}
.y49{bottom:33.746667pt;}
.y3d{bottom:33.760000pt;}
.y2f{bottom:36.800000pt;}
.y39{bottom:39.840000pt;}
.y23{bottom:40.640000pt;}
.y6{bottom:44.480000pt;}
.y48{bottom:49.106667pt;}
.y2e{bottom:52.000000pt;}
.y38{bottom:55.040000pt;}
.y58{bottom:60.800000pt;}
.y47{bottom:64.306667pt;}
.y2d{bottom:67.360000pt;}
.y37{bottom:70.400000pt;}
.y46{bottom:79.666667pt;}
.y2c{bottom:82.560000pt;}
.y57{bottom:83.200000pt;}
.y36{bottom:85.760000pt;}
.y45{bottom:94.866667pt;}
.y2b{bottom:97.946667pt;}
.y35{bottom:100.986667pt;}
.yde{bottom:105.152000pt;}
.y55{bottom:105.318667pt;}
.y9e{bottom:106.112000pt;}
.y44{bottom:110.226667pt;}
.y2a{bottom:113.306667pt;}
.y53{bottom:113.798667pt;}
.y34{bottom:116.346667pt;}
.ydd{bottom:120.352000pt;}
.y9d{bottom:121.472000pt;}
.y43{bottom:125.586667pt;}
.y29{bottom:128.506667pt;}
.y33{bottom:131.546667pt;}
.ydc{bottom:135.706667pt;}
.y52{bottom:135.880000pt;}
.y9c{bottom:136.666667pt;}
.y42{bottom:140.826667pt;}
.y28{bottom:143.866667pt;}
.y4e{bottom:144.360000pt;}
.y32{bottom:146.906667pt;}
.ydb{bottom:151.066667pt;}
.y9b{bottom:152.026667pt;}
.y41{bottom:156.186667pt;}
.y27{bottom:159.866667pt;}
.y31{bottom:162.266667pt;}
.yda{bottom:166.266667pt;}
.y9a{bottom:167.386667pt;}
.yd9{bottom:181.626667pt;}
.y99{bottom:182.586667pt;}
.y4c{bottom:186.440000pt;}
.y40{bottom:194.760000pt;}
.yd8{bottom:196.826667pt;}
.y98{bottom:197.946667pt;}
.yd7{bottom:212.186667pt;}
.y97{bottom:213.306667pt;}
.yd6{bottom:227.546667pt;}
.y96{bottom:228.506667pt;}
.yd5{bottom:242.746667pt;}
.y95{bottom:243.866667pt;}
.yd4{bottom:258.106667pt;}
.y94{bottom:259.066667pt;}
.yd3{bottom:273.466667pt;}
.y93{bottom:274.426667pt;}
.yd2{bottom:288.666667pt;}
.y92{bottom:289.786667pt;}
.yd1{bottom:304.026667pt;}
.y91{bottom:304.986667pt;}
.yd0{bottom:319.226667pt;}
.y90{bottom:320.346667pt;}
.ycf{bottom:334.626667pt;}
.y8f{bottom:335.746667pt;}
.yce{bottom:349.986667pt;}
.y8e{bottom:350.946667pt;}
.ycd{bottom:365.186667pt;}
.y8d{bottom:366.306667pt;}
.y3f{bottom:368.386667pt;}
.ycc{bottom:380.546667pt;}
.y8c{bottom:381.506667pt;}
.ycb{bottom:395.906667pt;}
.y8b{bottom:396.866667pt;}
.y3c{bottom:404.386667pt;}
.yca{bottom:411.106667pt;}
.y8a{bottom:412.226667pt;}
.yc9{bottom:426.466667pt;}
.y89{bottom:427.426667pt;}
.yc8{bottom:441.666667pt;}
.y88{bottom:442.786667pt;}
.y3b{bottom:455.586667pt;}
.yc7{bottom:457.026667pt;}
.y87{bottom:457.986667pt;}
.y26{bottom:467.106667pt;}
.yc6{bottom:472.386667pt;}
.y86{bottom:473.346667pt;}
.yc5{bottom:487.586667pt;}
.y85{bottom:488.706667pt;}
.yc4{bottom:502.946667pt;}
.y84{bottom:503.906667pt;}
.yc3{bottom:518.306667pt;}
.y83{bottom:519.266667pt;}
.yc2{bottom:533.506667pt;}
.y82{bottom:534.626667pt;}
.yc1{bottom:548.866667pt;}
.y81{bottom:549.826667pt;}
.yc0{bottom:564.093333pt;}
.y80{bottom:565.213333pt;}
.ybf{bottom:579.453333pt;}
.y7f{bottom:580.413333pt;}
.ybe{bottom:594.813333pt;}
.y7e{bottom:595.773333pt;}
.ybd{bottom:610.013333pt;}
.y7d{bottom:611.133333pt;}
.ybc{bottom:625.373333pt;}
.y7c{bottom:626.333333pt;}
.ybb{bottom:640.733333pt;}
.y7b{bottom:641.693333pt;}
.y25{bottom:646.813333pt;}
.y22{bottom:655.133333pt;}
.yba{bottom:655.933333pt;}
.y7a{bottom:657.053333pt;}
.yb9{bottom:671.293333pt;}
.y79{bottom:672.253333pt;}
.yb8{bottom:686.493333pt;}
.y78{bottom:687.613333pt;}
.yb7{bottom:701.853333pt;}
.y77{bottom:702.813333pt;}
.y21{bottom:715.613333pt;}
.yb6{bottom:717.213333pt;}
.y76{bottom:718.173333pt;}
.y20{bottom:723.933333pt;}
.yb5{bottom:732.413333pt;}
.y74{bottom:733.053333pt;}
.y1e{bottom:744.573333pt;}
.yb4{bottom:747.773333pt;}
.y1c{bottom:753.053333pt;}
.yb3{bottom:761.853333pt;}
.yb2{bottom:771.453333pt;}
.y73{bottom:784.293333pt;}
.yb1{bottom:786.853333pt;}
.y1b{bottom:791.173333pt;}
.y72{bottom:792.613333pt;}
.y19{bottom:799.493333pt;}
.y71{bottom:801.093333pt;}
.yb0{bottom:802.053333pt;}
.yaf{bottom:817.413333pt;}
.y18{bottom:820.133333pt;}
.y70{bottom:823.173333pt;}
.y17{bottom:828.613333pt;}
.y6f{bottom:831.653333pt;}
.yae{bottom:832.773333pt;}
.y6d{bottom:839.973333pt;}
.yad{bottom:847.973333pt;}
.y16{bottom:849.253333pt;}
.yac{bottom:863.333333pt;}
.y15{bottom:869.893333pt;}
.yab{bottom:878.693333pt;}
.y6c{bottom:879.013333pt;}
.y69{bottom:887.333333pt;}
.y13{bottom:890.533333pt;}
.yaa{bottom:893.893333pt;}
.ya9{bottom:909.253333pt;}
.y10{bottom:911.013333pt;}
.ya8{bottom:924.453333pt;}
.y68{bottom:926.373333pt;}
.yd{bottom:934.853333pt;}
.ya7{bottom:939.813333pt;}
.y67{bottom:943.173333pt;}
.ya6{bottom:955.173333pt;}
.yb{bottom:958.533333pt;}
.y66{bottom:965.413333pt;}
.y7{bottom:966.853333pt;}
.ya5{bottom:970.373333pt;}
.y65{bottom:978.533333pt;}
.ya4{bottom:985.733333pt;}
.y5f{bottom:1000.293333pt;}
.ya3{bottom:1001.093333pt;}
.y1{bottom:1015.040000pt;}
.ya2{bottom:1016.320000pt;}
.ya1{bottom:1031.680000pt;}
.y5c{bottom:1034.240000pt;}
.y4{bottom:1046.080000pt;}
.ya0{bottom:1046.880000pt;}
.y5a{bottom:1056.480000pt;}
.y9f{bottom:1062.240000pt;}
.h7{height:3.026667pt;}
.h1e{height:3.033333pt;}
.h12{height:3.040000pt;}
.h29{height:3.186667pt;}
.h10{height:3.200000pt;}
.h17{height:6.066667pt;}
.h8{height:7.931562pt;}
.hd{height:15.186667pt;}
.h21{height:15.200000pt;}
.he{height:15.346667pt;}
.h11{height:15.360000pt;}
.h27{height:16.786667pt;}
.h1c{height:16.793333pt;}
.h1f{height:16.798667pt;}
.h24{height:16.800000pt;}
.h20{height:16.958667pt;}
.h9{height:18.226667pt;}
.hb{height:18.386667pt;}
.h4{height:25.600000pt;}
.h25{height:27.546667pt;}
.h2b{height:28.879375pt;}
.h19{height:30.546667pt;}
.hf{height:32.660000pt;}
.h28{height:33.746667pt;}
.h26{height:34.359375pt;}
.h23{height:34.992188pt;}
.h1b{height:36.626667pt;}
.h22{height:38.024375pt;}
.h3{height:38.724688pt;}
.h5{height:42.906667pt;}
.hc{height:42.923750pt;}
.h18{height:45.906667pt;}
.h2a{height:45.920000pt;}
.h16{height:46.656250pt;}
.h15{height:48.321562pt;}
.h1d{height:53.561250pt;}
.h13{height:55.200000pt;}
.h2{height:56.640000pt;}
.ha{height:58.218750pt;}
.h6{height:68.115938pt;}
.h1a{height:168.333333pt;}
.h14{height:174.426667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:9.440000pt;}
.w15{width:18.546667pt;}
.w9{width:18.560000pt;}
.w13{width:18.706667pt;}
.w11{width:18.720000pt;}
.w14{width:81.106667pt;}
.w16{width:81.138667pt;}
.w17{width:81.146667pt;}
.w12{width:81.152000pt;}
.w18{width:81.600000pt;}
.wf{width:99.858667pt;}
.wd{width:100.032000pt;}
.we{width:100.146667pt;}
.wc{width:100.160000pt;}
.w10{width:100.186667pt;}
.w7{width:132.338667pt;}
.w2{width:189.025333pt;}
.w8{width:189.146667pt;}
.w6{width:198.266667pt;}
.w5{width:198.465333pt;}
.wa{width:200.186667pt;}
.wb{width:200.213333pt;}
.w4{width:519.773333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2e{left:4.000000pt;}
.x3{left:7.518667pt;}
.x28{left:9.440000pt;}
.x34{left:16.318667pt;}
.x2b{left:17.426667pt;}
.x19{left:19.518667pt;}
.x6{left:21.758667pt;}
.x9{left:25.790667pt;}
.x27{left:29.920000pt;}
.x1e{left:32.510667pt;}
.x2a{left:35.026667pt;}
.x1b{left:39.070667pt;}
.x1{left:48.001333pt;}
.x2d{left:50.080000pt;}
.x14{left:55.230667pt;}
.x35{left:56.350667pt;}
.x23{left:60.000000pt;}
.x25{left:62.266667pt;}
.x8{left:67.710667pt;}
.xf{left:73.630667pt;}
.x1f{left:78.590667pt;}
.x37{left:89.305333pt;}
.x11{left:93.625333pt;}
.x1c{left:94.905333pt;}
.x20{left:96.665333pt;}
.x1d{left:99.225333pt;}
.x21{left:111.385333pt;}
.x10{left:121.625333pt;}
.xd{left:124.826667pt;}
.x18{left:126.425333pt;}
.x1a{left:130.105333pt;}
.x13{left:132.505333pt;}
.xb{left:135.545333pt;}
.xa{left:141.145333pt;}
.x36{left:142.745333pt;}
.x17{left:144.665333pt;}
.x7{left:150.905333pt;}
.x16{left:162.265333pt;}
.x12{left:165.945333pt;}
.x2{left:181.505333pt;}
.x15{left:190.945333pt;}
.x4{left:237.026667pt;}
.x5{left:246.466667pt;}
.x22{left:265.346667pt;}
.x2f{left:284.066667pt;}
.x29{left:365.386667pt;}
.x30{left:384.266667pt;}
.xc{left:444.746667pt;}
.x24{left:465.706667pt;}
.x31{left:484.426667pt;}
.x2c{left:565.733333pt;}
.xe{left:577.093333pt;}
.x32{left:584.613333pt;}
.x26{left:666.080000pt;}
.x33{left:684.640000pt;}
}




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