
    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_c2738da29e7773bd4d715a06.woff')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_9697e4891eeccfcf28bbed0d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_570384c80acb4961fab2a044.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c4fe4e9133d0edf92ef4942.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_773d52dde74cfa1ba0090bfe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920410;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_ae598e7f19c6823594d9d6d3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_1e553726e461e51ac9708340.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.lsd{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.018720px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.119520px;}
.lse{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lsb{letter-spacing:194.376000px;}
.ls3{letter-spacing:766.260000px;}
.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;}
}
.ws8{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:0.000000px;}
._1c{margin-left:-14.400000px;}
._6{margin-left:-4.229280px;}
._5{margin-left:-3.168000px;}
._10{margin-left:-2.075520px;}
._1{margin-left:-1.014720px;}
._0{width:1.434240px;}
._3{width:2.605440px;}
._4{width:4.052160px;}
._17{width:5.110080px;}
._14{width:6.198720px;}
._9{width:7.200000px;}
._a{width:8.280000px;}
._15{width:9.341760px;}
._b{width:10.368000px;}
._7{width:12.000000px;}
._8{width:13.932000px;}
._e{width:15.138720px;}
._f{width:16.731840px;}
._16{width:19.086720px;}
._1e{width:20.304000px;}
._18{width:22.296000px;}
._19{width:23.729280px;}
._1b{width:24.809760px;}
._11{width:27.288000px;}
._12{width:28.505760px;}
._21{width:34.776000px;}
._1f{width:36.576000px;}
._20{width:38.267040px;}
._1d{width:42.912000px;}
._c{width:46.086720px;}
._d{width:47.366400px;}
._1a{width:194.376000px;}
._2{width:327.836160px;}
._13{width:329.035200px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:12.420000px;}
.y3{bottom:47.700000px;}
.y2{bottom:84.960000px;}
.y7a{bottom:104.400000px;}
.ye1{bottom:104.760000px;}
.y8a{bottom:111.600000px;}
.y3e{bottom:114.660000px;}
.y85{bottom:114.840000px;}
.yc9{bottom:115.020000px;}
.ya0{bottom:116.640000px;}
.yb5{bottom:123.480000px;}
.y79{bottom:125.100000px;}
.ya2{bottom:125.280000px;}
.ye0{bottom:125.460000px;}
.y89{bottom:131.796000px;}
.yc8{bottom:135.756000px;}
.y84{bottom:146.016000px;}
.ydf{bottom:146.196000px;}
.y9f{bottom:147.636000px;}
.y88{bottom:150.870000px;}
.yb4{bottom:154.650000px;}
.y66{bottom:156.270000px;}
.yc7{bottom:156.450000px;}
.y3d{bottom:158.970000px;}
.yde{bottom:166.890000px;}
.y87{bottom:169.770000px;}
.y3c{bottom:175.710000px;}
.y83{bottom:176.970000px;}
.yc6{bottom:177.150000px;}
.y9e{bottom:178.770000px;}
.yb3{bottom:185.610000px;}
.ydd{bottom:187.230000px;}
.y65{bottom:187.410000px;}
.y86{bottom:188.850000px;}
.y3b{bottom:192.990000px;}
.yc5{bottom:197.850000px;}
.y82{bottom:208.110000px;}
.ydc{bottom:208.290000px;}
.y9d{bottom:209.730000px;}
.y3a{bottom:210.270000px;}
.yb2{bottom:216.750000px;}
.y64{bottom:218.370000px;}
.yc4{bottom:218.550000px;}
.y39{bottom:227.550000px;}
.y81{bottom:228.990000px;}
.yc3{bottom:239.250000px;}
.y9c{bottom:240.870000px;}
.y38{bottom:245.190000px;}
.yb1{bottom:247.710000px;}
.y80{bottom:249.150000px;}
.y63{bottom:249.510000px;}
.ydb{bottom:249.690000px;}
.yc2{bottom:259.950000px;}
.y37{bottom:262.470000px;}
.y7f{bottom:268.050000px;}
.yda{bottom:270.390000px;}
.y9b{bottom:271.830000px;}
.yb0{bottom:278.850000px;}
.y36{bottom:280.470000px;}
.yc1{bottom:280.650000px;}
.y7e{bottom:287.130000px;}
.y35{bottom:287.310000px;}
.yd9{bottom:291.090000px;}
.y34{bottom:300.270000px;}
.yc0{bottom:301.350000px;}
.y9a{bottom:302.970000px;}
.y7d{bottom:306.030000px;}
.yaf{bottom:309.450000px;}
.y62{bottom:311.610000px;}
.yd8{bottom:311.790000px;}
.y33{bottom:317.550000px;}
.ybf{bottom:322.050000px;}
.y7c{bottom:325.110000px;}
.yd7{bottom:332.490000px;}
.y99{bottom:333.930000px;}
.y32{bottom:335.550000px;}
.yae{bottom:340.950000px;}
.y31{bottom:342.390000px;}
.y61{bottom:342.570000px;}
.ybe{bottom:342.750000px;}
.y7b{bottom:344.010000px;}
.yd6{bottom:353.190000px;}
.y30{bottom:355.530000px;}
.ybd{bottom:363.450000px;}
.y98{bottom:365.070000px;}
.yad{bottom:371.910000px;}
.y2f{bottom:372.810000px;}
.y60{bottom:373.710000px;}
.yd5{bottom:373.890000px;}
.ybc{bottom:384.195000px;}
.y2d{bottom:390.855000px;}
.yd4{bottom:394.635000px;}
.y97{bottom:396.075000px;}
.y2e{bottom:397.695000px;}
.yac{bottom:403.095000px;}
.y5f{bottom:404.715000px;}
.ybb{bottom:404.895000px;}
.y2c{bottom:410.835000px;}
.yd3{bottom:415.335000px;}
.yba{bottom:425.595000px;}
.y96{bottom:427.215000px;}
.y2a{bottom:428.835000px;}
.yab{bottom:434.055000px;}
.y2b{bottom:435.675000px;}
.y5e{bottom:435.855000px;}
.yd2{bottom:436.035000px;}
.yb9{bottom:446.295000px;}
.y29{bottom:449.535000px;}
.yd1{bottom:456.735000px;}
.y95{bottom:458.175000px;}
.yaa{bottom:465.015000px;}
.y5d{bottom:466.815000px;}
.yb8{bottom:466.995000px;}
.yd0{bottom:477.435000px;}
.y94{bottom:478.695000px;}
.y28{bottom:487.695000px;}
.ya9{bottom:496.155000px;}
.y93{bottom:497.595000px;}
.y5c{bottom:497.955000px;}
.ycf{bottom:498.135000px;}
.yb7{bottom:508.035000px;}
.y27{bottom:508.395000px;}
.y92{bottom:516.495000px;}
.yce{bottom:518.835000px;}
.ya8{bottom:527.115000px;}
.y5b{bottom:528.915000px;}
.y26{bottom:529.095000px;}
.y91{bottom:535.575000px;}
.ycd{bottom:539.535000px;}
.ya7{bottom:547.635000px;}
.y25{bottom:549.795000px;}
.y90{bottom:554.475000px;}
.y5a{bottom:560.055000px;}
.ycc{bottom:560.235000px;}
.ya6{bottom:566.535000px;}
.y24{bottom:570.495000px;}
.y8f{bottom:573.555000px;}
.y59{bottom:580.575000px;}
.ycb{bottom:580.935000px;}
.ya5{bottom:585.615000px;}
.yb6{bottom:590.835000px;}
.y78{bottom:591.015000px;}
.y23{bottom:591.195000px;}
.y8e{bottom:592.455000px;}
.y58{bottom:601.095000px;}
.yca{bottom:601.455000px;}
.ya4{bottom:604.515000px;}
.y22{bottom:611.895000px;}
.y77{bottom:621.975000px;}
.y57{bottom:622.155000px;}
.ya3{bottom:623.415000px;}
.y21{bottom:632.595000px;}
.y56{bottom:642.885000px;}
.y76{bottom:653.145000px;}
.y20{bottom:653.325000px;}
.y55{bottom:663.585000px;}
.y1f{bottom:674.025000px;}
.y75{bottom:684.105000px;}
.y54{bottom:684.285000px;}
.y1e{bottom:694.725000px;}
.y53{bottom:704.985000px;}
.y74{bottom:715.245000px;}
.y1d{bottom:715.425000px;}
.y52{bottom:725.685000px;}
.y1c{bottom:736.125000px;}
.y73{bottom:746.205000px;}
.y51{bottom:746.385000px;}
.y1b{bottom:756.825000px;}
.y50{bottom:767.085000px;}
.y72{bottom:777.345000px;}
.y1a{bottom:777.525000px;}
.y4f{bottom:787.785000px;}
.y19{bottom:798.225000px;}
.y71{bottom:808.305000px;}
.y4e{bottom:808.485000px;}
.y18{bottom:818.925000px;}
.y4d{bottom:829.185000px;}
.y70{bottom:839.445000px;}
.y17{bottom:839.625000px;}
.y4c{bottom:849.885000px;}
.y16{bottom:860.325000px;}
.y6f{bottom:870.405000px;}
.y4b{bottom:870.585000px;}
.y15{bottom:881.025000px;}
.y8d{bottom:890.970000px;}
.y4a{bottom:891.330000px;}
.y6e{bottom:901.590000px;}
.y14{bottom:901.770000px;}
.y4{bottom:903.210000px;}
.y8c{bottom:911.670000px;}
.y49{bottom:912.030000px;}
.y13{bottom:922.470000px;}
.y8b{bottom:932.370000px;}
.y6d{bottom:932.550000px;}
.y48{bottom:932.730000px;}
.y11{bottom:942.810000px;}
.y12{bottom:948.750000px;}
.y47{bottom:953.430000px;}
.yf{bottom:963.510000px;}
.y6c{bottom:963.690000px;}
.y10{bottom:969.450000px;}
.y46{bottom:974.130000px;}
.ye{bottom:984.210000px;}
.yd{bottom:990.150000px;}
.y6b{bottom:994.650000px;}
.y45{bottom:994.830000px;}
.yc{bottom:1004.910000px;}
.y44{bottom:1015.530000px;}
.yb{bottom:1025.610000px;}
.y6a{bottom:1025.790000px;}
.y43{bottom:1036.230000px;}
.ya{bottom:1046.310000px;}
.y69{bottom:1056.750000px;}
.y42{bottom:1056.930000px;}
.y9{bottom:1067.550000px;}
.y41{bottom:1077.630000px;}
.ya1{bottom:1087.530000px;}
.y68{bottom:1087.890000px;}
.y7{bottom:1091.670000px;}
.y40{bottom:1098.330000px;}
.y8{bottom:1098.510000px;}
.y6{bottom:1115.790000px;}
.y67{bottom:1118.850000px;}
.y3f{bottom:1119.030000px;}
.y1{bottom:1139.370000px;}
.h4{height:29.160000px;}
.h7{height:47.344922px;}
.h8{height:48.616875px;}
.h9{height:58.651172px;}
.hc{height:59.383125px;}
.h3{height:60.226875px;}
.ha{height:64.546875px;}
.hb{height:65.010937px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.960000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.xf{left:131.435973px;}
.x10{left:133.775987px;}
.x9{left:138.095987px;}
.x4{left:143.495987px;}
.x13{left:180.749987px;}
.x11{left:231.149987px;}
.x12{left:297.794987px;}
.xe{left:343.694987px;}
.x5{left:393.374987px;}
.x8{left:467.924987px;}
.xd{left:478.544987px;}
.x6{left:536.324973px;}
.x7{left:542.444987px;}
.xc{left:609.089987px;}
.xb{left:689.549987px;}
.xa{left:802.079973px;}
.x1{left:808.019987px;}
.x3{left:830.700000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsb{letter-spacing:172.778667pt;}
.ls3{letter-spacing:681.120000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:0.000000pt;}
._1c{margin-left:-12.800000pt;}
._6{margin-left:-3.759360pt;}
._5{margin-left:-2.816000pt;}
._10{margin-left:-1.844907pt;}
._1{margin-left:-0.901973pt;}
._0{width:1.274880pt;}
._3{width:2.315947pt;}
._4{width:3.601920pt;}
._17{width:4.542293pt;}
._14{width:5.509973pt;}
._9{width:6.400000pt;}
._a{width:7.360000pt;}
._15{width:8.303787pt;}
._b{width:9.216000pt;}
._7{width:10.666667pt;}
._8{width:12.384000pt;}
._e{width:13.456640pt;}
._f{width:14.872747pt;}
._16{width:16.965973pt;}
._1e{width:18.048000pt;}
._18{width:19.818667pt;}
._19{width:21.092693pt;}
._1b{width:22.053120pt;}
._11{width:24.256000pt;}
._12{width:25.338453pt;}
._21{width:30.912000pt;}
._1f{width:32.512000pt;}
._20{width:34.015147pt;}
._1d{width:38.144000pt;}
._c{width:40.965973pt;}
._d{width:42.103467pt;}
._1a{width:172.778667pt;}
._2{width:291.409920pt;}
._13{width:292.475733pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:11.040000pt;}
.y3{bottom:42.400000pt;}
.y2{bottom:75.520000pt;}
.y7a{bottom:92.800000pt;}
.ye1{bottom:93.120000pt;}
.y8a{bottom:99.200000pt;}
.y3e{bottom:101.920000pt;}
.y85{bottom:102.080000pt;}
.yc9{bottom:102.240000pt;}
.ya0{bottom:103.680000pt;}
.yb5{bottom:109.760000pt;}
.y79{bottom:111.200000pt;}
.ya2{bottom:111.360000pt;}
.ye0{bottom:111.520000pt;}
.y89{bottom:117.152000pt;}
.yc8{bottom:120.672000pt;}
.y84{bottom:129.792000pt;}
.ydf{bottom:129.952000pt;}
.y9f{bottom:131.232000pt;}
.y88{bottom:134.106667pt;}
.yb4{bottom:137.466667pt;}
.y66{bottom:138.906667pt;}
.yc7{bottom:139.066667pt;}
.y3d{bottom:141.306667pt;}
.yde{bottom:148.346667pt;}
.y87{bottom:150.906667pt;}
.y3c{bottom:156.186667pt;}
.y83{bottom:157.306667pt;}
.yc6{bottom:157.466667pt;}
.y9e{bottom:158.906667pt;}
.yb3{bottom:164.986667pt;}
.ydd{bottom:166.426667pt;}
.y65{bottom:166.586667pt;}
.y86{bottom:167.866667pt;}
.y3b{bottom:171.546667pt;}
.yc5{bottom:175.866667pt;}
.y82{bottom:184.986667pt;}
.ydc{bottom:185.146667pt;}
.y9d{bottom:186.426667pt;}
.y3a{bottom:186.906667pt;}
.yb2{bottom:192.666667pt;}
.y64{bottom:194.106667pt;}
.yc4{bottom:194.266667pt;}
.y39{bottom:202.266667pt;}
.y81{bottom:203.546667pt;}
.yc3{bottom:212.666667pt;}
.y9c{bottom:214.106667pt;}
.y38{bottom:217.946667pt;}
.yb1{bottom:220.186667pt;}
.y80{bottom:221.466667pt;}
.y63{bottom:221.786667pt;}
.ydb{bottom:221.946667pt;}
.yc2{bottom:231.066667pt;}
.y37{bottom:233.306667pt;}
.y7f{bottom:238.266667pt;}
.yda{bottom:240.346667pt;}
.y9b{bottom:241.626667pt;}
.yb0{bottom:247.866667pt;}
.y36{bottom:249.306667pt;}
.yc1{bottom:249.466667pt;}
.y7e{bottom:255.226667pt;}
.y35{bottom:255.386667pt;}
.yd9{bottom:258.746667pt;}
.y34{bottom:266.906667pt;}
.yc0{bottom:267.866667pt;}
.y9a{bottom:269.306667pt;}
.y7d{bottom:272.026667pt;}
.yaf{bottom:275.066667pt;}
.y62{bottom:276.986667pt;}
.yd8{bottom:277.146667pt;}
.y33{bottom:282.266667pt;}
.ybf{bottom:286.266667pt;}
.y7c{bottom:288.986667pt;}
.yd7{bottom:295.546667pt;}
.y99{bottom:296.826667pt;}
.y32{bottom:298.266667pt;}
.yae{bottom:303.066667pt;}
.y31{bottom:304.346667pt;}
.y61{bottom:304.506667pt;}
.ybe{bottom:304.666667pt;}
.y7b{bottom:305.786667pt;}
.yd6{bottom:313.946667pt;}
.y30{bottom:316.026667pt;}
.ybd{bottom:323.066667pt;}
.y98{bottom:324.506667pt;}
.yad{bottom:330.586667pt;}
.y2f{bottom:331.386667pt;}
.y60{bottom:332.186667pt;}
.yd5{bottom:332.346667pt;}
.ybc{bottom:341.506667pt;}
.y2d{bottom:347.426667pt;}
.yd4{bottom:350.786667pt;}
.y97{bottom:352.066667pt;}
.y2e{bottom:353.506667pt;}
.yac{bottom:358.306667pt;}
.y5f{bottom:359.746667pt;}
.ybb{bottom:359.906667pt;}
.y2c{bottom:365.186667pt;}
.yd3{bottom:369.186667pt;}
.yba{bottom:378.306667pt;}
.y96{bottom:379.746667pt;}
.y2a{bottom:381.186667pt;}
.yab{bottom:385.826667pt;}
.y2b{bottom:387.266667pt;}
.y5e{bottom:387.426667pt;}
.yd2{bottom:387.586667pt;}
.yb9{bottom:396.706667pt;}
.y29{bottom:399.586667pt;}
.yd1{bottom:405.986667pt;}
.y95{bottom:407.266667pt;}
.yaa{bottom:413.346667pt;}
.y5d{bottom:414.946667pt;}
.yb8{bottom:415.106667pt;}
.yd0{bottom:424.386667pt;}
.y94{bottom:425.506667pt;}
.y28{bottom:433.506667pt;}
.ya9{bottom:441.026667pt;}
.y93{bottom:442.306667pt;}
.y5c{bottom:442.626667pt;}
.ycf{bottom:442.786667pt;}
.yb7{bottom:451.586667pt;}
.y27{bottom:451.906667pt;}
.y92{bottom:459.106667pt;}
.yce{bottom:461.186667pt;}
.ya8{bottom:468.546667pt;}
.y5b{bottom:470.146667pt;}
.y26{bottom:470.306667pt;}
.y91{bottom:476.066667pt;}
.ycd{bottom:479.586667pt;}
.ya7{bottom:486.786667pt;}
.y25{bottom:488.706667pt;}
.y90{bottom:492.866667pt;}
.y5a{bottom:497.826667pt;}
.ycc{bottom:497.986667pt;}
.ya6{bottom:503.586667pt;}
.y24{bottom:507.106667pt;}
.y8f{bottom:509.826667pt;}
.y59{bottom:516.066667pt;}
.ycb{bottom:516.386667pt;}
.ya5{bottom:520.546667pt;}
.yb6{bottom:525.186667pt;}
.y78{bottom:525.346667pt;}
.y23{bottom:525.506667pt;}
.y8e{bottom:526.626667pt;}
.y58{bottom:534.306667pt;}
.yca{bottom:534.626667pt;}
.ya4{bottom:537.346667pt;}
.y22{bottom:543.906667pt;}
.y77{bottom:552.866667pt;}
.y57{bottom:553.026667pt;}
.ya3{bottom:554.146667pt;}
.y21{bottom:562.306667pt;}
.y56{bottom:571.453333pt;}
.y76{bottom:580.573333pt;}
.y20{bottom:580.733333pt;}
.y55{bottom:589.853333pt;}
.y1f{bottom:599.133333pt;}
.y75{bottom:608.093333pt;}
.y54{bottom:608.253333pt;}
.y1e{bottom:617.533333pt;}
.y53{bottom:626.653333pt;}
.y74{bottom:635.773333pt;}
.y1d{bottom:635.933333pt;}
.y52{bottom:645.053333pt;}
.y1c{bottom:654.333333pt;}
.y73{bottom:663.293333pt;}
.y51{bottom:663.453333pt;}
.y1b{bottom:672.733333pt;}
.y50{bottom:681.853333pt;}
.y72{bottom:690.973333pt;}
.y1a{bottom:691.133333pt;}
.y4f{bottom:700.253333pt;}
.y19{bottom:709.533333pt;}
.y71{bottom:718.493333pt;}
.y4e{bottom:718.653333pt;}
.y18{bottom:727.933333pt;}
.y4d{bottom:737.053333pt;}
.y70{bottom:746.173333pt;}
.y17{bottom:746.333333pt;}
.y4c{bottom:755.453333pt;}
.y16{bottom:764.733333pt;}
.y6f{bottom:773.693333pt;}
.y4b{bottom:773.853333pt;}
.y15{bottom:783.133333pt;}
.y8d{bottom:791.973333pt;}
.y4a{bottom:792.293333pt;}
.y6e{bottom:801.413333pt;}
.y14{bottom:801.573333pt;}
.y4{bottom:802.853333pt;}
.y8c{bottom:810.373333pt;}
.y49{bottom:810.693333pt;}
.y13{bottom:819.973333pt;}
.y8b{bottom:828.773333pt;}
.y6d{bottom:828.933333pt;}
.y48{bottom:829.093333pt;}
.y11{bottom:838.053333pt;}
.y12{bottom:843.333333pt;}
.y47{bottom:847.493333pt;}
.yf{bottom:856.453333pt;}
.y6c{bottom:856.613333pt;}
.y10{bottom:861.733333pt;}
.y46{bottom:865.893333pt;}
.ye{bottom:874.853333pt;}
.yd{bottom:880.133333pt;}
.y6b{bottom:884.133333pt;}
.y45{bottom:884.293333pt;}
.yc{bottom:893.253333pt;}
.y44{bottom:902.693333pt;}
.yb{bottom:911.653333pt;}
.y6a{bottom:911.813333pt;}
.y43{bottom:921.093333pt;}
.ya{bottom:930.053333pt;}
.y69{bottom:939.333333pt;}
.y42{bottom:939.493333pt;}
.y9{bottom:948.933333pt;}
.y41{bottom:957.893333pt;}
.ya1{bottom:966.693333pt;}
.y68{bottom:967.013333pt;}
.y7{bottom:970.373333pt;}
.y40{bottom:976.293333pt;}
.y8{bottom:976.453333pt;}
.y6{bottom:991.813333pt;}
.y67{bottom:994.533333pt;}
.y3f{bottom:994.693333pt;}
.y1{bottom:1012.773333pt;}
.h4{height:25.920000pt;}
.h7{height:42.084375pt;}
.h8{height:43.215000pt;}
.h9{height:52.134375pt;}
.hc{height:52.785000pt;}
.h3{height:53.535000pt;}
.ha{height:57.375000pt;}
.hb{height:57.787500pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.520000pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.xf{left:116.831976pt;}
.x10{left:118.911988pt;}
.x9{left:122.751988pt;}
.x4{left:127.551988pt;}
.x13{left:160.666655pt;}
.x11{left:205.466655pt;}
.x12{left:264.706655pt;}
.xe{left:305.506655pt;}
.x5{left:349.666655pt;}
.x8{left:415.933322pt;}
.xd{left:425.373322pt;}
.x6{left:476.733310pt;}
.x7{left:482.173322pt;}
.xc{left:541.413322pt;}
.xb{left:612.933322pt;}
.xa{left:712.959976pt;}
.x1{left:718.239988pt;}
.x3{left:738.400000pt;}
}




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