
    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_9d316de9e2d3c868f1be9709.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f13055cbf36b14397ed5933f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_3b8e8301d1dbb8bfeec23eb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_ed828209944cdf40dbd55e52.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_ae4f8e9020eb96b11110160a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a57814acc5559062798910f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_28340a68b6f5eb38f6704bbe.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3e75220cbbfb065aa64e8602.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_571f413f944ad014f41fffee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.720000px;}
.ls6{letter-spacing:3.600000px;}
.ls8{letter-spacing:8.640000px;}
.ls3{letter-spacing:47.664000px;}
.ls4{letter-spacing:51.264000px;}
.ls1{letter-spacing:1158.636000px;}
.ls0{letter-spacing:1342.956000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-66.240000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-12.660000px;}
._14{margin-left:-5.215680px;}
._c{margin-left:-3.744000px;}
._6{margin-left:-2.448000px;}
._0{margin-left:-1.192320px;}
._1{width:1.344000px;}
._b{width:2.448000px;}
._5{width:3.960000px;}
._3{width:5.544000px;}
._2{width:6.552000px;}
._4{width:8.376000px;}
._d{width:9.720000px;}
._f{width:11.304000px;}
._13{width:12.408000px;}
._a{width:13.536000px;}
._8{width:14.760000px;}
._7{width:15.952320px;}
._16{width:16.983360px;}
._9{width:19.872000px;}
._15{width:21.432000px;}
._11{width:22.824000px;}
._19{width:24.216000px;}
._10{width:35.496000px;}
._12{width:39.744000px;}
._e{width:41.184000px;}
._17{width:50.328000px;}
._18{width:65.448000px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.700000px;}
.y65{bottom:88.236000px;}
.y8f{bottom:90.036000px;}
.ya6{bottom:90.756000px;}
.y53{bottom:93.816000px;}
.y7c{bottom:98.676000px;}
.y64{bottom:105.336000px;}
.y63{bottom:110.556000px;}
.y8e{bottom:113.796000px;}
.y31{bottom:117.936000px;}
.yc6{bottom:118.656000px;}
.ya5{bottom:121.716000px;}
.y62{bottom:123.876000px;}
.y52{bottom:124.956000px;}
.y7b{bottom:129.816000px;}
.y8d{bottom:137.736000px;}
.y30{bottom:138.636000px;}
.yc5{bottom:139.356000px;}
.ya4{bottom:152.850000px;}
.y51{bottom:155.910000px;}
.y2f{bottom:159.330000px;}
.y61{bottom:159.690000px;}
.yc4{bottom:160.050000px;}
.y7a{bottom:160.770000px;}
.y8c{bottom:161.490000px;}
.y2e{bottom:180.030000px;}
.y60{bottom:180.750000px;}
.ya3{bottom:183.810000px;}
.y8b{bottom:185.250000px;}
.y50{bottom:187.050000px;}
.y79{bottom:191.910000px;}
.y2d{bottom:200.730000px;}
.yc3{bottom:201.450000px;}
.y5f{bottom:204.510000px;}
.y8a{bottom:209.010000px;}
.ya2{bottom:214.950000px;}
.y4f{bottom:218.010000px;}
.y2c{bottom:221.430000px;}
.yc2{bottom:222.150000px;}
.y78{bottom:222.870000px;}
.y5e{bottom:228.450000px;}
.y89{bottom:232.950000px;}
.y2b{bottom:242.130000px;}
.yc1{bottom:242.850000px;}
.ya1{bottom:245.910000px;}
.y4e{bottom:249.150000px;}
.y5d{bottom:252.210000px;}
.y77{bottom:254.010000px;}
.y88{bottom:256.710000px;}
.y2a{bottom:262.830000px;}
.yc0{bottom:263.550000px;}
.y5c{bottom:275.970000px;}
.ya0{bottom:277.050000px;}
.y4d{bottom:280.110000px;}
.y87{bottom:280.470000px;}
.y29{bottom:283.530000px;}
.ybf{bottom:284.250000px;}
.y76{bottom:284.970000px;}
.y5b{bottom:299.730000px;}
.y28{bottom:304.230000px;}
.ybe{bottom:304.950000px;}
.y9f{bottom:308.010000px;}
.y4c{bottom:311.250000px;}
.y75{bottom:316.110000px;}
.y5a{bottom:323.670000px;}
.y27{bottom:324.930000px;}
.ybd{bottom:325.650000px;}
.y86{bottom:335.415000px;}
.y9e{bottom:339.195000px;}
.y4b{bottom:342.255000px;}
.y26{bottom:345.675000px;}
.ybc{bottom:346.395000px;}
.y74{bottom:347.115000px;}
.y59{bottom:347.475000px;}
.y25{bottom:366.375000px;}
.ybb{bottom:367.095000px;}
.y9d{bottom:370.155000px;}
.y58{bottom:371.235000px;}
.y4a{bottom:373.395000px;}
.y73{bottom:378.255000px;}
.y24{bottom:387.075000px;}
.yba{bottom:387.795000px;}
.y57{bottom:394.995000px;}
.y85{bottom:397.515000px;}
.y9c{bottom:401.115000px;}
.y49{bottom:404.355000px;}
.yb9{bottom:408.495000px;}
.y72{bottom:409.215000px;}
.y56{bottom:418.935000px;}
.y23{bottom:428.475000px;}
.yb8{bottom:429.195000px;}
.y9b{bottom:432.255000px;}
.y48{bottom:435.495000px;}
.y71{bottom:440.355000px;}
.y55{bottom:442.695000px;}
.y22{bottom:449.175000px;}
.yb7{bottom:449.895000px;}
.y84{bottom:459.615000px;}
.y9a{bottom:463.215000px;}
.y47{bottom:466.455000px;}
.y21{bottom:469.875000px;}
.yb6{bottom:470.595000px;}
.y70{bottom:471.315000px;}
.y20{bottom:490.575000px;}
.yb5{bottom:491.295000px;}
.y99{bottom:494.355000px;}
.y46{bottom:497.595000px;}
.y6f{bottom:502.455000px;}
.y1f{bottom:511.275000px;}
.yb4{bottom:511.995000px;}
.y83{bottom:521.715000px;}
.y98{bottom:525.315000px;}
.y45{bottom:528.555000px;}
.y1e{bottom:531.975000px;}
.yb3{bottom:532.695000px;}
.y6e{bottom:533.415000px;}
.y1d{bottom:552.675000px;}
.yb2{bottom:553.395000px;}
.y97{bottom:556.455000px;}
.y44{bottom:559.695000px;}
.y6d{bottom:564.555000px;}
.y1c{bottom:573.375000px;}
.yb1{bottom:574.095000px;}
.y82{bottom:583.815000px;}
.y96{bottom:587.415000px;}
.y43{bottom:590.655000px;}
.y1b{bottom:594.075000px;}
.yb0{bottom:594.825000px;}
.y6c{bottom:595.545000px;}
.y1a{bottom:614.805000px;}
.yaf{bottom:615.525000px;}
.y95{bottom:618.585000px;}
.y42{bottom:621.645000px;}
.y6b{bottom:626.685000px;}
.y19{bottom:635.505000px;}
.yae{bottom:636.225000px;}
.y81{bottom:645.945000px;}
.y94{bottom:649.545000px;}
.y41{bottom:652.785000px;}
.y18{bottom:656.205000px;}
.yad{bottom:656.925000px;}
.y6a{bottom:657.645000px;}
.y17{bottom:676.905000px;}
.yac{bottom:677.625000px;}
.y93{bottom:680.685000px;}
.y40{bottom:683.745000px;}
.y69{bottom:688.785000px;}
.y80{bottom:696.885000px;}
.y16{bottom:697.605000px;}
.yab{bottom:698.325000px;}
.y92{bottom:704.445000px;}
.y68{bottom:711.285000px;}
.y7f{bottom:714.165000px;}
.y3f{bottom:714.885000px;}
.y15{bottom:718.305000px;}
.yaa{bottom:719.025000px;}
.y91{bottom:726.945000px;}
.y67{bottom:728.385000px;}
.y7e{bottom:731.445000px;}
.y14{bottom:739.005000px;}
.ya9{bottom:739.725000px;}
.y90{bottom:744.045000px;}
.y3e{bottom:745.845000px;}
.y7d{bottom:748.725000px;}
.y13{bottom:759.705000px;}
.ya8{bottom:760.425000px;}
.y3d{bottom:776.985000px;}
.y12{bottom:780.405000px;}
.ya7{bottom:784.185000px;}
.y11{bottom:801.105000px;}
.y3c{bottom:807.945000px;}
.y54{bottom:814.785000px;}
.y10{bottom:821.805000px;}
.y3b{bottom:839.085000px;}
.yf{bottom:842.505000px;}
.ye{bottom:863.250000px;}
.y3a{bottom:870.090000px;}
.yd{bottom:883.950000px;}
.y39{bottom:901.230000px;}
.yc{bottom:904.650000px;}
.yb{bottom:925.350000px;}
.y38{bottom:932.190000px;}
.ya{bottom:946.050000px;}
.y37{bottom:963.330000px;}
.y9{bottom:987.450000px;}
.y36{bottom:994.290000px;}
.y8{bottom:1008.150000px;}
.y35{bottom:1025.430000px;}
.y7{bottom:1028.850000px;}
.y6{bottom:1049.550000px;}
.y34{bottom:1056.390000px;}
.y5{bottom:1070.250000px;}
.y33{bottom:1087.530000px;}
.y4{bottom:1091.490000px;}
.y3{bottom:1115.610000px;}
.y32{bottom:1118.490000px;}
.y66{bottom:1121.190000px;}
.y1{bottom:1231.740000px;}
.hd{height:38.158594px;}
.ha{height:47.344922px;}
.h3{height:53.464219px;}
.he{height:58.651172px;}
.hb{height:60.226875px;}
.h9{height:64.546875px;}
.hc{height:65.884219px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.h8{height:74.004654px;}
.h2{height:76.317188px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:127.655987px;}
.x3{left:130.175987px;}
.x1a{left:132.515987px;}
.x7{left:157.169987px;}
.x4{left:163.829987px;}
.x15{left:191.549987px;}
.xe{left:205.049987px;}
.xd{left:212.429987px;}
.x16{left:223.409987px;}
.x2{left:241.769987px;}
.x8{left:266.969987px;}
.x1d{left:297.794987px;}
.xb{left:300.854987px;}
.xc{left:310.394987px;}
.x5{left:318.674987px;}
.xa{left:321.194987px;}
.x1e{left:327.674987px;}
.x19{left:343.694987px;}
.x1b{left:344.774987px;}
.x11{left:350.534987px;}
.x10{left:355.754987px;}
.x20{left:360.974987px;}
.x1c{left:371.054987px;}
.xf{left:374.834987px;}
.x21{left:403.274987px;}
.x13{left:405.254987px;}
.x12{left:428.294987px;}
.x6{left:467.894987px;}
.x14{left:499.784987px;}
.x1f{left:705.209987px;}
.x1{left:788.729987px;}
.x17{left:802.049973px;}
.x18{left:808.169987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls8{letter-spacing:7.680000pt;}
.ls3{letter-spacing:42.368000pt;}
.ls4{letter-spacing:45.568000pt;}
.ls1{letter-spacing:1029.898667pt;}
.ls0{letter-spacing:1193.738667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-11.253333pt;}
._14{margin-left:-4.636160pt;}
._c{margin-left:-3.328000pt;}
._6{margin-left:-2.176000pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.194667pt;}
._b{width:2.176000pt;}
._5{width:3.520000pt;}
._3{width:4.928000pt;}
._2{width:5.824000pt;}
._4{width:7.445333pt;}
._d{width:8.640000pt;}
._f{width:10.048000pt;}
._13{width:11.029333pt;}
._a{width:12.032000pt;}
._8{width:13.120000pt;}
._7{width:14.179840pt;}
._16{width:15.096320pt;}
._9{width:17.664000pt;}
._15{width:19.050667pt;}
._11{width:20.288000pt;}
._19{width:21.525333pt;}
._10{width:31.552000pt;}
._12{width:35.328000pt;}
._e{width:36.608000pt;}
._17{width:44.736000pt;}
._18{width:58.176000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.400000pt;}
.y65{bottom:78.432000pt;}
.y8f{bottom:80.032000pt;}
.ya6{bottom:80.672000pt;}
.y53{bottom:83.392000pt;}
.y7c{bottom:87.712000pt;}
.y64{bottom:93.632000pt;}
.y63{bottom:98.272000pt;}
.y8e{bottom:101.152000pt;}
.y31{bottom:104.832000pt;}
.yc6{bottom:105.472000pt;}
.ya5{bottom:108.192000pt;}
.y62{bottom:110.112000pt;}
.y52{bottom:111.072000pt;}
.y7b{bottom:115.392000pt;}
.y8d{bottom:122.432000pt;}
.y30{bottom:123.232000pt;}
.yc5{bottom:123.872000pt;}
.ya4{bottom:135.866667pt;}
.y51{bottom:138.586667pt;}
.y2f{bottom:141.626667pt;}
.y61{bottom:141.946667pt;}
.yc4{bottom:142.266667pt;}
.y7a{bottom:142.906667pt;}
.y8c{bottom:143.546667pt;}
.y2e{bottom:160.026667pt;}
.y60{bottom:160.666667pt;}
.ya3{bottom:163.386667pt;}
.y8b{bottom:164.666667pt;}
.y50{bottom:166.266667pt;}
.y79{bottom:170.586667pt;}
.y2d{bottom:178.426667pt;}
.yc3{bottom:179.066667pt;}
.y5f{bottom:181.786667pt;}
.y8a{bottom:185.786667pt;}
.ya2{bottom:191.066667pt;}
.y4f{bottom:193.786667pt;}
.y2c{bottom:196.826667pt;}
.yc2{bottom:197.466667pt;}
.y78{bottom:198.106667pt;}
.y5e{bottom:203.066667pt;}
.y89{bottom:207.066667pt;}
.y2b{bottom:215.226667pt;}
.yc1{bottom:215.866667pt;}
.ya1{bottom:218.586667pt;}
.y4e{bottom:221.466667pt;}
.y5d{bottom:224.186667pt;}
.y77{bottom:225.786667pt;}
.y88{bottom:228.186667pt;}
.y2a{bottom:233.626667pt;}
.yc0{bottom:234.266667pt;}
.y5c{bottom:245.306667pt;}
.ya0{bottom:246.266667pt;}
.y4d{bottom:248.986667pt;}
.y87{bottom:249.306667pt;}
.y29{bottom:252.026667pt;}
.ybf{bottom:252.666667pt;}
.y76{bottom:253.306667pt;}
.y5b{bottom:266.426667pt;}
.y28{bottom:270.426667pt;}
.ybe{bottom:271.066667pt;}
.y9f{bottom:273.786667pt;}
.y4c{bottom:276.666667pt;}
.y75{bottom:280.986667pt;}
.y5a{bottom:287.706667pt;}
.y27{bottom:288.826667pt;}
.ybd{bottom:289.466667pt;}
.y86{bottom:298.146667pt;}
.y9e{bottom:301.506667pt;}
.y4b{bottom:304.226667pt;}
.y26{bottom:307.266667pt;}
.ybc{bottom:307.906667pt;}
.y74{bottom:308.546667pt;}
.y59{bottom:308.866667pt;}
.y25{bottom:325.666667pt;}
.ybb{bottom:326.306667pt;}
.y9d{bottom:329.026667pt;}
.y58{bottom:329.986667pt;}
.y4a{bottom:331.906667pt;}
.y73{bottom:336.226667pt;}
.y24{bottom:344.066667pt;}
.yba{bottom:344.706667pt;}
.y57{bottom:351.106667pt;}
.y85{bottom:353.346667pt;}
.y9c{bottom:356.546667pt;}
.y49{bottom:359.426667pt;}
.yb9{bottom:363.106667pt;}
.y72{bottom:363.746667pt;}
.y56{bottom:372.386667pt;}
.y23{bottom:380.866667pt;}
.yb8{bottom:381.506667pt;}
.y9b{bottom:384.226667pt;}
.y48{bottom:387.106667pt;}
.y71{bottom:391.426667pt;}
.y55{bottom:393.506667pt;}
.y22{bottom:399.266667pt;}
.yb7{bottom:399.906667pt;}
.y84{bottom:408.546667pt;}
.y9a{bottom:411.746667pt;}
.y47{bottom:414.626667pt;}
.y21{bottom:417.666667pt;}
.yb6{bottom:418.306667pt;}
.y70{bottom:418.946667pt;}
.y20{bottom:436.066667pt;}
.yb5{bottom:436.706667pt;}
.y99{bottom:439.426667pt;}
.y46{bottom:442.306667pt;}
.y6f{bottom:446.626667pt;}
.y1f{bottom:454.466667pt;}
.yb4{bottom:455.106667pt;}
.y83{bottom:463.746667pt;}
.y98{bottom:466.946667pt;}
.y45{bottom:469.826667pt;}
.y1e{bottom:472.866667pt;}
.yb3{bottom:473.506667pt;}
.y6e{bottom:474.146667pt;}
.y1d{bottom:491.266667pt;}
.yb2{bottom:491.906667pt;}
.y97{bottom:494.626667pt;}
.y44{bottom:497.506667pt;}
.y6d{bottom:501.826667pt;}
.y1c{bottom:509.666667pt;}
.yb1{bottom:510.306667pt;}
.y82{bottom:518.946667pt;}
.y96{bottom:522.146667pt;}
.y43{bottom:525.026667pt;}
.y1b{bottom:528.066667pt;}
.yb0{bottom:528.733333pt;}
.y6c{bottom:529.373333pt;}
.y1a{bottom:546.493333pt;}
.yaf{bottom:547.133333pt;}
.y95{bottom:549.853333pt;}
.y42{bottom:552.573333pt;}
.y6b{bottom:557.053333pt;}
.y19{bottom:564.893333pt;}
.yae{bottom:565.533333pt;}
.y81{bottom:574.173333pt;}
.y94{bottom:577.373333pt;}
.y41{bottom:580.253333pt;}
.y18{bottom:583.293333pt;}
.yad{bottom:583.933333pt;}
.y6a{bottom:584.573333pt;}
.y17{bottom:601.693333pt;}
.yac{bottom:602.333333pt;}
.y93{bottom:605.053333pt;}
.y40{bottom:607.773333pt;}
.y69{bottom:612.253333pt;}
.y80{bottom:619.453333pt;}
.y16{bottom:620.093333pt;}
.yab{bottom:620.733333pt;}
.y92{bottom:626.173333pt;}
.y68{bottom:632.253333pt;}
.y7f{bottom:634.813333pt;}
.y3f{bottom:635.453333pt;}
.y15{bottom:638.493333pt;}
.yaa{bottom:639.133333pt;}
.y91{bottom:646.173333pt;}
.y67{bottom:647.453333pt;}
.y7e{bottom:650.173333pt;}
.y14{bottom:656.893333pt;}
.ya9{bottom:657.533333pt;}
.y90{bottom:661.373333pt;}
.y3e{bottom:662.973333pt;}
.y7d{bottom:665.533333pt;}
.y13{bottom:675.293333pt;}
.ya8{bottom:675.933333pt;}
.y3d{bottom:690.653333pt;}
.y12{bottom:693.693333pt;}
.ya7{bottom:697.053333pt;}
.y11{bottom:712.093333pt;}
.y3c{bottom:718.173333pt;}
.y54{bottom:724.253333pt;}
.y10{bottom:730.493333pt;}
.y3b{bottom:745.853333pt;}
.yf{bottom:748.893333pt;}
.ye{bottom:767.333333pt;}
.y3a{bottom:773.413333pt;}
.yd{bottom:785.733333pt;}
.y39{bottom:801.093333pt;}
.yc{bottom:804.133333pt;}
.yb{bottom:822.533333pt;}
.y38{bottom:828.613333pt;}
.ya{bottom:840.933333pt;}
.y37{bottom:856.293333pt;}
.y9{bottom:877.733333pt;}
.y36{bottom:883.813333pt;}
.y8{bottom:896.133333pt;}
.y35{bottom:911.493333pt;}
.y7{bottom:914.533333pt;}
.y6{bottom:932.933333pt;}
.y34{bottom:939.013333pt;}
.y5{bottom:951.333333pt;}
.y33{bottom:966.693333pt;}
.y4{bottom:970.213333pt;}
.y3{bottom:991.653333pt;}
.y32{bottom:994.213333pt;}
.y66{bottom:996.613333pt;}
.y1{bottom:1094.880000pt;}
.hd{height:33.918750pt;}
.ha{height:42.084375pt;}
.h3{height:47.523750pt;}
.he{height:52.134375pt;}
.hb{height:53.535000pt;}
.h9{height:57.375000pt;}
.hc{height:58.563750pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.h8{height:65.781915pt;}
.h2{height:67.837500pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:113.471988pt;}
.x3{left:115.711988pt;}
.x1a{left:117.791988pt;}
.x7{left:139.706655pt;}
.x4{left:145.626655pt;}
.x15{left:170.266655pt;}
.xe{left:182.266655pt;}
.xd{left:188.826655pt;}
.x16{left:198.586655pt;}
.x2{left:214.906655pt;}
.x8{left:237.306655pt;}
.x1d{left:264.706655pt;}
.xb{left:267.426655pt;}
.xc{left:275.906655pt;}
.x5{left:283.266655pt;}
.xa{left:285.506655pt;}
.x1e{left:291.266655pt;}
.x19{left:305.506655pt;}
.x1b{left:306.466655pt;}
.x11{left:311.586655pt;}
.x10{left:316.226655pt;}
.x20{left:320.866655pt;}
.x1c{left:329.826655pt;}
.xf{left:333.186655pt;}
.x21{left:358.466655pt;}
.x13{left:360.226655pt;}
.x12{left:380.706655pt;}
.x6{left:415.906655pt;}
.x14{left:444.253322pt;}
.x1f{left:626.853322pt;}
.x1{left:701.093322pt;}
.x17{left:712.933310pt;}
.x18{left:718.373322pt;}
}




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