
    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_cfe2dbb87ca72bd38951646b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.694336;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_c524712b494d9c9ff021d82a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.753418;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_274743af0f5e65d860868b81.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f93eecc571286430b314867.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.060059;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_292ddd8ac34d9296a6092490.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933105;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_f1c2b57450a45b2b64ed5266.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_b238afdbeefa1143f06458ef.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.753906;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_b047f993517075caedc8b6a9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0c14cfbe89645b66013f8c2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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:ffa;src:url('chunks/assets/font_4e75f10bda3c39655786053e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_08275554a79ff88a077315f8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1f7afe7190d526e116215e7b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e3d7ac4cefb099942ce8a88b.woff2')format("woff");}.ffe{font-family:ffe;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.420600px;}
.ls8{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.078000px;}
.ls7{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.504000px;}
.ls0{letter-spacing:1.560000px;}
.ls5{letter-spacing:33.264000px;}
.lsa{letter-spacing:33.276000px;}
.ls4{letter-spacing:63.826560px;}
.ls3{letter-spacing:63.838560px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(148,54,52),0 0.015em rgb(148,54,52),0.015em 0 rgb(148,54,52),0 -0.015em  rgb(148,54,52);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(148,54,52);text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws3{word-spacing:-72.000000px;}
.ws7{word-spacing:-60.480000px;}
.ws6{word-spacing:-23.549640px;}
.ws0{word-spacing:-19.010880px;}
.ws8{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws2{word-spacing:-14.650800px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-4.210560px;}
._9{margin-left:-3.058560px;}
._2{margin-left:-1.722240px;}
._0{width:1.031040px;}
._1{width:2.589120px;}
._8{width:3.646080px;}
._6{width:4.896000px;}
._7{width:6.900480px;}
._3e{width:8.112960px;}
._1d{width:9.216960px;}
._f{width:10.550400px;}
._e{width:11.802240px;}
._10{width:13.003200px;}
._22{width:14.618400px;}
._21{width:15.831360px;}
._44{width:16.908480px;}
._14{width:19.512000px;}
._13{width:21.542400px;}
._b{width:22.910400px;}
._c{width:24.387840px;}
._d{width:25.430400px;}
._28{width:27.172800px;}
._2b{width:28.189440px;}
._1c{width:29.891520px;}
._1b{width:31.363200px;}
._a{width:33.085440px;}
._4{width:34.488000px;}
._5{width:35.496000px;}
._27{width:37.028160px;}
._26{width:38.802240px;}
._29{width:40.415040px;}
._1a{width:41.523840px;}
._11{width:43.344000px;}
._12{width:44.622720px;}
._1e{width:45.872640px;}
._49{width:47.105280px;}
._41{width:48.970080px;}
._1f{width:50.411520px;}
._20{width:51.696000px;}
._3f{width:53.089920px;}
._17{width:54.731520px;}
._15{width:56.315520px;}
._16{width:57.516480px;}
._3b{width:59.057760px;}
._51{width:60.586560px;}
._34{width:61.879680px;}
._35{width:69.272640px;}
._4f{width:70.496640px;}
._50{width:72.056640px;}
._2f{width:73.325760px;}
._2e{width:74.606400px;}
._42{width:76.461120px;}
._52{width:77.538240px;}
._2a{width:79.801920px;}
._23{width:81.043200px;}
._24{width:82.232640px;}
._43{width:83.894400px;}
._4d{width:85.141440px;}
._4e{width:86.149440px;}
._37{width:87.307200px;}
._48{width:89.101440px;}
._30{width:90.662400px;}
._19{width:97.914240px;}
._18{width:99.014400px;}
._4a{width:104.281920px;}
._31{width:106.715520px;}
._32{width:107.827200px;}
._33{width:109.267200px;}
._59{width:110.750400px;}
._55{width:112.383360px;}
._57{width:113.794560px;}
._58{width:115.104960px;}
._45{width:116.265600px;}
._39{width:125.997120px;}
._53{width:128.016000px;}
._38{width:129.634560px;}
._47{width:130.668960px;}
._54{width:132.004800px;}
._46{width:133.807680px;}
._40{width:141.079680px;}
._36{width:147.035520px;}
._56{width:149.719680px;}
._3d{width:150.984000px;}
._3c{width:152.058240px;}
._4c{width:182.712960px;}
._4b{width:183.738240px;}
._2c{width:190.837920px;}
._2d{width:197.745600px;}
._25{width:210.418560px;}
._3a{width:397.178400px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(148,54,52);}
.fs5{font-size:18.720000px;}
.fs7{font-size:24.480000px;}
.fs8{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs6{font-size:80.640000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:88.036930px;}
.y0{bottom:0.000000px;}
.yd{bottom:1.080000px;}
.y1a{bottom:1.425000px;}
.y11{bottom:1.800000px;}
.y4{bottom:3.600000px;}
.y18{bottom:3.945000px;}
.y9{bottom:6.840000px;}
.yb{bottom:7.560000px;}
.y7{bottom:8.280000px;}
.y75{bottom:10.080000px;}
.y7f{bottom:10.800000px;}
.y86{bottom:14.025000px;}
.y78{bottom:14.040000px;}
.y84{bottom:14.385000px;}
.y7a{bottom:14.400000px;}
.y82{bottom:14.415000px;}
.y7c{bottom:14.805000px;}
.yf{bottom:22.005000px;}
.y76{bottom:23.760000px;}
.y7d{bottom:24.120000px;}
.y17{bottom:26.265000px;}
.y6{bottom:33.150000px;}
.y74{bottom:37.110000px;}
.y7e{bottom:37.800000px;}
.y16{bottom:48.255000px;}
.y2{bottom:58.320000px;}
.y15{bottom:72.015000px;}
.y3d{bottom:84.636000px;}
.y1{bottom:85.716000px;}
.y14{bottom:95.775000px;}
.y3a{bottom:117.036000px;}
.y13{bottom:122.415000px;}
.y69{bottom:127.836000px;}
.y38{bottom:144.036000px;}
.y8a{bottom:149.076000px;}
.y68{bottom:154.110000px;}
.y62{bottom:154.470000px;}
.y37{bottom:171.030000px;}
.y89{bottom:176.070000px;}
.y67{bottom:181.110000px;}
.y61{bottom:181.470000px;}
.y36{bottom:198.030000px;}
.y88{bottom:202.755000px;}
.y8b{bottom:203.115000px;}
.y60{bottom:208.515000px;}
.y35{bottom:224.715000px;}
.y87{bottom:229.755000px;}
.y5f{bottom:235.155000px;}
.y85{bottom:247.050000px;}
.y34{bottom:251.715000px;}
.y5e{bottom:261.795000px;}
.y66{bottom:262.155000px;}
.y33{bottom:278.715000px;}
.y83{bottom:281.610000px;}
.y5d{bottom:288.795000px;}
.y65{bottom:289.155000px;}
.y32{bottom:305.715000px;}
.y5c{bottom:316.155000px;}
.y81{bottom:316.530000px;}
.y31{bottom:332.385000px;}
.y8e{bottom:342.465000px;}
.y5b{bottom:342.825000px;}
.y80{bottom:351.465000px;}
.y30{bottom:359.385000px;}
.y5a{bottom:369.825000px;}
.y2f{bottom:386.385000px;}
.y59{bottom:396.825000px;}
.y2e{bottom:413.385000px;}
.y58{bottom:423.825000px;}
.y2d{bottom:440.025000px;}
.y7b{bottom:441.105000px;}
.y57{bottom:450.465000px;}
.y2c{bottom:467.070000px;}
.y79{bottom:477.150000px;}
.y56{bottom:477.510000px;}
.y2b{bottom:494.070000px;}
.y90{bottom:504.150000px;}
.y55{bottom:504.510000px;}
.y77{bottom:512.070000px;}
.y2a{bottom:521.070000px;}
.y54{bottom:531.510000px;}
.y73{bottom:546.990000px;}
.y29{bottom:547.350000px;}
.y39{bottom:547.710000px;}
.y53{bottom:558.150000px;}
.y28{bottom:574.710000px;}
.y52{bottom:585.180000px;}
.y27{bottom:600.660000px;}
.y51{bottom:611.820000px;}
.y8d{bottom:612.180000px;}
.y26{bottom:624.780000px;}
.y50{bottom:638.820000px;}
.y8c{bottom:639.180000px;}
.y25{bottom:648.540000px;}
.y4f{bottom:665.820000px;}
.y24{bottom:672.300000px;}
.y6d{bottom:692.460000px;}
.y4e{bottom:692.820000px;}
.y23{bottom:696.060000px;}
.y6c{bottom:719.490000px;}
.y22{bottom:719.850000px;}
.y21{bottom:743.610000px;}
.y6b{bottom:746.490000px;}
.y4d{bottom:746.850000px;}
.y20{bottom:767.370000px;}
.y4c{bottom:773.490000px;}
.y1f{bottom:791.130000px;}
.y72{bottom:800.130000px;}
.y4b{bottom:800.490000px;}
.y1e{bottom:814.890000px;}
.y4a{bottom:827.535000px;}
.y1d{bottom:839.055000px;}
.y8f{bottom:854.175000px;}
.y49{bottom:854.535000px;}
.y1c{bottom:862.815000px;}
.y64{bottom:880.815000px;}
.y48{bottom:881.175000px;}
.y1b{bottom:886.215000px;}
.y19{bottom:902.790000px;}
.y63{bottom:907.815000px;}
.y47{bottom:908.175000px;}
.y12{bottom:909.990000px;}
.y71{bottom:934.815000px;}
.y46{bottom:935.175000px;}
.y45{bottom:962.205000px;}
.y6a{bottom:988.485000px;}
.y44{bottom:988.845000px;}
.y43{bottom:1015.845000px;}
.y42{bottom:1042.845000px;}
.y10{bottom:1048.965000px;}
.ye{bottom:1055.085000px;}
.y70{bottom:1069.485000px;}
.y41{bottom:1069.845000px;}
.yc{bottom:1096.170000px;}
.y40{bottom:1096.530000px;}
.ya{bottom:1101.570000px;}
.y6f{bottom:1123.170000px;}
.y3f{bottom:1123.530000px;}
.y3{bottom:1126.050000px;}
.y8{bottom:1148.370000px;}
.y6e{bottom:1150.170000px;}
.y3e{bottom:1150.530000px;}
.y3c{bottom:1170.330000px;}
.y5{bottom:1176.450000px;}
.y3b{bottom:1189.050000px;}
.hd{height:5.385000px;}
.h11{height:6.105000px;}
.h17{height:7.185000px;}
.he{height:13.857187px;}
.h18{height:18.120938px;}
.h12{height:19.584000px;}
.h9{height:22.305000px;}
.hb{height:24.465000px;}
.h8{height:28.065000px;}
.h1e{height:33.825000px;}
.h1f{height:34.185000px;}
.h22{height:34.200000px;}
.h20{height:35.310000px;}
.hf{height:41.070000px;}
.h1a{height:50.273438px;}
.h1b{height:51.207188px;}
.h6{height:52.950000px;}
.h1d{height:53.670000px;}
.h21{height:53.985000px;}
.ha{height:56.084062px;}
.h16{height:59.328281px;}
.h2{height:60.181495px;}
.hc{height:60.960938px;}
.h3{height:61.742812px;}
.h15{height:70.628906px;}
.h19{height:70.664062px;}
.h7{height:70.714687px;}
.h14{height:72.562500px;}
.h1c{height:74.004654px;}
.h5{height:76.317188px;}
.h10{height:81.270000px;}
.h4{height:103.350000px;}
.h13{height:138.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:41.422500px;}
.wc{width:44.625000px;}
.wb{width:45.720000px;}
.wd{width:46.470000px;}
.we{width:51.465000px;}
.wa{width:52.905000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w9{width:454.837500px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.266500px;}
.x20{left:9.346500px;}
.x6{left:11.145000px;}
.x2a{left:13.695000px;}
.x24{left:15.105000px;}
.x26{left:16.215000px;}
.x14{left:18.346500px;}
.x2b{left:21.240000px;}
.x12{left:24.862500px;}
.x10{left:26.280000px;}
.xb{left:33.840000px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x3{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:91.095000px;}
.xd{left:96.150000px;}
.x1f{left:100.489500px;}
.x1{left:108.036000px;}
.x4{left:110.185500px;}
.x1c{left:135.072000px;}
.x21{left:142.654500px;}
.x16{left:144.415500px;}
.x1e{left:148.032000px;}
.x19{left:162.075000px;}
.x5{left:168.930000px;}
.x22{left:188.335500px;}
.x13{left:192.295500px;}
.x7{left:208.860000px;}
.x17{left:214.300500px;}
.x15{left:236.980500px;}
.x11{left:335.650500px;}
.xa{left:445.860000px;}
.x1a{left:473.580000px;}
.x2c{left:489.090000px;}
.x1d{left:500.610000px;}
.x2d{left:516.090000px;}
.x1b{left:527.610000px;}
.x23{left:598.230000px;}
.x25{left:651.870000px;}
.x27{left:698.325000px;}
.x8{left:722.445000px;}
.x28{left:743.685000px;}
.x2{left:749.445000px;}
.x29{left:790.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.373867pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.069333pt;}
.ls7{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls0{letter-spacing:1.386667pt;}
.ls5{letter-spacing:29.568000pt;}
.lsa{letter-spacing:29.578667pt;}
.ls4{letter-spacing:56.734720pt;}
.ls3{letter-spacing:56.745387pt;}
.ws1{word-spacing:-74.240000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.760000pt;}
.ws6{word-spacing:-20.933013pt;}
.ws0{word-spacing:-16.898560pt;}
.ws8{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws2{word-spacing:-13.022933pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-3.742720pt;}
._9{margin-left:-2.718720pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.916480pt;}
._1{width:2.301440pt;}
._8{width:3.240960pt;}
._6{width:4.352000pt;}
._7{width:6.133760pt;}
._3e{width:7.211520pt;}
._1d{width:8.192853pt;}
._f{width:9.378133pt;}
._e{width:10.490880pt;}
._10{width:11.558400pt;}
._22{width:12.994133pt;}
._21{width:14.072320pt;}
._44{width:15.029760pt;}
._14{width:17.344000pt;}
._13{width:19.148800pt;}
._b{width:20.364800pt;}
._c{width:21.678080pt;}
._d{width:22.604800pt;}
._28{width:24.153600pt;}
._2b{width:25.057280pt;}
._1c{width:26.570240pt;}
._1b{width:27.878400pt;}
._a{width:29.409280pt;}
._4{width:30.656000pt;}
._5{width:31.552000pt;}
._27{width:32.913920pt;}
._26{width:34.490880pt;}
._29{width:35.924480pt;}
._1a{width:36.910080pt;}
._11{width:38.528000pt;}
._12{width:39.664640pt;}
._1e{width:40.775680pt;}
._49{width:41.871360pt;}
._41{width:43.528960pt;}
._1f{width:44.810240pt;}
._20{width:45.952000pt;}
._3f{width:47.191040pt;}
._17{width:48.650240pt;}
._15{width:50.058240pt;}
._16{width:51.125760pt;}
._3b{width:52.495787pt;}
._51{width:53.854720pt;}
._34{width:55.004160pt;}
._35{width:61.575680pt;}
._4f{width:62.663680pt;}
._50{width:64.050347pt;}
._2f{width:65.178453pt;}
._2e{width:66.316800pt;}
._42{width:67.965440pt;}
._52{width:68.922880pt;}
._2a{width:70.935040pt;}
._23{width:72.038400pt;}
._24{width:73.095680pt;}
._43{width:74.572800pt;}
._4d{width:75.681280pt;}
._4e{width:76.577280pt;}
._37{width:77.606400pt;}
._48{width:79.201280pt;}
._30{width:80.588800pt;}
._19{width:87.034880pt;}
._18{width:88.012800pt;}
._4a{width:92.695040pt;}
._31{width:94.858240pt;}
._32{width:95.846400pt;}
._33{width:97.126400pt;}
._59{width:98.444800pt;}
._55{width:99.896320pt;}
._57{width:101.150720pt;}
._58{width:102.315520pt;}
._45{width:103.347200pt;}
._39{width:111.997440pt;}
._53{width:113.792000pt;}
._38{width:115.230720pt;}
._47{width:116.150187pt;}
._54{width:117.337600pt;}
._46{width:118.940160pt;}
._40{width:125.404160pt;}
._36{width:130.698240pt;}
._56{width:133.084160pt;}
._3d{width:134.208000pt;}
._3c{width:135.162880pt;}
._4c{width:162.411520pt;}
._4b{width:163.322880pt;}
._2c{width:169.633707pt;}
._2d{width:175.773867pt;}
._25{width:187.038720pt;}
._3a{width:353.047467pt;}
.fs5{font-size:16.640000pt;}
.fs7{font-size:21.760000pt;}
.fs8{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs6{font-size:71.680000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:78.255049pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:0.960000pt;}
.y1a{bottom:1.266667pt;}
.y11{bottom:1.600000pt;}
.y4{bottom:3.200000pt;}
.y18{bottom:3.506667pt;}
.y9{bottom:6.080000pt;}
.yb{bottom:6.720000pt;}
.y7{bottom:7.360000pt;}
.y75{bottom:8.960000pt;}
.y7f{bottom:9.600000pt;}
.y86{bottom:12.466667pt;}
.y78{bottom:12.480000pt;}
.y84{bottom:12.786667pt;}
.y7a{bottom:12.800000pt;}
.y82{bottom:12.813333pt;}
.y7c{bottom:13.160000pt;}
.yf{bottom:19.560000pt;}
.y76{bottom:21.120000pt;}
.y7d{bottom:21.440000pt;}
.y17{bottom:23.346667pt;}
.y6{bottom:29.466667pt;}
.y74{bottom:32.986667pt;}
.y7e{bottom:33.600000pt;}
.y16{bottom:42.893333pt;}
.y2{bottom:51.840000pt;}
.y15{bottom:64.013333pt;}
.y3d{bottom:75.232000pt;}
.y1{bottom:76.192000pt;}
.y14{bottom:85.133333pt;}
.y3a{bottom:104.032000pt;}
.y13{bottom:108.813333pt;}
.y69{bottom:113.632000pt;}
.y38{bottom:128.032000pt;}
.y8a{bottom:132.512000pt;}
.y68{bottom:136.986667pt;}
.y62{bottom:137.306667pt;}
.y37{bottom:152.026667pt;}
.y89{bottom:156.506667pt;}
.y67{bottom:160.986667pt;}
.y61{bottom:161.306667pt;}
.y36{bottom:176.026667pt;}
.y88{bottom:180.226667pt;}
.y8b{bottom:180.546667pt;}
.y60{bottom:185.346667pt;}
.y35{bottom:199.746667pt;}
.y87{bottom:204.226667pt;}
.y5f{bottom:209.026667pt;}
.y85{bottom:219.600000pt;}
.y34{bottom:223.746667pt;}
.y5e{bottom:232.706667pt;}
.y66{bottom:233.026667pt;}
.y33{bottom:247.746667pt;}
.y83{bottom:250.320000pt;}
.y5d{bottom:256.706667pt;}
.y65{bottom:257.026667pt;}
.y32{bottom:271.746667pt;}
.y5c{bottom:281.026667pt;}
.y81{bottom:281.360000pt;}
.y31{bottom:295.453333pt;}
.y8e{bottom:304.413333pt;}
.y5b{bottom:304.733333pt;}
.y80{bottom:312.413333pt;}
.y30{bottom:319.453333pt;}
.y5a{bottom:328.733333pt;}
.y2f{bottom:343.453333pt;}
.y59{bottom:352.733333pt;}
.y2e{bottom:367.453333pt;}
.y58{bottom:376.733333pt;}
.y2d{bottom:391.133333pt;}
.y7b{bottom:392.093333pt;}
.y57{bottom:400.413333pt;}
.y2c{bottom:415.173333pt;}
.y79{bottom:424.133333pt;}
.y56{bottom:424.453333pt;}
.y2b{bottom:439.173333pt;}
.y90{bottom:448.133333pt;}
.y55{bottom:448.453333pt;}
.y77{bottom:455.173333pt;}
.y2a{bottom:463.173333pt;}
.y54{bottom:472.453333pt;}
.y73{bottom:486.213333pt;}
.y29{bottom:486.533333pt;}
.y39{bottom:486.853333pt;}
.y53{bottom:496.133333pt;}
.y28{bottom:510.853333pt;}
.y52{bottom:520.160000pt;}
.y27{bottom:533.920000pt;}
.y51{bottom:543.840000pt;}
.y8d{bottom:544.160000pt;}
.y26{bottom:555.360000pt;}
.y50{bottom:567.840000pt;}
.y8c{bottom:568.160000pt;}
.y25{bottom:576.480000pt;}
.y4f{bottom:591.840000pt;}
.y24{bottom:597.600000pt;}
.y6d{bottom:615.520000pt;}
.y4e{bottom:615.840000pt;}
.y23{bottom:618.720000pt;}
.y6c{bottom:639.546667pt;}
.y22{bottom:639.866667pt;}
.y21{bottom:660.986667pt;}
.y6b{bottom:663.546667pt;}
.y4d{bottom:663.866667pt;}
.y20{bottom:682.106667pt;}
.y4c{bottom:687.546667pt;}
.y1f{bottom:703.226667pt;}
.y72{bottom:711.226667pt;}
.y4b{bottom:711.546667pt;}
.y1e{bottom:724.346667pt;}
.y4a{bottom:735.586667pt;}
.y1d{bottom:745.826667pt;}
.y8f{bottom:759.266667pt;}
.y49{bottom:759.586667pt;}
.y1c{bottom:766.946667pt;}
.y64{bottom:782.946667pt;}
.y48{bottom:783.266667pt;}
.y1b{bottom:787.746667pt;}
.y19{bottom:802.480000pt;}
.y63{bottom:806.946667pt;}
.y47{bottom:807.266667pt;}
.y12{bottom:808.880000pt;}
.y71{bottom:830.946667pt;}
.y46{bottom:831.266667pt;}
.y45{bottom:855.293333pt;}
.y6a{bottom:878.653333pt;}
.y44{bottom:878.973333pt;}
.y43{bottom:902.973333pt;}
.y42{bottom:926.973333pt;}
.y10{bottom:932.413333pt;}
.ye{bottom:937.853333pt;}
.y70{bottom:950.653333pt;}
.y41{bottom:950.973333pt;}
.yc{bottom:974.373333pt;}
.y40{bottom:974.693333pt;}
.ya{bottom:979.173333pt;}
.y6f{bottom:998.373333pt;}
.y3f{bottom:998.693333pt;}
.y3{bottom:1000.933333pt;}
.y8{bottom:1020.773333pt;}
.y6e{bottom:1022.373333pt;}
.y3e{bottom:1022.693333pt;}
.y3c{bottom:1040.293333pt;}
.y5{bottom:1045.733333pt;}
.y3b{bottom:1056.933333pt;}
.hd{height:4.786667pt;}
.h11{height:5.426667pt;}
.h17{height:6.386667pt;}
.he{height:12.317500pt;}
.h18{height:16.107500pt;}
.h12{height:17.408000pt;}
.h9{height:19.826667pt;}
.hb{height:21.746667pt;}
.h8{height:24.946667pt;}
.h1e{height:30.066667pt;}
.h1f{height:30.386667pt;}
.h22{height:30.400000pt;}
.h20{height:31.386667pt;}
.hf{height:36.506667pt;}
.h1a{height:44.687500pt;}
.h1b{height:45.517500pt;}
.h6{height:47.066667pt;}
.h1d{height:47.706667pt;}
.h21{height:47.986667pt;}
.ha{height:49.852500pt;}
.h16{height:52.736250pt;}
.h2{height:53.494662pt;}
.hc{height:54.187500pt;}
.h3{height:54.882500pt;}
.h15{height:62.781250pt;}
.h19{height:62.812500pt;}
.h7{height:62.857500pt;}
.h14{height:64.500000pt;}
.h1c{height:65.781915pt;}
.h5{height:67.837500pt;}
.h10{height:72.240000pt;}
.h4{height:91.866667pt;}
.h13{height:123.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:36.820000pt;}
.wc{width:39.666667pt;}
.wb{width:40.640000pt;}
.wd{width:41.306667pt;}
.we{width:45.746667pt;}
.wa{width:47.026667pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w9{width:404.300000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.348000pt;}
.x20{left:8.308000pt;}
.x6{left:9.906667pt;}
.x2a{left:12.173333pt;}
.x24{left:13.426667pt;}
.x26{left:14.413333pt;}
.x14{left:16.308000pt;}
.x2b{left:18.880000pt;}
.x12{left:22.100000pt;}
.x10{left:23.360000pt;}
.xb{left:30.080000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x3{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:80.973333pt;}
.xd{left:85.466667pt;}
.x1f{left:89.324000pt;}
.x1{left:96.032000pt;}
.x4{left:97.942667pt;}
.x1c{left:120.064000pt;}
.x21{left:126.804000pt;}
.x16{left:128.369333pt;}
.x1e{left:131.584000pt;}
.x19{left:144.066667pt;}
.x5{left:150.160000pt;}
.x22{left:167.409333pt;}
.x13{left:170.929333pt;}
.x7{left:185.653333pt;}
.x17{left:190.489333pt;}
.x15{left:210.649333pt;}
.x11{left:298.356000pt;}
.xa{left:396.320000pt;}
.x1a{left:420.960000pt;}
.x2c{left:434.746667pt;}
.x1d{left:444.986667pt;}
.x2d{left:458.746667pt;}
.x1b{left:468.986667pt;}
.x23{left:531.760000pt;}
.x25{left:579.440000pt;}
.x27{left:620.733333pt;}
.x8{left:642.173333pt;}
.x28{left:661.053333pt;}
.x2{left:666.173333pt;}
.x29{left:703.013333pt;}
}




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