
    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_36d0fc324437eedc7d2e56cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_0370055a18d80426b08fabb8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_e370f38dfb985ffffdbbc6a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_5472f88ffacc350effee4278.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_d9360242f6c59ad7d6717dd2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.026000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.248726px;}
.ls2{letter-spacing:32.725718px;}
.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;}
}
.wsc{word-spacing:-35.816602px;}
.ws4{word-spacing:-35.567875px;}
.ws6e{word-spacing:-24.810458px;}
.ws4e{word-spacing:-24.499550px;}
.ws16{word-spacing:-24.101616px;}
.ws51{word-spacing:-23.939916px;}
.ws6a{word-spacing:-23.691190px;}
.ws50{word-spacing:-23.566826px;}
.ws4d{word-spacing:-23.380282px;}
.ws20{word-spacing:-22.945010px;}
.ws40{word-spacing:-22.758466px;}
.ws3c{word-spacing:-22.509739px;}
.ws59{word-spacing:-22.385376px;}
.ws3b{word-spacing:-22.323194px;}
.ws13{word-spacing:-22.261013px;}
.ws69{word-spacing:-22.198831px;}
.ws1f{word-spacing:-22.012286px;}
.ws48{word-spacing:-21.950105px;}
.ws2f{word-spacing:-21.887923px;}
.ws31{word-spacing:-21.639197px;}
.ws66{word-spacing:-20.830836px;}
.ws4c{word-spacing:-20.333383px;}
.ws1d{word-spacing:-20.209020px;}
.ws3d{word-spacing:-20.146838px;}
.ws23{word-spacing:-20.022475px;}
.ws34{word-spacing:-19.711567px;}
.ws64{word-spacing:-19.587204px;}
.ws3{word-spacing:-19.462841px;}
.wse{word-spacing:-19.436304px;}
.ws0{word-spacing:-19.400659px;}
.ws62{word-spacing:-19.338478px;}
.ws5{word-spacing:-19.332497px;}
.wsb{word-spacing:-18.965388px;}
.ws36{word-spacing:-18.903206px;}
.ws61{word-spacing:-18.841025px;}
.ws52{word-spacing:-18.778843px;}
.ws70{word-spacing:-18.716662px;}
.ws33{word-spacing:-18.592298px;}
.ws54{word-spacing:-18.219209px;}
.ws45{word-spacing:-18.157027px;}
.ws14{word-spacing:-18.094846px;}
.ws58{word-spacing:-18.032664px;}
.ws5e{word-spacing:-17.908301px;}
.ws6d{word-spacing:-17.846119px;}
.ws43{word-spacing:-17.783938px;}
.ws11{word-spacing:-17.774331px;}
.wsa{word-spacing:-17.721756px;}
.ws15{word-spacing:-17.717544px;}
.ws3e{word-spacing:-17.535211px;}
.ws4b{word-spacing:-17.348666px;}
.ws56{word-spacing:-17.162122px;}
.ws2d{word-spacing:-17.037758px;}
.ws4f{word-spacing:-16.975577px;}
.ws42{word-spacing:-16.726850px;}
.ws37{word-spacing:-16.540306px;}
.ws25{word-spacing:-16.478124px;}
.ws5a{word-spacing:-16.415942px;}
.ws44{word-spacing:-16.167216px;}
.ws4a{word-spacing:-16.105034px;}
.ws27{word-spacing:-15.980671px;}
.ws28{word-spacing:-15.794126px;}
.ws5d{word-spacing:-15.731945px;}
.ws46{word-spacing:-15.545400px;}
.ws8{word-spacing:-15.296674px;}
.ws65{word-spacing:-15.172310px;}
.ws53{word-spacing:-14.861402px;}
.ws38{word-spacing:-14.674858px;}
.ws24{word-spacing:-14.612676px;}
.ws41{word-spacing:-14.550494px;}
.ws26{word-spacing:-14.488313px;}
.ws67{word-spacing:-14.177405px;}
.ws9{word-spacing:-13.990860px;}
.ws30{word-spacing:-13.369044px;}
.ws57{word-spacing:-13.120318px;}
.ws55{word-spacing:-12.995954px;}
.ws5f{word-spacing:-12.933773px;}
.ws2a{word-spacing:-12.871591px;}
.ws35{word-spacing:-12.685046px;}
.ws3a{word-spacing:-11.938867px;}
.ws5b{word-spacing:-11.876686px;}
.wsf{word-spacing:-11.503596px;}
.ws63{word-spacing:-11.192688px;}
.ws29{word-spacing:-11.130506px;}
.ws1e{word-spacing:-11.006143px;}
.ws10{word-spacing:-10.570872px;}
.ws5c{word-spacing:-9.949056px;}
.ws68{word-spacing:-9.638148px;}
.ws49{word-spacing:-8.279073px;}
.ws2c{word-spacing:-8.021426px;}
.ws22{word-spacing:-7.710518px;}
.ws2e{word-spacing:-7.648337px;}
.ws6c{word-spacing:-6.839976px;}
.wsd{word-spacing:-6.404705px;}
.ws47{word-spacing:-5.782889px;}
.ws60{word-spacing:-5.409799px;}
.ws21{word-spacing:-5.036710px;}
.ws32{word-spacing:-4.912346px;}
.ws6b{word-spacing:-4.041804px;}
.ws7{word-spacing:-1.678903px;}
.ws6{word-spacing:0.000000px;}
.ws2b{word-spacing:1.492358px;}
.ws6f{word-spacing:2.114174px;}
.ws19{word-spacing:3.046898px;}
.ws18{word-spacing:5.629096px;}
.ws1a{word-spacing:5.694550px;}
.ws3f{word-spacing:6.240614px;}
.ws39{word-spacing:7.402639px;}
.ws12{word-spacing:7.488716px;}
.ws1{word-spacing:10.661850px;}
.ws2{word-spacing:10.785825px;}
.ws1c{word-spacing:18.936984px;}
.ws17{word-spacing:38.945487px;}
.ws1b{word-spacing:2344.441898px;}
._21{margin-left:-5.714921px;}
._0{margin-left:-3.719250px;}
._9{margin-left:-2.582316px;}
._2{margin-left:-1.563413px;}
._a{width:2.029093px;}
._1{width:3.719250px;}
._8{width:5.670172px;}
._6{width:10.322146px;}
._27{width:11.938867px;}
._f{width:16.167216px;}
._20{width:20.582110px;}
._10{width:21.590426px;}
._5{width:22.852454px;}
._1e{width:24.250824px;}
._19{width:26.040005px;}
._7{width:27.125263px;}
._23{width:28.416991px;}
._22{width:29.474078px;}
._1b{width:30.779892px;}
._1c{width:31.961342px;}
._4{width:34.013335px;}
._1a{width:35.052982px;}
._3{width:38.179502px;}
._15{width:39.546230px;}
._1f{width:42.407851px;}
._26{width:44.211118px;}
._1d{width:46.263110px;}
._14{width:51.814238px;}
._e{width:55.341624px;}
._c{width:57.272775px;}
._25{width:59.259065px;}
._13{width:63.691399px;}
._24{width:67.591399px;}
._16{width:72.030209px;}
._12{width:73.706033px;}
._11{width:112.740744px;}
._18{width:1384.732774px;}
._d{width:1657.220273px;}
._17{width:2167.190841px;}
._b{width:2223.416342px;}
.fc3{color:rgb(0,63,95);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(5,102,141);}
.fs2{font-size:0.000000px;}
.fs8{font-size:43.527000px;}
.fs4{font-size:56.787000px;}
.fs0{font-size:62.181600px;}
.fs6{font-size:65.454600px;}
.fs3{font-size:68.144400px;}
.fs7{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:107.419500px;}
.y16{bottom:144.567000px;}
.y84{bottom:147.411000px;}
.y4a{bottom:155.167500px;}
.yb7{bottom:159.112500px;}
.y15{bottom:168.955500px;}
.y49{bottom:179.556000px;}
.yb6{bottom:183.501000px;}
.y83{bottom:185.250000px;}
.y14{bottom:193.344000px;}
.y48{bottom:203.944500px;}
.yb5{bottom:207.889500px;}
.y82{bottom:218.604000px;}
.y66{bottom:226.228500px;}
.y13{bottom:226.698000px;}
.y47{bottom:228.333000px;}
.yb4{bottom:232.278000px;}
.y81{bottom:256.443000px;}
.y65{bottom:259.584000px;}
.y46{bottom:261.687000px;}
.yb3{bottom:265.632000px;}
.y12{bottom:276.118500px;}
.y80{bottom:280.831500px;}
.y45{bottom:286.075500px;}
.y64{bottom:297.421500px;}
.yb2{bottom:298.987500px;}
.y11{bottom:300.507000px;}
.y7f{bottom:305.220000px;}
.y44{bottom:310.464000px;}
.y63{bottom:321.810000px;}
.yb1{bottom:323.376000px;}
.y7e{bottom:329.608500px;}
.y43{bottom:334.852500px;}
.y99{bottom:336.178500px;}
.yb0{bottom:347.764500px;}
.y10{bottom:349.857000px;}
.y7d{bottom:353.997000px;}
.y42{bottom:359.241000px;}
.y62{bottom:359.649000px;}
.y98{bottom:360.567000px;}
.yaf{bottom:372.153000px;}
.y7c{bottom:378.385500px;}
.y41{bottom:383.629500px;}
.y97{bottom:384.955500px;}
.y61{bottom:393.003000px;}
.yae{bottom:405.507000px;}
.y96{bottom:409.344000px;}
.yf{bottom:414.303000px;}
.y40{bottom:416.985000px;}
.y7b{bottom:424.219500px;}
.y60{bottom:430.842000px;}
.y95{bottom:433.732500px;}
.ye{bottom:438.691500px;}
.yad{bottom:438.862500px;}
.y3f{bottom:441.373500px;}
.y5f{bottom:455.230500px;}
.yd{bottom:463.080000px;}
.yac{bottom:463.251000px;}
.y3e{bottom:474.727500px;}
.y94{bottom:479.566500px;}
.y5e{bottom:479.619000px;}
.y7a{bottom:485.328000px;}
.yc{bottom:487.468500px;}
.yab{bottom:487.639500px;}
.y5d{bottom:504.007500px;}
.y3d{bottom:508.083000px;}
.y79{bottom:509.716500px;}
.yaa{bottom:512.028000px;}
.yb{bottom:520.824000px;}
.y5c{bottom:528.396000px;}
.y3c{bottom:532.471500px;}
.ya9{bottom:536.416500px;}
.y93{bottom:540.676500px;}
.y78{bottom:547.555500px;}
.y5b{bottom:552.784500px;}
.y3b{bottom:565.825500px;}
.ya8{bottom:569.770500px;}
.y5a{bottom:577.173000px;}
.y92{bottom:578.514000px;}
.y77{bottom:585.393000px;}
.y3a{bottom:599.181000px;}
.y91{bottom:602.902500px;}
.ya7{bottom:603.126000px;}
.y76{bottom:609.781500px;}
.y59{bottom:610.527000px;}
.y90{bottom:627.291000px;}
.ya6{bottom:627.514500px;}
.y39{bottom:632.536500px;}
.y58{bottom:634.915500px;}
.y75{bottom:647.619000px;}
.y8f{bottom:651.679500px;}
.y38{bottom:656.925000px;}
.y57{bottom:659.304000px;}
.ya5{bottom:660.870000px;}
.y8e{bottom:676.068000px;}
.y74{bottom:680.974500px;}
.y37{bottom:690.279000px;}
.ya4{bottom:694.224000px;}
.y56{bottom:705.138000px;}
.y8d{bottom:709.423500px;}
.y36{bottom:714.667500px;}
.ya3{bottom:718.612500px;}
.y73{bottom:718.812000px;}
.y2b{bottom:725.652000px;}
.ybc{bottom:729.180000px;}
.y8c{bottom:733.812000px;}
.y35{bottom:739.056000px;}
.ya2{bottom:743.001000px;}
.y72{bottom:743.200500px;}
.ya{bottom:747.808500px;}
.ybb{bottom:753.568500px;}
.y8b{bottom:758.200500px;}
.y34{bottom:763.444500px;}
.y2a{bottom:765.585000px;}
.y55{bottom:766.248000px;}
.ya1{bottom:767.389500px;}
.y71{bottom:767.589000px;}
.yba{bottom:777.957000px;}
.y9{bottom:781.164000px;}
.y33{bottom:787.833000px;}
.y54{bottom:790.636500px;}
.y70{bottom:791.977500px;}
.ya0{bottom:800.745000px;}
.y8a{bottom:804.033000px;}
.y29{bottom:805.519500px;}
.y32{bottom:812.221500px;}
.y53{bottom:815.025000px;}
.y8{bottom:820.615500px;}
.y6f{bottom:825.333000px;}
.yb9{bottom:830.446500px;}
.y21{bottom:831.589500px;}
.y9f{bottom:834.099000px;}
.y31{bottom:836.610000px;}
.y52{bottom:839.413500px;}
.y28{bottom:845.452500px;}
.y6e{bottom:849.721500px;}
.y9e{bottom:858.487500px;}
.y6{bottom:860.068500px;}
.y30{bottom:860.998500px;}
.y51{bottom:863.802000px;}
.y20{bottom:864.943500px;}
.y89{bottom:865.143000px;}
.y27{bottom:869.841000px;}
.y6d{bottom:874.110000px;}
.y7{bottom:874.153500px;}
.y4{bottom:880.392000px;}
.y2f{bottom:885.387000px;}
.y50{bottom:888.190500px;}
.y88{bottom:889.531500px;}
.y9d{bottom:891.843000px;}
.y26{bottom:894.229500px;}
.y5{bottom:894.477000px;}
.y1f{bottom:898.299000px;}
.y6c{bottom:898.498500px;}
.yb8{bottom:900.808500px;}
.y2e{bottom:909.775500px;}
.y25{bottom:918.618000px;}
.y3{bottom:922.953000px;}
.y9c{bottom:925.197000px;}
.y87{bottom:927.370500px;}
.y1e{bottom:931.653000px;}
.y6b{bottom:931.852500px;}
.y2d{bottom:934.164000px;}
.y4f{bottom:940.678500px;}
.y24{bottom:943.006500px;}
.y9b{bottom:949.585500px;}
.y2{bottom:953.439000px;}
.y6a{bottom:956.241000px;}
.y2c{bottom:958.552500px;}
.y1d{bottom:965.008500px;}
.y86{bottom:965.208000px;}
.y23{bottom:967.395000px;}
.y9a{bottom:973.974000px;}
.y69{bottom:980.629500px;}
.y1b{bottom:982.941000px;}
.y85{bottom:989.596500px;}
.y22{bottom:991.783500px;}
.y1{bottom:992.890500px;}
.y1c{bottom:998.362500px;}
.y1a{bottom:1007.329500px;}
.y4e{bottom:1011.042000px;}
.y68{bottom:1013.985000px;}
.y19{bottom:1031.718000px;}
.y4d{bottom:1035.430500px;}
.y67{bottom:1038.373500px;}
.y4c{bottom:1059.819000px;}
.y18{bottom:1084.207500px;}
.y17{bottom:1140.885000px;}
.h4{height:0.000000px;}
.h6{height:43.449819px;}
.h2{height:47.577425px;}
.h8{height:49.090950px;}
.h5{height:52.139783px;}
.h9{height:53.798400px;}
.ha{height:61.330106px;}
.h7{height:64.557900px;}
.h3{height:92.981250px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:106.299000px;}
.xd{left:129.618000px;}
.xf{left:133.182000px;}
.x1{left:170.079000px;}
.x8{left:288.159000px;}
.x7{left:291.148500px;}
.x2{left:293.373000px;}
.xa{left:414.438000px;}
.x9{left:417.427500px;}
.xe{left:442.398000px;}
.x4{left:594.958500px;}
.x3{left:597.948000px;}
.xb{left:630.648000px;}
.x6{left:700.879500px;}
.x5{left:703.869000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.912000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.221090pt;}
.ls2{letter-spacing:29.089527pt;}
.wsc{word-spacing:-31.836979pt;}
.ws4{word-spacing:-31.615889pt;}
.ws6e{word-spacing:-22.053741pt;}
.ws4e{word-spacing:-21.777378pt;}
.ws16{word-spacing:-21.423659pt;}
.ws51{word-spacing:-21.279925pt;}
.ws6a{word-spacing:-21.058835pt;}
.ws50{word-spacing:-20.948290pt;}
.ws4d{word-spacing:-20.782473pt;}
.ws20{word-spacing:-20.395565pt;}
.ws40{word-spacing:-20.229747pt;}
.ws3c{word-spacing:-20.008657pt;}
.ws59{word-spacing:-19.898112pt;}
.ws3b{word-spacing:-19.842839pt;}
.ws13{word-spacing:-19.787567pt;}
.ws69{word-spacing:-19.732294pt;}
.ws1f{word-spacing:-19.566477pt;}
.ws48{word-spacing:-19.511204pt;}
.ws2f{word-spacing:-19.455932pt;}
.ws31{word-spacing:-19.234842pt;}
.ws66{word-spacing:-18.516299pt;}
.ws4c{word-spacing:-18.074118pt;}
.ws1d{word-spacing:-17.963573pt;}
.ws3d{word-spacing:-17.908301pt;}
.ws23{word-spacing:-17.797756pt;}
.ws34{word-spacing:-17.521393pt;}
.ws64{word-spacing:-17.410848pt;}
.ws3{word-spacing:-17.300303pt;}
.wse{word-spacing:-17.276715pt;}
.ws0{word-spacing:-17.245030pt;}
.ws62{word-spacing:-17.189758pt;}
.ws5{word-spacing:-17.184442pt;}
.wsb{word-spacing:-16.858123pt;}
.ws36{word-spacing:-16.802850pt;}
.ws61{word-spacing:-16.747578pt;}
.ws52{word-spacing:-16.692305pt;}
.ws70{word-spacing:-16.637033pt;}
.ws33{word-spacing:-16.526487pt;}
.ws54{word-spacing:-16.194852pt;}
.ws45{word-spacing:-16.139580pt;}
.ws14{word-spacing:-16.084307pt;}
.ws58{word-spacing:-16.029035pt;}
.ws5e{word-spacing:-15.918490pt;}
.ws6d{word-spacing:-15.863217pt;}
.ws43{word-spacing:-15.807945pt;}
.ws11{word-spacing:-15.799405pt;}
.wsa{word-spacing:-15.752672pt;}
.ws15{word-spacing:-15.748928pt;}
.ws3e{word-spacing:-15.586854pt;}
.ws4b{word-spacing:-15.421037pt;}
.ws56{word-spacing:-15.255219pt;}
.ws2d{word-spacing:-15.144674pt;}
.ws4f{word-spacing:-15.089402pt;}
.ws42{word-spacing:-14.868311pt;}
.ws37{word-spacing:-14.702494pt;}
.ws25{word-spacing:-14.647221pt;}
.ws5a{word-spacing:-14.591949pt;}
.ws44{word-spacing:-14.370859pt;}
.ws4a{word-spacing:-14.315586pt;}
.ws27{word-spacing:-14.205041pt;}
.ws28{word-spacing:-14.039223pt;}
.ws5d{word-spacing:-13.983951pt;}
.ws46{word-spacing:-13.818133pt;}
.ws8{word-spacing:-13.597043pt;}
.ws65{word-spacing:-13.486498pt;}
.ws53{word-spacing:-13.210135pt;}
.ws38{word-spacing:-13.044318pt;}
.ws24{word-spacing:-12.989045pt;}
.ws41{word-spacing:-12.933773pt;}
.ws26{word-spacing:-12.878500pt;}
.ws67{word-spacing:-12.602138pt;}
.ws9{word-spacing:-12.436320pt;}
.ws30{word-spacing:-11.883595pt;}
.ws57{word-spacing:-11.662505pt;}
.ws55{word-spacing:-11.551959pt;}
.ws5f{word-spacing:-11.496687pt;}
.ws2a{word-spacing:-11.441414pt;}
.ws35{word-spacing:-11.275597pt;}
.ws3a{word-spacing:-10.612326pt;}
.ws5b{word-spacing:-10.557054pt;}
.wsf{word-spacing:-10.225419pt;}
.ws63{word-spacing:-9.949056pt;}
.ws29{word-spacing:-9.893783pt;}
.ws1e{word-spacing:-9.783238pt;}
.ws10{word-spacing:-9.396331pt;}
.ws5c{word-spacing:-8.843605pt;}
.ws68{word-spacing:-8.567243pt;}
.ws49{word-spacing:-7.359176pt;}
.ws2c{word-spacing:-7.130157pt;}
.ws22{word-spacing:-6.853794pt;}
.ws2e{word-spacing:-6.798522pt;}
.ws6c{word-spacing:-6.079979pt;}
.wsd{word-spacing:-5.693071pt;}
.ws47{word-spacing:-5.140346pt;}
.ws60{word-spacing:-4.808710pt;}
.ws21{word-spacing:-4.477075pt;}
.ws32{word-spacing:-4.366530pt;}
.ws6b{word-spacing:-3.592715pt;}
.ws7{word-spacing:-1.492358pt;}
.ws6{word-spacing:0.000000pt;}
.ws2b{word-spacing:1.326541pt;}
.ws6f{word-spacing:1.879266pt;}
.ws19{word-spacing:2.708354pt;}
.ws18{word-spacing:5.003641pt;}
.ws1a{word-spacing:5.061822pt;}
.ws3f{word-spacing:5.547213pt;}
.ws39{word-spacing:6.580124pt;}
.ws12{word-spacing:6.656637pt;}
.ws1{word-spacing:9.477200pt;}
.ws2{word-spacing:9.587400pt;}
.ws1c{word-spacing:16.832875pt;}
.ws17{word-spacing:34.618211pt;}
.ws1b{word-spacing:2083.948354pt;}
._21{margin-left:-5.079930pt;}
._0{margin-left:-3.306000pt;}
._9{margin-left:-2.295392pt;}
._2{margin-left:-1.389700pt;}
._a{width:1.803638pt;}
._1{width:3.306000pt;}
._8{width:5.040153pt;}
._6{width:9.175241pt;}
._27{width:10.612326pt;}
._f{width:14.370859pt;}
._20{width:18.295209pt;}
._10{width:19.191490pt;}
._5{width:20.313293pt;}
._1e{width:21.556288pt;}
._19{width:23.146671pt;}
._7{width:24.111345pt;}
._23{width:25.259548pt;}
._22{width:26.199181pt;}
._1b{width:27.359904pt;}
._1c{width:28.410082pt;}
._4{width:30.234076pt;}
._1a{width:31.158206pt;}
._3{width:33.937335pt;}
._15{width:35.152205pt;}
._1f{width:37.695868pt;}
._26{width:39.298771pt;}
._1d{width:41.122765pt;}
._14{width:46.057101pt;}
._e{width:49.192555pt;}
._c{width:50.909133pt;}
._25{width:52.674724pt;}
._13{width:56.614577pt;}
._24{width:60.081244pt;}
._16{width:64.026852pt;}
._12{width:65.516474pt;}
._11{width:100.213995pt;}
._18{width:1230.873577pt;}
._d{width:1473.084687pt;}
._17{width:1926.391859pt;}
._b{width:1976.370082pt;}
.fs2{font-size:0.000000pt;}
.fs8{font-size:38.690667pt;}
.fs4{font-size:50.477333pt;}
.fs0{font-size:55.272533pt;}
.fs6{font-size:58.181867pt;}
.fs3{font-size:60.572800pt;}
.fs7{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:95.484000pt;}
.y16{bottom:128.504000pt;}
.y84{bottom:131.032000pt;}
.y4a{bottom:137.926667pt;}
.yb7{bottom:141.433333pt;}
.y15{bottom:150.182667pt;}
.y49{bottom:159.605333pt;}
.yb6{bottom:163.112000pt;}
.y83{bottom:164.666667pt;}
.y14{bottom:171.861333pt;}
.y48{bottom:181.284000pt;}
.yb5{bottom:184.790667pt;}
.y82{bottom:194.314667pt;}
.y66{bottom:201.092000pt;}
.y13{bottom:201.509333pt;}
.y47{bottom:202.962667pt;}
.yb4{bottom:206.469333pt;}
.y81{bottom:227.949333pt;}
.y65{bottom:230.741333pt;}
.y46{bottom:232.610667pt;}
.yb3{bottom:236.117333pt;}
.y12{bottom:245.438667pt;}
.y80{bottom:249.628000pt;}
.y45{bottom:254.289333pt;}
.y64{bottom:264.374667pt;}
.yb2{bottom:265.766667pt;}
.y11{bottom:267.117333pt;}
.y7f{bottom:271.306667pt;}
.y44{bottom:275.968000pt;}
.y63{bottom:286.053333pt;}
.yb1{bottom:287.445333pt;}
.y7e{bottom:292.985333pt;}
.y43{bottom:297.646667pt;}
.y99{bottom:298.825333pt;}
.yb0{bottom:309.124000pt;}
.y10{bottom:310.984000pt;}
.y7d{bottom:314.664000pt;}
.y42{bottom:319.325333pt;}
.y62{bottom:319.688000pt;}
.y98{bottom:320.504000pt;}
.yaf{bottom:330.802667pt;}
.y7c{bottom:336.342667pt;}
.y41{bottom:341.004000pt;}
.y97{bottom:342.182667pt;}
.y61{bottom:349.336000pt;}
.yae{bottom:360.450667pt;}
.y96{bottom:363.861333pt;}
.yf{bottom:368.269333pt;}
.y40{bottom:370.653333pt;}
.y7b{bottom:377.084000pt;}
.y60{bottom:382.970667pt;}
.y95{bottom:385.540000pt;}
.ye{bottom:389.948000pt;}
.yad{bottom:390.100000pt;}
.y3f{bottom:392.332000pt;}
.y5f{bottom:404.649333pt;}
.yd{bottom:411.626667pt;}
.yac{bottom:411.778667pt;}
.y3e{bottom:421.980000pt;}
.y94{bottom:426.281333pt;}
.y5e{bottom:426.328000pt;}
.y7a{bottom:431.402667pt;}
.yc{bottom:433.305333pt;}
.yab{bottom:433.457333pt;}
.y5d{bottom:448.006667pt;}
.y3d{bottom:451.629333pt;}
.y79{bottom:453.081333pt;}
.yaa{bottom:455.136000pt;}
.yb{bottom:462.954667pt;}
.y5c{bottom:469.685333pt;}
.y3c{bottom:473.308000pt;}
.ya9{bottom:476.814667pt;}
.y93{bottom:480.601333pt;}
.y78{bottom:486.716000pt;}
.y5b{bottom:491.364000pt;}
.y3b{bottom:502.956000pt;}
.ya8{bottom:506.462667pt;}
.y5a{bottom:513.042667pt;}
.y92{bottom:514.234667pt;}
.y77{bottom:520.349333pt;}
.y3a{bottom:532.605333pt;}
.y91{bottom:535.913333pt;}
.ya7{bottom:536.112000pt;}
.y76{bottom:542.028000pt;}
.y59{bottom:542.690667pt;}
.y90{bottom:557.592000pt;}
.ya6{bottom:557.790667pt;}
.y39{bottom:562.254667pt;}
.y58{bottom:564.369333pt;}
.y75{bottom:575.661333pt;}
.y8f{bottom:579.270667pt;}
.y38{bottom:583.933333pt;}
.y57{bottom:586.048000pt;}
.ya5{bottom:587.440000pt;}
.y8e{bottom:600.949333pt;}
.y74{bottom:605.310667pt;}
.y37{bottom:613.581333pt;}
.ya4{bottom:617.088000pt;}
.y56{bottom:626.789333pt;}
.y8d{bottom:630.598667pt;}
.y36{bottom:635.260000pt;}
.ya3{bottom:638.766667pt;}
.y73{bottom:638.944000pt;}
.y2b{bottom:645.024000pt;}
.ybc{bottom:648.160000pt;}
.y8c{bottom:652.277333pt;}
.y35{bottom:656.938667pt;}
.ya2{bottom:660.445333pt;}
.y72{bottom:660.622667pt;}
.ya{bottom:664.718667pt;}
.ybb{bottom:669.838667pt;}
.y8b{bottom:673.956000pt;}
.y34{bottom:678.617333pt;}
.y2a{bottom:680.520000pt;}
.y55{bottom:681.109333pt;}
.ya1{bottom:682.124000pt;}
.y71{bottom:682.301333pt;}
.yba{bottom:691.517333pt;}
.y9{bottom:694.368000pt;}
.y33{bottom:700.296000pt;}
.y54{bottom:702.788000pt;}
.y70{bottom:703.980000pt;}
.ya0{bottom:711.773333pt;}
.y8a{bottom:714.696000pt;}
.y29{bottom:716.017333pt;}
.y32{bottom:721.974667pt;}
.y53{bottom:724.466667pt;}
.y8{bottom:729.436000pt;}
.y6f{bottom:733.629333pt;}
.yb9{bottom:738.174667pt;}
.y21{bottom:739.190667pt;}
.y9f{bottom:741.421333pt;}
.y31{bottom:743.653333pt;}
.y52{bottom:746.145333pt;}
.y28{bottom:751.513333pt;}
.y6e{bottom:755.308000pt;}
.y9e{bottom:763.100000pt;}
.y6{bottom:764.505333pt;}
.y30{bottom:765.332000pt;}
.y51{bottom:767.824000pt;}
.y20{bottom:768.838667pt;}
.y89{bottom:769.016000pt;}
.y27{bottom:773.192000pt;}
.y6d{bottom:776.986667pt;}
.y7{bottom:777.025333pt;}
.y4{bottom:782.570667pt;}
.y2f{bottom:787.010667pt;}
.y50{bottom:789.502667pt;}
.y88{bottom:790.694667pt;}
.y9d{bottom:792.749333pt;}
.y26{bottom:794.870667pt;}
.y5{bottom:795.090667pt;}
.y1f{bottom:798.488000pt;}
.y6c{bottom:798.665333pt;}
.yb8{bottom:800.718667pt;}
.y2e{bottom:808.689333pt;}
.y25{bottom:816.549333pt;}
.y3{bottom:820.402667pt;}
.y9c{bottom:822.397333pt;}
.y87{bottom:824.329333pt;}
.y1e{bottom:828.136000pt;}
.y6b{bottom:828.313333pt;}
.y2d{bottom:830.368000pt;}
.y4f{bottom:836.158667pt;}
.y24{bottom:838.228000pt;}
.y9b{bottom:844.076000pt;}
.y2{bottom:847.501333pt;}
.y6a{bottom:849.992000pt;}
.y2c{bottom:852.046667pt;}
.y1d{bottom:857.785333pt;}
.y86{bottom:857.962667pt;}
.y23{bottom:859.906667pt;}
.y9a{bottom:865.754667pt;}
.y69{bottom:871.670667pt;}
.y1b{bottom:873.725333pt;}
.y85{bottom:879.641333pt;}
.y22{bottom:881.585333pt;}
.y1{bottom:882.569333pt;}
.y1c{bottom:887.433333pt;}
.y1a{bottom:895.404000pt;}
.y4e{bottom:898.704000pt;}
.y68{bottom:901.320000pt;}
.y19{bottom:917.082667pt;}
.y4d{bottom:920.382667pt;}
.y67{bottom:922.998667pt;}
.y4c{bottom:942.061333pt;}
.y18{bottom:963.740000pt;}
.y17{bottom:1014.120000pt;}
.h4{height:0.000000pt;}
.h6{height:38.622061pt;}
.h2{height:42.291045pt;}
.h8{height:43.636400pt;}
.h5{height:46.346473pt;}
.h9{height:47.820800pt;}
.ha{height:54.515650pt;}
.h7{height:57.384800pt;}
.h3{height:82.650000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:94.488000pt;}
.xd{left:115.216000pt;}
.xf{left:118.384000pt;}
.x1{left:151.181333pt;}
.x8{left:256.141333pt;}
.x7{left:258.798667pt;}
.x2{left:260.776000pt;}
.xa{left:368.389333pt;}
.x9{left:371.046667pt;}
.xe{left:393.242667pt;}
.x4{left:528.852000pt;}
.x3{left:531.509333pt;}
.xb{left:560.576000pt;}
.x6{left:623.004000pt;}
.x5{left:625.661333pt;}
}




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