
    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_6e0b9358e12fb6aec6b1b612.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_51f58cc59b9e3c60d265455e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3ddd0a849c2d423f579e6315.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_17bc75cbf634c356eba7e1e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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:38.880000px;}
.lsa{letter-spacing:-0.756000px;}
.lsb{letter-spacing:-0.702000px;}
.ls17{letter-spacing:-0.451800px;}
.ls5{letter-spacing:-0.378600px;}
.ls1{letter-spacing:-0.367800px;}
.ls15{letter-spacing:-0.350400px;}
.lsd{letter-spacing:-0.341400px;}
.ls18{letter-spacing:-0.331800px;}
.ls16{letter-spacing:-0.117600px;}
.ls4{letter-spacing:-0.037440px;}
.lse{letter-spacing:-0.028080px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018720px;}
.ls3{letter-spacing:0.101400px;}
.ls2{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls8{letter-spacing:3.941280px;}
.ls10{letter-spacing:4.621248px;}
.ls7{letter-spacing:4.661280px;}
.ls14{letter-spacing:32.021280px;}
.ls13{letter-spacing:32.141280px;}
.ls12{letter-spacing:35.081280px;}
.ls11{letter-spacing:46.421280px;}
.ls1c{letter-spacing:107.308080px;}
.ls6{letter-spacing:133.948080px;}
.ls1d{letter-spacing:273.365280px;}
.ls1e{letter-spacing:408.593280px;}
.ls1a{letter-spacing:408.685248px;}
.ls1f{letter-spacing:408.713280px;}
.ls19{letter-spacing:408.725280px;}
.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;}
}
.ws0{word-spacing:-29.696232px;}
.ws9{word-spacing:-23.778720px;}
.ws5{word-spacing:-23.458752px;}
.ws6{word-spacing:-23.437440px;}
.ws4{word-spacing:-23.418720px;}
.wsc{word-spacing:-23.390640px;}
.wsa{word-spacing:-23.381280px;}
.ws10{word-spacing:-23.341152px;}
.ws12{word-spacing:-23.086920px;}
.wsb{word-spacing:-23.077320px;}
.wsf{word-spacing:-23.068320px;}
.ws11{word-spacing:-23.006952px;}
.ws8{word-spacing:-22.716720px;}
.ws7{word-spacing:-22.662720px;}
.wse{word-spacing:-20.056032px;}
.wsd{word-spacing:-20.016000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:68.939280px;}
.ws3{word-spacing:69.018552px;}
._5{margin-left:-13.549248px;}
._f{margin-left:-9.687600px;}
._2{margin-left:-7.272000px;}
._c{margin-left:-4.984080px;}
._4{margin-left:-3.958560px;}
._1{margin-left:-2.301120px;}
._0{margin-left:-1.081440px;}
._3{width:1.077120px;}
._6{width:2.766960px;}
._7{width:3.952800px;}
._d{width:5.590080px;}
._a{width:9.697200px;}
._b{width:11.244720px;}
._16{width:12.538272px;}
._17{width:13.813776px;}
._14{width:19.024560px;}
._1a{width:31.367520px;}
._15{width:35.678160px;}
._13{width:46.241040px;}
._12{width:47.244960px;}
._11{width:64.734000px;}
._10{width:65.927520px;}
._19{width:97.168080px;}
._18{width:98.206320px;}
._8{width:107.308080px;}
._9{width:133.948080px;}
._1b{width:408.725280px;}
._e{width:1319.376000px;}
.fc1{color:rgb(255,134,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fs6{font-size:84.240000px;}
.fs7{font-size:84.384000px;}
.fsb{font-size:108.000000px;}
.fs0{font-size:108.144000px;}
.fs4{font-size:131.760000px;}
.fs5{font-size:131.904000px;}
.fsa{font-size:156.240000px;}
.fs8{font-size:185.760000px;}
.fs2{font-size:185.904000px;}
.fs3{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.548000px;}
.y11{bottom:121.320000px;}
.ya0{bottom:125.676000px;}
.y2a{bottom:140.292000px;}
.y46{bottom:143.460000px;}
.yb9{bottom:143.640000px;}
.yec{bottom:144.576000px;}
.y10{bottom:146.556000px;}
.y9f{bottom:147.276000px;}
.yda{bottom:154.470000px;}
.y29{bottom:165.495000px;}
.y45{bottom:168.660000px;}
.yb8{bottom:168.840000px;}
.y9e{bottom:168.870000px;}
.yeb{bottom:169.770000px;}
.yf{bottom:171.750000px;}
.yc{bottom:178.560000px;}
.yd9{bottom:179.670000px;}
.y34{bottom:183.885000px;}
.y66{bottom:188.670000px;}
.y9d{bottom:190.470000px;}
.y28{bottom:190.695000px;}
.y44{bottom:193.860000px;}
.yb7{bottom:194.040000px;}
.yea{bottom:194.970000px;}
.ye{bottom:196.950000px;}
.y54{bottom:198.930000px;}
.yff{bottom:200.595000px;}
.yd8{bottom:204.915000px;}
.y33{bottom:209.085000px;}
.ycc{bottom:210.030000px;}
.y9c{bottom:212.070000px;}
.y65{bottom:213.870000px;}
.y27{bottom:215.895000px;}
.yc3{bottom:217.440000px;}
.y43{bottom:219.090000px;}
.yb6{bottom:219.240000px;}
.y95{bottom:220.110000px;}
.ye9{bottom:220.170000px;}
.yc9{bottom:220.755000px;}
.yd{bottom:222.150000px;}
.yb{bottom:226.110000px;}
.yd7{bottom:230.115000px;}
.y9b{bottom:233.670000px;}
.ycb{bottom:235.230000px;}
.yc2{bottom:239.040000px;}
.y64{bottom:239.070000px;}
.yfe{bottom:239.505000px;}
.y26{bottom:241.095000px;}
.y42{bottom:244.290000px;}
.yb5{bottom:244.440000px;}
.y94{bottom:245.310000px;}
.ye8{bottom:245.415000px;}
.yc8{bottom:245.955000px;}
.yfa{bottom:254.625000px;}
.y9a{bottom:255.270000px;}
.yd6{bottom:260.355000px;}
.yca{bottom:260.430000px;}
.yc1{bottom:260.640000px;}
.y63{bottom:264.270000px;}
.y8a{bottom:266.295000px;}
.y41{bottom:269.490000px;}
.yb4{bottom:269.670000px;}
.ye7{bottom:270.615000px;}
.ya{bottom:273.630000px;}
.y99{bottom:276.870000px;}
.y32{bottom:277.020000px;}
.yf9{bottom:279.825000px;}
.y86{bottom:281.730000px;}
.yd5{bottom:285.555000px;}
.y1a{bottom:287.820000px;}
.y62{bottom:289.470000px;}
.y89{bottom:291.525000px;}
.y40{bottom:294.690000px;}
.yb3{bottom:294.870000px;}
.ye6{bottom:295.815000px;}
.y98{bottom:298.515000px;}
.y4e{bottom:300.135000px;}
.y31{bottom:302.220000px;}
.yf8{bottom:305.025000px;}
.y85{bottom:306.930000px;}
.yd4{bottom:310.755000px;}
.y19{bottom:313.020000px;}
.y61{bottom:314.670000px;}
.y7a{bottom:319.650000px;}
.y3f{bottom:319.890000px;}
.yb2{bottom:320.070000px;}
.y97{bottom:320.115000px;}
.ye5{bottom:321.015000px;}
.y9{bottom:321.150000px;}
.y4d{bottom:321.765000px;}
.yfd{bottom:327.345000px;}
.yf7{bottom:330.225000px;}
.y84{bottom:332.130000px;}
.yd3{bottom:335.955000px;}
.y18{bottom:338.220000px;}
.y60{bottom:339.915000px;}
.y96{bottom:341.715000px;}
.y79{bottom:344.850000px;}
.y3e{bottom:345.090000px;}
.yb1{bottom:345.270000px;}
.ye4{bottom:346.215000px;}
.y37{bottom:348.225000px;}
.y25{bottom:351.825000px;}
.yf6{bottom:355.425000px;}
.y83{bottom:357.375000px;}
.yd2{bottom:361.185000px;}
.y17{bottom:363.420000px;}
.y6c{bottom:364.350000px;}
.y5f{bottom:365.115000px;}
.y77{bottom:367.095000px;}
.y8{bottom:368.715000px;}
.y78{bottom:370.050000px;}
.y3d{bottom:370.335000px;}
.yb0{bottom:370.470000px;}
.ye3{bottom:371.415000px;}
.y36{bottom:373.470000px;}
.yfc{bottom:374.865000px;}
.yc0{bottom:375.330000px;}
.y30{bottom:375.405000px;}
.y24{bottom:377.025000px;}
.yf5{bottom:380.670000px;}
.y82{bottom:382.575000px;}
.yd1{bottom:386.385000px;}
.y16{bottom:388.620000px;}
.y6b{bottom:389.550000px;}
.y5e{bottom:390.315000px;}
.y76{bottom:392.295000px;}
.yaf{bottom:395.670000px;}
.ye2{bottom:396.615000px;}
.y35{bottom:398.670000px;}
.y53{bottom:401.970000px;}
.y6f{bottom:402.045000px;}
.y23{bottom:402.225000px;}
.y91{bottom:405.720000px;}
.yf4{bottom:405.870000px;}
.y81{bottom:407.775000px;}
.yd0{bottom:411.585000px;}
.y15{bottom:413.850000px;}
.y4a{bottom:414.150000px;}
.y6a{bottom:414.750000px;}
.y5d{bottom:415.515000px;}
.y7{bottom:416.235000px;}
.y75{bottom:417.495000px;}
.yae{bottom:420.915000px;}
.ye1{bottom:421.845000px;}
.y88{bottom:422.280000px;}
.yfb{bottom:422.430000px;}
.y8e{bottom:422.535000px;}
.y52{bottom:427.215000px;}
.y6e{bottom:427.290000px;}
.y22{bottom:427.425000px;}
.yc7{bottom:429.225000px;}
.y90{bottom:430.920000px;}
.yf3{bottom:431.070000px;}
.ycf{bottom:436.785000px;}
.y14{bottom:439.050000px;}
.y69{bottom:439.950000px;}
.y5c{bottom:440.715000px;}
.yad{bottom:446.115000px;}
.ye0{bottom:447.045000px;}
.y87{bottom:447.480000px;}
.y8d{bottom:447.765000px;}
.y2f{bottom:451.545000px;}
.y51{bottom:452.415000px;}
.y6d{bottom:452.490000px;}
.y21{bottom:452.625000px;}
.y3c{bottom:453.090000px;}
.ybf{bottom:455.190000px;}
.y8f{bottom:456.120000px;}
.yf2{bottom:456.270000px;}
.yce{bottom:461.985000px;}
.y13{bottom:464.250000px;}
.y68{bottom:465.150000px;}
.y5b{bottom:465.915000px;}
.y80{bottom:465.990000px;}
.ydf{bottom:472.245000px;}
.ya7{bottom:477.285000px;}
.y50{bottom:477.615000px;}
.y20{bottom:477.870000px;}
.y3b{bottom:478.290000px;}
.y93{bottom:479.805000px;}
.yc5{bottom:479.880000px;}
.ybb{bottom:480.315000px;}
.ybe{bottom:480.390000px;}
.yf1{bottom:481.470000px;}
.y72{bottom:481.830000px;}
.yc6{bottom:481.935000px;}
.ycd{bottom:487.185000px;}
.y5{bottom:488.625000px;}
.y12{bottom:489.450000px;}
.y67{bottom:490.395000px;}
.y5a{bottom:491.115000px;}
.y7f{bottom:491.220000px;}
.yde{bottom:497.445000px;}
.y4c{bottom:499.170000px;}
.y92{bottom:501.405000px;}
.ya6{bottom:502.485000px;}
.y4f{bottom:502.815000px;}
.y1f{bottom:503.070000px;}
.y3a{bottom:503.490000px;}
.yba{bottom:505.515000px;}
.ybd{bottom:505.620000px;}
.yf0{bottom:506.670000px;}
.y71{bottom:507.030000px;}
.ya2{bottom:515.085000px;}
.y59{bottom:516.345000px;}
.y7e{bottom:516.420000px;}
.yac{bottom:516.525000px;}
.ydd{bottom:522.645000px;}
.y49{bottom:525.090000px;}
.y2e{bottom:526.650000px;}
.ya5{bottom:527.685000px;}
.y1e{bottom:528.270000px;}
.y39{bottom:528.690000px;}
.y6{bottom:529.530000px;}
.ybc{bottom:530.820000px;}
.y58{bottom:531.825000px;}
.yef{bottom:531.870000px;}
.y74{bottom:535.245000px;}
.ya1{bottom:540.285000px;}
.y7d{bottom:541.620000px;}
.yab{bottom:541.725000px;}
.ya8{bottom:541.830000px;}
.yc4{bottom:547.380000px;}
.ydc{bottom:547.845000px;}
.y8b{bottom:549.870000px;}
.y48{bottom:550.290000px;}
.y2d{bottom:551.850000px;}
.ya4{bottom:552.885000px;}
.y57{bottom:553.425000px;}
.y1d{bottom:553.470000px;}
.y38{bottom:553.935000px;}
.yee{bottom:557.100000px;}
.y2c{bottom:557.535000px;}
.y1b{bottom:560.085000px;}
.y73{bottom:560.445000px;}
.y70{bottom:561.780000px;}
.y7c{bottom:566.820000px;}
.yaa{bottom:566.925000px;}
.y55{bottom:567.030000px;}
.y4b{bottom:568.515000px;}
.ydb{bottom:573.045000px;}
.y56{bottom:575.025000px;}
.y47{bottom:575.490000px;}
.ya3{bottom:578.130000px;}
.y8c{bottom:578.340000px;}
.y1c{bottom:578.670000px;}
.y2b{bottom:579.165000px;}
.yed{bottom:582.300000px;}
.y7b{bottom:592.020000px;}
.ya9{bottom:592.125000px;}
.y4{bottom:675.870000px;}
.y3{bottom:697.470000px;}
.y2{bottom:719.070000px;}
.h2{height:75.093750px;}
.ha{height:75.243937px;}
.hc{height:75.519844px;}
.h7{height:87.859687px;}
.h8{height:88.009875px;}
.he{height:112.640625px;}
.h1{height:112.790813px;}
.hb{height:126.739687px;}
.h5{height:137.421562px;}
.h6{height:137.571750px;}
.hd{height:162.953438px;}
.h9{height:193.741875px;}
.h3{height:193.892063px;}
.h4{height:200.500313px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:10.800000px;}
.x2{left:16.416000px;}
.x25{left:27.864000px;}
.x2c{left:28.980000px;}
.x13{left:32.004000px;}
.x4e{left:40.608000px;}
.x1e{left:45.252000px;}
.x20{left:47.196000px;}
.x37{left:50.328000px;}
.x19{left:55.872000px;}
.x18{left:56.952000px;}
.x43{left:58.680000px;}
.x15{left:60.192000px;}
.x5{left:66.132000px;}
.x30{left:71.136000px;}
.x4b{left:72.360000px;}
.x31{left:76.356000px;}
.x32{left:79.416000px;}
.x10{left:81.108000px;}
.x36{left:86.400000px;}
.x3{left:87.948000px;}
.xc{left:90.288000px;}
.xf{left:92.808000px;}
.xb{left:96.588000px;}
.x35{left:98.100000px;}
.x2d{left:101.808000px;}
.x2b{left:103.824000px;}
.xe{left:109.008000px;}
.xd{left:111.168000px;}
.x7{left:118.404000px;}
.x8{left:120.744000px;}
.x11{left:126.288000px;}
.x24{left:128.988000px;}
.x21{left:132.912000px;}
.x23{left:133.992000px;}
.x22{left:137.592000px;}
.x12{left:140.328000px;}
.x9{left:145.044000px;}
.x6{left:147.564000px;}
.xa{left:149.724000px;}
.x38{left:170.070000px;}
.x16{left:192.600000px;}
.x40{left:209.955000px;}
.x17{left:217.980000px;}
.x3f{left:233.355000px;}
.x26{left:292.830000px;}
.x27{left:297.150000px;}
.x1f{left:329.430000px;}
.x4a{left:352.410000px;}
.x3e{left:389.130000px;}
.x3d{left:394.050000px;}
.x33{left:397.110000px;}
.x1d{left:402.120000px;}
.x34{left:430.950000px;}
.x4{left:433.335000px;}
.x2a{left:439.740000px;}
.x2f{left:458.310000px;}
.x2e{left:460.110000px;}
.x44{left:471.525000px;}
.x3b{left:496.590000px;}
.x3c{left:502.530000px;}
.x41{left:552.210000px;}
.x4d{left:555.375000px;}
.x14{left:565.020000px;}
.x42{left:586.080000px;}
.x46{left:604.545000px;}
.x50{left:605.550000px;}
.x48{left:622.905000px;}
.x47{left:625.965000px;}
.x4c{left:635.655000px;}
.x49{left:650.775000px;}
.x45{left:665.565000px;}
.x3a{left:682.410000px;}
.x39{left:713.160000px;}
.x29{left:736.020000px;}
.x28{left:769.860000px;}
.x1b{left:857.805000px;}
.x1a{left:859.065000px;}
.x1c{left:899.205000px;}
.x4f{left:1060.845000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.lsa{letter-spacing:-0.672000pt;}
.lsb{letter-spacing:-0.624000pt;}
.ls17{letter-spacing:-0.401600pt;}
.ls5{letter-spacing:-0.336533pt;}
.ls1{letter-spacing:-0.326933pt;}
.ls15{letter-spacing:-0.311467pt;}
.lsd{letter-spacing:-0.303467pt;}
.ls18{letter-spacing:-0.294933pt;}
.ls16{letter-spacing:-0.104533pt;}
.ls4{letter-spacing:-0.033280pt;}
.lse{letter-spacing:-0.024960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016640pt;}
.ls3{letter-spacing:0.090133pt;}
.ls2{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls8{letter-spacing:3.503360pt;}
.ls10{letter-spacing:4.107776pt;}
.ls7{letter-spacing:4.143360pt;}
.ls14{letter-spacing:28.463360pt;}
.ls13{letter-spacing:28.570027pt;}
.ls12{letter-spacing:31.183360pt;}
.ls11{letter-spacing:41.263360pt;}
.ls1c{letter-spacing:95.384960pt;}
.ls6{letter-spacing:119.064960pt;}
.ls1d{letter-spacing:242.991360pt;}
.ls1e{letter-spacing:363.194027pt;}
.ls1a{letter-spacing:363.275776pt;}
.ls1f{letter-spacing:363.300693pt;}
.ls19{letter-spacing:363.311360pt;}
.ws0{word-spacing:-26.396651pt;}
.ws9{word-spacing:-21.136640pt;}
.ws5{word-spacing:-20.852224pt;}
.ws6{word-spacing:-20.833280pt;}
.ws4{word-spacing:-20.816640pt;}
.wsc{word-spacing:-20.791680pt;}
.wsa{word-spacing:-20.783360pt;}
.ws10{word-spacing:-20.747691pt;}
.ws12{word-spacing:-20.521707pt;}
.wsb{word-spacing:-20.513173pt;}
.wsf{word-spacing:-20.505173pt;}
.ws11{word-spacing:-20.450624pt;}
.ws8{word-spacing:-20.192640pt;}
.ws7{word-spacing:-20.144640pt;}
.wse{word-spacing:-17.827584pt;}
.wsd{word-spacing:-17.792000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:61.279360pt;}
.ws3{word-spacing:61.349824pt;}
._5{margin-left:-12.043776pt;}
._f{margin-left:-8.611200pt;}
._2{margin-left:-6.464000pt;}
._c{margin-left:-4.430293pt;}
._4{margin-left:-3.518720pt;}
._1{margin-left:-2.045440pt;}
._0{margin-left:-0.961280pt;}
._3{width:0.957440pt;}
._6{width:2.459520pt;}
._7{width:3.513600pt;}
._d{width:4.968960pt;}
._a{width:8.619733pt;}
._b{width:9.995307pt;}
._16{width:11.145131pt;}
._17{width:12.278912pt;}
._14{width:16.910720pt;}
._1a{width:27.882240pt;}
._15{width:31.713920pt;}
._13{width:41.103147pt;}
._12{width:41.995520pt;}
._11{width:57.541333pt;}
._10{width:58.602240pt;}
._19{width:86.371627pt;}
._18{width:87.294507pt;}
._8{width:95.384960pt;}
._9{width:119.064960pt;}
._1b{width:363.311360pt;}
._e{width:1172.778667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fs6{font-size:74.880000pt;}
.fs7{font-size:75.008000pt;}
.fsb{font-size:96.000000pt;}
.fs0{font-size:96.128000pt;}
.fs4{font-size:117.120000pt;}
.fs5{font-size:117.248000pt;}
.fsa{font-size:138.880000pt;}
.fs8{font-size:165.120000pt;}
.fs2{font-size:165.248000pt;}
.fs3{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.376000pt;}
.y11{bottom:107.840000pt;}
.ya0{bottom:111.712000pt;}
.y2a{bottom:124.704000pt;}
.y46{bottom:127.520000pt;}
.yb9{bottom:127.680000pt;}
.yec{bottom:128.512000pt;}
.y10{bottom:130.272000pt;}
.y9f{bottom:130.912000pt;}
.yda{bottom:137.306667pt;}
.y29{bottom:147.106667pt;}
.y45{bottom:149.920000pt;}
.yb8{bottom:150.080000pt;}
.y9e{bottom:150.106667pt;}
.yeb{bottom:150.906667pt;}
.yf{bottom:152.666667pt;}
.yc{bottom:158.720000pt;}
.yd9{bottom:159.706667pt;}
.y34{bottom:163.453333pt;}
.y66{bottom:167.706667pt;}
.y9d{bottom:169.306667pt;}
.y28{bottom:169.506667pt;}
.y44{bottom:172.320000pt;}
.yb7{bottom:172.480000pt;}
.yea{bottom:173.306667pt;}
.ye{bottom:175.066667pt;}
.y54{bottom:176.826667pt;}
.yff{bottom:178.306667pt;}
.yd8{bottom:182.146667pt;}
.y33{bottom:185.853333pt;}
.ycc{bottom:186.693333pt;}
.y9c{bottom:188.506667pt;}
.y65{bottom:190.106667pt;}
.y27{bottom:191.906667pt;}
.yc3{bottom:193.280000pt;}
.y43{bottom:194.746667pt;}
.yb6{bottom:194.880000pt;}
.y95{bottom:195.653333pt;}
.ye9{bottom:195.706667pt;}
.yc9{bottom:196.226667pt;}
.yd{bottom:197.466667pt;}
.yb{bottom:200.986667pt;}
.yd7{bottom:204.546667pt;}
.y9b{bottom:207.706667pt;}
.ycb{bottom:209.093333pt;}
.yc2{bottom:212.480000pt;}
.y64{bottom:212.506667pt;}
.yfe{bottom:212.893333pt;}
.y26{bottom:214.306667pt;}
.y42{bottom:217.146667pt;}
.yb5{bottom:217.280000pt;}
.y94{bottom:218.053333pt;}
.ye8{bottom:218.146667pt;}
.yc8{bottom:218.626667pt;}
.yfa{bottom:226.333333pt;}
.y9a{bottom:226.906667pt;}
.yd6{bottom:231.426667pt;}
.yca{bottom:231.493333pt;}
.yc1{bottom:231.680000pt;}
.y63{bottom:234.906667pt;}
.y8a{bottom:236.706667pt;}
.y41{bottom:239.546667pt;}
.yb4{bottom:239.706667pt;}
.ye7{bottom:240.546667pt;}
.ya{bottom:243.226667pt;}
.y99{bottom:246.106667pt;}
.y32{bottom:246.240000pt;}
.yf9{bottom:248.733333pt;}
.y86{bottom:250.426667pt;}
.yd5{bottom:253.826667pt;}
.y1a{bottom:255.840000pt;}
.y62{bottom:257.306667pt;}
.y89{bottom:259.133333pt;}
.y40{bottom:261.946667pt;}
.yb3{bottom:262.106667pt;}
.ye6{bottom:262.946667pt;}
.y98{bottom:265.346667pt;}
.y4e{bottom:266.786667pt;}
.y31{bottom:268.640000pt;}
.yf8{bottom:271.133333pt;}
.y85{bottom:272.826667pt;}
.yd4{bottom:276.226667pt;}
.y19{bottom:278.240000pt;}
.y61{bottom:279.706667pt;}
.y7a{bottom:284.133333pt;}
.y3f{bottom:284.346667pt;}
.yb2{bottom:284.506667pt;}
.y97{bottom:284.546667pt;}
.ye5{bottom:285.346667pt;}
.y9{bottom:285.466667pt;}
.y4d{bottom:286.013333pt;}
.yfd{bottom:290.973333pt;}
.yf7{bottom:293.533333pt;}
.y84{bottom:295.226667pt;}
.yd3{bottom:298.626667pt;}
.y18{bottom:300.640000pt;}
.y60{bottom:302.146667pt;}
.y96{bottom:303.746667pt;}
.y79{bottom:306.533333pt;}
.y3e{bottom:306.746667pt;}
.yb1{bottom:306.906667pt;}
.ye4{bottom:307.746667pt;}
.y37{bottom:309.533333pt;}
.y25{bottom:312.733333pt;}
.yf6{bottom:315.933333pt;}
.y83{bottom:317.666667pt;}
.yd2{bottom:321.053333pt;}
.y17{bottom:323.040000pt;}
.y6c{bottom:323.866667pt;}
.y5f{bottom:324.546667pt;}
.y77{bottom:326.306667pt;}
.y8{bottom:327.746667pt;}
.y78{bottom:328.933333pt;}
.y3d{bottom:329.186667pt;}
.yb0{bottom:329.306667pt;}
.ye3{bottom:330.146667pt;}
.y36{bottom:331.973333pt;}
.yfc{bottom:333.213333pt;}
.yc0{bottom:333.626667pt;}
.y30{bottom:333.693333pt;}
.y24{bottom:335.133333pt;}
.yf5{bottom:338.373333pt;}
.y82{bottom:340.066667pt;}
.yd1{bottom:343.453333pt;}
.y16{bottom:345.440000pt;}
.y6b{bottom:346.266667pt;}
.y5e{bottom:346.946667pt;}
.y76{bottom:348.706667pt;}
.yaf{bottom:351.706667pt;}
.ye2{bottom:352.546667pt;}
.y35{bottom:354.373333pt;}
.y53{bottom:357.306667pt;}
.y6f{bottom:357.373333pt;}
.y23{bottom:357.533333pt;}
.y91{bottom:360.640000pt;}
.yf4{bottom:360.773333pt;}
.y81{bottom:362.466667pt;}
.yd0{bottom:365.853333pt;}
.y15{bottom:367.866667pt;}
.y4a{bottom:368.133333pt;}
.y6a{bottom:368.666667pt;}
.y5d{bottom:369.346667pt;}
.y7{bottom:369.986667pt;}
.y75{bottom:371.106667pt;}
.yae{bottom:374.146667pt;}
.ye1{bottom:374.973333pt;}
.y88{bottom:375.360000pt;}
.yfb{bottom:375.493333pt;}
.y8e{bottom:375.586667pt;}
.y52{bottom:379.746667pt;}
.y6e{bottom:379.813333pt;}
.y22{bottom:379.933333pt;}
.yc7{bottom:381.533333pt;}
.y90{bottom:383.040000pt;}
.yf3{bottom:383.173333pt;}
.ycf{bottom:388.253333pt;}
.y14{bottom:390.266667pt;}
.y69{bottom:391.066667pt;}
.y5c{bottom:391.746667pt;}
.yad{bottom:396.546667pt;}
.ye0{bottom:397.373333pt;}
.y87{bottom:397.760000pt;}
.y8d{bottom:398.013333pt;}
.y2f{bottom:401.373333pt;}
.y51{bottom:402.146667pt;}
.y6d{bottom:402.213333pt;}
.y21{bottom:402.333333pt;}
.y3c{bottom:402.746667pt;}
.ybf{bottom:404.613333pt;}
.y8f{bottom:405.440000pt;}
.yf2{bottom:405.573333pt;}
.yce{bottom:410.653333pt;}
.y13{bottom:412.666667pt;}
.y68{bottom:413.466667pt;}
.y5b{bottom:414.146667pt;}
.y80{bottom:414.213333pt;}
.ydf{bottom:419.773333pt;}
.ya7{bottom:424.253333pt;}
.y50{bottom:424.546667pt;}
.y20{bottom:424.773333pt;}
.y3b{bottom:425.146667pt;}
.y93{bottom:426.493333pt;}
.yc5{bottom:426.560000pt;}
.ybb{bottom:426.946667pt;}
.ybe{bottom:427.013333pt;}
.yf1{bottom:427.973333pt;}
.y72{bottom:428.293333pt;}
.yc6{bottom:428.386667pt;}
.ycd{bottom:433.053333pt;}
.y5{bottom:434.333333pt;}
.y12{bottom:435.066667pt;}
.y67{bottom:435.906667pt;}
.y5a{bottom:436.546667pt;}
.y7f{bottom:436.640000pt;}
.yde{bottom:442.173333pt;}
.y4c{bottom:443.706667pt;}
.y92{bottom:445.693333pt;}
.ya6{bottom:446.653333pt;}
.y4f{bottom:446.946667pt;}
.y1f{bottom:447.173333pt;}
.y3a{bottom:447.546667pt;}
.yba{bottom:449.346667pt;}
.ybd{bottom:449.440000pt;}
.yf0{bottom:450.373333pt;}
.y71{bottom:450.693333pt;}
.ya2{bottom:457.853333pt;}
.y59{bottom:458.973333pt;}
.y7e{bottom:459.040000pt;}
.yac{bottom:459.133333pt;}
.ydd{bottom:464.573333pt;}
.y49{bottom:466.746667pt;}
.y2e{bottom:468.133333pt;}
.ya5{bottom:469.053333pt;}
.y1e{bottom:469.573333pt;}
.y39{bottom:469.946667pt;}
.y6{bottom:470.693333pt;}
.ybc{bottom:471.840000pt;}
.y58{bottom:472.733333pt;}
.yef{bottom:472.773333pt;}
.y74{bottom:475.773333pt;}
.ya1{bottom:480.253333pt;}
.y7d{bottom:481.440000pt;}
.yab{bottom:481.533333pt;}
.ya8{bottom:481.626667pt;}
.yc4{bottom:486.560000pt;}
.ydc{bottom:486.973333pt;}
.y8b{bottom:488.773333pt;}
.y48{bottom:489.146667pt;}
.y2d{bottom:490.533333pt;}
.ya4{bottom:491.453333pt;}
.y57{bottom:491.933333pt;}
.y1d{bottom:491.973333pt;}
.y38{bottom:492.386667pt;}
.yee{bottom:495.200000pt;}
.y2c{bottom:495.586667pt;}
.y1b{bottom:497.853333pt;}
.y73{bottom:498.173333pt;}
.y70{bottom:499.360000pt;}
.y7c{bottom:503.840000pt;}
.yaa{bottom:503.933333pt;}
.y55{bottom:504.026667pt;}
.y4b{bottom:505.346667pt;}
.ydb{bottom:509.373333pt;}
.y56{bottom:511.133333pt;}
.y47{bottom:511.546667pt;}
.ya3{bottom:513.893333pt;}
.y8c{bottom:514.080000pt;}
.y1c{bottom:514.373333pt;}
.y2b{bottom:514.813333pt;}
.yed{bottom:517.600000pt;}
.y7b{bottom:526.240000pt;}
.ya9{bottom:526.333333pt;}
.y4{bottom:600.773333pt;}
.y3{bottom:619.973333pt;}
.y2{bottom:639.173333pt;}
.h2{height:66.750000pt;}
.ha{height:66.883500pt;}
.hc{height:67.128750pt;}
.h7{height:78.097500pt;}
.h8{height:78.231000pt;}
.he{height:100.125000pt;}
.h1{height:100.258500pt;}
.hb{height:112.657500pt;}
.h5{height:122.152500pt;}
.h6{height:122.286000pt;}
.hd{height:144.847500pt;}
.h9{height:172.215000pt;}
.h3{height:172.348500pt;}
.h4{height:178.222500pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.600000pt;}
.x2{left:14.592000pt;}
.x25{left:24.768000pt;}
.x2c{left:25.760000pt;}
.x13{left:28.448000pt;}
.x4e{left:36.096000pt;}
.x1e{left:40.224000pt;}
.x20{left:41.952000pt;}
.x37{left:44.736000pt;}
.x19{left:49.664000pt;}
.x18{left:50.624000pt;}
.x43{left:52.160000pt;}
.x15{left:53.504000pt;}
.x5{left:58.784000pt;}
.x30{left:63.232000pt;}
.x4b{left:64.320000pt;}
.x31{left:67.872000pt;}
.x32{left:70.592000pt;}
.x10{left:72.096000pt;}
.x36{left:76.800000pt;}
.x3{left:78.176000pt;}
.xc{left:80.256000pt;}
.xf{left:82.496000pt;}
.xb{left:85.856000pt;}
.x35{left:87.200000pt;}
.x2d{left:90.496000pt;}
.x2b{left:92.288000pt;}
.xe{left:96.896000pt;}
.xd{left:98.816000pt;}
.x7{left:105.248000pt;}
.x8{left:107.328000pt;}
.x11{left:112.256000pt;}
.x24{left:114.656000pt;}
.x21{left:118.144000pt;}
.x23{left:119.104000pt;}
.x22{left:122.304000pt;}
.x12{left:124.736000pt;}
.x9{left:128.928000pt;}
.x6{left:131.168000pt;}
.xa{left:133.088000pt;}
.x38{left:151.173333pt;}
.x16{left:171.200000pt;}
.x40{left:186.626667pt;}
.x17{left:193.760000pt;}
.x3f{left:207.426667pt;}
.x26{left:260.293333pt;}
.x27{left:264.133333pt;}
.x1f{left:292.826667pt;}
.x4a{left:313.253333pt;}
.x3e{left:345.893333pt;}
.x3d{left:350.266667pt;}
.x33{left:352.986667pt;}
.x1d{left:357.440000pt;}
.x34{left:383.066667pt;}
.x4{left:385.186667pt;}
.x2a{left:390.880000pt;}
.x2f{left:407.386667pt;}
.x2e{left:408.986667pt;}
.x44{left:419.133333pt;}
.x3b{left:441.413333pt;}
.x3c{left:446.693333pt;}
.x41{left:490.853333pt;}
.x4d{left:493.666667pt;}
.x14{left:502.240000pt;}
.x42{left:520.960000pt;}
.x46{left:537.373333pt;}
.x50{left:538.266667pt;}
.x48{left:553.693333pt;}
.x47{left:556.413333pt;}
.x4c{left:565.026667pt;}
.x49{left:578.466667pt;}
.x45{left:591.613333pt;}
.x3a{left:606.586667pt;}
.x39{left:633.920000pt;}
.x29{left:654.240000pt;}
.x28{left:684.320000pt;}
.x1b{left:762.493333pt;}
.x1a{left:763.613333pt;}
.x1c{left:799.293333pt;}
.x4f{left:942.973333pt;}
}




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