
    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_30c722428059d55178225545.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_98114ef2ebe485b11247c84d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_2a08daad7f4ce59bd00d030d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_6cd38518a4492b31516545d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_98b1033162fb075a438f0508.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_319e25cf447f7e7dbddd04fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.lsa{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.240000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.078000px;}
.lse{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.780000px;}
.ls10{letter-spacing:15.720000px;}
.lsd{letter-spacing:45.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.760000px;}
.ws3{word-spacing:-14.580000px;}
.ws5{word-spacing:-12.900000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-2.202000px;}
._3{margin-left:-1.164000px;}
._0{width:1.056000px;}
._9{width:2.958000px;}
._8{width:4.350000px;}
._6{width:5.658000px;}
._7{width:7.170000px;}
._a{width:8.358000px;}
._12{width:9.390000px;}
._11{width:10.428000px;}
._d{width:12.144000px;}
._c{width:13.998000px;}
._13{width:16.902000px;}
._14{width:18.000000px;}
._15{width:19.482000px;}
._16{width:21.084000px;}
._1b{width:23.922000px;}
._b{width:25.404000px;}
._17{width:27.180000px;}
._1d{width:31.320000px;}
._1c{width:32.580000px;}
._10{width:35.832000px;}
._f{width:36.960000px;}
._1a{width:38.640000px;}
._19{width:40.476000px;}
._18{width:41.880000px;}
._1{width:43.800000px;}
._4{width:336.180000px;}
._2{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(34,122,203);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y81{bottom:5.700000px;}
.y84{bottom:5.745000px;}
.y89{bottom:6.000000px;}
.y3e{bottom:6.300000px;}
.y5{bottom:12.337500px;}
.y3d{bottom:25.800000px;}
.y3c{bottom:40.215000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3b{bottom:57.600000px;}
.y40{bottom:74.137500px;}
.y3a{bottom:74.715000px;}
.y3{bottom:81.337500px;}
.y39{bottom:92.145000px;}
.y38{bottom:109.245000px;}
.yb8{bottom:114.937500px;}
.y7a{bottom:119.737500px;}
.y28{bottom:123.937500px;}
.y37{bottom:126.645000px;}
.yb7{bottom:132.037500px;}
.y79{bottom:137.137500px;}
.y27{bottom:141.037500px;}
.y36{bottom:143.745000px;}
.yb6{bottom:149.437500px;}
.y78{bottom:154.245000px;}
.y26{bottom:158.430000px;}
.y35{bottom:161.145000px;}
.yb5{bottom:166.545000px;}
.y77{bottom:171.630000px;}
.y25{bottom:175.530000px;}
.y34{bottom:178.245000px;}
.yb4{bottom:183.975000px;}
.y76{bottom:188.775000px;}
.y24{bottom:192.975000px;}
.y33{bottom:195.645000px;}
.yb3{bottom:201.075000px;}
.yd4{bottom:206.175000px;}
.y75{bottom:206.475000px;}
.y23{bottom:210.075000px;}
.y32{bottom:212.745000px;}
.yb2{bottom:218.475000px;}
.yd3{bottom:223.275000px;}
.y74{bottom:225.975000px;}
.y22{bottom:227.475000px;}
.y31{bottom:230.145000px;}
.yb1{bottom:235.575000px;}
.y73{bottom:240.675000px;}
.y21{bottom:244.575000px;}
.y30{bottom:247.245000px;}
.yb0{bottom:252.675000px;}
.y72{bottom:257.775000px;}
.y20{bottom:261.975000px;}
.y2f{bottom:264.690000px;}
.yaf{bottom:270.075000px;}
.y71{bottom:275.175000px;}
.y1f{bottom:279.075000px;}
.y2e{bottom:281.790000px;}
.yae{bottom:287.175000px;}
.y70{bottom:292.275000px;}
.y1e{bottom:296.475000px;}
.y2d{bottom:299.175000px;}
.yad{bottom:304.575000px;}
.yd2{bottom:309.675000px;}
.y6f{bottom:309.975000px;}
.y1d{bottom:314.175000px;}
.y2c{bottom:316.290000px;}
.yac{bottom:321.675000px;}
.yd1{bottom:326.775000px;}
.y6e{bottom:329.475000px;}
.y2b{bottom:333.690000px;}
.y1c{bottom:334.875000px;}
.yab{bottom:339.075000px;}
.y6d{bottom:344.175000px;}
.y2a{bottom:351.390000px;}
.yaa{bottom:356.220000px;}
.y6c{bottom:361.320000px;}
.ya9{bottom:373.620000px;}
.yd0{bottom:378.705000px;}
.y6b{bottom:379.020000px;}
.ya8{bottom:390.705000px;}
.ycf{bottom:395.820000px;}
.y6a{bottom:398.505000px;}
.ya7{bottom:408.120000px;}
.y69{bottom:413.205000px;}
.ya6{bottom:425.205000px;}
.y29{bottom:426.405000px;}
.y68{bottom:430.320000px;}
.ya5{bottom:442.620000px;}
.yce{bottom:447.705000px;}
.y67{bottom:448.005000px;}
.ya4{bottom:459.705000px;}
.ycd{bottom:464.820000px;}
.y66{bottom:467.505000px;}
.ya3{bottom:477.120000px;}
.y65{bottom:482.205000px;}
.ya2{bottom:494.205000px;}
.y64{bottom:499.320000px;}
.ya1{bottom:511.620000px;}
.y63{bottom:516.750000px;}
.ya0{bottom:528.750000px;}
.ycc{bottom:533.850000px;}
.y62{bottom:534.450000px;}
.y9f{bottom:546.150000px;}
.ycb{bottom:551.250000px;}
.y61{bottom:553.950000px;}
.y9e{bottom:563.250000px;}
.y60{bottom:568.350000px;}
.y9d{bottom:580.650000px;}
.y5f{bottom:585.750000px;}
.y9c{bottom:597.750000px;}
.yca{bottom:602.850000px;}
.y5e{bottom:603.450000px;}
.y9b{bottom:615.150000px;}
.yc9{bottom:620.250000px;}
.y5d{bottom:624.150000px;}
.y9a{bottom:632.250000px;}
.yc8{bottom:637.350000px;}
.y5c{bottom:643.650000px;}
.y99{bottom:649.650000px;}
.yc7{bottom:654.750000px;}
.y5b{bottom:658.050000px;}
.y98{bottom:666.750000px;}
.yc6{bottom:671.850000px;}
.y5a{bottom:675.450000px;}
.y97{bottom:684.195000px;}
.yc5{bottom:689.280000px;}
.y59{bottom:692.595000px;}
.y96{bottom:701.280000px;}
.yc4{bottom:706.380000px;}
.y58{bottom:709.980000px;}
.y95{bottom:718.695000px;}
.yc3{bottom:723.795000px;}
.y57{bottom:727.080000px;}
.y94{bottom:735.795000px;}
.yc2{bottom:741.495000px;}
.y56{bottom:744.495000px;}
.y93{bottom:753.195000px;}
.yc1{bottom:760.995000px;}
.y55{bottom:761.595000px;}
.y92{bottom:770.295000px;}
.yc0{bottom:775.380000px;}
.y54{bottom:778.980000px;}
.y91{bottom:787.695000px;}
.ybf{bottom:792.795000px;}
.y53{bottom:796.080000px;}
.y90{bottom:804.795000px;}
.ybe{bottom:809.880000px;}
.y52{bottom:813.495000px;}
.y8f{bottom:822.195000px;}
.ybd{bottom:827.295000px;}
.y51{bottom:830.580000px;}
.y1b{bottom:835.980000px;}
.y8e{bottom:839.295000px;}
.ybc{bottom:844.380000px;}
.y50{bottom:847.995000px;}
.y1a{bottom:856.425000px;}
.y8d{bottom:856.725000px;}
.ybb{bottom:861.825000px;}
.y4f{bottom:865.125000px;}
.y8c{bottom:874.425000px;}
.y19{bottom:876.225000px;}
.yba{bottom:878.925000px;}
.y4e{bottom:882.525000px;}
.y8b{bottom:894.525000px;}
.y18{bottom:894.825000px;}
.yb9{bottom:896.625000px;}
.y4d{bottom:899.625000px;}
.y8a{bottom:909.225000px;}
.y4c{bottom:917.025000px;}
.y17{bottom:918.825000px;}
.y88{bottom:929.625000px;}
.y4b{bottom:934.125000px;}
.y16{bottom:936.225000px;}
.y87{bottom:950.325000px;}
.y4a{bottom:951.525000px;}
.y15{bottom:953.625000px;}
.y14{bottom:964.725000px;}
.y49{bottom:968.625000px;}
.y86{bottom:971.025000px;}
.y13{bottom:984.525000px;}
.y48{bottom:986.025000px;}
.y85{bottom:991.425000px;}
.y12{bottom:999.825000px;}
.y47{bottom:1003.125000px;}
.y83{bottom:1012.125000px;}
.y11{bottom:1020.570000px;}
.y82{bottom:1032.870000px;}
.y46{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y80{bottom:1053.255000px;}
.y45{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y44{bottom:1072.170000px;}
.y7f{bottom:1075.455000px;}
.ya{bottom:1083.570000px;}
.y7e{bottom:1085.955000px;}
.y43{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y7d{bottom:1103.370000px;}
.y42{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y7c{bottom:1120.455000px;}
.y41{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y7b{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3f{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h17{height:19.785000px;}
.h16{height:19.800000px;}
.h18{height:19.837500px;}
.h19{height:20.100000px;}
.ha{height:21.000000px;}
.h15{height:21.166992px;}
.hb{height:27.650391px;}
.h14{height:33.515625px;}
.h7{height:33.867188px;}
.h12{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hc{height:38.100586px;}
.hf{height:41.894531px;}
.h4{height:42.333984px;}
.h1a{height:43.681641px;}
.h13{height:44.507812px;}
.h1b{height:46.567383px;}
.he{height:49.453125px;}
.h6{height:50.800781px;}
.h11{height:51.996094px;}
.hd{height:59.343750px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:368.175000px;}
.h0{height:1263.000000px;}
.wb{width:63.037500px;}
.w4{width:72.300000px;}
.w9{width:76.237500px;}
.w3{width:108.000000px;}
.wa{width:152.730000px;}
.w6{width:247.875000px;}
.w8{width:290.475000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.800000px;}
.x2{left:10.799998px;}
.xf{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.xd{left:41.700000px;}
.x1{left:81.037487px;}
.xe{left:83.137500px;}
.x15{left:108.037487px;}
.x9{left:153.629987px;}
.xb{left:241.582500px;}
.x12{left:372.720000px;}
.x6{left:446.249987px;}
.x13{left:449.550000px;}
.xc{left:564.495000px;}
.x10{left:592.979987px;}
.x14{left:602.895000px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.lsa{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.069333pt;}
.lse{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.693333pt;}
.ls10{letter-spacing:13.973333pt;}
.lsd{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.120000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws5{word-spacing:-11.466667pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-1.957333pt;}
._3{margin-left:-1.034667pt;}
._0{width:0.938667pt;}
._9{width:2.629333pt;}
._8{width:3.866667pt;}
._6{width:5.029333pt;}
._7{width:6.373333pt;}
._a{width:7.429333pt;}
._12{width:8.346667pt;}
._11{width:9.269333pt;}
._d{width:10.794667pt;}
._c{width:12.442667pt;}
._13{width:15.024000pt;}
._14{width:16.000000pt;}
._15{width:17.317333pt;}
._16{width:18.741333pt;}
._1b{width:21.264000pt;}
._b{width:22.581333pt;}
._17{width:24.160000pt;}
._1d{width:27.840000pt;}
._1c{width:28.960000pt;}
._10{width:31.850667pt;}
._f{width:32.853333pt;}
._1a{width:34.346667pt;}
._19{width:35.978667pt;}
._18{width:37.226667pt;}
._1{width:38.933333pt;}
._4{width:298.826667pt;}
._2{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y81{bottom:5.066667pt;}
.y84{bottom:5.106667pt;}
.y89{bottom:5.333333pt;}
.y3e{bottom:5.600000pt;}
.y5{bottom:10.966667pt;}
.y3d{bottom:22.933333pt;}
.y3c{bottom:35.746667pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3b{bottom:51.200000pt;}
.y40{bottom:65.900000pt;}
.y3a{bottom:66.413333pt;}
.y3{bottom:72.300000pt;}
.y39{bottom:81.906667pt;}
.y38{bottom:97.106667pt;}
.yb8{bottom:102.166667pt;}
.y7a{bottom:106.433333pt;}
.y28{bottom:110.166667pt;}
.y37{bottom:112.573333pt;}
.yb7{bottom:117.366667pt;}
.y79{bottom:121.900000pt;}
.y27{bottom:125.366667pt;}
.y36{bottom:127.773333pt;}
.yb6{bottom:132.833333pt;}
.y78{bottom:137.106667pt;}
.y26{bottom:140.826667pt;}
.y35{bottom:143.240000pt;}
.yb5{bottom:148.040000pt;}
.y77{bottom:152.560000pt;}
.y25{bottom:156.026667pt;}
.y34{bottom:158.440000pt;}
.yb4{bottom:163.533333pt;}
.y76{bottom:167.800000pt;}
.y24{bottom:171.533333pt;}
.y33{bottom:173.906667pt;}
.yb3{bottom:178.733333pt;}
.yd4{bottom:183.266667pt;}
.y75{bottom:183.533333pt;}
.y23{bottom:186.733333pt;}
.y32{bottom:189.106667pt;}
.yb2{bottom:194.200000pt;}
.yd3{bottom:198.466667pt;}
.y74{bottom:200.866667pt;}
.y22{bottom:202.200000pt;}
.y31{bottom:204.573333pt;}
.yb1{bottom:209.400000pt;}
.y73{bottom:213.933333pt;}
.y21{bottom:217.400000pt;}
.y30{bottom:219.773333pt;}
.yb0{bottom:224.600000pt;}
.y72{bottom:229.133333pt;}
.y20{bottom:232.866667pt;}
.y2f{bottom:235.280000pt;}
.yaf{bottom:240.066667pt;}
.y71{bottom:244.600000pt;}
.y1f{bottom:248.066667pt;}
.y2e{bottom:250.480000pt;}
.yae{bottom:255.266667pt;}
.y70{bottom:259.800000pt;}
.y1e{bottom:263.533333pt;}
.y2d{bottom:265.933333pt;}
.yad{bottom:270.733333pt;}
.yd2{bottom:275.266667pt;}
.y6f{bottom:275.533333pt;}
.y1d{bottom:279.266667pt;}
.y2c{bottom:281.146667pt;}
.yac{bottom:285.933333pt;}
.yd1{bottom:290.466667pt;}
.y6e{bottom:292.866667pt;}
.y2b{bottom:296.613333pt;}
.y1c{bottom:297.666667pt;}
.yab{bottom:301.400000pt;}
.y6d{bottom:305.933333pt;}
.y2a{bottom:312.346667pt;}
.yaa{bottom:316.640000pt;}
.y6c{bottom:321.173333pt;}
.ya9{bottom:332.106667pt;}
.yd0{bottom:336.626667pt;}
.y6b{bottom:336.906667pt;}
.ya8{bottom:347.293333pt;}
.ycf{bottom:351.840000pt;}
.y6a{bottom:354.226667pt;}
.ya7{bottom:362.773333pt;}
.y69{bottom:367.293333pt;}
.ya6{bottom:377.960000pt;}
.y29{bottom:379.026667pt;}
.y68{bottom:382.506667pt;}
.ya5{bottom:393.440000pt;}
.yce{bottom:397.960000pt;}
.y67{bottom:398.226667pt;}
.ya4{bottom:408.626667pt;}
.ycd{bottom:413.173333pt;}
.y66{bottom:415.560000pt;}
.ya3{bottom:424.106667pt;}
.y65{bottom:428.626667pt;}
.ya2{bottom:439.293333pt;}
.y64{bottom:443.840000pt;}
.ya1{bottom:454.773333pt;}
.y63{bottom:459.333333pt;}
.ya0{bottom:470.000000pt;}
.ycc{bottom:474.533333pt;}
.y62{bottom:475.066667pt;}
.y9f{bottom:485.466667pt;}
.ycb{bottom:490.000000pt;}
.y61{bottom:492.400000pt;}
.y9e{bottom:500.666667pt;}
.y60{bottom:505.200000pt;}
.y9d{bottom:516.133333pt;}
.y5f{bottom:520.666667pt;}
.y9c{bottom:531.333333pt;}
.yca{bottom:535.866667pt;}
.y5e{bottom:536.400000pt;}
.y9b{bottom:546.800000pt;}
.yc9{bottom:551.333333pt;}
.y5d{bottom:554.800000pt;}
.y9a{bottom:562.000000pt;}
.yc8{bottom:566.533333pt;}
.y5c{bottom:572.133333pt;}
.y99{bottom:577.466667pt;}
.yc7{bottom:582.000000pt;}
.y5b{bottom:584.933333pt;}
.y98{bottom:592.666667pt;}
.yc6{bottom:597.200000pt;}
.y5a{bottom:600.400000pt;}
.y97{bottom:608.173333pt;}
.yc5{bottom:612.693333pt;}
.y59{bottom:615.640000pt;}
.y96{bottom:623.360000pt;}
.yc4{bottom:627.893333pt;}
.y58{bottom:631.093333pt;}
.y95{bottom:638.840000pt;}
.yc3{bottom:643.373333pt;}
.y57{bottom:646.293333pt;}
.y94{bottom:654.040000pt;}
.yc2{bottom:659.106667pt;}
.y56{bottom:661.773333pt;}
.y93{bottom:669.506667pt;}
.yc1{bottom:676.440000pt;}
.y55{bottom:676.973333pt;}
.y92{bottom:684.706667pt;}
.yc0{bottom:689.226667pt;}
.y54{bottom:692.426667pt;}
.y91{bottom:700.173333pt;}
.ybf{bottom:704.706667pt;}
.y53{bottom:707.626667pt;}
.y90{bottom:715.373333pt;}
.ybe{bottom:719.893333pt;}
.y52{bottom:723.106667pt;}
.y8f{bottom:730.840000pt;}
.ybd{bottom:735.373333pt;}
.y51{bottom:738.293333pt;}
.y1b{bottom:743.093333pt;}
.y8e{bottom:746.040000pt;}
.ybc{bottom:750.560000pt;}
.y50{bottom:753.773333pt;}
.y1a{bottom:761.266667pt;}
.y8d{bottom:761.533333pt;}
.ybb{bottom:766.066667pt;}
.y4f{bottom:769.000000pt;}
.y8c{bottom:777.266667pt;}
.y19{bottom:778.866667pt;}
.yba{bottom:781.266667pt;}
.y4e{bottom:784.466667pt;}
.y8b{bottom:795.133333pt;}
.y18{bottom:795.400000pt;}
.yb9{bottom:797.000000pt;}
.y4d{bottom:799.666667pt;}
.y8a{bottom:808.200000pt;}
.y4c{bottom:815.133333pt;}
.y17{bottom:816.733333pt;}
.y88{bottom:826.333333pt;}
.y4b{bottom:830.333333pt;}
.y16{bottom:832.200000pt;}
.y87{bottom:844.733333pt;}
.y4a{bottom:845.800000pt;}
.y15{bottom:847.666667pt;}
.y14{bottom:857.533333pt;}
.y49{bottom:861.000000pt;}
.y86{bottom:863.133333pt;}
.y13{bottom:875.133333pt;}
.y48{bottom:876.466667pt;}
.y85{bottom:881.266667pt;}
.y12{bottom:888.733333pt;}
.y47{bottom:891.666667pt;}
.y83{bottom:899.666667pt;}
.y11{bottom:907.173333pt;}
.y82{bottom:918.106667pt;}
.y46{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y80{bottom:936.226667pt;}
.y45{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y44{bottom:953.040000pt;}
.y7f{bottom:955.960000pt;}
.ya{bottom:963.173333pt;}
.y7e{bottom:965.293333pt;}
.y43{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y7d{bottom:980.773333pt;}
.y42{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y7c{bottom:995.960000pt;}
.y41{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y7b{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3f{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h17{height:17.586667pt;}
.h16{height:17.600000pt;}
.h18{height:17.633333pt;}
.h19{height:17.866667pt;}
.ha{height:18.666667pt;}
.h15{height:18.815104pt;}
.hb{height:24.578125pt;}
.h14{height:29.791667pt;}
.h7{height:30.104167pt;}
.h12{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hc{height:33.867188pt;}
.hf{height:37.239583pt;}
.h4{height:37.630208pt;}
.h1a{height:38.828125pt;}
.h13{height:39.562500pt;}
.h1b{height:41.393229pt;}
.he{height:43.958333pt;}
.h6{height:45.156250pt;}
.h11{height:46.218750pt;}
.hd{height:52.750000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:327.266667pt;}
.h0{height:1122.666667pt;}
.wb{width:56.033333pt;}
.w4{width:64.266667pt;}
.w9{width:67.766667pt;}
.w3{width:96.000000pt;}
.wa{width:135.760000pt;}
.w6{width:220.333333pt;}
.w8{width:258.200000pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.933333pt;}
.x2{left:9.599999pt;}
.xf{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.xd{left:37.066667pt;}
.x1{left:72.033322pt;}
.xe{left:73.900000pt;}
.x15{left:96.033322pt;}
.x9{left:136.559988pt;}
.xb{left:214.740000pt;}
.x12{left:331.306667pt;}
.x6{left:396.666655pt;}
.x13{left:399.600000pt;}
.xc{left:501.773333pt;}
.x10{left:527.093322pt;}
.x14{left:535.906667pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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