
    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_d59e946b918a5a62d437eb03.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_aae586894c8c324cb27bd556.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_12e8b63cf74a629b01b09021.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_c1fe5cb1ad99ab89466bd843.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_004b6baffd1438c97d97ccb2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_a9e8b31354a396b10fa0a61c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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:ff7;src:url('chunks/assets/font_894a774e4cb75b82ea02848c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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;}
.ls12{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.367800px;}
.ls6{letter-spacing:-0.310200px;}
.ls15{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.132000px;}
.ls13{letter-spacing:0.216000px;}
.ls4{letter-spacing:22.644000px;}
.ls5{letter-spacing:30.960000px;}
.ls7{letter-spacing:34.509600px;}
.ls8{letter-spacing:34.560000px;}
.ls9{letter-spacing:39.225600px;}
.ls14{letter-spacing:39.276000px;}
.ls1{letter-spacing:43.509600px;}
.ls10{letter-spacing:43.560000px;}
.lsa{letter-spacing:56.109600px;}
.lsb{letter-spacing:56.160000px;}
.ls11{letter-spacing:73.800000px;}
.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;}
}
.ws6{word-spacing:-100.080000px;}
.ws5{word-spacing:-40.032000px;}
.ws8{word-spacing:-30.024000px;}
.ws0{word-spacing:-25.020000px;}
.ws4{word-spacing:-24.440544px;}
.ws3{word-spacing:-24.408000px;}
.ws2{word-spacing:-21.641760px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.360000px;}
.ws7{word-spacing:245.232000px;}
._a{margin-left:-9.396000px;}
._1{margin-left:-7.879248px;}
._6{margin-left:-5.946768px;}
._7{margin-left:-4.419936px;}
._2{margin-left:-3.078144px;}
._0{margin-left:-1.731456px;}
._4{width:1.080000px;}
._5{width:2.273328px;}
._8{width:3.374208px;}
._9{width:15.151248px;}
._3{width:26.400000px;}
.fc3{color:rgb(34,31,31);}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(32,33,36);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:72.000000px;}
.fse{font-size:72.144000px;}
.fs2{font-size:90.000000px;}
.fsa{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:108.144000px;}
.fsd{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs8{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs6{font-size:167.760000px;}
.fs7{font-size:167.904000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs3{font-size:360.000000px;}
.fs10{font-size:576.144000px;}
.y0{bottom:0.000000px;}
.y41{bottom:0.719970px;}
.y7b{bottom:1.980000px;}
.y3e{bottom:29.520000px;}
.y80{bottom:34.380000px;}
.y2d{bottom:43.920000px;}
.y21{bottom:54.036000px;}
.y46{bottom:56.268000px;}
.y3d{bottom:58.320000px;}
.y6d{bottom:65.232000px;}
.y7f{bottom:66.780000px;}
.y82{bottom:73.728000px;}
.ya9{bottom:80.712000px;}
.yaf{bottom:81.792000px;}
.y6c{bottom:86.832000px;}
.y3a{bottom:87.120000px;}
.y4f{bottom:87.696000px;}
.y7{bottom:87.768000px;}
.y8f{bottom:92.412000px;}
.y3b{bottom:92.445000px;}
.y3f{bottom:92.448000px;}
.y42{bottom:92.448030px;}
.y32{bottom:92.490000px;}
.y23{bottom:92.520000px;}
.y3c{bottom:92.625000px;}
.y40{bottom:92.628000px;}
.y43{bottom:92.628030px;}
.y33{bottom:92.670000px;}
.y29{bottom:92.700000px;}
.y9f{bottom:93.060000px;}
.y81{bottom:104.148000px;}
.y7a{bottom:104.190000px;}
.y6b{bottom:108.432000px;}
.y59{bottom:113.328000px;}
.y37{bottom:115.920000px;}
.y6{bottom:118.764000px;}
.y20{bottom:118.836000px;}
.y18{bottom:123.408000px;}
.ya8{bottom:129.312000px;}
.y6a{bottom:130.032000px;}
.y7e{bottom:131.580000px;}
.y96{bottom:135.828000px;}
.y39{bottom:136.368000px;}
.y8e{bottom:141.012000px;}
.y9e{bottom:141.660000px;}
.y35{bottom:144.720000px;}
.y5{bottom:149.544000px;}
.y69{bottom:151.635000px;}
.y4e{bottom:152.535000px;}
.yae{bottom:159.765000px;}
.y11{bottom:163.545000px;}
.y79{bottom:163.980000px;}
.y38{bottom:165.345000px;}
.y58{bottom:167.370000px;}
.y68{bottom:173.235000px;}
.y36{bottom:173.520000px;}
.ya7{bottom:177.915000px;}
.y26{bottom:178.920000px;}
.y1f{bottom:183.630000px;}
.y8d{bottom:189.615000px;}
.y95{bottom:189.825000px;}
.y67{bottom:194.835000px;}
.y17{bottom:199.050000px;}
.y7d{bottom:201.390000px;}
.y34{bottom:202.320000px;}
.y25{bottom:207.900000px;}
.y10{bottom:212.145000px;}
.yad{bottom:213.765000px;}
.y9d{bottom:214.230000px;}
.y66{bottom:216.465000px;}
.y4d{bottom:217.335000px;}
.y57{bottom:221.370000px;}
.y4{bottom:224.175000px;}
.y2a{bottom:231.120000px;}
.y7c{bottom:233.970000px;}
.y65{bottom:238.065000px;}
.y8c{bottom:238.245000px;}
.y1e{bottom:248.475000px;}
.ya6{bottom:250.665000px;}
.y64{bottom:259.665000px;}
.y31{bottom:259.920000px;}
.yf{bottom:260.790000px;}
.y30{bottom:265.290000px;}
.y94{bottom:267.810000px;}
.y78{bottom:268.170000px;}
.y16{bottom:274.650000px;}
.y56{bottom:275.400000px;}
.y63{bottom:281.265000px;}
.y4c{bottom:282.165000px;}
.y8b{bottom:286.845000px;}
.y9c{bottom:286.950000px;}
.y24{bottom:288.720000px;}
.y3{bottom:290.445000px;}
.yac{bottom:291.930000px;}
.y2f{bottom:294.270000px;}
.ya5{bottom:299.265000px;}
.y77{bottom:300.570000px;}
.y62{bottom:302.865000px;}
.ye{bottom:309.390000px;}
.y1d{bottom:313.275000px;}
.y71{bottom:316.800000px;}
.y2c{bottom:317.520000px;}
.y93{bottom:321.810000px;}
.y2e{bottom:323.100000px;}
.y61{bottom:324.465000px;}
.y55{bottom:329.400000px;}
.y76{bottom:333.180000px;}
.y8a{bottom:335.445000px;}
.y9b{bottom:335.595000px;}
.yab{bottom:345.930000px;}
.y60{bottom:346.065000px;}
.y2b{bottom:346.320000px;}
.y4b{bottom:346.965000px;}
.ya4{bottom:347.865000px;}
.y70{bottom:349.380000px;}
.y15{bottom:350.280000px;}
.y2{bottom:356.685000px;}
.yd{bottom:357.990000px;}
.y75{bottom:365.580000px;}
.y5f{bottom:367.710000px;}
.yb0{bottom:373.110000px;}
.y28{bottom:375.120000px;}
.y1c{bottom:378.105000px;}
.y6f{bottom:381.780000px;}
.y54{bottom:383.400000px;}
.y89{bottom:384.090000px;}
.y9a{bottom:384.195000px;}
.y22{bottom:389.520000px;}
.y74{bottom:397.980000px;}
.y92{bottom:399.930000px;}
.y27{bottom:403.920000px;}
.yc{bottom:406.620000px;}
.y5e{bottom:409.290000px;}
.y6e{bottom:414.180000px;}
.ya3{bottom:420.450000px;}
.y1{bottom:422.970000px;}
.y4a{bottom:423.825000px;}
.y14{bottom:425.880000px;}
.y73{bottom:430.380000px;}
.y88{bottom:432.690000px;}
.y53{bottom:437.430000px;}
.y1b{bottom:442.905000px;}
.yb{bottom:455.220000px;}
.y99{bottom:456.735000px;}
.y5d{bottom:457.890000px;}
.y72{bottom:462.780000px;}
.y91{bottom:477.900000px;}
.y87{bottom:481.290000px;}
.y49{bottom:488.670000px;}
.y52{bottom:491.430000px;}
.ya2{bottom:492.990000px;}
.y84{bottom:501.150000px;}
.y13{bottom:501.510000px;}
.ya{bottom:503.820000px;}
.y5c{bottom:506.490000px;}
.y1a{bottom:507.705000px;}
.y98{bottom:529.305000px;}
.y86{bottom:529.920000px;}
.y90{bottom:531.900000px;}
.y45{bottom:532.290000px;}
.y83{bottom:533.730000px;}
.ya1{bottom:541.620000px;}
.y51{bottom:545.430000px;}
.y9{bottom:552.450000px;}
.y48{bottom:553.470000px;}
.y5b{bottom:555.120000px;}
.y44{bottom:564.870000px;}
.y19{bottom:572.550000px;}
.y12{bottom:577.110000px;}
.y97{bottom:577.905000px;}
.y85{bottom:578.520000px;}
.yaa{bottom:585.930000px;}
.ya0{bottom:590.220000px;}
.y50{bottom:599.475000px;}
.y5a{bottom:603.720000px;}
.y47{bottom:618.300000px;}
.y8{bottom:692.670000px;}
.h1b{height:75.093750px;}
.h1a{height:75.243937px;}
.h14{height:82.001953px;}
.h3{height:93.867188px;}
.he{height:95.245664px;}
.h11{height:95.388891px;}
.hc{height:98.051133px;}
.h10{height:98.198578px;}
.h1c{height:107.419922px;}
.h1f{height:107.563148px;}
.h13{height:110.583984px;}
.h15{height:110.731430px;}
.h6{height:112.640625px;}
.h5{height:112.790813px;}
.h19{height:125.406562px;}
.h18{height:125.556750px;}
.h9{height:143.226562px;}
.ha{height:143.369789px;}
.h17{height:150.187500px;}
.h16{height:150.337688px;}
.h7{height:166.858945px;}
.h8{height:167.002172px;}
.h20{height:196.560000px;}
.h2{height:200.500313px;}
.h1{height:200.650500px;}
.hb{height:201.780000px;}
.h1d{height:226.980000px;}
.h12{height:360.900000px;}
.h4{height:375.468750px;}
.hd{height:403.380000px;}
.h1e{height:453.780000px;}
.h21{height:600.900188px;}
.hf{height:604.980000px;}
.h0{height:810.000000px;}
.w5{width:59.580000px;}
.w8{width:66.420000px;}
.wa{width:68.400000px;}
.w6{width:77.760000px;}
.w7{width:85.320000px;}
.we{width:91.980000px;}
.wd{width:93.420000px;}
.w3{width:158.220000px;}
.w2{width:186.840000px;}
.w4{width:229.140000px;}
.wc{width:278.460000px;}
.w9{width:344.880000px;}
.wb{width:472.860000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:5.430000px;}
.x15{left:30.165000px;}
.x16{left:39.165000px;}
.x13{left:42.225000px;}
.x21{left:47.010000px;}
.x12{left:49.065000px;}
.x1d{left:59.295000px;}
.x11{left:60.450000px;}
.x14{left:68.070000px;}
.x20{left:72.975000px;}
.x1f{left:74.340000px;}
.x8{left:75.599984px;}
.x7{left:78.299984px;}
.x9{left:95.939984px;}
.x1a{left:138.960000px;}
.xa{left:243.360000px;}
.x22{left:280.109984px;}
.x24{left:282.134984px;}
.x17{left:291.089984px;}
.x19{left:397.229984px;}
.xc{left:430.020000px;}
.x23{left:457.274984px;}
.x2{left:463.349984px;}
.x18{left:468.074984px;}
.x1{left:542.054984px;}
.xd{left:588.060000px;}
.x1b{left:611.640000px;}
.x5{left:628.379984px;}
.x3{left:635.654984px;}
.x1c{left:641.774984px;}
.xf{left:665.640000px;}
.x4{left:691.019984px;}
.x1e{left:703.440000px;}
.x10{left:750.780000px;}
.x6{left:795.989984px;}
.xe{left:817.020000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.326933pt;}
.ls6{letter-spacing:-0.275733pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.117333pt;}
.ls13{letter-spacing:0.192000pt;}
.ls4{letter-spacing:20.128000pt;}
.ls5{letter-spacing:27.520000pt;}
.ls7{letter-spacing:30.675200pt;}
.ls8{letter-spacing:30.720000pt;}
.ls9{letter-spacing:34.867200pt;}
.ls14{letter-spacing:34.912000pt;}
.ls1{letter-spacing:38.675200pt;}
.ls10{letter-spacing:38.720000pt;}
.lsa{letter-spacing:49.875200pt;}
.lsb{letter-spacing:49.920000pt;}
.ls11{letter-spacing:65.600000pt;}
.ws6{word-spacing:-88.960000pt;}
.ws5{word-spacing:-35.584000pt;}
.ws8{word-spacing:-26.688000pt;}
.ws0{word-spacing:-22.240000pt;}
.ws4{word-spacing:-21.724928pt;}
.ws3{word-spacing:-21.696000pt;}
.ws2{word-spacing:-19.237120pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.320000pt;}
.ws7{word-spacing:217.984000pt;}
._a{margin-left:-8.352000pt;}
._1{margin-left:-7.003776pt;}
._6{margin-left:-5.286016pt;}
._7{margin-left:-3.928832pt;}
._2{margin-left:-2.736128pt;}
._0{margin-left:-1.539072pt;}
._4{width:0.960000pt;}
._5{width:2.020736pt;}
._8{width:2.999296pt;}
._9{width:13.467776pt;}
._3{width:23.466667pt;}
.fsf{font-size:64.000000pt;}
.fse{font-size:64.128000pt;}
.fs2{font-size:80.000000pt;}
.fsa{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:96.128000pt;}
.fsd{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs8{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs6{font-size:149.120000pt;}
.fs7{font-size:149.248000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs3{font-size:320.000000pt;}
.fs10{font-size:512.128000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:0.639973pt;}
.y7b{bottom:1.760000pt;}
.y3e{bottom:26.240000pt;}
.y80{bottom:30.560000pt;}
.y2d{bottom:39.040000pt;}
.y21{bottom:48.032000pt;}
.y46{bottom:50.016000pt;}
.y3d{bottom:51.840000pt;}
.y6d{bottom:57.984000pt;}
.y7f{bottom:59.360000pt;}
.y82{bottom:65.536000pt;}
.ya9{bottom:71.744000pt;}
.yaf{bottom:72.704000pt;}
.y6c{bottom:77.184000pt;}
.y3a{bottom:77.440000pt;}
.y4f{bottom:77.952000pt;}
.y7{bottom:78.016000pt;}
.y8f{bottom:82.144000pt;}
.y3b{bottom:82.173333pt;}
.y3f{bottom:82.176000pt;}
.y42{bottom:82.176027pt;}
.y32{bottom:82.213333pt;}
.y23{bottom:82.240000pt;}
.y3c{bottom:82.333333pt;}
.y40{bottom:82.336000pt;}
.y43{bottom:82.336027pt;}
.y33{bottom:82.373333pt;}
.y29{bottom:82.400000pt;}
.y9f{bottom:82.720000pt;}
.y81{bottom:92.576000pt;}
.y7a{bottom:92.613333pt;}
.y6b{bottom:96.384000pt;}
.y59{bottom:100.736000pt;}
.y37{bottom:103.040000pt;}
.y6{bottom:105.568000pt;}
.y20{bottom:105.632000pt;}
.y18{bottom:109.696000pt;}
.ya8{bottom:114.944000pt;}
.y6a{bottom:115.584000pt;}
.y7e{bottom:116.960000pt;}
.y96{bottom:120.736000pt;}
.y39{bottom:121.216000pt;}
.y8e{bottom:125.344000pt;}
.y9e{bottom:125.920000pt;}
.y35{bottom:128.640000pt;}
.y5{bottom:132.928000pt;}
.y69{bottom:134.786667pt;}
.y4e{bottom:135.586667pt;}
.yae{bottom:142.013333pt;}
.y11{bottom:145.373333pt;}
.y79{bottom:145.760000pt;}
.y38{bottom:146.973333pt;}
.y58{bottom:148.773333pt;}
.y68{bottom:153.986667pt;}
.y36{bottom:154.240000pt;}
.ya7{bottom:158.146667pt;}
.y26{bottom:159.040000pt;}
.y1f{bottom:163.226667pt;}
.y8d{bottom:168.546667pt;}
.y95{bottom:168.733333pt;}
.y67{bottom:173.186667pt;}
.y17{bottom:176.933333pt;}
.y7d{bottom:179.013333pt;}
.y34{bottom:179.840000pt;}
.y25{bottom:184.800000pt;}
.y10{bottom:188.573333pt;}
.yad{bottom:190.013333pt;}
.y9d{bottom:190.426667pt;}
.y66{bottom:192.413333pt;}
.y4d{bottom:193.186667pt;}
.y57{bottom:196.773333pt;}
.y4{bottom:199.266667pt;}
.y2a{bottom:205.440000pt;}
.y7c{bottom:207.973333pt;}
.y65{bottom:211.613333pt;}
.y8c{bottom:211.773333pt;}
.y1e{bottom:220.866667pt;}
.ya6{bottom:222.813333pt;}
.y64{bottom:230.813333pt;}
.y31{bottom:231.040000pt;}
.yf{bottom:231.813333pt;}
.y30{bottom:235.813333pt;}
.y94{bottom:238.053333pt;}
.y78{bottom:238.373333pt;}
.y16{bottom:244.133333pt;}
.y56{bottom:244.800000pt;}
.y63{bottom:250.013333pt;}
.y4c{bottom:250.813333pt;}
.y8b{bottom:254.973333pt;}
.y9c{bottom:255.066667pt;}
.y24{bottom:256.640000pt;}
.y3{bottom:258.173333pt;}
.yac{bottom:259.493333pt;}
.y2f{bottom:261.573333pt;}
.ya5{bottom:266.013333pt;}
.y77{bottom:267.173333pt;}
.y62{bottom:269.213333pt;}
.ye{bottom:275.013333pt;}
.y1d{bottom:278.466667pt;}
.y71{bottom:281.600000pt;}
.y2c{bottom:282.240000pt;}
.y93{bottom:286.053333pt;}
.y2e{bottom:287.200000pt;}
.y61{bottom:288.413333pt;}
.y55{bottom:292.800000pt;}
.y76{bottom:296.160000pt;}
.y8a{bottom:298.173333pt;}
.y9b{bottom:298.306667pt;}
.yab{bottom:307.493333pt;}
.y60{bottom:307.613333pt;}
.y2b{bottom:307.840000pt;}
.y4b{bottom:308.413333pt;}
.ya4{bottom:309.213333pt;}
.y70{bottom:310.560000pt;}
.y15{bottom:311.360000pt;}
.y2{bottom:317.053333pt;}
.yd{bottom:318.213333pt;}
.y75{bottom:324.960000pt;}
.y5f{bottom:326.853333pt;}
.yb0{bottom:331.653333pt;}
.y28{bottom:333.440000pt;}
.y1c{bottom:336.093333pt;}
.y6f{bottom:339.360000pt;}
.y54{bottom:340.800000pt;}
.y89{bottom:341.413333pt;}
.y9a{bottom:341.506667pt;}
.y22{bottom:346.240000pt;}
.y74{bottom:353.760000pt;}
.y92{bottom:355.493333pt;}
.y27{bottom:359.040000pt;}
.yc{bottom:361.440000pt;}
.y5e{bottom:363.813333pt;}
.y6e{bottom:368.160000pt;}
.ya3{bottom:373.733333pt;}
.y1{bottom:375.973333pt;}
.y4a{bottom:376.733333pt;}
.y14{bottom:378.560000pt;}
.y73{bottom:382.560000pt;}
.y88{bottom:384.613333pt;}
.y53{bottom:388.826667pt;}
.y1b{bottom:393.693333pt;}
.yb{bottom:404.640000pt;}
.y99{bottom:405.986667pt;}
.y5d{bottom:407.013333pt;}
.y72{bottom:411.360000pt;}
.y91{bottom:424.800000pt;}
.y87{bottom:427.813333pt;}
.y49{bottom:434.373333pt;}
.y52{bottom:436.826667pt;}
.ya2{bottom:438.213333pt;}
.y84{bottom:445.466667pt;}
.y13{bottom:445.786667pt;}
.ya{bottom:447.840000pt;}
.y5c{bottom:450.213333pt;}
.y1a{bottom:451.293333pt;}
.y98{bottom:470.493333pt;}
.y86{bottom:471.040000pt;}
.y90{bottom:472.800000pt;}
.y45{bottom:473.146667pt;}
.y83{bottom:474.426667pt;}
.ya1{bottom:481.440000pt;}
.y51{bottom:484.826667pt;}
.y9{bottom:491.066667pt;}
.y48{bottom:491.973333pt;}
.y5b{bottom:493.440000pt;}
.y44{bottom:502.106667pt;}
.y19{bottom:508.933333pt;}
.y12{bottom:512.986667pt;}
.y97{bottom:513.693333pt;}
.y85{bottom:514.240000pt;}
.yaa{bottom:520.826667pt;}
.ya0{bottom:524.640000pt;}
.y50{bottom:532.866667pt;}
.y5a{bottom:536.640000pt;}
.y47{bottom:549.600000pt;}
.y8{bottom:615.706667pt;}
.h1b{height:66.750000pt;}
.h1a{height:66.883500pt;}
.h14{height:72.890625pt;}
.h3{height:83.437500pt;}
.he{height:84.662813pt;}
.h11{height:84.790125pt;}
.hc{height:87.156562pt;}
.h10{height:87.287625pt;}
.h1c{height:95.484375pt;}
.h1f{height:95.611688pt;}
.h13{height:98.296875pt;}
.h15{height:98.427937pt;}
.h6{height:100.125000pt;}
.h5{height:100.258500pt;}
.h19{height:111.472500pt;}
.h18{height:111.606000pt;}
.h9{height:127.312500pt;}
.ha{height:127.439813pt;}
.h17{height:133.500000pt;}
.h16{height:133.633500pt;}
.h7{height:148.319063pt;}
.h8{height:148.446375pt;}
.h20{height:174.720000pt;}
.h2{height:178.222500pt;}
.h1{height:178.356000pt;}
.hb{height:179.360000pt;}
.h1d{height:201.760000pt;}
.h12{height:320.800000pt;}
.h4{height:333.750000pt;}
.hd{height:358.560000pt;}
.h1e{height:403.360000pt;}
.h21{height:534.133500pt;}
.hf{height:537.760000pt;}
.h0{height:720.000000pt;}
.w5{width:52.960000pt;}
.w8{width:59.040000pt;}
.wa{width:60.800000pt;}
.w6{width:69.120000pt;}
.w7{width:75.840000pt;}
.we{width:81.760000pt;}
.wd{width:83.040000pt;}
.w3{width:140.640000pt;}
.w2{width:166.080000pt;}
.w4{width:203.680000pt;}
.wc{width:247.520000pt;}
.w9{width:306.560000pt;}
.wb{width:420.320000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.826667pt;}
.x15{left:26.813333pt;}
.x16{left:34.813333pt;}
.x13{left:37.533333pt;}
.x21{left:41.786667pt;}
.x12{left:43.613333pt;}
.x1d{left:52.706667pt;}
.x11{left:53.733333pt;}
.x14{left:60.506667pt;}
.x20{left:64.866667pt;}
.x1f{left:66.080000pt;}
.x8{left:67.199986pt;}
.x7{left:69.599986pt;}
.x9{left:85.279986pt;}
.x1a{left:123.520000pt;}
.xa{left:216.320000pt;}
.x22{left:248.986652pt;}
.x24{left:250.786652pt;}
.x17{left:258.746652pt;}
.x19{left:353.093319pt;}
.xc{left:382.240000pt;}
.x23{left:406.466652pt;}
.x2{left:411.866652pt;}
.x18{left:416.066652pt;}
.x1{left:481.826652pt;}
.xd{left:522.720000pt;}
.x1b{left:543.680000pt;}
.x5{left:558.559986pt;}
.x3{left:565.026652pt;}
.x1c{left:570.466652pt;}
.xf{left:591.680000pt;}
.x4{left:614.239986pt;}
.x1e{left:625.280000pt;}
.x10{left:667.360000pt;}
.x6{left:707.546652pt;}
.xe{left:726.240000pt;}
}




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