
    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_c3b4326e75b2bba73c15e042.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_186fa2e5ca2d889391b7e59d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.145508;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_fcec3659d913c119e7fa8e59.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_3618cac27f436835fd1d06cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_792b86a7d733cd379853e9d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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);}
.m2{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,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);}
.v1{vertical-align:-61.500000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.318000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.204000px;}
.ls4{letter-spacing:44.988000px;}
.ls5{letter-spacing:91.746000px;}
.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;}
}
.ws4{word-spacing:-16.458000px;}
.ws1{word-spacing:-16.254000px;}
.ws0{word-spacing:-16.236000px;}
.ws2{word-spacing:-16.110000px;}
.ws5{word-spacing:-15.936000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.452000px;}
._1{width:1.278000px;}
._3{width:2.916000px;}
._2{width:196.746000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:69.629647px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:121.151385px;}
.y0{bottom:0.000000px;}
.y3a{bottom:2.625000px;}
.y34{bottom:4.125000px;}
.y36{bottom:4.875000px;}
.yd8{bottom:6.000000px;}
.y12{bottom:8.625000px;}
.y2c{bottom:8.985000px;}
.y11{bottom:9.000000px;}
.yec{bottom:10.769945px;}
.ye7{bottom:12.441237px;}
.y27{bottom:15.405000px;}
.y3c{bottom:15.750000px;}
.y3f{bottom:15.780000px;}
.y20{bottom:19.875000px;}
.yf{bottom:20.625000px;}
.y19{bottom:20.655000px;}
.ydd{bottom:24.750000px;}
.ybe{bottom:27.750000px;}
.y2b{bottom:30.375000px;}
.ycd{bottom:30.735000px;}
.y96{bottom:30.750000px;}
.yb7{bottom:31.500000px;}
.yeb{bottom:31.658839px;}
.y38{bottom:41.250000px;}
.y1f{bottom:41.295000px;}
.y18{bottom:42.030000px;}
.ydc{bottom:46.125000px;}
.ye6{bottom:48.786652px;}
.ycc{bottom:49.500000px;}
.y2a{bottom:52.125000px;}
.y32{bottom:52.537500px;}
.yea{bottom:52.547733px;}
.yb6{bottom:55.875000px;}
.ya9{bottom:57.000000px;}
.y17{bottom:57.780000px;}
.y39{bottom:61.912500px;}
.y37{bottom:63.037500px;}
.y1e{bottom:63.045000px;}
.ydb{bottom:67.905000px;}
.ya8{bottom:72.375000px;}
.ye9{bottom:73.436627px;}
.y77{bottom:73.875000px;}
.y31{bottom:74.287500px;}
.yb5{bottom:74.632500px;}
.y16{bottom:79.530000px;}
.yb0{bottom:79.537500px;}
.y1d{bottom:84.795000px;}
.ye5{bottom:85.132068px;}
.yda{bottom:86.655000px;}
.ya7{bottom:88.155000px;}
.y23{bottom:88.537500px;}
.y94{bottom:90.037500px;}
.ye8{bottom:94.325521px;}
.y76{bottom:95.625000px;}
.y30{bottom:96.037500px;}
.yb8{bottom:102.412500px;}
.ya6{bottom:103.905000px;}
.y5e{bottom:108.412500px;}
.y22{bottom:110.287500px;}
.y93{bottom:111.787500px;}
.y75{bottom:117.030000px;}
.y2f{bottom:117.787500px;}
.ya5{bottom:119.655000px;}
.y2d{bottom:126.037500px;}
.y5d{bottom:130.162500px;}
.y92{bottom:133.537500px;}
.y74{bottom:138.780000px;}
.y2e{bottom:139.162500px;}
.ya4{bottom:150.780000px;}
.y5c{bottom:151.905000px;}
.y91{bottom:155.280000px;}
.ybd{bottom:159.787500px;}
.y73{bottom:160.530000px;}
.ya3{bottom:166.530000px;}
.y5b{bottom:173.670000px;}
.y90{bottom:176.700000px;}
.y72{bottom:182.280000px;}
.y5a{bottom:195.075000px;}
.ya2{bottom:198.030000px;}
.y8f{bottom:198.450000px;}
.y71{bottom:204.030000px;}
.ya1{bottom:213.825000px;}
.y59{bottom:216.825000px;}
.y8e{bottom:220.200000px;}
.y70{bottom:225.405000px;}
.ya0{bottom:229.200000px;}
.y58{bottom:238.575000px;}
.y6f{bottom:241.200000px;}
.y8d{bottom:241.950000px;}
.y9f{bottom:244.950000px;}
.yce{bottom:256.575000px;}
.y57{bottom:260.325000px;}
.y9e{bottom:260.700000px;}
.y6e{bottom:262.950000px;}
.y8c{bottom:263.700000px;}
.y9d{bottom:277.575000px;}
.y56{bottom:282.075000px;}
.y6d{bottom:284.700000px;}
.y8b{bottom:285.075000px;}
.y9c{bottom:297.075000px;}
.y6c{bottom:300.450000px;}
.y55{bottom:303.495000px;}
.ycb{bottom:303.870000px;}
.y8a{bottom:306.870000px;}
.y9b{bottom:312.825000px;}
.y6b{bottom:321.825000px;}
.y54{bottom:325.245000px;}
.y29{bottom:325.620000px;}
.y9a{bottom:328.575000px;}
.y89{bottom:328.620000px;}
.yd7{bottom:340.245000px;}
.y6a{bottom:343.575000px;}
.y99{bottom:345.480000px;}
.y53{bottom:346.995000px;}
.y88{bottom:350.370000px;}
.y69{bottom:359.325000px;}
.yd6{bottom:361.995000px;}
.y52{bottom:368.730000px;}
.y98{bottom:370.980000px;}
.y87{bottom:372.105000px;}
.y68{bottom:375.105000px;}
.yd5{bottom:383.745000px;}
.y51{bottom:390.495000px;}
.y67{bottom:390.855000px;}
.y86{bottom:393.495000px;}
.y28{bottom:394.245000px;}
.yd4{bottom:405.495000px;}
.y66{bottom:406.605000px;}
.y50{bottom:411.870000px;}
.y85{bottom:415.245000px;}
.yb4{bottom:416.737500px;}
.y26{bottom:419.745000px;}
.y65{bottom:421.980000px;}
.yd3{bottom:427.245000px;}
.y4f{bottom:433.650000px;}
.ye4{bottom:434.695492px;}
.y84{bottom:437.025000px;}
.yb3{bottom:438.487500px;}
.yd2{bottom:443.025000px;}
.y25{bottom:451.650000px;}
.y4e{bottom:455.400000px;}
.y83{bottom:458.775000px;}
.yb2{bottom:460.237500px;}
.yd1{bottom:464.400000px;}
.yca{bottom:468.862500px;}
.y62{bottom:468.900000px;}
.y24{bottom:476.775000px;}
.y82{bottom:480.525000px;}
.yb1{bottom:481.657500px;}
.yd0{bottom:486.150000px;}
.yc9{bottom:490.657500px;}
.y61{bottom:494.400000px;}
.y81{bottom:501.900000px;}
.ycf{bottom:504.900000px;}
.yc8{bottom:512.407500px;}
.y21{bottom:516.900000px;}
.y60{bottom:519.900000px;}
.y80{bottom:523.650000px;}
.yc7{bottom:531.157500px;}
.y1c{bottom:533.400000px;}
.y7f{bottom:545.400000px;}
.y33{bottom:546.150000px;}
.y5f{bottom:566.820000px;}
.y7e{bottom:567.195000px;}
.yaf{bottom:577.695000px;}
.ye3{bottom:585.945000px;}
.ybc{bottom:587.437500px;}
.y35{bottom:587.445000px;}
.y7d{bottom:588.945000px;}
.y4d{bottom:599.070000px;}
.ybb{bottom:606.187500px;}
.y7c{bottom:610.320000px;}
.ye2{bottom:613.695000px;}
.y4c{bottom:620.820000px;}
.y7b{bottom:632.070000px;}
.yae{bottom:633.945000px;}
.y1b{bottom:634.695000px;}
.ye1{bottom:641.070000px;}
.y4b{bottom:642.195000px;}
.y7a{bottom:653.820000px;}
.yad{bottom:661.695000px;}
.y4a{bottom:666.945000px;}
.ye0{bottom:668.820000px;}
.y1a{bottom:669.195000px;}
.y79{bottom:675.570000px;}
.yac{bottom:683.070000px;}
.y15{bottom:685.695000px;}
.y49{bottom:688.725000px;}
.ydf{bottom:696.600000px;}
.y78{bottom:697.350000px;}
.yab{bottom:704.850000px;}
.y48{bottom:705.225000px;}
.y64{bottom:713.850000px;}
.yde{bottom:724.350000px;}
.yaa{bottom:726.600000px;}
.y97{bottom:743.100000px;}
.y47{bottom:744.600000px;}
.yd9{bottom:749.850000px;}
.y14{bottom:781.725000px;}
.y46{bottom:783.975000px;}
.y13{bottom:816.225000px;}
.y45{bottom:823.380000px;}
.ye{bottom:832.755000px;}
.y10{bottom:857.880000px;}
.y44{bottom:862.755000px;}
.yd{bottom:890.505000px;}
.y43{bottom:902.130000px;}
.yc{bottom:912.255000px;}
.yb{bottom:934.755000px;}
.y42{bottom:941.520000px;}
.yc6{bottom:941.887500px;}
.yc5{bottom:963.637500px;}
.ya{bottom:965.925000px;}
.y41{bottom:980.925000px;}
.yc4{bottom:985.387500px;}
.y9{bottom:990.300000px;}
.yc3{bottom:1007.167500px;}
.y8{bottom:1012.050000px;}
.y40{bottom:1020.300000px;}
.yc2{bottom:1028.917500px;}
.y7{bottom:1033.800000px;}
.yba{bottom:1040.167500px;}
.yc1{bottom:1044.667500px;}
.y6{bottom:1055.550000px;}
.y3e{bottom:1059.675000px;}
.yc0{bottom:1060.042500px;}
.yb9{bottom:1061.917500px;}
.ybf{bottom:1075.792500px;}
.y5{bottom:1076.955000px;}
.y4{bottom:1098.705000px;}
.y3d{bottom:1099.080000px;}
.y3{bottom:1120.455000px;}
.y95{bottom:1130.580000px;}
.y3b{bottom:1138.455000px;}
.y2{bottom:1142.205000px;}
.y63{bottom:1152.330000px;}
.y1{bottom:1163.580000px;}
.h10{height:13.500000px;}
.he{height:19.912500px;}
.hf{height:20.625000px;}
.h6{height:23.250000px;}
.h7{height:24.375000px;}
.h8{height:24.750000px;}
.hb{height:31.162500px;}
.h12{height:38.625000px;}
.h14{height:38.647500px;}
.h13{height:38.662500px;}
.h1{height:44.015625px;}
.h15{height:46.162500px;}
.h18{height:46.500000px;}
.h5{height:48.375000px;}
.h2{height:49.517578px;}
.h11{height:49.968750px;}
.h16{height:50.572266px;}
.h1b{height:55.503491px;}
.h3{height:60.521484px;}
.h4{height:61.810547px;}
.h24{height:66.287424px;}
.h1a{height:67.429688px;}
.hc{height:67.875000px;}
.h9{height:95.287500px;}
.ha{height:100.537500px;}
.h22{height:115.260915px;}
.h23{height:115.336119px;}
.hd{height:198.825000px;}
.h19{height:386.745000px;}
.h21{height:427.245000px;}
.h17{height:437.745000px;}
.h1c{height:497.400000px;}
.h1f{height:873.225000px;}
.h20{height:920.505000px;}
.h1d{height:1074.675000px;}
.h1e{height:1088.550000px;}
.h0{height:1263.000000px;}
.we{width:6.750000px;}
.wc{width:41.662500px;}
.wd{width:43.162500px;}
.wb{width:105.412500px;}
.w8{width:127.537500px;}
.w10{width:138.450000px;}
.w14{width:179.780616px;}
.w13{width:183.448500px;}
.w4{width:212.700000px;}
.wa{width:222.495000px;}
.w12{width:249.120000px;}
.w9{width:264.120000px;}
.w11{width:329.745000px;}
.w3{width:510.225000px;}
.wf{width:718.800000px;}
.w7{width:721.800000px;}
.w6{width:722.550000px;}
.w5{width:723.675000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:3.375000px;}
.x21{left:8.625000px;}
.xf{left:12.000000px;}
.x10{left:15.375000px;}
.x1d{left:16.875000px;}
.x23{left:20.670000px;}
.x29{left:22.875000px;}
.x19{left:24.750000px;}
.x1a{left:25.875000px;}
.x2e{left:30.375000px;}
.x1c{left:31.530000px;}
.x2c{left:33.375000px;}
.x3c{left:35.250000px;}
.x35{left:37.530000px;}
.x43{left:40.125000px;}
.x3a{left:42.375000px;}
.x34{left:43.905000px;}
.xb{left:45.750000px;}
.x32{left:49.500000px;}
.x1b{left:51.045000px;}
.x13{left:53.662500px;}
.xe{left:57.787500px;}
.x2f{left:63.405000px;}
.x33{left:67.530000px;}
.x31{left:68.625000px;}
.x9{left:69.780000px;}
.x15{left:71.295000px;}
.x37{left:73.155000px;}
.x2d{left:74.655000px;}
.x5{left:83.662500px;}
.xc{left:84.787500px;}
.x36{left:86.655000px;}
.x8{left:88.155000px;}
.x17{left:91.530000px;}
.x30{left:93.405000px;}
.x11{left:95.662487px;}
.x3d{left:99.787500px;}
.x2a{left:104.280000px;}
.x3e{left:107.662500px;}
.x42{left:114.412500px;}
.x38{left:118.537500px;}
.x1f{left:121.537500px;}
.x44{left:124.912500px;}
.x1e{left:130.912500px;}
.x6{left:155.332500px;}
.x24{left:207.450000px;}
.x22{left:208.950000px;}
.x14{left:213.825000px;}
.x2{left:222.119987px;}
.x3b{left:226.237500px;}
.x49{left:245.251500px;}
.x3f{left:247.612500px;}
.x39{left:259.987500px;}
.xa{left:261.112500px;}
.x12{left:262.612500px;}
.xd{left:270.112500px;}
.x46{left:281.369987px;}
.x40{left:285.862500px;}
.x45{left:320.032500px;}
.x28{left:327.157500px;}
.x47{left:348.149987px;}
.x20{left:360.907500px;}
.x3{left:362.399987px;}
.x48{left:365.774987px;}
.x4{left:404.069987px;}
.x25{left:427.319987px;}
.x1{left:430.694987px;}
.x4a{left:432.367500px;}
.x16{left:478.695000px;}
.x2b{left:553.350000px;}
.x7{left:594.645000px;}
.x18{left:701.925000px;}
.x41{left:715.417500px;}
.x26{left:758.970000px;}
@media print{
.v1{vertical-align:-54.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.282667pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.181333pt;}
.ls4{letter-spacing:39.989333pt;}
.ls5{letter-spacing:81.552000pt;}
.ws4{word-spacing:-14.629333pt;}
.ws1{word-spacing:-14.448000pt;}
.ws0{word-spacing:-14.432000pt;}
.ws2{word-spacing:-14.320000pt;}
.ws5{word-spacing:-14.165333pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.290667pt;}
._1{width:1.136000pt;}
._3{width:2.592000pt;}
._2{width:174.885333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:61.893019pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:107.690120pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.333333pt;}
.y34{bottom:3.666667pt;}
.y36{bottom:4.333333pt;}
.yd8{bottom:5.333333pt;}
.y12{bottom:7.666667pt;}
.y2c{bottom:7.986667pt;}
.y11{bottom:8.000000pt;}
.yec{bottom:9.573285pt;}
.ye7{bottom:11.058877pt;}
.y27{bottom:13.693333pt;}
.y3c{bottom:14.000000pt;}
.y3f{bottom:14.026667pt;}
.y20{bottom:17.666667pt;}
.yf{bottom:18.333333pt;}
.y19{bottom:18.360000pt;}
.ydd{bottom:22.000000pt;}
.ybe{bottom:24.666667pt;}
.y2b{bottom:27.000000pt;}
.ycd{bottom:27.320000pt;}
.y96{bottom:27.333333pt;}
.yb7{bottom:28.000000pt;}
.yeb{bottom:28.141191pt;}
.y38{bottom:36.666667pt;}
.y1f{bottom:36.706667pt;}
.y18{bottom:37.360000pt;}
.ydc{bottom:41.000000pt;}
.ye6{bottom:43.365913pt;}
.ycc{bottom:44.000000pt;}
.y2a{bottom:46.333333pt;}
.y32{bottom:46.700000pt;}
.yea{bottom:46.709096pt;}
.yb6{bottom:49.666667pt;}
.ya9{bottom:50.666667pt;}
.y17{bottom:51.360000pt;}
.y39{bottom:55.033333pt;}
.y37{bottom:56.033333pt;}
.y1e{bottom:56.040000pt;}
.ydb{bottom:60.360000pt;}
.ya8{bottom:64.333333pt;}
.ye9{bottom:65.277002pt;}
.y77{bottom:65.666667pt;}
.y31{bottom:66.033333pt;}
.yb5{bottom:66.340000pt;}
.y16{bottom:70.693333pt;}
.yb0{bottom:70.700000pt;}
.y1d{bottom:75.373333pt;}
.ye5{bottom:75.672949pt;}
.yda{bottom:77.026667pt;}
.ya7{bottom:78.360000pt;}
.y23{bottom:78.700000pt;}
.y94{bottom:80.033333pt;}
.ye8{bottom:83.844908pt;}
.y76{bottom:85.000000pt;}
.y30{bottom:85.366667pt;}
.yb8{bottom:91.033333pt;}
.ya6{bottom:92.360000pt;}
.y5e{bottom:96.366667pt;}
.y22{bottom:98.033333pt;}
.y93{bottom:99.366667pt;}
.y75{bottom:104.026667pt;}
.y2f{bottom:104.700000pt;}
.ya5{bottom:106.360000pt;}
.y2d{bottom:112.033333pt;}
.y5d{bottom:115.700000pt;}
.y92{bottom:118.700000pt;}
.y74{bottom:123.360000pt;}
.y2e{bottom:123.700000pt;}
.ya4{bottom:134.026667pt;}
.y5c{bottom:135.026667pt;}
.y91{bottom:138.026667pt;}
.ybd{bottom:142.033333pt;}
.y73{bottom:142.693333pt;}
.ya3{bottom:148.026667pt;}
.y5b{bottom:154.373333pt;}
.y90{bottom:157.066667pt;}
.y72{bottom:162.026667pt;}
.y5a{bottom:173.400000pt;}
.ya2{bottom:176.026667pt;}
.y8f{bottom:176.400000pt;}
.y71{bottom:181.360000pt;}
.ya1{bottom:190.066667pt;}
.y59{bottom:192.733333pt;}
.y8e{bottom:195.733333pt;}
.y70{bottom:200.360000pt;}
.ya0{bottom:203.733333pt;}
.y58{bottom:212.066667pt;}
.y6f{bottom:214.400000pt;}
.y8d{bottom:215.066667pt;}
.y9f{bottom:217.733333pt;}
.yce{bottom:228.066667pt;}
.y57{bottom:231.400000pt;}
.y9e{bottom:231.733333pt;}
.y6e{bottom:233.733333pt;}
.y8c{bottom:234.400000pt;}
.y9d{bottom:246.733333pt;}
.y56{bottom:250.733333pt;}
.y6d{bottom:253.066667pt;}
.y8b{bottom:253.400000pt;}
.y9c{bottom:264.066667pt;}
.y6c{bottom:267.066667pt;}
.y55{bottom:269.773333pt;}
.ycb{bottom:270.106667pt;}
.y8a{bottom:272.773333pt;}
.y9b{bottom:278.066667pt;}
.y6b{bottom:286.066667pt;}
.y54{bottom:289.106667pt;}
.y29{bottom:289.440000pt;}
.y9a{bottom:292.066667pt;}
.y89{bottom:292.106667pt;}
.yd7{bottom:302.440000pt;}
.y6a{bottom:305.400000pt;}
.y99{bottom:307.093333pt;}
.y53{bottom:308.440000pt;}
.y88{bottom:311.440000pt;}
.y69{bottom:319.400000pt;}
.yd6{bottom:321.773333pt;}
.y52{bottom:327.760000pt;}
.y98{bottom:329.760000pt;}
.y87{bottom:330.760000pt;}
.y68{bottom:333.426667pt;}
.yd5{bottom:341.106667pt;}
.y51{bottom:347.106667pt;}
.y67{bottom:347.426667pt;}
.y86{bottom:349.773333pt;}
.y28{bottom:350.440000pt;}
.yd4{bottom:360.440000pt;}
.y66{bottom:361.426667pt;}
.y50{bottom:366.106667pt;}
.y85{bottom:369.106667pt;}
.yb4{bottom:370.433333pt;}
.y26{bottom:373.106667pt;}
.y65{bottom:375.093333pt;}
.yd3{bottom:379.773333pt;}
.y4f{bottom:385.466667pt;}
.ye4{bottom:386.395993pt;}
.y84{bottom:388.466667pt;}
.yb3{bottom:389.766667pt;}
.yd2{bottom:393.800000pt;}
.y25{bottom:401.466667pt;}
.y4e{bottom:404.800000pt;}
.y83{bottom:407.800000pt;}
.yb2{bottom:409.100000pt;}
.yd1{bottom:412.800000pt;}
.yca{bottom:416.766667pt;}
.y62{bottom:416.800000pt;}
.y24{bottom:423.800000pt;}
.y82{bottom:427.133333pt;}
.yb1{bottom:428.140000pt;}
.yd0{bottom:432.133333pt;}
.yc9{bottom:436.140000pt;}
.y61{bottom:439.466667pt;}
.y81{bottom:446.133333pt;}
.ycf{bottom:448.800000pt;}
.yc8{bottom:455.473333pt;}
.y21{bottom:459.466667pt;}
.y60{bottom:462.133333pt;}
.y80{bottom:465.466667pt;}
.yc7{bottom:472.140000pt;}
.y1c{bottom:474.133333pt;}
.y7f{bottom:484.800000pt;}
.y33{bottom:485.466667pt;}
.y5f{bottom:503.840000pt;}
.y7e{bottom:504.173333pt;}
.yaf{bottom:513.506667pt;}
.ye3{bottom:520.840000pt;}
.ybc{bottom:522.166667pt;}
.y35{bottom:522.173333pt;}
.y7d{bottom:523.506667pt;}
.y4d{bottom:532.506667pt;}
.ybb{bottom:538.833333pt;}
.y7c{bottom:542.506667pt;}
.ye2{bottom:545.506667pt;}
.y4c{bottom:551.840000pt;}
.y7b{bottom:561.840000pt;}
.yae{bottom:563.506667pt;}
.y1b{bottom:564.173333pt;}
.ye1{bottom:569.840000pt;}
.y4b{bottom:570.840000pt;}
.y7a{bottom:581.173333pt;}
.yad{bottom:588.173333pt;}
.y4a{bottom:592.840000pt;}
.ye0{bottom:594.506667pt;}
.y1a{bottom:594.840000pt;}
.y79{bottom:600.506667pt;}
.yac{bottom:607.173333pt;}
.y15{bottom:609.506667pt;}
.y49{bottom:612.200000pt;}
.ydf{bottom:619.200000pt;}
.y78{bottom:619.866667pt;}
.yab{bottom:626.533333pt;}
.y48{bottom:626.866667pt;}
.y64{bottom:634.533333pt;}
.yde{bottom:643.866667pt;}
.yaa{bottom:645.866667pt;}
.y97{bottom:660.533333pt;}
.y47{bottom:661.866667pt;}
.yd9{bottom:666.533333pt;}
.y14{bottom:694.866667pt;}
.y46{bottom:696.866667pt;}
.y13{bottom:725.533333pt;}
.y45{bottom:731.893333pt;}
.ye{bottom:740.226667pt;}
.y10{bottom:762.560000pt;}
.y44{bottom:766.893333pt;}
.yd{bottom:791.560000pt;}
.y43{bottom:801.893333pt;}
.yc{bottom:810.893333pt;}
.yb{bottom:830.893333pt;}
.y42{bottom:836.906667pt;}
.yc6{bottom:837.233333pt;}
.yc5{bottom:856.566667pt;}
.ya{bottom:858.600000pt;}
.y41{bottom:871.933333pt;}
.yc4{bottom:875.900000pt;}
.y9{bottom:880.266667pt;}
.yc3{bottom:895.260000pt;}
.y8{bottom:899.600000pt;}
.y40{bottom:906.933333pt;}
.yc2{bottom:914.593333pt;}
.y7{bottom:918.933333pt;}
.yba{bottom:924.593333pt;}
.yc1{bottom:928.593333pt;}
.y6{bottom:938.266667pt;}
.y3e{bottom:941.933333pt;}
.yc0{bottom:942.260000pt;}
.yb9{bottom:943.926667pt;}
.ybf{bottom:956.260000pt;}
.y5{bottom:957.293333pt;}
.y4{bottom:976.626667pt;}
.y3d{bottom:976.960000pt;}
.y3{bottom:995.960000pt;}
.y95{bottom:1004.960000pt;}
.y3b{bottom:1011.960000pt;}
.y2{bottom:1015.293333pt;}
.y63{bottom:1024.293333pt;}
.y1{bottom:1034.293333pt;}
.h10{height:12.000000pt;}
.he{height:17.700000pt;}
.hf{height:18.333333pt;}
.h6{height:20.666667pt;}
.h7{height:21.666667pt;}
.h8{height:22.000000pt;}
.hb{height:27.700000pt;}
.h12{height:34.333333pt;}
.h14{height:34.353333pt;}
.h13{height:34.366667pt;}
.h1{height:39.125000pt;}
.h15{height:41.033333pt;}
.h18{height:41.333333pt;}
.h5{height:43.000000pt;}
.h2{height:44.015625pt;}
.h11{height:44.416667pt;}
.h16{height:44.953125pt;}
.h1b{height:49.336436pt;}
.h3{height:53.796875pt;}
.h4{height:54.942708pt;}
.h24{height:58.922154pt;}
.h1a{height:59.937500pt;}
.hc{height:60.333333pt;}
.h9{height:84.700000pt;}
.ha{height:89.366667pt;}
.h22{height:102.454147pt;}
.h23{height:102.520995pt;}
.hd{height:176.733333pt;}
.h19{height:343.773333pt;}
.h21{height:379.773333pt;}
.h17{height:389.106667pt;}
.h1c{height:442.133333pt;}
.h1f{height:776.200000pt;}
.h20{height:818.226667pt;}
.h1d{height:955.266667pt;}
.h1e{height:967.600000pt;}
.h0{height:1122.666667pt;}
.we{width:6.000000pt;}
.wc{width:37.033333pt;}
.wd{width:38.366667pt;}
.wb{width:93.700000pt;}
.w8{width:113.366667pt;}
.w10{width:123.066667pt;}
.w14{width:159.804992pt;}
.w13{width:163.065333pt;}
.w4{width:189.066667pt;}
.wa{width:197.773333pt;}
.w12{width:221.440000pt;}
.w9{width:234.773333pt;}
.w11{width:293.106667pt;}
.w3{width:453.533333pt;}
.wf{width:638.933333pt;}
.w7{width:641.600000pt;}
.w6{width:642.266667pt;}
.w5{width:643.266667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:3.000000pt;}
.x21{left:7.666667pt;}
.xf{left:10.666667pt;}
.x10{left:13.666667pt;}
.x1d{left:15.000000pt;}
.x23{left:18.373333pt;}
.x29{left:20.333333pt;}
.x19{left:22.000000pt;}
.x1a{left:23.000000pt;}
.x2e{left:27.000000pt;}
.x1c{left:28.026667pt;}
.x2c{left:29.666667pt;}
.x3c{left:31.333333pt;}
.x35{left:33.360000pt;}
.x43{left:35.666667pt;}
.x3a{left:37.666667pt;}
.x34{left:39.026667pt;}
.xb{left:40.666667pt;}
.x32{left:44.000000pt;}
.x1b{left:45.373333pt;}
.x13{left:47.700000pt;}
.xe{left:51.366667pt;}
.x2f{left:56.360000pt;}
.x33{left:60.026667pt;}
.x31{left:61.000000pt;}
.x9{left:62.026667pt;}
.x15{left:63.373333pt;}
.x37{left:65.026667pt;}
.x2d{left:66.360000pt;}
.x5{left:74.366667pt;}
.xc{left:75.366667pt;}
.x36{left:77.026667pt;}
.x8{left:78.360000pt;}
.x17{left:81.360000pt;}
.x30{left:83.026667pt;}
.x11{left:85.033322pt;}
.x3d{left:88.700000pt;}
.x2a{left:92.693333pt;}
.x3e{left:95.700000pt;}
.x42{left:101.700000pt;}
.x38{left:105.366667pt;}
.x1f{left:108.033333pt;}
.x44{left:111.033333pt;}
.x1e{left:116.366667pt;}
.x6{left:138.073333pt;}
.x24{left:184.400000pt;}
.x22{left:185.733333pt;}
.x14{left:190.066667pt;}
.x2{left:197.439988pt;}
.x3b{left:201.100000pt;}
.x49{left:218.001333pt;}
.x3f{left:220.100000pt;}
.x39{left:231.100000pt;}
.xa{left:232.100000pt;}
.x12{left:233.433333pt;}
.xd{left:240.100000pt;}
.x46{left:250.106655pt;}
.x40{left:254.100000pt;}
.x45{left:284.473333pt;}
.x28{left:290.806667pt;}
.x47{left:309.466655pt;}
.x20{left:320.806667pt;}
.x3{left:322.133322pt;}
.x48{left:325.133322pt;}
.x4{left:359.173322pt;}
.x25{left:379.839988pt;}
.x1{left:382.839988pt;}
.x4a{left:384.326667pt;}
.x16{left:425.506667pt;}
.x2b{left:491.866667pt;}
.x7{left:528.573333pt;}
.x18{left:623.933333pt;}
.x41{left:635.926667pt;}
.x26{left:674.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; }
  