
    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_fad15f6020b47620e5527760.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_52945f7043e864a48fd47350.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939000;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_8e2019e421648e7ed8ed7fdf.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f6bde3c4d23c6fdbae2c7298.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_db93140ef292adaf0b48425f.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_9bfdbd3a15b826b49c6e696d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37f0beafbf729938ae977985.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,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:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.ls9{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.360000px;}
.ls7{letter-spacing:12.240000px;}
.ls5{letter-spacing:21.240000px;}
.ls0{letter-spacing:62.910000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.640000px;}
.wsc{word-spacing:-15.210000px;}
.ws8{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.356000px;}
.ws4{word-spacing:-11.970000px;}
.ws0{word-spacing:-11.790000px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-4.392000px;}
._4{margin-left:-3.384000px;}
._e{margin-left:-2.232000px;}
._0{margin-left:-1.022040px;}
._1{width:1.006560px;}
._2{width:2.087640px;}
._d{width:3.384720px;}
._9{width:4.478040px;}
._8{width:5.520000px;}
._15{width:6.960000px;}
._17{width:8.472000px;}
._c{width:10.248000px;}
._b{width:11.712000px;}
._11{width:13.104000px;}
._18{width:14.256000px;}
._13{width:15.768000px;}
._12{width:16.776000px;}
._10{width:19.056000px;}
._7{width:20.232000px;}
._a{width:21.960000px;}
._5{width:23.112000px;}
._6{width:24.265440px;}
._19{width:25.488000px;}
._f{width:26.568000px;}
._1a{width:28.080000px;}
._20{width:30.168000px;}
._14{width:56.448000px;}
._3{width:63.282000px;}
._21{width:69.048000px;}
._1b{width:83.664000px;}
._1c{width:90.576000px;}
._24{width:95.760000px;}
._22{width:119.232000px;}
._1f{width:301.152000px;}
._1e{width:302.520000px;}
._23{width:1183.104000px;}
._1d{width:1230.960000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:24.120000px;}
.fs5{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs6{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.420000px;}
.ya{bottom:5.670000px;}
.y7{bottom:7.920000px;}
.y65{bottom:10.710000px;}
.y6b{bottom:10.800000px;}
.y75{bottom:10.980000px;}
.y82{bottom:11.010000px;}
.y67{bottom:11.070000px;}
.y9{bottom:22.950000px;}
.y5{bottom:25.110000px;}
.y6{bottom:33.030000px;}
.y8{bottom:40.140000px;}
.y4{bottom:42.390000px;}
.yd{bottom:60.480000px;}
.yc{bottom:97.650000px;}
.y83{bottom:127.440000px;}
.y48{bottom:128.070000px;}
.y2a{bottom:143.010000px;}
.y5a{bottom:148.770000px;}
.y81{bottom:151.470000px;}
.ya9{bottom:158.970000px;}
.y47{bottom:159.150000px;}
.y62{bottom:174.000000px;}
.y29{bottom:174.090000px;}
.y80{bottom:175.530000px;}
.ya7{bottom:177.870000px;}
.y59{bottom:179.760000px;}
.ya1{bottom:183.720000px;}
.y46{bottom:190.110000px;}
.y7f{bottom:199.560000px;}
.y28{bottom:205.140000px;}
.ya6{bottom:208.920000px;}
.y58{bottom:210.810000px;}
.ya0{bottom:214.770000px;}
.y45{bottom:221.160000px;}
.y27{bottom:236.190000px;}
.y7e{bottom:236.730000px;}
.ya5{bottom:239.970000px;}
.y57{bottom:241.860000px;}
.y9f{bottom:245.820000px;}
.ya3{bottom:246.450000px;}
.ya8{bottom:252.030000px;}
.y44{bottom:252.210000px;}
.y7d{bottom:266.520000px;}
.y26{bottom:267.240000px;}
.ya4{bottom:272.370000px;}
.y56{bottom:272.910000px;}
.y9e{bottom:276.870000px;}
.y43{bottom:283.260000px;}
.y7c{bottom:297.570000px;}
.y25{bottom:298.290000px;}
.y55{bottom:303.960000px;}
.y9d{bottom:307.920000px;}
.y42{bottom:314.310000px;}
.y7b{bottom:328.620000px;}
.y24{bottom:329.340000px;}
.y54{bottom:335.010000px;}
.y9c{bottom:343.560000px;}
.y41{bottom:345.360000px;}
.y7a{bottom:359.670000px;}
.y23{bottom:360.390000px;}
.y53{bottom:366.060000px;}
.y40{bottom:376.410000px;}
.y9b{bottom:380.370000px;}
.y79{bottom:390.720000px;}
.y22{bottom:391.440000px;}
.y52{bottom:397.110000px;}
.y3f{bottom:407.460000px;}
.y78{bottom:408.000000px;}
.y9a{bottom:411.420000px;}
.y21{bottom:422.490000px;}
.y51{bottom:428.160000px;}
.y99{bottom:428.700000px;}
.y77{bottom:432.030000px;}
.y3e{bottom:438.510000px;}
.y98{bottom:452.730000px;}
.y20{bottom:453.450000px;}
.y76{bottom:456.060000px;}
.y50{bottom:459.210000px;}
.y3d{bottom:469.560000px;}
.y97{bottom:476.760000px;}
.y74{bottom:480.180000px;}
.y1f{bottom:484.500000px;}
.y4f{bottom:490.260000px;}
.y3c{bottom:500.610000px;}
.y96{bottom:500.880000px;}
.y73{bottom:504.210000px;}
.y1e{bottom:515.370000px;}
.y4e{bottom:521.310000px;}
.y3b{bottom:531.660000px;}
.y95{bottom:538.050000px;}
.y72{bottom:541.380000px;}
.y1d{bottom:546.600000px;}
.y4d{bottom:552.360000px;}
.y3a{bottom:562.710000px;}
.y94{bottom:567.840000px;}
.y71{bottom:569.820000px;}
.y1c{bottom:578.310000px;}
.y4c{bottom:583.440000px;}
.y39{bottom:593.790000px;}
.y93{bottom:598.920000px;}
.y70{bottom:599.640000px;}
.y1b{bottom:610.710000px;}
.y4b{bottom:614.490000px;}
.y38{bottom:624.840000px;}
.y92{bottom:629.970000px;}
.y6f{bottom:630.690000px;}
.y1a{bottom:641.760000px;}
.y4a{bottom:645.540000px;}
.y37{bottom:655.710000px;}
.ya2{bottom:655.890000px;}
.y91{bottom:661.020000px;}
.y6e{bottom:661.740000px;}
.y61{bottom:676.590000px;}
.y19{bottom:679.560000px;}
.y49{bottom:681.180000px;}
.y36{bottom:686.940000px;}
.y90{bottom:692.070000px;}
.y6d{bottom:692.790000px;}
.y18{bottom:703.860000px;}
.y60{bottom:707.640000px;}
.y35{bottom:717.990000px;}
.y8f{bottom:723.120000px;}
.y6c{bottom:723.840000px;}
.y5f{bottom:738.690000px;}
.y8e{bottom:740.400000px;}
.y6a{bottom:741.120000px;}
.y17{bottom:741.570000px;}
.y34{bottom:749.040000px;}
.y8d{bottom:764.430000px;}
.y69{bottom:765.150000px;}
.y16{bottom:765.870000px;}
.y5e{bottom:769.740000px;}
.y33{bottom:780.090000px;}
.y8c{bottom:788.460000px;}
.y68{bottom:789.180000px;}
.y15{bottom:797.550000px;}
.y5d{bottom:800.790000px;}
.y32{bottom:811.140000px;}
.y8b{bottom:812.490000px;}
.y66{bottom:813.210000px;}
.y14{bottom:830.490000px;}
.y5c{bottom:831.840000px;}
.y64{bottom:837.330000px;}
.yab{bottom:842.010000px;}
.y31{bottom:842.190000px;}
.y8a{bottom:849.660000px;}
.y13{bottom:862.890000px;}
.y5b{bottom:867.480000px;}
.yaa{bottom:873.060000px;}
.y30{bottom:873.240000px;}
.y63{bottom:874.500000px;}
.y89{bottom:879.450000px;}
.y12{bottom:896.010000px;}
.y2f{bottom:904.290000px;}
.y88{bottom:910.500000px;}
.y11{bottom:932.280000px;}
.y2e{bottom:935.340000px;}
.y87{bottom:941.550000px;}
.y2d{bottom:966.390000px;}
.y10{bottom:968.460000px;}
.y86{bottom:972.600000px;}
.y2c{bottom:997.470000px;}
.yf{bottom:1002.600000px;}
.y85{bottom:1003.680000px;}
.y84{bottom:1021.050000px;}
.y2b{bottom:1028.520000px;}
.ye{bottom:1031.130000px;}
.yb{bottom:1045.080000px;}
.y3{bottom:1072.080000px;}
.y1{bottom:1128.240000px;}
.h1{height:17.190000px;}
.he{height:23.220000px;}
.h13{height:23.250000px;}
.h10{height:23.310000px;}
.h5{height:23.990449px;}
.ha{height:46.991602px;}
.h11{height:52.998047px;}
.hf{height:54.421875px;}
.h3{height:56.160000px;}
.h2{height:59.004492px;}
.h12{height:64.657617px;}
.h6{height:65.526152px;}
.hd{height:66.394687px;}
.h7{height:70.664062px;}
.h14{height:71.613281px;}
.hb{height:72.562500px;}
.h9{height:73.991602px;}
.h4{height:77.505120px;}
.h8{height:84.535312px;}
.hc{height:96.870938px;}
.h0{height:1188.000000px;}
.w3{width:86.340000px;}
.w6{width:90.030000px;}
.wc{width:94.890000px;}
.w9{width:99.840000px;}
.w5{width:118.800000px;}
.wd{width:126.810000px;}
.wa{width:133.380000px;}
.wb{width:200.880000px;}
.w2{width:208.830000px;}
.w8{width:211.230000px;}
.w4{width:469.920000px;}
.w1{width:556.260000px;}
.w7{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2a{left:7.740000px;}
.x8{left:13.320000px;}
.x7{left:25.110000px;}
.x36{left:37.380000px;}
.x27{left:39.990000px;}
.x4{left:43.110000px;}
.xa{left:45.000000px;}
.x3{left:46.440000px;}
.x2e{left:48.150000px;}
.x2b{left:51.480000px;}
.x2c{left:54.900000px;}
.x38{left:56.700000px;}
.x29{left:59.940000px;}
.x35{left:74.610000px;}
.x1{left:76.500000px;}
.x25{left:79.740000px;}
.xf{left:85.049986px;}
.x39{left:86.220000px;}
.x12{left:88.649986px;}
.x2d{left:90.180000px;}
.x3c{left:91.350000px;}
.x23{left:92.429986px;}
.x13{left:99.449986px;}
.x31{left:106.019986px;}
.x10{left:110.519986px;}
.x34{left:140.759986px;}
.x6{left:148.680000px;}
.x3d{left:149.759986px;}
.x5{left:162.840000px;}
.x1a{left:169.229986px;}
.x1b{left:170.399986px;}
.xd{left:204.059986px;}
.x24{left:236.100000px;}
.x21{left:245.099986px;}
.x22{left:247.799986px;}
.x3f{left:264.629986px;}
.x16{left:282.899986px;}
.x17{left:284.069986px;}
.x42{left:352.739986px;}
.x1c{left:362.369986px;}
.x41{left:376.499986px;}
.x1e{left:377.669986px;}
.x18{left:389.279986px;}
.x19{left:390.899986px;}
.x3e{left:392.339986px;}
.x1d{left:397.649986px;}
.x2f{left:403.499986px;}
.x30{left:405.299986px;}
.x44{left:409.529986px;}
.x11{left:412.319986px;}
.x14{left:420.599986px;}
.x15{left:421.769986px;}
.x26{left:448.050000px;}
.x40{left:451.469986px;}
.xc{left:455.249986px;}
.x43{left:459.029986px;}
.x37{left:544.290000px;}
.x28{left:548.610000px;}
.x1f{left:562.379986px;}
.x20{left:564.539986px;}
.x2{left:632.760000px;}
.xe{left:725.999986px;}
.x32{left:732.659986px;}
.x33{left:734.639986px;}
.x9{left:751.560000px;}
.x3a{left:816.389986px;}
.x3b{left:818.009986px;}
.xb{left:833.039986px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls7{letter-spacing:10.880000pt;}
.ls5{letter-spacing:18.880000pt;}
.ls0{letter-spacing:55.920000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.680000pt;}
.wsc{word-spacing:-13.520000pt;}
.ws8{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.872000pt;}
.ws4{word-spacing:-10.640000pt;}
.ws0{word-spacing:-10.480000pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-3.904000pt;}
._4{margin-left:-3.008000pt;}
._e{margin-left:-1.984000pt;}
._0{margin-left:-0.908480pt;}
._1{width:0.894720pt;}
._2{width:1.855680pt;}
._d{width:3.008640pt;}
._9{width:3.980480pt;}
._8{width:4.906667pt;}
._15{width:6.186667pt;}
._17{width:7.530667pt;}
._c{width:9.109333pt;}
._b{width:10.410667pt;}
._11{width:11.648000pt;}
._18{width:12.672000pt;}
._13{width:14.016000pt;}
._12{width:14.912000pt;}
._10{width:16.938667pt;}
._7{width:17.984000pt;}
._a{width:19.520000pt;}
._5{width:20.544000pt;}
._6{width:21.569280pt;}
._19{width:22.656000pt;}
._f{width:23.616000pt;}
._1a{width:24.960000pt;}
._20{width:26.816000pt;}
._14{width:50.176000pt;}
._3{width:56.250667pt;}
._21{width:61.376000pt;}
._1b{width:74.368000pt;}
._1c{width:80.512000pt;}
._24{width:85.120000pt;}
._22{width:105.984000pt;}
._1f{width:267.690667pt;}
._1e{width:268.906667pt;}
._23{width:1051.648000pt;}
._1d{width:1094.186667pt;}
.fs2{font-size:21.440000pt;}
.fs5{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs6{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.040000pt;}
.ya{bottom:5.040000pt;}
.y7{bottom:7.040000pt;}
.y65{bottom:9.520000pt;}
.y6b{bottom:9.600000pt;}
.y75{bottom:9.760000pt;}
.y82{bottom:9.786667pt;}
.y67{bottom:9.840000pt;}
.y9{bottom:20.400000pt;}
.y5{bottom:22.320000pt;}
.y6{bottom:29.360000pt;}
.y8{bottom:35.680000pt;}
.y4{bottom:37.680000pt;}
.yd{bottom:53.760000pt;}
.yc{bottom:86.800000pt;}
.y83{bottom:113.280000pt;}
.y48{bottom:113.840000pt;}
.y2a{bottom:127.120000pt;}
.y5a{bottom:132.240000pt;}
.y81{bottom:134.640000pt;}
.ya9{bottom:141.306667pt;}
.y47{bottom:141.466667pt;}
.y62{bottom:154.666667pt;}
.y29{bottom:154.746667pt;}
.y80{bottom:156.026667pt;}
.ya7{bottom:158.106667pt;}
.y59{bottom:159.786667pt;}
.ya1{bottom:163.306667pt;}
.y46{bottom:168.986667pt;}
.y7f{bottom:177.386667pt;}
.y28{bottom:182.346667pt;}
.ya6{bottom:185.706667pt;}
.y58{bottom:187.386667pt;}
.ya0{bottom:190.906667pt;}
.y45{bottom:196.586667pt;}
.y27{bottom:209.946667pt;}
.y7e{bottom:210.426667pt;}
.ya5{bottom:213.306667pt;}
.y57{bottom:214.986667pt;}
.y9f{bottom:218.506667pt;}
.ya3{bottom:219.066667pt;}
.ya8{bottom:224.026667pt;}
.y44{bottom:224.186667pt;}
.y7d{bottom:236.906667pt;}
.y26{bottom:237.546667pt;}
.ya4{bottom:242.106667pt;}
.y56{bottom:242.586667pt;}
.y9e{bottom:246.106667pt;}
.y43{bottom:251.786667pt;}
.y7c{bottom:264.506667pt;}
.y25{bottom:265.146667pt;}
.y55{bottom:270.186667pt;}
.y9d{bottom:273.706667pt;}
.y42{bottom:279.386667pt;}
.y7b{bottom:292.106667pt;}
.y24{bottom:292.746667pt;}
.y54{bottom:297.786667pt;}
.y9c{bottom:305.386667pt;}
.y41{bottom:306.986667pt;}
.y7a{bottom:319.706667pt;}
.y23{bottom:320.346667pt;}
.y53{bottom:325.386667pt;}
.y40{bottom:334.586667pt;}
.y9b{bottom:338.106667pt;}
.y79{bottom:347.306667pt;}
.y22{bottom:347.946667pt;}
.y52{bottom:352.986667pt;}
.y3f{bottom:362.186667pt;}
.y78{bottom:362.666667pt;}
.y9a{bottom:365.706667pt;}
.y21{bottom:375.546667pt;}
.y51{bottom:380.586667pt;}
.y99{bottom:381.066667pt;}
.y77{bottom:384.026667pt;}
.y3e{bottom:389.786667pt;}
.y98{bottom:402.426667pt;}
.y20{bottom:403.066667pt;}
.y76{bottom:405.386667pt;}
.y50{bottom:408.186667pt;}
.y3d{bottom:417.386667pt;}
.y97{bottom:423.786667pt;}
.y74{bottom:426.826667pt;}
.y1f{bottom:430.666667pt;}
.y4f{bottom:435.786667pt;}
.y3c{bottom:444.986667pt;}
.y96{bottom:445.226667pt;}
.y73{bottom:448.186667pt;}
.y1e{bottom:458.106667pt;}
.y4e{bottom:463.386667pt;}
.y3b{bottom:472.586667pt;}
.y95{bottom:478.266667pt;}
.y72{bottom:481.226667pt;}
.y1d{bottom:485.866667pt;}
.y4d{bottom:490.986667pt;}
.y3a{bottom:500.186667pt;}
.y94{bottom:504.746667pt;}
.y71{bottom:506.506667pt;}
.y1c{bottom:514.053333pt;}
.y4c{bottom:518.613333pt;}
.y39{bottom:527.813333pt;}
.y93{bottom:532.373333pt;}
.y70{bottom:533.013333pt;}
.y1b{bottom:542.853333pt;}
.y4b{bottom:546.213333pt;}
.y38{bottom:555.413333pt;}
.y92{bottom:559.973333pt;}
.y6f{bottom:560.613333pt;}
.y1a{bottom:570.453333pt;}
.y4a{bottom:573.813333pt;}
.y37{bottom:582.853333pt;}
.ya2{bottom:583.013333pt;}
.y91{bottom:587.573333pt;}
.y6e{bottom:588.213333pt;}
.y61{bottom:601.413333pt;}
.y19{bottom:604.053333pt;}
.y49{bottom:605.493333pt;}
.y36{bottom:610.613333pt;}
.y90{bottom:615.173333pt;}
.y6d{bottom:615.813333pt;}
.y18{bottom:625.653333pt;}
.y60{bottom:629.013333pt;}
.y35{bottom:638.213333pt;}
.y8f{bottom:642.773333pt;}
.y6c{bottom:643.413333pt;}
.y5f{bottom:656.613333pt;}
.y8e{bottom:658.133333pt;}
.y6a{bottom:658.773333pt;}
.y17{bottom:659.173333pt;}
.y34{bottom:665.813333pt;}
.y8d{bottom:679.493333pt;}
.y69{bottom:680.133333pt;}
.y16{bottom:680.773333pt;}
.y5e{bottom:684.213333pt;}
.y33{bottom:693.413333pt;}
.y8c{bottom:700.853333pt;}
.y68{bottom:701.493333pt;}
.y15{bottom:708.933333pt;}
.y5d{bottom:711.813333pt;}
.y32{bottom:721.013333pt;}
.y8b{bottom:722.213333pt;}
.y66{bottom:722.853333pt;}
.y14{bottom:738.213333pt;}
.y5c{bottom:739.413333pt;}
.y64{bottom:744.293333pt;}
.yab{bottom:748.453333pt;}
.y31{bottom:748.613333pt;}
.y8a{bottom:755.253333pt;}
.y13{bottom:767.013333pt;}
.y5b{bottom:771.093333pt;}
.yaa{bottom:776.053333pt;}
.y30{bottom:776.213333pt;}
.y63{bottom:777.333333pt;}
.y89{bottom:781.733333pt;}
.y12{bottom:796.453333pt;}
.y2f{bottom:803.813333pt;}
.y88{bottom:809.333333pt;}
.y11{bottom:828.693333pt;}
.y2e{bottom:831.413333pt;}
.y87{bottom:836.933333pt;}
.y2d{bottom:859.013333pt;}
.y10{bottom:860.853333pt;}
.y86{bottom:864.533333pt;}
.y2c{bottom:886.640000pt;}
.yf{bottom:891.200000pt;}
.y85{bottom:892.160000pt;}
.y84{bottom:907.600000pt;}
.y2b{bottom:914.240000pt;}
.ye{bottom:916.560000pt;}
.yb{bottom:928.960000pt;}
.y3{bottom:952.960000pt;}
.y1{bottom:1002.880000pt;}
.h1{height:15.280000pt;}
.he{height:20.640000pt;}
.h13{height:20.666667pt;}
.h10{height:20.720000pt;}
.h5{height:21.324844pt;}
.ha{height:41.770312pt;}
.h11{height:47.109375pt;}
.hf{height:48.375000pt;}
.h3{height:49.920000pt;}
.h2{height:52.448437pt;}
.h12{height:57.473437pt;}
.h6{height:58.245469pt;}
.hd{height:59.017500pt;}
.h7{height:62.812500pt;}
.h14{height:63.656250pt;}
.hb{height:64.500000pt;}
.h9{height:65.770312pt;}
.h4{height:68.893440pt;}
.h8{height:75.142500pt;}
.hc{height:86.107500pt;}
.h0{height:1056.000000pt;}
.w3{width:76.746667pt;}
.w6{width:80.026667pt;}
.wc{width:84.346667pt;}
.w9{width:88.746667pt;}
.w5{width:105.600000pt;}
.wd{width:112.720000pt;}
.wa{width:118.560000pt;}
.wb{width:178.560000pt;}
.w2{width:185.626667pt;}
.w8{width:187.760000pt;}
.w4{width:417.706667pt;}
.w1{width:494.453333pt;}
.w7{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.880000pt;}
.x8{left:11.840000pt;}
.x7{left:22.320000pt;}
.x36{left:33.226667pt;}
.x27{left:35.546667pt;}
.x4{left:38.320000pt;}
.xa{left:40.000000pt;}
.x3{left:41.280000pt;}
.x2e{left:42.800000pt;}
.x2b{left:45.760000pt;}
.x2c{left:48.800000pt;}
.x38{left:50.400000pt;}
.x29{left:53.280000pt;}
.x35{left:66.320000pt;}
.x1{left:68.000000pt;}
.x25{left:70.880000pt;}
.xf{left:75.599988pt;}
.x39{left:76.640000pt;}
.x12{left:78.799988pt;}
.x2d{left:80.160000pt;}
.x3c{left:81.200000pt;}
.x23{left:82.159988pt;}
.x13{left:88.399988pt;}
.x31{left:94.239988pt;}
.x10{left:98.239988pt;}
.x34{left:125.119988pt;}
.x6{left:132.160000pt;}
.x3d{left:133.119988pt;}
.x5{left:144.746667pt;}
.x1a{left:150.426655pt;}
.x1b{left:151.466655pt;}
.xd{left:181.386655pt;}
.x24{left:209.866667pt;}
.x21{left:217.866655pt;}
.x22{left:220.266655pt;}
.x3f{left:235.226655pt;}
.x16{left:251.466655pt;}
.x17{left:252.506655pt;}
.x42{left:313.546655pt;}
.x1c{left:322.106655pt;}
.x41{left:334.666655pt;}
.x1e{left:335.706655pt;}
.x18{left:346.026655pt;}
.x19{left:347.466655pt;}
.x3e{left:348.746655pt;}
.x1d{left:353.466655pt;}
.x2f{left:358.666655pt;}
.x30{left:360.266655pt;}
.x44{left:364.026655pt;}
.x11{left:366.506655pt;}
.x14{left:373.866655pt;}
.x15{left:374.906655pt;}
.x26{left:398.266667pt;}
.x40{left:401.306655pt;}
.xc{left:404.666655pt;}
.x43{left:408.026655pt;}
.x37{left:483.813333pt;}
.x28{left:487.653333pt;}
.x1f{left:499.893321pt;}
.x20{left:501.813321pt;}
.x2{left:562.453333pt;}
.xe{left:645.333321pt;}
.x32{left:651.253321pt;}
.x33{left:653.013321pt;}
.x9{left:668.053333pt;}
.x3a{left:725.679988pt;}
.x3b{left:727.119988pt;}
.xb{left:740.479988pt;}
}




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