
    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_09fe5e48dc359e9ce7b026a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_2735d3f699f2520d484fb915.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_037118ad777fe3cd0ef78213.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_45bc3d3673d8fdf3dc911291.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717285;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_e1a5271aeae46af8d689a9f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.737305;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_709daeae876f4aa8531cb718.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.675781;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-5.299200px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014400px;}
.ls1{letter-spacing:1.540800px;}
.ls2{letter-spacing:1.800000px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.500000px;}
.ws2{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-8.610000px;}
._1d{margin-left:-7.170000px;}
._b{margin-left:-5.934000px;}
._1{margin-left:-4.722000px;}
._9{margin-left:-3.330000px;}
._6{margin-left:-2.244000px;}
._0{margin-left:-1.080000px;}
._4{width:1.716000px;}
._8{width:2.772000px;}
._5{width:4.158000px;}
._2{width:5.874000px;}
._3{width:6.954000px;}
._7{width:8.118000px;}
._1b{width:9.120000px;}
._12{width:10.122000px;}
._f{width:11.664000px;}
._c{width:13.464000px;}
._e{width:14.760000px;}
._11{width:16.488000px;}
._10{width:19.338000px;}
._13{width:20.694000px;}
._d{width:21.744000px;}
._16{width:23.184000px;}
._18{width:24.480000px;}
._14{width:25.992000px;}
._19{width:27.720000px;}
._1c{width:29.520000px;}
._15{width:30.816000px;}
._17{width:35.640000px;}
._1a{width:39.456000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:8.639100px;}
.ye1{bottom:19.809000px;}
.yfd{bottom:19.857000px;}
.y6e{bottom:19.863000px;}
.y11a{bottom:19.875000px;}
.y5c{bottom:19.881000px;}
.y51{bottom:19.899000px;}
.yb2{bottom:38.764500px;}
.y10f{bottom:41.728500px;}
.y94{bottom:41.764500px;}
.ycc{bottom:41.770500px;}
.ye0{bottom:54.315000px;}
.yfc{bottom:54.363000px;}
.y6d{bottom:54.369000px;}
.y119{bottom:54.381000px;}
.y5b{bottom:54.387000px;}
.y47{bottom:54.405000px;}
.y28{bottom:59.280000px;}
.y2a{bottom:71.679000px;}
.yb1{bottom:71.758500px;}
.y27{bottom:74.002500px;}
.y10e{bottom:74.722500px;}
.y93{bottom:74.758500px;}
.ycb{bottom:74.764500px;}
.y7b{bottom:84.295500px;}
.yd{bottom:85.039500px;}
.ydf{bottom:87.309000px;}
.yfb{bottom:87.357000px;}
.y6c{bottom:87.363000px;}
.y5a{bottom:87.381000px;}
.y46{bottom:87.399000px;}
.yb0{bottom:104.752500px;}
.y26{bottom:106.996500px;}
.y92{bottom:107.752500px;}
.yca{bottom:107.758500px;}
.yde{bottom:120.303000px;}
.y6b{bottom:120.357000px;}
.y95{bottom:120.375000px;}
.y118{bottom:120.387000px;}
.y45{bottom:120.393000px;}
.yc{bottom:136.308000px;}
.yaf{bottom:139.258500px;}
.y25{bottom:139.990500px;}
.y10d{bottom:140.728500px;}
.yc9{bottom:140.752500px;}
.y96{bottom:153.351000px;}
.yfa{bottom:153.363000px;}
.y7a{bottom:153.369000px;}
.y117{bottom:153.381000px;}
.y44{bottom:153.387000px;}
.yb{bottom:155.811000px;}
.yae{bottom:172.252500px;}
.y24{bottom:174.496500px;}
.y10c{bottom:175.234500px;}
.y91{bottom:175.252500px;}
.y120{bottom:175.258500px;}
.ydd{bottom:187.803000px;}
.y6a{bottom:187.857000px;}
.yf9{bottom:187.869000px;}
.y79{bottom:187.875000px;}
.y116{bottom:187.887000px;}
.y43{bottom:187.893000px;}
.ya{bottom:194.817000px;}
.yad{bottom:205.246500px;}
.y23{bottom:207.490500px;}
.y90{bottom:208.246500px;}
.yc8{bottom:208.252500px;}
.y9{bottom:214.320000px;}
.ydc{bottom:220.797000px;}
.y69{bottom:220.851000px;}
.yf8{bottom:220.863000px;}
.y78{bottom:220.869000px;}
.y115{bottom:220.881000px;}
.y42{bottom:220.887000px;}
.y8{bottom:233.823000px;}
.y22{bottom:240.484500px;}
.y10b{bottom:241.240500px;}
.yc7{bottom:241.246500px;}
.y11f{bottom:241.264500px;}
.y7{bottom:253.326000px;}
.y68{bottom:253.845000px;}
.yf7{bottom:253.857000px;}
.y77{bottom:253.863000px;}
.y114{bottom:253.875000px;}
.y41{bottom:253.881000px;}
.yac{bottom:256.240500px;}
.y6{bottom:272.829000px;}
.y21{bottom:273.478500px;}
.y10a{bottom:274.234500px;}
.yc6{bottom:274.240500px;}
.y8f{bottom:274.252500px;}
.y11e{bottom:274.258500px;}
.ydb{bottom:286.803000px;}
.y67{bottom:286.839000px;}
.yf6{bottom:286.851000px;}
.y76{bottom:286.857000px;}
.y40{bottom:286.875000px;}
.yab{bottom:290.746500px;}
.y5{bottom:292.332000px;}
.y20{bottom:307.984500px;}
.y109{bottom:308.740500px;}
.yc5{bottom:308.746500px;}
.y8e{bottom:308.758500px;}
.y11d{bottom:308.764500px;}
.y4{bottom:311.835000px;}
.yda{bottom:321.309000px;}
.y66{bottom:321.345000px;}
.yf5{bottom:321.357000px;}
.y75{bottom:321.363000px;}
.y113{bottom:321.375000px;}
.y3f{bottom:321.381000px;}
.yaa{bottom:323.740500px;}
.y1f{bottom:340.978500px;}
.y108{bottom:341.734500px;}
.y122{bottom:341.740500px;}
.y8d{bottom:341.752500px;}
.y11c{bottom:341.758500px;}
.yd9{bottom:354.303000px;}
.y65{bottom:354.339000px;}
.yf4{bottom:354.351000px;}
.y74{bottom:354.357000px;}
.y112{bottom:354.369000px;}
.y3e{bottom:354.375000px;}
.ya9{bottom:356.734500px;}
.y121{bottom:374.734500px;}
.yc4{bottom:374.752500px;}
.y64{bottom:387.333000px;}
.y73{bottom:387.351000px;}
.y111{bottom:387.363000px;}
.y3d{bottom:387.369000px;}
.y59{bottom:387.387000px;}
.y1e{bottom:406.984500px;}
.ya8{bottom:407.728500px;}
.y107{bottom:407.740500px;}
.yc3{bottom:407.746500px;}
.y8c{bottom:407.758500px;}
.yd8{bottom:420.309000px;}
.y72{bottom:420.345000px;}
.yf3{bottom:420.357000px;}
.y3c{bottom:420.363000px;}
.y58{bottom:420.381000px;}
.y1d{bottom:441.490500px;}
.ya7{bottom:442.234500px;}
.y106{bottom:442.246500px;}
.yc2{bottom:442.252500px;}
.y8b{bottom:442.264500px;}
.yd7{bottom:454.815000px;}
.y63{bottom:454.833000px;}
.y71{bottom:454.851000px;}
.yf2{bottom:454.863000px;}
.y50{bottom:454.869000px;}
.y57{bottom:454.887000px;}
.y3{bottom:470.835000px;}
.y1c{bottom:474.484500px;}
.ya6{bottom:475.228500px;}
.y105{bottom:475.240500px;}
.yc1{bottom:475.246500px;}
.y8a{bottom:475.258500px;}
.y62{bottom:487.827000px;}
.y70{bottom:487.845000px;}
.yf1{bottom:487.857000px;}
.y3b{bottom:487.863000px;}
.y56{bottom:487.881000px;}
.y2{bottom:506.836500px;}
.y1b{bottom:507.478500px;}
.ya5{bottom:508.222500px;}
.y104{bottom:508.234500px;}
.yc0{bottom:508.240500px;}
.y89{bottom:508.252500px;}
.yd6{bottom:520.821000px;}
.y6f{bottom:520.839000px;}
.yf0{bottom:520.851000px;}
.y3a{bottom:520.857000px;}
.y55{bottom:520.875000px;}
.y1{bottom:538.335000px;}
.y1a{bottom:540.472500px;}
.y103{bottom:541.228500px;}
.y11b{bottom:541.234500px;}
.yd5{bottom:553.815000px;}
.y61{bottom:553.833000px;}
.yef{bottom:553.845000px;}
.y39{bottom:553.851000px;}
.y54{bottom:553.869000px;}
.ya4{bottom:575.722500px;}
.y102{bottom:575.734500px;}
.ybf{bottom:575.740500px;}
.y88{bottom:575.752500px;}
.yd4{bottom:588.321000px;}
.y60{bottom:588.339000px;}
.yee{bottom:588.351000px;}
.y38{bottom:588.357000px;}
.y53{bottom:588.375000px;}
.y19{bottom:607.972500px;}
.ya3{bottom:608.716500px;}
.y101{bottom:608.728500px;}
.ybe{bottom:608.734500px;}
.y87{bottom:608.746500px;}
.yd3{bottom:621.315000px;}
.y5f{bottom:621.333000px;}
.yed{bottom:621.345000px;}
.y37{bottom:621.351000px;}
.y52{bottom:621.369000px;}
.y18{bottom:640.966500px;}
.ya2{bottom:641.710500px;}
.ybd{bottom:641.728500px;}
.y86{bottom:641.740500px;}
.yec{bottom:654.339000px;}
.y36{bottom:654.345000px;}
.y4f{bottom:654.363000px;}
.y17{bottom:673.960500px;}
.ya1{bottom:674.704500px;}
.ybc{bottom:674.722500px;}
.y85{bottom:674.734500px;}
.yd2{bottom:687.321000px;}
.yeb{bottom:687.333000px;}
.y35{bottom:687.339000px;}
.y4e{bottom:687.357000px;}
.y16{bottom:708.466500px;}
.ya0{bottom:709.210500px;}
.ybb{bottom:709.228500px;}
.y100{bottom:709.240500px;}
.yd1{bottom:721.827000px;}
.yea{bottom:721.839000px;}
.y5e{bottom:721.845000px;}
.y4d{bottom:721.863000px;}
.y15{bottom:741.460500px;}
.yba{bottom:742.222500px;}
.y84{bottom:742.234500px;}
.yd0{bottom:754.821000px;}
.y34{bottom:754.839000px;}
.y4c{bottom:754.857000px;}
.y14{bottom:774.454500px;}
.y9f{bottom:775.216500px;}
.y83{bottom:775.228500px;}
.y33{bottom:787.833000px;}
.ye9{bottom:787.845000px;}
.y4b{bottom:787.851000px;}
.y13{bottom:807.448500px;}
.y9e{bottom:808.210500px;}
.y82{bottom:808.222500px;}
.yb9{bottom:808.228500px;}
.y32{bottom:820.827000px;}
.ye8{bottom:820.839000px;}
.y4a{bottom:820.845000px;}
.y12{bottom:841.954500px;}
.y9d{bottom:842.716500px;}
.y81{bottom:842.728500px;}
.yb8{bottom:842.734500px;}
.y31{bottom:855.333000px;}
.y110{bottom:855.345000px;}
.y49{bottom:855.351000px;}
.y9c{bottom:875.710500px;}
.y80{bottom:875.722500px;}
.yb7{bottom:875.728500px;}
.y5d{bottom:888.327000px;}
.ye7{bottom:888.339000px;}
.y48{bottom:888.345000px;}
.y11{bottom:907.960500px;}
.y9b{bottom:908.704500px;}
.y7f{bottom:908.716500px;}
.yb6{bottom:908.722500px;}
.ycf{bottom:921.321000px;}
.ye6{bottom:921.333000px;}
.y30{bottom:921.339000px;}
.y9a{bottom:941.698500px;}
.yff{bottom:941.710500px;}
.yb5{bottom:941.716500px;}
.yce{bottom:954.315000px;}
.ye5{bottom:954.327000px;}
.y2f{bottom:954.333000px;}
.y10{bottom:975.460500px;}
.y99{bottom:976.204500px;}
.y7e{bottom:976.216500px;}
.yb4{bottom:976.222500px;}
.ycd{bottom:988.821000px;}
.ye4{bottom:988.833000px;}
.y2e{bottom:988.839000px;}
.yfe{bottom:1009.198500px;}
.y7d{bottom:1009.210500px;}
.yb3{bottom:1009.216500px;}
.ye3{bottom:1021.827000px;}
.y2d{bottom:1021.833000px;}
.yf{bottom:1041.460500px;}
.y7c{bottom:1042.204500px;}
.y98{bottom:1042.210500px;}
.ye2{bottom:1054.821000px;}
.y2c{bottom:1054.827000px;}
.ye{bottom:1074.460500px;}
.y97{bottom:1075.204500px;}
.y2b{bottom:1087.821000px;}
.h6{height:30.000000px;}
.h2{height:45.858398px;}
.h7{height:51.644531px;}
.h5{height:63.175781px;}
.h4{height:63.949219px;}
.h3{height:1097.739000px;}
.h9{height:1098.483000px;}
.h8{height:1111.099500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:20.511000px;}
.w7{width:29.194500px;}
.w6{width:30.522000px;}
.w2{width:732.808500px;}
.w4{width:741.486000px;}
.w5{width:743.499000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:5.443500px;}
.x7{left:26.449500px;}
.x3{left:54.943500px;}
.x2{left:80.056500px;}
.x1{left:127.575000px;}
.x4{left:251.443500px;}
.x5{left:270.943500px;}
.xc{left:305.443500px;}
.x6{left:332.449500px;}
.xa{left:781.860000px;}
.xb{left:783.186000px;}
.x9{left:791.869500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-4.710400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.012800pt;}
.ls1{letter-spacing:1.369600pt;}
.ls2{letter-spacing:1.600000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws2{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-7.653333pt;}
._1d{margin-left:-6.373333pt;}
._b{margin-left:-5.274667pt;}
._1{margin-left:-4.197333pt;}
._9{margin-left:-2.960000pt;}
._6{margin-left:-1.994667pt;}
._0{margin-left:-0.960000pt;}
._4{width:1.525333pt;}
._8{width:2.464000pt;}
._5{width:3.696000pt;}
._2{width:5.221333pt;}
._3{width:6.181333pt;}
._7{width:7.216000pt;}
._1b{width:8.106667pt;}
._12{width:8.997333pt;}
._f{width:10.368000pt;}
._c{width:11.968000pt;}
._e{width:13.120000pt;}
._11{width:14.656000pt;}
._10{width:17.189333pt;}
._13{width:18.394667pt;}
._d{width:19.328000pt;}
._16{width:20.608000pt;}
._18{width:21.760000pt;}
._14{width:23.104000pt;}
._19{width:24.640000pt;}
._1c{width:26.240000pt;}
._15{width:27.392000pt;}
._17{width:31.680000pt;}
._1a{width:35.072000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:7.679200pt;}
.ye1{bottom:17.608000pt;}
.yfd{bottom:17.650667pt;}
.y6e{bottom:17.656000pt;}
.y11a{bottom:17.666667pt;}
.y5c{bottom:17.672000pt;}
.y51{bottom:17.688000pt;}
.yb2{bottom:34.457333pt;}
.y10f{bottom:37.092000pt;}
.y94{bottom:37.124000pt;}
.ycc{bottom:37.129333pt;}
.ye0{bottom:48.280000pt;}
.yfc{bottom:48.322667pt;}
.y6d{bottom:48.328000pt;}
.y119{bottom:48.338667pt;}
.y5b{bottom:48.344000pt;}
.y47{bottom:48.360000pt;}
.y28{bottom:52.693333pt;}
.y2a{bottom:63.714667pt;}
.yb1{bottom:63.785333pt;}
.y27{bottom:65.780000pt;}
.y10e{bottom:66.420000pt;}
.y93{bottom:66.452000pt;}
.ycb{bottom:66.457333pt;}
.y7b{bottom:74.929333pt;}
.yd{bottom:75.590667pt;}
.ydf{bottom:77.608000pt;}
.yfb{bottom:77.650667pt;}
.y6c{bottom:77.656000pt;}
.y5a{bottom:77.672000pt;}
.y46{bottom:77.688000pt;}
.yb0{bottom:93.113333pt;}
.y26{bottom:95.108000pt;}
.y92{bottom:95.780000pt;}
.yca{bottom:95.785333pt;}
.yde{bottom:106.936000pt;}
.y6b{bottom:106.984000pt;}
.y95{bottom:107.000000pt;}
.y118{bottom:107.010667pt;}
.y45{bottom:107.016000pt;}
.yc{bottom:121.162667pt;}
.yaf{bottom:123.785333pt;}
.y25{bottom:124.436000pt;}
.y10d{bottom:125.092000pt;}
.yc9{bottom:125.113333pt;}
.y96{bottom:136.312000pt;}
.yfa{bottom:136.322667pt;}
.y7a{bottom:136.328000pt;}
.y117{bottom:136.338667pt;}
.y44{bottom:136.344000pt;}
.yb{bottom:138.498667pt;}
.yae{bottom:153.113333pt;}
.y24{bottom:155.108000pt;}
.y10c{bottom:155.764000pt;}
.y91{bottom:155.780000pt;}
.y120{bottom:155.785333pt;}
.ydd{bottom:166.936000pt;}
.y6a{bottom:166.984000pt;}
.yf9{bottom:166.994667pt;}
.y79{bottom:167.000000pt;}
.y116{bottom:167.010667pt;}
.y43{bottom:167.016000pt;}
.ya{bottom:173.170667pt;}
.yad{bottom:182.441333pt;}
.y23{bottom:184.436000pt;}
.y90{bottom:185.108000pt;}
.yc8{bottom:185.113333pt;}
.y9{bottom:190.506667pt;}
.ydc{bottom:196.264000pt;}
.y69{bottom:196.312000pt;}
.yf8{bottom:196.322667pt;}
.y78{bottom:196.328000pt;}
.y115{bottom:196.338667pt;}
.y42{bottom:196.344000pt;}
.y8{bottom:207.842667pt;}
.y22{bottom:213.764000pt;}
.y10b{bottom:214.436000pt;}
.yc7{bottom:214.441333pt;}
.y11f{bottom:214.457333pt;}
.y7{bottom:225.178667pt;}
.y68{bottom:225.640000pt;}
.yf7{bottom:225.650667pt;}
.y77{bottom:225.656000pt;}
.y114{bottom:225.666667pt;}
.y41{bottom:225.672000pt;}
.yac{bottom:227.769333pt;}
.y6{bottom:242.514667pt;}
.y21{bottom:243.092000pt;}
.y10a{bottom:243.764000pt;}
.yc6{bottom:243.769333pt;}
.y8f{bottom:243.780000pt;}
.y11e{bottom:243.785333pt;}
.ydb{bottom:254.936000pt;}
.y67{bottom:254.968000pt;}
.yf6{bottom:254.978667pt;}
.y76{bottom:254.984000pt;}
.y40{bottom:255.000000pt;}
.yab{bottom:258.441333pt;}
.y5{bottom:259.850667pt;}
.y20{bottom:273.764000pt;}
.y109{bottom:274.436000pt;}
.yc5{bottom:274.441333pt;}
.y8e{bottom:274.452000pt;}
.y11d{bottom:274.457333pt;}
.y4{bottom:277.186667pt;}
.yda{bottom:285.608000pt;}
.y66{bottom:285.640000pt;}
.yf5{bottom:285.650667pt;}
.y75{bottom:285.656000pt;}
.y113{bottom:285.666667pt;}
.y3f{bottom:285.672000pt;}
.yaa{bottom:287.769333pt;}
.y1f{bottom:303.092000pt;}
.y108{bottom:303.764000pt;}
.y122{bottom:303.769333pt;}
.y8d{bottom:303.780000pt;}
.y11c{bottom:303.785333pt;}
.yd9{bottom:314.936000pt;}
.y65{bottom:314.968000pt;}
.yf4{bottom:314.978667pt;}
.y74{bottom:314.984000pt;}
.y112{bottom:314.994667pt;}
.y3e{bottom:315.000000pt;}
.ya9{bottom:317.097333pt;}
.y121{bottom:333.097333pt;}
.yc4{bottom:333.113333pt;}
.y64{bottom:344.296000pt;}
.y73{bottom:344.312000pt;}
.y111{bottom:344.322667pt;}
.y3d{bottom:344.328000pt;}
.y59{bottom:344.344000pt;}
.y1e{bottom:361.764000pt;}
.ya8{bottom:362.425333pt;}
.y107{bottom:362.436000pt;}
.yc3{bottom:362.441333pt;}
.y8c{bottom:362.452000pt;}
.yd8{bottom:373.608000pt;}
.y72{bottom:373.640000pt;}
.yf3{bottom:373.650667pt;}
.y3c{bottom:373.656000pt;}
.y58{bottom:373.672000pt;}
.y1d{bottom:392.436000pt;}
.ya7{bottom:393.097333pt;}
.y106{bottom:393.108000pt;}
.yc2{bottom:393.113333pt;}
.y8b{bottom:393.124000pt;}
.yd7{bottom:404.280000pt;}
.y63{bottom:404.296000pt;}
.y71{bottom:404.312000pt;}
.yf2{bottom:404.322667pt;}
.y50{bottom:404.328000pt;}
.y57{bottom:404.344000pt;}
.y3{bottom:418.520000pt;}
.y1c{bottom:421.764000pt;}
.ya6{bottom:422.425333pt;}
.y105{bottom:422.436000pt;}
.yc1{bottom:422.441333pt;}
.y8a{bottom:422.452000pt;}
.y62{bottom:433.624000pt;}
.y70{bottom:433.640000pt;}
.yf1{bottom:433.650667pt;}
.y3b{bottom:433.656000pt;}
.y56{bottom:433.672000pt;}
.y2{bottom:450.521333pt;}
.y1b{bottom:451.092000pt;}
.ya5{bottom:451.753333pt;}
.y104{bottom:451.764000pt;}
.yc0{bottom:451.769333pt;}
.y89{bottom:451.780000pt;}
.yd6{bottom:462.952000pt;}
.y6f{bottom:462.968000pt;}
.yf0{bottom:462.978667pt;}
.y3a{bottom:462.984000pt;}
.y55{bottom:463.000000pt;}
.y1{bottom:478.520000pt;}
.y1a{bottom:480.420000pt;}
.y103{bottom:481.092000pt;}
.y11b{bottom:481.097333pt;}
.yd5{bottom:492.280000pt;}
.y61{bottom:492.296000pt;}
.yef{bottom:492.306667pt;}
.y39{bottom:492.312000pt;}
.y54{bottom:492.328000pt;}
.ya4{bottom:511.753333pt;}
.y102{bottom:511.764000pt;}
.ybf{bottom:511.769333pt;}
.y88{bottom:511.780000pt;}
.yd4{bottom:522.952000pt;}
.y60{bottom:522.968000pt;}
.yee{bottom:522.978667pt;}
.y38{bottom:522.984000pt;}
.y53{bottom:523.000000pt;}
.y19{bottom:540.420000pt;}
.ya3{bottom:541.081333pt;}
.y101{bottom:541.092000pt;}
.ybe{bottom:541.097333pt;}
.y87{bottom:541.108000pt;}
.yd3{bottom:552.280000pt;}
.y5f{bottom:552.296000pt;}
.yed{bottom:552.306667pt;}
.y37{bottom:552.312000pt;}
.y52{bottom:552.328000pt;}
.y18{bottom:569.748000pt;}
.ya2{bottom:570.409333pt;}
.ybd{bottom:570.425333pt;}
.y86{bottom:570.436000pt;}
.yec{bottom:581.634667pt;}
.y36{bottom:581.640000pt;}
.y4f{bottom:581.656000pt;}
.y17{bottom:599.076000pt;}
.ya1{bottom:599.737333pt;}
.ybc{bottom:599.753333pt;}
.y85{bottom:599.764000pt;}
.yd2{bottom:610.952000pt;}
.yeb{bottom:610.962667pt;}
.y35{bottom:610.968000pt;}
.y4e{bottom:610.984000pt;}
.y16{bottom:629.748000pt;}
.ya0{bottom:630.409333pt;}
.ybb{bottom:630.425333pt;}
.y100{bottom:630.436000pt;}
.yd1{bottom:641.624000pt;}
.yea{bottom:641.634667pt;}
.y5e{bottom:641.640000pt;}
.y4d{bottom:641.656000pt;}
.y15{bottom:659.076000pt;}
.yba{bottom:659.753333pt;}
.y84{bottom:659.764000pt;}
.yd0{bottom:670.952000pt;}
.y34{bottom:670.968000pt;}
.y4c{bottom:670.984000pt;}
.y14{bottom:688.404000pt;}
.y9f{bottom:689.081333pt;}
.y83{bottom:689.092000pt;}
.y33{bottom:700.296000pt;}
.ye9{bottom:700.306667pt;}
.y4b{bottom:700.312000pt;}
.y13{bottom:717.732000pt;}
.y9e{bottom:718.409333pt;}
.y82{bottom:718.420000pt;}
.yb9{bottom:718.425333pt;}
.y32{bottom:729.624000pt;}
.ye8{bottom:729.634667pt;}
.y4a{bottom:729.640000pt;}
.y12{bottom:748.404000pt;}
.y9d{bottom:749.081333pt;}
.y81{bottom:749.092000pt;}
.yb8{bottom:749.097333pt;}
.y31{bottom:760.296000pt;}
.y110{bottom:760.306667pt;}
.y49{bottom:760.312000pt;}
.y9c{bottom:778.409333pt;}
.y80{bottom:778.420000pt;}
.yb7{bottom:778.425333pt;}
.y5d{bottom:789.624000pt;}
.ye7{bottom:789.634667pt;}
.y48{bottom:789.640000pt;}
.y11{bottom:807.076000pt;}
.y9b{bottom:807.737333pt;}
.y7f{bottom:807.748000pt;}
.yb6{bottom:807.753333pt;}
.ycf{bottom:818.952000pt;}
.ye6{bottom:818.962667pt;}
.y30{bottom:818.968000pt;}
.y9a{bottom:837.065333pt;}
.yff{bottom:837.076000pt;}
.yb5{bottom:837.081333pt;}
.yce{bottom:848.280000pt;}
.ye5{bottom:848.290667pt;}
.y2f{bottom:848.296000pt;}
.y10{bottom:867.076000pt;}
.y99{bottom:867.737333pt;}
.y7e{bottom:867.748000pt;}
.yb4{bottom:867.753333pt;}
.ycd{bottom:878.952000pt;}
.ye4{bottom:878.962667pt;}
.y2e{bottom:878.968000pt;}
.yfe{bottom:897.065333pt;}
.y7d{bottom:897.076000pt;}
.yb3{bottom:897.081333pt;}
.ye3{bottom:908.290667pt;}
.y2d{bottom:908.296000pt;}
.yf{bottom:925.742667pt;}
.y7c{bottom:926.404000pt;}
.y98{bottom:926.409333pt;}
.ye2{bottom:937.618667pt;}
.y2c{bottom:937.624000pt;}
.ye{bottom:955.076000pt;}
.y97{bottom:955.737333pt;}
.y2b{bottom:966.952000pt;}
.h6{height:26.666667pt;}
.h2{height:40.763021pt;}
.h7{height:45.906250pt;}
.h5{height:56.156250pt;}
.h4{height:56.843750pt;}
.h3{height:975.768000pt;}
.h9{height:976.429333pt;}
.h8{height:987.644000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.232000pt;}
.w7{width:25.950667pt;}
.w6{width:27.130667pt;}
.w2{width:651.385333pt;}
.w4{width:659.098667pt;}
.w5{width:660.888000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:4.838667pt;}
.x7{left:23.510667pt;}
.x3{left:48.838667pt;}
.x2{left:71.161333pt;}
.x1{left:113.400000pt;}
.x4{left:223.505333pt;}
.x5{left:240.838667pt;}
.xc{left:271.505333pt;}
.x6{left:295.510667pt;}
.xa{left:694.986667pt;}
.xb{left:696.165333pt;}
.x9{left:703.884000pt;}
}




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