
    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_a52eefb53b3bbd071916a6eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_15b4dc7f95660b8ebd518bde.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_819507d2cea20ecef7e35100.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_2312e28ed8b02baf427247a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_0e5e0f7bae2d8e300726d788.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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;}
.lsd{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.538800px;}
.ls7{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls5{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.156000px;}
.ls9{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.620000px;}
.lsb{letter-spacing:3.060000px;}
.ls2{letter-spacing:31.265280px;}
.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:-16.560000px;}
.ws8{word-spacing:-16.254600px;}
.ws0{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.482000px;}
.ws4{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.836200px;}
.ws3{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-12.960000px;}
._20{margin-left:-5.126400px;}
._a{margin-left:-3.987360px;}
._b{margin-left:-2.862000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._c{width:2.404080px;}
._5{width:3.510000px;}
._7{width:4.702080px;}
._e{width:6.097680px;}
._d{width:7.614000px;}
._11{width:8.856000px;}
._10{width:10.800000px;}
._6{width:12.096000px;}
._14{width:13.354560px;}
._4{width:14.634000px;}
._9{width:16.465680px;}
._8{width:17.550000px;}
._1e{width:18.625680px;}
._13{width:19.709280px;}
._f{width:20.844000px;}
._15{width:22.380480px;}
._1d{width:23.788800px;}
._19{width:25.171200px;}
._12{width:26.850000px;}
._2{width:28.074000px;}
._3{width:29.490000px;}
._18{width:30.620880px;}
._17{width:31.728960px;}
._16{width:32.869440px;}
._1f{width:34.099200px;}
._1c{width:38.116800px;}
._1a{width:39.280320px;}
._1b{width:40.420800px;}
.fc4{color:rgb(155,0,0);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.880000px;}
.y2{bottom:5.400000px;}
.y47{bottom:8.640000px;}
.y33{bottom:18.405000px;}
.y48{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:29.010000px;}
.y32{bottom:33.885000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y31{bottom:49.545000px;}
.ya{bottom:56.340000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y30{bottom:65.025000px;}
.y2f{bottom:80.505000px;}
.y2e{bottom:95.985000px;}
.y57{bottom:110.340000px;}
.y2d{bottom:111.465000px;}
.y56{bottom:114.840000px;}
.y9b{bottom:124.020000px;}
.y55{bottom:125.100000px;}
.y2c{bottom:127.125000px;}
.y9a{bottom:128.520000px;}
.yc1{bottom:129.600000px;}
.y99{bottom:137.880000px;}
.ya9{bottom:142.380000px;}
.y2b{bottom:142.605000px;}
.yc0{bottom:151.560000px;}
.y98{bottom:151.740000px;}
.y97{bottom:156.240000px;}
.y2a{bottom:158.085000px;}
.y54{bottom:165.240000px;}
.y96{bottom:165.420000px;}
.yad{bottom:166.500000px;}
.ya8{bottom:169.920000px;}
.ybf{bottom:173.340000px;}
.y29{bottom:173.565000px;}
.y95{bottom:179.280000px;}
.ya7{bottom:180.360000px;}
.y94{bottom:183.780000px;}
.y53{bottom:187.020000px;}
.y28{bottom:189.225000px;}
.y93{bottom:193.140000px;}
.yac{bottom:195.120000px;}
.y92{bottom:197.640000px;}
.y27{bottom:204.705000px;}
.y91{bottom:206.820000px;}
.yba{bottom:207.900000px;}
.y51{bottom:208.800000px;}
.y90{bottom:211.350000px;}
.y52{bottom:214.770000px;}
.ya5{bottom:216.930000px;}
.y26{bottom:220.185000px;}
.y8f{bottom:220.710000px;}
.yb0{bottom:221.790000px;}
.ya6{bottom:222.870000px;}
.ybe{bottom:225.210000px;}
.y50{bottom:230.790000px;}
.y8e{bottom:234.570000px;}
.ybd{bottom:235.470000px;}
.y25{bottom:235.665000px;}
.ya4{bottom:238.890000px;}
.y8d{bottom:239.070000px;}
.y8c{bottom:248.250000px;}
.y45{bottom:250.815000px;}
.y24{bottom:251.355000px;}
.y4f{bottom:252.570000px;}
.y8b{bottom:252.750000px;}
.ya3{bottom:260.670000px;}
.y8a{bottom:262.110000px;}
.y44{bottom:264.675000px;}
.y89{bottom:266.610000px;}
.y23{bottom:266.835000px;}
.y4e{bottom:274.350000px;}
.y88{bottom:275.970000px;}
.y43{bottom:278.535000px;}
.y87{bottom:280.470000px;}
.y22{bottom:282.315000px;}
.ya2{bottom:282.450000px;}
.y86{bottom:289.650000px;}
.y42{bottom:292.215000px;}
.y85{bottom:294.150000px;}
.y4d{bottom:296.130000px;}
.y21{bottom:297.795000px;}
.ya1{bottom:304.230000px;}
.y84{bottom:304.410000px;}
.y41{bottom:306.075000px;}
.y20{bottom:313.455000px;}
.y4c{bottom:317.910000px;}
.y40{bottom:319.935000px;}
.ya0{bottom:326.010000px;}
.y1f{bottom:328.935000px;}
.y3f{bottom:334.155000px;}
.y4b{bottom:339.870000px;}
.y1e{bottom:344.415000px;}
.y9e{bottom:347.970000px;}
.y3e{bottom:349.635000px;}
.y9f{bottom:353.910000px;}
.y1d{bottom:359.895000px;}
.y4a{bottom:361.650000px;}
.y3d{bottom:365.115000px;}
.y82{bottom:369.750000px;}
.y1c{bottom:375.555000px;}
.y83{bottom:375.690000px;}
.y3c{bottom:380.595000px;}
.y49{bottom:383.430000px;}
.y1b{bottom:391.035000px;}
.y81{bottom:391.530000px;}
.y3b{bottom:396.255000px;}
.y46{bottom:398.910000px;}
.y1a{bottom:406.515000px;}
.y3a{bottom:411.735000px;}
.y80{bottom:413.310000px;}
.y19{bottom:421.995000px;}
.y39{bottom:427.215000px;}
.y13{bottom:430.050000px;}
.y7f{bottom:435.090000px;}
.y18{bottom:437.655000px;}
.yb9{bottom:441.030000px;}
.y38{bottom:442.695000px;}
.y17{bottom:453.135000px;}
.y7d{bottom:457.095000px;}
.y37{bottom:457.815000px;}
.y7e{bottom:463.035000px;}
.y16{bottom:468.615000px;}
.y36{bottom:471.675000px;}
.y7c{bottom:478.875000px;}
.y15{bottom:484.095000px;}
.y35{bottom:485.535000px;}
.y14{bottom:499.800000px;}
.y7b{bottom:500.655000px;}
.yb5{bottom:506.595000px;}
.y7a{bottom:522.435000px;}
.yb8{bottom:528.375000px;}
.y78{bottom:544.395000px;}
.y79{bottom:550.335000px;}
.y77{bottom:566.175000px;}
.y76{bottom:587.955000px;}
.y75{bottom:609.735000px;}
.ybc{bottom:615.675000px;}
.y74{bottom:631.515000px;}
.yb2{bottom:637.455000px;}
.y73{bottom:653.475000px;}
.y71{bottom:675.255000px;}
.y72{bottom:681.225000px;}
.y70{bottom:697.065000px;}
.ybb{bottom:703.005000px;}
.y6e{bottom:718.845000px;}
.y6f{bottom:724.785000px;}
.y6d{bottom:740.805000px;}
.yab{bottom:746.745000px;}
.y6c{bottom:762.585000px;}
.yaa{bottom:768.525000px;}
.y6b{bottom:784.365000px;}
.y9d{bottom:790.305000px;}
.y6a{bottom:806.145000px;}
.yaf{bottom:812.085000px;}
.y69{bottom:827.925000px;}
.yb4{bottom:833.865000px;}
.y67{bottom:849.885000px;}
.y68{bottom:855.825000px;}
.y66{bottom:871.665000px;}
.yb7{bottom:877.605000px;}
.y65{bottom:893.445000px;}
.yb1{bottom:899.385000px;}
.y64{bottom:915.225000px;}
.yae{bottom:921.210000px;}
.y63{bottom:937.230000px;}
.y12{bottom:948.210000px;}
.y61{bottom:959.010000px;}
.y62{bottom:964.950000px;}
.y11{bottom:965.850000px;}
.y60{bottom:980.790000px;}
.y10{bottom:984.930000px;}
.yb3{bottom:986.730000px;}
.y5e{bottom:1002.570000px;}
.yf{bottom:1003.830000px;}
.y5f{bottom:1008.510000px;}
.ye{bottom:1022.730000px;}
.y5d{bottom:1024.350000px;}
.y9c{bottom:1030.290000px;}
.yd{bottom:1042.170000px;}
.y5c{bottom:1046.310000px;}
.yb6{bottom:1052.250000px;}
.yc{bottom:1064.670000px;}
.y5a{bottom:1068.090000px;}
.y5b{bottom:1074.030000px;}
.yb{bottom:1087.170000px;}
.y58{bottom:1089.870000px;}
.y59{bottom:1095.810000px;}
.y9{bottom:1108.770000px;}
.y1{bottom:1131.090000px;}
.h15{height:21.114844px;}
.h14{height:29.158594px;}
.h13{height:31.140000px;}
.h10{height:33.683203px;}
.h12{height:34.036523px;}
.hd{height:37.705078px;}
.hf{height:38.100586px;}
.h7{height:39.147891px;}
.h11{height:39.760312px;}
.hb{height:41.726953px;}
.h3{height:42.164648px;}
.he{height:44.507812px;}
.h9{height:46.251562px;}
.ha{height:46.736719px;}
.h6{height:48.224531px;}
.h5{height:49.255313px;}
.h4{height:50.800781px;}
.h16{height:54.596250px;}
.h8{height:54.864844px;}
.h2{height:77.436000px;}
.hc{height:512.385000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:72.000000px;}
.w8{width:115.230000px;}
.w7{width:201.990000px;}
.w4{width:255.135000px;}
.w3{width:374.655000px;}
.w6{width:459.795000px;}
.w9{width:893.159973px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x14{left:30.600000px;}
.x2{left:59.574000px;}
.x6{left:105.705000px;}
.x1{left:108.036000px;}
.x17{left:111.815987px;}
.x11{left:116.136000px;}
.xa{left:129.815987px;}
.x7{left:131.805000px;}
.x64{left:140.075987px;}
.xb{left:145.115987px;}
.x15{left:150.509987px;}
.x3c{left:161.129987px;}
.x2a{left:167.069973px;}
.x4d{left:176.249973px;}
.x8{left:178.425000px;}
.x3{left:180.030000px;}
.x3f{left:181.829973px;}
.x4e{left:186.689987px;}
.x24{left:190.109973px;}
.x40{left:192.269987px;}
.x4b{left:193.349973px;}
.x25{left:195.329987px;}
.x4c{left:203.789987px;}
.xf{left:210.989987px;}
.x26{left:218.549973px;}
.x27{left:223.769987px;}
.x10{left:231.869987px;}
.x18{left:233.669973px;}
.x19{left:238.889987px;}
.x2f{left:250.229987px;}
.x55{left:255.089973px;}
.x56{left:265.574987px;}
.x28{left:275.114973px;}
.x51{left:279.974973px;}
.xc{left:281.594987px;}
.x29{left:285.554987px;}
.x62{left:286.994973px;}
.x52{left:290.414987px;}
.x1c{left:294.194973px;}
.x63{left:297.434987px;}
.x1d{left:299.414987px;}
.x3d{left:301.214973px;}
.x3e{left:311.654987px;}
.x16{left:324.074987px;}
.x49{left:346.574973px;}
.xe{left:352.874987px;}
.x4a{left:357.014987px;}
.x20{left:363.134973px;}
.x21{left:368.354987px;}
.x5c{left:396.434973px;}
.x2d{left:402.914973px;}
.x5d{left:406.874987px;}
.x2e{left:413.354987px;}
.xd{left:446.684987px;}
.x34{left:475.664973px;}
.x35{left:486.104987px;}
.x9{left:500.324987px;}
.x57{left:506.084973px;}
.x58{left:516.524987px;}
.x22{left:524.084973px;}
.x3a{left:527.864973px;}
.x23{left:529.304987px;}
.x4f{left:531.464973px;}
.x3b{left:538.304987px;}
.x50{left:541.904987px;}
.x59{left:550.724973px;}
.x53{left:553.424973px;}
.x5{left:554.685000px;}
.x5a{left:561.164987px;}
.x2b{left:562.604973px;}
.x54{left:563.864987px;}
.x2c{left:573.044987px;}
.x12{left:575.925000px;}
.x41{left:612.464973px;}
.x42{left:622.949987px;}
.x32{left:638.969973px;}
.x33{left:649.409987px;}
.x1a{left:660.749973px;}
.x30{left:663.809973px;}
.x1b{left:665.969987px;}
.x36{left:668.669973px;}
.x31{left:674.249987px;}
.x60{left:678.029973px;}
.x37{left:679.109987px;}
.x5e{left:685.589987px;}
.x61{left:688.469987px;}
.x43{left:696.209973px;}
.x45{left:700.349973px;}
.x44{left:706.649987px;}
.x46{left:710.789987px;}
.x5f{left:717.989973px;}
.x1e{left:723.749973px;}
.x47{left:726.269973px;}
.x1f{left:728.969987px;}
.x48{left:736.709987px;}
.x5b{left:746.789987px;}
.x38{left:774.869973px;}
.x13{left:777.930000px;}
.x39{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.478933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls5{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.138667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.800000pt;}
.lsa{letter-spacing:1.440000pt;}
.lsb{letter-spacing:2.720000pt;}
.ls2{letter-spacing:27.791360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws0{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.984000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.521067pt;}
.ws3{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-11.520000pt;}
._20{margin-left:-4.556800pt;}
._a{margin-left:-3.544320pt;}
._b{margin-left:-2.544000pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._c{width:2.136960pt;}
._5{width:3.120000pt;}
._7{width:4.179627pt;}
._e{width:5.420160pt;}
._d{width:6.768000pt;}
._11{width:7.872000pt;}
._10{width:9.600000pt;}
._6{width:10.752000pt;}
._14{width:11.870720pt;}
._4{width:13.008000pt;}
._9{width:14.636160pt;}
._8{width:15.600000pt;}
._1e{width:16.556160pt;}
._13{width:17.519360pt;}
._f{width:18.528000pt;}
._15{width:19.893760pt;}
._1d{width:21.145600pt;}
._19{width:22.374400pt;}
._12{width:23.866667pt;}
._2{width:24.954667pt;}
._3{width:26.213333pt;}
._18{width:27.218560pt;}
._17{width:28.203520pt;}
._16{width:29.217280pt;}
._1f{width:30.310400pt;}
._1c{width:33.881600pt;}
._1a{width:34.915840pt;}
._1b{width:35.929600pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.560000pt;}
.y2{bottom:4.800000pt;}
.y47{bottom:7.680000pt;}
.y33{bottom:16.360000pt;}
.y48{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.786667pt;}
.y32{bottom:30.120000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y31{bottom:44.040000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y30{bottom:57.800000pt;}
.y2f{bottom:71.560000pt;}
.y2e{bottom:85.320000pt;}
.y57{bottom:98.080000pt;}
.y2d{bottom:99.080000pt;}
.y56{bottom:102.080000pt;}
.y9b{bottom:110.240000pt;}
.y55{bottom:111.200000pt;}
.y2c{bottom:113.000000pt;}
.y9a{bottom:114.240000pt;}
.yc1{bottom:115.200000pt;}
.y99{bottom:122.560000pt;}
.ya9{bottom:126.560000pt;}
.y2b{bottom:126.760000pt;}
.yc0{bottom:134.720000pt;}
.y98{bottom:134.880000pt;}
.y97{bottom:138.880000pt;}
.y2a{bottom:140.520000pt;}
.y54{bottom:146.880000pt;}
.y96{bottom:147.040000pt;}
.yad{bottom:148.000000pt;}
.ya8{bottom:151.040000pt;}
.ybf{bottom:154.080000pt;}
.y29{bottom:154.280000pt;}
.y95{bottom:159.360000pt;}
.ya7{bottom:160.320000pt;}
.y94{bottom:163.360000pt;}
.y53{bottom:166.240000pt;}
.y28{bottom:168.200000pt;}
.y93{bottom:171.680000pt;}
.yac{bottom:173.440000pt;}
.y92{bottom:175.680000pt;}
.y27{bottom:181.960000pt;}
.y91{bottom:183.840000pt;}
.yba{bottom:184.800000pt;}
.y51{bottom:185.600000pt;}
.y90{bottom:187.866667pt;}
.y52{bottom:190.906667pt;}
.ya5{bottom:192.826667pt;}
.y26{bottom:195.720000pt;}
.y8f{bottom:196.186667pt;}
.yb0{bottom:197.146667pt;}
.ya6{bottom:198.106667pt;}
.ybe{bottom:200.186667pt;}
.y50{bottom:205.146667pt;}
.y8e{bottom:208.506667pt;}
.ybd{bottom:209.306667pt;}
.y25{bottom:209.480000pt;}
.ya4{bottom:212.346667pt;}
.y8d{bottom:212.506667pt;}
.y8c{bottom:220.666667pt;}
.y45{bottom:222.946667pt;}
.y24{bottom:223.426667pt;}
.y4f{bottom:224.506667pt;}
.y8b{bottom:224.666667pt;}
.ya3{bottom:231.706667pt;}
.y8a{bottom:232.986667pt;}
.y44{bottom:235.266667pt;}
.y89{bottom:236.986667pt;}
.y23{bottom:237.186667pt;}
.y4e{bottom:243.866667pt;}
.y88{bottom:245.306667pt;}
.y43{bottom:247.586667pt;}
.y87{bottom:249.306667pt;}
.y22{bottom:250.946667pt;}
.ya2{bottom:251.066667pt;}
.y86{bottom:257.466667pt;}
.y42{bottom:259.746667pt;}
.y85{bottom:261.466667pt;}
.y4d{bottom:263.226667pt;}
.y21{bottom:264.706667pt;}
.ya1{bottom:270.426667pt;}
.y84{bottom:270.586667pt;}
.y41{bottom:272.066667pt;}
.y20{bottom:278.626667pt;}
.y4c{bottom:282.586667pt;}
.y40{bottom:284.386667pt;}
.ya0{bottom:289.786667pt;}
.y1f{bottom:292.386667pt;}
.y3f{bottom:297.026667pt;}
.y4b{bottom:302.106667pt;}
.y1e{bottom:306.146667pt;}
.y9e{bottom:309.306667pt;}
.y3e{bottom:310.786667pt;}
.y9f{bottom:314.586667pt;}
.y1d{bottom:319.906667pt;}
.y4a{bottom:321.466667pt;}
.y3d{bottom:324.546667pt;}
.y82{bottom:328.666667pt;}
.y1c{bottom:333.826667pt;}
.y83{bottom:333.946667pt;}
.y3c{bottom:338.306667pt;}
.y49{bottom:340.826667pt;}
.y1b{bottom:347.586667pt;}
.y81{bottom:348.026667pt;}
.y3b{bottom:352.226667pt;}
.y46{bottom:354.586667pt;}
.y1a{bottom:361.346667pt;}
.y3a{bottom:365.986667pt;}
.y80{bottom:367.386667pt;}
.y19{bottom:375.106667pt;}
.y39{bottom:379.746667pt;}
.y13{bottom:382.266667pt;}
.y7f{bottom:386.746667pt;}
.y18{bottom:389.026667pt;}
.yb9{bottom:392.026667pt;}
.y38{bottom:393.506667pt;}
.y17{bottom:402.786667pt;}
.y7d{bottom:406.306667pt;}
.y37{bottom:406.946667pt;}
.y7e{bottom:411.586667pt;}
.y16{bottom:416.546667pt;}
.y36{bottom:419.266667pt;}
.y7c{bottom:425.666667pt;}
.y15{bottom:430.306667pt;}
.y35{bottom:431.586667pt;}
.y14{bottom:444.266667pt;}
.y7b{bottom:445.026667pt;}
.yb5{bottom:450.306667pt;}
.y7a{bottom:464.386667pt;}
.yb8{bottom:469.666667pt;}
.y78{bottom:483.906667pt;}
.y79{bottom:489.186667pt;}
.y77{bottom:503.266667pt;}
.y76{bottom:522.626667pt;}
.y75{bottom:541.986667pt;}
.ybc{bottom:547.266667pt;}
.y74{bottom:561.346667pt;}
.yb2{bottom:566.626667pt;}
.y73{bottom:580.866667pt;}
.y71{bottom:600.226667pt;}
.y72{bottom:605.533333pt;}
.y70{bottom:619.613333pt;}
.ybb{bottom:624.893333pt;}
.y6e{bottom:638.973333pt;}
.y6f{bottom:644.253333pt;}
.y6d{bottom:658.493333pt;}
.yab{bottom:663.773333pt;}
.y6c{bottom:677.853333pt;}
.yaa{bottom:683.133333pt;}
.y6b{bottom:697.213333pt;}
.y9d{bottom:702.493333pt;}
.y6a{bottom:716.573333pt;}
.yaf{bottom:721.853333pt;}
.y69{bottom:735.933333pt;}
.yb4{bottom:741.213333pt;}
.y67{bottom:755.453333pt;}
.y68{bottom:760.733333pt;}
.y66{bottom:774.813333pt;}
.yb7{bottom:780.093333pt;}
.y65{bottom:794.173333pt;}
.yb1{bottom:799.453333pt;}
.y64{bottom:813.533333pt;}
.yae{bottom:818.853333pt;}
.y63{bottom:833.093333pt;}
.y12{bottom:842.853333pt;}
.y61{bottom:852.453333pt;}
.y62{bottom:857.733333pt;}
.y11{bottom:858.533333pt;}
.y60{bottom:871.813333pt;}
.y10{bottom:875.493333pt;}
.yb3{bottom:877.093333pt;}
.y5e{bottom:891.173333pt;}
.yf{bottom:892.293333pt;}
.y5f{bottom:896.453333pt;}
.ye{bottom:909.093333pt;}
.y5d{bottom:910.533333pt;}
.y9c{bottom:915.813333pt;}
.yd{bottom:926.373333pt;}
.y5c{bottom:930.053333pt;}
.yb6{bottom:935.333333pt;}
.yc{bottom:946.373333pt;}
.y5a{bottom:949.413333pt;}
.y5b{bottom:954.693333pt;}
.yb{bottom:966.373333pt;}
.y58{bottom:968.773333pt;}
.y59{bottom:974.053333pt;}
.y9{bottom:985.573333pt;}
.y1{bottom:1005.413333pt;}
.h15{height:18.768750pt;}
.h14{height:25.918750pt;}
.h13{height:27.680000pt;}
.h10{height:29.940625pt;}
.h12{height:30.254687pt;}
.hd{height:33.515625pt;}
.hf{height:33.867188pt;}
.h7{height:34.798125pt;}
.h11{height:35.342500pt;}
.hb{height:37.090625pt;}
.h3{height:37.479688pt;}
.he{height:39.562500pt;}
.h9{height:41.112500pt;}
.ha{height:41.543750pt;}
.h6{height:42.866250pt;}
.h5{height:43.782500pt;}
.h4{height:45.156250pt;}
.h16{height:48.530000pt;}
.h8{height:48.768750pt;}
.h2{height:68.832000pt;}
.hc{height:455.453333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:64.000000pt;}
.w8{width:102.426667pt;}
.w7{width:179.546667pt;}
.w4{width:226.786667pt;}
.w3{width:333.026667pt;}
.w6{width:408.706667pt;}
.w9{width:793.919976pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x14{left:27.200000pt;}
.x2{left:52.954667pt;}
.x6{left:93.960000pt;}
.x1{left:96.032000pt;}
.x17{left:99.391988pt;}
.x11{left:103.232000pt;}
.xa{left:115.391988pt;}
.x7{left:117.160000pt;}
.x64{left:124.511988pt;}
.xb{left:128.991988pt;}
.x15{left:133.786655pt;}
.x3c{left:143.226655pt;}
.x2a{left:148.506643pt;}
.x4d{left:156.666643pt;}
.x8{left:158.600000pt;}
.x3{left:160.026667pt;}
.x3f{left:161.626643pt;}
.x4e{left:165.946655pt;}
.x24{left:168.986643pt;}
.x40{left:170.906655pt;}
.x4b{left:171.866643pt;}
.x25{left:173.626655pt;}
.x4c{left:181.146655pt;}
.xf{left:187.546655pt;}
.x26{left:194.266643pt;}
.x27{left:198.906655pt;}
.x10{left:206.106655pt;}
.x18{left:207.706643pt;}
.x19{left:212.346655pt;}
.x2f{left:222.426655pt;}
.x55{left:226.746643pt;}
.x56{left:236.066655pt;}
.x28{left:244.546643pt;}
.x51{left:248.866643pt;}
.xc{left:250.306655pt;}
.x29{left:253.826655pt;}
.x62{left:255.106643pt;}
.x52{left:258.146655pt;}
.x1c{left:261.506643pt;}
.x63{left:264.386655pt;}
.x1d{left:266.146655pt;}
.x3d{left:267.746643pt;}
.x3e{left:277.026655pt;}
.x16{left:288.066655pt;}
.x49{left:308.066643pt;}
.xe{left:313.666655pt;}
.x4a{left:317.346655pt;}
.x20{left:322.786643pt;}
.x21{left:327.426655pt;}
.x5c{left:352.386643pt;}
.x2d{left:358.146643pt;}
.x5d{left:361.666655pt;}
.x2e{left:367.426655pt;}
.xd{left:397.053322pt;}
.x34{left:422.813310pt;}
.x35{left:432.093322pt;}
.x9{left:444.733322pt;}
.x57{left:449.853310pt;}
.x58{left:459.133322pt;}
.x22{left:465.853310pt;}
.x3a{left:469.213310pt;}
.x23{left:470.493322pt;}
.x4f{left:472.413310pt;}
.x3b{left:478.493322pt;}
.x50{left:481.693322pt;}
.x59{left:489.533310pt;}
.x53{left:491.933310pt;}
.x5{left:493.053333pt;}
.x5a{left:498.813322pt;}
.x2b{left:500.093310pt;}
.x54{left:501.213322pt;}
.x2c{left:509.373322pt;}
.x12{left:511.933333pt;}
.x41{left:544.413310pt;}
.x42{left:553.733322pt;}
.x32{left:567.973310pt;}
.x33{left:577.253322pt;}
.x1a{left:587.333310pt;}
.x30{left:590.053310pt;}
.x1b{left:591.973322pt;}
.x36{left:594.373310pt;}
.x31{left:599.333322pt;}
.x60{left:602.693310pt;}
.x37{left:603.653322pt;}
.x5e{left:609.413322pt;}
.x61{left:611.973322pt;}
.x43{left:618.853310pt;}
.x45{left:622.533310pt;}
.x44{left:628.133322pt;}
.x46{left:631.813322pt;}
.x5f{left:638.213310pt;}
.x1e{left:643.333310pt;}
.x47{left:645.573310pt;}
.x1f{left:647.973322pt;}
.x48{left:654.853322pt;}
.x5b{left:663.813322pt;}
.x38{left:688.773310pt;}
.x13{left:691.493333pt;}
.x39{left:698.053322pt;}
}




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