
    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_513d4185e3dc0e5581856490.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_66f82c7e9df9fb3cf0fbcea2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e48bdee155ab23c937f81a70.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.057617;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_655d9e2ac80cc89e518543bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f3e8f0f162d8ef839eeb5cb1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_42458e64ec81fb997a04b515.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_626c626a7804b8c03e9a5971.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_f89e120f8b09a5ed5102267c.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;}
.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);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.057600px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.792000px;}
.ls17{letter-spacing:1.224000px;}
.lsb{letter-spacing:4.500000px;}
.lsc{letter-spacing:12.240000px;}
.ls9{letter-spacing:16.560000px;}
.lsa{letter-spacing:17.280000px;}
.ls8{letter-spacing:17.460000px;}
.ls12{letter-spacing:18.000000px;}
.ls14{letter-spacing:20.880000px;}
.ls7{letter-spacing:36.000000px;}
.ls16{letter-spacing:39.720000px;}
.ls15{letter-spacing:75.720000px;}
.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:-59.760000px;}
.wsa{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wsb{word-spacing:-12.329400px;}
.ws9{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._21{margin-left:-9.852000px;}
._5{margin-left:-8.340000px;}
._3{margin-left:-5.988000px;}
._4{margin-left:-4.572000px;}
._7{margin-left:-3.564000px;}
._2{margin-left:-2.268000px;}
._0{margin-left:-1.080000px;}
._1{width:1.896000px;}
._6{width:3.258720px;}
._10{width:4.419840px;}
._8{width:5.472000px;}
._9{width:7.020000px;}
._12{width:8.400000px;}
._11{width:9.576000px;}
._14{width:11.640000px;}
._20{width:12.787680px;}
._15{width:13.796160px;}
._16{width:15.480000px;}
._f{width:16.772160px;}
._13{width:19.932000px;}
._1a{width:21.396000px;}
._18{width:22.956000px;}
._17{width:24.420000px;}
._19{width:25.776000px;}
._e{width:27.336000px;}
._1f{width:28.740000px;}
._24{width:30.240000px;}
._25{width:31.596000px;}
._c{width:32.904000px;}
._26{width:34.092000px;}
._27{width:35.436000px;}
._d{width:36.576000px;}
._1d{width:38.208000px;}
._1e{width:39.636000px;}
._22{width:43.896000px;}
._23{width:45.996000px;}
._28{width:47.124000px;}
._2b{width:53.712000px;}
._29{width:57.960000px;}
._2a{width:59.316000px;}
._1c{width:61.080000px;}
._1b{width:62.844000px;}
._b{width:69.036000px;}
._a{width:70.320000px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(13,15,26);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,175,239);}
.fc2{color:rgb(0,176,240);}
.fc9{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(127,127,127);}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:24.660000px;}
.y6a{bottom:25.020000px;}
.y61{bottom:32.040000px;}
.y63{bottom:32.220000px;}
.y66{bottom:32.265000px;}
.y7{bottom:58.140000px;}
.y6{bottom:78.876000px;}
.y5{bottom:99.216000px;}
.y4{bottom:121.356000px;}
.y28{bottom:148.176000px;}
.y3f{bottom:152.130000px;}
.y5a{bottom:153.930000px;}
.y7e{bottom:158.430000px;}
.y69{bottom:165.990000px;}
.y27{bottom:178.050000px;}
.y8a{bottom:179.490000px;}
.y3e{bottom:193.530000px;}
.y55{bottom:196.950000px;}
.y7d{bottom:199.830000px;}
.y68{bottom:208.110000px;}
.y89{bottom:210.630000px;}
.y26{bottom:212.610000px;}
.y59{bottom:216.390000px;}
.y3d{bottom:234.930000px;}
.y54{bottom:238.350000px;}
.y7c{bottom:241.050000px;}
.y88{bottom:241.590000px;}
.y25{bottom:242.670000px;}
.ya2{bottom:246.810000px;}
.y67{bottom:257.430000px;}
.ya1{bottom:267.510000px;}
.y24{bottom:272.550000px;}
.y3c{bottom:276.330000px;}
.y58{bottom:278.670000px;}
.y53{bottom:279.750000px;}
.y7b{bottom:282.450000px;}
.y87{bottom:293.790000px;}
.y23{bottom:302.610000px;}
.y65{bottom:306.570000px;}
.ya0{bottom:319.530000px;}
.y52{bottom:321.150000px;}
.y7a{bottom:323.850000px;}
.y86{bottom:324.750000px;}
.y22{bottom:332.670000px;}
.y3b{bottom:336.495000px;}
.y57{bottom:341.175000px;}
.y9f{bottom:350.715000px;}
.y64{bottom:355.935000px;}
.y21{bottom:362.595000px;}
.y79{bottom:365.295000px;}
.y85{bottom:376.815000px;}
.y9e{bottom:381.675000px;}
.y20{bottom:396.435000px;}
.y3a{bottom:397.695000px;}
.y56{bottom:403.635000px;}
.y51{bottom:403.995000px;}
.y62{bottom:405.255000px;}
.y78{bottom:406.695000px;}
.y84{bottom:407.955000px;}
.y9d{bottom:412.815000px;}
.y83{bottom:438.915000px;}
.y39{bottom:439.095000px;}
.y1f{bottom:443.055000px;}
.y50{bottom:445.395000px;}
.y60{bottom:454.575000px;}
.y9c{bottom:464.835000px;}
.y1e{bottom:469.155000px;}
.y38{bottom:480.495000px;}
.y4f{bottom:486.795000px;}
.y82{bottom:490.935000px;}
.y1d{bottom:495.075000px;}
.y9b{bottom:495.795000px;}
.y5e{bottom:503.715000px;}
.y77{bottom:510.555000px;}
.y1c{bottom:520.815000px;}
.y37{bottom:521.895000px;}
.y9a{bottom:526.935000px;}
.y4e{bottom:528.195000px;}
.y81{bottom:531.975000px;}
.y1b{bottom:551.955000px;}
.y99{bottom:557.895000px;}
.y36{bottom:563.295000px;}
.y4d{bottom:569.595000px;}
.y1a{bottom:572.655000px;}
.y98{bottom:589.035000px;}
.y5d{bottom:591.915000px;}
.y76{bottom:593.355000px;}
.y19{bottom:598.575000px;}
.y35{bottom:604.725000px;}
.y4c{bottom:610.845000px;}
.y18{bottom:624.345000px;}
.y75{bottom:634.785000px;}
.y97{bottom:641.085000px;}
.y34{bottom:646.125000px;}
.y17{bottom:650.265000px;}
.y5c{bottom:654.405000px;}
.y96{bottom:672.045000px;}
.y4b{bottom:673.305000px;}
.y16{bottom:676.185000px;}
.y33{bottom:687.525000px;}
.y15{bottom:697.605000px;}
.y95{bottom:703.185000px;}
.y5b{bottom:712.545000px;}
.y4a{bottom:714.705000px;}
.y74{bottom:717.585000px;}
.y32{bottom:728.925000px;}
.y94{bottom:734.145000px;}
.y14{bottom:734.685000px;}
.y49{bottom:756.105000px;}
.y13{bottom:762.405000px;}
.y31{bottom:770.325000px;}
.y80{bottom:777.525000px;}
.y73{bottom:780.045000px;}
.y93{bottom:786.345000px;}
.y48{bottom:797.505000px;}
.y12{bottom:799.305000px;}
.y30{bottom:811.725000px;}
.y92{bottom:817.305000px;}
.y72{bottom:821.445000px;}
.y11{bottom:826.845000px;}
.y47{bottom:838.905000px;}
.y91{bottom:848.445000px;}
.y2f{bottom:853.125000px;}
.y71{bottom:862.845000px;}
.y10{bottom:863.745000px;}
.y46{bottom:880.350000px;}
.yf{bottom:891.510000px;}
.y90{bottom:900.510000px;}
.y70{bottom:904.290000px;}
.y2e{bottom:913.110000px;}
.y45{bottom:921.750000px;}
.ye{bottom:928.230000px;}
.y7f{bottom:928.590000px;}
.y6f{bottom:945.690000px;}
.y8f{bottom:952.530000px;}
.yd{bottom:955.950000px;}
.y44{bottom:963.150000px;}
.y2d{bottom:974.490000px;}
.y8e{bottom:983.490000px;}
.y6e{bottom:986.910000px;}
.yc{bottom:992.850000px;}
.y43{bottom:1004.550000px;}
.y8d{bottom:1014.630000px;}
.y2c{bottom:1015.890000px;}
.yb{bottom:1019.670000px;}
.y6d{bottom:1028.310000px;}
.y42{bottom:1045.950000px;}
.ya{bottom:1049.730000px;}
.y2b{bottom:1057.290000px;}
.y8c{bottom:1066.650000px;}
.y6c{bottom:1069.710000px;}
.y9{bottom:1084.830000px;}
.y41{bottom:1087.350000px;}
.y8b{bottom:1097.610000px;}
.y2a{bottom:1098.690000px;}
.y8{bottom:1114.710000px;}
.y29{bottom:1119.390000px;}
.y40{bottom:1128.750000px;}
.y6b{bottom:1129.830000px;}
.y3{bottom:1149.480000px;}
.y2{bottom:1169.820000px;}
.y1{bottom:1192.140000px;}
.hd{height:39.346875px;}
.h11{height:41.400000px;}
.h9{height:43.246406px;}
.h12{height:48.420000px;}
.h13{height:48.600000px;}
.h14{height:48.636000px;}
.h7{height:53.224453px;}
.h5{height:54.864844px;}
.hb{height:58.621992px;}
.hc{height:58.651172px;}
.ha{height:60.226875px;}
.h4{height:60.679688px;}
.hf{height:64.546875px;}
.he{height:65.010937px;}
.h8{height:66.757500px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h15{height:74.004654px;}
.h10{height:74.704922px;}
.h6{height:78.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:46.980000px;}
.wa{width:47.340000px;}
.wb{width:47.520000px;}
.wc{width:47.556000px;}
.w7{width:47.700000px;}
.w8{width:47.880000px;}
.w4{width:48.240000px;}
.w5{width:48.276000px;}
.wd{width:55.980000px;}
.w6{width:56.700000px;}
.w9{width:180.210000px;}
.w3{width:180.570000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x7{left:100.296000px;}
.x1{left:108.035987px;}
.x2{left:109.475987px;}
.x3{left:115.415987px;}
.x5{left:124.235987px;}
.x13{left:161.669987px;}
.x4{left:180.029987px;}
.x9{left:280.875000px;}
.xa{left:329.115000px;}
.xb{left:377.355000px;}
.xc{left:425.595000px;}
.xd{left:473.865000px;}
.xe{left:522.105000px;}
.xf{left:570.345000px;}
.x10{left:627.045000px;}
.x11{left:675.330000px;}
.x12{left:723.030000px;}
.x6{left:785.309987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.051200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.704000pt;}
.ls17{letter-spacing:1.088000pt;}
.lsb{letter-spacing:4.000000pt;}
.lsc{letter-spacing:10.880000pt;}
.ls9{letter-spacing:14.720000pt;}
.lsa{letter-spacing:15.360000pt;}
.ls8{letter-spacing:15.520000pt;}
.ls12{letter-spacing:16.000000pt;}
.ls14{letter-spacing:18.560000pt;}
.ls7{letter-spacing:32.000000pt;}
.ls16{letter-spacing:35.306667pt;}
.ls15{letter-spacing:67.306667pt;}
.ws4{word-spacing:-53.120000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsb{word-spacing:-10.959467pt;}
.ws9{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._21{margin-left:-8.757333pt;}
._5{margin-left:-7.413333pt;}
._3{margin-left:-5.322667pt;}
._4{margin-left:-4.064000pt;}
._7{margin-left:-3.168000pt;}
._2{margin-left:-2.016000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.685333pt;}
._6{width:2.896640pt;}
._10{width:3.928747pt;}
._8{width:4.864000pt;}
._9{width:6.240000pt;}
._12{width:7.466667pt;}
._11{width:8.512000pt;}
._14{width:10.346667pt;}
._20{width:11.366827pt;}
._15{width:12.263253pt;}
._16{width:13.760000pt;}
._f{width:14.908587pt;}
._13{width:17.717333pt;}
._1a{width:19.018667pt;}
._18{width:20.405333pt;}
._17{width:21.706667pt;}
._19{width:22.912000pt;}
._e{width:24.298667pt;}
._1f{width:25.546667pt;}
._24{width:26.880000pt;}
._25{width:28.085333pt;}
._c{width:29.248000pt;}
._26{width:30.304000pt;}
._27{width:31.498667pt;}
._d{width:32.512000pt;}
._1d{width:33.962667pt;}
._1e{width:35.232000pt;}
._22{width:39.018667pt;}
._23{width:40.885333pt;}
._28{width:41.888000pt;}
._2b{width:47.744000pt;}
._29{width:51.520000pt;}
._2a{width:52.725333pt;}
._1c{width:54.293333pt;}
._1b{width:55.861333pt;}
._b{width:61.365333pt;}
._a{width:62.506667pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:21.920000pt;}
.y6a{bottom:22.240000pt;}
.y61{bottom:28.480000pt;}
.y63{bottom:28.640000pt;}
.y66{bottom:28.680000pt;}
.y7{bottom:51.680000pt;}
.y6{bottom:70.112000pt;}
.y5{bottom:88.192000pt;}
.y4{bottom:107.872000pt;}
.y28{bottom:131.712000pt;}
.y3f{bottom:135.226667pt;}
.y5a{bottom:136.826667pt;}
.y7e{bottom:140.826667pt;}
.y69{bottom:147.546667pt;}
.y27{bottom:158.266667pt;}
.y8a{bottom:159.546667pt;}
.y3e{bottom:172.026667pt;}
.y55{bottom:175.066667pt;}
.y7d{bottom:177.626667pt;}
.y68{bottom:184.986667pt;}
.y89{bottom:187.226667pt;}
.y26{bottom:188.986667pt;}
.y59{bottom:192.346667pt;}
.y3d{bottom:208.826667pt;}
.y54{bottom:211.866667pt;}
.y7c{bottom:214.266667pt;}
.y88{bottom:214.746667pt;}
.y25{bottom:215.706667pt;}
.ya2{bottom:219.386667pt;}
.y67{bottom:228.826667pt;}
.ya1{bottom:237.786667pt;}
.y24{bottom:242.266667pt;}
.y3c{bottom:245.626667pt;}
.y58{bottom:247.706667pt;}
.y53{bottom:248.666667pt;}
.y7b{bottom:251.066667pt;}
.y87{bottom:261.146667pt;}
.y23{bottom:268.986667pt;}
.y65{bottom:272.506667pt;}
.ya0{bottom:284.026667pt;}
.y52{bottom:285.466667pt;}
.y7a{bottom:287.866667pt;}
.y86{bottom:288.666667pt;}
.y22{bottom:295.706667pt;}
.y3b{bottom:299.106667pt;}
.y57{bottom:303.266667pt;}
.y9f{bottom:311.746667pt;}
.y64{bottom:316.386667pt;}
.y21{bottom:322.306667pt;}
.y79{bottom:324.706667pt;}
.y85{bottom:334.946667pt;}
.y9e{bottom:339.266667pt;}
.y20{bottom:352.386667pt;}
.y3a{bottom:353.506667pt;}
.y56{bottom:358.786667pt;}
.y51{bottom:359.106667pt;}
.y62{bottom:360.226667pt;}
.y78{bottom:361.506667pt;}
.y84{bottom:362.626667pt;}
.y9d{bottom:366.946667pt;}
.y83{bottom:390.146667pt;}
.y39{bottom:390.306667pt;}
.y1f{bottom:393.826667pt;}
.y50{bottom:395.906667pt;}
.y60{bottom:404.066667pt;}
.y9c{bottom:413.186667pt;}
.y1e{bottom:417.026667pt;}
.y38{bottom:427.106667pt;}
.y4f{bottom:432.706667pt;}
.y82{bottom:436.386667pt;}
.y1d{bottom:440.066667pt;}
.y9b{bottom:440.706667pt;}
.y5e{bottom:447.746667pt;}
.y77{bottom:453.826667pt;}
.y1c{bottom:462.946667pt;}
.y37{bottom:463.906667pt;}
.y9a{bottom:468.386667pt;}
.y4e{bottom:469.506667pt;}
.y81{bottom:472.866667pt;}
.y1b{bottom:490.626667pt;}
.y99{bottom:495.906667pt;}
.y36{bottom:500.706667pt;}
.y4d{bottom:506.306667pt;}
.y1a{bottom:509.026667pt;}
.y98{bottom:523.586667pt;}
.y5d{bottom:526.146667pt;}
.y76{bottom:527.426667pt;}
.y19{bottom:532.066667pt;}
.y35{bottom:537.533333pt;}
.y4c{bottom:542.973333pt;}
.y18{bottom:554.973333pt;}
.y75{bottom:564.253333pt;}
.y97{bottom:569.853333pt;}
.y34{bottom:574.333333pt;}
.y17{bottom:578.013333pt;}
.y5c{bottom:581.693333pt;}
.y96{bottom:597.373333pt;}
.y4b{bottom:598.493333pt;}
.y16{bottom:601.053333pt;}
.y33{bottom:611.133333pt;}
.y15{bottom:620.093333pt;}
.y95{bottom:625.053333pt;}
.y5b{bottom:633.373333pt;}
.y4a{bottom:635.293333pt;}
.y74{bottom:637.853333pt;}
.y32{bottom:647.933333pt;}
.y94{bottom:652.573333pt;}
.y14{bottom:653.053333pt;}
.y49{bottom:672.093333pt;}
.y13{bottom:677.693333pt;}
.y31{bottom:684.733333pt;}
.y80{bottom:691.133333pt;}
.y73{bottom:693.373333pt;}
.y93{bottom:698.973333pt;}
.y48{bottom:708.893333pt;}
.y12{bottom:710.493333pt;}
.y30{bottom:721.533333pt;}
.y92{bottom:726.493333pt;}
.y72{bottom:730.173333pt;}
.y11{bottom:734.973333pt;}
.y47{bottom:745.693333pt;}
.y91{bottom:754.173333pt;}
.y2f{bottom:758.333333pt;}
.y71{bottom:766.973333pt;}
.y10{bottom:767.773333pt;}
.y46{bottom:782.533333pt;}
.yf{bottom:792.453333pt;}
.y90{bottom:800.453333pt;}
.y70{bottom:803.813333pt;}
.y2e{bottom:811.653333pt;}
.y45{bottom:819.333333pt;}
.ye{bottom:825.093333pt;}
.y7f{bottom:825.413333pt;}
.y6f{bottom:840.613333pt;}
.y8f{bottom:846.693333pt;}
.yd{bottom:849.733333pt;}
.y44{bottom:856.133333pt;}
.y2d{bottom:866.213333pt;}
.y8e{bottom:874.213333pt;}
.y6e{bottom:877.253333pt;}
.yc{bottom:882.533333pt;}
.y43{bottom:892.933333pt;}
.y8d{bottom:901.893333pt;}
.y2c{bottom:903.013333pt;}
.yb{bottom:906.373333pt;}
.y6d{bottom:914.053333pt;}
.y42{bottom:929.733333pt;}
.ya{bottom:933.093333pt;}
.y2b{bottom:939.813333pt;}
.y8c{bottom:948.133333pt;}
.y6c{bottom:950.853333pt;}
.y9{bottom:964.293333pt;}
.y41{bottom:966.533333pt;}
.y8b{bottom:975.653333pt;}
.y2a{bottom:976.613333pt;}
.y8{bottom:990.853333pt;}
.y29{bottom:995.013333pt;}
.y40{bottom:1003.333333pt;}
.y6b{bottom:1004.293333pt;}
.y3{bottom:1021.760000pt;}
.y2{bottom:1039.840000pt;}
.y1{bottom:1059.680000pt;}
.hd{height:34.975000pt;}
.h11{height:36.800000pt;}
.h9{height:38.441250pt;}
.h12{height:43.040000pt;}
.h13{height:43.200000pt;}
.h14{height:43.232000pt;}
.h7{height:47.310625pt;}
.h5{height:48.768750pt;}
.hb{height:52.108438pt;}
.hc{height:52.134375pt;}
.ha{height:53.535000pt;}
.h4{height:53.937500pt;}
.hf{height:57.375000pt;}
.he{height:57.787500pt;}
.h8{height:59.340000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h15{height:65.781915pt;}
.h10{height:66.404375pt;}
.h6{height:69.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:41.760000pt;}
.wa{width:42.080000pt;}
.wb{width:42.240000pt;}
.wc{width:42.272000pt;}
.w7{width:42.400000pt;}
.w8{width:42.560000pt;}
.w4{width:42.880000pt;}
.w5{width:42.912000pt;}
.wd{width:49.760000pt;}
.w6{width:50.400000pt;}
.w9{width:160.186667pt;}
.w3{width:160.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x7{left:89.152000pt;}
.x1{left:96.031988pt;}
.x2{left:97.311988pt;}
.x3{left:102.591988pt;}
.x5{left:110.431988pt;}
.x13{left:143.706655pt;}
.x4{left:160.026655pt;}
.x9{left:249.666667pt;}
.xa{left:292.546667pt;}
.xb{left:335.426667pt;}
.xc{left:378.306667pt;}
.xd{left:421.213333pt;}
.xe{left:464.093333pt;}
.xf{left:506.973333pt;}
.x10{left:557.373333pt;}
.x11{left:600.293333pt;}
.x12{left:642.693333pt;}
.x6{left:698.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  