
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_19bfde698d1cb4818a9e1b56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_34d18b669c85ff64cef62a45.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_2cdc9fc79fbab61ff8870816.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_9c99cc930563ac6570ccd3c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_78a723dca0cee36e69328474.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_5047add5a638e09f5fc104bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_38c84c854494dbe4c31b7bac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.063600px;}
.ls17{letter-spacing:-0.009000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.ls1{letter-spacing:0.090000px;}
.ls4{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.217400px;}
.ws2{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._12{margin-left:-3.240120px;}
._1{margin-left:-2.197560px;}
._0{margin-left:-1.110000px;}
._2{width:1.140480px;}
._a{width:2.180520px;}
._3{width:3.547680px;}
._4{width:4.767841px;}
._c{width:6.012000px;}
._b{width:7.274400px;}
._6{width:8.720164px;}
._5{width:9.739200px;}
._f{width:11.122200px;}
._11{width:12.187080px;}
._9{width:14.368800px;}
._7{width:16.051800px;}
._8{width:17.616002px;}
._10{width:19.298520px;}
._14{width:23.356440px;}
._e{width:34.147799px;}
._d{width:35.350800px;}
._13{width:36.984356px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:81.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.330000px;}
.y43{bottom:4.500000px;}
.y87{bottom:6.750000px;}
.y89{bottom:7.830000px;}
.y42{bottom:9.000000px;}
.y44{bottom:13.500000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y55{bottom:111.450000px;}
.yaf{bottom:140.340000px;}
.y27{bottom:142.050000px;}
.y54{bottom:147.000000px;}
.yae{bottom:157.890000px;}
.y26{bottom:159.600000px;}
.y53{bottom:164.550000px;}
.y90{bottom:173.820000px;}
.yad{bottom:175.440000px;}
.y25{bottom:177.240000px;}
.y52{bottom:182.190000px;}
.y8f{bottom:191.370000px;}
.y51{bottom:199.740000px;}
.yac{bottom:202.080000px;}
.y8e{bottom:209.010000px;}
.y24{bottom:212.790000px;}
.y50{bottom:218.100000px;}
.yab{bottom:219.630000px;}
.y23{bottom:230.340000px;}
.y4f{bottom:236.550000px;}
.y8d{bottom:244.470000px;}
.yaa{bottom:246.270000px;}
.y22{bottom:247.980000px;}
.y4e{bottom:255.000000px;}
.y8c{bottom:262.920000px;}
.ya9{bottom:263.820000px;}
.y21{bottom:265.530000px;}
.y20{bottom:283.170000px;}
.y7b{bottom:289.560000px;}
.y8b{bottom:290.370000px;}
.y4d{bottom:291.450000px;}
.y1f{bottom:300.720000px;}
.y7a{bottom:307.110000px;}
.ya8{bottom:308.010000px;}
.y4c{bottom:309.000000px;}
.y1e{bottom:318.270000px;}
.y79{bottom:324.750000px;}
.ya7{bottom:325.560000px;}
.y8a{bottom:326.010000px;}
.y4b{bottom:326.550000px;}
.y1d{bottom:335.910000px;}
.y78{bottom:342.300000px;}
.y4a{bottom:344.190000px;}
.y88{bottom:349.230000px;}
.ya6{bottom:352.200000px;}
.y1c{bottom:353.460000px;}
.ya5{bottom:369.750000px;}
.y49{bottom:370.740000px;}
.y86{bottom:375.780000px;}
.y77{bottom:377.850000px;}
.y1b{bottom:389.100000px;}
.y76{bottom:396.300000px;}
.y48{bottom:406.380000px;}
.y1a{bottom:406.650000px;}
.ya4{bottom:413.940000px;}
.y75{bottom:423.660000px;}
.y47{bottom:423.930000px;}
.y19{bottom:424.200000px;}
.ya3{bottom:440.490000px;}
.y18{bottom:441.840000px;}
.y45{bottom:447.150000px;}
.ya2{bottom:458.130000px;}
.y74{bottom:459.300000px;}
.y17{bottom:468.750000px;}
.y41{bottom:473.730000px;}
.y73{bottom:476.880000px;}
.ya1{bottom:484.980000px;}
.y72{bottom:495.330000px;}
.y71{bottom:512.880000px;}
.y16{bottom:517.020000px;}
.y70{bottom:531.330000px;}
.ya0{bottom:533.310000px;}
.y15{bottom:534.930000px;}
.y6f{bottom:548.880000px;}
.y9f{bottom:560.220000px;}
.y14{bottom:571.920000px;}
.y6e{bottom:585.330000px;}
.y13{bottom:589.560000px;}
.y9e{bottom:597.570000px;}
.y6d{bottom:602.880000px;}
.y12{bottom:607.110000px;}
.y6c{bottom:620.520000px;}
.y11{bottom:624.750000px;}
.y6b{bottom:638.070000px;}
.y10{bottom:642.300000px;}
.y9d{bottom:645.810000px;}
.y6a{bottom:655.620000px;}
.yf{bottom:659.850000px;}
.y9c{bottom:663.450000px;}
.y85{bottom:673.890000px;}
.y40{bottom:677.400000px;}
.ye{bottom:677.490000px;}
.y9b{bottom:681.000000px;}
.y69{bottom:682.530000px;}
.y84{bottom:691.530000px;}
.y3f{bottom:694.950000px;}
.yd{bottom:695.040000px;}
.y9a{bottom:698.550000px;}
.y83{bottom:709.080000px;}
.y3e{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y99{bottom:716.190000px;}
.y82{bottom:726.720000px;}
.y3d{bottom:730.140000px;}
.yb{bottom:730.230000px;}
.y68{bottom:730.860000px;}
.y98{bottom:733.740000px;}
.y3c{bottom:747.690000px;}
.y67{bottom:748.410000px;}
.y97{bottom:751.290000px;}
.ya{bottom:757.140000px;}
.y81{bottom:762.180000px;}
.y3b{bottom:765.330000px;}
.y66{bottom:766.050000px;}
.y96{bottom:768.930000px;}
.y80{bottom:780.630000px;}
.y3a{bottom:782.880000px;}
.y65{bottom:783.600000px;}
.y95{bottom:786.480000px;}
.y39{bottom:800.520000px;}
.y64{bottom:801.150000px;}
.y9{bottom:805.380000px;}
.y7f{bottom:808.080000px;}
.y94{bottom:813.390000px;}
.y38{bottom:818.070000px;}
.y63{bottom:818.790000px;}
.yb9{bottom:831.030000px;}
.y37{bottom:835.620000px;}
.y62{bottom:836.340000px;}
.y8{bottom:841.200000px;}
.y7e{bottom:843.720000px;}
.yb8{bottom:848.670000px;}
.y61{bottom:853.890000px;}
.y93{bottom:861.720000px;}
.y36{bottom:862.260000px;}
.y7d{bottom:866.940000px;}
.yb7{bottom:875.220000px;}
.y7{bottom:877.200000px;}
.y60{bottom:880.530000px;}
.y92{bottom:884.940000px;}
.yb6{bottom:892.860000px;}
.y7c{bottom:893.490000px;}
.y35{bottom:898.170000px;}
.y91{bottom:911.490000px;}
.y6{bottom:913.200000px;}
.y5f{bottom:916.080000px;}
.yb5{bottom:919.410000px;}
.yb4{bottom:936.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y5e{bottom:951.630000px;}
.yb3{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y5d{bottom:970.080000px;}
.yb2{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y5c{bottom:988.440000px;}
.y31{bottom:999.150000px;}
.y5b{bottom:1006.890000px;}
.yb1{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y30{bottom:1016.820000px;}
.yb0{bottom:1034.370000px;}
.y5a{bottom:1043.370000px;}
.y2f{bottom:1052.370000px;}
.y59{bottom:1060.920000px;}
.y2e{bottom:1069.920000px;}
.y58{bottom:1078.560000px;}
.y2d{bottom:1087.560000px;}
.y57{bottom:1096.110000px;}
.y2c{bottom:1105.110000px;}
.y56{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.he{height:26.550000px;}
.ha{height:26.580000px;}
.h2{height:26.995781px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:61.793886px;}
.h8{height:62.585859px;}
.hc{height:68.581055px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h9{height:182.250000px;}
.h10{height:243.030000px;}
.hd{height:261.030000px;}
.hf{height:276.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:238.980000px;}
.w3{width:247.980000px;}
.w5{width:250.200000px;}
.wb{width:270.480000px;}
.w7{width:317.730000px;}
.w9{width:326.730000px;}
.wa{width:373.980000px;}
.w8{width:405.480000px;}
.w6{width:427.980000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x11{left:73.800000px;}
.x4{left:78.030000px;}
.x18{left:80.550000px;}
.xd{left:93.149987px;}
.xf{left:95.039987px;}
.xb{left:101.700000px;}
.xa{left:107.760000px;}
.xc{left:109.350000px;}
.x26{left:111.239987px;}
.x10{left:122.039987px;}
.x1f{left:124.380000px;}
.x24{left:130.620000px;}
.x1e{left:150.299987px;}
.x16{left:154.290000px;}
.x25{left:155.519987px;}
.x1d{left:158.790000px;}
.x17{left:160.469987px;}
.x23{left:182.280000px;}
.x2{left:192.719987px;}
.x1c{left:198.030000px;}
.x15{left:209.280000px;}
.x7{left:230.880000px;}
.x5{left:239.880000px;}
.x9{left:242.100000px;}
.x22{left:262.380000px;}
.x14{left:309.630000px;}
.x1b{left:318.630000px;}
.x6{left:326.010000px;}
.x20{left:365.880000px;}
.x19{left:397.380000px;}
.xe{left:406.109987px;}
.x12{left:419.880000px;}
.x1a{left:486.030000px;}
.x21{left:498.360000px;}
.x13{left:501.780000px;}
.x8{left:564.990000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.056533pt;}
.ls17{letter-spacing:-0.008000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.ls1{letter-spacing:0.080000pt;}
.ls4{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.748800pt;}
.ws2{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._12{margin-left:-2.880107pt;}
._1{margin-left:-1.953387pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.013760pt;}
._a{width:1.938240pt;}
._3{width:3.153493pt;}
._4{width:4.238081pt;}
._c{width:5.344000pt;}
._b{width:6.466133pt;}
._6{width:7.751257pt;}
._5{width:8.657066pt;}
._f{width:9.886400pt;}
._11{width:10.832960pt;}
._9{width:12.772267pt;}
._7{width:14.268266pt;}
._8{width:15.658668pt;}
._10{width:17.154240pt;}
._14{width:20.761280pt;}
._e{width:30.353599pt;}
._d{width:31.422934pt;}
._13{width:32.874983pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:72.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.960000pt;}
.y43{bottom:4.000000pt;}
.y87{bottom:6.000000pt;}
.y89{bottom:6.960000pt;}
.y42{bottom:8.000000pt;}
.y44{bottom:12.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y55{bottom:99.066667pt;}
.yaf{bottom:124.746667pt;}
.y27{bottom:126.266667pt;}
.y54{bottom:130.666667pt;}
.yae{bottom:140.346667pt;}
.y26{bottom:141.866667pt;}
.y53{bottom:146.266667pt;}
.y90{bottom:154.506667pt;}
.yad{bottom:155.946667pt;}
.y25{bottom:157.546667pt;}
.y52{bottom:161.946667pt;}
.y8f{bottom:170.106667pt;}
.y51{bottom:177.546667pt;}
.yac{bottom:179.626667pt;}
.y8e{bottom:185.786667pt;}
.y24{bottom:189.146667pt;}
.y50{bottom:193.866667pt;}
.yab{bottom:195.226667pt;}
.y23{bottom:204.746667pt;}
.y4f{bottom:210.266667pt;}
.y8d{bottom:217.306667pt;}
.yaa{bottom:218.906667pt;}
.y22{bottom:220.426667pt;}
.y4e{bottom:226.666667pt;}
.y8c{bottom:233.706667pt;}
.ya9{bottom:234.506667pt;}
.y21{bottom:236.026667pt;}
.y20{bottom:251.706667pt;}
.y7b{bottom:257.386667pt;}
.y8b{bottom:258.106667pt;}
.y4d{bottom:259.066667pt;}
.y1f{bottom:267.306667pt;}
.y7a{bottom:272.986667pt;}
.ya8{bottom:273.786667pt;}
.y4c{bottom:274.666667pt;}
.y1e{bottom:282.906667pt;}
.y79{bottom:288.666667pt;}
.ya7{bottom:289.386667pt;}
.y8a{bottom:289.786667pt;}
.y4b{bottom:290.266667pt;}
.y1d{bottom:298.586667pt;}
.y78{bottom:304.266667pt;}
.y4a{bottom:305.946667pt;}
.y88{bottom:310.426667pt;}
.ya6{bottom:313.066667pt;}
.y1c{bottom:314.186667pt;}
.ya5{bottom:328.666667pt;}
.y49{bottom:329.546667pt;}
.y86{bottom:334.026667pt;}
.y77{bottom:335.866667pt;}
.y1b{bottom:345.866667pt;}
.y76{bottom:352.266667pt;}
.y48{bottom:361.226667pt;}
.y1a{bottom:361.466667pt;}
.ya4{bottom:367.946667pt;}
.y75{bottom:376.586667pt;}
.y47{bottom:376.826667pt;}
.y19{bottom:377.066667pt;}
.ya3{bottom:391.546667pt;}
.y18{bottom:392.746667pt;}
.y45{bottom:397.466667pt;}
.ya2{bottom:407.226667pt;}
.y74{bottom:408.266667pt;}
.y17{bottom:416.666667pt;}
.y41{bottom:421.093333pt;}
.y73{bottom:423.893333pt;}
.ya1{bottom:431.093333pt;}
.y72{bottom:440.293333pt;}
.y71{bottom:455.893333pt;}
.y16{bottom:459.573333pt;}
.y70{bottom:472.293333pt;}
.ya0{bottom:474.053333pt;}
.y15{bottom:475.493333pt;}
.y6f{bottom:487.893333pt;}
.y9f{bottom:497.973333pt;}
.y14{bottom:508.373333pt;}
.y6e{bottom:520.293333pt;}
.y13{bottom:524.053333pt;}
.y9e{bottom:531.173333pt;}
.y6d{bottom:535.893333pt;}
.y12{bottom:539.653333pt;}
.y6c{bottom:551.573333pt;}
.y11{bottom:555.333333pt;}
.y6b{bottom:567.173333pt;}
.y10{bottom:570.933333pt;}
.y9d{bottom:574.053333pt;}
.y6a{bottom:582.773333pt;}
.yf{bottom:586.533333pt;}
.y9c{bottom:589.733333pt;}
.y85{bottom:599.013333pt;}
.y40{bottom:602.133333pt;}
.ye{bottom:602.213333pt;}
.y9b{bottom:605.333333pt;}
.y69{bottom:606.693333pt;}
.y84{bottom:614.693333pt;}
.y3f{bottom:617.733333pt;}
.yd{bottom:617.813333pt;}
.y9a{bottom:620.933333pt;}
.y83{bottom:630.293333pt;}
.y3e{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y99{bottom:636.613333pt;}
.y82{bottom:645.973333pt;}
.y3d{bottom:649.013333pt;}
.yb{bottom:649.093333pt;}
.y68{bottom:649.653333pt;}
.y98{bottom:652.213333pt;}
.y3c{bottom:664.613333pt;}
.y67{bottom:665.253333pt;}
.y97{bottom:667.813333pt;}
.ya{bottom:673.013333pt;}
.y81{bottom:677.493333pt;}
.y3b{bottom:680.293333pt;}
.y66{bottom:680.933333pt;}
.y96{bottom:683.493333pt;}
.y80{bottom:693.893333pt;}
.y3a{bottom:695.893333pt;}
.y65{bottom:696.533333pt;}
.y95{bottom:699.093333pt;}
.y39{bottom:711.573333pt;}
.y64{bottom:712.133333pt;}
.y9{bottom:715.893333pt;}
.y7f{bottom:718.293333pt;}
.y94{bottom:723.013333pt;}
.y38{bottom:727.173333pt;}
.y63{bottom:727.813333pt;}
.yb9{bottom:738.693333pt;}
.y37{bottom:742.773333pt;}
.y62{bottom:743.413333pt;}
.y8{bottom:747.733333pt;}
.y7e{bottom:749.973333pt;}
.yb8{bottom:754.373333pt;}
.y61{bottom:759.013333pt;}
.y93{bottom:765.973333pt;}
.y36{bottom:766.453333pt;}
.y7d{bottom:770.613333pt;}
.yb7{bottom:777.973333pt;}
.y7{bottom:779.733333pt;}
.y60{bottom:782.693333pt;}
.y92{bottom:786.613333pt;}
.yb6{bottom:793.653333pt;}
.y7c{bottom:794.213333pt;}
.y35{bottom:798.373333pt;}
.y91{bottom:810.213333pt;}
.y6{bottom:811.733333pt;}
.y5f{bottom:814.293333pt;}
.yb5{bottom:817.253333pt;}
.yb4{bottom:832.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y5e{bottom:845.893333pt;}
.yb3{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y5d{bottom:862.293333pt;}
.yb2{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y5c{bottom:878.613333pt;}
.y31{bottom:888.133333pt;}
.y5b{bottom:895.013333pt;}
.yb1{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y30{bottom:903.840000pt;}
.yb0{bottom:919.440000pt;}
.y5a{bottom:927.440000pt;}
.y2f{bottom:935.440000pt;}
.y59{bottom:943.040000pt;}
.y2e{bottom:951.040000pt;}
.y58{bottom:958.720000pt;}
.y2d{bottom:966.720000pt;}
.y57{bottom:974.320000pt;}
.y2c{bottom:982.320000pt;}
.y56{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.ha{height:23.626667pt;}
.h2{height:23.996250pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:54.927899pt;}
.h8{height:55.631875pt;}
.hc{height:60.960938pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h9{height:162.000000pt;}
.h10{height:216.026667pt;}
.hd{height:232.026667pt;}
.hf{height:246.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:212.426667pt;}
.w3{width:220.426667pt;}
.w5{width:222.400000pt;}
.wb{width:240.426667pt;}
.w7{width:282.426667pt;}
.w9{width:290.426667pt;}
.wa{width:332.426667pt;}
.w8{width:360.426667pt;}
.w6{width:380.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x11{left:65.600000pt;}
.x4{left:69.360000pt;}
.x18{left:71.600000pt;}
.xd{left:82.799988pt;}
.xf{left:84.479988pt;}
.xb{left:90.400000pt;}
.xa{left:95.786667pt;}
.xc{left:97.200000pt;}
.x26{left:98.879988pt;}
.x10{left:108.479988pt;}
.x1f{left:110.560000pt;}
.x24{left:116.106667pt;}
.x1e{left:133.599988pt;}
.x16{left:137.146667pt;}
.x25{left:138.239988pt;}
.x1d{left:141.146667pt;}
.x17{left:142.639988pt;}
.x23{left:162.026667pt;}
.x2{left:171.306655pt;}
.x1c{left:176.026667pt;}
.x15{left:186.026667pt;}
.x7{left:205.226667pt;}
.x5{left:213.226667pt;}
.x9{left:215.200000pt;}
.x22{left:233.226667pt;}
.x14{left:275.226667pt;}
.x1b{left:283.226667pt;}
.x6{left:289.786667pt;}
.x20{left:325.226667pt;}
.x19{left:353.226667pt;}
.xe{left:360.986655pt;}
.x12{left:373.226667pt;}
.x1a{left:432.026667pt;}
.x21{left:442.986667pt;}
.x13{left:446.026667pt;}
.x8{left:502.213333pt;}
.x3{left:711.413322pt;}
}




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