
    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_c605b9e2d1ae1b7473528131.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_365187e8c1e89b34fcfc6183.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_3269035d3349aae6886c152d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d015bbbfc4df10c3be9da613.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6c18f62cdb538370f4cd80a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_540d6586b25d4505ce18bab3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_45c91f38249ed58078435128.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.123047;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_57f48474f5a4780a38f7952f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_1c31f9f63d42caef0e744449.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-70.560000px;}
.v1{vertical-align:-69.240000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018720px;}
.ls9{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.428400px;}
.ls8{letter-spacing:6.660000px;}
.lsc{letter-spacing:7.146720px;}
.ls3{letter-spacing:10.260000px;}
.lsd{letter-spacing:12.420000px;}
.ls4{letter-spacing:14.580000px;}
.lsa{letter-spacing:18.900000px;}
.lse{letter-spacing:266.580000px;}
.lsb{letter-spacing:459.540000px;}
.ls1{letter-spacing:870.840000px;}
.ls0{letter-spacing:1076.160000px;}
.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:-32.808240px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.958720px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._14{margin-left:-3.585600px;}
._6{margin-left:-2.430240px;}
._4{margin-left:-1.116000px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._3{width:3.564720px;}
._e{width:5.000400px;}
._5{width:6.274800px;}
._11{width:7.350480px;}
._8{width:8.485920px;}
._9{width:9.501840px;}
._7{width:11.234880px;}
._16{width:12.788640px;}
._17{width:13.802880px;}
._d{width:16.912080px;}
._15{width:18.107280px;}
._10{width:19.123200px;}
._a{width:20.378160px;}
._18{width:22.290480px;}
._1b{width:23.425920px;}
._f{width:24.441840px;}
._1c{width:26.389200px;}
._1f{width:28.067760px;}
._b{width:29.760480px;}
._c{width:31.015440px;}
._24{width:32.330160px;}
._19{width:33.824160px;}
._21{width:37.708560px;}
._1a{width:38.963520px;}
._20{width:45.895680px;}
._22{width:59.869440px;}
._23{width:61.264080px;}
._1e{width:72.548640px;}
._12{width:127.766880px;}
._13{width:129.201120px;}
._1d{width:767.850240px;}
._2{width:768.960480px;}
._25{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y40{bottom:56.160000px;}
.y3f{bottom:88.740000px;}
.y79{bottom:89.460000px;}
.y68{bottom:99.900000px;}
.y3e{bottom:106.020000px;}
.y78{bottom:106.740000px;}
.y99{bottom:106.920000px;}
.y97{bottom:108.000000px;}
.yc7{bottom:109.080000px;}
.y67{bottom:117.180000px;}
.y3d{bottom:123.300000px;}
.y77{bottom:124.020000px;}
.y98{bottom:124.200000px;}
.y96{bottom:125.280000px;}
.yc6{bottom:126.360000px;}
.y66{bottom:134.460000px;}
.y3c{bottom:140.400000px;}
.y76{bottom:141.120000px;}
.y95{bottom:142.380000px;}
.yc5{bottom:143.460000px;}
.y65{bottom:151.740000px;}
.y75{bottom:154.800000px;}
.y3b{bottom:157.680000px;}
.y94{bottom:159.660000px;}
.yc4{bottom:160.770000px;}
.y64{bottom:169.050000px;}
.y3a{bottom:174.990000px;}
.y93{bottom:176.970000px;}
.yc3{bottom:178.050000px;}
.y63{bottom:186.150000px;}
.y39{bottom:192.270000px;}
.y92{bottom:194.250000px;}
.yc2{bottom:195.330000px;}
.y62{bottom:203.430000px;}
.y38{bottom:209.550000px;}
.y91{bottom:211.530000px;}
.yc1{bottom:212.610000px;}
.y61{bottom:220.710000px;}
.y37{bottom:226.830000px;}
.yc0{bottom:229.890000px;}
.y60{bottom:237.990000px;}
.y36{bottom:243.930000px;}
.y90{bottom:245.910000px;}
.yc8{bottom:246.630000px;}
.ybf{bottom:246.990000px;}
.y5f{bottom:255.270000px;}
.y35{bottom:261.210000px;}
.y8f{bottom:263.190000px;}
.ybe{bottom:264.270000px;}
.y5e{bottom:272.550000px;}
.y34{bottom:278.490000px;}
.y8e{bottom:280.470000px;}
.ybd{bottom:281.550000px;}
.y5d{bottom:289.650000px;}
.y8d{bottom:294.150000px;}
.y33{bottom:295.770000px;}
.ybc{bottom:298.830000px;}
.y5c{bottom:306.930000px;}
.y32{bottom:313.050000px;}
.ybb{bottom:316.110000px;}
.y5b{bottom:324.210000px;}
.y31{bottom:330.330000px;}
.yba{bottom:333.390000px;}
.y5a{bottom:341.490000px;}
.y30{bottom:347.430000px;}
.yb9{bottom:350.490000px;}
.y59{bottom:358.770000px;}
.y2f{bottom:364.710000px;}
.yb8{bottom:367.770000px;}
.y58{bottom:375.870000px;}
.y2e{bottom:381.990000px;}
.yb7{bottom:385.050000px;}
.y57{bottom:393.150000px;}
.y2d{bottom:399.270000px;}
.yb6{bottom:402.330000px;}
.y56{bottom:410.475000px;}
.y2c{bottom:416.595000px;}
.yb5{bottom:419.655000px;}
.y55{bottom:427.755000px;}
.y2b{bottom:433.695000px;}
.yb4{bottom:436.755000px;}
.y54{bottom:445.035000px;}
.y2a{bottom:450.975000px;}
.yb3{bottom:454.035000px;}
.y74{bottom:459.975000px;}
.y53{bottom:462.315000px;}
.y29{bottom:468.255000px;}
.yb2{bottom:471.315000px;}
.y73{bottom:477.255000px;}
.y52{bottom:479.415000px;}
.y28{bottom:485.535000px;}
.yb1{bottom:488.595000px;}
.y72{bottom:494.535000px;}
.y51{bottom:496.695000px;}
.y27{bottom:502.815000px;}
.yb0{bottom:505.875000px;}
.y71{bottom:511.815000px;}
.y50{bottom:513.975000px;}
.y26{bottom:520.095000px;}
.yaf{bottom:523.155000px;}
.y70{bottom:528.915000px;}
.y4f{bottom:531.255000px;}
.y25{bottom:537.195000px;}
.yae{bottom:540.255000px;}
.y6f{bottom:546.195000px;}
.y4e{bottom:548.535000px;}
.y24{bottom:554.475000px;}
.yad{bottom:557.535000px;}
.y6e{bottom:563.475000px;}
.y4d{bottom:565.815000px;}
.y8c{bottom:568.695000px;}
.y23{bottom:571.755000px;}
.yac{bottom:574.815000px;}
.y6d{bottom:580.755000px;}
.y4c{bottom:582.915000px;}
.y8b{bottom:585.975000px;}
.y22{bottom:589.035000px;}
.yab{bottom:592.095000px;}
.y6c{bottom:598.035000px;}
.y4b{bottom:600.195000px;}
.y8a{bottom:603.255000px;}
.y21{bottom:606.315000px;}
.yaa{bottom:609.375000px;}
.y6b{bottom:611.715000px;}
.y4a{bottom:613.875000px;}
.y89{bottom:620.535000px;}
.ya9{bottom:623.055000px;}
.y20{bottom:623.595000px;}
.y88{bottom:637.815000px;}
.y1f{bottom:640.695000px;}
.y87{bottom:654.945000px;}
.y1e{bottom:658.005000px;}
.y86{bottom:672.225000px;}
.y1d{bottom:675.285000px;}
.y85{bottom:689.505000px;}
.y1c{bottom:692.565000px;}
.y84{bottom:706.785000px;}
.y1b{bottom:709.845000px;}
.y83{bottom:724.065000px;}
.y1a{bottom:726.945000px;}
.y82{bottom:741.345000px;}
.y19{bottom:744.225000px;}
.y81{bottom:758.445000px;}
.y18{bottom:761.505000px;}
.y80{bottom:775.725000px;}
.y17{bottom:778.785000px;}
.y7f{bottom:793.005000px;}
.y16{bottom:795.705000px;}
.y7e{bottom:810.285000px;}
.y15{bottom:813.345000px;}
.y7d{bottom:827.565000px;}
.y14{bottom:830.445000px;}
.y7c{bottom:844.665000px;}
.y13{bottom:847.365000px;}
.y7b{bottom:861.945000px;}
.y6a{bottom:864.645000px;}
.y12{bottom:865.005000px;}
.y7a{bottom:875.625000px;}
.y11{bottom:882.285000px;}
.y10{bottom:899.250000px;}
.y69{bottom:899.610000px;}
.yf{bottom:916.890000px;}
.ye{bottom:933.990000px;}
.yd{bottom:951.270000px;}
.yc{bottom:968.550000px;}
.yb{bottom:985.830000px;}
.ya{bottom:1002.750000px;}
.y49{bottom:1003.110000px;}
.ya8{bottom:1018.230000px;}
.y48{bottom:1020.390000px;}
.ya7{bottom:1035.330000px;}
.y9{bottom:1037.130000px;}
.y47{bottom:1037.490000px;}
.ya1{bottom:1051.530000px;}
.ya6{bottom:1052.610000px;}
.y8{bottom:1054.410000px;}
.y46{bottom:1054.770000px;}
.ya0{bottom:1068.810000px;}
.ya5{bottom:1069.890000px;}
.y7{bottom:1071.690000px;}
.y45{bottom:1072.050000px;}
.y9f{bottom:1086.090000px;}
.ya4{bottom:1087.170000px;}
.y6{bottom:1089.330000px;}
.y9e{bottom:1104.450000px;}
.y5{bottom:1106.610000px;}
.y9d{bottom:1121.730000px;}
.ya3{bottom:1122.630000px;}
.y44{bottom:1123.710000px;}
.y9c{bottom:1138.830000px;}
.ya2{bottom:1139.910000px;}
.y4{bottom:1140.660000px;}
.y43{bottom:1141.020000px;}
.y9b{bottom:1157.220000px;}
.y3{bottom:1157.940000px;}
.y42{bottom:1158.300000px;}
.y9a{bottom:1174.500000px;}
.y2{bottom:1175.220000px;}
.y41{bottom:1175.580000px;}
.y1{bottom:1195.380000px;}
.h8{height:52.998047px;}
.h5{height:53.077852px;}
.h7{height:53.573906px;}
.h4{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h3{height:60.226875px;}
.h9{height:61.423863px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.415987px;}
.x1e{left:112.355987px;}
.x2{left:115.055987px;}
.x13{left:125.315987px;}
.xf{left:136.115987px;}
.x7{left:140.795987px;}
.x14{left:290.054987px;}
.x8{left:327.854987px;}
.x3{left:362.594987px;}
.x16{left:364.034987px;}
.x19{left:377.174987px;}
.x1b{left:379.334987px;}
.x4{left:446.474987px;}
.x11{left:457.274987px;}
.x6{left:462.134987px;}
.x20{left:472.574987px;}
.x10{left:487.004987px;}
.x1f{left:489.884987px;}
.x21{left:506.804987px;}
.x5{left:516.164987px;}
.xd{left:537.944987px;}
.xb{left:544.064987px;}
.xc{left:565.664987px;}
.x1c{left:636.764987px;}
.x1d{left:671.009987px;}
.xa{left:678.209987px;}
.x18{left:691.889987px;}
.x1a{left:703.049987px;}
.x9{left:715.289987px;}
.x15{left:721.769987px;}
.x12{left:784.409987px;}
.xe{left:786.749987px;}
.x17{left:797.189987px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.546667pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016640pt;}
.ls9{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.380800pt;}
.ls8{letter-spacing:5.920000pt;}
.lsc{letter-spacing:6.352640pt;}
.ls3{letter-spacing:9.120000pt;}
.lsd{letter-spacing:11.040000pt;}
.ls4{letter-spacing:12.960000pt;}
.lsa{letter-spacing:16.800000pt;}
.lse{letter-spacing:236.960000pt;}
.lsb{letter-spacing:408.480000pt;}
.ls1{letter-spacing:774.080000pt;}
.ls0{letter-spacing:956.586667pt;}
.ws4{word-spacing:-29.162880pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.296640pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._14{margin-left:-3.187200pt;}
._6{margin-left:-2.160213pt;}
._4{margin-left:-0.992000pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._3{width:3.168640pt;}
._e{width:4.444800pt;}
._5{width:5.577600pt;}
._11{width:6.533760pt;}
._8{width:7.543040pt;}
._9{width:8.446080pt;}
._7{width:9.986560pt;}
._16{width:11.367680pt;}
._17{width:12.269227pt;}
._d{width:15.032960pt;}
._15{width:16.095360pt;}
._10{width:16.998400pt;}
._a{width:18.113920pt;}
._18{width:19.813760pt;}
._1b{width:20.823040pt;}
._f{width:21.726080pt;}
._1c{width:23.457067pt;}
._1f{width:24.949120pt;}
._b{width:26.453760pt;}
._c{width:27.569280pt;}
._24{width:28.737920pt;}
._19{width:30.065920pt;}
._21{width:33.518720pt;}
._1a{width:34.634240pt;}
._20{width:40.796160pt;}
._22{width:53.217280pt;}
._23{width:54.456960pt;}
._1e{width:64.487680pt;}
._12{width:113.570560pt;}
._13{width:114.845440pt;}
._1d{width:682.533547pt;}
._2{width:683.520427pt;}
._25{width:754.858667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:49.920000pt;}
.y3f{bottom:78.880000pt;}
.y79{bottom:79.520000pt;}
.y68{bottom:88.800000pt;}
.y3e{bottom:94.240000pt;}
.y78{bottom:94.880000pt;}
.y99{bottom:95.040000pt;}
.y97{bottom:96.000000pt;}
.yc7{bottom:96.960000pt;}
.y67{bottom:104.160000pt;}
.y3d{bottom:109.600000pt;}
.y77{bottom:110.240000pt;}
.y98{bottom:110.400000pt;}
.y96{bottom:111.360000pt;}
.yc6{bottom:112.320000pt;}
.y66{bottom:119.520000pt;}
.y3c{bottom:124.800000pt;}
.y76{bottom:125.440000pt;}
.y95{bottom:126.560000pt;}
.yc5{bottom:127.520000pt;}
.y65{bottom:134.880000pt;}
.y75{bottom:137.600000pt;}
.y3b{bottom:140.160000pt;}
.y94{bottom:141.920000pt;}
.yc4{bottom:142.906667pt;}
.y64{bottom:150.266667pt;}
.y3a{bottom:155.546667pt;}
.y93{bottom:157.306667pt;}
.yc3{bottom:158.266667pt;}
.y63{bottom:165.466667pt;}
.y39{bottom:170.906667pt;}
.y92{bottom:172.666667pt;}
.yc2{bottom:173.626667pt;}
.y62{bottom:180.826667pt;}
.y38{bottom:186.266667pt;}
.y91{bottom:188.026667pt;}
.yc1{bottom:188.986667pt;}
.y61{bottom:196.186667pt;}
.y37{bottom:201.626667pt;}
.yc0{bottom:204.346667pt;}
.y60{bottom:211.546667pt;}
.y36{bottom:216.826667pt;}
.y90{bottom:218.586667pt;}
.yc8{bottom:219.226667pt;}
.ybf{bottom:219.546667pt;}
.y5f{bottom:226.906667pt;}
.y35{bottom:232.186667pt;}
.y8f{bottom:233.946667pt;}
.ybe{bottom:234.906667pt;}
.y5e{bottom:242.266667pt;}
.y34{bottom:247.546667pt;}
.y8e{bottom:249.306667pt;}
.ybd{bottom:250.266667pt;}
.y5d{bottom:257.466667pt;}
.y8d{bottom:261.466667pt;}
.y33{bottom:262.906667pt;}
.ybc{bottom:265.626667pt;}
.y5c{bottom:272.826667pt;}
.y32{bottom:278.266667pt;}
.ybb{bottom:280.986667pt;}
.y5b{bottom:288.186667pt;}
.y31{bottom:293.626667pt;}
.yba{bottom:296.346667pt;}
.y5a{bottom:303.546667pt;}
.y30{bottom:308.826667pt;}
.yb9{bottom:311.546667pt;}
.y59{bottom:318.906667pt;}
.y2f{bottom:324.186667pt;}
.yb8{bottom:326.906667pt;}
.y58{bottom:334.106667pt;}
.y2e{bottom:339.546667pt;}
.yb7{bottom:342.266667pt;}
.y57{bottom:349.466667pt;}
.y2d{bottom:354.906667pt;}
.yb6{bottom:357.626667pt;}
.y56{bottom:364.866667pt;}
.y2c{bottom:370.306667pt;}
.yb5{bottom:373.026667pt;}
.y55{bottom:380.226667pt;}
.y2b{bottom:385.506667pt;}
.yb4{bottom:388.226667pt;}
.y54{bottom:395.586667pt;}
.y2a{bottom:400.866667pt;}
.yb3{bottom:403.586667pt;}
.y74{bottom:408.866667pt;}
.y53{bottom:410.946667pt;}
.y29{bottom:416.226667pt;}
.yb2{bottom:418.946667pt;}
.y73{bottom:424.226667pt;}
.y52{bottom:426.146667pt;}
.y28{bottom:431.586667pt;}
.yb1{bottom:434.306667pt;}
.y72{bottom:439.586667pt;}
.y51{bottom:441.506667pt;}
.y27{bottom:446.946667pt;}
.yb0{bottom:449.666667pt;}
.y71{bottom:454.946667pt;}
.y50{bottom:456.866667pt;}
.y26{bottom:462.306667pt;}
.yaf{bottom:465.026667pt;}
.y70{bottom:470.146667pt;}
.y4f{bottom:472.226667pt;}
.y25{bottom:477.506667pt;}
.yae{bottom:480.226667pt;}
.y6f{bottom:485.506667pt;}
.y4e{bottom:487.586667pt;}
.y24{bottom:492.866667pt;}
.yad{bottom:495.586667pt;}
.y6e{bottom:500.866667pt;}
.y4d{bottom:502.946667pt;}
.y8c{bottom:505.506667pt;}
.y23{bottom:508.226667pt;}
.yac{bottom:510.946667pt;}
.y6d{bottom:516.226667pt;}
.y4c{bottom:518.146667pt;}
.y8b{bottom:520.866667pt;}
.y22{bottom:523.586667pt;}
.yab{bottom:526.306667pt;}
.y6c{bottom:531.586667pt;}
.y4b{bottom:533.506667pt;}
.y8a{bottom:536.226667pt;}
.y21{bottom:538.946667pt;}
.yaa{bottom:541.666667pt;}
.y6b{bottom:543.746667pt;}
.y4a{bottom:545.666667pt;}
.y89{bottom:551.586667pt;}
.ya9{bottom:553.826667pt;}
.y20{bottom:554.306667pt;}
.y88{bottom:566.946667pt;}
.y1f{bottom:569.506667pt;}
.y87{bottom:582.173333pt;}
.y1e{bottom:584.893333pt;}
.y86{bottom:597.533333pt;}
.y1d{bottom:600.253333pt;}
.y85{bottom:612.893333pt;}
.y1c{bottom:615.613333pt;}
.y84{bottom:628.253333pt;}
.y1b{bottom:630.973333pt;}
.y83{bottom:643.613333pt;}
.y1a{bottom:646.173333pt;}
.y82{bottom:658.973333pt;}
.y19{bottom:661.533333pt;}
.y81{bottom:674.173333pt;}
.y18{bottom:676.893333pt;}
.y80{bottom:689.533333pt;}
.y17{bottom:692.253333pt;}
.y7f{bottom:704.893333pt;}
.y16{bottom:707.293333pt;}
.y7e{bottom:720.253333pt;}
.y15{bottom:722.973333pt;}
.y7d{bottom:735.613333pt;}
.y14{bottom:738.173333pt;}
.y7c{bottom:750.813333pt;}
.y13{bottom:753.213333pt;}
.y7b{bottom:766.173333pt;}
.y6a{bottom:768.573333pt;}
.y12{bottom:768.893333pt;}
.y7a{bottom:778.333333pt;}
.y11{bottom:784.253333pt;}
.y10{bottom:799.333333pt;}
.y69{bottom:799.653333pt;}
.yf{bottom:815.013333pt;}
.ye{bottom:830.213333pt;}
.yd{bottom:845.573333pt;}
.yc{bottom:860.933333pt;}
.yb{bottom:876.293333pt;}
.ya{bottom:891.333333pt;}
.y49{bottom:891.653333pt;}
.ya8{bottom:905.093333pt;}
.y48{bottom:907.013333pt;}
.ya7{bottom:920.293333pt;}
.y9{bottom:921.893333pt;}
.y47{bottom:922.213333pt;}
.ya1{bottom:934.693333pt;}
.ya6{bottom:935.653333pt;}
.y8{bottom:937.253333pt;}
.y46{bottom:937.573333pt;}
.ya0{bottom:950.053333pt;}
.ya5{bottom:951.013333pt;}
.y7{bottom:952.613333pt;}
.y45{bottom:952.933333pt;}
.y9f{bottom:965.413333pt;}
.ya4{bottom:966.373333pt;}
.y6{bottom:968.293333pt;}
.y9e{bottom:981.733333pt;}
.y5{bottom:983.653333pt;}
.y9d{bottom:997.093333pt;}
.ya3{bottom:997.893333pt;}
.y44{bottom:998.853333pt;}
.y9c{bottom:1012.293333pt;}
.ya2{bottom:1013.253333pt;}
.y4{bottom:1013.920000pt;}
.y43{bottom:1014.240000pt;}
.y9b{bottom:1028.640000pt;}
.y3{bottom:1029.280000pt;}
.y42{bottom:1029.600000pt;}
.y9a{bottom:1044.000000pt;}
.y2{bottom:1044.640000pt;}
.y41{bottom:1044.960000pt;}
.y1{bottom:1062.560000pt;}
.h8{height:47.109375pt;}
.h5{height:47.180312pt;}
.h7{height:47.621250pt;}
.h4{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h3{height:53.535000pt;}
.h9{height:54.598989pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.591988pt;}
.x1e{left:99.871988pt;}
.x2{left:102.271988pt;}
.x13{left:111.391988pt;}
.xf{left:120.991988pt;}
.x7{left:125.151988pt;}
.x14{left:257.826655pt;}
.x8{left:291.426655pt;}
.x3{left:322.306655pt;}
.x16{left:323.586655pt;}
.x19{left:335.266655pt;}
.x1b{left:337.186655pt;}
.x4{left:396.866655pt;}
.x11{left:406.466655pt;}
.x6{left:410.786655pt;}
.x20{left:420.066655pt;}
.x10{left:432.893322pt;}
.x1f{left:435.453322pt;}
.x21{left:450.493322pt;}
.x5{left:458.813322pt;}
.xd{left:478.173322pt;}
.xb{left:483.613322pt;}
.xc{left:502.813322pt;}
.x1c{left:566.013322pt;}
.x1d{left:596.453322pt;}
.xa{left:602.853322pt;}
.x18{left:615.013322pt;}
.x1a{left:624.933322pt;}
.x9{left:635.813322pt;}
.x15{left:641.573322pt;}
.x12{left:697.253322pt;}
.xe{left:699.333322pt;}
.x17{left:708.613322pt;}
}




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