
    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_5cd7dee56d3bbdaddedff7d5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b5fd73b85c20981ce6ceb576.woff')format("woff");}.ff2{font-family:ff2;line-height:0.995117;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_76580e7a18b26b21c72494a6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_598f2365830ab9e9637d0b0d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_39a5ccd80d35ccb0d45888ac.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_65deacd0418338149b7da3f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_d11a86b35471d4d5fcaeca73.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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:ff9;src:url('chunks/assets/font_e035d88b5b445a56a972e2d7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-99.000000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-5.628000px;}
.ls13{letter-spacing:-3.378000px;}
.ls17{letter-spacing:-3.270000px;}
.lsf{letter-spacing:-2.250000px;}
.ls14{letter-spacing:-1.524000px;}
.ls1d{letter-spacing:-1.230000px;}
.ls7{letter-spacing:-1.128000px;}
.ls6{letter-spacing:-0.876000px;}
.ls16{letter-spacing:-0.870000px;}
.ls10{letter-spacing:-0.513000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.180000px;}
.ls5{letter-spacing:1.128000px;}
.ls12{letter-spacing:1.147500px;}
.ls9{letter-spacing:1.230000px;}
.ls18{letter-spacing:1.465500px;}
.ls1{letter-spacing:1.525500px;}
.ls19{letter-spacing:1.675500px;}
.lsd{letter-spacing:1.705500px;}
.ls1e{letter-spacing:2.034000px;}
.ls8{letter-spacing:2.250000px;}
.lsb{letter-spacing:2.370000px;}
.ls11{letter-spacing:3.375000px;}
.lse{letter-spacing:3.378000px;}
.ls1c{letter-spacing:5.733000px;}
.ls2{letter-spacing:7.875000px;}
.lsc{letter-spacing:21.315000px;}
.ls0{letter-spacing:21.375000px;}
.ls1b{letter-spacing:46.203000px;}
.ls3{letter-spacing:93.495000px;}
.ls1a{letter-spacing:850.575000px;}
.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;}
}
.ws2{word-spacing:-21.375000px;}
.wse{word-spacing:-21.159000px;}
.ws4{word-spacing:-20.355000px;}
.wsc{word-spacing:-20.272500px;}
.ws1{word-spacing:-19.125000px;}
.wsa{word-spacing:-18.255000px;}
.wsd{word-spacing:-17.895000px;}
.ws9{word-spacing:-17.601000px;}
.ws6{word-spacing:-16.875000px;}
.wsb{word-spacing:-15.855000px;}
.ws5{word-spacing:-14.625000px;}
.ws8{word-spacing:-14.112000px;}
.ws7{word-spacing:-12.375000px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:0.767850px;}
._4e{margin-left:-10.893150px;}
._3{margin-left:-7.879800px;}
._f{margin-left:-5.952000px;}
._6{margin-left:-4.804050px;}
._2{margin-left:-3.340350px;}
._0{margin-left:-1.798650px;}
._1{width:1.456050px;}
._5{width:2.540550px;}
._4{width:4.188000px;}
._c{width:5.889150px;}
._14{width:6.891000px;}
._9{width:8.182950px;}
._1c{width:9.256050px;}
._e{width:10.573050px;}
._a{width:12.626100px;}
._30{width:13.804950px;}
._3d{width:15.189900px;}
._1e{width:16.284600px;}
._8{width:17.363250px;}
._31{width:19.126950px;}
._7{width:21.460200px;}
._42{width:23.453850px;}
._13{width:25.038750px;}
._b{width:26.523300px;}
._20{width:28.698300px;}
._1d{width:30.354750px;}
._17{width:32.273100px;}
._1f{width:34.452150px;}
._16{width:35.759550px;}
._41{width:36.960450px;}
._49{width:38.666550px;}
._15{width:40.074450px;}
._4a{width:41.401050px;}
._d{width:43.961250px;}
._1a{width:47.516250px;}
._18{width:48.770250px;}
._48{width:49.829400px;}
._19{width:53.361600px;}
._32{width:56.716500px;}
._22{width:58.008000px;}
._12{width:61.182150px;}
._11{width:62.890500px;}
._21{width:66.138600px;}
._10{width:67.159350px;}
._2a{width:70.696800px;}
._28{width:72.103050px;}
._4d{width:76.524150px;}
._4c{width:79.392750px;}
._4b{width:80.440500px;}
._43{width:83.094450px;}
._27{width:84.931650px;}
._45{width:85.988100px;}
._44{width:87.047400px;}
._38{width:91.089450px;}
._1b{width:93.677100px;}
._3f{width:95.656050px;}
._29{width:98.168550px;}
._25{width:102.910050px;}
._3c{width:109.363200px;}
._47{width:113.638500px;}
._35{width:118.921050px;}
._2c{width:121.210200px;}
._2e{width:128.989650px;}
._2d{width:129.995400px;}
._24{width:134.858400px;}
._34{width:141.372750px;}
._26{width:143.045700px;}
._3e{width:150.643800px;}
._2f{width:151.842000px;}
._2b{width:173.975250px;}
._3b{width:177.371550px;}
._37{width:180.581250px;}
._3a{width:190.625100px;}
._39{width:193.745550px;}
._40{width:195.751950px;}
._33{width:199.461900px;}
._23{width:228.150750px;}
._36{width:258.339150px;}
._46{width:303.215100px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs5{font-size:76.500000px;}
.fs0{font-size:85.650000px;}
.fs2{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fs4{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.y37{bottom:4.500000px;}
.y31{bottom:5.625000px;}
.y3e{bottom:5.670000px;}
.y4e{bottom:6.750000px;}
.y34{bottom:14.625000px;}
.y2f{bottom:14.640000px;}
.y5{bottom:14.662500px;}
.y3a{bottom:15.750000px;}
.y43{bottom:15.780000px;}
.y40{bottom:15.795000px;}
.y4f{bottom:16.875000px;}
.y58{bottom:16.905000px;}
.y60{bottom:16.920000px;}
.y5d{bottom:18.045000px;}
.y35{bottom:24.750000px;}
.y30{bottom:24.795000px;}
.y44{bottom:25.905000px;}
.y3b{bottom:25.920000px;}
.y55{bottom:27.000000px;}
.y4d{bottom:28.125000px;}
.y57{bottom:28.155000px;}
.y53{bottom:28.170000px;}
.y3{bottom:32.662500px;}
.y33{bottom:34.875000px;}
.y3f{bottom:34.920000px;}
.y39{bottom:36.045000px;}
.y51{bottom:38.295000px;}
.y5c{bottom:39.420000px;}
.y36{bottom:45.030000px;}
.y3c{bottom:45.045000px;}
.y52{bottom:49.545000px;}
.y61{bottom:49.575000px;}
.y5e{bottom:50.670000px;}
.y42{bottom:55.200000px;}
.y4{bottom:61.912500px;}
.y45{bottom:65.325000px;}
.y54{bottom:122.737500px;}
.y2d{bottom:130.612500px;}
.y8f{bottom:141.862500px;}
.y7d{bottom:147.487500px;}
.y2c{bottom:156.480000px;}
.y8e{bottom:165.525000px;}
.y50{bottom:172.275000px;}
.y7c{bottom:173.400000px;}
.y2b{bottom:182.400000px;}
.y8d{bottom:188.025000px;}
.y7b{bottom:199.320000px;}
.y2a{bottom:208.320000px;}
.y8c{bottom:210.570000px;}
.y7a{bottom:225.195000px;}
.y8b{bottom:233.070000px;}
.y29{bottom:234.195000px;}
.y4c{bottom:243.225000px;}
.y79{bottom:251.100000px;}
.y8a{bottom:255.600000px;}
.y28{bottom:260.100000px;}
.y78{bottom:276.975000px;}
.y89{bottom:278.100000px;}
.y27{bottom:286.005000px;}
.y4b{bottom:298.395000px;}
.y88{bottom:300.630000px;}
.y77{bottom:302.880000px;}
.y26{bottom:311.895000px;}
.y87{bottom:323.130000px;}
.y4a{bottom:324.300000px;}
.y76{bottom:327.675000px;}
.y25{bottom:336.675000px;}
.y86{bottom:344.550000px;}
.y49{bottom:350.175000px;}
.y75{bottom:353.550000px;}
.y24{bottom:362.550000px;}
.y85{bottom:367.080000px;}
.y48{bottom:376.095000px;}
.y74{bottom:379.470000px;}
.y23{bottom:388.455000px;}
.y84{bottom:389.595000px;}
.y47{bottom:401.955000px;}
.y73{bottom:405.330000px;}
.y83{bottom:412.125000px;}
.y22{bottom:414.375000px;}
.y46{bottom:424.500000px;}
.y72{bottom:431.250000px;}
.y82{bottom:434.625000px;}
.y21{bottom:440.250000px;}
.y41{bottom:442.500000px;}
.y71{bottom:457.170000px;}
.y20{bottom:466.170000px;}
.y81{bottom:479.670000px;}
.y70{bottom:483.045000px;}
.y1f{bottom:492.075000px;}
.y80{bottom:502.200000px;}
.y6f{bottom:508.950000px;}
.y1e{bottom:517.950000px;}
.y7f{bottom:524.700000px;}
.y3d{bottom:528.075000px;}
.y6e{bottom:534.855000px;}
.y1d{bottom:543.870000px;}
.y7e{bottom:547.245000px;}
.y6d{bottom:560.745000px;}
.y1c{bottom:569.745000px;}
.y6c{bottom:586.650000px;}
.y38{bottom:593.400000px;}
.y1b{bottom:595.650000px;}
.y6b{bottom:612.525000px;}
.y1a{bottom:621.570000px;}
.y6a{bottom:638.445000px;}
.y19{bottom:646.320000px;}
.y32{bottom:659.850000px;}
.y69{bottom:663.225000px;}
.y18{bottom:672.225000px;}
.y68{bottom:689.100000px;}
.y17{bottom:698.100000px;}
.y67{bottom:715.005000px;}
.y16{bottom:724.005000px;}
.y2e{bottom:725.130000px;}
.y66{bottom:740.880000px;}
.y15{bottom:749.925000px;}
.y65{bottom:766.800000px;}
.y14{bottom:775.800000px;}
.y64{bottom:792.705000px;}
.y13{bottom:801.705000px;}
.y63{bottom:818.580000px;}
.y12{bottom:827.625000px;}
.y62{bottom:844.500000px;}
.y11{bottom:853.500000px;}
.y5f{bottom:865.875000px;}
.y10{bottom:879.420000px;}
.yf{bottom:905.295000px;}
.ye{bottom:931.200000px;}
.y5b{bottom:936.825000px;}
.yd{bottom:957.120000px;}
.yc{bottom:981.870000px;}
.yb{bottom:1007.775000px;}
.y5a{bottom:1008.900000px;}
.ya{bottom:1033.650000px;}
.y9{bottom:1059.570000px;}
.y59{bottom:1079.850000px;}
.y8{bottom:1085.475000px;}
.y56{bottom:1107.975000px;}
.y7{bottom:1111.350000px;}
.y6{bottom:1137.255000px;}
.y2{bottom:1202.580000px;}
.y1{bottom:1222.830000px;}
.h16{height:22.500000px;}
.hc{height:39.412500px;}
.h5{height:40.537500px;}
.h15{height:42.787500px;}
.h12{height:43.912500px;}
.h17{height:47.131348px;}
.hb{height:53.415527px;}
.h9{height:55.918213px;}
.hf{height:57.414551px;}
.hd{height:58.957031px;}
.he{height:59.662500px;}
.h10{height:59.700000px;}
.h13{height:65.287500px;}
.h19{height:65.325000px;}
.h14{height:66.247559px;}
.h18{height:66.450000px;}
.h3{height:68.027344px;}
.h8{height:75.043213px;}
.ha{height:75.080566px;}
.h7{height:77.097656px;}
.h1a{height:78.629945px;}
.h11{height:79.950000px;}
.h2{height:86.319141px;}
.h4{height:95.389453px;}
.h6{height:121.485791px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w3{width:60.825000px;}
.w2{width:75.487500px;}
.w4{width:92.362500px;}
.w8{width:109.237500px;}
.w7{width:162.225000px;}
.w6{width:172.350000px;}
.w5{width:177.975000px;}
.w9{width:188.100000px;}
.wa{width:192.630000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x3{left:-1.125000px;}
.x0{left:0.000000px;}
.xb{left:1.125000px;}
.xd{left:22.545000px;}
.xa{left:107.025000px;}
.x1{left:108.149987px;}
.x9{left:129.524987px;}
.x4{left:147.562487px;}
.xc{left:171.225000px;}
.x11{left:220.770000px;}
.xe{left:268.095000px;}
.x8{left:289.499987px;}
.x6{left:310.904987px;}
.x7{left:321.029987px;}
.x12{left:402.150000px;}
.xf{left:449.445000px;}
.x5{left:457.319987px;}
.x13{left:594.750000px;}
.x10{left:625.155000px;}
.x2{left:802.005000px;}
@media print{
.v1{vertical-align:-88.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-5.002667pt;}
.ls13{letter-spacing:-3.002667pt;}
.ls17{letter-spacing:-2.906667pt;}
.lsf{letter-spacing:-2.000000pt;}
.ls14{letter-spacing:-1.354667pt;}
.ls1d{letter-spacing:-1.093333pt;}
.ls7{letter-spacing:-1.002667pt;}
.ls6{letter-spacing:-0.778667pt;}
.ls16{letter-spacing:-0.773333pt;}
.ls10{letter-spacing:-0.456000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls5{letter-spacing:1.002667pt;}
.ls12{letter-spacing:1.020000pt;}
.ls9{letter-spacing:1.093333pt;}
.ls18{letter-spacing:1.302667pt;}
.ls1{letter-spacing:1.356000pt;}
.ls19{letter-spacing:1.489333pt;}
.lsd{letter-spacing:1.516000pt;}
.ls1e{letter-spacing:1.808000pt;}
.ls8{letter-spacing:2.000000pt;}
.lsb{letter-spacing:2.106667pt;}
.ls11{letter-spacing:3.000000pt;}
.lse{letter-spacing:3.002667pt;}
.ls1c{letter-spacing:5.096000pt;}
.ls2{letter-spacing:7.000000pt;}
.lsc{letter-spacing:18.946667pt;}
.ls0{letter-spacing:19.000000pt;}
.ls1b{letter-spacing:41.069333pt;}
.ls3{letter-spacing:83.106667pt;}
.ls1a{letter-spacing:756.066667pt;}
.ws2{word-spacing:-19.000000pt;}
.wse{word-spacing:-18.808000pt;}
.ws4{word-spacing:-18.093333pt;}
.wsc{word-spacing:-18.020000pt;}
.ws1{word-spacing:-17.000000pt;}
.wsa{word-spacing:-16.226667pt;}
.wsd{word-spacing:-15.906667pt;}
.ws9{word-spacing:-15.645333pt;}
.ws6{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.093333pt;}
.ws5{word-spacing:-13.000000pt;}
.ws8{word-spacing:-12.544000pt;}
.ws7{word-spacing:-11.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:0.682533pt;}
._4e{margin-left:-9.682800pt;}
._3{margin-left:-7.004267pt;}
._f{margin-left:-5.290667pt;}
._6{margin-left:-4.270267pt;}
._2{margin-left:-2.969200pt;}
._0{margin-left:-1.598800pt;}
._1{width:1.294267pt;}
._5{width:2.258267pt;}
._4{width:3.722667pt;}
._c{width:5.234800pt;}
._14{width:6.125333pt;}
._9{width:7.273733pt;}
._1c{width:8.227600pt;}
._e{width:9.398267pt;}
._a{width:11.223200pt;}
._30{width:12.271067pt;}
._3d{width:13.502133pt;}
._1e{width:14.475200pt;}
._8{width:15.434000pt;}
._31{width:17.001733pt;}
._7{width:19.075733pt;}
._42{width:20.847867pt;}
._13{width:22.256667pt;}
._b{width:23.576267pt;}
._20{width:25.509600pt;}
._1d{width:26.982000pt;}
._17{width:28.687200pt;}
._1f{width:30.624133pt;}
._16{width:31.786267pt;}
._41{width:32.853733pt;}
._49{width:34.370267pt;}
._15{width:35.621733pt;}
._4a{width:36.800933pt;}
._d{width:39.076667pt;}
._1a{width:42.236667pt;}
._18{width:43.351333pt;}
._48{width:44.292800pt;}
._19{width:47.432533pt;}
._32{width:50.414667pt;}
._22{width:51.562667pt;}
._12{width:54.384133pt;}
._11{width:55.902667pt;}
._21{width:58.789867pt;}
._10{width:59.697200pt;}
._2a{width:62.841600pt;}
._28{width:64.091600pt;}
._4d{width:68.021467pt;}
._4c{width:70.571333pt;}
._4b{width:71.502667pt;}
._43{width:73.861733pt;}
._27{width:75.494800pt;}
._45{width:76.433867pt;}
._44{width:77.375467pt;}
._38{width:80.968400pt;}
._1b{width:83.268533pt;}
._3f{width:85.027600pt;}
._29{width:87.260933pt;}
._25{width:91.475600pt;}
._3c{width:97.211733pt;}
._47{width:101.012000pt;}
._35{width:105.707600pt;}
._2c{width:107.742400pt;}
._2e{width:114.657467pt;}
._2d{width:115.551467pt;}
._24{width:119.874133pt;}
._34{width:125.664667pt;}
._26{width:127.151733pt;}
._3e{width:133.905600pt;}
._2f{width:134.970667pt;}
._2b{width:154.644667pt;}
._3b{width:157.663600pt;}
._37{width:160.516667pt;}
._3a{width:169.444533pt;}
._39{width:172.218267pt;}
._40{width:174.001733pt;}
._33{width:177.299467pt;}
._23{width:202.800667pt;}
._36{width:229.634800pt;}
._46{width:269.524533pt;}
.fs6{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs5{font-size:68.000000pt;}
.fs0{font-size:76.133333pt;}
.fs2{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fs4{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:4.000000pt;}
.y31{bottom:5.000000pt;}
.y3e{bottom:5.040000pt;}
.y4e{bottom:6.000000pt;}
.y34{bottom:13.000000pt;}
.y2f{bottom:13.013333pt;}
.y5{bottom:13.033333pt;}
.y3a{bottom:14.000000pt;}
.y43{bottom:14.026667pt;}
.y40{bottom:14.040000pt;}
.y4f{bottom:15.000000pt;}
.y58{bottom:15.026667pt;}
.y60{bottom:15.040000pt;}
.y5d{bottom:16.040000pt;}
.y35{bottom:22.000000pt;}
.y30{bottom:22.040000pt;}
.y44{bottom:23.026667pt;}
.y3b{bottom:23.040000pt;}
.y55{bottom:24.000000pt;}
.y4d{bottom:25.000000pt;}
.y57{bottom:25.026667pt;}
.y53{bottom:25.040000pt;}
.y3{bottom:29.033333pt;}
.y33{bottom:31.000000pt;}
.y3f{bottom:31.040000pt;}
.y39{bottom:32.040000pt;}
.y51{bottom:34.040000pt;}
.y5c{bottom:35.040000pt;}
.y36{bottom:40.026667pt;}
.y3c{bottom:40.040000pt;}
.y52{bottom:44.040000pt;}
.y61{bottom:44.066667pt;}
.y5e{bottom:45.040000pt;}
.y42{bottom:49.066667pt;}
.y4{bottom:55.033333pt;}
.y45{bottom:58.066667pt;}
.y54{bottom:109.100000pt;}
.y2d{bottom:116.100000pt;}
.y8f{bottom:126.100000pt;}
.y7d{bottom:131.100000pt;}
.y2c{bottom:139.093333pt;}
.y8e{bottom:147.133333pt;}
.y50{bottom:153.133333pt;}
.y7c{bottom:154.133333pt;}
.y2b{bottom:162.133333pt;}
.y8d{bottom:167.133333pt;}
.y7b{bottom:177.173333pt;}
.y2a{bottom:185.173333pt;}
.y8c{bottom:187.173333pt;}
.y7a{bottom:200.173333pt;}
.y8b{bottom:207.173333pt;}
.y29{bottom:208.173333pt;}
.y4c{bottom:216.200000pt;}
.y79{bottom:223.200000pt;}
.y8a{bottom:227.200000pt;}
.y28{bottom:231.200000pt;}
.y78{bottom:246.200000pt;}
.y89{bottom:247.200000pt;}
.y27{bottom:254.226667pt;}
.y4b{bottom:265.240000pt;}
.y88{bottom:267.226667pt;}
.y77{bottom:269.226667pt;}
.y26{bottom:277.240000pt;}
.y87{bottom:287.226667pt;}
.y4a{bottom:288.266667pt;}
.y76{bottom:291.266667pt;}
.y25{bottom:299.266667pt;}
.y86{bottom:306.266667pt;}
.y49{bottom:311.266667pt;}
.y75{bottom:314.266667pt;}
.y24{bottom:322.266667pt;}
.y85{bottom:326.293333pt;}
.y48{bottom:334.306667pt;}
.y74{bottom:337.306667pt;}
.y23{bottom:345.293333pt;}
.y84{bottom:346.306667pt;}
.y47{bottom:357.293333pt;}
.y73{bottom:360.293333pt;}
.y83{bottom:366.333333pt;}
.y22{bottom:368.333333pt;}
.y46{bottom:377.333333pt;}
.y72{bottom:383.333333pt;}
.y82{bottom:386.333333pt;}
.y21{bottom:391.333333pt;}
.y41{bottom:393.333333pt;}
.y71{bottom:406.373333pt;}
.y20{bottom:414.373333pt;}
.y81{bottom:426.373333pt;}
.y70{bottom:429.373333pt;}
.y1f{bottom:437.400000pt;}
.y80{bottom:446.400000pt;}
.y6f{bottom:452.400000pt;}
.y1e{bottom:460.400000pt;}
.y7f{bottom:466.400000pt;}
.y3d{bottom:469.400000pt;}
.y6e{bottom:475.426667pt;}
.y1d{bottom:483.440000pt;}
.y7e{bottom:486.440000pt;}
.y6d{bottom:498.440000pt;}
.y1c{bottom:506.440000pt;}
.y6c{bottom:521.466667pt;}
.y38{bottom:527.466667pt;}
.y1b{bottom:529.466667pt;}
.y6b{bottom:544.466667pt;}
.y1a{bottom:552.506667pt;}
.y6a{bottom:567.506667pt;}
.y19{bottom:574.506667pt;}
.y32{bottom:586.533333pt;}
.y69{bottom:589.533333pt;}
.y18{bottom:597.533333pt;}
.y68{bottom:612.533333pt;}
.y17{bottom:620.533333pt;}
.y67{bottom:635.560000pt;}
.y16{bottom:643.560000pt;}
.y2e{bottom:644.560000pt;}
.y66{bottom:658.560000pt;}
.y15{bottom:666.600000pt;}
.y65{bottom:681.600000pt;}
.y14{bottom:689.600000pt;}
.y64{bottom:704.626667pt;}
.y13{bottom:712.626667pt;}
.y63{bottom:727.626667pt;}
.y12{bottom:735.666667pt;}
.y62{bottom:750.666667pt;}
.y11{bottom:758.666667pt;}
.y5f{bottom:769.666667pt;}
.y10{bottom:781.706667pt;}
.yf{bottom:804.706667pt;}
.ye{bottom:827.733333pt;}
.y5b{bottom:832.733333pt;}
.yd{bottom:850.773333pt;}
.yc{bottom:872.773333pt;}
.yb{bottom:895.800000pt;}
.y5a{bottom:896.800000pt;}
.ya{bottom:918.800000pt;}
.y9{bottom:941.840000pt;}
.y59{bottom:959.866667pt;}
.y8{bottom:964.866667pt;}
.y56{bottom:984.866667pt;}
.y7{bottom:987.866667pt;}
.y6{bottom:1010.893333pt;}
.y2{bottom:1068.960000pt;}
.y1{bottom:1086.960000pt;}
.h16{height:20.000000pt;}
.hc{height:35.033333pt;}
.h5{height:36.033333pt;}
.h15{height:38.033333pt;}
.h12{height:39.033333pt;}
.h17{height:41.894531pt;}
.hb{height:47.480469pt;}
.h9{height:49.705078pt;}
.hf{height:51.035156pt;}
.hd{height:52.406250pt;}
.he{height:53.033333pt;}
.h10{height:53.066667pt;}
.h13{height:58.033333pt;}
.h19{height:58.066667pt;}
.h14{height:58.886719pt;}
.h18{height:59.066667pt;}
.h3{height:60.468750pt;}
.h8{height:66.705078pt;}
.ha{height:66.738281pt;}
.h7{height:68.531250pt;}
.h1a{height:69.893285pt;}
.h11{height:71.066667pt;}
.h2{height:76.728125pt;}
.h4{height:84.790625pt;}
.h6{height:107.987370pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w3{width:54.066667pt;}
.w2{width:67.100000pt;}
.w4{width:82.100000pt;}
.w8{width:97.100000pt;}
.w7{width:144.200000pt;}
.w6{width:153.200000pt;}
.w5{width:158.200000pt;}
.w9{width:167.200000pt;}
.wa{width:171.226667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x3{left:-1.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.000000pt;}
.xd{left:20.040000pt;}
.xa{left:95.133333pt;}
.x1{left:96.133322pt;}
.x9{left:115.133322pt;}
.x4{left:131.166655pt;}
.xc{left:152.200000pt;}
.x11{left:196.240000pt;}
.xe{left:238.306667pt;}
.x8{left:257.333322pt;}
.x6{left:276.359988pt;}
.x7{left:285.359988pt;}
.x12{left:357.466667pt;}
.xf{left:399.506667pt;}
.x5{left:406.506655pt;}
.x13{left:528.666667pt;}
.x10{left:555.693333pt;}
.x2{left:712.893333pt;}
}




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