
    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_32fd422540baf4339e520b7f.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_5ee72bb5806452a6553d7290.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_f9f7ccbbd48efd24c48003e5.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_655c6e6b7f9b2c678fca9316.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_7f9b86e420fbcc31d20a9bc4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_913366337fc654c66e1bfa25.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e53fc019af2af121ef35e812.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls7{letter-spacing:-2.880000px;}
.lsb{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls4{letter-spacing:3.749760px;}
.ls5{letter-spacing:10.229760px;}
.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;}
}
.wsa{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.568000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.120000px;}
.ws7{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.836200px;}
.ws1{word-spacing:-11.160000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-4.430880px;}
._5{margin-left:-3.408000px;}
._3{margin-left:-2.265120px;}
._1{margin-left:-1.135440px;}
._2{width:1.015920px;}
._0{width:2.031840px;}
._4{width:3.779520px;}
._c{width:5.016000px;}
._7{width:6.120000px;}
._8{width:7.128000px;}
._11{width:8.607600px;}
._12{width:9.659520px;}
._e{width:10.704000px;}
._f{width:12.312000px;}
._10{width:14.376000px;}
._13{width:15.984000px;}
._1b{width:16.992000px;}
._d{width:19.103040px;}
._a{width:20.376000px;}
._b{width:21.520080px;}
._19{width:23.184000px;}
._1a{width:24.192000px;}
._14{width:25.200000px;}
._15{width:26.208000px;}
._16{width:28.080000px;}
._17{width:29.083440px;}
._9{width:30.888000px;}
._18{width:34.416000px;}
._28{width:36.504000px;}
._1f{width:52.200000px;}
._20{width:53.388240px;}
._1d{width:68.472000px;}
._1e{width:70.864080px;}
._21{width:118.992000px;}
._24{width:123.441600px;}
._23{width:124.777200px;}
._22{width:133.704000px;}
._26{width:165.829440px;}
._25{width:166.921200px;}
._27{width:256.968000px;}
._1c{width:398.304000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,102,153);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:23.760000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.ya{bottom:5.940000px;}
.y7{bottom:8.100000px;}
.y9{bottom:23.220000px;}
.y5{bottom:25.380000px;}
.y6{bottom:33.660000px;}
.y8{bottom:40.500000px;}
.y4{bottom:42.660000px;}
.yd{bottom:60.660000px;}
.yc{bottom:97.956000px;}
.yb4{bottom:128.196000px;}
.y81{bottom:129.636000px;}
.y48{bottom:135.936000px;}
.ybd{bottom:146.196000px;}
.y61{bottom:148.896000px;}
.y80{bottom:154.110000px;}
.y2a{bottom:154.470000px;}
.yb3{bottom:159.150000px;}
.y9e{bottom:161.850000px;}
.y47{bottom:166.890000px;}
.ybc{bottom:177.330000px;}
.y60{bottom:179.850000px;}
.y77{bottom:185.070000px;}
.y29{bottom:185.610000px;}
.yb2{bottom:190.290000px;}
.y9d{bottom:192.810000px;}
.y46{bottom:198.030000px;}
.ybb{bottom:208.290000px;}
.y5f{bottom:210.990000px;}
.y76{bottom:216.030000px;}
.y28{bottom:216.570000px;}
.yb1{bottom:221.250000px;}
.y9c{bottom:223.950000px;}
.y45{bottom:227.910000px;}
.yba{bottom:239.430000px;}
.y5e{bottom:241.950000px;}
.y75{bottom:247.170000px;}
.y27{bottom:247.710000px;}
.y7f{bottom:251.670000px;}
.yb0{bottom:252.390000px;}
.y9b{bottom:254.910000px;}
.y44{bottom:257.430000px;}
.y5d{bottom:273.090000px;}
.yb9{bottom:275.070000px;}
.y74{bottom:278.130000px;}
.y26{bottom:278.670000px;}
.yaf{bottom:283.350000px;}
.y9a{bottom:286.050000px;}
.y7e{bottom:287.490000px;}
.y43{bottom:288.570000px;}
.y5c{bottom:304.050000px;}
.y73{bottom:309.270000px;}
.y25{bottom:309.810000px;}
.yb8{bottom:310.710000px;}
.yae{bottom:314.490000px;}
.y7d{bottom:315.930000px;}
.y99{bottom:317.055000px;}
.y42{bottom:319.575000px;}
.y5b{bottom:335.235000px;}
.y72{bottom:340.275000px;}
.y24{bottom:340.815000px;}
.y7c{bottom:345.495000px;}
.y98{bottom:348.195000px;}
.y41{bottom:350.715000px;}
.y5a{bottom:366.195000px;}
.y71{bottom:371.415000px;}
.y23{bottom:371.955000px;}
.y7b{bottom:376.635000px;}
.y97{bottom:379.155000px;}
.y40{bottom:381.675000px;}
.y59{bottom:397.335000px;}
.yad{bottom:402.375000px;}
.y22{bottom:402.915000px;}
.y70{bottom:407.055000px;}
.y7a{bottom:407.595000px;}
.y96{bottom:410.295000px;}
.y3f{bottom:412.815000px;}
.y58{bottom:428.295000px;}
.yac{bottom:433.515000px;}
.y21{bottom:434.055000px;}
.y79{bottom:438.735000px;}
.y95{bottom:441.255000px;}
.y6f{bottom:442.695000px;}
.y3e{bottom:443.775000px;}
.y57{bottom:459.435000px;}
.yab{bottom:464.475000px;}
.y20{bottom:465.015000px;}
.y78{bottom:469.695000px;}
.y6e{bottom:471.135000px;}
.y94{bottom:472.215000px;}
.y3d{bottom:474.915000px;}
.y56{bottom:490.395000px;}
.yaa{bottom:495.615000px;}
.y1f{bottom:496.155000px;}
.y6d{bottom:500.835000px;}
.y93{bottom:503.355000px;}
.y3c{bottom:505.875000px;}
.y55{bottom:521.535000px;}
.ya9{bottom:526.575000px;}
.y1e{bottom:527.115000px;}
.y6c{bottom:531.795000px;}
.y92{bottom:534.315000px;}
.y3b{bottom:537.015000px;}
.y54{bottom:552.495000px;}
.ya8{bottom:557.715000px;}
.y1d{bottom:558.255000px;}
.y6b{bottom:562.935000px;}
.y91{bottom:565.455000px;}
.y3a{bottom:567.975000px;}
.y53{bottom:583.665000px;}
.ya7{bottom:588.705000px;}
.y1c{bottom:589.245000px;}
.yb7{bottom:593.385000px;}
.y6a{bottom:593.925000px;}
.y90{bottom:596.445000px;}
.y39{bottom:599.145000px;}
.yc4{bottom:601.665000px;}
.y52{bottom:614.625000px;}
.y1b{bottom:618.765000px;}
.ya6{bottom:619.845000px;}
.y69{bottom:625.065000px;}
.y8f{bottom:627.585000px;}
.yb6{bottom:629.025000px;}
.y38{bottom:630.105000px;}
.yc3{bottom:632.445000px;}
.y51{bottom:645.765000px;}
.y1a{bottom:647.565000px;}
.ya5{bottom:650.805000px;}
.y68{bottom:656.025000px;}
.yb5{bottom:657.465000px;}
.y8e{bottom:658.545000px;}
.y37{bottom:661.245000px;}
.yc2{bottom:662.685000px;}
.y50{bottom:676.725000px;}
.y19{bottom:677.265000px;}
.ya4{bottom:681.945000px;}
.y67{bottom:687.165000px;}
.y8d{bottom:689.685000px;}
.y36{bottom:692.205000px;}
.y4f{bottom:707.685000px;}
.ya3{bottom:712.905000px;}
.y66{bottom:718.125000px;}
.y18{bottom:719.565000px;}
.y8c{bottom:720.645000px;}
.y35{bottom:723.345000px;}
.y4e{bottom:738.825000px;}
.ya2{bottom:744.045000px;}
.y17{bottom:749.085000px;}
.y8b{bottom:751.785000px;}
.yc1{bottom:753.945000px;}
.y34{bottom:754.305000px;}
.y4d{bottom:769.785000px;}
.ya1{bottom:779.685000px;}
.y65{bottom:780.225000px;}
.y8a{bottom:782.745000px;}
.y33{bottom:785.445000px;}
.y16{bottom:787.065000px;}
.y4c{bottom:800.925000px;}
.y15{bottom:810.105000px;}
.y64{bottom:811.185000px;}
.y89{bottom:813.885000px;}
.ya0{bottom:815.325000px;}
.y32{bottom:816.405000px;}
.y4b{bottom:831.930000px;}
.y14{bottom:838.590000px;}
.y63{bottom:842.370000px;}
.y9f{bottom:843.810000px;}
.y88{bottom:844.890000px;}
.y31{bottom:845.970000px;}
.yc0{bottom:847.230000px;}
.y4a{bottom:863.070000px;}
.y13{bottom:867.030000px;}
.y62{bottom:873.330000px;}
.y30{bottom:874.770000px;}
.y87{bottom:876.030000px;}
.ybf{bottom:877.470000px;}
.y49{bottom:898.710000px;}
.y12{bottom:898.890000px;}
.y2f{bottom:904.470000px;}
.ybe{bottom:905.910000px;}
.y86{bottom:906.990000px;}
.y11{bottom:935.070000px;}
.y2e{bottom:935.430000px;}
.y85{bottom:938.130000px;}
.y2d{bottom:966.570000px;}
.y84{bottom:969.090000px;}
.y10{bottom:971.250000px;}
.y2c{bottom:997.530000px;}
.y83{bottom:1000.230000px;}
.yf{bottom:1004.190000px;}
.y2b{bottom:1028.670000px;}
.y82{bottom:1030.110000px;}
.ye{bottom:1031.190000px;}
.yb{bottom:1045.050000px;}
.y3{bottom:1072.080000px;}
.y1{bottom:1128.240000px;}
.h1{height:17.280000px;}
.h5{height:23.632383px;}
.ha{height:47.344922px;}
.h3{height:56.160000px;}
.h2{height:58.651172px;}
.hf{height:64.546875px;}
.h8{height:65.010937px;}
.h6{height:65.884219px;}
.hc{height:66.757500px;}
.h7{height:70.664062px;}
.h10{height:71.613281px;}
.hb{height:72.562500px;}
.he{height:74.704922px;}
.h11{height:74.824922px;}
.h9{height:84.898125px;}
.h4{height:86.255508px;}
.hd{height:96.508125px;}
.h0{height:1188.000000px;}
.w3{width:86.256000px;}
.w6{width:90.000000px;}
.w5{width:118.836000px;}
.w2{width:208.830000px;}
.w4{width:470.055000px;}
.w1{width:556.305000px;}
.w7{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:13.320000px;}
.x8{left:25.020000px;}
.x4{left:43.236000px;}
.xb{left:45.000000px;}
.x3{left:46.305000px;}
.x1{left:76.500000px;}
.x6{left:81.720000px;}
.x10{left:84.959986px;}
.x26{left:86.219986px;}
.x12{left:93.095986px;}
.x14{left:114.155986px;}
.x11{left:148.355986px;}
.x5{left:162.750000px;}
.x7{left:164.925000px;}
.x16{left:173.189986px;}
.x17{left:174.809986px;}
.xe{left:203.969986px;}
.x29{left:264.629986px;}
.x2a{left:352.874986px;}
.x15{left:362.234986px;}
.x24{left:377.534986px;}
.x27{left:392.294986px;}
.x1e{left:395.894986px;}
.x1f{left:397.334986px;}
.x20{left:407.774986px;}
.x21{left:409.394986px;}
.x18{left:413.534986px;}
.x19{left:415.334986px;}
.x13{left:441.434986px;}
.x28{left:451.514986px;}
.xd{left:455.114986px;}
.x2{left:632.805000px;}
.x1a{left:657.644986px;}
.x1b{left:659.444986px;}
.x22{left:662.504986px;}
.x23{left:664.664986px;}
.xf{left:725.909986px;}
.xa{left:751.650000px;}
.x25{left:802.049986px;}
.x1c{left:816.629986px;}
.x1d{left:818.069986px;}
.xc{left:833.009986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls7{letter-spacing:-2.560000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls4{letter-spacing:3.333120pt;}
.ls5{letter-spacing:9.093120pt;}
.wsa{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.616000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.521067pt;}
.ws1{word-spacing:-9.920000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-3.938560pt;}
._5{margin-left:-3.029333pt;}
._3{margin-left:-2.013440pt;}
._1{margin-left:-1.009280pt;}
._2{width:0.903040pt;}
._0{width:1.806080pt;}
._4{width:3.359573pt;}
._c{width:4.458667pt;}
._7{width:5.440000pt;}
._8{width:6.336000pt;}
._11{width:7.651200pt;}
._12{width:8.586240pt;}
._e{width:9.514667pt;}
._f{width:10.944000pt;}
._10{width:12.778667pt;}
._13{width:14.208000pt;}
._1b{width:15.104000pt;}
._d{width:16.980480pt;}
._a{width:18.112000pt;}
._b{width:19.128960pt;}
._19{width:20.608000pt;}
._1a{width:21.504000pt;}
._14{width:22.400000pt;}
._15{width:23.296000pt;}
._16{width:24.960000pt;}
._17{width:25.851947pt;}
._9{width:27.456000pt;}
._18{width:30.592000pt;}
._28{width:32.448000pt;}
._1f{width:46.400000pt;}
._20{width:47.456213pt;}
._1d{width:60.864000pt;}
._1e{width:62.990293pt;}
._21{width:105.770667pt;}
._24{width:109.725867pt;}
._23{width:110.913067pt;}
._22{width:118.848000pt;}
._26{width:147.403947pt;}
._25{width:148.374400pt;}
._27{width:228.416000pt;}
._1c{width:354.048000pt;}
.fs2{font-size:21.120000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.ya{bottom:5.280000pt;}
.y7{bottom:7.200000pt;}
.y9{bottom:20.640000pt;}
.y5{bottom:22.560000pt;}
.y6{bottom:29.920000pt;}
.y8{bottom:36.000000pt;}
.y4{bottom:37.920000pt;}
.yd{bottom:53.920000pt;}
.yc{bottom:87.072000pt;}
.yb4{bottom:113.952000pt;}
.y81{bottom:115.232000pt;}
.y48{bottom:120.832000pt;}
.ybd{bottom:129.952000pt;}
.y61{bottom:132.352000pt;}
.y80{bottom:136.986667pt;}
.y2a{bottom:137.306667pt;}
.yb3{bottom:141.466667pt;}
.y9e{bottom:143.866667pt;}
.y47{bottom:148.346667pt;}
.ybc{bottom:157.626667pt;}
.y60{bottom:159.866667pt;}
.y77{bottom:164.506667pt;}
.y29{bottom:164.986667pt;}
.yb2{bottom:169.146667pt;}
.y9d{bottom:171.386667pt;}
.y46{bottom:176.026667pt;}
.ybb{bottom:185.146667pt;}
.y5f{bottom:187.546667pt;}
.y76{bottom:192.026667pt;}
.y28{bottom:192.506667pt;}
.yb1{bottom:196.666667pt;}
.y9c{bottom:199.066667pt;}
.y45{bottom:202.586667pt;}
.yba{bottom:212.826667pt;}
.y5e{bottom:215.066667pt;}
.y75{bottom:219.706667pt;}
.y27{bottom:220.186667pt;}
.y7f{bottom:223.706667pt;}
.yb0{bottom:224.346667pt;}
.y9b{bottom:226.586667pt;}
.y44{bottom:228.826667pt;}
.y5d{bottom:242.746667pt;}
.yb9{bottom:244.506667pt;}
.y74{bottom:247.226667pt;}
.y26{bottom:247.706667pt;}
.yaf{bottom:251.866667pt;}
.y9a{bottom:254.266667pt;}
.y7e{bottom:255.546667pt;}
.y43{bottom:256.506667pt;}
.y5c{bottom:270.266667pt;}
.y73{bottom:274.906667pt;}
.y25{bottom:275.386667pt;}
.yb8{bottom:276.186667pt;}
.yae{bottom:279.546667pt;}
.y7d{bottom:280.826667pt;}
.y99{bottom:281.826667pt;}
.y42{bottom:284.066667pt;}
.y5b{bottom:297.986667pt;}
.y72{bottom:302.466667pt;}
.y24{bottom:302.946667pt;}
.y7c{bottom:307.106667pt;}
.y98{bottom:309.506667pt;}
.y41{bottom:311.746667pt;}
.y5a{bottom:325.506667pt;}
.y71{bottom:330.146667pt;}
.y23{bottom:330.626667pt;}
.y7b{bottom:334.786667pt;}
.y97{bottom:337.026667pt;}
.y40{bottom:339.266667pt;}
.y59{bottom:353.186667pt;}
.yad{bottom:357.666667pt;}
.y22{bottom:358.146667pt;}
.y70{bottom:361.826667pt;}
.y7a{bottom:362.306667pt;}
.y96{bottom:364.706667pt;}
.y3f{bottom:366.946667pt;}
.y58{bottom:380.706667pt;}
.yac{bottom:385.346667pt;}
.y21{bottom:385.826667pt;}
.y79{bottom:389.986667pt;}
.y95{bottom:392.226667pt;}
.y6f{bottom:393.506667pt;}
.y3e{bottom:394.466667pt;}
.y57{bottom:408.386667pt;}
.yab{bottom:412.866667pt;}
.y20{bottom:413.346667pt;}
.y78{bottom:417.506667pt;}
.y6e{bottom:418.786667pt;}
.y94{bottom:419.746667pt;}
.y3d{bottom:422.146667pt;}
.y56{bottom:435.906667pt;}
.yaa{bottom:440.546667pt;}
.y1f{bottom:441.026667pt;}
.y6d{bottom:445.186667pt;}
.y93{bottom:447.426667pt;}
.y3c{bottom:449.666667pt;}
.y55{bottom:463.586667pt;}
.ya9{bottom:468.066667pt;}
.y1e{bottom:468.546667pt;}
.y6c{bottom:472.706667pt;}
.y92{bottom:474.946667pt;}
.y3b{bottom:477.346667pt;}
.y54{bottom:491.106667pt;}
.ya8{bottom:495.746667pt;}
.y1d{bottom:496.226667pt;}
.y6b{bottom:500.386667pt;}
.y91{bottom:502.626667pt;}
.y3a{bottom:504.866667pt;}
.y53{bottom:518.813333pt;}
.ya7{bottom:523.293333pt;}
.y1c{bottom:523.773333pt;}
.yb7{bottom:527.453333pt;}
.y6a{bottom:527.933333pt;}
.y90{bottom:530.173333pt;}
.y39{bottom:532.573333pt;}
.yc4{bottom:534.813333pt;}
.y52{bottom:546.333333pt;}
.y1b{bottom:550.013333pt;}
.ya6{bottom:550.973333pt;}
.y69{bottom:555.613333pt;}
.y8f{bottom:557.853333pt;}
.yb6{bottom:559.133333pt;}
.y38{bottom:560.093333pt;}
.yc3{bottom:562.173333pt;}
.y51{bottom:574.013333pt;}
.y1a{bottom:575.613333pt;}
.ya5{bottom:578.493333pt;}
.y68{bottom:583.133333pt;}
.yb5{bottom:584.413333pt;}
.y8e{bottom:585.373333pt;}
.y37{bottom:587.773333pt;}
.yc2{bottom:589.053333pt;}
.y50{bottom:601.533333pt;}
.y19{bottom:602.013333pt;}
.ya4{bottom:606.173333pt;}
.y67{bottom:610.813333pt;}
.y8d{bottom:613.053333pt;}
.y36{bottom:615.293333pt;}
.y4f{bottom:629.053333pt;}
.ya3{bottom:633.693333pt;}
.y66{bottom:638.333333pt;}
.y18{bottom:639.613333pt;}
.y8c{bottom:640.573333pt;}
.y35{bottom:642.973333pt;}
.y4e{bottom:656.733333pt;}
.ya2{bottom:661.373333pt;}
.y17{bottom:665.853333pt;}
.y8b{bottom:668.253333pt;}
.yc1{bottom:670.173333pt;}
.y34{bottom:670.493333pt;}
.y4d{bottom:684.253333pt;}
.ya1{bottom:693.053333pt;}
.y65{bottom:693.533333pt;}
.y8a{bottom:695.773333pt;}
.y33{bottom:698.173333pt;}
.y16{bottom:699.613333pt;}
.y4c{bottom:711.933333pt;}
.y15{bottom:720.093333pt;}
.y64{bottom:721.053333pt;}
.y89{bottom:723.453333pt;}
.ya0{bottom:724.733333pt;}
.y32{bottom:725.693333pt;}
.y4b{bottom:739.493333pt;}
.y14{bottom:745.413333pt;}
.y63{bottom:748.773333pt;}
.y9f{bottom:750.053333pt;}
.y88{bottom:751.013333pt;}
.y31{bottom:751.973333pt;}
.yc0{bottom:753.093333pt;}
.y4a{bottom:767.173333pt;}
.y13{bottom:770.693333pt;}
.y62{bottom:776.293333pt;}
.y30{bottom:777.573333pt;}
.y87{bottom:778.693333pt;}
.ybf{bottom:779.973333pt;}
.y49{bottom:798.853333pt;}
.y12{bottom:799.013333pt;}
.y2f{bottom:803.973333pt;}
.ybe{bottom:805.253333pt;}
.y86{bottom:806.213333pt;}
.y11{bottom:831.173333pt;}
.y2e{bottom:831.493333pt;}
.y85{bottom:833.893333pt;}
.y2d{bottom:859.173333pt;}
.y84{bottom:861.413333pt;}
.y10{bottom:863.333333pt;}
.y2c{bottom:886.693333pt;}
.y83{bottom:889.093333pt;}
.yf{bottom:892.613333pt;}
.y2b{bottom:914.373333pt;}
.y82{bottom:915.653333pt;}
.ye{bottom:916.613333pt;}
.yb{bottom:928.933333pt;}
.y3{bottom:952.960000pt;}
.y1{bottom:1002.880000pt;}
.h1{height:15.360000pt;}
.h5{height:21.006562pt;}
.ha{height:42.084375pt;}
.h3{height:49.920000pt;}
.h2{height:52.134375pt;}
.hf{height:57.375000pt;}
.h8{height:57.787500pt;}
.h6{height:58.563750pt;}
.hc{height:59.340000pt;}
.h7{height:62.812500pt;}
.h10{height:63.656250pt;}
.hb{height:64.500000pt;}
.he{height:66.404375pt;}
.h11{height:66.511042pt;}
.h9{height:75.465000pt;}
.h4{height:76.671562pt;}
.hd{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w3{width:76.672000pt;}
.w6{width:80.000000pt;}
.w5{width:105.632000pt;}
.w2{width:185.626667pt;}
.w4{width:417.826667pt;}
.w1{width:494.493333pt;}
.w7{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:11.840000pt;}
.x8{left:22.240000pt;}
.x4{left:38.432000pt;}
.xb{left:40.000000pt;}
.x3{left:41.160000pt;}
.x1{left:68.000000pt;}
.x6{left:72.640000pt;}
.x10{left:75.519988pt;}
.x26{left:76.639988pt;}
.x12{left:82.751988pt;}
.x14{left:101.471988pt;}
.x11{left:131.871988pt;}
.x5{left:144.666667pt;}
.x7{left:146.600000pt;}
.x16{left:153.946655pt;}
.x17{left:155.386655pt;}
.xe{left:181.306655pt;}
.x29{left:235.226655pt;}
.x2a{left:313.666655pt;}
.x15{left:321.986655pt;}
.x24{left:335.586655pt;}
.x27{left:348.706655pt;}
.x1e{left:351.906655pt;}
.x1f{left:353.186655pt;}
.x20{left:362.466655pt;}
.x21{left:363.906655pt;}
.x18{left:367.586655pt;}
.x19{left:369.186655pt;}
.x13{left:392.386655pt;}
.x28{left:401.346655pt;}
.xd{left:404.546655pt;}
.x2{left:562.493333pt;}
.x1a{left:584.573321pt;}
.x1b{left:586.173321pt;}
.x22{left:588.893321pt;}
.x23{left:590.813321pt;}
.xf{left:645.253321pt;}
.xa{left:668.133333pt;}
.x25{left:712.933321pt;}
.x1c{left:725.893321pt;}
.x1d{left:727.173321pt;}
.xc{left:740.453321pt;}
}




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