
    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_a5917790cd84e3e8d3c35d2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_2ce5dbf0016d4412b5197a04.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149000;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_27d1bd141fe1ddd9eaea1aef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.118000;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_f012bf8c7e86fac6fe8f6b32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935000;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_a62a725727e8cfb0ab1f93fd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.683600px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000218px;}
.ls1{letter-spacing:0.720000px;}
.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;}
}
.ws0{word-spacing:-62.383200px;}
.ws2{word-spacing:-13.927800px;}
.ws1{word-spacing:-8.119991px;}
.ws4{word-spacing:0.000000px;}
.ws3{word-spacing:3801.379800px;}
._9{margin-left:-3.957900px;}
._3{margin-left:-2.585400px;}
._1{margin-left:-1.487400px;}
._a{width:1.002000px;}
._2{width:2.016000px;}
._8{width:3.595200px;}
._7{width:4.659300px;}
._b{width:5.761500px;}
._c{width:7.565100px;}
._e{width:8.717400px;}
._d{width:9.719400px;}
._f{width:10.771500px;}
._6{width:11.823600px;}
._4{width:12.925800px;}
._13{width:15.831600px;}
._10{width:17.182200px;}
._5{width:18.386700px;}
._14{width:19.388700px;}
._11{width:22.562700px;}
._12{width:23.862300px;}
._0{width:36.388800px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(242,92,25);}
.fs6{font-size:29.208600px;}
.fs7{font-size:42.000000px;}
.fs5{font-size:50.100000px;}
.fs4{font-size:50.400000px;}
.fs8{font-size:52.800000px;}
.fs3{font-size:84.000000px;}
.fs9{font-size:120.000000px;}
.fs2{font-size:222.000000px;}
.fs0{font-size:224.400000px;}
.fs1{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y106{bottom:48.756000px;}
.y60{bottom:102.854400px;}
.yb4{bottom:103.918500px;}
.y104{bottom:105.028350px;}
.y5f{bottom:116.954400px;}
.yb3{bottom:118.018500px;}
.y5e{bottom:131.054400px;}
.yb2{bottom:132.118500px;}
.y5d{bottom:145.154400px;}
.yb1{bottom:146.218500px;}
.y5c{bottom:159.254400px;}
.y5b{bottom:173.354400px;}
.yb0{bottom:174.418500px;}
.y5a{bottom:187.454400px;}
.yaf{bottom:188.518500px;}
.y59{bottom:201.554400px;}
.yae{bottom:202.618500px;}
.y58{bottom:215.654400px;}
.yad{bottom:216.718500px;}
.yac{bottom:230.818500px;}
.y57{bottom:243.854400px;}
.yab{bottom:244.918500px;}
.y56{bottom:257.954400px;}
.yaa{bottom:259.018500px;}
.y55{bottom:272.054400px;}
.ya9{bottom:273.118500px;}
.y54{bottom:286.154400px;}
.ya8{bottom:287.218500px;}
.y53{bottom:300.254400px;}
.ya7{bottom:301.318500px;}
.y52{bottom:314.354400px;}
.ya6{bottom:315.418500px;}
.y51{bottom:328.454400px;}
.ya5{bottom:329.518500px;}
.y50{bottom:342.554400px;}
.ya4{bottom:343.618500px;}
.y4f{bottom:356.654400px;}
.ya3{bottom:357.718500px;}
.y4e{bottom:370.754400px;}
.ya2{bottom:371.818500px;}
.y103{bottom:377.024850px;}
.y4d{bottom:384.854400px;}
.ya1{bottom:385.918500px;}
.y4c{bottom:398.954400px;}
.ya0{bottom:400.018500px;}
.y105{bottom:409.575600px;}
.y102{bottom:410.615550px;}
.y4b{bottom:413.054400px;}
.y9f{bottom:414.118500px;}
.y4a{bottom:427.154400px;}
.y9e{bottom:428.218500px;}
.y49{bottom:441.254400px;}
.y9d{bottom:442.318500px;}
.y48{bottom:455.354400px;}
.y9c{bottom:456.418500px;}
.y47{bottom:469.454400px;}
.y9b{bottom:470.518500px;}
.y46{bottom:483.554400px;}
.y9a{bottom:484.618500px;}
.y45{bottom:497.654400px;}
.y99{bottom:498.718500px;}
.y44{bottom:511.754400px;}
.y98{bottom:512.818500px;}
.y43{bottom:525.854400px;}
.y97{bottom:526.918500px;}
.y42{bottom:539.954400px;}
.y96{bottom:541.018500px;}
.y41{bottom:554.054400px;}
.y95{bottom:555.118500px;}
.y40{bottom:568.154400px;}
.y94{bottom:569.218500px;}
.y3f{bottom:582.254400px;}
.y93{bottom:583.318500px;}
.yfd{bottom:585.628200px;}
.y3e{bottom:596.354400px;}
.y92{bottom:597.418500px;}
.yfc{bottom:597.628200px;}
.yfb{bottom:609.628200px;}
.y3d{bottom:610.454400px;}
.y91{bottom:611.518500px;}
.yfa{bottom:621.628200px;}
.y3c{bottom:624.554400px;}
.y90{bottom:625.618500px;}
.y101{bottom:630.017100px;}
.yf9{bottom:633.628200px;}
.y3b{bottom:638.654400px;}
.y8f{bottom:639.718500px;}
.yf8{bottom:645.628200px;}
.y3a{bottom:652.754400px;}
.y8e{bottom:653.818500px;}
.yf7{bottom:657.628200px;}
.y39{bottom:666.854400px;}
.y8d{bottom:667.918500px;}
.yf6{bottom:669.628200px;}
.y38{bottom:680.954400px;}
.yf5{bottom:681.628200px;}
.y8c{bottom:682.018500px;}
.y37{bottom:695.054400px;}
.y8b{bottom:696.118500px;}
.y36{bottom:709.154400px;}
.y8a{bottom:710.218500px;}
.yf4{bottom:721.854750px;}
.y35{bottom:723.254400px;}
.y89{bottom:724.318500px;}
.yf3{bottom:735.954750px;}
.y34{bottom:737.354400px;}
.y88{bottom:738.418500px;}
.yf2{bottom:750.054750px;}
.y33{bottom:751.454400px;}
.y87{bottom:752.518500px;}
.yf1{bottom:764.154750px;}
.y32{bottom:765.554400px;}
.y86{bottom:766.618500px;}
.yf0{bottom:778.254750px;}
.y31{bottom:779.654400px;}
.y85{bottom:780.718500px;}
.yef{bottom:792.354750px;}
.y30{bottom:793.754400px;}
.y84{bottom:794.818500px;}
.yee{bottom:806.454750px;}
.y2f{bottom:807.854400px;}
.y83{bottom:808.918500px;}
.yed{bottom:820.554750px;}
.y2e{bottom:821.954400px;}
.y82{bottom:823.018500px;}
.yec{bottom:834.654750px;}
.y2d{bottom:836.054400px;}
.y81{bottom:837.118500px;}
.y100{bottom:842.671650px;}
.yeb{bottom:848.754750px;}
.y2c{bottom:850.154550px;}
.y80{bottom:851.218500px;}
.yea{bottom:862.854750px;}
.y2b{bottom:864.254550px;}
.y7f{bottom:865.318500px;}
.ye9{bottom:876.954750px;}
.y2a{bottom:878.354550px;}
.y7e{bottom:879.418500px;}
.ye8{bottom:891.054750px;}
.y29{bottom:892.454550px;}
.y7d{bottom:893.518500px;}
.ye7{bottom:905.154750px;}
.y28{bottom:906.554700px;}
.y7c{bottom:907.618500px;}
.ye6{bottom:919.254750px;}
.y27{bottom:920.654700px;}
.y7b{bottom:921.718500px;}
.ye5{bottom:933.354750px;}
.y26{bottom:934.754700px;}
.y7a{bottom:935.818500px;}
.ye4{bottom:947.454750px;}
.y25{bottom:948.854700px;}
.y79{bottom:949.918500px;}
.ye3{bottom:961.554750px;}
.y24{bottom:962.954700px;}
.y78{bottom:964.018500px;}
.ye2{bottom:975.654750px;}
.y23{bottom:977.054850px;}
.y77{bottom:978.118500px;}
.ye1{bottom:989.754750px;}
.y22{bottom:991.154850px;}
.y76{bottom:992.218500px;}
.ye0{bottom:1003.854750px;}
.y21{bottom:1005.254850px;}
.y75{bottom:1006.318500px;}
.ydf{bottom:1017.954750px;}
.y20{bottom:1019.354850px;}
.y74{bottom:1020.418500px;}
.yde{bottom:1032.054750px;}
.y1f{bottom:1033.455000px;}
.y73{bottom:1034.518500px;}
.ydd{bottom:1046.154750px;}
.y1e{bottom:1047.555000px;}
.y72{bottom:1048.618500px;}
.ydc{bottom:1060.254750px;}
.y1d{bottom:1061.655000px;}
.y71{bottom:1062.718500px;}
.ydb{bottom:1074.354750px;}
.y1c{bottom:1075.755000px;}
.y70{bottom:1076.818500px;}
.yda{bottom:1088.454750px;}
.y1b{bottom:1089.855150px;}
.y6f{bottom:1090.918500px;}
.yd9{bottom:1102.554750px;}
.y1a{bottom:1103.955150px;}
.y6e{bottom:1105.018500px;}
.yff{bottom:1106.187450px;}
.yd8{bottom:1116.654750px;}
.y19{bottom:1118.055150px;}
.y6d{bottom:1119.118500px;}
.yd7{bottom:1130.754750px;}
.y18{bottom:1132.155150px;}
.y6c{bottom:1133.218500px;}
.yd6{bottom:1144.854750px;}
.y17{bottom:1146.255300px;}
.y6b{bottom:1147.318500px;}
.yd5{bottom:1158.954750px;}
.y16{bottom:1160.355300px;}
.yd4{bottom:1173.054750px;}
.y15{bottom:1174.455300px;}
.y6a{bottom:1175.518500px;}
.yd3{bottom:1187.154750px;}
.y14{bottom:1188.555300px;}
.y69{bottom:1189.618500px;}
.yd2{bottom:1201.254750px;}
.y13{bottom:1202.655450px;}
.y68{bottom:1203.718500px;}
.yd1{bottom:1215.354750px;}
.y12{bottom:1216.755450px;}
.y67{bottom:1217.818500px;}
.yd0{bottom:1229.454750px;}
.y11{bottom:1230.855450px;}
.y66{bottom:1231.918500px;}
.ycf{bottom:1243.554750px;}
.y10{bottom:1244.955450px;}
.y65{bottom:1246.018500px;}
.yce{bottom:1257.654750px;}
.yf{bottom:1259.055600px;}
.y64{bottom:1260.118500px;}
.ycd{bottom:1271.754750px;}
.ye{bottom:1273.155600px;}
.y63{bottom:1274.218500px;}
.ycc{bottom:1285.854750px;}
.yd{bottom:1287.255450px;}
.y62{bottom:1288.318500px;}
.ycb{bottom:1299.954750px;}
.yc{bottom:1301.355600px;}
.y61{bottom:1302.418500px;}
.yca{bottom:1314.054750px;}
.yc9{bottom:1328.154750px;}
.yc8{bottom:1342.254750px;}
.yb{bottom:1351.206600px;}
.yfe{bottom:1353.439200px;}
.yc7{bottom:1356.354750px;}
.ya{bottom:1365.756750px;}
.yc6{bottom:1370.454750px;}
.y9{bottom:1380.306750px;}
.yc5{bottom:1384.554750px;}
.y8{bottom:1394.856750px;}
.yc4{bottom:1398.654750px;}
.y7{bottom:1409.406750px;}
.yc3{bottom:1412.754750px;}
.y6{bottom:1423.956750px;}
.yc2{bottom:1426.854750px;}
.y5{bottom:1438.506750px;}
.yc1{bottom:1440.954750px;}
.y4{bottom:1453.056750px;}
.yc0{bottom:1455.054750px;}
.ybf{bottom:1469.154750px;}
.ybe{bottom:1483.254750px;}
.ybd{bottom:1497.354750px;}
.y3{bottom:1504.886550px;}
.ybc{bottom:1511.454750px;}
.ybb{bottom:1525.554750px;}
.y2{bottom:1530.386550px;}
.yba{bottom:1539.654750px;}
.yb9{bottom:1553.754600px;}
.yb8{bottom:1567.854750px;}
.y1{bottom:1578.386550px;}
.yb7{bottom:1581.954750px;}
.yb6{bottom:1596.054750px;}
.yb5{bottom:1610.154750px;}
.y107{bottom:1662.265200px;}
.hc{height:30.618000px;}
.hd{height:38.304000px;}
.hb{height:38.976000px;}
.h9{height:45.691200px;}
.h7{height:45.763200px;}
.h6{height:45.964800px;}
.ha{height:46.492800px;}
.h8{height:46.771200px;}
.he{height:47.942400px;}
.h5{height:77.952000px;}
.hf{height:107.400000px;}
.h4{height:201.576000px;}
.h3{height:207.024000px;}
.h2{height:1726.299000px;}
.h0{height:1726.305000px;}
.h1{height:1726.500000px;}
.w0{width:1160.787000px;}
.w1{width:1161.000000px;}
.x0{left:0.000000px;}
.x1{left:39.330750px;}
.xa{left:40.393650px;}
.x2{left:42.519750px;}
.x9{left:44.862450px;}
.x3{left:317.075400px;}
.x6{left:803.892000px;}
.x5{left:868.464600px;}
.x4{left:869.527650px;}
.x7{left:1092.671400px;}
.x8{left:1094.527650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.829867pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000194pt;}
.ls1{letter-spacing:0.640000pt;}
.ws0{word-spacing:-55.451733pt;}
.ws2{word-spacing:-12.380267pt;}
.ws1{word-spacing:-7.217770pt;}
.ws4{word-spacing:0.000000pt;}
.ws3{word-spacing:3379.004267pt;}
._9{margin-left:-3.518133pt;}
._3{margin-left:-2.298133pt;}
._1{margin-left:-1.322133pt;}
._a{width:0.890667pt;}
._2{width:1.792000pt;}
._8{width:3.195733pt;}
._7{width:4.141600pt;}
._b{width:5.121333pt;}
._c{width:6.724533pt;}
._e{width:7.748800pt;}
._d{width:8.639467pt;}
._f{width:9.574667pt;}
._6{width:10.509867pt;}
._4{width:11.489600pt;}
._13{width:14.072533pt;}
._10{width:15.273067pt;}
._5{width:16.343733pt;}
._14{width:17.234400pt;}
._11{width:20.055733pt;}
._12{width:21.210933pt;}
._0{width:32.345600pt;}
.fs6{font-size:25.963200pt;}
.fs7{font-size:37.333333pt;}
.fs5{font-size:44.533333pt;}
.fs4{font-size:44.800000pt;}
.fs8{font-size:46.933333pt;}
.fs3{font-size:74.666667pt;}
.fs9{font-size:106.666667pt;}
.fs2{font-size:197.333333pt;}
.fs0{font-size:199.466667pt;}
.fs1{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:43.338667pt;}
.y60{bottom:91.426133pt;}
.yb4{bottom:92.372000pt;}
.y104{bottom:93.358533pt;}
.y5f{bottom:103.959467pt;}
.yb3{bottom:104.905333pt;}
.y5e{bottom:116.492800pt;}
.yb2{bottom:117.438667pt;}
.y5d{bottom:129.026133pt;}
.yb1{bottom:129.972000pt;}
.y5c{bottom:141.559467pt;}
.y5b{bottom:154.092800pt;}
.yb0{bottom:155.038667pt;}
.y5a{bottom:166.626133pt;}
.yaf{bottom:167.572000pt;}
.y59{bottom:179.159467pt;}
.yae{bottom:180.105333pt;}
.y58{bottom:191.692800pt;}
.yad{bottom:192.638667pt;}
.yac{bottom:205.172000pt;}
.y57{bottom:216.759467pt;}
.yab{bottom:217.705333pt;}
.y56{bottom:229.292800pt;}
.yaa{bottom:230.238667pt;}
.y55{bottom:241.826133pt;}
.ya9{bottom:242.772000pt;}
.y54{bottom:254.359467pt;}
.ya8{bottom:255.305333pt;}
.y53{bottom:266.892800pt;}
.ya7{bottom:267.838667pt;}
.y52{bottom:279.426133pt;}
.ya6{bottom:280.372000pt;}
.y51{bottom:291.959467pt;}
.ya5{bottom:292.905333pt;}
.y50{bottom:304.492800pt;}
.ya4{bottom:305.438667pt;}
.y4f{bottom:317.026133pt;}
.ya3{bottom:317.972000pt;}
.y4e{bottom:329.559467pt;}
.ya2{bottom:330.505333pt;}
.y103{bottom:335.133200pt;}
.y4d{bottom:342.092800pt;}
.ya1{bottom:343.038667pt;}
.y4c{bottom:354.626133pt;}
.ya0{bottom:355.572000pt;}
.y105{bottom:364.067200pt;}
.y102{bottom:364.991600pt;}
.y4b{bottom:367.159467pt;}
.y9f{bottom:368.105333pt;}
.y4a{bottom:379.692800pt;}
.y9e{bottom:380.638667pt;}
.y49{bottom:392.226133pt;}
.y9d{bottom:393.172000pt;}
.y48{bottom:404.759467pt;}
.y9c{bottom:405.705333pt;}
.y47{bottom:417.292800pt;}
.y9b{bottom:418.238667pt;}
.y46{bottom:429.826133pt;}
.y9a{bottom:430.772000pt;}
.y45{bottom:442.359467pt;}
.y99{bottom:443.305333pt;}
.y44{bottom:454.892800pt;}
.y98{bottom:455.838667pt;}
.y43{bottom:467.426133pt;}
.y97{bottom:468.372000pt;}
.y42{bottom:479.959467pt;}
.y96{bottom:480.905333pt;}
.y41{bottom:492.492800pt;}
.y95{bottom:493.438667pt;}
.y40{bottom:505.026133pt;}
.y94{bottom:505.972000pt;}
.y3f{bottom:517.559467pt;}
.y93{bottom:518.505333pt;}
.yfd{bottom:520.558400pt;}
.y3e{bottom:530.092800pt;}
.y92{bottom:531.038667pt;}
.yfc{bottom:531.225067pt;}
.yfb{bottom:541.891733pt;}
.y3d{bottom:542.626133pt;}
.y91{bottom:543.572000pt;}
.yfa{bottom:552.558400pt;}
.y3c{bottom:555.159467pt;}
.y90{bottom:556.105333pt;}
.y101{bottom:560.015200pt;}
.yf9{bottom:563.225067pt;}
.y3b{bottom:567.692800pt;}
.y8f{bottom:568.638667pt;}
.yf8{bottom:573.891733pt;}
.y3a{bottom:580.226133pt;}
.y8e{bottom:581.172000pt;}
.yf7{bottom:584.558400pt;}
.y39{bottom:592.759467pt;}
.y8d{bottom:593.705333pt;}
.yf6{bottom:595.225067pt;}
.y38{bottom:605.292800pt;}
.yf5{bottom:605.891733pt;}
.y8c{bottom:606.238667pt;}
.y37{bottom:617.826133pt;}
.y8b{bottom:618.772000pt;}
.y36{bottom:630.359467pt;}
.y8a{bottom:631.305333pt;}
.yf4{bottom:641.648667pt;}
.y35{bottom:642.892800pt;}
.y89{bottom:643.838667pt;}
.yf3{bottom:654.182000pt;}
.y34{bottom:655.426133pt;}
.y88{bottom:656.372000pt;}
.yf2{bottom:666.715333pt;}
.y33{bottom:667.959467pt;}
.y87{bottom:668.905333pt;}
.yf1{bottom:679.248667pt;}
.y32{bottom:680.492800pt;}
.y86{bottom:681.438667pt;}
.yf0{bottom:691.782000pt;}
.y31{bottom:693.026133pt;}
.y85{bottom:693.972000pt;}
.yef{bottom:704.315333pt;}
.y30{bottom:705.559467pt;}
.y84{bottom:706.505333pt;}
.yee{bottom:716.848667pt;}
.y2f{bottom:718.092800pt;}
.y83{bottom:719.038667pt;}
.yed{bottom:729.382000pt;}
.y2e{bottom:730.626133pt;}
.y82{bottom:731.572000pt;}
.yec{bottom:741.915333pt;}
.y2d{bottom:743.159467pt;}
.y81{bottom:744.105333pt;}
.y100{bottom:749.041467pt;}
.yeb{bottom:754.448667pt;}
.y2c{bottom:755.692933pt;}
.y80{bottom:756.638667pt;}
.yea{bottom:766.982000pt;}
.y2b{bottom:768.226267pt;}
.y7f{bottom:769.172000pt;}
.ye9{bottom:779.515333pt;}
.y2a{bottom:780.759600pt;}
.y7e{bottom:781.705333pt;}
.ye8{bottom:792.048667pt;}
.y29{bottom:793.292933pt;}
.y7d{bottom:794.238667pt;}
.ye7{bottom:804.582000pt;}
.y28{bottom:805.826400pt;}
.y7c{bottom:806.772000pt;}
.ye6{bottom:817.115333pt;}
.y27{bottom:818.359733pt;}
.y7b{bottom:819.305333pt;}
.ye5{bottom:829.648667pt;}
.y26{bottom:830.893067pt;}
.y7a{bottom:831.838667pt;}
.ye4{bottom:842.182000pt;}
.y25{bottom:843.426400pt;}
.y79{bottom:844.372000pt;}
.ye3{bottom:854.715333pt;}
.y24{bottom:855.959733pt;}
.y78{bottom:856.905333pt;}
.ye2{bottom:867.248667pt;}
.y23{bottom:868.493200pt;}
.y77{bottom:869.438667pt;}
.ye1{bottom:879.782000pt;}
.y22{bottom:881.026533pt;}
.y76{bottom:881.972000pt;}
.ye0{bottom:892.315333pt;}
.y21{bottom:893.559867pt;}
.y75{bottom:894.505333pt;}
.ydf{bottom:904.848667pt;}
.y20{bottom:906.093200pt;}
.y74{bottom:907.038667pt;}
.yde{bottom:917.382000pt;}
.y1f{bottom:918.626667pt;}
.y73{bottom:919.572000pt;}
.ydd{bottom:929.915333pt;}
.y1e{bottom:931.160000pt;}
.y72{bottom:932.105333pt;}
.ydc{bottom:942.448667pt;}
.y1d{bottom:943.693333pt;}
.y71{bottom:944.638667pt;}
.ydb{bottom:954.982000pt;}
.y1c{bottom:956.226667pt;}
.y70{bottom:957.172000pt;}
.yda{bottom:967.515333pt;}
.y1b{bottom:968.760133pt;}
.y6f{bottom:969.705333pt;}
.yd9{bottom:980.048667pt;}
.y1a{bottom:981.293467pt;}
.y6e{bottom:982.238667pt;}
.yff{bottom:983.277733pt;}
.yd8{bottom:992.582000pt;}
.y19{bottom:993.826800pt;}
.y6d{bottom:994.772000pt;}
.yd7{bottom:1005.115333pt;}
.y18{bottom:1006.360133pt;}
.y6c{bottom:1007.305333pt;}
.yd6{bottom:1017.648667pt;}
.y17{bottom:1018.893600pt;}
.y6b{bottom:1019.838667pt;}
.yd5{bottom:1030.182000pt;}
.y16{bottom:1031.426933pt;}
.yd4{bottom:1042.715333pt;}
.y15{bottom:1043.960267pt;}
.y6a{bottom:1044.905333pt;}
.yd3{bottom:1055.248667pt;}
.y14{bottom:1056.493600pt;}
.y69{bottom:1057.438667pt;}
.yd2{bottom:1067.782000pt;}
.y13{bottom:1069.027067pt;}
.y68{bottom:1069.972000pt;}
.yd1{bottom:1080.315333pt;}
.y12{bottom:1081.560400pt;}
.y67{bottom:1082.505333pt;}
.yd0{bottom:1092.848667pt;}
.y11{bottom:1094.093733pt;}
.y66{bottom:1095.038667pt;}
.ycf{bottom:1105.382000pt;}
.y10{bottom:1106.627067pt;}
.y65{bottom:1107.572000pt;}
.yce{bottom:1117.915333pt;}
.yf{bottom:1119.160533pt;}
.y64{bottom:1120.105333pt;}
.ycd{bottom:1130.448667pt;}
.ye{bottom:1131.693867pt;}
.y63{bottom:1132.638667pt;}
.ycc{bottom:1142.982000pt;}
.yd{bottom:1144.227067pt;}
.y62{bottom:1145.172000pt;}
.ycb{bottom:1155.515333pt;}
.yc{bottom:1156.760533pt;}
.y61{bottom:1157.705333pt;}
.yca{bottom:1168.048667pt;}
.yc9{bottom:1180.582000pt;}
.yc8{bottom:1193.115333pt;}
.yb{bottom:1201.072533pt;}
.yfe{bottom:1203.057067pt;}
.yc7{bottom:1205.648667pt;}
.ya{bottom:1214.006000pt;}
.yc6{bottom:1218.182000pt;}
.y9{bottom:1226.939333pt;}
.yc5{bottom:1230.715333pt;}
.y8{bottom:1239.872667pt;}
.yc4{bottom:1243.248667pt;}
.y7{bottom:1252.806000pt;}
.yc3{bottom:1255.782000pt;}
.y6{bottom:1265.739333pt;}
.yc2{bottom:1268.315333pt;}
.y5{bottom:1278.672667pt;}
.yc1{bottom:1280.848667pt;}
.y4{bottom:1291.606000pt;}
.yc0{bottom:1293.382000pt;}
.ybf{bottom:1305.915333pt;}
.ybe{bottom:1318.448667pt;}
.ybd{bottom:1330.982000pt;}
.y3{bottom:1337.676933pt;}
.ybc{bottom:1343.515333pt;}
.ybb{bottom:1356.048667pt;}
.y2{bottom:1360.343600pt;}
.yba{bottom:1368.582000pt;}
.yb9{bottom:1381.115200pt;}
.yb8{bottom:1393.648667pt;}
.y1{bottom:1403.010267pt;}
.yb7{bottom:1406.182000pt;}
.yb6{bottom:1418.715333pt;}
.yb5{bottom:1431.248667pt;}
.y107{bottom:1477.569067pt;}
.hc{height:27.216000pt;}
.hd{height:34.048000pt;}
.hb{height:34.645333pt;}
.h9{height:40.614400pt;}
.h7{height:40.678400pt;}
.h6{height:40.857600pt;}
.ha{height:41.326933pt;}
.h8{height:41.574400pt;}
.he{height:42.615467pt;}
.h5{height:69.290667pt;}
.hf{height:95.466667pt;}
.h4{height:179.178667pt;}
.h3{height:184.021333pt;}
.h2{height:1534.488000pt;}
.h0{height:1534.493333pt;}
.h1{height:1534.666667pt;}
.w0{width:1031.810667pt;}
.w1{width:1032.000000pt;}
.x0{left:0.000000pt;}
.x1{left:34.960667pt;}
.xa{left:35.905467pt;}
.x2{left:37.795333pt;}
.x9{left:39.877733pt;}
.x3{left:281.844800pt;}
.x6{left:714.570667pt;}
.x5{left:771.968533pt;}
.x4{left:772.913467pt;}
.x7{left:971.263467pt;}
.x8{left:972.913467pt;}
}




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