
    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_fc936186edcbd13028b38f00.woff')format("woff");}.ff1{font-family:ff1;line-height:0.960938;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_cb6b4daf6c09b8e900d70976.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_b718b892a67ca3a8cb6cc198.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_3274165e159403146d753ae2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.881836;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;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-0.702973px;}
.ls2b{letter-spacing:-0.686497px;}
.ls1a{letter-spacing:-0.631577px;}
.ls19{letter-spacing:-0.554690px;}
.ls2a{letter-spacing:-0.466818px;}
.ls1c{letter-spacing:-0.137299px;}
.ls2c{letter-spacing:-0.082380px;}
.ls24{letter-spacing:-0.037108px;}
.lsb{letter-spacing:-0.036000px;}
.ls17{letter-spacing:-0.028800px;}
.ls18{letter-spacing:-0.021600px;}
.ls11{letter-spacing:-0.014400px;}
.ls10{letter-spacing:-0.007200px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.020220px;}
.lse{letter-spacing:0.020400px;}
.ls13{letter-spacing:0.021028px;}
.ls9{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.028800px;}
.ls14{letter-spacing:0.029686px;}
.ls6{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.043200px;}
.ls28{letter-spacing:0.050400px;}
.ls22{letter-spacing:0.064800px;}
.ls1e{letter-spacing:0.345995px;}
.ls29{letter-spacing:0.360689px;}
.ls21{letter-spacing:0.362470px;}
.ls2{letter-spacing:0.447984px;}
.ls0{letter-spacing:0.501120px;}
.ls27{letter-spacing:0.511056px;}
.ls26{letter-spacing:0.527230px;}
.ls1{letter-spacing:0.532740px;}
.ls5{letter-spacing:0.550368px;}
.ls16{letter-spacing:0.621929px;}
.ls4{letter-spacing:0.735840px;}
.ls25{letter-spacing:0.741417px;}
.ls1b{letter-spacing:0.796337px;}
.ls15{letter-spacing:0.800047px;}
.ls1f{letter-spacing:4.037400px;}
.ls20{letter-spacing:5.066400px;}
.lsc{letter-spacing:26.882400px;}
.lsd{letter-spacing:26.882460px;}
.lsf{letter-spacing:54.866820px;}
.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;}
}
.ws14{word-spacing:-41.526576px;}
.ws0{word-spacing:-30.270240px;}
.wsb{word-spacing:-23.259263px;}
.wsf{word-spacing:-23.192469px;}
.wse{word-spacing:-22.572000px;}
.ws6{word-spacing:-22.564800px;}
.ws3{word-spacing:-22.557600px;}
.wsa{word-spacing:-22.550400px;}
.ws13{word-spacing:-22.543200px;}
.ws5{word-spacing:-22.536000px;}
.ws4{word-spacing:-22.528800px;}
.ws12{word-spacing:-22.521600px;}
.wsd{word-spacing:-22.514400px;}
.ws9{word-spacing:-22.507200px;}
.ws2{word-spacing:-22.500000px;}
.ws10{word-spacing:-21.103200px;}
.ws7{word-spacing:-21.081600px;}
.ws11{word-spacing:-17.931304px;}
.wsc{word-spacing:-16.558310px;}
.ws8{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-6.163200px;}
._e{margin-left:-4.824000px;}
._11{margin-left:-3.499920px;}
._5{margin-left:-2.173320px;}
._0{margin-left:-1.054080px;}
._3{width:1.893600px;}
._9{width:3.081600px;}
._10{width:5.066880px;}
._2{width:6.669600px;}
._1{width:7.711200px;}
._4{width:8.899200px;}
._d{width:10.427460px;}
._a{width:11.626140px;}
._6{width:12.643200px;}
._8{width:14.032800px;}
._7{width:15.127200px;}
._20{width:16.603200px;}
._c{width:17.992800px;}
._b{width:19.454400px;}
._14{width:20.721600px;}
._15{width:23.608800px;}
._18{width:25.077600px;}
._1c{width:26.091420px;}
._1a{width:27.964800px;}
._1b{width:29.332800px;}
._f{width:30.744000px;}
._13{width:31.828380px;}
._1d{width:38.488366px;}
._17{width:43.473600px;}
._1f{width:63.113202px;}
._23{width:115.372800px;}
._19{width:174.339000px;}
._16{width:180.194400px;}
._21{width:196.672138px;}
._22{width:199.418127px;}
._1e{width:230.032186px;}
._24{width:267.069600px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(51,183,211);}
.fc1{color:rgb(150,133,138);}
.fc0{color:rgb(72,62,65);}
.fs8{font-size:54.919767px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:74.215901px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:100.800000px;}
.fs6{font-size:108.000000px;}
.fs4{font-size:131.040000px;}
.fs1{font-size:167.040000px;}
.fs0{font-size:263.520000px;}
.y0{bottom:0.000000px;}
.y68{bottom:2.880015px;}
.y89{bottom:10.800000px;}
.y1{bottom:18.000000px;}
.y88{bottom:30.240000px;}
.y66{bottom:42.119985px;}
.y7{bottom:43.200030px;}
.y1c{bottom:119.880015px;}
.y86{bottom:127.800015px;}
.y57{bottom:132.120000px;}
.yb3{bottom:137.160000px;}
.y9e{bottom:137.520000px;}
.y65{bottom:141.840015px;}
.y67{bottom:146.160000px;}
.y1b{bottom:150.480000px;}
.y85{bottom:153.720000px;}
.y6{bottom:158.040000px;}
.yd2{bottom:158.400000px;}
.yb2{bottom:163.080000px;}
.y9d{bottom:163.800000px;}
.yed{bottom:177.840000px;}
.y1a{bottom:179.280000px;}
.y84{bottom:179.640000px;}
.y56{bottom:184.320000px;}
.y64{bottom:185.760000px;}
.y9c{bottom:189.720000px;}
.y3b{bottom:192.960000px;}
.yec{bottom:204.120000px;}
.y19{bottom:205.560000px;}
.y83{bottom:205.920000px;}
.y55{bottom:210.600000px;}
.y5{bottom:211.320000px;}
.y9b{bottom:216.000000px;}
.yb1{bottom:216.360000px;}
.y3a{bottom:219.240000px;}
.yee{bottom:220.320000px;}
.yc8{bottom:222.840000px;}
.yeb{bottom:230.040000px;}
.y18{bottom:231.480000px;}
.y82{bottom:231.840000px;}
.y54{bottom:236.520000px;}
.yd1{bottom:237.600000px;}
.yb0{bottom:242.280000px;}
.y39{bottom:245.160000px;}
.yea{bottom:256.320000px;}
.y17{bottom:257.760000px;}
.y81{bottom:258.120000px;}
.y53{bottom:262.800000px;}
.yaf{bottom:268.560000px;}
.y9a{bottom:268.920000px;}
.y38{bottom:271.440000px;}
.yc7{bottom:275.760000px;}
.ye9{bottom:282.240000px;}
.y16{bottom:283.680000px;}
.y80{bottom:284.040000px;}
.yd0{bottom:290.520000px;}
.y99{bottom:294.840000px;}
.yc6{bottom:302.040000px;}
.ye8{bottom:308.520000px;}
.y15{bottom:309.600000px;}
.y7f{bottom:310.320000px;}
.y87{bottom:315.360000px;}
.y52{bottom:315.720000px;}
.ycf{bottom:316.440000px;}
.yae{bottom:320.760000px;}
.y98{bottom:321.120000px;}
.y37{bottom:324.360000px;}
.yc5{bottom:328.320000px;}
.ye7{bottom:334.440000px;}
.y14{bottom:335.880000px;}
.y7e{bottom:336.240000px;}
.y51{bottom:341.640000px;}
.yce{bottom:342.720000px;}
.y97{bottom:347.040000px;}
.y36{bottom:350.640000px;}
.yc4{bottom:354.240000px;}
.ye6{bottom:360.360000px;}
.y7d{bottom:362.160000px;}
.y50{bottom:367.920000px;}
.ycd{bottom:368.640000px;}
.y96{bottom:373.320000px;}
.yad{bottom:374.040000px;}
.y35{bottom:376.560000px;}
.yc3{bottom:380.520000px;}
.y13{bottom:388.800000px;}
.ye5{bottom:393.480000px;}
.ycc{bottom:394.920000px;}
.yac{bottom:399.960000px;}
.y34{bottom:402.480000px;}
.yc2{bottom:406.800000px;}
.y7c{bottom:415.440000px;}
.y4f{bottom:420.840000px;}
.y12{bottom:421.920000px;}
.y95{bottom:426.240000px;}
.y33{bottom:428.760000px;}
.yc1{bottom:432.720000px;}
.y7b{bottom:441.360000px;}
.ycb{bottom:444.240000px;}
.ye4{bottom:446.400000px;}
.y4e{bottom:447.120000px;}
.y94{bottom:452.520000px;}
.yab{bottom:453.240000px;}
.y32{bottom:454.680000px;}
.yc0{bottom:459.000000px;}
.y7a{bottom:467.640000px;}
.y11{bottom:471.600000px;}
.ye3{bottom:472.680000px;}
.y4d{bottom:473.040000px;}
.y93{bottom:478.440000px;}
.yaa{bottom:479.520000px;}
.y79{bottom:493.560000px;}
.ye2{bottom:498.600000px;}
.ya9{bottom:505.440000px;}
.y4c{bottom:506.160000px;}
.y31{bottom:507.960000px;}
.y92{bottom:511.560000px;}
.ybf{bottom:512.280000px;}
.y63{bottom:514.800000px;}
.y78{bottom:519.480000px;}
.ye1{bottom:524.520000px;}
.ya8{bottom:531.720000px;}
.y30{bottom:533.880000px;}
.y10{bottom:536.400000px;}
.ybe{bottom:538.200000px;}
.y62{bottom:540.720000px;}
.y77{bottom:545.760000px;}
.ye0{bottom:550.800000px;}
.ya7{bottom:558.000000px;}
.y4b{bottom:559.080000px;}
.y2f{bottom:560.160000px;}
.y61{bottom:567.000000px;}
.y76{bottom:571.680000px;}
.ydf{bottom:576.720000px;}
.ya6{bottom:583.920000px;}
.y4a{bottom:585.000000px;}
.y2e{bottom:586.080000px;}
.ybd{bottom:591.120000px;}
.y60{bottom:592.920000px;}
.y75{bottom:597.960000px;}
.y91{bottom:598.680000px;}
.yf{bottom:601.200000px;}
.yde{bottom:609.840000px;}
.ya5{bottom:610.200000px;}
.y49{bottom:611.280000px;}
.y2d{bottom:612.000000px;}
.ybc{bottom:617.400000px;}
.y5f{bottom:618.840000px;}
.ya4{bottom:636.480000px;}
.y2c{bottom:638.280000px;}
.ybb{bottom:643.320000px;}
.y48{bottom:644.040000px;}
.y5e{bottom:645.120000px;}
.y74{bottom:650.880000px;}
.y90{bottom:651.960000px;}
.ydd{bottom:662.760000px;}
.y2b{bottom:664.200000px;}
.ye{bottom:666.000000px;}
.y5d{bottom:671.040000px;}
.y73{bottom:677.160000px;}
.y8f{bottom:677.880000px;}
.yf5{bottom:686.520000px;}
.ydc{bottom:688.680000px;}
.ya3{bottom:689.400000px;}
.y2a{bottom:690.480000px;}
.yba{bottom:696.600000px;}
.y47{bottom:697.320000px;}
.y72{bottom:703.080000px;}
.y8e{bottom:704.160000px;}
.ydb{bottom:714.960000px;}
.ya2{bottom:715.680000px;}
.y29{bottom:716.400000px;}
.yb9{bottom:722.880000px;}
.y46{bottom:723.240000px;}
.y71{bottom:729.000000px;}
.y8d{bottom:730.080000px;}
.yd{bottom:730.800000px;}
.yf4{bottom:739.800000px;}
.yda{bottom:740.880000px;}
.y28{bottom:742.680000px;}
.ya1{bottom:748.440000px;}
.yb8{bottom:748.800000px;}
.y45{bottom:749.160000px;}
.y5c{bottom:750.240000px;}
.y70{bottom:755.280000px;}
.y8c{bottom:756.000000px;}
.y9f{bottom:759.960000px;}
.yd9{bottom:767.160000px;}
.y27{bottom:768.600000px;}
.yb7{bottom:775.080000px;}
.y44{bottom:775.440000px;}
.y5b{bottom:776.160000px;}
.y6f{bottom:781.200000px;}
.y8b{bottom:782.280000px;}
.yf3{bottom:792.720000px;}
.yd8{bottom:793.080000px;}
.y26{bottom:794.520000px;}
.yc{bottom:795.600000px;}
.yb6{bottom:801.000000px;}
.y43{bottom:801.360000px;}
.y5a{bottom:802.440000px;}
.yca{bottom:807.480000px;}
.y8a{bottom:808.200000px;}
.yd7{bottom:819.360000px;}
.yb5{bottom:827.280000px;}
.y25{bottom:827.640000px;}
.y59{bottom:828.360000px;}
.yc9{bottom:833.400000px;}
.y6e{bottom:834.480000px;}
.yd6{bottom:845.280000px;}
.yf2{bottom:846.000000px;}
.y42{bottom:853.560000px;}
.y58{bottom:854.640000px;}
.yb{bottom:860.400000px;}
.yd5{bottom:871.200000px;}
.yb4{bottom:879.480000px;}
.y41{bottom:879.840000px;}
.y24{bottom:880.560000px;}
.y6d{bottom:886.680000px;}
.yd4{bottom:897.480000px;}
.yf1{bottom:898.920000px;}
.y4{bottom:902.160000px;}
.ya0{bottom:905.760000px;}
.y23{bottom:906.840000px;}
.y40{bottom:912.600000px;}
.yf0{bottom:924.840000px;}
.ya{bottom:925.200000px;}
.yd3{bottom:930.240000px;}
.y22{bottom:932.760000px;}
.y6c{bottom:938.520000px;}
.yef{bottom:957.960000px;}
.y21{bottom:958.680000px;}
.y6b{bottom:964.800000px;}
.y3f{bottom:965.520000px;}
.y3{bottom:966.240000px;}
.y20{bottom:984.960000px;}
.y9{bottom:990.000000px;}
.y6a{bottom:990.720000px;}
.y3e{bottom:991.800000px;}
.y1f{bottom:1010.880000px;}
.y69{bottom:1017.000000px;}
.y3d{bottom:1017.720000px;}
.y2{bottom:1022.040000px;}
.y1e{bottom:1037.160000px;}
.y3c{bottom:1044.000000px;}
.y8{bottom:1054.800000px;}
.y1d{bottom:1069.920000px;}
.hc{height:41.994314px;}
.he{height:43.559970px;}
.hd{height:43.559985px;}
.h7{height:54.703125px;}
.h8{height:55.054688px;}
.hb{height:55.440015px;}
.ha{height:56.749073px;}
.h5{height:63.863438px;}
.h4{height:76.584375px;}
.h9{height:82.054688px;}
.h6{height:100.199531px;}
.h3{height:127.726875px;}
.h2{height:200.213438px;}
.h1{height:1152.000000px;}
.h0{height:1188.000000px;}
.w3{width:270.000000px;}
.w4{width:295.560000px;}
.w2{width:648.000000px;}
.w1{width:882.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:10.800000px;}
.x1{left:18.000000px;}
.x2{left:72.720000px;}
.xb{left:80.280030px;}
.x9{left:87.480045px;}
.x5{left:99.719985px;}
.x4{left:126.720000px;}
.xf{left:128.689485px;}
.x10{left:143.437500px;}
.xc{left:465.480000px;}
.x6{left:478.633620px;}
.x17{left:480.240000px;}
.x14{left:515.969985px;}
.x11{left:522.149385px;}
.x12{left:527.774385px;}
.x7{left:552.461820px;}
.xe{left:600.583020px;}
.xd{left:663.591120px;}
.x15{left:704.565735px;}
.x8{left:714.599820px;}
.x13{left:716.370135px;}
.x3{left:717.480150px;}
.x16{left:770.039835px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.624865pt;}
.ls2b{letter-spacing:-0.610220pt;}
.ls1a{letter-spacing:-0.561402pt;}
.ls19{letter-spacing:-0.493057pt;}
.ls2a{letter-spacing:-0.414949pt;}
.ls1c{letter-spacing:-0.122044pt;}
.ls2c{letter-spacing:-0.073226pt;}
.ls24{letter-spacing:-0.032985pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls17{letter-spacing:-0.025600pt;}
.ls18{letter-spacing:-0.019200pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls10{letter-spacing:-0.006400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.017973pt;}
.lse{letter-spacing:0.018133pt;}
.ls13{letter-spacing:0.018691pt;}
.ls9{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.025600pt;}
.ls14{letter-spacing:0.026388pt;}
.ls6{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.038400pt;}
.ls28{letter-spacing:0.044800pt;}
.ls22{letter-spacing:0.057600pt;}
.ls1e{letter-spacing:0.307551pt;}
.ls29{letter-spacing:0.320613pt;}
.ls21{letter-spacing:0.322196pt;}
.ls2{letter-spacing:0.398208pt;}
.ls0{letter-spacing:0.445440pt;}
.ls27{letter-spacing:0.454272pt;}
.ls26{letter-spacing:0.468649pt;}
.ls1{letter-spacing:0.473547pt;}
.ls5{letter-spacing:0.489216pt;}
.ls16{letter-spacing:0.552826pt;}
.ls4{letter-spacing:0.654080pt;}
.ls25{letter-spacing:0.659037pt;}
.ls1b{letter-spacing:0.707855pt;}
.ls15{letter-spacing:0.711153pt;}
.ls1f{letter-spacing:3.588800pt;}
.ls20{letter-spacing:4.503467pt;}
.lsc{letter-spacing:23.895467pt;}
.lsd{letter-spacing:23.895520pt;}
.lsf{letter-spacing:48.770507pt;}
.ws14{word-spacing:-36.912512pt;}
.ws0{word-spacing:-26.906880pt;}
.wsb{word-spacing:-20.674901pt;}
.wsf{word-spacing:-20.615528pt;}
.wse{word-spacing:-20.064000pt;}
.ws6{word-spacing:-20.057600pt;}
.ws3{word-spacing:-20.051200pt;}
.wsa{word-spacing:-20.044800pt;}
.ws13{word-spacing:-20.038400pt;}
.ws5{word-spacing:-20.032000pt;}
.ws4{word-spacing:-20.025600pt;}
.ws12{word-spacing:-20.019200pt;}
.wsd{word-spacing:-20.012800pt;}
.ws9{word-spacing:-20.006400pt;}
.ws2{word-spacing:-20.000000pt;}
.ws10{word-spacing:-18.758400pt;}
.ws7{word-spacing:-18.739200pt;}
.ws11{word-spacing:-15.938937pt;}
.wsc{word-spacing:-14.718498pt;}
.ws8{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-5.478400pt;}
._e{margin-left:-4.288000pt;}
._11{margin-left:-3.111040pt;}
._5{margin-left:-1.931840pt;}
._0{margin-left:-0.936960pt;}
._3{width:1.683200pt;}
._9{width:2.739200pt;}
._10{width:4.503893pt;}
._2{width:5.928533pt;}
._1{width:6.854400pt;}
._4{width:7.910400pt;}
._d{width:9.268853pt;}
._a{width:10.334347pt;}
._6{width:11.238400pt;}
._8{width:12.473600pt;}
._7{width:13.446400pt;}
._20{width:14.758400pt;}
._c{width:15.993600pt;}
._b{width:17.292800pt;}
._14{width:18.419200pt;}
._15{width:20.985600pt;}
._18{width:22.291200pt;}
._1c{width:23.192373pt;}
._1a{width:24.857600pt;}
._1b{width:26.073600pt;}
._f{width:27.328000pt;}
._13{width:28.291893pt;}
._1d{width:34.211881pt;}
._17{width:38.643200pt;}
._1f{width:56.100624pt;}
._23{width:102.553600pt;}
._19{width:154.968000pt;}
._16{width:160.172800pt;}
._21{width:174.819679pt;}
._22{width:177.260557pt;}
._1e{width:204.473054pt;}
._24{width:237.395200pt;}
.fs8{font-size:48.817571pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:65.969690pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:89.600000pt;}
.fs6{font-size:96.000000pt;}
.fs4{font-size:116.480000pt;}
.fs1{font-size:148.480000pt;}
.fs0{font-size:234.240000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.560013pt;}
.y89{bottom:9.600000pt;}
.y1{bottom:16.000000pt;}
.y88{bottom:26.880000pt;}
.y66{bottom:37.439987pt;}
.y7{bottom:38.400027pt;}
.y1c{bottom:106.560013pt;}
.y86{bottom:113.600013pt;}
.y57{bottom:117.440000pt;}
.yb3{bottom:121.920000pt;}
.y9e{bottom:122.240000pt;}
.y65{bottom:126.080013pt;}
.y67{bottom:129.920000pt;}
.y1b{bottom:133.760000pt;}
.y85{bottom:136.640000pt;}
.y6{bottom:140.480000pt;}
.yd2{bottom:140.800000pt;}
.yb2{bottom:144.960000pt;}
.y9d{bottom:145.600000pt;}
.yed{bottom:158.080000pt;}
.y1a{bottom:159.360000pt;}
.y84{bottom:159.680000pt;}
.y56{bottom:163.840000pt;}
.y64{bottom:165.120000pt;}
.y9c{bottom:168.640000pt;}
.y3b{bottom:171.520000pt;}
.yec{bottom:181.440000pt;}
.y19{bottom:182.720000pt;}
.y83{bottom:183.040000pt;}
.y55{bottom:187.200000pt;}
.y5{bottom:187.840000pt;}
.y9b{bottom:192.000000pt;}
.yb1{bottom:192.320000pt;}
.y3a{bottom:194.880000pt;}
.yee{bottom:195.840000pt;}
.yc8{bottom:198.080000pt;}
.yeb{bottom:204.480000pt;}
.y18{bottom:205.760000pt;}
.y82{bottom:206.080000pt;}
.y54{bottom:210.240000pt;}
.yd1{bottom:211.200000pt;}
.yb0{bottom:215.360000pt;}
.y39{bottom:217.920000pt;}
.yea{bottom:227.840000pt;}
.y17{bottom:229.120000pt;}
.y81{bottom:229.440000pt;}
.y53{bottom:233.600000pt;}
.yaf{bottom:238.720000pt;}
.y9a{bottom:239.040000pt;}
.y38{bottom:241.280000pt;}
.yc7{bottom:245.120000pt;}
.ye9{bottom:250.880000pt;}
.y16{bottom:252.160000pt;}
.y80{bottom:252.480000pt;}
.yd0{bottom:258.240000pt;}
.y99{bottom:262.080000pt;}
.yc6{bottom:268.480000pt;}
.ye8{bottom:274.240000pt;}
.y15{bottom:275.200000pt;}
.y7f{bottom:275.840000pt;}
.y87{bottom:280.320000pt;}
.y52{bottom:280.640000pt;}
.ycf{bottom:281.280000pt;}
.yae{bottom:285.120000pt;}
.y98{bottom:285.440000pt;}
.y37{bottom:288.320000pt;}
.yc5{bottom:291.840000pt;}
.ye7{bottom:297.280000pt;}
.y14{bottom:298.560000pt;}
.y7e{bottom:298.880000pt;}
.y51{bottom:303.680000pt;}
.yce{bottom:304.640000pt;}
.y97{bottom:308.480000pt;}
.y36{bottom:311.680000pt;}
.yc4{bottom:314.880000pt;}
.ye6{bottom:320.320000pt;}
.y7d{bottom:321.920000pt;}
.y50{bottom:327.040000pt;}
.ycd{bottom:327.680000pt;}
.y96{bottom:331.840000pt;}
.yad{bottom:332.480000pt;}
.y35{bottom:334.720000pt;}
.yc3{bottom:338.240000pt;}
.y13{bottom:345.600000pt;}
.ye5{bottom:349.760000pt;}
.ycc{bottom:351.040000pt;}
.yac{bottom:355.520000pt;}
.y34{bottom:357.760000pt;}
.yc2{bottom:361.600000pt;}
.y7c{bottom:369.280000pt;}
.y4f{bottom:374.080000pt;}
.y12{bottom:375.040000pt;}
.y95{bottom:378.880000pt;}
.y33{bottom:381.120000pt;}
.yc1{bottom:384.640000pt;}
.y7b{bottom:392.320000pt;}
.ycb{bottom:394.880000pt;}
.ye4{bottom:396.800000pt;}
.y4e{bottom:397.440000pt;}
.y94{bottom:402.240000pt;}
.yab{bottom:402.880000pt;}
.y32{bottom:404.160000pt;}
.yc0{bottom:408.000000pt;}
.y7a{bottom:415.680000pt;}
.y11{bottom:419.200000pt;}
.ye3{bottom:420.160000pt;}
.y4d{bottom:420.480000pt;}
.y93{bottom:425.280000pt;}
.yaa{bottom:426.240000pt;}
.y79{bottom:438.720000pt;}
.ye2{bottom:443.200000pt;}
.ya9{bottom:449.280000pt;}
.y4c{bottom:449.920000pt;}
.y31{bottom:451.520000pt;}
.y92{bottom:454.720000pt;}
.ybf{bottom:455.360000pt;}
.y63{bottom:457.600000pt;}
.y78{bottom:461.760000pt;}
.ye1{bottom:466.240000pt;}
.ya8{bottom:472.640000pt;}
.y30{bottom:474.560000pt;}
.y10{bottom:476.800000pt;}
.ybe{bottom:478.400000pt;}
.y62{bottom:480.640000pt;}
.y77{bottom:485.120000pt;}
.ye0{bottom:489.600000pt;}
.ya7{bottom:496.000000pt;}
.y4b{bottom:496.960000pt;}
.y2f{bottom:497.920000pt;}
.y61{bottom:504.000000pt;}
.y76{bottom:508.160000pt;}
.ydf{bottom:512.640000pt;}
.ya6{bottom:519.040000pt;}
.y4a{bottom:520.000000pt;}
.y2e{bottom:520.960000pt;}
.ybd{bottom:525.440000pt;}
.y60{bottom:527.040000pt;}
.y75{bottom:531.520000pt;}
.y91{bottom:532.160000pt;}
.yf{bottom:534.400000pt;}
.yde{bottom:542.080000pt;}
.ya5{bottom:542.400000pt;}
.y49{bottom:543.360000pt;}
.y2d{bottom:544.000000pt;}
.ybc{bottom:548.800000pt;}
.y5f{bottom:550.080000pt;}
.ya4{bottom:565.760000pt;}
.y2c{bottom:567.360000pt;}
.ybb{bottom:571.840000pt;}
.y48{bottom:572.480000pt;}
.y5e{bottom:573.440000pt;}
.y74{bottom:578.560000pt;}
.y90{bottom:579.520000pt;}
.ydd{bottom:589.120000pt;}
.y2b{bottom:590.400000pt;}
.ye{bottom:592.000000pt;}
.y5d{bottom:596.480000pt;}
.y73{bottom:601.920000pt;}
.y8f{bottom:602.560000pt;}
.yf5{bottom:610.240000pt;}
.ydc{bottom:612.160000pt;}
.ya3{bottom:612.800000pt;}
.y2a{bottom:613.760000pt;}
.yba{bottom:619.200000pt;}
.y47{bottom:619.840000pt;}
.y72{bottom:624.960000pt;}
.y8e{bottom:625.920000pt;}
.ydb{bottom:635.520000pt;}
.ya2{bottom:636.160000pt;}
.y29{bottom:636.800000pt;}
.yb9{bottom:642.560000pt;}
.y46{bottom:642.880000pt;}
.y71{bottom:648.000000pt;}
.y8d{bottom:648.960000pt;}
.yd{bottom:649.600000pt;}
.yf4{bottom:657.600000pt;}
.yda{bottom:658.560000pt;}
.y28{bottom:660.160000pt;}
.ya1{bottom:665.280000pt;}
.yb8{bottom:665.600000pt;}
.y45{bottom:665.920000pt;}
.y5c{bottom:666.880000pt;}
.y70{bottom:671.360000pt;}
.y8c{bottom:672.000000pt;}
.y9f{bottom:675.520000pt;}
.yd9{bottom:681.920000pt;}
.y27{bottom:683.200000pt;}
.yb7{bottom:688.960000pt;}
.y44{bottom:689.280000pt;}
.y5b{bottom:689.920000pt;}
.y6f{bottom:694.400000pt;}
.y8b{bottom:695.360000pt;}
.yf3{bottom:704.640000pt;}
.yd8{bottom:704.960000pt;}
.y26{bottom:706.240000pt;}
.yc{bottom:707.200000pt;}
.yb6{bottom:712.000000pt;}
.y43{bottom:712.320000pt;}
.y5a{bottom:713.280000pt;}
.yca{bottom:717.760000pt;}
.y8a{bottom:718.400000pt;}
.yd7{bottom:728.320000pt;}
.yb5{bottom:735.360000pt;}
.y25{bottom:735.680000pt;}
.y59{bottom:736.320000pt;}
.yc9{bottom:740.800000pt;}
.y6e{bottom:741.760000pt;}
.yd6{bottom:751.360000pt;}
.yf2{bottom:752.000000pt;}
.y42{bottom:758.720000pt;}
.y58{bottom:759.680000pt;}
.yb{bottom:764.800000pt;}
.yd5{bottom:774.400000pt;}
.yb4{bottom:781.760000pt;}
.y41{bottom:782.080000pt;}
.y24{bottom:782.720000pt;}
.y6d{bottom:788.160000pt;}
.yd4{bottom:797.760000pt;}
.yf1{bottom:799.040000pt;}
.y4{bottom:801.920000pt;}
.ya0{bottom:805.120000pt;}
.y23{bottom:806.080000pt;}
.y40{bottom:811.200000pt;}
.yf0{bottom:822.080000pt;}
.ya{bottom:822.400000pt;}
.yd3{bottom:826.880000pt;}
.y22{bottom:829.120000pt;}
.y6c{bottom:834.240000pt;}
.yef{bottom:851.520000pt;}
.y21{bottom:852.160000pt;}
.y6b{bottom:857.600000pt;}
.y3f{bottom:858.240000pt;}
.y3{bottom:858.880000pt;}
.y20{bottom:875.520000pt;}
.y9{bottom:880.000000pt;}
.y6a{bottom:880.640000pt;}
.y3e{bottom:881.600000pt;}
.y1f{bottom:898.560000pt;}
.y69{bottom:904.000000pt;}
.y3d{bottom:904.640000pt;}
.y2{bottom:908.480000pt;}
.y1e{bottom:921.920000pt;}
.y3c{bottom:928.000000pt;}
.y8{bottom:937.600000pt;}
.y1d{bottom:951.040000pt;}
.hc{height:37.328279pt;}
.he{height:38.719973pt;}
.hd{height:38.719987pt;}
.h7{height:48.625000pt;}
.h8{height:48.937500pt;}
.hb{height:49.280013pt;}
.ha{height:50.443620pt;}
.h5{height:56.767500pt;}
.h4{height:68.075000pt;}
.h9{height:72.937500pt;}
.h6{height:89.066250pt;}
.h3{height:113.535000pt;}
.h2{height:177.967500pt;}
.h1{height:1024.000000pt;}
.h0{height:1056.000000pt;}
.w3{width:240.000000pt;}
.w4{width:262.720000pt;}
.w2{width:576.000000pt;}
.w1{width:784.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:9.600000pt;}
.x1{left:16.000000pt;}
.x2{left:64.640000pt;}
.xb{left:71.360027pt;}
.x9{left:77.760040pt;}
.x5{left:88.639987pt;}
.x4{left:112.640000pt;}
.xf{left:114.390653pt;}
.x10{left:127.500000pt;}
.xc{left:413.760000pt;}
.x6{left:425.452107pt;}
.x17{left:426.880000pt;}
.x14{left:458.639987pt;}
.x11{left:464.132787pt;}
.x12{left:469.132787pt;}
.x7{left:491.077173pt;}
.xe{left:533.851573pt;}
.xd{left:589.858773pt;}
.x15{left:626.280653pt;}
.x8{left:635.199840pt;}
.x13{left:636.773453pt;}
.x3{left:637.760133pt;}
.x16{left:684.479853pt;}
}




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