
    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_adfed219b1da95c5a9e4adc1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_ea965832e8db1a32289b2284.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_e6ab46c5662e1f162cd563b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2bf48ceb3aa34c8033b92e5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ae97e6911eb38b68b38533e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_b0cdd955ca3904809c7e93b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_33c62731ee53c6b4c0cd549b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_48b3b8889789ef20c2c915ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.057129;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls5{letter-spacing:-1.296000px;}
.lsc{letter-spacing:-0.696000px;}
.ls7{letter-spacing:-0.618000px;}
.ls3{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.207600px;}
.lsa{letter-spacing:-0.109200px;}
.lsb{letter-spacing:-0.103800px;}
.lsd{letter-spacing:-0.063600px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.100800px;}
.lse{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.547200px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws6{word-spacing:-17.573760px;}
.wsc{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.wsa{word-spacing:-14.509200px;}
.ws8{word-spacing:-14.469000px;}
.ws7{word-spacing:-14.463600px;}
.ws9{word-spacing:-13.876800px;}
.ws1{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.664000px;}
.ws3{word-spacing:-9.187200px;}
.ws5{word-spacing:0.000000px;}
._1d{margin-left:-4.902720px;}
._e{margin-left:-3.812880px;}
._5{margin-left:-2.586240px;}
._1{margin-left:-1.014000px;}
._2{width:1.596000px;}
._0{width:3.162000px;}
._9{width:4.194960px;}
._f{width:5.215440px;}
._8{width:6.359040px;}
._7{width:7.551360px;}
._17{width:8.608560px;}
._4{width:9.612000px;}
._3{width:10.722000px;}
._6{width:12.718080px;}
._10{width:16.162560px;}
._12{width:17.176560px;}
._11{width:18.516720px;}
._d{width:19.872000px;}
._a{width:20.931840px;}
._13{width:22.618800px;}
._14{width:24.212880px;}
._18{width:25.344480px;}
._b{width:26.562240px;}
._c{width:28.252800px;}
._15{width:29.543040px;}
._16{width:30.900240px;}
._19{width:32.590080px;}
._1a{width:33.737040px;}
._1b{width:43.320960px;}
._1c{width:44.380800px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y51{bottom:3.600000px;}
.y5c{bottom:3.780000px;}
.y72{bottom:5.400000px;}
.y56{bottom:19.260000px;}
.y9f{bottom:19.440000px;}
.y71{bottom:21.060000px;}
.yac{bottom:22.890000px;}
.y74{bottom:23.034000px;}
.y54{bottom:23.040000px;}
.y50{bottom:23.085000px;}
.yab{bottom:38.550000px;}
.y53{bottom:38.730000px;}
.y4f{bottom:38.745000px;}
.y5b{bottom:42.294000px;}
.ya2{bottom:42.480000px;}
.y5{bottom:57.456000px;}
.y5a{bottom:61.734000px;}
.ya1{bottom:61.740000px;}
.y4{bottom:76.896000px;}
.y59{bottom:80.994000px;}
.y58{bottom:100.434000px;}
.y75{bottom:117.756000px;}
.y4d{bottom:125.496000px;}
.y24{bottom:125.676000px;}
.y57{bottom:126.216000px;}
.ycb{bottom:127.116000px;}
.y73{bottom:133.596000px;}
.y9d{bottom:134.496000px;}
.yaf{bottom:135.036000px;}
.y23{bottom:147.996000px;}
.yca{bottom:149.256000px;}
.yae{bottom:150.870000px;}
.y9c{bottom:161.310000px;}
.y4c{bottom:162.750000px;}
.y22{bottom:170.130000px;}
.ya8{bottom:170.310000px;}
.yc9{bottom:171.570000px;}
.y9b{bottom:183.630000px;}
.y4b{bottom:189.570000px;}
.y70{bottom:191.550000px;}
.y21{bottom:192.450000px;}
.y9a{bottom:205.770000px;}
.yc8{bottom:208.830000px;}
.yad{bottom:209.010000px;}
.y4a{bottom:211.710000px;}
.y20{bottom:214.770000px;}
.y99{bottom:228.090000px;}
.yc7{bottom:230.970000px;}
.y49{bottom:234.030000px;}
.y1f{bottom:236.910000px;}
.ya7{bottom:241.410000px;}
.y55{bottom:242.310000px;}
.y98{bottom:250.230000px;}
.y48{bottom:256.350000px;}
.y1e{bottom:259.230000px;}
.ya6{bottom:263.730000px;}
.yc6{bottom:268.230000px;}
.y97{bottom:272.550000px;}
.y47{bottom:282.990000px;}
.y1d{bottom:283.890000px;}
.ya5{bottom:285.870000px;}
.yc5{bottom:290.595000px;}
.y96{bottom:294.735000px;}
.y46{bottom:305.355000px;}
.ya4{bottom:308.235000px;}
.y95{bottom:317.055000px;}
.y1c{bottom:323.895000px;}
.y45{bottom:327.495000px;}
.yc4{bottom:327.855000px;}
.ya3{bottom:332.895000px;}
.y94{bottom:339.375000px;}
.y1b{bottom:346.035000px;}
.y44{bottom:349.815000px;}
.y93{bottom:362.775000px;}
.yc3{bottom:365.115000px;}
.ya0{bottom:366.375000px;}
.y1a{bottom:371.415000px;}
.y43{bottom:372.135000px;}
.y42{bottom:394.275000px;}
.y92{bottom:399.675000px;}
.yc2{bottom:402.375000px;}
.y41{bottom:416.595000px;}
.y91{bottom:421.995000px;}
.y19{bottom:433.875000px;}
.y40{bottom:438.735000px;}
.yc1{bottom:439.635000px;}
.y9e{bottom:443.775000px;}
.y90{bottom:444.135000px;}
.y18{bottom:456.015000px;}
.y3f{bottom:461.055000px;}
.yc0{bottom:461.775000px;}
.y8f{bottom:466.455000px;}
.y17{bottom:478.335000px;}
.y3e{bottom:483.375000px;}
.y8e{bottom:488.775000px;}
.ybf{bottom:499.035000px;}
.y16{bottom:500.655000px;}
.y3d{bottom:505.515000px;}
.y8d{bottom:510.915000px;}
.y52{bottom:511.455000px;}
.ybe{bottom:521.355000px;}
.y15{bottom:522.795000px;}
.yaa{bottom:526.575000px;}
.y3c{bottom:530.355000px;}
.y8c{bottom:533.235000px;}
.y14{bottom:545.115000px;}
.y8b{bottom:555.405000px;}
.ybd{bottom:558.645000px;}
.y13{bottom:567.285000px;}
.y3b{bottom:570.165000px;}
.y8a{bottom:577.725000px;}
.ybc{bottom:580.785000px;}
.y12{bottom:589.605000px;}
.y3a{bottom:592.485000px;}
.y89{bottom:600.045000px;}
.y11{bottom:611.745000px;}
.y39{bottom:614.625000px;}
.ybb{bottom:618.045000px;}
.y88{bottom:623.445000px;}
.y10{bottom:634.065000px;}
.y38{bottom:636.945000px;}
.y6f{bottom:638.205000px;}
.yba{bottom:640.365000px;}
.yf{bottom:656.385000px;}
.y37{bottom:659.085000px;}
.y6e{bottom:660.345000px;}
.y87{bottom:662.865000px;}
.yb9{bottom:665.385000px;}
.ye{bottom:678.525000px;}
.y36{bottom:681.405000px;}
.y6d{bottom:682.665000px;}
.yd7{bottom:699.945000px;}
.y86{bottom:702.825000px;}
.y35{bottom:703.725000px;}
.yd{bottom:703.905000px;}
.y6c{bottom:704.805000px;}
.y85{bottom:724.965000px;}
.yb8{bottom:728.025000px;}
.y34{bottom:730.365000px;}
.y6b{bottom:731.625000px;}
.yd6{bottom:737.205000px;}
.y84{bottom:747.285000px;}
.yb7{bottom:750.345000px;}
.y33{bottom:752.685000px;}
.y6a{bottom:753.765000px;}
.yd5{bottom:759.345000px;}
.yc{bottom:766.365000px;}
.y83{bottom:769.425000px;}
.yb6{bottom:772.485000px;}
.y32{bottom:774.825000px;}
.y69{bottom:776.085000px;}
.yb{bottom:791.565000px;}
.y82{bottom:791.745000px;}
.yb5{bottom:794.805000px;}
.yd4{bottom:796.605000px;}
.y31{bottom:797.145000px;}
.y4e{bottom:797.685000px;}
.y68{bottom:798.405000px;}
.y81{bottom:813.930000px;}
.yb4{bottom:816.990000px;}
.yd3{bottom:818.970000px;}
.y30{bottom:819.510000px;}
.y67{bottom:820.590000px;}
.y80{bottom:836.250000px;}
.yb3{bottom:839.310000px;}
.y2f{bottom:841.650000px;}
.y66{bottom:842.910000px;}
.ya{bottom:854.070000px;}
.yd2{bottom:856.230000px;}
.y7f{bottom:858.570000px;}
.yb2{bottom:861.450000px;}
.y2e{bottom:863.970000px;}
.y65{bottom:865.050000px;}
.yd1{bottom:878.370000px;}
.y7e{bottom:880.710000px;}
.yb1{bottom:883.770000px;}
.y2d{bottom:886.110000px;}
.y64{bottom:887.370000px;}
.y9{bottom:891.330000px;}
.yd0{bottom:900.690000px;}
.y7d{bottom:903.030000px;}
.ya9{bottom:903.930000px;}
.y2c{bottom:908.430000px;}
.y63{bottom:909.690000px;}
.ycf{bottom:922.830000px;}
.yb0{bottom:923.370000px;}
.y7c{bottom:925.170000px;}
.y2b{bottom:930.570000px;}
.y62{bottom:931.830000px;}
.y7b{bottom:947.490000px;}
.y8{bottom:947.670000px;}
.y2a{bottom:952.890000px;}
.y61{bottom:954.150000px;}
.yce{bottom:960.090000px;}
.y7a{bottom:974.310000px;}
.y29{bottom:975.210000px;}
.y60{bottom:976.290000px;}
.ycd{bottom:982.410000px;}
.y7{bottom:995.370000px;}
.y79{bottom:996.450000px;}
.y28{bottom:997.350000px;}
.y5f{bottom:998.610000px;}
.ycc{bottom:1004.550000px;}
.y78{bottom:1018.770000px;}
.y27{bottom:1019.670000px;}
.y5e{bottom:1022.010000px;}
.y77{bottom:1040.910000px;}
.y26{bottom:1041.810000px;}
.y6{bottom:1042.890000px;}
.y5d{bottom:1061.430000px;}
.y25{bottom:1064.130000px;}
.y76{bottom:1064.310000px;}
.y3{bottom:1089.540000px;}
.y2{bottom:1105.380000px;}
.y1{bottom:1121.220000px;}
.h1{height:47.408203px;}
.h2{height:51.998203px;}
.h3{height:57.636562px;}
.he{height:57.960000px;}
.h14{height:58.140000px;}
.h5{height:58.154062px;}
.hc{height:67.824844px;}
.h11{height:77.400000px;}
.h7{height:79.620469px;}
.h6{height:86.255508px;}
.hb{height:116.100000px;}
.h4{height:155.400820px;}
.ha{height:269.130000px;}
.h8{height:282.315000px;}
.h9{height:286.230000px;}
.hf{height:305.175000px;}
.h13{height:317.550000px;}
.h10{height:331.050000px;}
.h12{height:355.935000px;}
.hd{height:435.675000px;}
.h0{height:1188.000000px;}
.w3{width:323.670000px;}
.w4{width:323.715000px;}
.w2{width:647.385000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x1{left:135.035986px;}
.x6{left:140.975986px;}
.xc{left:151.374000px;}
.x4{left:158.969986px;}
.x3{left:194.429986px;}
.xb{left:255.099000px;}
.x8{left:313.239000px;}
.x10{left:323.679000px;}
.x5{left:325.334986px;}
.x2{left:454.394986px;}
.xd{left:458.715000px;}
.x7{left:571.569000px;}
.xa{left:573.729000px;}
.x11{left:593.034000px;}
.xf{left:605.994000px;}
.xe{left:609.954000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls5{letter-spacing:-1.152000pt;}
.lsc{letter-spacing:-0.618667pt;}
.ls7{letter-spacing:-0.549333pt;}
.ls3{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.184533pt;}
.lsa{letter-spacing:-0.097067pt;}
.lsb{letter-spacing:-0.092267pt;}
.lsd{letter-spacing:-0.056533pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.089600pt;}
.lse{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.486400pt;}
.wsb{word-spacing:-58.880000pt;}
.ws6{word-spacing:-15.621120pt;}
.wsc{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.wsa{word-spacing:-12.897067pt;}
.ws8{word-spacing:-12.861333pt;}
.ws7{word-spacing:-12.856533pt;}
.ws9{word-spacing:-12.334933pt;}
.ws1{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.560000pt;}
.ws0{word-spacing:-10.368000pt;}
.ws3{word-spacing:-8.166400pt;}
.ws5{word-spacing:0.000000pt;}
._1d{margin-left:-4.357973pt;}
._e{margin-left:-3.389227pt;}
._5{margin-left:-2.298880pt;}
._1{margin-left:-0.901333pt;}
._2{width:1.418667pt;}
._0{width:2.810667pt;}
._9{width:3.728853pt;}
._f{width:4.635947pt;}
._8{width:5.652480pt;}
._7{width:6.712320pt;}
._17{width:7.652053pt;}
._4{width:8.544000pt;}
._3{width:9.530667pt;}
._6{width:11.304960pt;}
._10{width:14.366720pt;}
._12{width:15.268053pt;}
._11{width:16.459307pt;}
._d{width:17.664000pt;}
._a{width:18.606080pt;}
._13{width:20.105600pt;}
._14{width:21.522560pt;}
._18{width:22.528427pt;}
._b{width:23.610880pt;}
._c{width:25.113600pt;}
._15{width:26.260480pt;}
._16{width:27.466880pt;}
._19{width:28.968960pt;}
._1a{width:29.988480pt;}
._1b{width:38.507520pt;}
._1c{width:39.449600pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:3.200000pt;}
.y5c{bottom:3.360000pt;}
.y72{bottom:4.800000pt;}
.y56{bottom:17.120000pt;}
.y9f{bottom:17.280000pt;}
.y71{bottom:18.720000pt;}
.yac{bottom:20.346667pt;}
.y74{bottom:20.474667pt;}
.y54{bottom:20.480000pt;}
.y50{bottom:20.520000pt;}
.yab{bottom:34.266667pt;}
.y53{bottom:34.426667pt;}
.y4f{bottom:34.440000pt;}
.y5b{bottom:37.594667pt;}
.ya2{bottom:37.760000pt;}
.y5{bottom:51.072000pt;}
.y5a{bottom:54.874667pt;}
.ya1{bottom:54.880000pt;}
.y4{bottom:68.352000pt;}
.y59{bottom:71.994667pt;}
.y58{bottom:89.274667pt;}
.y75{bottom:104.672000pt;}
.y4d{bottom:111.552000pt;}
.y24{bottom:111.712000pt;}
.y57{bottom:112.192000pt;}
.ycb{bottom:112.992000pt;}
.y73{bottom:118.752000pt;}
.y9d{bottom:119.552000pt;}
.yaf{bottom:120.032000pt;}
.y23{bottom:131.552000pt;}
.yca{bottom:132.672000pt;}
.yae{bottom:134.106667pt;}
.y9c{bottom:143.386667pt;}
.y4c{bottom:144.666667pt;}
.y22{bottom:151.226667pt;}
.ya8{bottom:151.386667pt;}
.yc9{bottom:152.506667pt;}
.y9b{bottom:163.226667pt;}
.y4b{bottom:168.506667pt;}
.y70{bottom:170.266667pt;}
.y21{bottom:171.066667pt;}
.y9a{bottom:182.906667pt;}
.yc8{bottom:185.626667pt;}
.yad{bottom:185.786667pt;}
.y4a{bottom:188.186667pt;}
.y20{bottom:190.906667pt;}
.y99{bottom:202.746667pt;}
.yc7{bottom:205.306667pt;}
.y49{bottom:208.026667pt;}
.y1f{bottom:210.586667pt;}
.ya7{bottom:214.586667pt;}
.y55{bottom:215.386667pt;}
.y98{bottom:222.426667pt;}
.y48{bottom:227.866667pt;}
.y1e{bottom:230.426667pt;}
.ya6{bottom:234.426667pt;}
.yc6{bottom:238.426667pt;}
.y97{bottom:242.266667pt;}
.y47{bottom:251.546667pt;}
.y1d{bottom:252.346667pt;}
.ya5{bottom:254.106667pt;}
.yc5{bottom:258.306667pt;}
.y96{bottom:261.986667pt;}
.y46{bottom:271.426667pt;}
.ya4{bottom:273.986667pt;}
.y95{bottom:281.826667pt;}
.y1c{bottom:287.906667pt;}
.y45{bottom:291.106667pt;}
.yc4{bottom:291.426667pt;}
.ya3{bottom:295.906667pt;}
.y94{bottom:301.666667pt;}
.y1b{bottom:307.586667pt;}
.y44{bottom:310.946667pt;}
.y93{bottom:322.466667pt;}
.yc3{bottom:324.546667pt;}
.ya0{bottom:325.666667pt;}
.y1a{bottom:330.146667pt;}
.y43{bottom:330.786667pt;}
.y42{bottom:350.466667pt;}
.y92{bottom:355.266667pt;}
.yc2{bottom:357.666667pt;}
.y41{bottom:370.306667pt;}
.y91{bottom:375.106667pt;}
.y19{bottom:385.666667pt;}
.y40{bottom:389.986667pt;}
.yc1{bottom:390.786667pt;}
.y9e{bottom:394.466667pt;}
.y90{bottom:394.786667pt;}
.y18{bottom:405.346667pt;}
.y3f{bottom:409.826667pt;}
.yc0{bottom:410.466667pt;}
.y8f{bottom:414.626667pt;}
.y17{bottom:425.186667pt;}
.y3e{bottom:429.666667pt;}
.y8e{bottom:434.466667pt;}
.ybf{bottom:443.586667pt;}
.y16{bottom:445.026667pt;}
.y3d{bottom:449.346667pt;}
.y8d{bottom:454.146667pt;}
.y52{bottom:454.626667pt;}
.ybe{bottom:463.426667pt;}
.y15{bottom:464.706667pt;}
.yaa{bottom:468.066667pt;}
.y3c{bottom:471.426667pt;}
.y8c{bottom:473.986667pt;}
.y14{bottom:484.546667pt;}
.y8b{bottom:493.693333pt;}
.ybd{bottom:496.573333pt;}
.y13{bottom:504.253333pt;}
.y3b{bottom:506.813333pt;}
.y8a{bottom:513.533333pt;}
.ybc{bottom:516.253333pt;}
.y12{bottom:524.093333pt;}
.y3a{bottom:526.653333pt;}
.y89{bottom:533.373333pt;}
.y11{bottom:543.773333pt;}
.y39{bottom:546.333333pt;}
.ybb{bottom:549.373333pt;}
.y88{bottom:554.173333pt;}
.y10{bottom:563.613333pt;}
.y38{bottom:566.173333pt;}
.y6f{bottom:567.293333pt;}
.yba{bottom:569.213333pt;}
.yf{bottom:583.453333pt;}
.y37{bottom:585.853333pt;}
.y6e{bottom:586.973333pt;}
.y87{bottom:589.213333pt;}
.yb9{bottom:591.453333pt;}
.ye{bottom:603.133333pt;}
.y36{bottom:605.693333pt;}
.y6d{bottom:606.813333pt;}
.yd7{bottom:622.173333pt;}
.y86{bottom:624.733333pt;}
.y35{bottom:625.533333pt;}
.yd{bottom:625.693333pt;}
.y6c{bottom:626.493333pt;}
.y85{bottom:644.413333pt;}
.yb8{bottom:647.133333pt;}
.y34{bottom:649.213333pt;}
.y6b{bottom:650.333333pt;}
.yd6{bottom:655.293333pt;}
.y84{bottom:664.253333pt;}
.yb7{bottom:666.973333pt;}
.y33{bottom:669.053333pt;}
.y6a{bottom:670.013333pt;}
.yd5{bottom:674.973333pt;}
.yc{bottom:681.213333pt;}
.y83{bottom:683.933333pt;}
.yb6{bottom:686.653333pt;}
.y32{bottom:688.733333pt;}
.y69{bottom:689.853333pt;}
.yb{bottom:703.613333pt;}
.y82{bottom:703.773333pt;}
.yb5{bottom:706.493333pt;}
.yd4{bottom:708.093333pt;}
.y31{bottom:708.573333pt;}
.y4e{bottom:709.053333pt;}
.y68{bottom:709.693333pt;}
.y81{bottom:723.493333pt;}
.yb4{bottom:726.213333pt;}
.yd3{bottom:727.973333pt;}
.y30{bottom:728.453333pt;}
.y67{bottom:729.413333pt;}
.y80{bottom:743.333333pt;}
.yb3{bottom:746.053333pt;}
.y2f{bottom:748.133333pt;}
.y66{bottom:749.253333pt;}
.ya{bottom:759.173333pt;}
.yd2{bottom:761.093333pt;}
.y7f{bottom:763.173333pt;}
.yb2{bottom:765.733333pt;}
.y2e{bottom:767.973333pt;}
.y65{bottom:768.933333pt;}
.yd1{bottom:780.773333pt;}
.y7e{bottom:782.853333pt;}
.yb1{bottom:785.573333pt;}
.y2d{bottom:787.653333pt;}
.y64{bottom:788.773333pt;}
.y9{bottom:792.293333pt;}
.yd0{bottom:800.613333pt;}
.y7d{bottom:802.693333pt;}
.ya9{bottom:803.493333pt;}
.y2c{bottom:807.493333pt;}
.y63{bottom:808.613333pt;}
.ycf{bottom:820.293333pt;}
.yb0{bottom:820.773333pt;}
.y7c{bottom:822.373333pt;}
.y2b{bottom:827.173333pt;}
.y62{bottom:828.293333pt;}
.y7b{bottom:842.213333pt;}
.y8{bottom:842.373333pt;}
.y2a{bottom:847.013333pt;}
.y61{bottom:848.133333pt;}
.yce{bottom:853.413333pt;}
.y7a{bottom:866.053333pt;}
.y29{bottom:866.853333pt;}
.y60{bottom:867.813333pt;}
.ycd{bottom:873.253333pt;}
.y7{bottom:884.773333pt;}
.y79{bottom:885.733333pt;}
.y28{bottom:886.533333pt;}
.y5f{bottom:887.653333pt;}
.ycc{bottom:892.933333pt;}
.y78{bottom:905.573333pt;}
.y27{bottom:906.373333pt;}
.y5e{bottom:908.453333pt;}
.y77{bottom:925.253333pt;}
.y26{bottom:926.053333pt;}
.y6{bottom:927.013333pt;}
.y5d{bottom:943.493333pt;}
.y25{bottom:945.893333pt;}
.y76{bottom:946.053333pt;}
.y3{bottom:968.480000pt;}
.y2{bottom:982.560000pt;}
.y1{bottom:996.640000pt;}
.h1{height:42.140625pt;}
.h2{height:46.220625pt;}
.h3{height:51.232500pt;}
.he{height:51.520000pt;}
.h14{height:51.680000pt;}
.h5{height:51.692500pt;}
.hc{height:60.288750pt;}
.h11{height:68.800000pt;}
.h7{height:70.773750pt;}
.h6{height:76.671562pt;}
.hb{height:103.200000pt;}
.h4{height:138.134062pt;}
.ha{height:239.226667pt;}
.h8{height:250.946667pt;}
.h9{height:254.426667pt;}
.hf{height:271.266667pt;}
.h13{height:282.266667pt;}
.h10{height:294.266667pt;}
.h12{height:316.386667pt;}
.hd{height:387.266667pt;}
.h0{height:1056.000000pt;}
.w3{width:287.706667pt;}
.w4{width:287.746667pt;}
.w2{width:575.453333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x1{left:120.031988pt;}
.x6{left:125.311988pt;}
.xc{left:134.554667pt;}
.x4{left:141.306655pt;}
.x3{left:172.826655pt;}
.xb{left:226.754667pt;}
.x8{left:278.434667pt;}
.x10{left:287.714667pt;}
.x5{left:289.186655pt;}
.x2{left:403.906655pt;}
.xd{left:407.746667pt;}
.x7{left:508.061333pt;}
.xa{left:509.981333pt;}
.x11{left:527.141333pt;}
.xf{left:538.661333pt;}
.xe{left:542.181333pt;}
}




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