
    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_f8b82289e562c3035cdd958d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b869dc2071da4988f497c2a6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb9c0b09574714335134ccc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717300;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_c1598dfc875f07d1c467052e.woff2')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_6023f1cb9433393cce488965.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_f4d3469e29da2bc1a006890c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_e2d20f8a89005fdb4bfba689.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d105fdc4308ebcd8a6d2619a.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-167.040000px;}
.v3{vertical-align:-39.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:48.240000px;}
.ls1e{letter-spacing:-2.160000px;}
.ls19{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.057600px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.864000px;}
.ls13{letter-spacing:1.152000px;}
.ls20{letter-spacing:11.520000px;}
.lsd{letter-spacing:19.440000px;}
.ls0{letter-spacing:197.256000px;}
.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;}
}
.wsf{word-spacing:-19.152000px;}
.wsb{word-spacing:-18.864000px;}
.ws17{word-spacing:-18.792000px;}
.ws14{word-spacing:-18.720000px;}
.ws19{word-spacing:-18.648000px;}
.wse{word-spacing:-18.504000px;}
.wsc{word-spacing:-18.432000px;}
.ws9{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.496000px;}
.ws16{word-spacing:-17.424000px;}
.ws0{word-spacing:-17.280000px;}
.ws10{word-spacing:-17.208000px;}
.wsd{word-spacing:-17.064000px;}
.ws12{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.166000px;}
.ws4{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.700000px;}
.ws3{word-spacing:0.000000px;}
._25{margin-left:-3.435840px;}
._1{margin-left:-1.853280px;}
._0{width:1.236000px;}
._f{width:2.592000px;}
._10{width:3.792000px;}
._16{width:5.513280px;}
._a{width:6.624000px;}
._6{width:7.923840px;}
._5{width:9.006480px;}
._9{width:10.204560px;}
._8{width:11.208000px;}
._b{width:12.312000px;}
._c{width:13.680000px;}
._12{width:14.801280px;}
._11{width:15.821280px;}
._15{width:16.949280px;}
._18{width:19.080000px;}
._1c{width:20.664000px;}
._1d{width:22.517280px;}
._14{width:24.142560px;}
._13{width:25.632000px;}
._17{width:26.716320px;}
._1e{width:28.080000px;}
._21{width:29.208000px;}
._d{width:30.240000px;}
._e{width:31.572000px;}
._2b{width:32.741280px;}
._19{width:33.840000px;}
._1b{width:34.992000px;}
._1a{width:36.948000px;}
._26{width:38.724000px;}
._1f{width:40.320000px;}
._20{width:41.376000px;}
._22{width:42.461280px;}
._29{width:46.008000px;}
._2c{width:47.520000px;}
._23{width:48.720000px;}
._24{width:49.896000px;}
._2a{width:52.680000px;}
._2d{width:54.072000px;}
._2e{width:55.224000px;}
._27{width:57.576000px;}
._28{width:58.877280px;}
._2{width:102.370560px;}
._4{width:196.860000px;}
._3{width:198.180000px;}
._7{width:1909.356000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:4.140000px;}
.yb3{bottom:4.500000px;}
.yb2{bottom:25.200000px;}
.y24{bottom:29.160000px;}
.yba{bottom:45.945000px;}
.y23{bottom:48.240000px;}
.y1{bottom:56.880000px;}
.yb9{bottom:66.645000px;}
.yb8{bottom:87.345000px;}
.yb7{bottom:108.045000px;}
.y88{bottom:115.416000px;}
.y97{bottom:121.176000px;}
.y47{bottom:125.496000px;}
.yb6{bottom:128.745000px;}
.y67{bottom:129.636000px;}
.y95{bottom:130.536000px;}
.y87{bottom:146.556000px;}
.yb5{bottom:149.445000px;}
.y21{bottom:154.290000px;}
.y46{bottom:156.450000px;}
.y94{bottom:159.330000px;}
.y66{bottom:161.130000px;}
.y20{bottom:171.570000px;}
.y86{bottom:177.510000px;}
.y93{bottom:185.970000px;}
.y45{bottom:187.590000px;}
.y1f{bottom:188.850000px;}
.y65{bottom:192.090000px;}
.yae{bottom:194.610000px;}
.y1e{bottom:206.130000px;}
.y85{bottom:208.650000px;}
.y44{bottom:218.550000px;}
.y64{bottom:223.230000px;}
.y1d{bottom:223.410000px;}
.yad{bottom:225.750000px;}
.y92{bottom:225.930000px;}
.y84{bottom:239.610000px;}
.y1c{bottom:240.690000px;}
.y43{bottom:249.690000px;}
.y63{bottom:254.190000px;}
.yac{bottom:256.710000px;}
.y1b{bottom:257.790000px;}
.y91{bottom:264.270000px;}
.y83{bottom:270.750000px;}
.y1a{bottom:275.070000px;}
.y42{bottom:280.650000px;}
.y62{bottom:285.330000px;}
.yab{bottom:287.850000px;}
.y19{bottom:292.350000px;}
.y82{bottom:301.710000px;}
.y90{bottom:302.430000px;}
.y18{bottom:309.630000px;}
.y41{bottom:311.430000px;}
.y61{bottom:316.290000px;}
.yaa{bottom:318.810000px;}
.y17{bottom:326.910000px;}
.y89{bottom:332.490000px;}
.y81{bottom:332.850000px;}
.y8f{bottom:340.770000px;}
.y40{bottom:342.750000px;}
.y16{bottom:344.055000px;}
.y60{bottom:347.475000px;}
.ya9{bottom:349.995000px;}
.y15{bottom:361.335000px;}
.y80{bottom:363.855000px;}
.y3f{bottom:373.935000px;}
.y5f{bottom:378.435000px;}
.y14{bottom:378.615000px;}
.y8e{bottom:378.975000px;}
.ya8{bottom:380.955000px;}
.y7f{bottom:394.995000px;}
.y13{bottom:395.895000px;}
.y3e{bottom:404.895000px;}
.y5e{bottom:409.575000px;}
.ya7{bottom:412.095000px;}
.y12{bottom:413.175000px;}
.y8d{bottom:417.315000px;}
.y7e{bottom:425.955000px;}
.y11{bottom:430.455000px;}
.y3d{bottom:436.035000px;}
.y5d{bottom:440.175000px;}
.ya6{bottom:443.055000px;}
.y8c{bottom:455.475000px;}
.y7d{bottom:456.915000px;}
.y3c{bottom:466.995000px;}
.y10{bottom:468.975000px;}
.y5c{bottom:471.675000px;}
.ya5{bottom:474.195000px;}
.y7c{bottom:488.055000px;}
.y8b{bottom:493.815000px;}
.y3b{bottom:498.135000px;}
.y5b{bottom:502.635000px;}
.ya4{bottom:505.155000px;}
.yf{bottom:510.195000px;}
.y7b{bottom:519.015000px;}
.y3a{bottom:529.095000px;}
.y8a{bottom:531.975000px;}
.y5a{bottom:533.775000px;}
.ya3{bottom:536.295000px;}
.ye{bottom:544.755000px;}
.y7a{bottom:550.155000px;}
.y39{bottom:560.235000px;}
.y59{bottom:564.735000px;}
.ya2{bottom:567.255000px;}
.y79{bottom:581.115000px;}
.yd{bottom:582.375000px;}
.y38{bottom:591.195000px;}
.y58{bottom:595.875000px;}
.ya1{bottom:598.395000px;}
.y78{bottom:612.285000px;}
.yc{bottom:616.245000px;}
.y37{bottom:622.005000px;}
.yb{bottom:625.785000px;}
.y57{bottom:626.865000px;}
.ya0{bottom:629.385000px;}
.y77{bottom:643.245000px;}
.ya{bottom:652.785000px;}
.y36{bottom:653.325000px;}
.y56{bottom:658.005000px;}
.y9f{bottom:660.525000px;}
.ybc{bottom:674.025000px;}
.y76{bottom:674.385000px;}
.y9{bottom:681.585000px;}
.y35{bottom:684.465000px;}
.y55{bottom:688.965000px;}
.y9e{bottom:691.485000px;}
.y8{bottom:703.185000px;}
.y75{bottom:705.345000px;}
.y34{bottom:715.425000px;}
.y9d{bottom:722.625000px;}
.y7{bottom:728.745000px;}
.y74{bottom:736.485000px;}
.y54{bottom:740.985000px;}
.y33{bottom:746.565000px;}
.y9c{bottom:763.665000px;}
.y73{bottom:767.445000px;}
.y6{bottom:770.145000px;}
.y53{bottom:772.125000px;}
.y32{bottom:777.525000px;}
.y72{bottom:798.585000px;}
.y9b{bottom:802.005000px;}
.y52{bottom:803.085000px;}
.y31{bottom:808.665000px;}
.y5{bottom:811.185000px;}
.ybb{bottom:817.665000px;}
.y96{bottom:829.185000px;}
.y71{bottom:829.545000px;}
.y51{bottom:834.225000px;}
.yb4{bottom:838.365000px;}
.y30{bottom:839.625000px;}
.y4{bottom:852.585000px;}
.y70{bottom:860.685000px;}
.y6d{bottom:860.865000px;}
.y50{bottom:865.185000px;}
.y2f{bottom:870.450000px;}
.y6c{bottom:891.330000px;}
.y6f{bottom:891.690000px;}
.y2e{bottom:901.770000px;}
.y6b{bottom:922.830000px;}
.y4f{bottom:924.090000px;}
.y2d{bottom:932.910000px;}
.y3{bottom:935.790000px;}
.y6a{bottom:953.790000px;}
.y2c{bottom:963.870000px;}
.y2{bottom:977.190000px;}
.y4e{bottom:984.570000px;}
.y69{bottom:984.930000px;}
.y2b{bottom:995.010000px;}
.yb1{bottom:1004.010000px;}
.y22{bottom:1010.310000px;}
.y4d{bottom:1015.890000px;}
.y2a{bottom:1025.970000px;}
.y4c{bottom:1047.030000px;}
.yaf{bottom:1047.570000px;}
.y29{bottom:1057.110000px;}
.y9a{bottom:1076.370000px;}
.y4b{bottom:1077.630000px;}
.y68{bottom:1077.990000px;}
.y28{bottom:1087.710000px;}
.y99{bottom:1103.010000px;}
.y4a{bottom:1109.130000px;}
.y27{bottom:1131.660000px;}
.y6e{bottom:1139.760000px;}
.y49{bottom:1140.120000px;}
.y98{bottom:1143.000000px;}
.y48{bottom:1177.200000px;}
.y26{bottom:1181.160000px;}
.y25{bottom:1196.640000px;}
.h13{height:20.700000px;}
.h14{height:41.400000px;}
.h2{height:47.344922px;}
.h5{height:50.661190px;}
.h8{height:52.998047px;}
.hc{height:58.621992px;}
.hd{height:58.651172px;}
.h10{height:64.546875px;}
.h12{height:66.757500px;}
.h11{height:70.628906px;}
.h7{height:70.664062px;}
.hb{height:72.562500px;}
.ha{height:75.991785px;}
.h9{height:82.676953px;}
.hf{height:108.843750px;}
.h6{height:116.077500px;}
.he{height:132.696000px;}
.h3{height:141.328125px;}
.h4{height:145.125000px;}
.h15{height:165.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:565.845000px;}
.w2{width:761.040000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.100000px;}
.xc{left:66.060000px;}
.x14{left:100.296000px;}
.x2{left:127.656000px;}
.x3{left:128.916000px;}
.x9{left:132.876000px;}
.x17{left:163.650000px;}
.x5{left:165.450000px;}
.xb{left:166.890000px;}
.x11{left:181.290000px;}
.x13{left:216.930000px;}
.x16{left:234.030000px;}
.x6{left:257.115000px;}
.x7{left:273.135000px;}
.xf{left:376.635000px;}
.x4{left:378.975000px;}
.x12{left:393.195000px;}
.x15{left:396.255000px;}
.xa{left:416.265000px;}
.x10{left:446.505000px;}
.x1{left:457.305000px;}
.xd{left:720.900000px;}
.x8{left:765.540000px;}
@media print{
.v1{vertical-align:-148.480000pt;}
.v3{vertical-align:-34.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:42.880000pt;}
.ls1e{letter-spacing:-1.920000pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.051200pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls20{letter-spacing:10.240000pt;}
.lsd{letter-spacing:17.280000pt;}
.ls0{letter-spacing:175.338667pt;}
.wsf{word-spacing:-17.024000pt;}
.wsb{word-spacing:-16.768000pt;}
.ws17{word-spacing:-16.704000pt;}
.ws14{word-spacing:-16.640000pt;}
.ws19{word-spacing:-16.576000pt;}
.wse{word-spacing:-16.448000pt;}
.wsc{word-spacing:-16.384000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.552000pt;}
.ws16{word-spacing:-15.488000pt;}
.ws0{word-spacing:-15.360000pt;}
.ws10{word-spacing:-15.296000pt;}
.wsd{word-spacing:-15.168000pt;}
.ws12{word-spacing:-14.720000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.592000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws3{word-spacing:0.000000pt;}
._25{margin-left:-3.054080pt;}
._1{margin-left:-1.647360pt;}
._0{width:1.098667pt;}
._f{width:2.304000pt;}
._10{width:3.370667pt;}
._16{width:4.900693pt;}
._a{width:5.888000pt;}
._6{width:7.043413pt;}
._5{width:8.005760pt;}
._9{width:9.070720pt;}
._8{width:9.962667pt;}
._b{width:10.944000pt;}
._c{width:12.160000pt;}
._12{width:13.156693pt;}
._11{width:14.063360pt;}
._15{width:15.066027pt;}
._18{width:16.960000pt;}
._1c{width:18.368000pt;}
._1d{width:20.015360pt;}
._14{width:21.460053pt;}
._13{width:22.784000pt;}
._17{width:23.747840pt;}
._1e{width:24.960000pt;}
._21{width:25.962667pt;}
._d{width:26.880000pt;}
._e{width:28.064000pt;}
._2b{width:29.103360pt;}
._19{width:30.080000pt;}
._1b{width:31.104000pt;}
._1a{width:32.842667pt;}
._26{width:34.421333pt;}
._1f{width:35.840000pt;}
._20{width:36.778667pt;}
._22{width:37.743360pt;}
._29{width:40.896000pt;}
._2c{width:42.240000pt;}
._23{width:43.306667pt;}
._24{width:44.352000pt;}
._2a{width:46.826667pt;}
._2d{width:48.064000pt;}
._2e{width:49.088000pt;}
._27{width:51.178667pt;}
._28{width:52.335360pt;}
._2{width:90.996053pt;}
._4{width:174.986667pt;}
._3{width:176.160000pt;}
._7{width:1697.205333pt;}
.fs0{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:3.680000pt;}
.yb3{bottom:4.000000pt;}
.yb2{bottom:22.400000pt;}
.y24{bottom:25.920000pt;}
.yba{bottom:40.840000pt;}
.y23{bottom:42.880000pt;}
.y1{bottom:50.560000pt;}
.yb9{bottom:59.240000pt;}
.yb8{bottom:77.640000pt;}
.yb7{bottom:96.040000pt;}
.y88{bottom:102.592000pt;}
.y97{bottom:107.712000pt;}
.y47{bottom:111.552000pt;}
.yb6{bottom:114.440000pt;}
.y67{bottom:115.232000pt;}
.y95{bottom:116.032000pt;}
.y87{bottom:130.272000pt;}
.yb5{bottom:132.840000pt;}
.y21{bottom:137.146667pt;}
.y46{bottom:139.066667pt;}
.y94{bottom:141.626667pt;}
.y66{bottom:143.226667pt;}
.y20{bottom:152.506667pt;}
.y86{bottom:157.786667pt;}
.y93{bottom:165.306667pt;}
.y45{bottom:166.746667pt;}
.y1f{bottom:167.866667pt;}
.y65{bottom:170.746667pt;}
.yae{bottom:172.986667pt;}
.y1e{bottom:183.226667pt;}
.y85{bottom:185.466667pt;}
.y44{bottom:194.266667pt;}
.y64{bottom:198.426667pt;}
.y1d{bottom:198.586667pt;}
.yad{bottom:200.666667pt;}
.y92{bottom:200.826667pt;}
.y84{bottom:212.986667pt;}
.y1c{bottom:213.946667pt;}
.y43{bottom:221.946667pt;}
.y63{bottom:225.946667pt;}
.yac{bottom:228.186667pt;}
.y1b{bottom:229.146667pt;}
.y91{bottom:234.906667pt;}
.y83{bottom:240.666667pt;}
.y1a{bottom:244.506667pt;}
.y42{bottom:249.466667pt;}
.y62{bottom:253.626667pt;}
.yab{bottom:255.866667pt;}
.y19{bottom:259.866667pt;}
.y82{bottom:268.186667pt;}
.y90{bottom:268.826667pt;}
.y18{bottom:275.226667pt;}
.y41{bottom:276.826667pt;}
.y61{bottom:281.146667pt;}
.yaa{bottom:283.386667pt;}
.y17{bottom:290.586667pt;}
.y89{bottom:295.546667pt;}
.y81{bottom:295.866667pt;}
.y8f{bottom:302.906667pt;}
.y40{bottom:304.666667pt;}
.y16{bottom:305.826667pt;}
.y60{bottom:308.866667pt;}
.ya9{bottom:311.106667pt;}
.y15{bottom:321.186667pt;}
.y80{bottom:323.426667pt;}
.y3f{bottom:332.386667pt;}
.y5f{bottom:336.386667pt;}
.y14{bottom:336.546667pt;}
.y8e{bottom:336.866667pt;}
.ya8{bottom:338.626667pt;}
.y7f{bottom:351.106667pt;}
.y13{bottom:351.906667pt;}
.y3e{bottom:359.906667pt;}
.y5e{bottom:364.066667pt;}
.ya7{bottom:366.306667pt;}
.y12{bottom:367.266667pt;}
.y8d{bottom:370.946667pt;}
.y7e{bottom:378.626667pt;}
.y11{bottom:382.626667pt;}
.y3d{bottom:387.586667pt;}
.y5d{bottom:391.266667pt;}
.ya6{bottom:393.826667pt;}
.y8c{bottom:404.866667pt;}
.y7d{bottom:406.146667pt;}
.y3c{bottom:415.106667pt;}
.y10{bottom:416.866667pt;}
.y5c{bottom:419.266667pt;}
.ya5{bottom:421.506667pt;}
.y7c{bottom:433.826667pt;}
.y8b{bottom:438.946667pt;}
.y3b{bottom:442.786667pt;}
.y5b{bottom:446.786667pt;}
.ya4{bottom:449.026667pt;}
.yf{bottom:453.506667pt;}
.y7b{bottom:461.346667pt;}
.y3a{bottom:470.306667pt;}
.y8a{bottom:472.866667pt;}
.y5a{bottom:474.466667pt;}
.ya3{bottom:476.706667pt;}
.ye{bottom:484.226667pt;}
.y7a{bottom:489.026667pt;}
.y39{bottom:497.986667pt;}
.y59{bottom:501.986667pt;}
.ya2{bottom:504.226667pt;}
.y79{bottom:516.546667pt;}
.yd{bottom:517.666667pt;}
.y38{bottom:525.506667pt;}
.y58{bottom:529.666667pt;}
.ya1{bottom:531.906667pt;}
.y78{bottom:544.253333pt;}
.yc{bottom:547.773333pt;}
.y37{bottom:552.893333pt;}
.yb{bottom:556.253333pt;}
.y57{bottom:557.213333pt;}
.ya0{bottom:559.453333pt;}
.y77{bottom:571.773333pt;}
.ya{bottom:580.253333pt;}
.y36{bottom:580.733333pt;}
.y56{bottom:584.893333pt;}
.y9f{bottom:587.133333pt;}
.ybc{bottom:599.133333pt;}
.y76{bottom:599.453333pt;}
.y9{bottom:605.853333pt;}
.y35{bottom:608.413333pt;}
.y55{bottom:612.413333pt;}
.y9e{bottom:614.653333pt;}
.y8{bottom:625.053333pt;}
.y75{bottom:626.973333pt;}
.y34{bottom:635.933333pt;}
.y9d{bottom:642.333333pt;}
.y7{bottom:647.773333pt;}
.y74{bottom:654.653333pt;}
.y54{bottom:658.653333pt;}
.y33{bottom:663.613333pt;}
.y9c{bottom:678.813333pt;}
.y73{bottom:682.173333pt;}
.y6{bottom:684.573333pt;}
.y53{bottom:686.333333pt;}
.y32{bottom:691.133333pt;}
.y72{bottom:709.853333pt;}
.y9b{bottom:712.893333pt;}
.y52{bottom:713.853333pt;}
.y31{bottom:718.813333pt;}
.y5{bottom:721.053333pt;}
.ybb{bottom:726.813333pt;}
.y96{bottom:737.053333pt;}
.y71{bottom:737.373333pt;}
.y51{bottom:741.533333pt;}
.yb4{bottom:745.213333pt;}
.y30{bottom:746.333333pt;}
.y4{bottom:757.853333pt;}
.y70{bottom:765.053333pt;}
.y6d{bottom:765.213333pt;}
.y50{bottom:769.053333pt;}
.y2f{bottom:773.733333pt;}
.y6c{bottom:792.293333pt;}
.y6f{bottom:792.613333pt;}
.y2e{bottom:801.573333pt;}
.y6b{bottom:820.293333pt;}
.y4f{bottom:821.413333pt;}
.y2d{bottom:829.253333pt;}
.y3{bottom:831.813333pt;}
.y6a{bottom:847.813333pt;}
.y2c{bottom:856.773333pt;}
.y2{bottom:868.613333pt;}
.y4e{bottom:875.173333pt;}
.y69{bottom:875.493333pt;}
.y2b{bottom:884.453333pt;}
.yb1{bottom:892.453333pt;}
.y22{bottom:898.053333pt;}
.y4d{bottom:903.013333pt;}
.y2a{bottom:911.973333pt;}
.y4c{bottom:930.693333pt;}
.yaf{bottom:931.173333pt;}
.y29{bottom:939.653333pt;}
.y9a{bottom:956.773333pt;}
.y4b{bottom:957.893333pt;}
.y68{bottom:958.213333pt;}
.y28{bottom:966.853333pt;}
.y99{bottom:980.453333pt;}
.y4a{bottom:985.893333pt;}
.y27{bottom:1005.920000pt;}
.y6e{bottom:1013.120000pt;}
.y49{bottom:1013.440000pt;}
.y98{bottom:1016.000000pt;}
.y48{bottom:1046.400000pt;}
.y26{bottom:1049.920000pt;}
.y25{bottom:1063.680000pt;}
.h13{height:18.400000pt;}
.h14{height:36.800000pt;}
.h2{height:42.084375pt;}
.h5{height:45.032169pt;}
.h8{height:47.109375pt;}
.hc{height:52.108438pt;}
.hd{height:52.134375pt;}
.h10{height:57.375000pt;}
.h12{height:59.340000pt;}
.h11{height:62.781250pt;}
.h7{height:62.812500pt;}
.hb{height:64.500000pt;}
.ha{height:67.548254pt;}
.h9{height:73.490625pt;}
.hf{height:96.750000pt;}
.h6{height:103.180000pt;}
.he{height:117.952000pt;}
.h3{height:125.625000pt;}
.h4{height:129.000000pt;}
.h15{height:147.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:502.973333pt;}
.w2{width:676.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.200000pt;}
.xc{left:58.720000pt;}
.x14{left:89.152000pt;}
.x2{left:113.472000pt;}
.x3{left:114.592000pt;}
.x9{left:118.112000pt;}
.x17{left:145.466667pt;}
.x5{left:147.066667pt;}
.xb{left:148.346667pt;}
.x11{left:161.146667pt;}
.x13{left:192.826667pt;}
.x16{left:208.026667pt;}
.x6{left:228.546667pt;}
.x7{left:242.786667pt;}
.xf{left:334.786667pt;}
.x4{left:336.866667pt;}
.x12{left:349.506667pt;}
.x15{left:352.226667pt;}
.xa{left:370.013333pt;}
.x10{left:396.893333pt;}
.x1{left:406.493333pt;}
.xd{left:640.800000pt;}
.x8{left:680.480000pt;}
}




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