
    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_7e8a88e1d93fc57ca2c9d253.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.164551;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_3e5baaa53891d6d96383fdc3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.175781;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_85934573c2265e71144c3c14.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_81dcf4d22b176f673c7495f7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931641;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_4ba96e0a10e37f5cca513a9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.175781;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_15121f481846b4165bd91626.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a459b5b2cc8fc41728cfa7f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.164551;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;}
.lsd{letter-spacing:-0.768000px;}
.ls8{letter-spacing:-0.612000px;}
.ls29{letter-spacing:-0.450000px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.193800px;}
.ls17{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.126000px;}
.ls5{letter-spacing:-0.045600px;}
.ls19{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.015000px;}
.ls2{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.126000px;}
.ls15{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.181200px;}
.ls3{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.269280px;}
.ls21{letter-spacing:0.269400px;}
.ls20{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.522000px;}
.ls24{letter-spacing:1.548000px;}
.ls28{letter-spacing:2.988000px;}
.ls26{letter-spacing:3.869280px;}
.ls11{letter-spacing:4.589280px;}
.ls4{letter-spacing:5.868000px;}
.ls14{letter-spacing:6.029280px;}
.ls1f{letter-spacing:6.749280px;}
.ls23{letter-spacing:7.469280px;}
.lsa{letter-spacing:8.189280px;}
.ls10{letter-spacing:11.069280px;}
.ls13{letter-spacing:11.789280px;}
.ls1c{letter-spacing:14.669280px;}
.ls7{letter-spacing:15.228000px;}
.ls6{letter-spacing:15.948000px;}
.ls1b{letter-spacing:17.549280px;}
.ls1a{letter-spacing:18.828000px;}
.ls1e{letter-spacing:23.868000px;}
.ls22{letter-spacing:24.749280px;}
.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;}
}
.wse{word-spacing:-32.724000px;}
.wsd{word-spacing:-15.372000px;}
.wsc{word-spacing:-15.030000px;}
.ws1{word-spacing:-15.012000px;}
.wsa{word-spacing:-14.976000px;}
.ws5{word-spacing:-14.796000px;}
.ws4{word-spacing:-14.724000px;}
.ws0{word-spacing:-13.844880px;}
.ws7{word-spacing:-13.591920px;}
.ws6{word-spacing:-13.410720px;}
.ws3{word-spacing:-13.365120px;}
.wsb{word-spacing:-13.229520px;}
.ws9{word-spacing:-13.216920px;}
.ws8{word-spacing:-12.642720px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.013040px;}
._3{width:1.833120px;}
._2{width:2.942640px;}
._4{width:4.478400px;}
._e{width:5.832000px;}
._f{width:7.128000px;}
._8{width:8.560080px;}
._7{width:9.840960px;}
._5{width:10.902240px;}
._6{width:12.301200px;}
._b{width:13.392720px;}
._1{width:14.718960px;}
._13{width:16.727040px;}
._12{width:17.766000px;}
._d{width:18.846000px;}
._11{width:19.980000px;}
._a{width:21.114000px;}
._9{width:23.040000px;}
._16{width:24.786000px;}
._10{width:25.866000px;}
._14{width:27.216000px;}
._15{width:29.221680px;}
._1c{width:30.865200px;}
._18{width:32.022000px;}
._17{width:33.804000px;}
._19{width:34.858080px;}
._20{width:36.117360px;}
._23{width:38.472240px;}
._c{width:40.176000px;}
._1b{width:41.410080px;}
._1a{width:42.516000px;}
._1e{width:47.345040px;}
._1d{width:48.384000px;}
._24{width:53.622000px;}
._22{width:54.743040px;}
._21{width:56.052000px;}
._1f{width:57.132000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:223.770000px;}
.y68{bottom:249.330000px;}
.yab{bottom:250.590000px;}
.y30{bottom:261.030000px;}
.y67{bottom:265.530000px;}
.y5e{bottom:269.310000px;}
.y2f{bottom:277.275000px;}
.y66{bottom:281.775000px;}
.y5d{bottom:283.935000px;}
.y99{bottom:285.735000px;}
.y2e{bottom:293.475000px;}
.y65{bottom:297.975000px;}
.yd5{bottom:298.155000px;}
.y5c{bottom:298.335000px;}
.yd2{bottom:300.315000px;}
.y98{bottom:306.975000px;}
.y2d{bottom:309.675000px;}
.y5b{bottom:312.735000px;}
.ya1{bottom:314.175000px;}
.y64{bottom:314.355000px;}
.yb8{bottom:314.715000px;}
.ycf{bottom:323.175000px;}
.y97{bottom:323.355000px;}
.y2c{bottom:325.875000px;}
.y73{bottom:327.135000px;}
.y5a{bottom:329.115000px;}
.y63{bottom:330.555000px;}
.y96{bottom:339.555000px;}
.y72{bottom:341.535000px;}
.y2b{bottom:342.255000px;}
.y62{bottom:346.755000px;}
.yb7{bottom:350.535000px;}
.y95{bottom:355.755000px;}
.y71{bottom:355.935000px;}
.yc6{bottom:357.915000px;}
.y2a{bottom:358.455000px;}
.y59{bottom:362.955000px;}
.yaa{bottom:370.335000px;}
.y70{bottom:370.515000px;}
.y94{bottom:371.955000px;}
.yc3{bottom:372.315000px;}
.y29{bottom:374.655000px;}
.yce{bottom:375.735000px;}
.y58{bottom:379.155000px;}
.yd1{bottom:382.935000px;}
.y6f{bottom:384.915000px;}
.y93{bottom:388.155000px;}
.y28{bottom:390.855000px;}
.y57{bottom:395.355000px;}
.yd4{bottom:395.535000px;}
.yb6{bottom:399.135000px;}
.ya0{bottom:399.315000px;}
.y6e{bottom:401.295000px;}
.y92{bottom:404.355000px;}
.y27{bottom:407.055000px;}
.y56{bottom:411.555000px;}
.y61{bottom:411.735000px;}
.y9f{bottom:413.715000px;}
.ycd{bottom:420.555000px;}
.y91{bottom:420.735000px;}
.y26{bottom:423.435000px;}
.y6d{bottom:427.755000px;}
.y55{bottom:427.935000px;}
.ya9{bottom:428.115000px;}
.y9e{bottom:430.095000px;}
.y90{bottom:436.935000px;}
.y25{bottom:439.635000px;}
.ya8{bottom:442.515000px;}
.y54{bottom:444.135000px;}
.yc8{bottom:444.495000px;}
.y8f{bottom:453.135000px;}
.y24{bottom:455.835000px;}
.ya7{bottom:456.915000px;}
.y53{bottom:460.335000px;}
.y8e{bottom:469.335000px;}
.ya6{bottom:471.495000px;}
.y23{bottom:472.035000px;}
.y52{bottom:476.535000px;}
.y8d{bottom:485.535000px;}
.yb5{bottom:485.895000px;}
.ya5{bottom:487.875000px;}
.y22{bottom:488.235000px;}
.y51{bottom:492.735000px;}
.yb4{bottom:500.295000px;}
.y8c{bottom:501.735000px;}
.y21{bottom:504.435000px;}
.y50{bottom:508.935000px;}
.y60{bottom:509.115000px;}
.ya4{bottom:512.895000px;}
.yb3{bottom:514.695000px;}
.y8b{bottom:518.115000px;}
.y20{bottom:520.815000px;}
.y6c{bottom:525.135000px;}
.y4f{bottom:525.315000px;}
.yb2{bottom:529.095000px;}
.y8a{bottom:534.315000px;}
.y1f{bottom:537.015000px;}
.y4e{bottom:541.515000px;}
.yb1{bottom:543.495000px;}
.y6b{bottom:544.575000px;}
.y89{bottom:550.515000px;}
.y1e{bottom:553.215000px;}
.y4d{bottom:557.745000px;}
.yc0{bottom:557.925000px;}
.yb0{bottom:559.905000px;}
.yd0{bottom:561.525000px;}
.y88{bottom:566.745000px;}
.y1d{bottom:569.445000px;}
.ybf{bottom:572.505000px;}
.y4c{bottom:573.945000px;}
.y87{bottom:582.945000px;}
.ycc{bottom:583.845000px;}
.y1c{bottom:585.645000px;}
.ybe{bottom:586.905000px;}
.y4b{bottom:590.145000px;}
.yc2{bottom:593.925000px;}
.y86{bottom:599.145000px;}
.ybd{bottom:601.305000px;}
.y1b{bottom:602.025000px;}
.ycb{bottom:602.745000px;}
.y49{bottom:606.345000px;}
.y5f{bottom:606.525000px;}
.y4a{bottom:610.125000px;}
.y85{bottom:615.525000px;}
.ybc{bottom:615.705000px;}
.y1a{bottom:618.225000px;}
.yca{bottom:619.125000px;}
.y48{bottom:622.725000px;}
.yaf{bottom:626.505000px;}
.y84{bottom:631.725000px;}
.ybb{bottom:632.085000px;}
.y19{bottom:634.425000px;}
.yc9{bottom:636.225000px;}
.y47{bottom:638.925000px;}
.yc1{bottom:642.705000px;}
.y83{bottom:647.925000px;}
.y18{bottom:650.625000px;}
.y46{bottom:655.125000px;}
.yc5{bottom:658.905000px;}
.y81{bottom:664.125000px;}
.y17{bottom:666.825000px;}
.y82{bottom:667.905000px;}
.y45{bottom:671.325000px;}
.yba{bottom:675.105000px;}
.y80{bottom:680.325000px;}
.y16{bottom:683.925000px;}
.y44{bottom:687.525000px;}
.y9d{bottom:691.305000px;}
.y7f{bottom:696.525000px;}
.y15{bottom:703.005000px;}
.y6a{bottom:703.725000px;}
.y43{bottom:703.905000px;}
.y7e{bottom:712.905000px;}
.y14{bottom:720.105000px;}
.yc4{bottom:723.885000px;}
.y7d{bottom:729.105000px;}
.y42{bottom:736.305000px;}
.y13{bottom:738.825000px;}
.yb9{bottom:740.085000px;}
.y7c{bottom:745.305000px;}
.y41{bottom:752.505000px;}
.y12{bottom:753.045000px;}
.y7b{bottom:761.505000px;}
.y11{bottom:767.445000px;}
.y40{bottom:768.705000px;}
.yac{bottom:772.485000px;}
.y7a{bottom:777.705000px;}
.y10{bottom:781.845000px;}
.y3f{bottom:784.905000px;}
.y79{bottom:793.905000px;}
.yf{bottom:796.245000px;}
.y9c{bottom:801.105000px;}
.y3e{bottom:801.285000px;}
.ya2{bottom:805.065000px;}
.y78{bottom:810.285000px;}
.ye{bottom:810.825000px;}
.y3d{bottom:817.485000px;}
.y9b{bottom:821.265000px;}
.yd{bottom:825.225000px;}
.y77{bottom:827.205000px;}
.y3c{bottom:833.685000px;}
.yae{bottom:837.465000px;}
.yc{bottom:839.670000px;}
.y76{bottom:846.330000px;}
.y3a{bottom:849.930000px;}
.y3b{bottom:853.710000px;}
.yb{bottom:854.070000px;}
.yd3{bottom:861.810000px;}
.y75{bottom:862.530000px;}
.y39{bottom:866.130000px;}
.ya{bottom:868.470000px;}
.y74{bottom:879.630000px;}
.y38{bottom:882.330000px;}
.y9{bottom:882.870000px;}
.y8{bottom:897.450000px;}
.y69{bottom:898.530000px;}
.y37{bottom:898.710000px;}
.y36{bottom:914.910000px;}
.y9a{bottom:918.690000px;}
.y7{bottom:920.310000px;}
.y35{bottom:931.110000px;}
.y6{bottom:937.230000px;}
.y34{bottom:947.310000px;}
.y5{bottom:956.310000px;}
.y33{bottom:963.510000px;}
.yc7{bottom:967.290000px;}
.y4{bottom:973.230000px;}
.y32{bottom:979.710000px;}
.yad{bottom:983.490000px;}
.y3{bottom:993.210000px;}
.y31{bottom:996.090000px;}
.ya3{bottom:999.870000px;}
.y1{bottom:1029.930000px;}
.he{height:34.892578px;}
.hc{height:35.314453px;}
.h8{height:35.661797px;}
.h7{height:35.756016px;}
.ha{height:39.919922px;}
.h5{height:40.025391px;}
.h2{height:46.756055px;}
.h6{height:47.321367px;}
.h9{height:48.968437px;}
.h3{height:52.971680px;}
.h4{height:64.978594px;}
.hf{height:70.628906px;}
.hd{height:74.004654px;}
.hb{height:1262.878500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:191.370000px;}
.x9{left:198.030000px;}
.x18{left:204.690000px;}
.x4{left:212.610000px;}
.x1f{left:239.428500px;}
.x16{left:249.868500px;}
.x5{left:252.568500px;}
.x6{left:257.610000px;}
.x17{left:259.950000px;}
.x2c{left:268.410000px;}
.x1b{left:273.628500px;}
.x1c{left:283.710000px;}
.x2d{left:289.648500px;}
.x22{left:291.628500px;}
.x2e{left:299.775000px;}
.x23{left:301.755000px;}
.x19{left:304.813500px;}
.x1{left:313.455000px;}
.x1a{left:314.895000px;}
.x36{left:332.713500px;}
.x34{left:334.153500px;}
.x37{left:342.795000px;}
.x35{left:344.235000px;}
.x20{left:383.833500px;}
.x21{left:393.915000px;}
.x2{left:426.855000px;}
.x24{left:468.253500px;}
.x25{left:478.335000px;}
.x3a{left:485.535000px;}
.x2b{left:487.695000px;}
.x31{left:496.693500px;}
.x32{left:506.805000px;}
.xc{left:508.603500px;}
.xd{left:513.645000px;}
.x3c{left:528.585000px;}
.x2f{left:536.143500px;}
.x30{left:546.225000px;}
.xe{left:587.263500px;}
.x7{left:590.863500px;}
.xf{left:592.305000px;}
.x1d{left:594.463500px;}
.x8{left:595.905000px;}
.x39{left:603.105000px;}
.x1e{left:604.545000px;}
.xa{left:612.463500px;}
.xb{left:617.505000px;}
.x3b{left:620.385000px;}
.x12{left:630.283500px;}
.x13{left:635.325000px;}
.x28{left:646.123500px;}
.x10{left:653.863500px;}
.x26{left:655.303500px;}
.x11{left:658.905000px;}
.x29{left:663.043500px;}
.x27{left:665.385000px;}
.x2a{left:673.125000px;}
.x33{left:682.663500px;}
.x14{left:692.923500px;}
.x15{left:698.010000px;}
.x38{left:701.610000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.682667pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls29{letter-spacing:-0.400000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.172267pt;}
.ls17{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.112000pt;}
.ls5{letter-spacing:-0.040533pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.013333pt;}
.ls2{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.112000pt;}
.ls15{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls3{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.239360pt;}
.ls21{letter-spacing:0.239467pt;}
.ls20{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.464000pt;}
.ls24{letter-spacing:1.376000pt;}
.ls28{letter-spacing:2.656000pt;}
.ls26{letter-spacing:3.439360pt;}
.ls11{letter-spacing:4.079360pt;}
.ls4{letter-spacing:5.216000pt;}
.ls14{letter-spacing:5.359360pt;}
.ls1f{letter-spacing:5.999360pt;}
.ls23{letter-spacing:6.639360pt;}
.lsa{letter-spacing:7.279360pt;}
.ls10{letter-spacing:9.839360pt;}
.ls13{letter-spacing:10.479360pt;}
.ls1c{letter-spacing:13.039360pt;}
.ls7{letter-spacing:13.536000pt;}
.ls6{letter-spacing:14.176000pt;}
.ls1b{letter-spacing:15.599360pt;}
.ls1a{letter-spacing:16.736000pt;}
.ls1e{letter-spacing:21.216000pt;}
.ls22{letter-spacing:21.999360pt;}
.wse{word-spacing:-29.088000pt;}
.wsd{word-spacing:-13.664000pt;}
.wsc{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.344000pt;}
.wsa{word-spacing:-13.312000pt;}
.ws5{word-spacing:-13.152000pt;}
.ws4{word-spacing:-13.088000pt;}
.ws0{word-spacing:-12.306560pt;}
.ws7{word-spacing:-12.081707pt;}
.ws6{word-spacing:-11.920640pt;}
.ws3{word-spacing:-11.880107pt;}
.wsb{word-spacing:-11.759573pt;}
.ws9{word-spacing:-11.748373pt;}
.ws8{word-spacing:-11.237973pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-0.900480pt;}
._3{width:1.629440pt;}
._2{width:2.615680pt;}
._4{width:3.980800pt;}
._e{width:5.184000pt;}
._f{width:6.336000pt;}
._8{width:7.608960pt;}
._7{width:8.747520pt;}
._5{width:9.690880pt;}
._6{width:10.934400pt;}
._b{width:11.904640pt;}
._1{width:13.083520pt;}
._13{width:14.868480pt;}
._12{width:15.792000pt;}
._d{width:16.752000pt;}
._11{width:17.760000pt;}
._a{width:18.768000pt;}
._9{width:20.480000pt;}
._16{width:22.032000pt;}
._10{width:22.992000pt;}
._14{width:24.192000pt;}
._15{width:25.974827pt;}
._1c{width:27.435733pt;}
._18{width:28.464000pt;}
._17{width:30.048000pt;}
._19{width:30.984960pt;}
._20{width:32.104320pt;}
._23{width:34.197547pt;}
._c{width:35.712000pt;}
._1b{width:36.808960pt;}
._1a{width:37.792000pt;}
._1e{width:42.084480pt;}
._1d{width:43.008000pt;}
._24{width:47.664000pt;}
._22{width:48.660480pt;}
._21{width:49.824000pt;}
._1f{width:50.784000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:198.906667pt;}
.y68{bottom:221.626667pt;}
.yab{bottom:222.746667pt;}
.y30{bottom:232.026667pt;}
.y67{bottom:236.026667pt;}
.y5e{bottom:239.386667pt;}
.y2f{bottom:246.466667pt;}
.y66{bottom:250.466667pt;}
.y5d{bottom:252.386667pt;}
.y99{bottom:253.986667pt;}
.y2e{bottom:260.866667pt;}
.y65{bottom:264.866667pt;}
.yd5{bottom:265.026667pt;}
.y5c{bottom:265.186667pt;}
.yd2{bottom:266.946667pt;}
.y98{bottom:272.866667pt;}
.y2d{bottom:275.266667pt;}
.y5b{bottom:277.986667pt;}
.ya1{bottom:279.266667pt;}
.y64{bottom:279.426667pt;}
.yb8{bottom:279.746667pt;}
.ycf{bottom:287.266667pt;}
.y97{bottom:287.426667pt;}
.y2c{bottom:289.666667pt;}
.y73{bottom:290.786667pt;}
.y5a{bottom:292.546667pt;}
.y63{bottom:293.826667pt;}
.y96{bottom:301.826667pt;}
.y72{bottom:303.586667pt;}
.y2b{bottom:304.226667pt;}
.y62{bottom:308.226667pt;}
.yb7{bottom:311.586667pt;}
.y95{bottom:316.226667pt;}
.y71{bottom:316.386667pt;}
.yc6{bottom:318.146667pt;}
.y2a{bottom:318.626667pt;}
.y59{bottom:322.626667pt;}
.yaa{bottom:329.186667pt;}
.y70{bottom:329.346667pt;}
.y94{bottom:330.626667pt;}
.yc3{bottom:330.946667pt;}
.y29{bottom:333.026667pt;}
.yce{bottom:333.986667pt;}
.y58{bottom:337.026667pt;}
.yd1{bottom:340.386667pt;}
.y6f{bottom:342.146667pt;}
.y93{bottom:345.026667pt;}
.y28{bottom:347.426667pt;}
.y57{bottom:351.426667pt;}
.yd4{bottom:351.586667pt;}
.yb6{bottom:354.786667pt;}
.ya0{bottom:354.946667pt;}
.y6e{bottom:356.706667pt;}
.y92{bottom:359.426667pt;}
.y27{bottom:361.826667pt;}
.y56{bottom:365.826667pt;}
.y61{bottom:365.986667pt;}
.y9f{bottom:367.746667pt;}
.ycd{bottom:373.826667pt;}
.y91{bottom:373.986667pt;}
.y26{bottom:376.386667pt;}
.y6d{bottom:380.226667pt;}
.y55{bottom:380.386667pt;}
.ya9{bottom:380.546667pt;}
.y9e{bottom:382.306667pt;}
.y90{bottom:388.386667pt;}
.y25{bottom:390.786667pt;}
.ya8{bottom:393.346667pt;}
.y54{bottom:394.786667pt;}
.yc8{bottom:395.106667pt;}
.y8f{bottom:402.786667pt;}
.y24{bottom:405.186667pt;}
.ya7{bottom:406.146667pt;}
.y53{bottom:409.186667pt;}
.y8e{bottom:417.186667pt;}
.ya6{bottom:419.106667pt;}
.y23{bottom:419.586667pt;}
.y52{bottom:423.586667pt;}
.y8d{bottom:431.586667pt;}
.yb5{bottom:431.906667pt;}
.ya5{bottom:433.666667pt;}
.y22{bottom:433.986667pt;}
.y51{bottom:437.986667pt;}
.yb4{bottom:444.706667pt;}
.y8c{bottom:445.986667pt;}
.y21{bottom:448.386667pt;}
.y50{bottom:452.386667pt;}
.y60{bottom:452.546667pt;}
.ya4{bottom:455.906667pt;}
.yb3{bottom:457.506667pt;}
.y8b{bottom:460.546667pt;}
.y20{bottom:462.946667pt;}
.y6c{bottom:466.786667pt;}
.y4f{bottom:466.946667pt;}
.yb2{bottom:470.306667pt;}
.y8a{bottom:474.946667pt;}
.y1f{bottom:477.346667pt;}
.y4e{bottom:481.346667pt;}
.yb1{bottom:483.106667pt;}
.y6b{bottom:484.066667pt;}
.y89{bottom:489.346667pt;}
.y1e{bottom:491.746667pt;}
.y4d{bottom:495.773333pt;}
.yc0{bottom:495.933333pt;}
.yb0{bottom:497.693333pt;}
.yd0{bottom:499.133333pt;}
.y88{bottom:503.773333pt;}
.y1d{bottom:506.173333pt;}
.ybf{bottom:508.893333pt;}
.y4c{bottom:510.173333pt;}
.y87{bottom:518.173333pt;}
.ycc{bottom:518.973333pt;}
.y1c{bottom:520.573333pt;}
.ybe{bottom:521.693333pt;}
.y4b{bottom:524.573333pt;}
.yc2{bottom:527.933333pt;}
.y86{bottom:532.573333pt;}
.ybd{bottom:534.493333pt;}
.y1b{bottom:535.133333pt;}
.ycb{bottom:535.773333pt;}
.y49{bottom:538.973333pt;}
.y5f{bottom:539.133333pt;}
.y4a{bottom:542.333333pt;}
.y85{bottom:547.133333pt;}
.ybc{bottom:547.293333pt;}
.y1a{bottom:549.533333pt;}
.yca{bottom:550.333333pt;}
.y48{bottom:553.533333pt;}
.yaf{bottom:556.893333pt;}
.y84{bottom:561.533333pt;}
.ybb{bottom:561.853333pt;}
.y19{bottom:563.933333pt;}
.yc9{bottom:565.533333pt;}
.y47{bottom:567.933333pt;}
.yc1{bottom:571.293333pt;}
.y83{bottom:575.933333pt;}
.y18{bottom:578.333333pt;}
.y46{bottom:582.333333pt;}
.yc5{bottom:585.693333pt;}
.y81{bottom:590.333333pt;}
.y17{bottom:592.733333pt;}
.y82{bottom:593.693333pt;}
.y45{bottom:596.733333pt;}
.yba{bottom:600.093333pt;}
.y80{bottom:604.733333pt;}
.y16{bottom:607.933333pt;}
.y44{bottom:611.133333pt;}
.y9d{bottom:614.493333pt;}
.y7f{bottom:619.133333pt;}
.y15{bottom:624.893333pt;}
.y6a{bottom:625.533333pt;}
.y43{bottom:625.693333pt;}
.y7e{bottom:633.693333pt;}
.y14{bottom:640.093333pt;}
.yc4{bottom:643.453333pt;}
.y7d{bottom:648.093333pt;}
.y42{bottom:654.493333pt;}
.y13{bottom:656.733333pt;}
.yb9{bottom:657.853333pt;}
.y7c{bottom:662.493333pt;}
.y41{bottom:668.893333pt;}
.y12{bottom:669.373333pt;}
.y7b{bottom:676.893333pt;}
.y11{bottom:682.173333pt;}
.y40{bottom:683.293333pt;}
.yac{bottom:686.653333pt;}
.y7a{bottom:691.293333pt;}
.y10{bottom:694.973333pt;}
.y3f{bottom:697.693333pt;}
.y79{bottom:705.693333pt;}
.yf{bottom:707.773333pt;}
.y9c{bottom:712.093333pt;}
.y3e{bottom:712.253333pt;}
.ya2{bottom:715.613333pt;}
.y78{bottom:720.253333pt;}
.ye{bottom:720.733333pt;}
.y3d{bottom:726.653333pt;}
.y9b{bottom:730.013333pt;}
.yd{bottom:733.533333pt;}
.y77{bottom:735.293333pt;}
.y3c{bottom:741.053333pt;}
.yae{bottom:744.413333pt;}
.yc{bottom:746.373333pt;}
.y76{bottom:752.293333pt;}
.y3a{bottom:755.493333pt;}
.y3b{bottom:758.853333pt;}
.yb{bottom:759.173333pt;}
.yd3{bottom:766.053333pt;}
.y75{bottom:766.693333pt;}
.y39{bottom:769.893333pt;}
.ya{bottom:771.973333pt;}
.y74{bottom:781.893333pt;}
.y38{bottom:784.293333pt;}
.y9{bottom:784.773333pt;}
.y8{bottom:797.733333pt;}
.y69{bottom:798.693333pt;}
.y37{bottom:798.853333pt;}
.y36{bottom:813.253333pt;}
.y9a{bottom:816.613333pt;}
.y7{bottom:818.053333pt;}
.y35{bottom:827.653333pt;}
.y6{bottom:833.093333pt;}
.y34{bottom:842.053333pt;}
.y5{bottom:850.053333pt;}
.y33{bottom:856.453333pt;}
.yc7{bottom:859.813333pt;}
.y4{bottom:865.093333pt;}
.y32{bottom:870.853333pt;}
.yad{bottom:874.213333pt;}
.y3{bottom:882.853333pt;}
.y31{bottom:885.413333pt;}
.ya3{bottom:888.773333pt;}
.y1{bottom:915.493333pt;}
.he{height:31.015625pt;}
.hc{height:31.390625pt;}
.h8{height:31.699375pt;}
.h7{height:31.783125pt;}
.ha{height:35.484375pt;}
.h5{height:35.578125pt;}
.h2{height:41.560937pt;}
.h6{height:42.063437pt;}
.h9{height:43.527500pt;}
.h3{height:47.085938pt;}
.h4{height:57.758750pt;}
.hf{height:62.781250pt;}
.hd{height:65.781915pt;}
.hb{height:1122.558667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:170.106667pt;}
.x9{left:176.026667pt;}
.x18{left:181.946667pt;}
.x4{left:188.986667pt;}
.x1f{left:212.825333pt;}
.x16{left:222.105333pt;}
.x5{left:224.505333pt;}
.x6{left:228.986667pt;}
.x17{left:231.066667pt;}
.x2c{left:238.586667pt;}
.x1b{left:243.225333pt;}
.x1c{left:252.186667pt;}
.x2d{left:257.465333pt;}
.x22{left:259.225333pt;}
.x2e{left:266.466667pt;}
.x23{left:268.226667pt;}
.x19{left:270.945333pt;}
.x1{left:278.626667pt;}
.x1a{left:279.906667pt;}
.x36{left:295.745333pt;}
.x34{left:297.025333pt;}
.x37{left:304.706667pt;}
.x35{left:305.986667pt;}
.x20{left:341.185333pt;}
.x21{left:350.146667pt;}
.x2{left:379.426667pt;}
.x24{left:416.225333pt;}
.x25{left:425.186667pt;}
.x3a{left:431.586667pt;}
.x2b{left:433.506667pt;}
.x31{left:441.505333pt;}
.x32{left:450.493333pt;}
.xc{left:452.092000pt;}
.xd{left:456.573333pt;}
.x3c{left:469.853333pt;}
.x2f{left:476.572000pt;}
.x30{left:485.533333pt;}
.xe{left:522.012000pt;}
.x7{left:525.212000pt;}
.xf{left:526.493333pt;}
.x1d{left:528.412000pt;}
.x8{left:529.693333pt;}
.x39{left:536.093333pt;}
.x1e{left:537.373333pt;}
.xa{left:544.412000pt;}
.xb{left:548.893333pt;}
.x3b{left:551.453333pt;}
.x12{left:560.252000pt;}
.x13{left:564.733333pt;}
.x28{left:574.332000pt;}
.x10{left:581.212000pt;}
.x26{left:582.492000pt;}
.x11{left:585.693333pt;}
.x29{left:589.372000pt;}
.x27{left:591.453333pt;}
.x2a{left:598.333333pt;}
.x33{left:606.812000pt;}
.x14{left:615.932000pt;}
.x15{left:620.453333pt;}
.x38{left:623.653333pt;}
}




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