
    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_4598fb894cd7fc389533593a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0f2df3bb4264d391fdbd6e45.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ac145bb8e8fedd5833f91e60.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_43c3dee48e322b8f40e85b66.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4cc21971a97e57e026ea9b10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_9812448f0ff000a51cb4d787.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_970528736d255af7b137c06d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0948d50f7c6421d66a784805.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_7a308818adefd993bf8d747b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.378906;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_4e44ab562cad92ce9e5af574.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.720000px;}
.ls0{letter-spacing:12.240000px;}
.ls2{letter-spacing:64.421280px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._4{margin-left:-9.384480px;}
._1{margin-left:-7.948800px;}
._14{margin-left:-6.762240px;}
._20{margin-left:-5.241120px;}
._6{margin-left:-4.117680px;}
._c{margin-left:-2.808000px;}
._0{margin-left:-1.457280px;}
._2{width:1.648320px;}
._7{width:2.859600px;}
._10{width:4.077360px;}
._f{width:5.112000px;}
._e{width:6.558720px;}
._d{width:7.697280px;}
._a{width:8.712000px;}
._b{width:10.008000px;}
._8{width:11.568000px;}
._9{width:12.593280px;}
._1a{width:13.924080px;}
._18{width:15.144960px;}
._12{width:16.920000px;}
._11{width:19.944000px;}
._13{width:22.176000px;}
._19{width:23.544000px;}
._1d{width:24.666240px;}
._1e{width:28.224000px;}
._1f{width:29.232000px;}
._16{width:32.132160px;}
._15{width:33.425280px;}
._17{width:34.722240px;}
._1c{width:39.562560px;}
._1b{width:40.621680px;}
._5{width:63.776640px;}
._3{width:65.021040px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y89{bottom:5.400000px;}
.y83{bottom:5.580000px;}
.y85{bottom:5.760000px;}
.y5d{bottom:9.540000px;}
.y56{bottom:10.620000px;}
.y58{bottom:10.800000px;}
.y8b{bottom:11.340000px;}
.y80{bottom:11.520000px;}
.yb0{bottom:13.680000px;}
.yac{bottom:13.860000px;}
.ya1{bottom:14.580000px;}
.y9e{bottom:14.760000px;}
.ya4{bottom:14.805000px;}
.y5f{bottom:16.200000px;}
.y6f{bottom:16.560000px;}
.y6c{bottom:16.740000px;}
.y62{bottom:17.460000px;}
.y66{bottom:17.640000px;}
.y87{bottom:17.820000px;}
.y6e{bottom:19.260000px;}
.y6b{bottom:19.440000px;}
.y61{bottom:20.160000px;}
.y65{bottom:20.340000px;}
.y5{bottom:82.296000px;}
.y4{bottom:102.996000px;}
.y3{bottom:123.516000px;}
.y2{bottom:142.416000px;}
.y1{bottom:161.490000px;}
.yb9{bottom:185.430000px;}
.y9c{bottom:194.430000px;}
.y7d{bottom:208.470000px;}
.yb8{bottom:216.570000px;}
.y9b{bottom:216.750000px;}
.y45{bottom:217.470000px;}
.yd7{bottom:223.950000px;}
.y2a{bottom:224.850000px;}
.y54{bottom:229.170000px;}
.y9a{bottom:239.070000px;}
.y7c{bottom:239.430000px;}
.yd6{bottom:244.650000px;}
.yb7{bottom:247.530000px;}
.y44{bottom:248.430000px;}
.y29{bottom:255.990000px;}
.y53{bottom:260.130000px;}
.y99{bottom:261.390000px;}
.yd5{bottom:265.350000px;}
.y7b{bottom:270.570000px;}
.y43{bottom:279.570000px;}
.y98{bottom:283.710000px;}
.yd4{bottom:285.870000px;}
.yb6{bottom:286.050000px;}
.y28{bottom:286.950000px;}
.y52{bottom:291.270000px;}
.y7a{bottom:301.530000px;}
.yb5{bottom:304.050000px;}
.yd3{bottom:306.570000px;}
.y27{bottom:310.530000px;}
.y97{bottom:314.490000px;}
.y51{bottom:322.230000px;}
.yd2{bottom:327.270000px;}
.y79{bottom:332.670000px;}
.y42{bottom:341.715000px;}
.yb4{bottom:342.795000px;}
.y96{bottom:345.675000px;}
.y26{bottom:346.575000px;}
.yd1{bottom:348.015000px;}
.y50{bottom:353.415000px;}
.y78{bottom:363.675000px;}
.y25{bottom:367.275000px;}
.yd0{bottom:368.715000px;}
.y95{bottom:376.635000px;}
.y41{bottom:377.355000px;}
.yb3{bottom:381.855000px;}
.y4f{bottom:384.375000px;}
.y24{bottom:387.975000px;}
.ycf{bottom:389.415000px;}
.y77{bottom:394.815000px;}
.y94{bottom:407.775000px;}
.y23{bottom:408.675000px;}
.yce{bottom:410.115000px;}
.y4e{bottom:415.515000px;}
.yb2{bottom:420.735000px;}
.y40{bottom:423.615000px;}
.y76{bottom:425.775000px;}
.y22{bottom:429.375000px;}
.ycd{bottom:430.815000px;}
.y93{bottom:438.735000px;}
.y4d{bottom:446.475000px;}
.y21{bottom:450.075000px;}
.ycc{bottom:451.515000px;}
.y3f{bottom:454.575000px;}
.y75{bottom:456.915000px;}
.yb1{bottom:459.435000px;}
.y92{bottom:469.875000px;}
.y20{bottom:470.775000px;}
.ycb{bottom:472.215000px;}
.y4c{bottom:477.615000px;}
.y3e{bottom:485.715000px;}
.y74{bottom:487.875000px;}
.y1f{bottom:491.475000px;}
.yca{bottom:492.915000px;}
.yaf{bottom:498.495000px;}
.y91{bottom:500.835000px;}
.y4b{bottom:508.575000px;}
.y1e{bottom:512.175000px;}
.yc9{bottom:513.615000px;}
.y3d{bottom:516.675000px;}
.y73{bottom:519.015000px;}
.y90{bottom:531.975000px;}
.y1d{bottom:532.875000px;}
.yc8{bottom:534.315000px;}
.yae{bottom:537.195000px;}
.y4a{bottom:539.715000px;}
.y3c{bottom:547.815000px;}
.y72{bottom:549.975000px;}
.y1c{bottom:553.575000px;}
.yc7{bottom:555.015000px;}
.y8f{bottom:562.935000px;}
.y1b{bottom:574.275000px;}
.y49{bottom:575.355000px;}
.yc6{bottom:575.715000px;}
.yad{bottom:576.075000px;}
.y3b{bottom:578.775000px;}
.y71{bottom:581.115000px;}
.y8e{bottom:589.395000px;}
.y1a{bottom:594.975000px;}
.yc5{bottom:596.415000px;}
.y70{bottom:607.605000px;}
.y3a{bottom:609.945000px;}
.y8d{bottom:610.305000px;}
.y48{bottom:614.085000px;}
.yab{bottom:614.985000px;}
.y19{bottom:615.705000px;}
.yc4{bottom:617.145000px;}
.y6d{bottom:625.065000px;}
.y5a{bottom:634.425000px;}
.y18{bottom:636.405000px;}
.yc3{bottom:640.725000px;}
.y39{bottom:640.905000px;}
.y8c{bottom:656.745000px;}
.y17{bottom:657.105000px;}
.yaa{bottom:659.445000px;}
.y6a{bottom:661.785000px;}
.y59{bottom:663.405000px;}
.y38{bottom:672.045000px;}
.yc2{bottom:676.545000px;}
.y16{bottom:677.805000px;}
.ya9{bottom:686.085000px;}
.y57{bottom:692.205000px;}
.y15{bottom:698.505000px;}
.y69{bottom:698.685000px;}
.y37{bottom:703.005000px;}
.ya8{bottom:703.905000px;}
.yc1{bottom:707.685000px;}
.y14{bottom:719.205000px;}
.y55{bottom:721.185000px;}
.y36{bottom:734.145000px;}
.y68{bottom:736.305000px;}
.yc0{bottom:738.645000px;}
.y13{bottom:739.905000px;}
.ya7{bottom:744.765000px;}
.y8a{bottom:749.265000px;}
.y47{bottom:754.845000px;}
.y12{bottom:760.605000px;}
.y35{bottom:765.105000px;}
.ybf{bottom:769.785000px;}
.y67{bottom:774.105000px;}
.y46{bottom:775.545000px;}
.y11{bottom:781.305000px;}
.ya6{bottom:785.265000px;}
.y88{bottom:786.885000px;}
.y34{bottom:796.245000px;}
.ybe{bottom:800.745000px;}
.ydf{bottom:806.505000px;}
.y64{bottom:811.725000px;}
.y10{bottom:822.885000px;}
.ya5{bottom:825.945000px;}
.y33{bottom:827.205000px;}
.ybd{bottom:831.885000px;}
.y86{bottom:832.965000px;}
.yf{bottom:845.205000px;}
.yde{bottom:847.905000px;}
.y63{bottom:849.525000px;}
.y32{bottom:858.345000px;}
.ybc{bottom:862.845000px;}
.ya3{bottom:866.625000px;}
.ye{bottom:867.525000px;}
.ydd{bottom:868.605000px;}
.y84{bottom:879.450000px;}
.y60{bottom:887.370000px;}
.y31{bottom:889.350000px;}
.yd{bottom:889.890000px;}
.ybb{bottom:894.030000px;}
.ya2{bottom:907.350000px;}
.ydc{bottom:910.050000px;}
.yc{bottom:912.210000px;}
.y30{bottom:920.310000px;}
.y5e{bottom:924.990000px;}
.y82{bottom:925.710000px;}
.ydb{bottom:930.750000px;}
.yb{bottom:933.810000px;}
.ya0{bottom:948.030000px;}
.yba{bottom:948.570000px;}
.y2f{bottom:951.450000px;}
.ya{bottom:956.130000px;}
.y5c{bottom:958.650000px;}
.y81{bottom:972.150000px;}
.y9{bottom:980.430000px;}
.y2e{bottom:982.410000px;}
.y9f{bottom:988.710000px;}
.y5b{bottom:991.230000px;}
.yda{bottom:992.850000px;}
.y7f{bottom:1009.590000px;}
.y8{bottom:1011.750000px;}
.y2d{bottom:1013.550000px;}
.y9d{bottom:1029.390000px;}
.yd9{bottom:1034.250000px;}
.y7{bottom:1041.630000px;}
.y2c{bottom:1044.510000px;}
.y7e{bottom:1049.010000px;}
.yd8{bottom:1054.950000px;}
.y6{bottom:1069.890000px;}
.y2b{bottom:1075.650000px;}
.ha{height:26.280000px;}
.h8{height:27.360000px;}
.h9{height:27.540000px;}
.h13{height:28.260000px;}
.h1a{height:30.420000px;}
.h18{height:30.600000px;}
.h19{height:30.636000px;}
.h16{height:31.320000px;}
.h15{height:31.500000px;}
.h17{height:31.536000px;}
.hb{height:32.940000px;}
.h12{height:36.000000px;}
.h11{height:36.180000px;}
.hc{height:36.900000px;}
.he{height:36.936000px;}
.hf{height:37.080000px;}
.h14{height:37.260000px;}
.h6{height:52.628906px;}
.h2{height:59.383125px;}
.h10{height:63.949219px;}
.h3{height:64.546875px;}
.h7{height:74.820586px;}
.hd{height:79.453125px;}
.h4{height:85.052461px;}
.h5{height:85.847344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:125.136000px;}
.w10{width:142.776000px;}
.wc{width:146.736000px;}
.w6{width:148.176000px;}
.w9{width:149.436000px;}
.wa{width:165.630000px;}
.wb{width:165.810000px;}
.we{width:167.430000px;}
.wd{width:167.610000px;}
.w7{width:169.230000px;}
.w11{width:213.510000px;}
.w4{width:339.015000px;}
.w3{width:339.150000px;}
.w8{width:483.045000px;}
.w5{width:488.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:20.160000px;}
.x21{left:24.660000px;}
.x16{left:26.280000px;}
.x31{left:28.260000px;}
.x20{left:31.320000px;}
.x14{left:33.300000px;}
.x2f{left:34.920000px;}
.x2a{left:36.360000px;}
.x28{left:39.060000px;}
.x1b{left:40.140000px;}
.x17{left:44.100000px;}
.x1a{left:46.440000px;}
.x12{left:48.060000px;}
.x1c{left:49.140000px;}
.x19{left:50.220000px;}
.x26{left:55.980000px;}
.x27{left:57.780000px;}
.x25{left:62.460000px;}
.x22{left:75.420000px;}
.x18{left:77.220000px;}
.x30{left:81.000000px;}
.x2e{left:85.500000px;}
.x8{left:105.335987px;}
.x1{left:106.415987px;}
.x11{left:108.045000px;}
.xb{left:109.476000px;}
.xa{left:137.735987px;}
.xc{left:139.494000px;}
.xd{left:141.870000px;}
.x7{left:144.935987px;}
.x3{left:148.895987px;}
.x4{left:182.729987px;}
.x10{left:204.870000px;}
.x1e{left:206.130000px;}
.x6{left:222.149987px;}
.x1d{left:277.814987px;}
.x23{left:296.354987px;}
.x29{left:297.434987px;}
.xf{left:303.014987px;}
.x2b{left:331.995000px;}
.x9{left:333.074987px;}
.x13{left:353.775000px;}
.x1f{left:356.655000px;}
.x5{left:448.814987px;}
.xe{left:467.744987px;}
.x32{left:470.084987px;}
.x2d{left:475.845000px;}
.x24{left:521.745000px;}
.x15{left:523.725000px;}
.x2{left:791.429987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls0{letter-spacing:10.880000pt;}
.ls2{letter-spacing:57.263360pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._4{margin-left:-8.341760pt;}
._1{margin-left:-7.065600pt;}
._14{margin-left:-6.010880pt;}
._20{margin-left:-4.658773pt;}
._6{margin-left:-3.660160pt;}
._c{margin-left:-2.496000pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.465173pt;}
._7{width:2.541867pt;}
._10{width:3.624320pt;}
._f{width:4.544000pt;}
._e{width:5.829973pt;}
._d{width:6.842027pt;}
._a{width:7.744000pt;}
._b{width:8.896000pt;}
._8{width:10.282667pt;}
._9{width:11.194027pt;}
._1a{width:12.376960pt;}
._18{width:13.462187pt;}
._12{width:15.040000pt;}
._11{width:17.728000pt;}
._13{width:19.712000pt;}
._19{width:20.928000pt;}
._1d{width:21.925547pt;}
._1e{width:25.088000pt;}
._1f{width:25.984000pt;}
._16{width:28.561920pt;}
._15{width:29.711360pt;}
._17{width:30.864213pt;}
._1c{width:35.166720pt;}
._1b{width:36.108160pt;}
._5{width:56.690347pt;}
._3{width:57.796480pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:4.800000pt;}
.y83{bottom:4.960000pt;}
.y85{bottom:5.120000pt;}
.y5d{bottom:8.480000pt;}
.y56{bottom:9.440000pt;}
.y58{bottom:9.600000pt;}
.y8b{bottom:10.080000pt;}
.y80{bottom:10.240000pt;}
.yb0{bottom:12.160000pt;}
.yac{bottom:12.320000pt;}
.ya1{bottom:12.960000pt;}
.y9e{bottom:13.120000pt;}
.ya4{bottom:13.160000pt;}
.y5f{bottom:14.400000pt;}
.y6f{bottom:14.720000pt;}
.y6c{bottom:14.880000pt;}
.y62{bottom:15.520000pt;}
.y66{bottom:15.680000pt;}
.y87{bottom:15.840000pt;}
.y6e{bottom:17.120000pt;}
.y6b{bottom:17.280000pt;}
.y61{bottom:17.920000pt;}
.y65{bottom:18.080000pt;}
.y5{bottom:73.152000pt;}
.y4{bottom:91.552000pt;}
.y3{bottom:109.792000pt;}
.y2{bottom:126.592000pt;}
.y1{bottom:143.546667pt;}
.yb9{bottom:164.826667pt;}
.y9c{bottom:172.826667pt;}
.y7d{bottom:185.306667pt;}
.yb8{bottom:192.506667pt;}
.y9b{bottom:192.666667pt;}
.y45{bottom:193.306667pt;}
.yd7{bottom:199.066667pt;}
.y2a{bottom:199.866667pt;}
.y54{bottom:203.706667pt;}
.y9a{bottom:212.506667pt;}
.y7c{bottom:212.826667pt;}
.yd6{bottom:217.466667pt;}
.yb7{bottom:220.026667pt;}
.y44{bottom:220.826667pt;}
.y29{bottom:227.546667pt;}
.y53{bottom:231.226667pt;}
.y99{bottom:232.346667pt;}
.yd5{bottom:235.866667pt;}
.y7b{bottom:240.506667pt;}
.y43{bottom:248.506667pt;}
.y98{bottom:252.186667pt;}
.yd4{bottom:254.106667pt;}
.yb6{bottom:254.266667pt;}
.y28{bottom:255.066667pt;}
.y52{bottom:258.906667pt;}
.y7a{bottom:268.026667pt;}
.yb5{bottom:270.266667pt;}
.yd3{bottom:272.506667pt;}
.y27{bottom:276.026667pt;}
.y97{bottom:279.546667pt;}
.y51{bottom:286.426667pt;}
.yd2{bottom:290.906667pt;}
.y79{bottom:295.706667pt;}
.y42{bottom:303.746667pt;}
.yb4{bottom:304.706667pt;}
.y96{bottom:307.266667pt;}
.y26{bottom:308.066667pt;}
.yd1{bottom:309.346667pt;}
.y50{bottom:314.146667pt;}
.y78{bottom:323.266667pt;}
.y25{bottom:326.466667pt;}
.yd0{bottom:327.746667pt;}
.y95{bottom:334.786667pt;}
.y41{bottom:335.426667pt;}
.yb3{bottom:339.426667pt;}
.y4f{bottom:341.666667pt;}
.y24{bottom:344.866667pt;}
.ycf{bottom:346.146667pt;}
.y77{bottom:350.946667pt;}
.y94{bottom:362.466667pt;}
.y23{bottom:363.266667pt;}
.yce{bottom:364.546667pt;}
.y4e{bottom:369.346667pt;}
.yb2{bottom:373.986667pt;}
.y40{bottom:376.546667pt;}
.y76{bottom:378.466667pt;}
.y22{bottom:381.666667pt;}
.ycd{bottom:382.946667pt;}
.y93{bottom:389.986667pt;}
.y4d{bottom:396.866667pt;}
.y21{bottom:400.066667pt;}
.ycc{bottom:401.346667pt;}
.y3f{bottom:404.066667pt;}
.y75{bottom:406.146667pt;}
.yb1{bottom:408.386667pt;}
.y92{bottom:417.666667pt;}
.y20{bottom:418.466667pt;}
.ycb{bottom:419.746667pt;}
.y4c{bottom:424.546667pt;}
.y3e{bottom:431.746667pt;}
.y74{bottom:433.666667pt;}
.y1f{bottom:436.866667pt;}
.yca{bottom:438.146667pt;}
.yaf{bottom:443.106667pt;}
.y91{bottom:445.186667pt;}
.y4b{bottom:452.066667pt;}
.y1e{bottom:455.266667pt;}
.yc9{bottom:456.546667pt;}
.y3d{bottom:459.266667pt;}
.y73{bottom:461.346667pt;}
.y90{bottom:472.866667pt;}
.y1d{bottom:473.666667pt;}
.yc8{bottom:474.946667pt;}
.yae{bottom:477.506667pt;}
.y4a{bottom:479.746667pt;}
.y3c{bottom:486.946667pt;}
.y72{bottom:488.866667pt;}
.y1c{bottom:492.066667pt;}
.yc7{bottom:493.346667pt;}
.y8f{bottom:500.386667pt;}
.y1b{bottom:510.466667pt;}
.y49{bottom:511.426667pt;}
.yc6{bottom:511.746667pt;}
.yad{bottom:512.066667pt;}
.y3b{bottom:514.466667pt;}
.y71{bottom:516.546667pt;}
.y8e{bottom:523.906667pt;}
.y1a{bottom:528.866667pt;}
.yc5{bottom:530.146667pt;}
.y70{bottom:540.093333pt;}
.y3a{bottom:542.173333pt;}
.y8d{bottom:542.493333pt;}
.y48{bottom:545.853333pt;}
.yab{bottom:546.653333pt;}
.y19{bottom:547.293333pt;}
.yc4{bottom:548.573333pt;}
.y6d{bottom:555.613333pt;}
.y5a{bottom:563.933333pt;}
.y18{bottom:565.693333pt;}
.yc3{bottom:569.533333pt;}
.y39{bottom:569.693333pt;}
.y8c{bottom:583.773333pt;}
.y17{bottom:584.093333pt;}
.yaa{bottom:586.173333pt;}
.y6a{bottom:588.253333pt;}
.y59{bottom:589.693333pt;}
.y38{bottom:597.373333pt;}
.yc2{bottom:601.373333pt;}
.y16{bottom:602.493333pt;}
.ya9{bottom:609.853333pt;}
.y57{bottom:615.293333pt;}
.y15{bottom:620.893333pt;}
.y69{bottom:621.053333pt;}
.y37{bottom:624.893333pt;}
.ya8{bottom:625.693333pt;}
.yc1{bottom:629.053333pt;}
.y14{bottom:639.293333pt;}
.y55{bottom:641.053333pt;}
.y36{bottom:652.573333pt;}
.y68{bottom:654.493333pt;}
.yc0{bottom:656.573333pt;}
.y13{bottom:657.693333pt;}
.ya7{bottom:662.013333pt;}
.y8a{bottom:666.013333pt;}
.y47{bottom:670.973333pt;}
.y12{bottom:676.093333pt;}
.y35{bottom:680.093333pt;}
.ybf{bottom:684.253333pt;}
.y67{bottom:688.093333pt;}
.y46{bottom:689.373333pt;}
.y11{bottom:694.493333pt;}
.ya6{bottom:698.013333pt;}
.y88{bottom:699.453333pt;}
.y34{bottom:707.773333pt;}
.ybe{bottom:711.773333pt;}
.ydf{bottom:716.893333pt;}
.y64{bottom:721.533333pt;}
.y10{bottom:731.453333pt;}
.ya5{bottom:734.173333pt;}
.y33{bottom:735.293333pt;}
.ybd{bottom:739.453333pt;}
.y86{bottom:740.413333pt;}
.yf{bottom:751.293333pt;}
.yde{bottom:753.693333pt;}
.y63{bottom:755.133333pt;}
.y32{bottom:762.973333pt;}
.ybc{bottom:766.973333pt;}
.ya3{bottom:770.333333pt;}
.ye{bottom:771.133333pt;}
.ydd{bottom:772.093333pt;}
.y84{bottom:781.733333pt;}
.y60{bottom:788.773333pt;}
.y31{bottom:790.533333pt;}
.yd{bottom:791.013333pt;}
.ybb{bottom:794.693333pt;}
.ya2{bottom:806.533333pt;}
.ydc{bottom:808.933333pt;}
.yc{bottom:810.853333pt;}
.y30{bottom:818.053333pt;}
.y5e{bottom:822.213333pt;}
.y82{bottom:822.853333pt;}
.ydb{bottom:827.333333pt;}
.yb{bottom:830.053333pt;}
.ya0{bottom:842.693333pt;}
.yba{bottom:843.173333pt;}
.y2f{bottom:845.733333pt;}
.ya{bottom:849.893333pt;}
.y5c{bottom:852.133333pt;}
.y81{bottom:864.133333pt;}
.y9{bottom:871.493333pt;}
.y2e{bottom:873.253333pt;}
.y9f{bottom:878.853333pt;}
.y5b{bottom:881.093333pt;}
.yda{bottom:882.533333pt;}
.y7f{bottom:897.413333pt;}
.y8{bottom:899.333333pt;}
.y2d{bottom:900.933333pt;}
.y9d{bottom:915.013333pt;}
.yd9{bottom:919.333333pt;}
.y7{bottom:925.893333pt;}
.y2c{bottom:928.453333pt;}
.y7e{bottom:932.453333pt;}
.yd8{bottom:937.733333pt;}
.y6{bottom:951.013333pt;}
.y2b{bottom:956.133333pt;}
.ha{height:23.360000pt;}
.h8{height:24.320000pt;}
.h9{height:24.480000pt;}
.h13{height:25.120000pt;}
.h1a{height:27.040000pt;}
.h18{height:27.200000pt;}
.h19{height:27.232000pt;}
.h16{height:27.840000pt;}
.h15{height:28.000000pt;}
.h17{height:28.032000pt;}
.hb{height:29.280000pt;}
.h12{height:32.000000pt;}
.h11{height:32.160000pt;}
.hc{height:32.800000pt;}
.he{height:32.832000pt;}
.hf{height:32.960000pt;}
.h14{height:33.120000pt;}
.h6{height:46.781250pt;}
.h2{height:52.785000pt;}
.h10{height:56.843750pt;}
.h3{height:57.375000pt;}
.h7{height:66.507188pt;}
.hd{height:70.625000pt;}
.h4{height:75.602187pt;}
.h5{height:76.308750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:111.232000pt;}
.w10{width:126.912000pt;}
.wc{width:130.432000pt;}
.w6{width:131.712000pt;}
.w9{width:132.832000pt;}
.wa{width:147.226667pt;}
.wb{width:147.386667pt;}
.we{width:148.826667pt;}
.wd{width:148.986667pt;}
.w7{width:150.426667pt;}
.w11{width:189.786667pt;}
.w4{width:301.346667pt;}
.w3{width:301.466667pt;}
.w8{width:429.373333pt;}
.w5{width:433.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:17.920000pt;}
.x21{left:21.920000pt;}
.x16{left:23.360000pt;}
.x31{left:25.120000pt;}
.x20{left:27.840000pt;}
.x14{left:29.600000pt;}
.x2f{left:31.040000pt;}
.x2a{left:32.320000pt;}
.x28{left:34.720000pt;}
.x1b{left:35.680000pt;}
.x17{left:39.200000pt;}
.x1a{left:41.280000pt;}
.x12{left:42.720000pt;}
.x1c{left:43.680000pt;}
.x19{left:44.640000pt;}
.x26{left:49.760000pt;}
.x27{left:51.360000pt;}
.x25{left:55.520000pt;}
.x22{left:67.040000pt;}
.x18{left:68.640000pt;}
.x30{left:72.000000pt;}
.x2e{left:76.000000pt;}
.x8{left:93.631988pt;}
.x1{left:94.591988pt;}
.x11{left:96.040000pt;}
.xb{left:97.312000pt;}
.xa{left:122.431988pt;}
.xc{left:123.994667pt;}
.xd{left:126.106667pt;}
.x7{left:128.831988pt;}
.x3{left:132.351988pt;}
.x4{left:162.426655pt;}
.x10{left:182.106667pt;}
.x1e{left:183.226667pt;}
.x6{left:197.466655pt;}
.x1d{left:246.946655pt;}
.x23{left:263.426655pt;}
.x29{left:264.386655pt;}
.xf{left:269.346655pt;}
.x2b{left:295.106667pt;}
.x9{left:296.066655pt;}
.x13{left:314.466667pt;}
.x1f{left:317.026667pt;}
.x5{left:398.946655pt;}
.xe{left:415.773322pt;}
.x32{left:417.853322pt;}
.x2d{left:422.973333pt;}
.x24{left:463.773333pt;}
.x15{left:465.533333pt;}
.x2{left:703.493322pt;}
}




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