
    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_0b633a0bb17244f693a8140e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_092a1aecece3e8d8a0a27f1b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.950000;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_c8c316bb28671a242e06d799.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962000;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_59ad669cd3edd37d45362fb4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_0b633a0bb17244f693a8140e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_c8c316bb28671a242e06d799.woff')format("woff");}.ff6{font-family:ff6;line-height:0.962000;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_b7e9462a82b1054c5029c33b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.v1{vertical-align:14.985000px;}
.ls8{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.300000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.600000px;}
.ls3{letter-spacing:1.200000px;}
.ls1{letter-spacing:1.920000px;}
.ls0{letter-spacing:3.480000px;}
.ls6{letter-spacing:31.791000px;}
.ls5{letter-spacing:31.791600px;}
.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;}
}
.ws0{word-spacing:-24.969000px;}
.wsf{word-spacing:-16.320000px;}
.wse{word-spacing:-15.720000px;}
.ws8{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.820000px;}
.ws9{word-spacing:-14.280000px;}
.ws12{word-spacing:-11.115000px;}
.ws10{word-spacing:-10.710000px;}
.ws11{word-spacing:-6.480045px;}
.ws5{word-spacing:-4.320000px;}
.ws4{word-spacing:-3.360000px;}
.ws6{word-spacing:-2.040000px;}
.ws16{word-spacing:-1.920000px;}
.wsc{word-spacing:-1.680000px;}
.wsa{word-spacing:-1.380000px;}
.ws7{word-spacing:-1.260000px;}
.ws3{word-spacing:-1.200000px;}
.ws2{word-spacing:-0.960000px;}
.ws15{word-spacing:-0.945000px;}
.ws14{word-spacing:-0.900000px;}
.ws13{word-spacing:-0.840000px;}
.ws17{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-51.060000px;}
._f{margin-left:-10.230000px;}
._e{margin-left:-7.440000px;}
._6{margin-left:-5.640600px;}
._1{margin-left:-3.741000px;}
._0{margin-left:-1.920000px;}
._2{width:1.440000px;}
._d{width:2.469000px;}
._8{width:4.080000px;}
._11{width:14.292000px;}
._c{width:17.700000px;}
._7{width:20.531400px;}
._4{width:23.771400px;}
._5{width:25.151400px;}
._b{width:28.980000px;}
._3{width:33.191400px;}
._9{width:632.814000px;}
._10{width:1848.877200px;}
.fc2{color:rgb(0,87,87);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(76,137,138);}
.fc0{color:rgb(0,55,53);}
.fsb{font-size:26.235000px;}
.fsc{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:69.000000px;}
.fs8{font-size:84.000000px;}
.fs1{font-size:87.000000px;}
.fs6{font-size:102.000000px;}
.fs3{font-size:114.000000px;}
.fs4{font-size:168.000000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.795200px;}
.yae{bottom:46.045200px;}
.yad{bottom:64.045200px;}
.y7d{bottom:84.082650px;}
.y4a{bottom:84.295200px;}
.y18{bottom:84.295350px;}
.y7c{bottom:100.582650px;}
.y63{bottom:103.922250px;}
.y49{bottom:104.545200px;}
.y17{bottom:104.545350px;}
.y7b{bottom:117.082650px;}
.y62{bottom:120.422250px;}
.y48{bottom:124.795200px;}
.y16{bottom:124.795350px;}
.y7a{bottom:133.582650px;}
.yac{bottom:133.795350px;}
.y61{bottom:136.922250px;}
.y47{bottom:145.045200px;}
.y15{bottom:145.045350px;}
.y8d{bottom:145.795050px;}
.y79{bottom:150.082650px;}
.yab{bottom:151.795350px;}
.y8c{bottom:162.295050px;}
.y46{bottom:165.295200px;}
.y14{bottom:165.295350px;}
.y78{bottom:166.582650px;}
.yaa{bottom:169.795350px;}
.y8b{bottom:178.795050px;}
.y77{bottom:183.082650px;}
.y45{bottom:185.545200px;}
.y13{bottom:185.545350px;}
.ya9{bottom:187.795350px;}
.y8a{bottom:195.295050px;}
.y76{bottom:199.582650px;}
.y44{bottom:205.795200px;}
.y12{bottom:205.795350px;}
.y75{bottom:216.082650px;}
.yf7{bottom:217.417350px;}
.y43{bottom:226.045200px;}
.y11{bottom:226.045350px;}
.y74{bottom:232.582650px;}
.ya8{bottom:232.795350px;}
.yf6{bottom:233.167350px;}
.y42{bottom:246.295200px;}
.y10{bottom:246.295350px;}
.y73{bottom:249.082650px;}
.ya7{bottom:250.795350px;}
.yf5{bottom:257.421300px;}
.y72{bottom:265.582650px;}
.y41{bottom:266.545200px;}
.yf{bottom:266.545350px;}
.ya6{bottom:268.795350px;}
.yf4{bottom:273.171300px;}
.y71{bottom:282.082650px;}
.y40{bottom:286.795200px;}
.ye{bottom:286.795350px;}
.yf3{bottom:288.921300px;}
.yf2{bottom:304.671300px;}
.y3f{bottom:307.045200px;}
.yd{bottom:307.045350px;}
.yf1{bottom:320.421300px;}
.ya5{bottom:322.795350px;}
.y3e{bottom:327.295200px;}
.y19{bottom:327.295350px;}
.ya4{bottom:340.795350px;}
.yf0{bottom:344.675250px;}
.y3d{bottom:347.545200px;}
.yc{bottom:347.545350px;}
.ya3{bottom:358.795350px;}
.y3c{bottom:367.795200px;}
.yb{bottom:367.795350px;}
.yef{bottom:368.929200px;}
.ya2{bottom:376.795350px;}
.y3b{bottom:388.045200px;}
.ya{bottom:388.045350px;}
.yee{bottom:393.183150px;}
.ya1{bottom:394.795350px;}
.y3a{bottom:408.295200px;}
.y9{bottom:408.295350px;}
.yed{bottom:408.933150px;}
.ya0{bottom:412.795350px;}
.y7e{bottom:415.322850px;}
.y39{bottom:428.545200px;}
.y8{bottom:428.545350px;}
.y9f{bottom:430.795350px;}
.y90{bottom:448.795200px;}
.y7{bottom:448.795350px;}
.yec{bottom:448.937100px;}
.y8f{bottom:469.045200px;}
.y6{bottom:469.045350px;}
.y9e{bottom:473.545350px;}
.y38{bottom:476.545200px;}
.y93{bottom:489.295200px;}
.y5{bottom:489.295350px;}
.y9d{bottom:491.545350px;}
.y37{bottom:509.545200px;}
.y4{bottom:509.545350px;}
.y88{bottom:529.795200px;}
.y8e{bottom:529.795350px;}
.y87{bottom:550.045200px;}
.y3{bottom:550.045350px;}
.y36{bottom:570.295200px;}
.y86{bottom:590.545200px;}
.yeb{bottom:609.448800px;}
.y85{bottom:610.795350px;}
.y35{bottom:622.795200px;}
.yea{bottom:625.198800px;}
.yd4{bottom:626.456700px;}
.y64{bottom:631.045200px;}
.y84{bottom:631.045350px;}
.y34{bottom:639.295200px;}
.ye9{bottom:640.948800px;}
.ycb{bottom:642.206700px;}
.y83{bottom:651.295350px;}
.yca{bottom:657.956700px;}
.ye8{bottom:665.202750px;}
.y82{bottom:671.545350px;}
.yc9{bottom:673.706700px;}
.ye7{bottom:680.952750px;}
.yd3{bottom:689.456700px;}
.y97{bottom:691.045200px;}
.y81{bottom:691.795350px;}
.y60{bottom:691.795500px;}
.ye6{bottom:696.702750px;}
.yc8{bottom:697.960650px;}
.y1c{bottom:704.545200px;}
.yd2{bottom:705.206700px;}
.y96{bottom:707.545200px;}
.y91{bottom:712.045200px;}
.y80{bottom:712.045350px;}
.y5f{bottom:712.045500px;}
.ye5{bottom:712.452750px;}
.yc7{bottom:713.710650px;}
.y95{bottom:724.045200px;}
.ye4{bottom:728.202750px;}
.yc6{bottom:729.460650px;}
.y33{bottom:732.295200px;}
.y7f{bottom:732.295350px;}
.y5e{bottom:732.295500px;}
.y94{bottom:740.545200px;}
.ye3{bottom:743.952750px;}
.yc5{bottom:745.210650px;}
.y1b{bottom:752.545200px;}
.y9c{bottom:752.545350px;}
.y5d{bottom:752.545500px;}
.ye2{bottom:759.702750px;}
.yc4{bottom:760.960650px;}
.y32{bottom:772.795200px;}
.y9b{bottom:772.795350px;}
.y5c{bottom:772.795500px;}
.ye1{bottom:775.452750px;}
.yc3{bottom:776.710650px;}
.ye0{bottom:791.202750px;}
.yc2{bottom:792.460650px;}
.y31{bottom:793.045200px;}
.y9a{bottom:793.045350px;}
.y5b{bottom:793.045500px;}
.ydf{bottom:806.952750px;}
.yd1{bottom:808.210650px;}
.y30{bottom:813.295200px;}
.y99{bottom:813.295350px;}
.y5a{bottom:813.295500px;}
.yc1{bottom:816.714600px;}
.y21{bottom:820.045200px;}
.yde{bottom:822.702750px;}
.yc0{bottom:832.464600px;}
.y2f{bottom:833.545200px;}
.y98{bottom:833.545350px;}
.y59{bottom:833.545500px;}
.ydd{bottom:838.452750px;}
.ybf{bottom:848.214600px;}
.y2e{bottom:853.795200px;}
.y6e{bottom:853.795350px;}
.y58{bottom:853.795500px;}
.ydc{bottom:854.202750px;}
.ybe{bottom:863.964600px;}
.ydb{bottom:869.952750px;}
.y20{bottom:874.045200px;}
.y6d{bottom:874.045350px;}
.y57{bottom:874.045500px;}
.ybd{bottom:879.714600px;}
.yda{bottom:894.206700px;}
.y2d{bottom:894.295200px;}
.y6c{bottom:894.295350px;}
.y56{bottom:894.295500px;}
.ybc{bottom:895.464600px;}
.yd0{bottom:903.968400px;}
.yd9{bottom:909.956700px;}
.ybb{bottom:911.214600px;}
.y2c{bottom:914.545200px;}
.y6b{bottom:914.545350px;}
.y55{bottom:914.545500px;}
.ycf{bottom:919.718400px;}
.yba{bottom:926.964600px;}
.y1f{bottom:928.045200px;}
.yd8{bottom:934.210650px;}
.y2b{bottom:934.795200px;}
.y6a{bottom:934.795350px;}
.y54{bottom:934.795500px;}
.yce{bottom:935.468400px;}
.yd7{bottom:949.960650px;}
.yb9{bottom:951.218400px;}
.y2a{bottom:955.045200px;}
.y53{bottom:955.045500px;}
.yd6{bottom:965.710650px;}
.yb8{bottom:966.968400px;}
.y29{bottom:975.295200px;}
.y69{bottom:975.295350px;}
.y52{bottom:975.295500px;}
.yd5{bottom:981.460650px;}
.y1e{bottom:982.045200px;}
.yb7{bottom:982.718400px;}
.y28{bottom:995.545200px;}
.y68{bottom:995.545350px;}
.y51{bottom:995.545500px;}
.yb6{bottom:998.468400px;}
.yb5{bottom:1014.218400px;}
.y27{bottom:1015.795200px;}
.y67{bottom:1015.795350px;}
.y50{bottom:1015.795500px;}
.ycd{bottom:1022.722350px;}
.yb4{bottom:1029.968400px;}
.y1d{bottom:1036.045200px;}
.y66{bottom:1036.045350px;}
.y4f{bottom:1036.045500px;}
.ycc{bottom:1038.472350px;}
.yb3{bottom:1054.222350px;}
.y26{bottom:1056.295200px;}
.y65{bottom:1056.295350px;}
.y4e{bottom:1056.295500px;}
.yb2{bottom:1069.972350px;}
.y25{bottom:1076.545200px;}
.y4d{bottom:1076.545500px;}
.yb1{bottom:1085.722350px;}
.y70{bottom:1091.545200px;}
.y24{bottom:1096.795200px;}
.yb0{bottom:1101.472350px;}
.y6f{bottom:1117.045200px;}
.yaf{bottom:1117.222350px;}
.y2{bottom:1122.047100px;}
.y92{bottom:1124.545200px;}
.y4c{bottom:1124.545500px;}
.y89{bottom:1157.545200px;}
.y23{bottom:1157.545350px;}
.y4b{bottom:1157.545500px;}
.y1a{bottom:1161.986400px;}
.y22{bottom:1216.818900px;}
.h11{height:30.702000px;}
.h14{height:31.032000px;}
.h13{height:32.625000px;}
.h15{height:32.895000px;}
.h10{height:34.800000px;}
.h4{height:35.088000px;}
.h12{height:38.790000px;}
.h2{height:41.376000px;}
.h5{height:43.500000px;}
.hc{height:43.860000px;}
.h6{height:47.400000px;}
.he{height:50.439000px;}
.hb{height:51.720000px;}
.hf{height:60.900000px;}
.h3{height:63.075000px;}
.hd{height:73.950000px;}
.h7{height:82.650000px;}
.h8{height:121.800000px;}
.h9{height:156.600000px;}
.ha{height:170.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:59.527500px;}
.x2{left:66.655500px;}
.x19{left:68.587650px;}
.xa{left:72.283500px;}
.x12{left:76.783500px;}
.x14{left:85.843500px;}
.x13{left:93.791250px;}
.x4{left:108.425250px;}
.xb{left:155.444850px;}
.xc{left:164.504850px;}
.xd{left:172.452750px;}
.x1b{left:314.645700px;}
.x5{left:323.149650px;}
.x15{left:357.413400px;}
.x17{left:366.473400px;}
.x16{left:374.421300px;}
.x7{left:389.055150px;}
.x1a{left:419.066850px;}
.x8{left:454.960650px;}
.xe{left:459.212550px;}
.x3{left:520.866150px;}
.x6{left:586.771650px;}
.x18{left:603.779550px;}
.xf{left:638.043300px;}
.x11{left:647.103300px;}
.x10{left:655.051050px;}
.x9{left:718.582650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.320000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls3{letter-spacing:1.066667pt;}
.ls1{letter-spacing:1.706667pt;}
.ls0{letter-spacing:3.093333pt;}
.ls6{letter-spacing:28.258667pt;}
.ls5{letter-spacing:28.259200pt;}
.ws0{word-spacing:-22.194667pt;}
.wsf{word-spacing:-14.506667pt;}
.wse{word-spacing:-13.973333pt;}
.ws8{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.173333pt;}
.ws9{word-spacing:-12.693333pt;}
.ws12{word-spacing:-9.880000pt;}
.ws10{word-spacing:-9.520000pt;}
.ws11{word-spacing:-5.760040pt;}
.ws5{word-spacing:-3.840000pt;}
.ws4{word-spacing:-2.986667pt;}
.ws6{word-spacing:-1.813333pt;}
.ws16{word-spacing:-1.706667pt;}
.wsc{word-spacing:-1.493333pt;}
.wsa{word-spacing:-1.226667pt;}
.ws7{word-spacing:-1.120000pt;}
.ws3{word-spacing:-1.066667pt;}
.ws2{word-spacing:-0.853333pt;}
.ws15{word-spacing:-0.840000pt;}
.ws14{word-spacing:-0.800000pt;}
.ws13{word-spacing:-0.746667pt;}
.ws17{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-45.386667pt;}
._f{margin-left:-9.093333pt;}
._e{margin-left:-6.613333pt;}
._6{margin-left:-5.013867pt;}
._1{margin-left:-3.325333pt;}
._0{margin-left:-1.706667pt;}
._2{width:1.280000pt;}
._d{width:2.194667pt;}
._8{width:3.626667pt;}
._11{width:12.704000pt;}
._c{width:15.733333pt;}
._7{width:18.250133pt;}
._4{width:21.130133pt;}
._5{width:22.356800pt;}
._b{width:25.760000pt;}
._3{width:29.503467pt;}
._9{width:562.501333pt;}
._10{width:1643.446400pt;}
.fsb{font-size:23.320000pt;}
.fsc{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:61.333333pt;}
.fs8{font-size:74.666667pt;}
.fs1{font-size:77.333333pt;}
.fs6{font-size:90.666667pt;}
.fs3{font-size:101.333333pt;}
.fs4{font-size:149.333333pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.929067pt;}
.yae{bottom:40.929067pt;}
.yad{bottom:56.929067pt;}
.y7d{bottom:74.740133pt;}
.y4a{bottom:74.929067pt;}
.y18{bottom:74.929200pt;}
.y7c{bottom:89.406800pt;}
.y63{bottom:92.375333pt;}
.y49{bottom:92.929067pt;}
.y17{bottom:92.929200pt;}
.y7b{bottom:104.073467pt;}
.y62{bottom:107.042000pt;}
.y48{bottom:110.929067pt;}
.y16{bottom:110.929200pt;}
.y7a{bottom:118.740133pt;}
.yac{bottom:118.929200pt;}
.y61{bottom:121.708667pt;}
.y47{bottom:128.929067pt;}
.y15{bottom:128.929200pt;}
.y8d{bottom:129.595600pt;}
.y79{bottom:133.406800pt;}
.yab{bottom:134.929200pt;}
.y8c{bottom:144.262267pt;}
.y46{bottom:146.929067pt;}
.y14{bottom:146.929200pt;}
.y78{bottom:148.073467pt;}
.yaa{bottom:150.929200pt;}
.y8b{bottom:158.928933pt;}
.y77{bottom:162.740133pt;}
.y45{bottom:164.929067pt;}
.y13{bottom:164.929200pt;}
.ya9{bottom:166.929200pt;}
.y8a{bottom:173.595600pt;}
.y76{bottom:177.406800pt;}
.y44{bottom:182.929067pt;}
.y12{bottom:182.929200pt;}
.y75{bottom:192.073467pt;}
.yf7{bottom:193.259867pt;}
.y43{bottom:200.929067pt;}
.y11{bottom:200.929200pt;}
.y74{bottom:206.740133pt;}
.ya8{bottom:206.929200pt;}
.yf6{bottom:207.259867pt;}
.y42{bottom:218.929067pt;}
.y10{bottom:218.929200pt;}
.y73{bottom:221.406800pt;}
.ya7{bottom:222.929200pt;}
.yf5{bottom:228.818933pt;}
.y72{bottom:236.073467pt;}
.y41{bottom:236.929067pt;}
.yf{bottom:236.929200pt;}
.ya6{bottom:238.929200pt;}
.yf4{bottom:242.818933pt;}
.y71{bottom:250.740133pt;}
.y40{bottom:254.929067pt;}
.ye{bottom:254.929200pt;}
.yf3{bottom:256.818933pt;}
.yf2{bottom:270.818933pt;}
.y3f{bottom:272.929067pt;}
.yd{bottom:272.929200pt;}
.yf1{bottom:284.818933pt;}
.ya5{bottom:286.929200pt;}
.y3e{bottom:290.929067pt;}
.y19{bottom:290.929200pt;}
.ya4{bottom:302.929200pt;}
.yf0{bottom:306.378000pt;}
.y3d{bottom:308.929067pt;}
.yc{bottom:308.929200pt;}
.ya3{bottom:318.929200pt;}
.y3c{bottom:326.929067pt;}
.yb{bottom:326.929200pt;}
.yef{bottom:327.937067pt;}
.ya2{bottom:334.929200pt;}
.y3b{bottom:344.929067pt;}
.ya{bottom:344.929200pt;}
.yee{bottom:349.496133pt;}
.ya1{bottom:350.929200pt;}
.y3a{bottom:362.929067pt;}
.y9{bottom:362.929200pt;}
.yed{bottom:363.496133pt;}
.ya0{bottom:366.929200pt;}
.y7e{bottom:369.175867pt;}
.y39{bottom:380.929067pt;}
.y8{bottom:380.929200pt;}
.y9f{bottom:382.929200pt;}
.y90{bottom:398.929067pt;}
.y7{bottom:398.929200pt;}
.yec{bottom:399.055200pt;}
.y8f{bottom:416.929067pt;}
.y6{bottom:416.929200pt;}
.y9e{bottom:420.929200pt;}
.y38{bottom:423.595733pt;}
.y93{bottom:434.929067pt;}
.y5{bottom:434.929200pt;}
.y9d{bottom:436.929200pt;}
.y37{bottom:452.929067pt;}
.y4{bottom:452.929200pt;}
.y88{bottom:470.929067pt;}
.y8e{bottom:470.929200pt;}
.y87{bottom:488.929067pt;}
.y3{bottom:488.929200pt;}
.y36{bottom:506.929067pt;}
.y86{bottom:524.929067pt;}
.yeb{bottom:541.732267pt;}
.y85{bottom:542.929200pt;}
.y35{bottom:553.595733pt;}
.yea{bottom:555.732267pt;}
.yd4{bottom:556.850400pt;}
.y64{bottom:560.929067pt;}
.y84{bottom:560.929200pt;}
.y34{bottom:568.262400pt;}
.ye9{bottom:569.732267pt;}
.ycb{bottom:570.850400pt;}
.y83{bottom:578.929200pt;}
.yca{bottom:584.850400pt;}
.ye8{bottom:591.291333pt;}
.y82{bottom:596.929200pt;}
.yc9{bottom:598.850400pt;}
.ye7{bottom:605.291333pt;}
.yd3{bottom:612.850400pt;}
.y97{bottom:614.262400pt;}
.y81{bottom:614.929200pt;}
.y60{bottom:614.929333pt;}
.ye6{bottom:619.291333pt;}
.yc8{bottom:620.409467pt;}
.y1c{bottom:626.262400pt;}
.yd2{bottom:626.850400pt;}
.y96{bottom:628.929067pt;}
.y91{bottom:632.929067pt;}
.y80{bottom:632.929200pt;}
.y5f{bottom:632.929333pt;}
.ye5{bottom:633.291333pt;}
.yc7{bottom:634.409467pt;}
.y95{bottom:643.595733pt;}
.ye4{bottom:647.291333pt;}
.yc6{bottom:648.409467pt;}
.y33{bottom:650.929067pt;}
.y7f{bottom:650.929200pt;}
.y5e{bottom:650.929333pt;}
.y94{bottom:658.262400pt;}
.ye3{bottom:661.291333pt;}
.yc5{bottom:662.409467pt;}
.y1b{bottom:668.929067pt;}
.y9c{bottom:668.929200pt;}
.y5d{bottom:668.929333pt;}
.ye2{bottom:675.291333pt;}
.yc4{bottom:676.409467pt;}
.y32{bottom:686.929067pt;}
.y9b{bottom:686.929200pt;}
.y5c{bottom:686.929333pt;}
.ye1{bottom:689.291333pt;}
.yc3{bottom:690.409467pt;}
.ye0{bottom:703.291333pt;}
.yc2{bottom:704.409467pt;}
.y31{bottom:704.929067pt;}
.y9a{bottom:704.929200pt;}
.y5b{bottom:704.929333pt;}
.ydf{bottom:717.291333pt;}
.yd1{bottom:718.409467pt;}
.y30{bottom:722.929067pt;}
.y99{bottom:722.929200pt;}
.y5a{bottom:722.929333pt;}
.yc1{bottom:725.968533pt;}
.y21{bottom:728.929067pt;}
.yde{bottom:731.291333pt;}
.yc0{bottom:739.968533pt;}
.y2f{bottom:740.929067pt;}
.y98{bottom:740.929200pt;}
.y59{bottom:740.929333pt;}
.ydd{bottom:745.291333pt;}
.ybf{bottom:753.968533pt;}
.y2e{bottom:758.929067pt;}
.y6e{bottom:758.929200pt;}
.y58{bottom:758.929333pt;}
.ydc{bottom:759.291333pt;}
.ybe{bottom:767.968533pt;}
.ydb{bottom:773.291333pt;}
.y20{bottom:776.929067pt;}
.y6d{bottom:776.929200pt;}
.y57{bottom:776.929333pt;}
.ybd{bottom:781.968533pt;}
.yda{bottom:794.850400pt;}
.y2d{bottom:794.929067pt;}
.y6c{bottom:794.929200pt;}
.y56{bottom:794.929333pt;}
.ybc{bottom:795.968533pt;}
.yd0{bottom:803.527467pt;}
.yd9{bottom:808.850400pt;}
.ybb{bottom:809.968533pt;}
.y2c{bottom:812.929067pt;}
.y6b{bottom:812.929200pt;}
.y55{bottom:812.929333pt;}
.ycf{bottom:817.527467pt;}
.yba{bottom:823.968533pt;}
.y1f{bottom:824.929067pt;}
.yd8{bottom:830.409467pt;}
.y2b{bottom:830.929067pt;}
.y6a{bottom:830.929200pt;}
.y54{bottom:830.929333pt;}
.yce{bottom:831.527467pt;}
.yd7{bottom:844.409467pt;}
.yb9{bottom:845.527467pt;}
.y2a{bottom:848.929067pt;}
.y53{bottom:848.929333pt;}
.yd6{bottom:858.409467pt;}
.yb8{bottom:859.527467pt;}
.y29{bottom:866.929067pt;}
.y69{bottom:866.929200pt;}
.y52{bottom:866.929333pt;}
.yd5{bottom:872.409467pt;}
.y1e{bottom:872.929067pt;}
.yb7{bottom:873.527467pt;}
.y28{bottom:884.929067pt;}
.y68{bottom:884.929200pt;}
.y51{bottom:884.929333pt;}
.yb6{bottom:887.527467pt;}
.yb5{bottom:901.527467pt;}
.y27{bottom:902.929067pt;}
.y67{bottom:902.929200pt;}
.y50{bottom:902.929333pt;}
.ycd{bottom:909.086533pt;}
.yb4{bottom:915.527467pt;}
.y1d{bottom:920.929067pt;}
.y66{bottom:920.929200pt;}
.y4f{bottom:920.929333pt;}
.ycc{bottom:923.086533pt;}
.yb3{bottom:937.086533pt;}
.y26{bottom:938.929067pt;}
.y65{bottom:938.929200pt;}
.y4e{bottom:938.929333pt;}
.yb2{bottom:951.086533pt;}
.y25{bottom:956.929067pt;}
.y4d{bottom:956.929333pt;}
.yb1{bottom:965.086533pt;}
.y70{bottom:970.262400pt;}
.y24{bottom:974.929067pt;}
.yb0{bottom:979.086533pt;}
.y6f{bottom:992.929067pt;}
.yaf{bottom:993.086533pt;}
.y2{bottom:997.375200pt;}
.y92{bottom:999.595733pt;}
.y4c{bottom:999.596000pt;}
.y89{bottom:1028.929067pt;}
.y23{bottom:1028.929200pt;}
.y4b{bottom:1028.929333pt;}
.y1a{bottom:1032.876800pt;}
.y22{bottom:1081.616800pt;}
.h11{height:27.290667pt;}
.h14{height:27.584000pt;}
.h13{height:29.000000pt;}
.h15{height:29.240000pt;}
.h10{height:30.933333pt;}
.h4{height:31.189333pt;}
.h12{height:34.480000pt;}
.h2{height:36.778667pt;}
.h5{height:38.666667pt;}
.hc{height:38.986667pt;}
.h6{height:42.133333pt;}
.he{height:44.834667pt;}
.hb{height:45.973333pt;}
.hf{height:54.133333pt;}
.h3{height:56.066667pt;}
.hd{height:65.733333pt;}
.h7{height:73.466667pt;}
.h8{height:108.266667pt;}
.h9{height:139.200000pt;}
.ha{height:151.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.913333pt;}
.x2{left:59.249333pt;}
.x19{left:60.966800pt;}
.xa{left:64.252000pt;}
.x12{left:68.252000pt;}
.x14{left:76.305333pt;}
.x13{left:83.370000pt;}
.x4{left:96.378000pt;}
.xb{left:138.173200pt;}
.xc{left:146.226533pt;}
.xd{left:153.291333pt;}
.x1b{left:279.685067pt;}
.x5{left:287.244133pt;}
.x15{left:317.700800pt;}
.x17{left:325.754133pt;}
.x16{left:332.818933pt;}
.x7{left:345.826800pt;}
.x1a{left:372.503867pt;}
.x8{left:404.409467pt;}
.xe{left:408.188933pt;}
.x3{left:462.992133pt;}
.x6{left:521.574800pt;}
.x18{left:536.692933pt;}
.xf{left:567.149600pt;}
.x11{left:575.202933pt;}
.x10{left:582.267600pt;}
.x9{left:638.740133pt;}
}




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