
    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_3fd11933ad3a8d18f873e27b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_8d29dbdea448f3ee23f7eb8a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135000;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_cc8a26ba107442d6a21ef006.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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);}
.v3{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.500000px;}
.v1{vertical-align:31.500000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls6{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.375000px;}
.ls9{letter-spacing:0.933000px;}
.lsb{letter-spacing:1.494000px;}
.ls4{letter-spacing:1.506000px;}
.ls0{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.518000px;}
.ls8{letter-spacing:2.970000px;}
.lsc{letter-spacing:4.524000px;}
.lsa{letter-spacing:13.494000px;}
.ls5{letter-spacing:15.249000px;}
.lsd{letter-spacing:100.512000px;}
.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;}
}
.ws52{word-spacing:-17.580000px;}
.ws2c{word-spacing:-17.286000px;}
.ws4a{word-spacing:-17.082000px;}
.ws37{word-spacing:-17.076000px;}
.ws3a{word-spacing:-17.058000px;}
.ws17{word-spacing:-17.028000px;}
.ws53{word-spacing:-17.004000px;}
.ws34{word-spacing:-16.992000px;}
.ws5c{word-spacing:-16.974000px;}
.ws63{word-spacing:-16.956000px;}
.ws5b{word-spacing:-16.950000px;}
.ws48{word-spacing:-16.902000px;}
.ws54{word-spacing:-16.830000px;}
.ws67{word-spacing:-16.812000px;}
.ws26{word-spacing:-16.710000px;}
.ws41{word-spacing:-16.674000px;}
.ws13{word-spacing:-16.650000px;}
.ws4e{word-spacing:-16.638000px;}
.ws2a{word-spacing:-16.548000px;}
.ws1e{word-spacing:-16.542000px;}
.ws5e{word-spacing:-16.536000px;}
.ws62{word-spacing:-16.512000px;}
.ws16{word-spacing:-16.500000px;}
.ws68{word-spacing:-16.494000px;}
.ws22{word-spacing:-16.488000px;}
.ws27{word-spacing:-16.482000px;}
.ws19{word-spacing:-16.470000px;}
.ws69{word-spacing:-16.464000px;}
.ws28{word-spacing:-16.410000px;}
.ws49{word-spacing:-16.344000px;}
.ws29{word-spacing:-16.320000px;}
.ws6c{word-spacing:-16.260000px;}
.ws60{word-spacing:-16.254000px;}
.ws51{word-spacing:-16.236000px;}
.ws4{word-spacing:-16.170000px;}
.ws61{word-spacing:-16.158000px;}
.ws3c{word-spacing:-16.134000px;}
.ws50{word-spacing:-16.116000px;}
.ws1d{word-spacing:-16.044000px;}
.ws6a{word-spacing:-16.038000px;}
.ws1f{word-spacing:-16.032000px;}
.ws6b{word-spacing:-16.014000px;}
.ws5f{word-spacing:-16.002000px;}
.ws3b{word-spacing:-15.948000px;}
.ws38{word-spacing:-15.924000px;}
.ws20{word-spacing:-15.840000px;}
.ws4f{word-spacing:-15.798000px;}
.ws23{word-spacing:-15.660000px;}
.ws39{word-spacing:-15.618000px;}
.ws1b{word-spacing:-15.510000px;}
.ws1c{word-spacing:-15.432000px;}
.ws25{word-spacing:-15.360000px;}
.ws5d{word-spacing:-15.168000px;}
.ws24{word-spacing:-14.868000px;}
.ws18{word-spacing:-14.850000px;}
.ws1{word-spacing:-14.535000px;}
.ws2{word-spacing:-14.250000px;}
.ws6{word-spacing:-14.238000px;}
.ws15{word-spacing:-14.130000px;}
.ws57{word-spacing:-13.980000px;}
.ws7{word-spacing:-13.968000px;}
.ws8{word-spacing:-13.908000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.416000px;}
.ws11{word-spacing:-13.272000px;}
.ws5{word-spacing:-13.230000px;}
.ws4c{word-spacing:-13.224000px;}
.ws66{word-spacing:-13.158000px;}
.ws4b{word-spacing:-13.014000px;}
.ws59{word-spacing:-13.008000px;}
.ws58{word-spacing:-12.978000px;}
.ws64{word-spacing:-12.414000px;}
.ws9{word-spacing:-11.988000px;}
.ws14{word-spacing:-11.760000px;}
.ws1a{word-spacing:-11.542500px;}
.ws5a{word-spacing:-10.278000px;}
.ws4d{word-spacing:-10.125000px;}
.ws55{word-spacing:-10.053000px;}
.ws12{word-spacing:-9.855000px;}
.ws56{word-spacing:-9.828000px;}
.ws65{word-spacing:-9.621000px;}
.ws21{word-spacing:-9.252000px;}
.ws43{word-spacing:-1.290000px;}
.wsc{word-spacing:-0.990000px;}
.ws45{word-spacing:-0.540000px;}
.wse{word-spacing:-0.528000px;}
.ws3{word-spacing:0.000000px;}
.ws31{word-spacing:0.516000px;}
.wsf{word-spacing:0.654000px;}
.wsd{word-spacing:0.804000px;}
.ws35{word-spacing:0.816000px;}
.ws42{word-spacing:0.882000px;}
.ws36{word-spacing:1.152000px;}
.ws10{word-spacing:1.176000px;}
.ws30{word-spacing:1.212000px;}
.ws47{word-spacing:1.320000px;}
.ws40{word-spacing:1.410000px;}
.ws3e{word-spacing:2.286000px;}
.ws3d{word-spacing:2.358000px;}
.ws46{word-spacing:2.562000px;}
.ws33{word-spacing:2.712000px;}
.ws2b{word-spacing:2.952000px;}
.ws3f{word-spacing:3.456000px;}
.ws2f{word-spacing:3.630000px;}
.wsb{word-spacing:3.648000px;}
.ws32{word-spacing:3.714000px;}
.ws44{word-spacing:3.834000px;}
.ws2d{word-spacing:4.308000px;}
.ws2e{word-spacing:6.486000px;}
._e{margin-left:-7.632000px;}
._7{margin-left:-5.514000px;}
._15{margin-left:-4.479000px;}
._4{margin-left:-3.471000px;}
._2{margin-left:-1.536000px;}
._0{width:1.536000px;}
._1{width:2.976000px;}
._3{width:4.233000px;}
._5{width:5.352000px;}
._8{width:6.942000px;}
._6{width:7.995000px;}
._d{width:9.075000px;}
._11{width:10.587000px;}
._18{width:12.055500px;}
._17{width:13.071000px;}
._13{width:14.574000px;}
._14{width:15.598500px;}
._16{width:16.663500px;}
._c{width:17.970000px;}
._b{width:19.300500px;}
._19{width:20.670000px;}
._f{width:25.773000px;}
._1b{width:30.012000px;}
._27{width:31.530000px;}
._1e{width:36.012000px;}
._25{width:37.542000px;}
._1d{width:38.994000px;}
._9{width:48.183000px;}
._a{width:49.500000px;}
._20{width:51.072000px;}
._1a{width:67.530000px;}
._28{width:69.030000px;}
._29{width:96.024000px;}
._2a{width:97.524000px;}
._24{width:121.530000px;}
._26{width:154.530000px;}
._1c{width:156.030000px;}
._1f{width:189.024000px;}
._23{width:222.030000px;}
._12{width:595.146000px;}
._22{width:681.006000px;}
._10{width:1168.278000px;}
._21{width:1401.006000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:40.500000px;}
.fs7{font-size:46.170000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:67.188000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:49.036425px;}
.y45{bottom:50.536425px;}
.y76{bottom:50.911425px;}
.y9d{bottom:56.161425px;}
.y24{bottom:64.036425px;}
.y44{bottom:67.786425px;}
.y75{bottom:68.161425px;}
.y9c{bottom:73.411425px;}
.y23{bottom:79.036425px;}
.y43{bottom:85.036425px;}
.y74{bottom:85.411425px;}
.y22{bottom:94.036425px;}
.y9b{bottom:94.786425px;}
.y42{bottom:102.286425px;}
.y73{bottom:102.661425px;}
.y21{bottom:109.036425px;}
.y9a{bottom:116.536425px;}
.y41{bottom:119.536425px;}
.y72{bottom:119.911425px;}
.y20{bottom:124.036425px;}
.y40{bottom:136.786425px;}
.y71{bottom:137.161425px;}
.y99{bottom:137.911425px;}
.y1f{bottom:139.036425px;}
.y1e{bottom:154.036425px;}
.y70{bottom:154.411425px;}
.y98{bottom:159.286425px;}
.y1d{bottom:169.036425px;}
.y3f{bottom:171.286425px;}
.y6f{bottom:171.661425px;}
.y97{bottom:181.036425px;}
.y1c{bottom:184.036425px;}
.y3e{bottom:188.536425px;}
.y6e{bottom:188.911425px;}
.y1b{bottom:199.036425px;}
.y96{bottom:202.411425px;}
.y3d{bottom:205.786425px;}
.y6d{bottom:206.161425px;}
.y1a{bottom:214.036425px;}
.y3c{bottom:223.036425px;}
.y6c{bottom:223.411425px;}
.y95{bottom:228.286425px;}
.y19{bottom:229.036425px;}
.y3b{bottom:240.286425px;}
.y6b{bottom:240.661425px;}
.y18{bottom:244.036425px;}
.y94{bottom:245.536425px;}
.y3a{bottom:257.536425px;}
.y6a{bottom:257.911425px;}
.y80{bottom:259.036425px;}
.y7f{bottom:274.036425px;}
.y39{bottom:274.786425px;}
.y69{bottom:275.161425px;}
.y16{bottom:284.911425px;}
.y93{bottom:288.661425px;}
.y7e{bottom:289.036425px;}
.y38{bottom:292.036425px;}
.y68{bottom:292.411425px;}
.y15{bottom:299.911425px;}
.y78{bottom:301.036425px;}
.y7d{bottom:304.036425px;}
.y92{bottom:305.911425px;}
.y37{bottom:309.286425px;}
.y67{bottom:309.661425px;}
.y14{bottom:314.911425px;}
.y7c{bottom:319.036425px;}
.y91{bottom:323.161425px;}
.y36{bottom:326.536425px;}
.y66{bottom:326.911425px;}
.y13{bottom:329.911425px;}
.y7b{bottom:334.036425px;}
.y90{bottom:340.411425px;}
.y35{bottom:343.786425px;}
.y65{bottom:344.161425px;}
.y12{bottom:344.911425px;}
.y7a{bottom:349.036425px;}
.y8f{bottom:357.661425px;}
.y34{bottom:361.036425px;}
.y64{bottom:361.411425px;}
.y79{bottom:364.036425px;}
.y11{bottom:374.911425px;}
.y33{bottom:378.286425px;}
.y63{bottom:378.661425px;}
.y8e{bottom:392.161425px;}
.y32{bottom:395.536425px;}
.y62{bottom:395.911425px;}
.yac{bottom:400.786425px;}
.y10{bottom:410.911425px;}
.y31{bottom:412.786425px;}
.y61{bottom:413.161425px;}
.y8d{bottom:413.536425px;}
.y81{bottom:421.786425px;}
.yf{bottom:425.911425px;}
.y30{bottom:430.036425px;}
.y60{bottom:430.411425px;}
.y8c{bottom:430.786425px;}
.yab{bottom:443.911425px;}
.ye{bottom:446.911425px;}
.y2f{bottom:447.286425px;}
.y5f{bottom:447.661425px;}
.y8b{bottom:452.536425px;}
.yd{bottom:461.911425px;}
.y2e{bottom:464.536425px;}
.y5e{bottom:464.911425px;}
.yaa{bottom:465.661425px;}
.yc{bottom:476.911425px;}
.y8a{bottom:478.411425px;}
.y2d{bottom:481.786425px;}
.y5d{bottom:482.161425px;}
.ya9{bottom:487.036425px;}
.yb{bottom:491.911425px;}
.y2c{bottom:499.036425px;}
.y5c{bottom:499.411425px;}
.ya{bottom:506.911425px;}
.ya8{bottom:508.411425px;}
.y2b{bottom:516.286425px;}
.y5b{bottom:516.661425px;}
.y89{bottom:521.536425px;}
.y9{bottom:521.911425px;}
.ya7{bottom:530.161425px;}
.y5a{bottom:533.911425px;}
.y8{bottom:536.911425px;}
.y88{bottom:542.911425px;}
.y59{bottom:551.161425px;}
.ya6{bottom:551.536425px;}
.y7{bottom:551.911425px;}
.y2a{bottom:552.661425px;}
.y87{bottom:564.286425px;}
.y58{bottom:568.411425px;}
.ya5{bottom:572.911425px;}
.y6{bottom:581.911425px;}
.y57{bottom:585.661425px;}
.y86{bottom:586.036425px;}
.ya4{bottom:590.161425px;}
.y56{bottom:602.911425px;}
.y85{bottom:607.411425px;}
.y49{bottom:611.911425px;}
.y5{bottom:619.786425px;}
.y55{bottom:620.161425px;}
.ya3{bottom:620.536425px;}
.y48{bottom:626.911425px;}
.y84{bottom:628.786425px;}
.y54{bottom:637.411425px;}
.y83{bottom:646.036425px;}
.y47{bottom:647.911425px;}
.y53{bottom:654.661425px;}
.ya2{bottom:663.661425px;}
.y46{bottom:668.911425px;}
.y52{bottom:671.911425px;}
.y82{bottom:680.536425px;}
.ya1{bottom:680.911425px;}
.y51{bottom:689.161425px;}
.y4a{bottom:697.786425px;}
.ya0{bottom:698.161425px;}
.y50{bottom:706.411425px;}
.y4{bottom:715.036425px;}
.y4f{bottom:723.661425px;}
.y9f{bottom:728.161425px;}
.y3{bottom:733.786425px;}
.y4e{bottom:740.911425px;}
.y77{bottom:749.536425px;}
.y4d{bottom:758.161425px;}
.y29{bottom:758.911425px;}
.y9e{bottom:771.286425px;}
.y28{bottom:773.911425px;}
.y4c{bottom:775.411425px;}
.y2{bottom:778.786425px;}
.y4b{bottom:792.661425px;}
.y27{bottom:794.911425px;}
.y1{bottom:802.786425px;}
.y26{bottom:809.911425px;}
.y17{bottom:856.786425px;}
.h8{height:41.568000px;}
.h5{height:45.954000px;}
.h7{height:48.507000px;}
.h6{height:49.362000px;}
.h4{height:56.166000px;}
.h9{height:57.156000px;}
.ha{height:61.790670px;}
.h2{height:81.696000px;}
.h3{height:88.676988px;}
.h1{height:901.500000px;}
.h0{height:901.582680px;}
.w1{width:590.250000px;}
.w0{width:590.610240px;}
.x0{left:0.000000px;}
.x1{left:48.116640px;}
.xd{left:56.185140px;}
.xc{left:67.171140px;}
.x4{left:70.801140px;}
.x5{left:83.987640px;}
.x8{left:94.057140px;}
.x7{left:124.178640px;}
.x2{left:176.195640px;}
.x6{left:189.685140px;}
.x9{left:218.123640px;}
.xb{left:267.094140px;}
.xa{left:304.181640px;}
.x3{left:417.491640px;}
@media print{
.v3{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.000000pt;}
.v1{vertical-align:28.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls6{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.333333pt;}
.ls9{letter-spacing:0.829333pt;}
.lsb{letter-spacing:1.328000pt;}
.ls4{letter-spacing:1.338667pt;}
.ls0{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.349333pt;}
.ls8{letter-spacing:2.640000pt;}
.lsc{letter-spacing:4.021333pt;}
.lsa{letter-spacing:11.994667pt;}
.ls5{letter-spacing:13.554667pt;}
.lsd{letter-spacing:89.344000pt;}
.ws52{word-spacing:-15.626667pt;}
.ws2c{word-spacing:-15.365333pt;}
.ws4a{word-spacing:-15.184000pt;}
.ws37{word-spacing:-15.178667pt;}
.ws3a{word-spacing:-15.162667pt;}
.ws17{word-spacing:-15.136000pt;}
.ws53{word-spacing:-15.114667pt;}
.ws34{word-spacing:-15.104000pt;}
.ws5c{word-spacing:-15.088000pt;}
.ws63{word-spacing:-15.072000pt;}
.ws5b{word-spacing:-15.066667pt;}
.ws48{word-spacing:-15.024000pt;}
.ws54{word-spacing:-14.960000pt;}
.ws67{word-spacing:-14.944000pt;}
.ws26{word-spacing:-14.853333pt;}
.ws41{word-spacing:-14.821333pt;}
.ws13{word-spacing:-14.800000pt;}
.ws4e{word-spacing:-14.789333pt;}
.ws2a{word-spacing:-14.709333pt;}
.ws1e{word-spacing:-14.704000pt;}
.ws5e{word-spacing:-14.698667pt;}
.ws62{word-spacing:-14.677333pt;}
.ws16{word-spacing:-14.666667pt;}
.ws68{word-spacing:-14.661333pt;}
.ws22{word-spacing:-14.656000pt;}
.ws27{word-spacing:-14.650667pt;}
.ws19{word-spacing:-14.640000pt;}
.ws69{word-spacing:-14.634667pt;}
.ws28{word-spacing:-14.586667pt;}
.ws49{word-spacing:-14.528000pt;}
.ws29{word-spacing:-14.506667pt;}
.ws6c{word-spacing:-14.453333pt;}
.ws60{word-spacing:-14.448000pt;}
.ws51{word-spacing:-14.432000pt;}
.ws4{word-spacing:-14.373333pt;}
.ws61{word-spacing:-14.362667pt;}
.ws3c{word-spacing:-14.341333pt;}
.ws50{word-spacing:-14.325333pt;}
.ws1d{word-spacing:-14.261333pt;}
.ws6a{word-spacing:-14.256000pt;}
.ws1f{word-spacing:-14.250667pt;}
.ws6b{word-spacing:-14.234667pt;}
.ws5f{word-spacing:-14.224000pt;}
.ws3b{word-spacing:-14.176000pt;}
.ws38{word-spacing:-14.154667pt;}
.ws20{word-spacing:-14.080000pt;}
.ws4f{word-spacing:-14.042667pt;}
.ws23{word-spacing:-13.920000pt;}
.ws39{word-spacing:-13.882667pt;}
.ws1b{word-spacing:-13.786667pt;}
.ws1c{word-spacing:-13.717333pt;}
.ws25{word-spacing:-13.653333pt;}
.ws5d{word-spacing:-13.482667pt;}
.ws24{word-spacing:-13.216000pt;}
.ws18{word-spacing:-13.200000pt;}
.ws1{word-spacing:-12.920000pt;}
.ws2{word-spacing:-12.666667pt;}
.ws6{word-spacing:-12.656000pt;}
.ws15{word-spacing:-12.560000pt;}
.ws57{word-spacing:-12.426667pt;}
.ws7{word-spacing:-12.416000pt;}
.ws8{word-spacing:-12.362667pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.925333pt;}
.ws11{word-spacing:-11.797333pt;}
.ws5{word-spacing:-11.760000pt;}
.ws4c{word-spacing:-11.754667pt;}
.ws66{word-spacing:-11.696000pt;}
.ws4b{word-spacing:-11.568000pt;}
.ws59{word-spacing:-11.562667pt;}
.ws58{word-spacing:-11.536000pt;}
.ws64{word-spacing:-11.034667pt;}
.ws9{word-spacing:-10.656000pt;}
.ws14{word-spacing:-10.453333pt;}
.ws1a{word-spacing:-10.260000pt;}
.ws5a{word-spacing:-9.136000pt;}
.ws4d{word-spacing:-9.000000pt;}
.ws55{word-spacing:-8.936000pt;}
.ws12{word-spacing:-8.760000pt;}
.ws56{word-spacing:-8.736000pt;}
.ws65{word-spacing:-8.552000pt;}
.ws21{word-spacing:-8.224000pt;}
.ws43{word-spacing:-1.146667pt;}
.wsc{word-spacing:-0.880000pt;}
.ws45{word-spacing:-0.480000pt;}
.wse{word-spacing:-0.469333pt;}
.ws3{word-spacing:0.000000pt;}
.ws31{word-spacing:0.458667pt;}
.wsf{word-spacing:0.581333pt;}
.wsd{word-spacing:0.714667pt;}
.ws35{word-spacing:0.725333pt;}
.ws42{word-spacing:0.784000pt;}
.ws36{word-spacing:1.024000pt;}
.ws10{word-spacing:1.045333pt;}
.ws30{word-spacing:1.077333pt;}
.ws47{word-spacing:1.173333pt;}
.ws40{word-spacing:1.253333pt;}
.ws3e{word-spacing:2.032000pt;}
.ws3d{word-spacing:2.096000pt;}
.ws46{word-spacing:2.277333pt;}
.ws33{word-spacing:2.410667pt;}
.ws2b{word-spacing:2.624000pt;}
.ws3f{word-spacing:3.072000pt;}
.ws2f{word-spacing:3.226667pt;}
.wsb{word-spacing:3.242667pt;}
.ws32{word-spacing:3.301333pt;}
.ws44{word-spacing:3.408000pt;}
.ws2d{word-spacing:3.829333pt;}
.ws2e{word-spacing:5.765333pt;}
._e{margin-left:-6.784000pt;}
._7{margin-left:-4.901333pt;}
._15{margin-left:-3.981333pt;}
._4{margin-left:-3.085333pt;}
._2{margin-left:-1.365333pt;}
._0{width:1.365333pt;}
._1{width:2.645333pt;}
._3{width:3.762667pt;}
._5{width:4.757333pt;}
._8{width:6.170667pt;}
._6{width:7.106667pt;}
._d{width:8.066667pt;}
._11{width:9.410667pt;}
._18{width:10.716000pt;}
._17{width:11.618667pt;}
._13{width:12.954667pt;}
._14{width:13.865333pt;}
._16{width:14.812000pt;}
._c{width:15.973333pt;}
._b{width:17.156000pt;}
._19{width:18.373333pt;}
._f{width:22.909333pt;}
._1b{width:26.677333pt;}
._27{width:28.026667pt;}
._1e{width:32.010667pt;}
._25{width:33.370667pt;}
._1d{width:34.661333pt;}
._9{width:42.829333pt;}
._a{width:44.000000pt;}
._20{width:45.397333pt;}
._1a{width:60.026667pt;}
._28{width:61.360000pt;}
._29{width:85.354667pt;}
._2a{width:86.688000pt;}
._24{width:108.026667pt;}
._26{width:137.360000pt;}
._1c{width:138.693333pt;}
._1f{width:168.021333pt;}
._23{width:197.360000pt;}
._12{width:529.018667pt;}
._22{width:605.338667pt;}
._10{width:1038.469333pt;}
._21{width:1245.338667pt;}
.fs6{font-size:36.000000pt;}
.fs7{font-size:41.040000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:59.722667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:43.587933pt;}
.y45{bottom:44.921267pt;}
.y76{bottom:45.254600pt;}
.y9d{bottom:49.921267pt;}
.y24{bottom:56.921267pt;}
.y44{bottom:60.254600pt;}
.y75{bottom:60.587933pt;}
.y9c{bottom:65.254600pt;}
.y23{bottom:70.254600pt;}
.y43{bottom:75.587933pt;}
.y74{bottom:75.921267pt;}
.y22{bottom:83.587933pt;}
.y9b{bottom:84.254600pt;}
.y42{bottom:90.921267pt;}
.y73{bottom:91.254600pt;}
.y21{bottom:96.921267pt;}
.y9a{bottom:103.587933pt;}
.y41{bottom:106.254600pt;}
.y72{bottom:106.587933pt;}
.y20{bottom:110.254600pt;}
.y40{bottom:121.587933pt;}
.y71{bottom:121.921267pt;}
.y99{bottom:122.587933pt;}
.y1f{bottom:123.587933pt;}
.y1e{bottom:136.921267pt;}
.y70{bottom:137.254600pt;}
.y98{bottom:141.587933pt;}
.y1d{bottom:150.254600pt;}
.y3f{bottom:152.254600pt;}
.y6f{bottom:152.587933pt;}
.y97{bottom:160.921267pt;}
.y1c{bottom:163.587933pt;}
.y3e{bottom:167.587933pt;}
.y6e{bottom:167.921267pt;}
.y1b{bottom:176.921267pt;}
.y96{bottom:179.921267pt;}
.y3d{bottom:182.921267pt;}
.y6d{bottom:183.254600pt;}
.y1a{bottom:190.254600pt;}
.y3c{bottom:198.254600pt;}
.y6c{bottom:198.587933pt;}
.y95{bottom:202.921267pt;}
.y19{bottom:203.587933pt;}
.y3b{bottom:213.587933pt;}
.y6b{bottom:213.921267pt;}
.y18{bottom:216.921267pt;}
.y94{bottom:218.254600pt;}
.y3a{bottom:228.921267pt;}
.y6a{bottom:229.254600pt;}
.y80{bottom:230.254600pt;}
.y7f{bottom:243.587933pt;}
.y39{bottom:244.254600pt;}
.y69{bottom:244.587933pt;}
.y16{bottom:253.254600pt;}
.y93{bottom:256.587933pt;}
.y7e{bottom:256.921267pt;}
.y38{bottom:259.587933pt;}
.y68{bottom:259.921267pt;}
.y15{bottom:266.587933pt;}
.y78{bottom:267.587933pt;}
.y7d{bottom:270.254600pt;}
.y92{bottom:271.921267pt;}
.y37{bottom:274.921267pt;}
.y67{bottom:275.254600pt;}
.y14{bottom:279.921267pt;}
.y7c{bottom:283.587933pt;}
.y91{bottom:287.254600pt;}
.y36{bottom:290.254600pt;}
.y66{bottom:290.587933pt;}
.y13{bottom:293.254600pt;}
.y7b{bottom:296.921267pt;}
.y90{bottom:302.587933pt;}
.y35{bottom:305.587933pt;}
.y65{bottom:305.921267pt;}
.y12{bottom:306.587933pt;}
.y7a{bottom:310.254600pt;}
.y8f{bottom:317.921267pt;}
.y34{bottom:320.921267pt;}
.y64{bottom:321.254600pt;}
.y79{bottom:323.587933pt;}
.y11{bottom:333.254600pt;}
.y33{bottom:336.254600pt;}
.y63{bottom:336.587933pt;}
.y8e{bottom:348.587933pt;}
.y32{bottom:351.587933pt;}
.y62{bottom:351.921267pt;}
.yac{bottom:356.254600pt;}
.y10{bottom:365.254600pt;}
.y31{bottom:366.921267pt;}
.y61{bottom:367.254600pt;}
.y8d{bottom:367.587933pt;}
.y81{bottom:374.921267pt;}
.yf{bottom:378.587933pt;}
.y30{bottom:382.254600pt;}
.y60{bottom:382.587933pt;}
.y8c{bottom:382.921267pt;}
.yab{bottom:394.587933pt;}
.ye{bottom:397.254600pt;}
.y2f{bottom:397.587933pt;}
.y5f{bottom:397.921267pt;}
.y8b{bottom:402.254600pt;}
.yd{bottom:410.587933pt;}
.y2e{bottom:412.921267pt;}
.y5e{bottom:413.254600pt;}
.yaa{bottom:413.921267pt;}
.yc{bottom:423.921267pt;}
.y8a{bottom:425.254600pt;}
.y2d{bottom:428.254600pt;}
.y5d{bottom:428.587933pt;}
.ya9{bottom:432.921267pt;}
.yb{bottom:437.254600pt;}
.y2c{bottom:443.587933pt;}
.y5c{bottom:443.921267pt;}
.ya{bottom:450.587933pt;}
.ya8{bottom:451.921267pt;}
.y2b{bottom:458.921267pt;}
.y5b{bottom:459.254600pt;}
.y89{bottom:463.587933pt;}
.y9{bottom:463.921267pt;}
.ya7{bottom:471.254600pt;}
.y5a{bottom:474.587933pt;}
.y8{bottom:477.254600pt;}
.y88{bottom:482.587933pt;}
.y59{bottom:489.921267pt;}
.ya6{bottom:490.254600pt;}
.y7{bottom:490.587933pt;}
.y2a{bottom:491.254600pt;}
.y87{bottom:501.587933pt;}
.y58{bottom:505.254600pt;}
.ya5{bottom:509.254600pt;}
.y6{bottom:517.254600pt;}
.y57{bottom:520.587933pt;}
.y86{bottom:520.921267pt;}
.ya4{bottom:524.587933pt;}
.y56{bottom:535.921267pt;}
.y85{bottom:539.921267pt;}
.y49{bottom:543.921267pt;}
.y5{bottom:550.921267pt;}
.y55{bottom:551.254600pt;}
.ya3{bottom:551.587933pt;}
.y48{bottom:557.254600pt;}
.y84{bottom:558.921267pt;}
.y54{bottom:566.587933pt;}
.y83{bottom:574.254600pt;}
.y47{bottom:575.921267pt;}
.y53{bottom:581.921267pt;}
.ya2{bottom:589.921267pt;}
.y46{bottom:594.587933pt;}
.y52{bottom:597.254600pt;}
.y82{bottom:604.921267pt;}
.ya1{bottom:605.254600pt;}
.y51{bottom:612.587933pt;}
.y4a{bottom:620.254600pt;}
.ya0{bottom:620.587933pt;}
.y50{bottom:627.921267pt;}
.y4{bottom:635.587933pt;}
.y4f{bottom:643.254600pt;}
.y9f{bottom:647.254600pt;}
.y3{bottom:652.254600pt;}
.y4e{bottom:658.587933pt;}
.y77{bottom:666.254600pt;}
.y4d{bottom:673.921267pt;}
.y29{bottom:674.587933pt;}
.y9e{bottom:685.587933pt;}
.y28{bottom:687.921267pt;}
.y4c{bottom:689.254600pt;}
.y2{bottom:692.254600pt;}
.y4b{bottom:704.587933pt;}
.y27{bottom:706.587933pt;}
.y1{bottom:713.587933pt;}
.y26{bottom:719.921267pt;}
.y17{bottom:761.587933pt;}
.h8{height:36.949333pt;}
.h5{height:40.848000pt;}
.h7{height:43.117333pt;}
.h6{height:43.877333pt;}
.h4{height:49.925333pt;}
.h9{height:50.805333pt;}
.ha{height:54.925040pt;}
.h2{height:72.618667pt;}
.h3{height:78.823989pt;}
.h1{height:801.333333pt;}
.h0{height:801.406827pt;}
.w1{width:524.666667pt;}
.w0{width:524.986880pt;}
.x0{left:0.000000pt;}
.x1{left:42.770347pt;}
.xd{left:49.942347pt;}
.xc{left:59.707680pt;}
.x4{left:62.934347pt;}
.x5{left:74.655680pt;}
.x8{left:83.606347pt;}
.x7{left:110.381013pt;}
.x2{left:156.618347pt;}
.x6{left:168.609013pt;}
.x9{left:193.887680pt;}
.xb{left:237.417013pt;}
.xa{left:270.383680pt;}
.x3{left:371.103680pt;}
}




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