
    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_db406cbf68fb97e6c527ca5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963379;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_8aa0a347f62c039a9e0327af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041992;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_e8efccf68792575280e92e3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.970703;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_537ef362d8924d60fca7535b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_41746ac5fbe4b0234c78432a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089500;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_fea040d6f5427d05e8158ff6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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_ff516190a9403616bcf4128d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_0ad5a39e2eeb0506d60458d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_a7235d04e0d19eb6da50aa5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_12202148f42d2fe6f7599762.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_d5882b59c24373acc983c2f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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_aefd3ef031581bb3a7d31db3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_2dbf4451bc881d6febd38e54.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.760763;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:ffe;src:url('chunks/assets/font_b3543bbedf7e95e893f877c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.843750;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:fff;src:url('chunks/assets/font_2b35d4f7ba1ffd1f656fbca4.woff2')format("woff");}.fff{font-family:fff;line-height:0.740234;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.239282,-0.072416,0.072373,0.239295,0,0);-ms-transform:matrix(0.239282,-0.072416,0.072373,0.239295,0,0);-webkit-transform:matrix(0.239282,-0.072416,0.072373,0.239295,0,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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004979px;}
.ls1{letter-spacing:0.032310px;}
.ls0{letter-spacing:0.032400px;}
.ls8{letter-spacing:17.976556px;}
.ls6{letter-spacing:17.999996px;}
.ls7{letter-spacing:29.953135px;}
.ls5{letter-spacing:77.953124px;}
.ls4{letter-spacing:78.000005px;}
.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;}
}
.ws7{word-spacing:-31.545602px;}
.ws11{word-spacing:-28.476001px;}
.ws10{word-spacing:-28.272002px;}
.wsa{word-spacing:-28.254000px;}
.wsd{word-spacing:-25.764002px;}
.ws5{word-spacing:-23.808002px;}
.wsf{word-spacing:-23.268000px;}
.ws9{word-spacing:-23.052000px;}
.ws8{word-spacing:-22.320001px;}
.ws12{word-spacing:-21.873598px;}
.wse{word-spacing:-20.832000px;}
.ws6{word-spacing:-20.340001px;}
.ws13{word-spacing:-19.344001px;}
.ws1{word-spacing:-18.984000px;}
.wsc{word-spacing:-14.880000px;}
.ws4{word-spacing:-11.634000px;}
.wsb{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:79.543200px;}
._a{margin-left:-17.943236px;}
._4{margin-left:-14.442001px;}
._c{margin-left:-11.352000px;}
._7{margin-left:-9.462001px;}
._b{margin-left:-7.392000px;}
._5{margin-left:-5.376000px;}
._6{margin-left:-3.806764px;}
._9{margin-left:-2.736000px;}
._0{margin-left:-1.620000px;}
._3{width:1.123200px;}
._2{width:2.667600px;}
._1{width:4.320000px;}
._8{width:108.022165px;}
.fc11{color:rgb(255,255,255);}
.fcd{color:rgb(255,0,0);}
.fc0{color:rgb(28,49,58);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(89,89,89);}
.fc4{color:rgb(136,136,136);}
.fc3{color:rgb(242,98,36);}
.fc7{color:rgb(68,84,106);}
.fc6{color:transparent;}
.fc5{color:rgb(255,192,0);}
.fc8{color:rgb(0,151,167);}
.fce{color:rgb(0,124,137);}
.fcc{color:rgb(37,43,54);}
.fc9{color:rgb(34,0,204);}
.fc10{color:rgb(53,28,117);}
.fca{color:rgb(5,99,193);}
.fcf{color:rgb(56,118,29);}
.fcb{color:rgb(102,0,0);}
.fs8{font-size:42.000000px;}
.fsf{font-size:48.000003px;}
.fs4{font-size:54.000002px;}
.fs12{font-size:60.000000px;}
.fs2{font-size:66.000004px;}
.fs3{font-size:72.000002px;}
.fsd{font-size:78.000005px;}
.fs1{font-size:84.000000px;}
.fs14{font-size:88.199994px;}
.fs6{font-size:90.000003px;}
.fsc{font-size:96.000006px;}
.fs11{font-size:102.000000px;}
.fsb{font-size:108.000003px;}
.fs9{font-size:114.000007px;}
.fs13{font-size:120.000001px;}
.fsa{font-size:126.000004px;}
.fs10{font-size:127.200010px;}
.fs16{font-size:129.000000px;}
.fs15{font-size:129.000001px;}
.fs5{font-size:140.400000px;}
.fs7{font-size:174.000012px;}
.fs0{font-size:180.000006px;}
.fse{font-size:198.000006px;}
.y7a{bottom:-133.821249px;}
.y79{bottom:-113.571248px;}
.y78{bottom:-93.321247px;}
.y0{bottom:0.000000px;}
.y4{bottom:20.978835px;}
.yf{bottom:35.399515px;}
.y31{bottom:45.424827px;}
.ye{bottom:47.999513px;}
.y88{bottom:49.068522px;}
.y83{bottom:50.515745px;}
.y44{bottom:50.609873px;}
.y6d{bottom:51.680367px;}
.y2d{bottom:52.627583px;}
.y35{bottom:54.376632px;}
.y58{bottom:54.646749px;}
.y5d{bottom:57.634240px;}
.y7d{bottom:58.677732px;}
.y26{bottom:59.725152px;}
.yd{bottom:61.319514px;}
.y2c{bottom:65.227578px;}
.yad{bottom:65.571271px;}
.y98{bottom:70.294710px;}
.y87{bottom:74.268517px;}
.yab{bottom:74.784887px;}
.y43{bottom:75.809869px;}
.y57{bottom:76.246745px;}
.y7c{bottom:76.677733px;}
.y9d{bottom:76.691090px;}
.y34{bottom:77.776633px;}
.y2b{bottom:77.827575px;}
.y6c{bottom:85.220365px;}
.y2a{bottom:90.427577px;}
.y7b{bottom:94.677734px;}
.y53{bottom:96.155882px;}
.y25{bottom:97.525160px;}
.y56{bottom:97.846744px;}
.yaa{bottom:98.184887px;}
.y86{bottom:99.468524px;}
.y42{bottom:101.009875px;}
.y33{bottom:101.176634px;}
.y29{bottom:103.027576px;}
.y1d{bottom:103.926613px;}
.y28{bottom:115.627574px;}
.y6e{bottom:117.143841px;}
.y6b{bottom:118.760351px;}
.y55{bottom:119.446747px;}
.y52{bottom:123.155883px;}
.y85{bottom:124.668518px;}
.y41{bottom:126.209869px;}
.y1c{bottom:128.676614px;}
.y24{bottom:135.325159px;}
.y3e{bottom:139.937003px;}
.y54{bottom:141.046748px;}
.ya9{bottom:144.984900px;}
.y84{bottom:149.868516px;}
.y51{bottom:150.155884px;}
.y40{bottom:151.409868px;}
.y1b{bottom:153.426615px;}
.y6a{bottom:153.596348px;}
.y5{bottom:156.932084px;}
.ya8{bottom:168.384901px;}
.y3d{bottom:173.057004px;}
.y23{bottom:173.125159px;}
.ya0{bottom:174.005067px;}
.y50{bottom:177.155885px;}
.yb{bottom:180.124906px;}
.y69{bottom:187.616349px;}
.y68{bottom:190.915029px;}
.y9e{bottom:202.044444px;}
.y4f{bottom:204.155886px;}
.ya{bottom:207.124911px;}
.y3c{bottom:212.177001px;}
.y8f{bottom:214.616001px;}
.ya7{bottom:215.184902px;}
.y93{bottom:230.824849px;}
.y4e{bottom:231.155887px;}
.y67{bottom:232.072897px;}
.y9{bottom:234.124909px;}
.y97{bottom:237.781158px;}
.ya6{bottom:238.584914px;}
.y8e{bottom:239.815995px;}
.y3b{bottom:245.297013px;}
.y20{bottom:248.958596px;}
.y92{bottom:256.024845px;}
.y4d{bottom:258.155888px;}
.y73{bottom:258.334864px;}
.y66{bottom:259.612875px;}
.y96{bottom:260.146890px;}
.y8d{bottom:265.015992px;}
.y1f{bottom:273.708590px;}
.y3a{bottom:278.417014px;}
.y91{bottom:281.224835px;}
.y72{bottom:283.084865px;}
.y4c{bottom:285.155888px;}
.y95{bottom:285.346880px;}
.ya5{bottom:285.384905px;}
.y8c{bottom:290.215981px;}
.y65{bottom:293.152861px;}
.y16{bottom:294.338015px;}
.y8{bottom:296.474041px;}
.y1e{bottom:298.458591px;}
.y59{bottom:300.987612px;}
.y3{bottom:304.111646px;}
.y71{bottom:307.834865px;}
.y90{bottom:308.584835px;}
.ya4{bottom:308.784905px;}
.y5a{bottom:310.206197px;}
.y39{bottom:311.537016px;}
.y4b{bottom:312.155889px;}
.y94{bottom:312.706881px;}
.y8b{bottom:317.575982px;}
.y9c{bottom:318.294444px;}
.y15{bottom:319.088027px;}
.y64{bottom:320.692862px;}
.y9f{bottom:321.952899px;}
.y70{bottom:332.584868px;}
.y7{bottom:334.382045px;}
.y4a{bottom:339.155890px;}
.y14{bottom:343.838028px;}
.y82{bottom:347.127028px;}
.y63{bottom:348.232852px;}
.y38{bottom:350.657013px;}
.y5c{bottom:364.822023px;}
.y49{bottom:366.155891px;}
.y22{bottom:367.031925px;}
.y13{bottom:368.588029px;}
.y6{bottom:372.290038px;}
.y81{bottom:377.907026px;}
.ya3{bottom:380.681065px;}
.y62{bottom:381.772849px;}
.y9b{bottom:383.969164px;}
.y37{bottom:389.777017px;}
.y21{bottom:391.781926px;}
.y48{bottom:393.155892px;}
.y12{bottom:393.338029px;}
.y2{bottom:393.476584px;}
.y5b{bottom:399.166025px;}
.y27{bottom:403.062395px;}
.y80{bottom:408.687025px;}
.ya2{bottom:413.849064px;}
.y61{bottom:415.312846px;}
.y47{bottom:420.155893px;}
.y36{bottom:422.897012px;}
.y9a{bottom:423.299165px;}
.y30{bottom:435.144561px;}
.y46{bottom:447.155897px;}
.y60{bottom:450.148844px;}
.ya1{bottom:455.775649px;}
.y75{bottom:458.480345px;}
.y2f{bottom:459.624564px;}
.y99{bottom:462.629167px;}
.y77{bottom:463.371284px;}
.y1{bottom:473.576578px;}
.y45{bottom:474.155896px;}
.y8a{bottom:478.330041px;}
.y1a{bottom:483.952200px;}
.y5f{bottom:484.168845px;}
.y2e{bottom:488.424562px;}
.y74{bottom:496.280345px;}
.y76{bottom:497.391285px;}
.y10{bottom:505.865172px;}
.y19{bottom:508.702201px;}
.y5e{bottom:517.907194px;}
.y89{bottom:526.930039px;}
.y3f{bottom:529.930510px;}
.y6f{bottom:529.930817px;}
.y18{bottom:533.452202px;}
.y32{bottom:534.196513px;}
.y11{bottom:534.896101px;}
.y7e{bottom:540.962313px;}
.y7f{bottom:541.688692px;}
.yc{bottom:557.777223px;}
.y17{bottom:558.202205px;}
.yac{bottom:574.987652px;}
.h9{height:30.577148px;}
.he{height:31.332000px;}
.h16{height:34.945315px;}
.h4{height:38.759767px;}
.h8{height:39.313478px;}
.h1e{height:48.049807px;}
.h1f{height:48.750000px;}
.h15{height:49.218752px;}
.h3{height:51.679689px;}
.h10{height:56.786137px;}
.hb{height:60.292969px;}
.h13{height:61.154297px;}
.h11{height:63.375004px;}
.h14{height:64.599611px;}
.h2{height:68.250000px;}
.h6{height:69.120002px;}
.h26{height:71.662495px;}
.h18{height:73.125002px;}
.h1c{height:73.212891px;}
.h1d{height:74.258789px;}
.hf{height:78.000005px;}
.h1b{height:79.289063px;}
.h22{height:81.826177px;}
.hc{height:86.132815px;}
.hd{height:87.750003px;}
.h21{height:88.617193px;}
.h1a{height:90.439456px;}
.h28{height:92.592773px;}
.h27{height:92.592774px;}
.ha{height:92.625005px;}
.h24{height:97.500001px;}
.h19{height:97.945316px;}
.h17{height:103.350008px;}
.h5{height:115.057800px;}
.h1{height:136.845708px;}
.h7{height:141.375009px;}
.h12{height:142.119145px;}
.h20{height:144.149419px;}
.h23{height:146.250005px;}
.h25{height:160.875005px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x4{left:9.881132px;}
.x2a{left:20.041260px;}
.x3d{left:22.078076px;}
.x3c{left:23.929134px;}
.x30{left:25.570867px;}
.x25{left:26.695866px;}
.x1{left:31.313978px;}
.x42{left:32.625001px;}
.x23{left:34.060040px;}
.x28{left:37.160434px;}
.x35{left:42.062011px;}
.xb{left:44.689963px;}
.x1c{left:57.487792px;}
.x2b{left:64.125002px;}
.x2{left:66.658468px;}
.x1a{left:70.615519px;}
.x3f{left:72.758860px;}
.x45{left:76.564963px;}
.x36{left:78.062011px;}
.x37{left:85.573731px;}
.x1b{left:89.292827px;}
.x32{left:90.841449px;}
.x13{left:92.012565px;}
.x31{left:95.329729px;}
.x48{left:97.850039px;}
.x19{left:104.580205px;}
.x14{left:107.072341px;}
.x17{left:113.659899px;}
.x15{left:116.382920px;}
.x18{left:119.516925px;}
.x24{left:124.839573px;}
.x16{left:128.363013px;}
.x33{left:135.829730px;}
.x43{left:199.396660px;}
.x39{left:238.557224px;}
.x1e{left:241.668401px;}
.x3{left:243.130147px;}
.x1d{left:245.849609px;}
.x7{left:265.957391px;}
.x5{left:271.115077px;}
.x2f{left:304.621074px;}
.x2c{left:306.295300px;}
.x29{left:321.437002px;}
.x6{left:331.865954px;}
.xc{left:351.380936px;}
.x40{left:439.573818px;}
.x44{left:449.536424px;}
.x21{left:457.123548px;}
.xd{left:462.773647px;}
.x2d{left:470.499956px;}
.x22{left:492.386810px;}
.x38{left:508.127956px;}
.x1f{left:634.269733px;}
.x46{left:640.567933px;}
.x20{left:651.625934px;}
.x34{left:666.995084px;}
.x3e{left:671.937997px;}
.x47{left:678.803140px;}
.x8{left:699.324890px;}
.x26{left:701.495122px;}
.xa{left:721.183632px;}
.x27{left:723.107583px;}
.x49{left:736.379862px;}
.x41{left:762.921249px;}
.xf{left:826.330956px;}
.x10{left:828.339892px;}
.x3a{left:829.760033px;}
.x3b{left:844.409210px;}
.x12{left:847.314397px;}
.x11{left:850.158234px;}
.x9{left:872.248528px;}
.xe{left:946.579665px;}
.x2e{left:1040.050946px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004425pt;}
.ls1{letter-spacing:0.028720pt;}
.ls0{letter-spacing:0.028800pt;}
.ls8{letter-spacing:15.979161pt;}
.ls6{letter-spacing:15.999997pt;}
.ls7{letter-spacing:26.625009pt;}
.ls5{letter-spacing:69.291666pt;}
.ls4{letter-spacing:69.333338pt;}
.ws7{word-spacing:-28.040536pt;}
.ws11{word-spacing:-25.312001pt;}
.ws10{word-spacing:-25.130668pt;}
.wsa{word-spacing:-25.114667pt;}
.wsd{word-spacing:-22.901335pt;}
.ws5{word-spacing:-21.162668pt;}
.wsf{word-spacing:-20.682667pt;}
.ws9{word-spacing:-20.490667pt;}
.ws8{word-spacing:-19.840001pt;}
.ws12{word-spacing:-19.443199pt;}
.wse{word-spacing:-18.517333pt;}
.ws6{word-spacing:-18.080001pt;}
.ws13{word-spacing:-17.194668pt;}
.ws1{word-spacing:-16.874667pt;}
.wsc{word-spacing:-13.226667pt;}
.ws4{word-spacing:-10.341333pt;}
.wsb{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:70.705066pt;}
._a{margin-left:-15.949543pt;}
._4{margin-left:-12.837334pt;}
._c{margin-left:-10.090667pt;}
._7{margin-left:-8.410667pt;}
._b{margin-left:-6.570667pt;}
._5{margin-left:-4.778667pt;}
._6{margin-left:-3.383791pt;}
._9{margin-left:-2.432000pt;}
._0{margin-left:-1.440000pt;}
._3{width:0.998400pt;}
._2{width:2.371200pt;}
._1{width:3.840000pt;}
._8{width:96.019702pt;}
.fs8{font-size:37.333333pt;}
.fsf{font-size:42.666669pt;}
.fs4{font-size:48.000002pt;}
.fs12{font-size:53.333334pt;}
.fs2{font-size:58.666670pt;}
.fs3{font-size:64.000002pt;}
.fsd{font-size:69.333338pt;}
.fs1{font-size:74.666666pt;}
.fs14{font-size:78.399995pt;}
.fs6{font-size:80.000003pt;}
.fsc{font-size:85.333339pt;}
.fs11{font-size:90.666667pt;}
.fsb{font-size:96.000003pt;}
.fs9{font-size:101.333339pt;}
.fs13{font-size:106.666667pt;}
.fsa{font-size:112.000004pt;}
.fs10{font-size:113.066676pt;}
.fs16{font-size:114.666666pt;}
.fs15{font-size:114.666668pt;}
.fs5{font-size:124.800000pt;}
.fs7{font-size:154.666677pt;}
.fs0{font-size:160.000005pt;}
.fse{font-size:176.000006pt;}
.y7a{bottom:-118.952221pt;}
.y79{bottom:-100.952221pt;}
.y78{bottom:-82.952220pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:18.647853pt;}
.yf{bottom:31.466236pt;}
.y31{bottom:40.377624pt;}
.ye{bottom:42.666234pt;}
.y88{bottom:43.616464pt;}
.y83{bottom:44.902884pt;}
.y44{bottom:44.986554pt;}
.y6d{bottom:45.938104pt;}
.y2d{bottom:46.780074pt;}
.y35{bottom:48.334784pt;}
.y58{bottom:48.574888pt;}
.y5d{bottom:51.230435pt;}
.y7d{bottom:52.157984pt;}
.y26{bottom:53.089024pt;}
.yd{bottom:54.506234pt;}
.y2c{bottom:57.980070pt;}
.yad{bottom:58.285574pt;}
.y98{bottom:62.484187pt;}
.y87{bottom:66.016460pt;}
.yab{bottom:66.475455pt;}
.y43{bottom:67.386550pt;}
.y57{bottom:67.774885pt;}
.y7c{bottom:68.157985pt;}
.y9d{bottom:68.169858pt;}
.y34{bottom:69.134785pt;}
.y2b{bottom:69.180067pt;}
.y6c{bottom:75.751435pt;}
.y2a{bottom:80.380068pt;}
.y7b{bottom:84.157985pt;}
.y53{bottom:85.471895pt;}
.y25{bottom:86.689031pt;}
.y56{bottom:86.974884pt;}
.yaa{bottom:87.275456pt;}
.y86{bottom:88.416466pt;}
.y42{bottom:89.786556pt;}
.y33{bottom:89.934786pt;}
.y29{bottom:91.580068pt;}
.y1d{bottom:92.379212pt;}
.y28{bottom:102.780066pt;}
.y6e{bottom:104.127859pt;}
.y6b{bottom:105.564756pt;}
.y55{bottom:106.174886pt;}
.y52{bottom:109.471896pt;}
.y85{bottom:110.816460pt;}
.y41{bottom:112.186550pt;}
.y1c{bottom:114.379212pt;}
.y24{bottom:120.289031pt;}
.y3e{bottom:124.388447pt;}
.y54{bottom:125.374887pt;}
.ya9{bottom:128.875467pt;}
.y84{bottom:133.216459pt;}
.y51{bottom:133.471897pt;}
.y40{bottom:134.586549pt;}
.y1b{bottom:136.379213pt;}
.y6a{bottom:136.530087pt;}
.y5{bottom:139.495186pt;}
.ya8{bottom:149.675468pt;}
.y3d{bottom:153.828448pt;}
.y23{bottom:153.889031pt;}
.ya0{bottom:154.671171pt;}
.y50{bottom:157.471898pt;}
.yb{bottom:160.111028pt;}
.y69{bottom:166.770088pt;}
.y68{bottom:169.702248pt;}
.y9e{bottom:179.595061pt;}
.y4f{bottom:181.471899pt;}
.ya{bottom:184.111032pt;}
.y3c{bottom:188.601779pt;}
.y8f{bottom:190.769779pt;}
.ya7{bottom:191.275469pt;}
.y93{bottom:205.177643pt;}
.y4e{bottom:205.471899pt;}
.y67{bottom:206.287019pt;}
.y9{bottom:208.111030pt;}
.y97{bottom:211.361029pt;}
.ya6{bottom:212.075480pt;}
.y8e{bottom:213.169774pt;}
.y3b{bottom:218.041790pt;}
.y20{bottom:221.296530pt;}
.y92{bottom:227.577640pt;}
.y4d{bottom:229.471900pt;}
.y73{bottom:229.630990pt;}
.y66{bottom:230.767000pt;}
.y96{bottom:231.241680pt;}
.y8d{bottom:235.569770pt;}
.y1f{bottom:243.296525pt;}
.y3a{bottom:247.481791pt;}
.y91{bottom:249.977631pt;}
.y72{bottom:251.630991pt;}
.y4c{bottom:253.471901pt;}
.y95{bottom:253.641671pt;}
.ya5{bottom:253.675471pt;}
.y8c{bottom:257.969761pt;}
.y65{bottom:260.580321pt;}
.y16{bottom:261.633791pt;}
.y8{bottom:263.532481pt;}
.y1e{bottom:265.296525pt;}
.y59{bottom:267.544544pt;}
.y3{bottom:270.321463pt;}
.y71{bottom:273.630991pt;}
.y90{bottom:274.297631pt;}
.ya4{bottom:274.475472pt;}
.y5a{bottom:275.738842pt;}
.y39{bottom:276.921792pt;}
.y4b{bottom:277.471902pt;}
.y94{bottom:277.961672pt;}
.y8b{bottom:282.289762pt;}
.y9c{bottom:282.928395pt;}
.y15{bottom:283.633802pt;}
.y64{bottom:285.060322pt;}
.y9f{bottom:286.180355pt;}
.y70{bottom:295.630994pt;}
.y7{bottom:297.228484pt;}
.y4a{bottom:301.471902pt;}
.y14{bottom:305.633803pt;}
.y82{bottom:308.557359pt;}
.y63{bottom:309.540313pt;}
.y38{bottom:311.695123pt;}
.y5c{bottom:324.286243pt;}
.y49{bottom:325.471903pt;}
.y22{bottom:326.250600pt;}
.y13{bottom:327.633803pt;}
.y6{bottom:330.924478pt;}
.y81{bottom:335.917356pt;}
.ya3{bottom:338.383169pt;}
.y62{bottom:339.353644pt;}
.y9b{bottom:341.305924pt;}
.y37{bottom:346.468460pt;}
.y21{bottom:348.250601pt;}
.y48{bottom:349.471904pt;}
.y12{bottom:349.633804pt;}
.y2{bottom:349.756964pt;}
.y5b{bottom:354.814244pt;}
.y27{bottom:358.277684pt;}
.y80{bottom:363.277355pt;}
.ya2{bottom:367.865834pt;}
.y61{bottom:369.166975pt;}
.y47{bottom:373.471905pt;}
.y36{bottom:375.908455pt;}
.y9a{bottom:376.265925pt;}
.y30{bottom:386.795165pt;}
.y46{bottom:397.471908pt;}
.y60{bottom:400.132306pt;}
.ya1{bottom:405.133910pt;}
.y75{bottom:407.538085pt;}
.y2f{bottom:408.555168pt;}
.y99{bottom:411.225926pt;}
.y77{bottom:411.885586pt;}
.y1{bottom:420.956958pt;}
.y45{bottom:421.471907pt;}
.y8a{bottom:425.182258pt;}
.y1a{bottom:430.179733pt;}
.y5f{bottom:430.372306pt;}
.y2e{bottom:434.155167pt;}
.y74{bottom:441.138085pt;}
.y76{bottom:442.125587pt;}
.y10{bottom:449.657931pt;}
.y19{bottom:452.179734pt;}
.y5e{bottom:460.361950pt;}
.y89{bottom:468.382257pt;}
.y3f{bottom:471.049342pt;}
.y6f{bottom:471.049615pt;}
.y18{bottom:474.179735pt;}
.y32{bottom:474.841345pt;}
.y11{bottom:475.463201pt;}
.y7e{bottom:480.855389pt;}
.y7f{bottom:481.501059pt;}
.yc{bottom:495.801976pt;}
.y17{bottom:496.179738pt;}
.yac{bottom:511.100135pt;}
.h9{height:27.179687pt;}
.he{height:27.850667pt;}
.h16{height:31.062502pt;}
.h4{height:34.453126pt;}
.h8{height:34.945314pt;}
.h1e{height:42.710940pt;}
.h1f{height:43.333334pt;}
.h15{height:43.750001pt;}
.h3{height:45.937501pt;}
.h10{height:50.476566pt;}
.hb{height:53.593750pt;}
.h13{height:54.359375pt;}
.h11{height:56.333337pt;}
.h14{height:57.421877pt;}
.h2{height:60.666666pt;}
.h6{height:61.440002pt;}
.h26{height:63.699996pt;}
.h18{height:65.000002pt;}
.h1c{height:65.078125pt;}
.h1d{height:66.007813pt;}
.hf{height:69.333338pt;}
.h1b{height:70.479167pt;}
.h22{height:72.734379pt;}
.hc{height:76.562502pt;}
.hd{height:78.000002pt;}
.h21{height:78.770838pt;}
.h1a{height:80.390628pt;}
.h28{height:82.304687pt;}
.h27{height:82.304688pt;}
.ha{height:82.333338pt;}
.h24{height:86.666667pt;}
.h19{height:87.062503pt;}
.h17{height:91.866674pt;}
.h5{height:102.273600pt;}
.h1{height:121.640629pt;}
.h7{height:125.666675pt;}
.h12{height:126.328129pt;}
.h20{height:128.132817pt;}
.h23{height:130.000004pt;}
.h25{height:143.000005pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x4{left:8.783229pt;}
.x2a{left:17.814454pt;}
.x3d{left:19.624957pt;}
.x3c{left:21.270342pt;}
.x30{left:22.729660pt;}
.x25{left:23.729659pt;}
.x1{left:27.834647pt;}
.x42{left:29.000001pt;}
.x23{left:30.275591pt;}
.x28{left:33.031497pt;}
.x35{left:37.388454pt;}
.xb{left:39.724411pt;}
.x1c{left:51.100260pt;}
.x2b{left:57.000002pt;}
.x2{left:59.251972pt;}
.x1a{left:62.769350pt;}
.x3f{left:64.674542pt;}
.x45{left:68.057745pt;}
.x36{left:69.388454pt;}
.x37{left:76.065538pt;}
.x1b{left:79.371402pt;}
.x32{left:80.747955pt;}
.x13{left:81.788947pt;}
.x31{left:84.737537pt;}
.x48{left:86.977813pt;}
.x19{left:92.960182pt;}
.x14{left:95.175414pt;}
.x17{left:101.031021pt;}
.x15{left:103.451484pt;}
.x18{left:106.237266pt;}
.x24{left:110.968510pt;}
.x16{left:114.100456pt;}
.x33{left:120.737538pt;}
.x43{left:177.241476pt;}
.x39{left:212.050866pt;}
.x1e{left:214.816357pt;}
.x3{left:216.115686pt;}
.x1d{left:218.532986pt;}
.x7{left:236.406570pt;}
.x5{left:240.991180pt;}
.x2f{left:270.774288pt;}
.x2c{left:272.262489pt;}
.x29{left:285.721779pt;}
.x6{left:294.991959pt;}
.xc{left:312.338610pt;}
.x40{left:390.732283pt;}
.x44{left:399.587933pt;}
.x21{left:406.332043pt;}
.xd{left:411.354353pt;}
.x2d{left:418.222183pt;}
.x22{left:437.677164pt;}
.x38{left:451.669294pt;}
.x1f{left:563.795318pt;}
.x46{left:569.393718pt;}
.x20{left:579.223053pt;}
.x34{left:592.884519pt;}
.x3e{left:597.278219pt;}
.x47{left:603.380569pt;}
.x8{left:621.622125pt;}
.x26{left:623.551220pt;}
.xa{left:641.052118pt;}
.x27{left:642.762296pt;}
.x49{left:654.559877pt;}
.x41{left:678.152222pt;}
.xf{left:734.516406pt;}
.x10{left:736.302127pt;}
.x3a{left:737.564474pt;}
.x3b{left:750.585964pt;}
.x12{left:753.168353pt;}
.x11{left:755.696208pt;}
.x9{left:775.332025pt;}
.xe{left:841.404147pt;}
.x2e{left:924.489730pt;}
}




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