
    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_ba1f3240c83c99c349a9c514.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.285000;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_6c70381f078cdb5b26a8eac4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_b11eaef36fc10bd5f98b7583.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_00a9f989a52c2289c4984a1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_3410ca888a4a19fbfb1b0b04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7bceef1967b2b559e5bc6a94.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_1e5cb0051d13e5e9c723f2f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_518e7dfb9dcff41b3ed3f2f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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_49df36243765d8fc7b772026.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_ea8258c9d65e5b731b958f39.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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:ffb;src:url('chunks/assets/font_bd8bbfeb62d9fea270183754.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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:ffc;src:url('chunks/assets/font_3306deab9a54b56886885114.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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:ffd;src:url('chunks/assets/font_fbb629a93925d16fbe1cfa70.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.464000px;}
.lsd{letter-spacing:-0.714000px;}
.lsa{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.310200px;}
.ls5{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.191400px;}
.ls4{letter-spacing:-0.167400px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.094200px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.195000px;}
.ls15{letter-spacing:0.220800px;}
.ls17{letter-spacing:0.238200px;}
.lsb{letter-spacing:0.243936px;}
.ls7{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.309600px;}
.ls0{letter-spacing:0.700128px;}
.ls1{letter-spacing:0.748080px;}
.ls16{letter-spacing:2.346000px;}
.ls10{letter-spacing:24.624000px;}
.lse{letter-spacing:157.233600px;}
.lsf{letter-spacing:157.284000px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc4{text-shadow:-0.015em 0 rgb(5,99,193),0 0.015em rgb(5,99,193),0.015em 0 rgb(5,99,193),0 -0.015em  rgb(5,99,193);}
.sc2{text-shadow:-0.015em 0 rgb(0,142,205),0 0.015em rgb(0,142,205),0.015em 0 rgb(0,142,205),0 -0.015em  rgb(0,142,205);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc6{text-shadow:-0.015em 0 rgb(232,232,232),0 0.015em rgb(232,232,232),0.015em 0 rgb(232,232,232),0 -0.015em  rgb(232,232,232);}
.sc5{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);}
.sc3{text-shadow:-0.015em 0 rgb(23,52,87),0 0.015em rgb(23,52,87),0.015em 0 rgb(23,52,87),0 -0.015em  rgb(23,52,87);}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc7{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(5,99,193);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,142,205);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(232,232,232);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(23,52,87);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws22{word-spacing:-73.256544px;}
.wsf{word-spacing:-59.750784px;}
.wsd{word-spacing:-59.718240px;}
.ws1{word-spacing:-52.428384px;}
.ws19{word-spacing:-48.848544px;}
.wse{word-spacing:-48.816000px;}
.ws17{word-spacing:-43.446240px;}
.ws9{word-spacing:-37.946304px;}
.ws4{word-spacing:-37.913760px;}
.wsa{word-spacing:-36.123840px;}
.ws23{word-spacing:-32.576544px;}
.ws20{word-spacing:-32.544000px;}
.ws1b{word-spacing:-29.810304px;}
.ws21{word-spacing:-27.174240px;}
.ws1f{word-spacing:-25.889760px;}
.ws1d{word-spacing:-25.745760px;}
.ws1c{word-spacing:-25.709760px;}
.ws1e{word-spacing:-25.518360px;}
.ws18{word-spacing:-19.851840px;}
.ws1a{word-spacing:-19.038240px;}
.wsc{word-spacing:-18.864000px;}
.ws12{word-spacing:-17.614080px;}
.ws13{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.499544px;}
.ws2{word-spacing:-16.272000px;}
.ws16{word-spacing:-13.505760px;}
.ws8{word-spacing:-5.357400px;}
.ws6{word-spacing:-5.281800px;}
.ws11{word-spacing:-2.063040px;}
.wsb{word-spacing:-0.897120px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:0.882432px;}
.ws10{word-spacing:51.039000px;}
.ws3{word-spacing:78.411000px;}
.ws5{word-spacing:78.488760px;}
.ws15{word-spacing:1289.031984px;}
._b{margin-left:-18.802080px;}
._9{margin-left:-15.978480px;}
._6{margin-left:-14.439744px;}
._d{margin-left:-12.248400px;}
._8{margin-left:-11.101920px;}
._4{margin-left:-8.919936px;}
._7{margin-left:-6.728400px;}
._a{margin-left:-5.374896px;}
._5{margin-left:-3.812736px;}
._2{margin-left:-2.520960px;}
._1{margin-left:-1.440000px;}
._0{width:1.152000px;}
._3{width:3.030960px;}
._10{width:4.102080px;}
._c{width:15.807120px;}
._f{width:25.728960px;}
._e{width:1610.216400px;}
.fc9{color:transparent;}
.fcb{color:rgb(0,176,240);}
.fc6{color:rgb(0,112,192);}
.fc7{color:rgb(0,32,96);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,142,205);}
.fca{color:rgb(232,232,232);}
.fc8{color:rgb(74,74,74);}
.fc5{color:rgb(209,209,209);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(23,52,87);}
.fc0{color:rgb(255,255,255);}
.fs19{font-size:7.200000px;}
.fs13{font-size:59.760000px;}
.fs12{font-size:63.360000px;}
.fs9{font-size:72.000000px;}
.fs17{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:84.384000px;}
.fs18{font-size:87.840000px;}
.fs2{font-size:95.760000px;}
.fs11{font-size:108.000000px;}
.fs1b{font-size:113.760000px;}
.fs5{font-size:120.240000px;}
.fs1c{font-size:120.384000px;}
.fs1a{font-size:131.904000px;}
.fs1{font-size:144.000000px;}
.fs1e{font-size:144.144000px;}
.fsc{font-size:159.840000px;}
.fsa{font-size:167.760000px;}
.fs8{font-size:167.904000px;}
.fs7{font-size:192.240000px;}
.fs16{font-size:192.384000px;}
.fsf{font-size:216.000000px;}
.fse{font-size:216.144000px;}
.fsd{font-size:231.840000px;}
.fs6{font-size:231.984000px;}
.fs0{font-size:239.760000px;}
.fs15{font-size:239.904000px;}
.fs10{font-size:264.240000px;}
.fs14{font-size:264.384000px;}
.fsb{font-size:300.384000px;}
.fs1d{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y51{bottom:22.536000px;}
.y73{bottom:28.116000px;}
.y6{bottom:34.308000px;}
.y17{bottom:40.788000px;}
.y11{bottom:41.724000px;}
.y2b{bottom:43.380000px;}
.yb{bottom:44.064000px;}
.y69{bottom:54.930000px;}
.y5{bottom:57.024000px;}
.y68{bottom:59.250000px;}
.y4{bottom:79.884000px;}
.y1e{bottom:87.264000px;}
.y20{bottom:90.468000px;}
.y22{bottom:91.980000px;}
.y41{bottom:93.204000px;}
.y33{bottom:93.312000px;}
.y46{bottom:94.932000px;}
.y5a{bottom:101.880000px;}
.y47{bottom:104.616000px;}
.y2e{bottom:107.640000px;}
.y4d{bottom:110.916000px;}
.y28{bottom:122.904000px;}
.y39{bottom:123.192000px;}
.y64{bottom:126.396000px;}
.y54{bottom:126.576000px;}
.y56{bottom:127.044000px;}
.yf{bottom:128.016000px;}
.y3b{bottom:129.528000px;}
.y62{bottom:132.264000px;}
.y25{bottom:145.584000px;}
.y71{bottom:155.625000px;}
.y3{bottom:156.030000px;}
.y66{bottom:175.899000px;}
.y65{bottom:180.219000px;}
.y61{bottom:183.600000px;}
.ye{bottom:188.535000px;}
.y15{bottom:201.240000px;}
.y44{bottom:212.940000px;}
.y70{bottom:227.625000px;}
.yd{bottom:249.015000px;}
.y60{bottom:249.840000px;}
.y3a{bottom:252.570000px;}
.y2f{bottom:255.030000px;}
.y6f{bottom:263.670000px;}
.y29{bottom:266.970000px;}
.y35{bottom:269.745000px;}
.y3e{bottom:271.470000px;}
.y59{bottom:297.540000px;}
.y6b{bottom:297.795000px;}
.y49{bottom:300.165000px;}
.y32{bottom:305.250000px;}
.yc{bottom:311.655000px;}
.y7{bottom:312.990000px;}
.y5f{bottom:316.080000px;}
.y14{bottom:316.980000px;}
.y43{bottom:323.895000px;}
.y67{bottom:327.855000px;}
.y6e{bottom:335.670000px;}
.y6a{bottom:336.675000px;}
.y3d{bottom:338.250000px;}
.y18{bottom:342.255000px;}
.y63{bottom:345.450000px;}
.y48{bottom:366.945000px;}
.y5e{bottom:367.410000px;}
.y4b{bottom:374.910000px;}
.y37{bottom:398.985000px;}
.y4a{bottom:401.370000px;}
.y58{bottom:413.490000px;}
.y31{bottom:415.695000px;}
.y13{bottom:432.930000px;}
.y5d{bottom:433.830000px;}
.y42{bottom:434.850000px;}
.y2{bottom:455.325000px;}
.ya{bottom:464.760000px;}
.y2c{bottom:466.095000px;}
.y16{bottom:467.535000px;}
.y72{bottom:476.070000px;}
.y27{bottom:478.290000px;}
.y5c{bottom:500.070000px;}
.y1{bottom:500.145000px;}
.y55{bottom:527.580000px;}
.y57{bottom:529.275000px;}
.y1b{bottom:537.120000px;}
.y9{bottom:542.340000px;}
.y34{bottom:546.660000px;}
.y40{bottom:548.565000px;}
.y12{bottom:548.715000px;}
.y5b{bottom:566.355000px;}
.y1a{bottom:580.320000px;}
.y4f{bottom:582.054000px;}
.y4e{bottom:586.374000px;}
.y6d{bottom:595.155000px;}
.y2d{bottom:595.620000px;}
.y24{bottom:610.590000px;}
.y38{bottom:616.650000px;}
.y19{bottom:623.520000px;}
.y3c{bottom:628.170000px;}
.y6c{bottom:645.555000px;}
.y53{bottom:649.914000px;}
.y52{bottom:654.234000px;}
.y3f{bottom:673.635000px;}
.y10{bottom:680.115000px;}
.y8{bottom:686.700000px;}
.y36{bottom:721.290000px;}
.y1c{bottom:722.880000px;}
.y1d{bottom:723.570000px;}
.y30{bottom:723.675000px;}
.y1f{bottom:726.555000px;}
.y2a{bottom:730.110000px;}
.y50{bottom:730.695000px;}
.y4c{bottom:731.880000px;}
.y45{bottom:733.320000px;}
.y23{bottom:734.760000px;}
.y21{bottom:739.440000px;}
.y26{bottom:741.600000px;}
.h24{height:7.161328px;}
.h1b{height:59.439023px;}
.h2b{height:60.876000px;}
.h1a{height:63.019687px;}
.hb{height:71.613281px;}
.h21{height:71.756508px;}
.h16{height:71.784000px;}
.h20{height:76.077281px;}
.h6{height:83.787539px;}
.h5{height:83.930766px;}
.h4{height:86.255508px;}
.h22{height:87.368203px;}
.hd{height:95.245664px;}
.h3{height:98.051133px;}
.h26{height:107.419922px;}
.h19{height:110.583984px;}
.h28{height:113.148984px;}
.h27{height:116.481797px;}
.h2c{height:119.594180px;}
.h2d{height:119.737406px;}
.h7{height:130.099680px;}
.h29{height:137.109375px;}
.h2f{height:137.246484px;}
.h2{height:155.808000px;}
.h12{height:158.981484px;}
.h13{height:163.664297px;}
.hc{height:166.858945px;}
.ha{height:167.002172px;}
.hf{height:171.773789px;}
.he{height:171.921234px;}
.h2a{height:181.830000px;}
.h9{height:191.207461px;}
.h11{height:196.839492px;}
.h1f{height:196.986938px;}
.h17{height:205.664062px;}
.h15{height:205.801172px;}
.h14{height:237.386953px;}
.h8{height:237.534398px;}
.h1d{height:245.496445px;}
.h1e{height:245.643891px;}
.h18{height:251.595703px;}
.h1c{height:251.732813px;}
.h1{height:259.420320px;}
.h10{height:286.010156px;}
.h2e{height:308.633203px;}
.h23{height:587.985000px;}
.h25{height:655.845000px;}
.h0{height:810.000000px;}
.w6{width:57.420000px;}
.w5{width:453.135000px;}
.w3{width:656.205000px;}
.w4{width:678.855000px;}
.w2{width:902.985000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3f{left:10.799979px;}
.x10{left:22.859979px;}
.x34{left:29.051979px;}
.x17{left:30.959979px;}
.x1c{left:34.307979px;}
.x12{left:40.031979px;}
.x6{left:41.255979px;}
.x43{left:46.835979px;}
.x1f{left:48.095979px;}
.xf{left:50.939979px;}
.x1b{left:52.055979px;}
.x3a{left:55.620000px;}
.x4{left:58.823979px;}
.x3b{left:61.775979px;}
.x14{left:66.455979px;}
.x8{left:68.327979px;}
.x3{left:72.539979px;}
.x39{left:79.091979px;}
.x3c{left:81.180000px;}
.xe{left:84.923979px;}
.x32{left:93.851979px;}
.x7{left:95.291979px;}
.xa{left:109.799979px;}
.x44{left:112.787979px;}
.x47{left:181.439979px;}
.x48{left:260.849979px;}
.x19{left:282.494979px;}
.x1{left:379.229979px;}
.x2{left:392.729979px;}
.x4a{left:428.729979px;}
.x1d{left:447.479979px;}
.x21{left:449.639979px;}
.x31{left:452.054979px;}
.xd{left:458.924979px;}
.x49{left:459.929979px;}
.x4b{left:476.069979px;}
.x1e{left:493.949979px;}
.x2b{left:499.574979px;}
.x42{left:513.149979px;}
.x22{left:519.014979px;}
.x35{left:520.529979px;}
.x41{left:523.229979px;}
.x2f{left:524.489979px;}
.x37{left:529.169979px;}
.x1a{left:550.229979px;}
.xb{left:587.489979px;}
.x2a{left:588.989979px;}
.x4c{left:593.969979px;}
.x4e{left:623.189979px;}
.x36{left:635.189979px;}
.x4d{left:658.229979px;}
.x3e{left:719.564979px;}
.x3d{left:748.365000px;}
.x11{left:780.119979px;}
.x16{left:783.749979px;}
.x15{left:842.759979px;}
.x13{left:843.839979px;}
.x25{left:884.189979px;}
.x45{left:894.569979px;}
.x33{left:922.034979px;}
.x23{left:937.544979px;}
.x24{left:952.529979px;}
.x26{left:961.589979px;}
.x38{left:1014.449979px;}
.x5{left:1108.874979px;}
.x2c{left:1145.234979px;}
.x2d{left:1148.069979px;}
.x40{left:1152.719979px;}
.x2e{left:1172.549979px;}
.x27{left:1196.639979px;}
.x30{left:1234.364979px;}
.x18{left:1236.419979px;}
.xc{left:1246.424979px;}
.x9{left:1248.479979px;}
.x28{left:1249.919979px;}
.x20{left:1252.769979px;}
.x46{left:1279.440000px;}
.x29{left:1327.319979px;}
@media print{
.v2{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.968000pt;}
.lsd{letter-spacing:-0.634667pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.275733pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.170133pt;}
.ls4{letter-spacing:-0.148800pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.083733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.173333pt;}
.ls15{letter-spacing:0.196267pt;}
.ls17{letter-spacing:0.211733pt;}
.lsb{letter-spacing:0.216832pt;}
.ls7{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.275200pt;}
.ls0{letter-spacing:0.622336pt;}
.ls1{letter-spacing:0.664960pt;}
.ls16{letter-spacing:2.085333pt;}
.ls10{letter-spacing:21.888000pt;}
.lse{letter-spacing:139.763200pt;}
.lsf{letter-spacing:139.808000pt;}
.ws22{word-spacing:-65.116928pt;}
.wsf{word-spacing:-53.111808pt;}
.wsd{word-spacing:-53.082880pt;}
.ws1{word-spacing:-46.603008pt;}
.ws19{word-spacing:-43.420928pt;}
.wse{word-spacing:-43.392000pt;}
.ws17{word-spacing:-38.618880pt;}
.ws9{word-spacing:-33.730048pt;}
.ws4{word-spacing:-33.701120pt;}
.wsa{word-spacing:-32.110080pt;}
.ws23{word-spacing:-28.956928pt;}
.ws20{word-spacing:-28.928000pt;}
.ws1b{word-spacing:-26.498048pt;}
.ws21{word-spacing:-24.154880pt;}
.ws1f{word-spacing:-23.013120pt;}
.ws1d{word-spacing:-22.885120pt;}
.ws1c{word-spacing:-22.853120pt;}
.ws1e{word-spacing:-22.682987pt;}
.ws18{word-spacing:-17.646080pt;}
.ws1a{word-spacing:-16.922880pt;}
.wsc{word-spacing:-16.768000pt;}
.ws12{word-spacing:-15.656960pt;}
.ws13{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.666261pt;}
.ws2{word-spacing:-14.464000pt;}
.ws16{word-spacing:-12.005120pt;}
.ws8{word-spacing:-4.762133pt;}
.ws6{word-spacing:-4.694933pt;}
.ws11{word-spacing:-1.833813pt;}
.wsb{word-spacing:-0.797440pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:0.784384pt;}
.ws10{word-spacing:45.368000pt;}
.ws3{word-spacing:69.698667pt;}
.ws5{word-spacing:69.767787pt;}
.ws15{word-spacing:1145.806208pt;}
._b{margin-left:-16.712960pt;}
._9{margin-left:-14.203093pt;}
._6{margin-left:-12.835328pt;}
._d{margin-left:-10.887467pt;}
._8{margin-left:-9.868373pt;}
._4{margin-left:-7.928832pt;}
._7{margin-left:-5.980800pt;}
._a{margin-left:-4.777685pt;}
._5{margin-left:-3.389099pt;}
._2{margin-left:-2.240853pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.024000pt;}
._3{width:2.694187pt;}
._10{width:3.646293pt;}
._c{width:14.050773pt;}
._f{width:22.870187pt;}
._e{width:1431.303467pt;}
.fs19{font-size:6.400000pt;}
.fs13{font-size:53.120000pt;}
.fs12{font-size:56.320000pt;}
.fs9{font-size:64.000000pt;}
.fs17{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:75.008000pt;}
.fs18{font-size:78.080000pt;}
.fs2{font-size:85.120000pt;}
.fs11{font-size:96.000000pt;}
.fs1b{font-size:101.120000pt;}
.fs5{font-size:106.880000pt;}
.fs1c{font-size:107.008000pt;}
.fs1a{font-size:117.248000pt;}
.fs1{font-size:128.000000pt;}
.fs1e{font-size:128.128000pt;}
.fsc{font-size:142.080000pt;}
.fsa{font-size:149.120000pt;}
.fs8{font-size:149.248000pt;}
.fs7{font-size:170.880000pt;}
.fs16{font-size:171.008000pt;}
.fsf{font-size:192.000000pt;}
.fse{font-size:192.128000pt;}
.fsd{font-size:206.080000pt;}
.fs6{font-size:206.208000pt;}
.fs0{font-size:213.120000pt;}
.fs15{font-size:213.248000pt;}
.fs10{font-size:234.880000pt;}
.fs14{font-size:235.008000pt;}
.fsb{font-size:267.008000pt;}
.fs1d{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:20.032000pt;}
.y73{bottom:24.992000pt;}
.y6{bottom:30.496000pt;}
.y17{bottom:36.256000pt;}
.y11{bottom:37.088000pt;}
.y2b{bottom:38.560000pt;}
.yb{bottom:39.168000pt;}
.y69{bottom:48.826667pt;}
.y5{bottom:50.688000pt;}
.y68{bottom:52.666667pt;}
.y4{bottom:71.008000pt;}
.y1e{bottom:77.568000pt;}
.y20{bottom:80.416000pt;}
.y22{bottom:81.760000pt;}
.y41{bottom:82.848000pt;}
.y33{bottom:82.944000pt;}
.y46{bottom:84.384000pt;}
.y5a{bottom:90.560000pt;}
.y47{bottom:92.992000pt;}
.y2e{bottom:95.680000pt;}
.y4d{bottom:98.592000pt;}
.y28{bottom:109.248000pt;}
.y39{bottom:109.504000pt;}
.y64{bottom:112.352000pt;}
.y54{bottom:112.512000pt;}
.y56{bottom:112.928000pt;}
.yf{bottom:113.792000pt;}
.y3b{bottom:115.136000pt;}
.y62{bottom:117.568000pt;}
.y25{bottom:129.408000pt;}
.y71{bottom:138.333333pt;}
.y3{bottom:138.693333pt;}
.y66{bottom:156.354667pt;}
.y65{bottom:160.194667pt;}
.y61{bottom:163.200000pt;}
.ye{bottom:167.586667pt;}
.y15{bottom:178.880000pt;}
.y44{bottom:189.280000pt;}
.y70{bottom:202.333333pt;}
.yd{bottom:221.346667pt;}
.y60{bottom:222.080000pt;}
.y3a{bottom:224.506667pt;}
.y2f{bottom:226.693333pt;}
.y6f{bottom:234.373333pt;}
.y29{bottom:237.306667pt;}
.y35{bottom:239.773333pt;}
.y3e{bottom:241.306667pt;}
.y59{bottom:264.480000pt;}
.y6b{bottom:264.706667pt;}
.y49{bottom:266.813333pt;}
.y32{bottom:271.333333pt;}
.yc{bottom:277.026667pt;}
.y7{bottom:278.213333pt;}
.y5f{bottom:280.960000pt;}
.y14{bottom:281.760000pt;}
.y43{bottom:287.906667pt;}
.y67{bottom:291.426667pt;}
.y6e{bottom:298.373333pt;}
.y6a{bottom:299.266667pt;}
.y3d{bottom:300.666667pt;}
.y18{bottom:304.226667pt;}
.y63{bottom:307.066667pt;}
.y48{bottom:326.173333pt;}
.y5e{bottom:326.586667pt;}
.y4b{bottom:333.253333pt;}
.y37{bottom:354.653333pt;}
.y4a{bottom:356.773333pt;}
.y58{bottom:367.546667pt;}
.y31{bottom:369.506667pt;}
.y13{bottom:384.826667pt;}
.y5d{bottom:385.626667pt;}
.y42{bottom:386.533333pt;}
.y2{bottom:404.733333pt;}
.ya{bottom:413.120000pt;}
.y2c{bottom:414.306667pt;}
.y16{bottom:415.586667pt;}
.y72{bottom:423.173333pt;}
.y27{bottom:425.146667pt;}
.y5c{bottom:444.506667pt;}
.y1{bottom:444.573333pt;}
.y55{bottom:468.960000pt;}
.y57{bottom:470.466667pt;}
.y1b{bottom:477.440000pt;}
.y9{bottom:482.080000pt;}
.y34{bottom:485.920000pt;}
.y40{bottom:487.613333pt;}
.y12{bottom:487.746667pt;}
.y5b{bottom:503.426667pt;}
.y1a{bottom:515.840000pt;}
.y4f{bottom:517.381333pt;}
.y4e{bottom:521.221333pt;}
.y6d{bottom:529.026667pt;}
.y2d{bottom:529.440000pt;}
.y24{bottom:542.746667pt;}
.y38{bottom:548.133333pt;}
.y19{bottom:554.240000pt;}
.y3c{bottom:558.373333pt;}
.y6c{bottom:573.826667pt;}
.y53{bottom:577.701333pt;}
.y52{bottom:581.541333pt;}
.y3f{bottom:598.786667pt;}
.y10{bottom:604.546667pt;}
.y8{bottom:610.400000pt;}
.y36{bottom:641.146667pt;}
.y1c{bottom:642.560000pt;}
.y1d{bottom:643.173333pt;}
.y30{bottom:643.266667pt;}
.y1f{bottom:645.826667pt;}
.y2a{bottom:648.986667pt;}
.y50{bottom:649.506667pt;}
.y4c{bottom:650.560000pt;}
.y45{bottom:651.840000pt;}
.y23{bottom:653.120000pt;}
.y21{bottom:657.280000pt;}
.y26{bottom:659.200000pt;}
.h24{height:6.365625pt;}
.h1b{height:52.834688pt;}
.h2b{height:54.112000pt;}
.h1a{height:56.017500pt;}
.hb{height:63.656250pt;}
.h21{height:63.783562pt;}
.h16{height:63.808000pt;}
.h20{height:67.624250pt;}
.h6{height:74.477812pt;}
.h5{height:74.605125pt;}
.h4{height:76.671562pt;}
.h22{height:77.660625pt;}
.hd{height:84.662813pt;}
.h3{height:87.156562pt;}
.h26{height:95.484375pt;}
.h19{height:98.296875pt;}
.h28{height:100.576875pt;}
.h27{height:103.539375pt;}
.h2c{height:106.305937pt;}
.h2d{height:106.433250pt;}
.h7{height:115.644160pt;}
.h29{height:121.875000pt;}
.h2f{height:121.996875pt;}
.h2{height:138.496000pt;}
.h12{height:141.316875pt;}
.h13{height:145.479375pt;}
.hc{height:148.319063pt;}
.ha{height:148.446375pt;}
.hf{height:152.687812pt;}
.he{height:152.818875pt;}
.h2a{height:161.626667pt;}
.h9{height:169.962187pt;}
.h11{height:174.968437pt;}
.h1f{height:175.099500pt;}
.h17{height:182.812500pt;}
.h15{height:182.934375pt;}
.h14{height:211.010625pt;}
.h8{height:211.141687pt;}
.h1d{height:218.219062pt;}
.h1e{height:218.350125pt;}
.h18{height:223.640625pt;}
.h1c{height:223.762500pt;}
.h1{height:230.595840pt;}
.h10{height:254.231250pt;}
.h2e{height:274.340625pt;}
.h23{height:522.653333pt;}
.h25{height:582.973333pt;}
.h0{height:720.000000pt;}
.w6{width:51.040000pt;}
.w5{width:402.786667pt;}
.w3{width:583.293333pt;}
.w4{width:603.426667pt;}
.w2{width:802.653333pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:9.599981pt;}
.x10{left:20.319981pt;}
.x34{left:25.823981pt;}
.x17{left:27.519981pt;}
.x1c{left:30.495981pt;}
.x12{left:35.583981pt;}
.x6{left:36.671981pt;}
.x43{left:41.631981pt;}
.x1f{left:42.751981pt;}
.xf{left:45.279981pt;}
.x1b{left:46.271981pt;}
.x3a{left:49.440000pt;}
.x4{left:52.287981pt;}
.x3b{left:54.911981pt;}
.x14{left:59.071981pt;}
.x8{left:60.735981pt;}
.x3{left:64.479981pt;}
.x39{left:70.303981pt;}
.x3c{left:72.160000pt;}
.xe{left:75.487981pt;}
.x32{left:83.423981pt;}
.x7{left:84.703981pt;}
.xa{left:97.599981pt;}
.x44{left:100.255981pt;}
.x47{left:161.279981pt;}
.x48{left:231.866648pt;}
.x19{left:251.106648pt;}
.x1{left:337.093314pt;}
.x2{left:349.093314pt;}
.x4a{left:381.093314pt;}
.x1d{left:397.759981pt;}
.x21{left:399.679981pt;}
.x31{left:401.826648pt;}
.xd{left:407.933314pt;}
.x49{left:408.826648pt;}
.x4b{left:423.173314pt;}
.x1e{left:439.066648pt;}
.x2b{left:444.066648pt;}
.x42{left:456.133314pt;}
.x22{left:461.346648pt;}
.x35{left:462.693314pt;}
.x41{left:465.093314pt;}
.x2f{left:466.213314pt;}
.x37{left:470.373314pt;}
.x1a{left:489.093314pt;}
.xb{left:522.213314pt;}
.x2a{left:523.546648pt;}
.x4c{left:527.973314pt;}
.x4e{left:553.946648pt;}
.x36{left:564.613314pt;}
.x4d{left:585.093314pt;}
.x3e{left:639.613314pt;}
.x3d{left:665.213333pt;}
.x11{left:693.439981pt;}
.x16{left:696.666648pt;}
.x15{left:749.119981pt;}
.x13{left:750.079981pt;}
.x25{left:785.946648pt;}
.x45{left:795.173314pt;}
.x33{left:819.586648pt;}
.x23{left:833.373314pt;}
.x24{left:846.693314pt;}
.x26{left:854.746648pt;}
.x38{left:901.733314pt;}
.x5{left:985.666648pt;}
.x2c{left:1017.986648pt;}
.x2d{left:1020.506648pt;}
.x40{left:1024.639981pt;}
.x2e{left:1042.266648pt;}
.x27{left:1063.679981pt;}
.x30{left:1097.213314pt;}
.x18{left:1099.039981pt;}
.xc{left:1107.933314pt;}
.x9{left:1109.759981pt;}
.x28{left:1111.039981pt;}
.x20{left:1113.573314pt;}
.x46{left:1137.280000pt;}
.x29{left:1179.839981pt;}
}




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