
    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_a860b90d6384c73cfd6eca08.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_d06b45b8ecdc59d95e1c2419.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_d465ce6fb9f5b3628f30a12f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_46bf989623413fbe4ea90f53.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082520;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_84796ca618b326d74234c733.woff')format("woff");}.ff5{font-family:ff5;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;}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:26.640000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000600px;}
.ls16{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.018600px;}
.ls13{letter-spacing:0.029400px;}
.ls7{letter-spacing:0.307800px;}
.ls15{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.507000px;}
.lsb{letter-spacing:1.496400px;}
.ls4{letter-spacing:1.802400px;}
.ls6{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.ls11{letter-spacing:4.226400px;}
.ls12{letter-spacing:4.227000px;}
.lsc{letter-spacing:4.656000px;}
.ls1a{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls3{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.ls9{letter-spacing:11.952000px;}
.ls14{letter-spacing:11.981400px;}
.ls18{letter-spacing:12.818400px;}
.ls17{letter-spacing:14.673600px;}
.lsa{letter-spacing:15.891600px;}
.ls8{letter-spacing:16.060800px;}
.ls10{letter-spacing:17.365200px;}
.lsf{letter-spacing:18.367200px;}
.ls1b{letter-spacing:19.800000px;}
.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;}
}
.ws8{word-spacing:-39.528000px;}
.wsc{word-spacing:-36.102000px;}
.ws7{word-spacing:-29.736000px;}
.ws9{word-spacing:-27.432000px;}
.ws1{word-spacing:-24.984000px;}
.wsa{word-spacing:-22.860000px;}
.ws2{word-spacing:-20.232000px;}
.ws0{word-spacing:-17.784000px;}
.ws4{word-spacing:-16.860000px;}
.wsb{word-spacing:-16.302000px;}
.ws6{word-spacing:-14.079000px;}
.ws5{word-spacing:-12.139200px;}
.ws3{word-spacing:0.000000px;}
._1c{margin-left:-21.168000px;}
._20{margin-left:-19.422800px;}
._27{margin-left:-18.206400px;}
._24{margin-left:-16.920000px;}
._14{margin-left:-15.733800px;}
._11{margin-left:-14.660800px;}
._15{margin-left:-11.935200px;}
._4{margin-left:-10.914000px;}
._5{margin-left:-9.588000px;}
._3{margin-left:-7.650000px;}
._18{margin-left:-6.624000px;}
._2{margin-left:-5.610000px;}
._26{margin-left:-4.574400px;}
._0{margin-left:-3.570000px;}
._1{margin-left:-2.288000px;}
._7{margin-left:-1.184000px;}
._8{width:1.152000px;}
._9{width:2.448000px;}
._10{width:3.528000px;}
._12{width:4.680000px;}
._13{width:5.926400px;}
._f{width:7.632000px;}
._b{width:9.664000px;}
._6{width:11.160000px;}
._16{width:12.304800px;}
._c{width:13.452200px;}
._a{width:14.888000px;}
._17{width:16.032800px;}
._e{width:17.061000px;}
._d{width:18.539000px;}
._21{width:21.816000px;}
._23{width:22.905600px;}
._22{width:24.032200px;}
._1a{width:25.576000px;}
._19{width:26.768000px;}
._1f{width:28.080000px;}
._1d{width:32.444800px;}
._1b{width:38.304000px;}
._25{width:52.488000px;}
._1e{width:56.923200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.840400px;}
.y3e{bottom:171.816000px;}
.y96{bottom:172.811400px;}
.yc1{bottom:174.161550px;}
.ya9{bottom:174.715350px;}
.y54{bottom:181.615350px;}
.y74{bottom:184.211400px;}
.ybc{bottom:185.411550px;}
.y1d{bottom:187.247550px;}
.y3d{bottom:193.866000px;}
.y95{bottom:194.411550px;}
.yc0{bottom:195.911550px;}
.ya8{bottom:196.015350px;}
.y53{bottom:203.215350px;}
.y73{bottom:206.111400px;}
.ybb{bottom:207.161400px;}
.y1c{bottom:208.847550px;}
.y94{bottom:215.561400px;}
.ya7{bottom:217.315350px;}
.ybf{bottom:217.661400px;}
.y52{bottom:224.815350px;}
.y72{bottom:228.011400px;}
.yba{bottom:228.911400px;}
.y1b{bottom:230.447550px;}
.y93{bottom:236.711400px;}
.y3c{bottom:237.911400px;}
.ya6{bottom:238.465350px;}
.ybe{bottom:239.411400px;}
.y51{bottom:246.415350px;}
.y71{bottom:249.911400px;}
.y1a{bottom:252.047550px;}
.y92{bottom:257.861400px;}
.yb9{bottom:259.165350px;}
.y3b{bottom:259.511400px;}
.ya5{bottom:259.615350px;}
.y50{bottom:268.015350px;}
.ybd{bottom:269.665350px;}
.y70{bottom:271.811400px;}
.y19{bottom:273.647550px;}
.y91{bottom:279.011400px;}
.ya4{bottom:280.765350px;}
.yb8{bottom:280.915350px;}
.y3a{bottom:281.111400px;}
.y4f{bottom:289.615350px;}
.y6f{bottom:293.711400px;}
.y90{bottom:300.161400px;}
.ya3{bottom:301.915350px;}
.y39{bottom:302.711400px;}
.y18{bottom:303.751500px;}
.y4e{bottom:311.215350px;}
.y6e{bottom:315.611400px;}
.y8f{bottom:321.311400px;}
.ya2{bottom:323.215350px;}
.y38{bottom:324.311400px;}
.y4d{bottom:332.815350px;}
.y6d{bottom:337.511400px;}
.ydd{bottom:339.507450px;}
.y8e{bottom:342.461400px;}
.ya1{bottom:344.515350px;}
.y37{bottom:345.911400px;}
.y4c{bottom:354.415350px;}
.y6c{bottom:359.411400px;}
.y8d{bottom:363.611400px;}
.ya0{bottom:365.815350px;}
.y36{bottom:367.511400px;}
.yb7{bottom:367.915350px;}
.y4b{bottom:376.015350px;}
.ydc{bottom:376.107450px;}
.y6b{bottom:381.311400px;}
.y8c{bottom:384.761400px;}
.y9f{bottom:387.115350px;}
.y35{bottom:389.111400px;}
.yb6{bottom:389.815350px;}
.y17{bottom:390.151500px;}
.ydb{bottom:395.907600px;}
.y4a{bottom:397.615350px;}
.y6a{bottom:403.211400px;}
.y8b{bottom:405.911400px;}
.y9e{bottom:408.415350px;}
.y34{bottom:410.711400px;}
.yb5{bottom:411.715350px;}
.y16{bottom:411.751500px;}
.yda{bottom:415.707450px;}
.y49{bottom:419.215350px;}
.y69{bottom:425.111400px;}
.y8a{bottom:427.061400px;}
.y9d{bottom:429.715350px;}
.y33{bottom:432.311400px;}
.y15{bottom:433.351500px;}
.yb4{bottom:433.615350px;}
.yd9{bottom:435.507450px;}
.y48{bottom:440.815350px;}
.y68{bottom:447.011400px;}
.y89{bottom:448.211400px;}
.y9c{bottom:451.015350px;}
.y32{bottom:453.911400px;}
.y14{bottom:454.951500px;}
.yd8{bottom:455.307600px;}
.yb3{bottom:455.515350px;}
.y47{bottom:462.415350px;}
.y67{bottom:468.911400px;}
.y88{bottom:469.361400px;}
.y9b{bottom:472.315350px;}
.yd7{bottom:475.107450px;}
.y31{bottom:475.511400px;}
.y13{bottom:476.551500px;}
.yb2{bottom:477.415350px;}
.y46{bottom:484.015350px;}
.y66{bottom:490.811400px;}
.y9a{bottom:493.615350px;}
.yd6{bottom:494.907600px;}
.y30{bottom:497.111400px;}
.y12{bottom:498.151500px;}
.y87{bottom:499.015350px;}
.yb1{bottom:499.315350px;}
.y45{bottom:505.615350px;}
.y65{bottom:512.711400px;}
.yd5{bottom:514.707450px;}
.y99{bottom:514.915350px;}
.y2f{bottom:518.711400px;}
.y11{bottom:519.751500px;}
.yb0{bottom:521.215350px;}
.y44{bottom:527.215350px;}
.yd4{bottom:534.507450px;}
.y64{bottom:534.611400px;}
.y98{bottom:536.215350px;}
.y2e{bottom:540.311400px;}
.y10{bottom:541.351500px;}
.yef{bottom:543.011400px;}
.yaf{bottom:543.115350px;}
.y43{bottom:548.815350px;}
.yd3{bottom:554.307600px;}
.y63{bottom:556.511400px;}
.y97{bottom:557.365350px;}
.yee{bottom:561.011400px;}
.y2d{bottom:561.911400px;}
.yf{bottom:562.951500px;}
.yae{bottom:565.015350px;}
.y42{bottom:570.415350px;}
.yd2{bottom:574.107450px;}
.y62{bottom:578.411400px;}
.y86{bottom:578.515350px;}
.yed{bottom:579.011400px;}
.ye{bottom:584.551500px;}
.yad{bottom:586.915350px;}
.y2c{bottom:592.015350px;}
.yd1{bottom:593.907600px;}
.yec{bottom:597.011400px;}
.y85{bottom:599.665350px;}
.yd{bottom:606.151500px;}
.y61{bottom:608.815350px;}
.y41{bottom:613.615350px;}
.yd0{bottom:613.707600px;}
.y84{bottom:620.815350px;}
.yc{bottom:627.751500px;}
.yac{bottom:630.715350px;}
.ycf{bottom:633.507450px;}
.y40{bottom:635.215350px;}
.y83{bottom:641.965350px;}
.yb{bottom:649.351500px;}
.yab{bottom:652.615350px;}
.yce{bottom:653.307450px;}
.yeb{bottom:653.711400px;}
.y3f{bottom:656.815350px;}
.y82{bottom:663.115350px;}
.ya{bottom:670.951500px;}
.ycd{bottom:673.107450px;}
.yea{bottom:673.511400px;}
.yaa{bottom:674.515350px;}
.y2b{bottom:678.415350px;}
.y81{bottom:684.265350px;}
.y9{bottom:692.551500px;}
.ycc{bottom:692.907600px;}
.ye9{bottom:693.311400px;}
.y60{bottom:696.415350px;}
.y2a{bottom:700.015350px;}
.y80{bottom:705.415350px;}
.ycb{bottom:712.707600px;}
.ye8{bottom:713.111550px;}
.y8{bottom:714.151500px;}
.y5f{bottom:718.315350px;}
.y29{bottom:721.615350px;}
.y7f{bottom:726.565350px;}
.ye7{bottom:732.911400px;}
.y7{bottom:735.751500px;}
.y5e{bottom:740.215350px;}
.yca{bottom:741.011400px;}
.y28{bottom:743.215350px;}
.y7e{bottom:747.715350px;}
.ye6{bottom:752.711400px;}
.y6{bottom:757.351500px;}
.y5d{bottom:762.115350px;}
.y27{bottom:764.815350px;}
.y7d{bottom:768.865350px;}
.ye5{bottom:772.511400px;}
.y5{bottom:778.951500px;}
.y5c{bottom:784.015350px;}
.y26{bottom:786.415350px;}
.yc9{bottom:788.515350px;}
.y7c{bottom:790.015350px;}
.ye4{bottom:792.311400px;}
.y5b{bottom:805.915350px;}
.y25{bottom:808.015350px;}
.yc8{bottom:810.115350px;}
.y7b{bottom:811.165350px;}
.ye3{bottom:812.111550px;}
.y5a{bottom:827.815500px;}
.y24{bottom:829.615350px;}
.yc7{bottom:831.415350px;}
.ye2{bottom:831.911550px;}
.y7a{bottom:832.315500px;}
.y59{bottom:849.715350px;}
.y23{bottom:851.215350px;}
.ye1{bottom:851.711400px;}
.yc6{bottom:852.715350px;}
.y79{bottom:853.465350px;}
.ye0{bottom:871.511400px;}
.y58{bottom:871.615350px;}
.y22{bottom:872.815500px;}
.yc5{bottom:874.015350px;}
.y78{bottom:874.615350px;}
.y4{bottom:886.951500px;}
.ydf{bottom:891.311400px;}
.y57{bottom:893.515350px;}
.y21{bottom:894.415350px;}
.yc4{bottom:895.315500px;}
.y77{bottom:895.765350px;}
.y56{bottom:915.415350px;}
.y20{bottom:916.015350px;}
.yc3{bottom:916.615350px;}
.y76{bottom:916.915350px;}
.yde{bottom:929.111550px;}
.y55{bottom:937.315500px;}
.y1f{bottom:937.615350px;}
.yc2{bottom:937.915350px;}
.y75{bottom:938.065500px;}
.y3{bottom:942.213000px;}
.y1e{bottom:959.215350px;}
.y2{bottom:960.213000px;}
.ha{height:34.734375px;}
.h8{height:40.523438px;}
.h7{height:43.523438px;}
.h2{height:46.312500px;}
.hd{height:50.947266px;}
.hb{height:54.996094px;}
.h4{height:56.041992px;}
.h3{height:57.890625px;}
.h9{height:61.136719px;}
.hc{height:63.679688px;}
.h6{height:69.468750px;}
.h5{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x3{left:108.035400px;}
.x4{left:129.295200px;}
.x7{left:150.555150px;}
.x8{left:171.814950px;}
.x5{left:174.670350px;}
.x6{left:294.577950px;}
.x1{left:357.237450px;}
.x9{left:574.709400px;}
.x2{left:614.539350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:23.680000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000533pt;}
.ls16{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.016533pt;}
.ls13{letter-spacing:0.026133pt;}
.ls7{letter-spacing:0.273600pt;}
.ls15{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.450667pt;}
.lsb{letter-spacing:1.330133pt;}
.ls4{letter-spacing:1.602133pt;}
.ls6{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.ls11{letter-spacing:3.756800pt;}
.ls12{letter-spacing:3.757333pt;}
.lsc{letter-spacing:4.138667pt;}
.ls1a{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls3{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls9{letter-spacing:10.624000pt;}
.ls14{letter-spacing:10.650133pt;}
.ls18{letter-spacing:11.394133pt;}
.ls17{letter-spacing:13.043200pt;}
.lsa{letter-spacing:14.125867pt;}
.ls8{letter-spacing:14.276267pt;}
.ls10{letter-spacing:15.435733pt;}
.lsf{letter-spacing:16.326400pt;}
.ls1b{letter-spacing:17.600000pt;}
.ws8{word-spacing:-35.136000pt;}
.wsc{word-spacing:-32.090667pt;}
.ws7{word-spacing:-26.432000pt;}
.ws9{word-spacing:-24.384000pt;}
.ws1{word-spacing:-22.208000pt;}
.wsa{word-spacing:-20.320000pt;}
.ws2{word-spacing:-17.984000pt;}
.ws0{word-spacing:-15.808000pt;}
.ws4{word-spacing:-14.986667pt;}
.wsb{word-spacing:-14.490667pt;}
.ws6{word-spacing:-12.514667pt;}
.ws5{word-spacing:-10.790400pt;}
.ws3{word-spacing:0.000000pt;}
._1c{margin-left:-18.816000pt;}
._20{margin-left:-17.264711pt;}
._27{margin-left:-16.183467pt;}
._24{margin-left:-15.040000pt;}
._14{margin-left:-13.985600pt;}
._11{margin-left:-13.031822pt;}
._15{margin-left:-10.609067pt;}
._4{margin-left:-9.701333pt;}
._5{margin-left:-8.522667pt;}
._3{margin-left:-6.800000pt;}
._18{margin-left:-5.888000pt;}
._2{margin-left:-4.986667pt;}
._26{margin-left:-4.066133pt;}
._0{margin-left:-3.173333pt;}
._1{margin-left:-2.033778pt;}
._7{margin-left:-1.052444pt;}
._8{width:1.024000pt;}
._9{width:2.176000pt;}
._10{width:3.136000pt;}
._12{width:4.160000pt;}
._13{width:5.267911pt;}
._f{width:6.784000pt;}
._b{width:8.590222pt;}
._6{width:9.920000pt;}
._16{width:10.937600pt;}
._c{width:11.957511pt;}
._a{width:13.233778pt;}
._17{width:14.251378pt;}
._e{width:15.165333pt;}
._d{width:16.479111pt;}
._21{width:19.392000pt;}
._23{width:20.360533pt;}
._22{width:21.361956pt;}
._1a{width:22.734222pt;}
._19{width:23.793778pt;}
._1f{width:24.960000pt;}
._1d{width:28.839822pt;}
._1b{width:34.048000pt;}
._25{width:46.656000pt;}
._1e{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.858133pt;}
.y3e{bottom:152.725333pt;}
.y96{bottom:153.610133pt;}
.yc1{bottom:154.810267pt;}
.ya9{bottom:155.302533pt;}
.y54{bottom:161.435867pt;}
.y74{bottom:163.743467pt;}
.ybc{bottom:164.810267pt;}
.y1d{bottom:166.442267pt;}
.y3d{bottom:172.325333pt;}
.y95{bottom:172.810267pt;}
.yc0{bottom:174.143600pt;}
.ya8{bottom:174.235867pt;}
.y53{bottom:180.635867pt;}
.y73{bottom:183.210133pt;}
.ybb{bottom:184.143467pt;}
.y1c{bottom:185.642267pt;}
.y94{bottom:191.610133pt;}
.ya7{bottom:193.169200pt;}
.ybf{bottom:193.476800pt;}
.y52{bottom:199.835867pt;}
.y72{bottom:202.676800pt;}
.yba{bottom:203.476800pt;}
.y1b{bottom:204.842267pt;}
.y93{bottom:210.410133pt;}
.y3c{bottom:211.476800pt;}
.ya6{bottom:211.969200pt;}
.ybe{bottom:212.810133pt;}
.y51{bottom:219.035867pt;}
.y71{bottom:222.143467pt;}
.y1a{bottom:224.042267pt;}
.y92{bottom:229.210133pt;}
.yb9{bottom:230.369200pt;}
.y3b{bottom:230.676800pt;}
.ya5{bottom:230.769200pt;}
.y50{bottom:238.235867pt;}
.ybd{bottom:239.702533pt;}
.y70{bottom:241.610133pt;}
.y19{bottom:243.242267pt;}
.y91{bottom:248.010133pt;}
.ya4{bottom:249.569200pt;}
.yb8{bottom:249.702533pt;}
.y3a{bottom:249.876800pt;}
.y4f{bottom:257.435867pt;}
.y6f{bottom:261.076800pt;}
.y90{bottom:266.810133pt;}
.ya3{bottom:268.369200pt;}
.y39{bottom:269.076800pt;}
.y18{bottom:270.001333pt;}
.y4e{bottom:276.635867pt;}
.y6e{bottom:280.543467pt;}
.y8f{bottom:285.610133pt;}
.ya2{bottom:287.302533pt;}
.y38{bottom:288.276800pt;}
.y4d{bottom:295.835867pt;}
.y6d{bottom:300.010133pt;}
.ydd{bottom:301.784400pt;}
.y8e{bottom:304.410133pt;}
.ya1{bottom:306.235867pt;}
.y37{bottom:307.476800pt;}
.y4c{bottom:315.035867pt;}
.y6c{bottom:319.476800pt;}
.y8d{bottom:323.210133pt;}
.ya0{bottom:325.169200pt;}
.y36{bottom:326.676800pt;}
.yb7{bottom:327.035867pt;}
.y4b{bottom:334.235867pt;}
.ydc{bottom:334.317733pt;}
.y6b{bottom:338.943467pt;}
.y8c{bottom:342.010133pt;}
.y9f{bottom:344.102533pt;}
.y35{bottom:345.876800pt;}
.yb6{bottom:346.502533pt;}
.y17{bottom:346.801333pt;}
.ydb{bottom:351.917867pt;}
.y4a{bottom:353.435867pt;}
.y6a{bottom:358.410133pt;}
.y8b{bottom:360.810133pt;}
.y9e{bottom:363.035867pt;}
.y34{bottom:365.076800pt;}
.yb5{bottom:365.969200pt;}
.y16{bottom:366.001333pt;}
.yda{bottom:369.517733pt;}
.y49{bottom:372.635867pt;}
.y69{bottom:377.876800pt;}
.y8a{bottom:379.610133pt;}
.y9d{bottom:381.969200pt;}
.y33{bottom:384.276800pt;}
.y15{bottom:385.201333pt;}
.yb4{bottom:385.435867pt;}
.yd9{bottom:387.117733pt;}
.y48{bottom:391.835867pt;}
.y68{bottom:397.343467pt;}
.y89{bottom:398.410133pt;}
.y9c{bottom:400.902533pt;}
.y32{bottom:403.476800pt;}
.y14{bottom:404.401333pt;}
.yd8{bottom:404.717867pt;}
.yb3{bottom:404.902533pt;}
.y47{bottom:411.035867pt;}
.y67{bottom:416.810133pt;}
.y88{bottom:417.210133pt;}
.y9b{bottom:419.835867pt;}
.yd7{bottom:422.317733pt;}
.y31{bottom:422.676800pt;}
.y13{bottom:423.601333pt;}
.yb2{bottom:424.369200pt;}
.y46{bottom:430.235867pt;}
.y66{bottom:436.276800pt;}
.y9a{bottom:438.769200pt;}
.yd6{bottom:439.917867pt;}
.y30{bottom:441.876800pt;}
.y12{bottom:442.801333pt;}
.y87{bottom:443.569200pt;}
.yb1{bottom:443.835867pt;}
.y45{bottom:449.435867pt;}
.y65{bottom:455.743467pt;}
.yd5{bottom:457.517733pt;}
.y99{bottom:457.702533pt;}
.y2f{bottom:461.076800pt;}
.y11{bottom:462.001333pt;}
.yb0{bottom:463.302533pt;}
.y44{bottom:468.635867pt;}
.yd4{bottom:475.117733pt;}
.y64{bottom:475.210133pt;}
.y98{bottom:476.635867pt;}
.y2e{bottom:480.276800pt;}
.y10{bottom:481.201333pt;}
.yef{bottom:482.676800pt;}
.yaf{bottom:482.769200pt;}
.y43{bottom:487.835867pt;}
.yd3{bottom:492.717867pt;}
.y63{bottom:494.676800pt;}
.y97{bottom:495.435867pt;}
.yee{bottom:498.676800pt;}
.y2d{bottom:499.476800pt;}
.yf{bottom:500.401333pt;}
.yae{bottom:502.235867pt;}
.y42{bottom:507.035867pt;}
.yd2{bottom:510.317733pt;}
.y62{bottom:514.143467pt;}
.y86{bottom:514.235867pt;}
.yed{bottom:514.676800pt;}
.ye{bottom:519.601333pt;}
.yad{bottom:521.702533pt;}
.y2c{bottom:526.235867pt;}
.yd1{bottom:527.917867pt;}
.yec{bottom:530.676800pt;}
.y85{bottom:533.035867pt;}
.yd{bottom:538.801333pt;}
.y61{bottom:541.169200pt;}
.y41{bottom:545.435867pt;}
.yd0{bottom:545.517867pt;}
.y84{bottom:551.835867pt;}
.yc{bottom:558.001333pt;}
.yac{bottom:560.635867pt;}
.ycf{bottom:563.117733pt;}
.y40{bottom:564.635867pt;}
.y83{bottom:570.635867pt;}
.yb{bottom:577.201333pt;}
.yab{bottom:580.102533pt;}
.yce{bottom:580.717733pt;}
.yeb{bottom:581.076800pt;}
.y3f{bottom:583.835867pt;}
.y82{bottom:589.435867pt;}
.ya{bottom:596.401333pt;}
.ycd{bottom:598.317733pt;}
.yea{bottom:598.676800pt;}
.yaa{bottom:599.569200pt;}
.y2b{bottom:603.035867pt;}
.y81{bottom:608.235867pt;}
.y9{bottom:615.601333pt;}
.ycc{bottom:615.917867pt;}
.ye9{bottom:616.276800pt;}
.y60{bottom:619.035867pt;}
.y2a{bottom:622.235867pt;}
.y80{bottom:627.035867pt;}
.ycb{bottom:633.517867pt;}
.ye8{bottom:633.876933pt;}
.y8{bottom:634.801333pt;}
.y5f{bottom:638.502533pt;}
.y29{bottom:641.435867pt;}
.y7f{bottom:645.835867pt;}
.ye7{bottom:651.476800pt;}
.y7{bottom:654.001333pt;}
.y5e{bottom:657.969200pt;}
.yca{bottom:658.676800pt;}
.y28{bottom:660.635867pt;}
.y7e{bottom:664.635867pt;}
.ye6{bottom:669.076800pt;}
.y6{bottom:673.201333pt;}
.y5d{bottom:677.435867pt;}
.y27{bottom:679.835867pt;}
.y7d{bottom:683.435867pt;}
.ye5{bottom:686.676800pt;}
.y5{bottom:692.401333pt;}
.y5c{bottom:696.902533pt;}
.y26{bottom:699.035867pt;}
.yc9{bottom:700.902533pt;}
.y7c{bottom:702.235867pt;}
.ye4{bottom:704.276800pt;}
.y5b{bottom:716.369200pt;}
.y25{bottom:718.235867pt;}
.yc8{bottom:720.102533pt;}
.y7b{bottom:721.035867pt;}
.ye3{bottom:721.876933pt;}
.y5a{bottom:735.836000pt;}
.y24{bottom:737.435867pt;}
.yc7{bottom:739.035867pt;}
.ye2{bottom:739.476933pt;}
.y7a{bottom:739.836000pt;}
.y59{bottom:755.302533pt;}
.y23{bottom:756.635867pt;}
.ye1{bottom:757.076800pt;}
.yc6{bottom:757.969200pt;}
.y79{bottom:758.635867pt;}
.ye0{bottom:774.676800pt;}
.y58{bottom:774.769200pt;}
.y22{bottom:775.836000pt;}
.yc5{bottom:776.902533pt;}
.y78{bottom:777.435867pt;}
.y4{bottom:788.401333pt;}
.ydf{bottom:792.276800pt;}
.y57{bottom:794.235867pt;}
.y21{bottom:795.035867pt;}
.yc4{bottom:795.836000pt;}
.y77{bottom:796.235867pt;}
.y56{bottom:813.702533pt;}
.y20{bottom:814.235867pt;}
.yc3{bottom:814.769200pt;}
.y76{bottom:815.035867pt;}
.yde{bottom:825.876933pt;}
.y55{bottom:833.169333pt;}
.y1f{bottom:833.435867pt;}
.yc2{bottom:833.702533pt;}
.y75{bottom:833.836000pt;}
.y3{bottom:837.522667pt;}
.y1e{bottom:852.635867pt;}
.y2{bottom:853.522667pt;}
.ha{height:30.875000pt;}
.h8{height:36.020833pt;}
.h7{height:38.687500pt;}
.h2{height:41.166667pt;}
.hd{height:45.286458pt;}
.hb{height:48.885417pt;}
.h4{height:49.815104pt;}
.h3{height:51.458333pt;}
.h9{height:54.343750pt;}
.hc{height:56.604167pt;}
.h6{height:61.750000pt;}
.h5{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x3{left:96.031467pt;}
.x4{left:114.929067pt;}
.x7{left:133.826800pt;}
.x8{left:152.724400pt;}
.x5{left:155.262533pt;}
.x6{left:261.847067pt;}
.x1{left:317.544400pt;}
.x9{left:510.852800pt;}
.x2{left:546.257200pt;}
}




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