
    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_cbb857b27d9ce194595cb575.woff')format("woff");}.ff1{font-family:ff1;line-height:0.842773;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_1f55f5348a12592fe7e28b49.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851074;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_dafb900f83e951090596823f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_e48ce22392127485cf01028f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a06b92ead471f1333e793bdd.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_d9815284ff6aaccf4131e672.woff')format("woff");}.ff6{font-family:ff6;line-height:0.930176;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_febc21622f69f145923d7568.woff')format("woff");}.ff7{font-family:ff7;line-height:0.847168;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_bd6ca8345f9972339fcf8f56.woff')format("woff");}.ff8{font-family:ff8;line-height:0.675293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-7.911360px;}
.ls24{letter-spacing:-0.993600px;}
.ls23{letter-spacing:-0.698400px;}
.ls7{letter-spacing:-0.691200px;}
.ls22{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.417312px;}
.ls18{letter-spacing:-0.352800px;}
.lsd{letter-spacing:-0.338688px;}
.ls28{letter-spacing:-0.337680px;}
.ls17{letter-spacing:-0.320544px;}
.ls13{letter-spacing:-0.302400px;}
.ls1a{letter-spacing:-0.284256px;}
.ls1c{letter-spacing:-0.270144px;}
.lsc{letter-spacing:-0.260064px;}
.lsf{letter-spacing:-0.241920px;}
.ls14{letter-spacing:-0.229824px;}
.ls10{letter-spacing:-0.223776px;}
.ls19{letter-spacing:-0.192960px;}
.ls15{letter-spacing:-0.175392px;}
.ls16{letter-spacing:-0.157248px;}
.ls11{letter-spacing:-0.145152px;}
.ls12{letter-spacing:-0.120960px;}
.ls1d{letter-spacing:-0.096480px;}
.ls21{letter-spacing:-0.079200px;}
.ls20{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.028800px;}
.lsb{letter-spacing:-0.021600px;}
.ls9{letter-spacing:-0.014400px;}
.ls8{letter-spacing:-0.007200px;}
.ls6{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.007056px;}
.ls1{letter-spacing:0.007200px;}
.ls2{letter-spacing:0.014400px;}
.ls25{letter-spacing:0.023904px;}
.ls0{letter-spacing:0.077760px;}
.ls1e{letter-spacing:0.106128px;}
.ls4{letter-spacing:0.286848px;}
.ls5{letter-spacing:2.306736px;}
.ls26{letter-spacing:63.480096px;}
.ls1b{letter-spacing:179.712000px;}
.ls3{letter-spacing:843.984000px;}
.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;}
}
.ws13{word-spacing:-43.207200px;}
.wsc{word-spacing:-36.288000px;}
.wsd{word-spacing:-36.003744px;}
.wse{word-spacing:-18.726768px;}
.wsf{word-spacing:-18.620640px;}
.ws3{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.974848px;}
.ws9{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.890176px;}
.ws6{word-spacing:-14.878080px;}
.wsa{word-spacing:-14.859936px;}
.ws4{word-spacing:-14.781312px;}
.ws5{word-spacing:-14.702688px;}
.ws2{word-spacing:-14.630400px;}
.ws12{word-spacing:-14.623200px;}
.ws0{word-spacing:-14.616000px;}
.ws1{word-spacing:-14.601600px;}
.ws10{word-spacing:-13.917600px;}
.ws11{word-spacing:-13.622400px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-8.033760px;}
._1{margin-left:-6.720768px;}
._5{margin-left:-5.461632px;}
._2{margin-left:-3.944160px;}
._3{margin-left:-2.868480px;}
._0{margin-left:-1.434240px;}
._4{width:1.008000px;}
._9{width:5.692320px;}
._8{width:7.525440px;}
._7{width:8.608032px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,112,192);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(15,71,97);}
.fs2{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.480000px;}
.y19{bottom:4.020000px;}
.y13{bottom:4.140000px;}
.ya{bottom:4.680000px;}
.y1c{bottom:4.740000px;}
.yd{bottom:20.400000px;}
.y18{bottom:21.300000px;}
.y12{bottom:21.420000px;}
.y1b{bottom:22.020000px;}
.yc{bottom:37.680000px;}
.y17{bottom:38.580000px;}
.y11{bottom:38.700000px;}
.y16{bottom:55.860000px;}
.y10{bottom:55.980000px;}
.y15{bottom:73.140000px;}
.ybe{bottom:113.760000px;}
.y89{bottom:118.800000px;}
.ybd{bottom:132.120000px;}
.y88{bottom:137.160000px;}
.ybc{bottom:150.480000px;}
.y87{bottom:155.520000px;}
.ybb{bottom:168.840000px;}
.y86{bottom:173.880000px;}
.yba{bottom:187.200000px;}
.y85{bottom:192.240000px;}
.yb9{bottom:205.560000px;}
.y84{bottom:210.240000px;}
.yb8{bottom:223.560000px;}
.y83{bottom:228.600000px;}
.yb7{bottom:241.920000px;}
.y82{bottom:246.960000px;}
.yb6{bottom:260.280000px;}
.y67{bottom:260.640000px;}
.y81{bottom:265.320000px;}
.yb5{bottom:278.640000px;}
.y80{bottom:283.680000px;}
.y61{bottom:284.400000px;}
.y66{bottom:288.000000px;}
.yb4{bottom:297.000000px;}
.y7f{bottom:302.040000px;}
.y60{bottom:306.360000px;}
.y65{bottom:309.240000px;}
.yb3{bottom:315.360000px;}
.y7e{bottom:320.400000px;}
.y5f{bottom:327.600000px;}
.yb2{bottom:333.720000px;}
.y7d{bottom:338.400000px;}
.y5e{bottom:345.960000px;}
.yb1{bottom:351.720000px;}
.y7c{bottom:356.760000px;}
.y5d{bottom:364.320000px;}
.yb0{bottom:370.080000px;}
.y7b{bottom:375.120000px;}
.y5c{bottom:382.680000px;}
.yaf{bottom:388.440000px;}
.y7a{bottom:393.480000px;}
.y25{bottom:400.680000px;}
.yae{bottom:406.800000px;}
.y79{bottom:412.560000px;}
.y5b{bottom:419.040000px;}
.y24{bottom:422.640000px;}
.yad{bottom:425.160000px;}
.y78{bottom:434.520000px;}
.y5a{bottom:437.400000px;}
.yac{bottom:443.520000px;}
.y23{bottom:444.600000px;}
.y59{bottom:455.760000px;}
.y77{bottom:456.480000px;}
.yab{bottom:461.880000px;}
.y22{bottom:466.560000px;}
.y58{bottom:474.120000px;}
.y76{bottom:478.440000px;}
.yaa{bottom:480.240000px;}
.y21{bottom:488.520000px;}
.y57{bottom:492.480000px;}
.ya9{bottom:498.240000px;}
.y75{bottom:500.400000px;}
.y20{bottom:510.480000px;}
.y56{bottom:510.840000px;}
.ya8{bottom:516.600000px;}
.y74{bottom:522.360000px;}
.y55{bottom:528.840000px;}
.y1f{bottom:532.440000px;}
.ya7{bottom:534.960000px;}
.y73{bottom:544.320000px;}
.y54{bottom:547.200000px;}
.ya6{bottom:553.320000px;}
.y1e{bottom:554.400000px;}
.y53{bottom:565.560000px;}
.y72{bottom:566.280000px;}
.ya5{bottom:571.680000px;}
.y1d{bottom:576.360000px;}
.y52{bottom:583.920000px;}
.y71{bottom:588.240000px;}
.ya4{bottom:590.040000px;}
.y1a{bottom:592.500000px;}
.y51{bottom:602.280000px;}
.ya3{bottom:608.400000px;}
.y70{bottom:610.200000px;}
.y50{bottom:620.640000px;}
.ya2{bottom:626.400000px;}
.y3b{bottom:626.760000px;}
.y14{bottom:628.500000px;}
.y6f{bottom:632.160000px;}
.y4f{bottom:639.000000px;}
.ya1{bottom:644.760000px;}
.y3a{bottom:654.120000px;}
.y4e{bottom:657.000000px;}
.ya0{bottom:663.120000px;}
.y4d{bottom:675.360000px;}
.y39{bottom:676.080000px;}
.y9f{bottom:681.480000px;}
.y4c{bottom:693.720000px;}
.y38{bottom:698.040000px;}
.y9e{bottom:699.840000px;}
.y4b{bottom:712.080000px;}
.yf{bottom:715.500000px;}
.y9d{bottom:718.200000px;}
.y37{bottom:720.000000px;}
.y4a{bottom:730.440000px;}
.y9c{bottom:736.560000px;}
.y36{bottom:741.240000px;}
.y6e{bottom:741.960000px;}
.y49{bottom:748.800000px;}
.y9b{bottom:754.560000px;}
.y35{bottom:759.600000px;}
.y6d{bottom:764.280000px;}
.y48{bottom:767.160000px;}
.y9a{bottom:772.920000px;}
.y34{bottom:777.960000px;}
.y47{bottom:785.520000px;}
.yb{bottom:786.000000px;}
.y6c{bottom:786.240000px;}
.y99{bottom:791.280000px;}
.y33{bottom:796.320000px;}
.y46{bottom:803.520000px;}
.y6b{bottom:808.200000px;}
.y98{bottom:809.640000px;}
.y32{bottom:814.680000px;}
.y45{bottom:821.880000px;}
.y97{bottom:828.000000px;}
.y6a{bottom:830.160000px;}
.y31{bottom:833.040000px;}
.y9{bottom:837.000000px;}
.y44{bottom:840.240000px;}
.y96{bottom:846.360000px;}
.y30{bottom:851.400000px;}
.y69{bottom:852.120000px;}
.y43{bottom:858.600000px;}
.y8{bottom:861.480000px;}
.y95{bottom:864.720000px;}
.y2f{bottom:869.400000px;}
.y68{bottom:874.080000px;}
.y42{bottom:876.960000px;}
.y94{bottom:883.080000px;}
.y7{bottom:883.440000px;}
.y2e{bottom:887.760000px;}
.y41{bottom:895.320000px;}
.y64{bottom:896.040000px;}
.y93{bottom:901.080000px;}
.y6{bottom:905.400000px;}
.y2d{bottom:906.120000px;}
.y40{bottom:913.680000px;}
.y63{bottom:918.000000px;}
.y92{bottom:919.440000px;}
.y2c{bottom:924.480000px;}
.y5{bottom:927.720000px;}
.y3f{bottom:931.680000px;}
.y91{bottom:937.800000px;}
.y62{bottom:939.960000px;}
.y2b{bottom:942.840000px;}
.y4{bottom:949.680000px;}
.y3e{bottom:950.040000px;}
.y90{bottom:956.160000px;}
.y2a{bottom:961.920000px;}
.y3d{bottom:968.400000px;}
.y3{bottom:971.640000px;}
.y8f{bottom:974.520000px;}
.y29{bottom:983.880000px;}
.y3c{bottom:986.760000px;}
.y8e{bottom:992.880000px;}
.y2{bottom:993.600000px;}
.y28{bottom:1005.840000px;}
.y8d{bottom:1011.240000px;}
.y1{bottom:1024.920000px;}
.y27{bottom:1027.800000px;}
.y8c{bottom:1029.240000px;}
.y8b{bottom:1047.600000px;}
.y26{bottom:1057.320000px;}
.y8a{bottom:1065.960000px;}
.h3{height:19.500000px;}
.h8{height:36.000000px;}
.h4{height:42.022969px;}
.ha{height:45.123750px;}
.h2{height:48.023438px;}
.hb{height:48.339844px;}
.h5{height:52.500000px;}
.h9{height:64.304297px;}
.h6{height:70.500000px;}
.h1{height:79.660547px;}
.h7{height:88.500000px;}
.h0{height:1188.000000px;}
.w1{width:256.500000px;}
.w2{width:370.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:8.640036px;}
.x1{left:108.000000px;}
.x4{left:135.000000px;}
.x5{left:162.000000px;}
.x3{left:363.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-7.032320pt;}
.ls24{letter-spacing:-0.883200pt;}
.ls23{letter-spacing:-0.620800pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls22{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.370944pt;}
.ls18{letter-spacing:-0.313600pt;}
.lsd{letter-spacing:-0.301056pt;}
.ls28{letter-spacing:-0.300160pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls13{letter-spacing:-0.268800pt;}
.ls1a{letter-spacing:-0.252672pt;}
.ls1c{letter-spacing:-0.240128pt;}
.lsc{letter-spacing:-0.231168pt;}
.lsf{letter-spacing:-0.215040pt;}
.ls14{letter-spacing:-0.204288pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls19{letter-spacing:-0.171520pt;}
.ls15{letter-spacing:-0.155904pt;}
.ls16{letter-spacing:-0.139776pt;}
.ls11{letter-spacing:-0.129024pt;}
.ls12{letter-spacing:-0.107520pt;}
.ls1d{letter-spacing:-0.085760pt;}
.ls21{letter-spacing:-0.070400pt;}
.ls20{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:-0.019200pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:-0.006400pt;}
.ls6{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.006272pt;}
.ls1{letter-spacing:0.006400pt;}
.ls2{letter-spacing:0.012800pt;}
.ls25{letter-spacing:0.021248pt;}
.ls0{letter-spacing:0.069120pt;}
.ls1e{letter-spacing:0.094336pt;}
.ls4{letter-spacing:0.254976pt;}
.ls5{letter-spacing:2.050432pt;}
.ls26{letter-spacing:56.426752pt;}
.ls1b{letter-spacing:159.744000pt;}
.ls3{letter-spacing:750.208000pt;}
.ws13{word-spacing:-38.406400pt;}
.wsc{word-spacing:-32.256000pt;}
.wsd{word-spacing:-32.003328pt;}
.wse{word-spacing:-16.646016pt;}
.wsf{word-spacing:-16.551680pt;}
.ws3{word-spacing:-13.440000pt;}
.ws7{word-spacing:-13.310976pt;}
.ws9{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.235712pt;}
.ws6{word-spacing:-13.224960pt;}
.wsa{word-spacing:-13.208832pt;}
.ws4{word-spacing:-13.138944pt;}
.ws5{word-spacing:-13.069056pt;}
.ws2{word-spacing:-13.004800pt;}
.ws12{word-spacing:-12.998400pt;}
.ws0{word-spacing:-12.992000pt;}
.ws1{word-spacing:-12.979200pt;}
.ws10{word-spacing:-12.371200pt;}
.ws11{word-spacing:-12.108800pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-7.141120pt;}
._1{margin-left:-5.974016pt;}
._5{margin-left:-4.854784pt;}
._2{margin-left:-3.505920pt;}
._3{margin-left:-2.549760pt;}
._0{margin-left:-1.274880pt;}
._4{width:0.896000pt;}
._9{width:5.059840pt;}
._8{width:6.689280pt;}
._7{width:7.651584pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.093333pt;}
.y19{bottom:3.573333pt;}
.y13{bottom:3.680000pt;}
.ya{bottom:4.160000pt;}
.y1c{bottom:4.213333pt;}
.yd{bottom:18.133333pt;}
.y18{bottom:18.933333pt;}
.y12{bottom:19.040000pt;}
.y1b{bottom:19.573333pt;}
.yc{bottom:33.493333pt;}
.y17{bottom:34.293333pt;}
.y11{bottom:34.400000pt;}
.y16{bottom:49.653333pt;}
.y10{bottom:49.760000pt;}
.y15{bottom:65.013333pt;}
.ybe{bottom:101.120000pt;}
.y89{bottom:105.600000pt;}
.ybd{bottom:117.440000pt;}
.y88{bottom:121.920000pt;}
.ybc{bottom:133.760000pt;}
.y87{bottom:138.240000pt;}
.ybb{bottom:150.080000pt;}
.y86{bottom:154.560000pt;}
.yba{bottom:166.400000pt;}
.y85{bottom:170.880000pt;}
.yb9{bottom:182.720000pt;}
.y84{bottom:186.880000pt;}
.yb8{bottom:198.720000pt;}
.y83{bottom:203.200000pt;}
.yb7{bottom:215.040000pt;}
.y82{bottom:219.520000pt;}
.yb6{bottom:231.360000pt;}
.y67{bottom:231.680000pt;}
.y81{bottom:235.840000pt;}
.yb5{bottom:247.680000pt;}
.y80{bottom:252.160000pt;}
.y61{bottom:252.800000pt;}
.y66{bottom:256.000000pt;}
.yb4{bottom:264.000000pt;}
.y7f{bottom:268.480000pt;}
.y60{bottom:272.320000pt;}
.y65{bottom:274.880000pt;}
.yb3{bottom:280.320000pt;}
.y7e{bottom:284.800000pt;}
.y5f{bottom:291.200000pt;}
.yb2{bottom:296.640000pt;}
.y7d{bottom:300.800000pt;}
.y5e{bottom:307.520000pt;}
.yb1{bottom:312.640000pt;}
.y7c{bottom:317.120000pt;}
.y5d{bottom:323.840000pt;}
.yb0{bottom:328.960000pt;}
.y7b{bottom:333.440000pt;}
.y5c{bottom:340.160000pt;}
.yaf{bottom:345.280000pt;}
.y7a{bottom:349.760000pt;}
.y25{bottom:356.160000pt;}
.yae{bottom:361.600000pt;}
.y79{bottom:366.720000pt;}
.y5b{bottom:372.480000pt;}
.y24{bottom:375.680000pt;}
.yad{bottom:377.920000pt;}
.y78{bottom:386.240000pt;}
.y5a{bottom:388.800000pt;}
.yac{bottom:394.240000pt;}
.y23{bottom:395.200000pt;}
.y59{bottom:405.120000pt;}
.y77{bottom:405.760000pt;}
.yab{bottom:410.560000pt;}
.y22{bottom:414.720000pt;}
.y58{bottom:421.440000pt;}
.y76{bottom:425.280000pt;}
.yaa{bottom:426.880000pt;}
.y21{bottom:434.240000pt;}
.y57{bottom:437.760000pt;}
.ya9{bottom:442.880000pt;}
.y75{bottom:444.800000pt;}
.y20{bottom:453.760000pt;}
.y56{bottom:454.080000pt;}
.ya8{bottom:459.200000pt;}
.y74{bottom:464.320000pt;}
.y55{bottom:470.080000pt;}
.y1f{bottom:473.280000pt;}
.ya7{bottom:475.520000pt;}
.y73{bottom:483.840000pt;}
.y54{bottom:486.400000pt;}
.ya6{bottom:491.840000pt;}
.y1e{bottom:492.800000pt;}
.y53{bottom:502.720000pt;}
.y72{bottom:503.360000pt;}
.ya5{bottom:508.160000pt;}
.y1d{bottom:512.320000pt;}
.y52{bottom:519.040000pt;}
.y71{bottom:522.880000pt;}
.ya4{bottom:524.480000pt;}
.y1a{bottom:526.666667pt;}
.y51{bottom:535.360000pt;}
.ya3{bottom:540.800000pt;}
.y70{bottom:542.400000pt;}
.y50{bottom:551.680000pt;}
.ya2{bottom:556.800000pt;}
.y3b{bottom:557.120000pt;}
.y14{bottom:558.666667pt;}
.y6f{bottom:561.920000pt;}
.y4f{bottom:568.000000pt;}
.ya1{bottom:573.120000pt;}
.y3a{bottom:581.440000pt;}
.y4e{bottom:584.000000pt;}
.ya0{bottom:589.440000pt;}
.y4d{bottom:600.320000pt;}
.y39{bottom:600.960000pt;}
.y9f{bottom:605.760000pt;}
.y4c{bottom:616.640000pt;}
.y38{bottom:620.480000pt;}
.y9e{bottom:622.080000pt;}
.y4b{bottom:632.960000pt;}
.yf{bottom:636.000000pt;}
.y9d{bottom:638.400000pt;}
.y37{bottom:640.000000pt;}
.y4a{bottom:649.280000pt;}
.y9c{bottom:654.720000pt;}
.y36{bottom:658.880000pt;}
.y6e{bottom:659.520000pt;}
.y49{bottom:665.600000pt;}
.y9b{bottom:670.720000pt;}
.y35{bottom:675.200000pt;}
.y6d{bottom:679.360000pt;}
.y48{bottom:681.920000pt;}
.y9a{bottom:687.040000pt;}
.y34{bottom:691.520000pt;}
.y47{bottom:698.240000pt;}
.yb{bottom:698.666667pt;}
.y6c{bottom:698.880000pt;}
.y99{bottom:703.360000pt;}
.y33{bottom:707.840000pt;}
.y46{bottom:714.240000pt;}
.y6b{bottom:718.400000pt;}
.y98{bottom:719.680000pt;}
.y32{bottom:724.160000pt;}
.y45{bottom:730.560000pt;}
.y97{bottom:736.000000pt;}
.y6a{bottom:737.920000pt;}
.y31{bottom:740.480000pt;}
.y9{bottom:744.000000pt;}
.y44{bottom:746.880000pt;}
.y96{bottom:752.320000pt;}
.y30{bottom:756.800000pt;}
.y69{bottom:757.440000pt;}
.y43{bottom:763.200000pt;}
.y8{bottom:765.760000pt;}
.y95{bottom:768.640000pt;}
.y2f{bottom:772.800000pt;}
.y68{bottom:776.960000pt;}
.y42{bottom:779.520000pt;}
.y94{bottom:784.960000pt;}
.y7{bottom:785.280000pt;}
.y2e{bottom:789.120000pt;}
.y41{bottom:795.840000pt;}
.y64{bottom:796.480000pt;}
.y93{bottom:800.960000pt;}
.y6{bottom:804.800000pt;}
.y2d{bottom:805.440000pt;}
.y40{bottom:812.160000pt;}
.y63{bottom:816.000000pt;}
.y92{bottom:817.280000pt;}
.y2c{bottom:821.760000pt;}
.y5{bottom:824.640000pt;}
.y3f{bottom:828.160000pt;}
.y91{bottom:833.600000pt;}
.y62{bottom:835.520000pt;}
.y2b{bottom:838.080000pt;}
.y4{bottom:844.160000pt;}
.y3e{bottom:844.480000pt;}
.y90{bottom:849.920000pt;}
.y2a{bottom:855.040000pt;}
.y3d{bottom:860.800000pt;}
.y3{bottom:863.680000pt;}
.y8f{bottom:866.240000pt;}
.y29{bottom:874.560000pt;}
.y3c{bottom:877.120000pt;}
.y8e{bottom:882.560000pt;}
.y2{bottom:883.200000pt;}
.y28{bottom:894.080000pt;}
.y8d{bottom:898.880000pt;}
.y1{bottom:911.040000pt;}
.y27{bottom:913.600000pt;}
.y8c{bottom:914.880000pt;}
.y8b{bottom:931.200000pt;}
.y26{bottom:939.840000pt;}
.y8a{bottom:947.520000pt;}
.h3{height:17.333333pt;}
.h8{height:32.000000pt;}
.h4{height:37.353750pt;}
.ha{height:40.110000pt;}
.h2{height:42.687500pt;}
.hb{height:42.968750pt;}
.h5{height:46.666667pt;}
.h9{height:57.159375pt;}
.h6{height:62.666667pt;}
.h1{height:70.809375pt;}
.h7{height:78.666667pt;}
.h0{height:1056.000000pt;}
.w1{width:228.000000pt;}
.w2{width:329.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680032pt;}
.x1{left:96.000000pt;}
.x4{left:120.000000pt;}
.x5{left:144.000000pt;}
.x3{left:322.666667pt;}
}




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