
    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_b1bb7ba4eddc9ce3d70d02df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_49a07129c0296bd76aed4824.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_f42bcc6b486e243ce1d19064.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_5744bd5c4565210f362a453d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_e69794311232d355544968b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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);}
.v3{vertical-align:-23.760000px;}
.v8{vertical-align:-18.000000px;}
.v1{vertical-align:-9.360000px;}
.v5{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.760000px;}
.v9{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v7{vertical-align:26.640000px;}
.ls1a{letter-spacing:-0.708000px;}
.ls12{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.004320px;}
.ls17{letter-spacing:0.012960px;}
.ls7{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.090720px;}
.ls16{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.189360px;}
.lsc{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.206640px;}
.ls11{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.612000px;}
.ls18{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.900000px;}
.ls1c{letter-spacing:0.978000px;}
.lse{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.188000px;}
.lsb{letter-spacing:8.100000px;}
.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:-23.940000px;}
.ws1a{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.128000px;}
.ws7{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.840000px;}
.ws16{word-spacing:-15.606000px;}
.ws8{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.146400px;}
.ws17{word-spacing:-15.120000px;}
.ws14{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.680200px;}
.ws11{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.wse{word-spacing:-9.737280px;}
.ws15{word-spacing:-9.732960px;}
.ws18{word-spacing:-9.724320px;}
.ws5{word-spacing:-9.720000px;}
.ws19{word-spacing:-9.012000px;}
.ws10{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
._e{margin-left:-4.261680px;}
._d{margin-left:-3.050640px;}
._1{margin-left:-1.888800px;}
._0{width:1.244880px;}
._3{width:2.487360px;}
._4{width:4.302720px;}
._5{width:5.905920px;}
._8{width:7.586640px;}
._7{width:8.958960px;}
._f{width:10.637280px;}
._c{width:11.657280px;}
._b{width:13.183920px;}
._6{width:16.673040px;}
._9{width:27.370080px;}
._14{width:29.543040px;}
._17{width:32.240400px;}
._16{width:33.318720px;}
._10{width:98.588160px;}
._12{width:137.580480px;}
._13{width:138.722160px;}
._15{width:145.794240px;}
._11{width:168.050880px;}
._2{width:847.740000px;}
._a{width:924.060000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:3.240000px;}
.y51{bottom:3.600000px;}
.y34{bottom:4.680000px;}
.y2e{bottom:4.860000px;}
.y26{bottom:5.400000px;}
.y2b{bottom:6.300000px;}
.y2f{bottom:6.480000px;}
.y3d{bottom:9.180000px;}
.y3b{bottom:9.360000px;}
.y2d{bottom:15.120000px;}
.y1c{bottom:20.520000px;}
.y50{bottom:20.880000px;}
.y55{bottom:21.240000px;}
.y32{bottom:25.200000px;}
.y54{bottom:38.520000px;}
.y2{bottom:56.700000px;}
.y1{bottom:75.636000px;}
.y53{bottom:95.616000px;}
.y6f{bottom:96.516000px;}
.ya0{bottom:103.536000px;}
.y57{bottom:113.256000px;}
.y6e{bottom:113.796000px;}
.y90{bottom:114.696000px;}
.y9f{bottom:120.816000px;}
.y56{bottom:130.896000px;}
.y8f{bottom:131.976000px;}
.y9e{bottom:138.096000px;}
.y8e{bottom:149.256000px;}
.y4f{bottom:150.330000px;}
.y6d{bottom:159.330000px;}
.y9d{bottom:166.350000px;}
.y52{bottom:167.970000px;}
.y8d{bottom:177.510000px;}
.y4e{bottom:187.410000px;}
.y4d{bottom:231.870000px;}
.y4c{bottom:249.150000px;}
.y4b{bottom:266.430000px;}
.y4a{bottom:283.710000px;}
.y64{bottom:284.790000px;}
.y49{bottom:306.930000px;}
.y63{bottom:318.090000px;}
.y48{bottom:321.330000px;}
.y47{bottom:339.015000px;}
.y62{bottom:351.255000px;}
.y46{bottom:356.655000px;}
.y61{bottom:368.535000px;}
.y45{bottom:374.295000px;}
.yab{bottom:378.975000px;}
.y60{bottom:385.815000px;}
.y44{bottom:393.735000px;}
.y5f{bottom:403.095000px;}
.yaa{bottom:409.935000px;}
.y5e{bottom:420.375000px;}
.y43{bottom:420.915000px;}
.y5d{bottom:437.655000px;}
.y42{bottom:438.195000px;}
.ya9{bottom:443.055000px;}
.y80{bottom:449.895000px;}
.y5c{bottom:454.755000px;}
.y41{bottom:455.475000px;}
.ya8{bottom:460.335000px;}
.y7f{bottom:467.175000px;}
.y5b{bottom:472.035000px;}
.y40{bottom:478.695000px;}
.y15{bottom:478.875000px;}
.y7e{bottom:484.455000px;}
.ya7{bottom:488.775000px;}
.y5a{bottom:492.015000px;}
.y3f{bottom:493.095000px;}
.y7d{bottom:501.735000px;}
.y3e{bottom:516.855000px;}
.y14{bottom:517.215000px;}
.y7c{bottom:519.015000px;}
.y9c{bottom:524.235000px;}
.y8c{bottom:535.395000px;}
.y7b{bottom:536.295000px;}
.y3c{bottom:540.435000px;}
.y9b{bottom:541.515000px;}
.y8b{bottom:552.675000px;}
.y7a{bottom:553.395000px;}
.y13{bottom:557.715000px;}
.y9a{bottom:558.795000px;}
.y3a{bottom:565.815000px;}
.y8a{bottom:569.955000px;}
.y79{bottom:570.675000px;}
.y99{bottom:576.075000px;}
.y6c{bottom:586.515000px;}
.y89{bottom:587.235000px;}
.y78{bottom:587.955000px;}
.y12{bottom:592.275000px;}
.y98{bottom:593.355000px;}
.y39{bottom:598.395000px;}
.y88{bottom:604.545000px;}
.yc0{bottom:608.685000px;}
.y97{bottom:610.485000px;}
.y77{bottom:616.425000px;}
.y6b{bottom:618.225000px;}
.y38{bottom:621.645000px;}
.y11{bottom:626.685000px;}
.y96{bottom:627.765000px;}
.y6a{bottom:635.505000px;}
.y87{bottom:638.925000px;}
.ybf{bottom:639.645000px;}
.y37{bottom:639.825000px;}
.y95{bottom:645.045000px;}
.y69{bottom:652.785000px;}
.y86{bottom:656.205000px;}
.y36{bottom:656.565000px;}
.ybe{bottom:658.725000px;}
.y10{bottom:661.245000px;}
.y94{bottom:662.325000px;}
.y68{bottom:670.065000px;}
.y85{bottom:673.485000px;}
.y35{bottom:677.805000px;}
.y93{bottom:679.605000px;}
.y31{bottom:686.625000px;}
.y67{bottom:687.165000px;}
.y84{bottom:690.765000px;}
.yf{bottom:695.625000px;}
.ybd{bottom:696.705000px;}
.y92{bottom:696.885000px;}
.y33{bottom:707.145000px;}
.y83{bottom:708.045000px;}
.y66{bottom:715.605000px;}
.y82{bottom:725.145000px;}
.y30{bottom:727.485000px;}
.ye{bottom:736.125000px;}
.ybc{bottom:746.745000px;}
.y2c{bottom:748.545000px;}
.y81{bottom:753.765000px;}
.ya6{bottom:761.505000px;}
.ybb{bottom:765.645000px;}
.y2a{bottom:769.065000px;}
.yd{bottom:770.505000px;}
.ya5{bottom:778.785000px;}
.yba{bottom:784.545000px;}
.y29{bottom:789.405000px;}
.ya4{bottom:796.065000px;}
.yb9{bottom:803.625000px;}
.yc{bottom:805.065000px;}
.y28{bottom:806.685000px;}
.ya3{bottom:813.345000px;}
.y27{bottom:823.965000px;}
.ya2{bottom:830.445000px;}
.yb8{bottom:834.405000px;}
.yb{bottom:839.445000px;}
.y25{bottom:841.965000px;}
.yb7{bottom:853.485000px;}
.ya1{bottom:859.065000px;}
.y24{bottom:871.350000px;}
.ya{bottom:873.870000px;}
.yb6{bottom:884.310000px;}
.y23{bottom:888.630000px;}
.yb5{bottom:903.570000px;}
.y9{bottom:908.430000px;}
.y22{bottom:911.850000px;}
.yb4{bottom:922.470000px;}
.y21{bottom:926.250000px;}
.y8{bottom:942.810000px;}
.y20{bottom:943.890000px;}
.yb3{bottom:953.250000px;}
.y1f{bottom:961.530000px;}
.yb2{bottom:972.510000px;}
.y7{bottom:977.370000px;}
.y1e{bottom:979.170000px;}
.y1b{bottom:998.610000px;}
.yb1{bottom:1003.290000px;}
.y6{bottom:1017.870000px;}
.yb0{bottom:1022.370000px;}
.y76{bottom:1039.110000px;}
.y1a{bottom:1043.070000px;}
.y5{bottom:1046.310000px;}
.yaf{bottom:1053.150000px;}
.y75{bottom:1056.390000px;}
.y19{bottom:1060.350000px;}
.yae{bottom:1072.410000px;}
.y74{bottom:1073.490000px;}
.y18{bottom:1077.630000px;}
.y73{bottom:1090.770000px;}
.y59{bottom:1091.130000px;}
.yad{bottom:1091.310000px;}
.y4{bottom:1092.750000px;}
.y72{bottom:1108.050000px;}
.y17{bottom:1108.590000px;}
.yac{bottom:1110.390000px;}
.y58{bottom:1116.150000px;}
.y71{bottom:1125.330000px;}
.y3{bottom:1134.330000px;}
.y65{bottom:1141.020000px;}
.y16{bottom:1141.200000px;}
.y91{bottom:1141.380000px;}
.y70{bottom:1142.640000px;}
.ha{height:17.280000px;}
.h16{height:17.316000px;}
.hc{height:19.440000px;}
.hd{height:20.340000px;}
.hf{height:20.520000px;}
.h14{height:23.220000px;}
.h13{height:23.400000px;}
.h9{height:34.560000px;}
.h17{height:34.920000px;}
.h11{height:35.332031px;}
.he{height:40.860000px;}
.h5{height:41.070937px;}
.h4{height:41.250938px;}
.h18{height:52.560000px;}
.h12{height:53.332031px;}
.h19{height:53.573906px;}
.h8{height:58.651172px;}
.hb{height:59.038594px;}
.h7{height:60.226875px;}
.h10{height:61.200000px;}
.h2{height:65.010937px;}
.h15{height:65.884219px;}
.h6{height:66.757500px;}
.h3{height:93.983203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:38.700000px;}
.wb{width:43.596000px;}
.w18{width:50.220000px;}
.w16{width:50.400000px;}
.wc{width:57.960000px;}
.w19{width:61.740000px;}
.w14{width:64.080000px;}
.w1a{width:66.456000px;}
.w1e{width:67.320000px;}
.w1c{width:67.680000px;}
.w10{width:73.656000px;}
.w12{width:74.340000px;}
.w11{width:78.660000px;}
.wf{width:78.840000px;}
.wa{width:79.560000px;}
.w6{width:83.700000px;}
.w7{width:84.276000px;}
.w8{width:84.780000px;}
.w5{width:84.816000px;}
.w26{width:91.260000px;}
.w25{width:91.296000px;}
.w23{width:91.440000px;}
.w27{width:91.476000px;}
.w22{width:91.656000px;}
.w24{width:94.860000px;}
.w1b{width:95.040000px;}
.w21{width:95.220000px;}
.we{width:100.836000px;}
.w9{width:103.896000px;}
.w13{width:119.376000px;}
.w20{width:125.676000px;}
.w1f{width:127.476000px;}
.w1d{width:127.656000px;}
.w17{width:128.736000px;}
.w3{width:168.870000px;}
.w4{width:169.410000px;}
.w15{width:353.415000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.020000px;}
.x8{left:8.145000px;}
.x30{left:10.800000px;}
.x10{left:11.880000px;}
.x15{left:13.140000px;}
.x4{left:15.165000px;}
.x12{left:16.425000px;}
.x1c{left:17.820000px;}
.x22{left:19.260000px;}
.x27{left:20.700000px;}
.x20{left:21.825000px;}
.xa{left:23.220000px;}
.x2c{left:24.480000px;}
.x26{left:25.740000px;}
.xd{left:26.820000px;}
.x21{left:28.980000px;}
.x19{left:30.240000px;}
.x1f{left:32.040000px;}
.x17{left:35.640000px;}
.x25{left:36.900000px;}
.x24{left:39.240000px;}
.xe{left:42.300000px;}
.x33{left:44.490000px;}
.x2b{left:46.800000px;}
.x32{left:48.270000px;}
.x23{left:50.400000px;}
.x7{left:51.510000px;}
.x5{left:53.145000px;}
.x2{left:84.959987px;}
.x40{left:133.055987px;}
.x34{left:164.910000px;}
.x28{left:180.210000px;}
.xf{left:188.850000px;}
.x1e{left:204.330000px;}
.x11{left:268.410000px;}
.x3{left:276.330000px;}
.x35{left:290.595000px;}
.x2e{left:301.395000px;}
.x13{left:312.015000px;}
.x9{left:361.515000px;}
.x14{left:369.975000px;}
.x36{left:385.815000px;}
.x2f{left:396.435000px;}
.x16{left:408.675000px;}
.x3d{left:433.694987px;}
.x3c{left:438.194987px;}
.x1{left:442.334987px;}
.x6{left:447.375000px;}
.x37{left:453.495000px;}
.x3f{left:460.694987px;}
.x31{left:464.115000px;}
.x3e{left:493.124987px;}
.x18{left:509.505000px;}
.xc{left:532.005000px;}
.x29{left:533.625000px;}
.x38{left:545.145000px;}
.x2a{left:584.025000px;}
.x1a{left:588.345000px;}
.x39{left:636.585000px;}
.x2d{left:646.305000px;}
.x1b{left:662.190000px;}
.x1d{left:740.850000px;}
.x3a{left:805.649987px;}
.x3b{left:807.809987px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v8{vertical-align:-16.000000pt;}
.v1{vertical-align:-8.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.120000pt;}
.v9{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v7{vertical-align:23.680000pt;}
.ls1a{letter-spacing:-0.629333pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.003840pt;}
.ls17{letter-spacing:0.011520pt;}
.ls7{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.080640pt;}
.ls16{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.168320pt;}
.lsc{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.183680pt;}
.ls11{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.544000pt;}
.ls18{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.869333pt;}
.lse{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.056000pt;}
.lsb{letter-spacing:7.200000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.336000pt;}
.ws7{word-spacing:-14.240000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws16{word-spacing:-13.872000pt;}
.ws8{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.463467pt;}
.ws17{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.655360pt;}
.ws15{word-spacing:-8.651520pt;}
.ws18{word-spacing:-8.643840pt;}
.ws5{word-spacing:-8.640000pt;}
.ws19{word-spacing:-8.010667pt;}
.ws10{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
._e{margin-left:-3.788160pt;}
._d{margin-left:-2.711680pt;}
._1{margin-left:-1.678933pt;}
._0{width:1.106560pt;}
._3{width:2.210987pt;}
._4{width:3.824640pt;}
._5{width:5.249707pt;}
._8{width:6.743680pt;}
._7{width:7.963520pt;}
._f{width:9.455360pt;}
._c{width:10.362027pt;}
._b{width:11.719040pt;}
._6{width:14.820480pt;}
._9{width:24.328960pt;}
._14{width:26.260480pt;}
._17{width:28.658133pt;}
._16{width:29.616640pt;}
._10{width:87.633920pt;}
._12{width:122.293760pt;}
._13{width:123.308587pt;}
._15{width:129.594880pt;}
._11{width:149.378560pt;}
._2{width:753.546667pt;}
._a{width:821.386667pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:2.880000pt;}
.y51{bottom:3.200000pt;}
.y34{bottom:4.160000pt;}
.y2e{bottom:4.320000pt;}
.y26{bottom:4.800000pt;}
.y2b{bottom:5.600000pt;}
.y2f{bottom:5.760000pt;}
.y3d{bottom:8.160000pt;}
.y3b{bottom:8.320000pt;}
.y2d{bottom:13.440000pt;}
.y1c{bottom:18.240000pt;}
.y50{bottom:18.560000pt;}
.y55{bottom:18.880000pt;}
.y32{bottom:22.400000pt;}
.y54{bottom:34.240000pt;}
.y2{bottom:50.400000pt;}
.y1{bottom:67.232000pt;}
.y53{bottom:84.992000pt;}
.y6f{bottom:85.792000pt;}
.ya0{bottom:92.032000pt;}
.y57{bottom:100.672000pt;}
.y6e{bottom:101.152000pt;}
.y90{bottom:101.952000pt;}
.y9f{bottom:107.392000pt;}
.y56{bottom:116.352000pt;}
.y8f{bottom:117.312000pt;}
.y9e{bottom:122.752000pt;}
.y8e{bottom:132.672000pt;}
.y4f{bottom:133.626667pt;}
.y6d{bottom:141.626667pt;}
.y9d{bottom:147.866667pt;}
.y52{bottom:149.306667pt;}
.y8d{bottom:157.786667pt;}
.y4e{bottom:166.586667pt;}
.y4d{bottom:206.106667pt;}
.y4c{bottom:221.466667pt;}
.y4b{bottom:236.826667pt;}
.y4a{bottom:252.186667pt;}
.y64{bottom:253.146667pt;}
.y49{bottom:272.826667pt;}
.y63{bottom:282.746667pt;}
.y48{bottom:285.626667pt;}
.y47{bottom:301.346667pt;}
.y62{bottom:312.226667pt;}
.y46{bottom:317.026667pt;}
.y61{bottom:327.586667pt;}
.y45{bottom:332.706667pt;}
.yab{bottom:336.866667pt;}
.y60{bottom:342.946667pt;}
.y44{bottom:349.986667pt;}
.y5f{bottom:358.306667pt;}
.yaa{bottom:364.386667pt;}
.y5e{bottom:373.666667pt;}
.y43{bottom:374.146667pt;}
.y5d{bottom:389.026667pt;}
.y42{bottom:389.506667pt;}
.ya9{bottom:393.826667pt;}
.y80{bottom:399.906667pt;}
.y5c{bottom:404.226667pt;}
.y41{bottom:404.866667pt;}
.ya8{bottom:409.186667pt;}
.y7f{bottom:415.266667pt;}
.y5b{bottom:419.586667pt;}
.y40{bottom:425.506667pt;}
.y15{bottom:425.666667pt;}
.y7e{bottom:430.626667pt;}
.ya7{bottom:434.466667pt;}
.y5a{bottom:437.346667pt;}
.y3f{bottom:438.306667pt;}
.y7d{bottom:445.986667pt;}
.y3e{bottom:459.426667pt;}
.y14{bottom:459.746667pt;}
.y7c{bottom:461.346667pt;}
.y9c{bottom:465.986667pt;}
.y8c{bottom:475.906667pt;}
.y7b{bottom:476.706667pt;}
.y3c{bottom:480.386667pt;}
.y9b{bottom:481.346667pt;}
.y8b{bottom:491.266667pt;}
.y7a{bottom:491.906667pt;}
.y13{bottom:495.746667pt;}
.y9a{bottom:496.706667pt;}
.y3a{bottom:502.946667pt;}
.y8a{bottom:506.626667pt;}
.y79{bottom:507.266667pt;}
.y99{bottom:512.066667pt;}
.y6c{bottom:521.346667pt;}
.y89{bottom:521.986667pt;}
.y78{bottom:522.626667pt;}
.y12{bottom:526.466667pt;}
.y98{bottom:527.426667pt;}
.y39{bottom:531.906667pt;}
.y88{bottom:537.373333pt;}
.yc0{bottom:541.053333pt;}
.y97{bottom:542.653333pt;}
.y77{bottom:547.933333pt;}
.y6b{bottom:549.533333pt;}
.y38{bottom:552.573333pt;}
.y11{bottom:557.053333pt;}
.y96{bottom:558.013333pt;}
.y6a{bottom:564.893333pt;}
.y87{bottom:567.933333pt;}
.ybf{bottom:568.573333pt;}
.y37{bottom:568.733333pt;}
.y95{bottom:573.373333pt;}
.y69{bottom:580.253333pt;}
.y86{bottom:583.293333pt;}
.y36{bottom:583.613333pt;}
.ybe{bottom:585.533333pt;}
.y10{bottom:587.773333pt;}
.y94{bottom:588.733333pt;}
.y68{bottom:595.613333pt;}
.y85{bottom:598.653333pt;}
.y35{bottom:602.493333pt;}
.y93{bottom:604.093333pt;}
.y31{bottom:610.333333pt;}
.y67{bottom:610.813333pt;}
.y84{bottom:614.013333pt;}
.yf{bottom:618.333333pt;}
.ybd{bottom:619.293333pt;}
.y92{bottom:619.453333pt;}
.y33{bottom:628.573333pt;}
.y83{bottom:629.373333pt;}
.y66{bottom:636.093333pt;}
.y82{bottom:644.573333pt;}
.y30{bottom:646.653333pt;}
.ye{bottom:654.333333pt;}
.ybc{bottom:663.773333pt;}
.y2c{bottom:665.373333pt;}
.y81{bottom:670.013333pt;}
.ya6{bottom:676.893333pt;}
.ybb{bottom:680.573333pt;}
.y2a{bottom:683.613333pt;}
.yd{bottom:684.893333pt;}
.ya5{bottom:692.253333pt;}
.yba{bottom:697.373333pt;}
.y29{bottom:701.693333pt;}
.ya4{bottom:707.613333pt;}
.yb9{bottom:714.333333pt;}
.yc{bottom:715.613333pt;}
.y28{bottom:717.053333pt;}
.ya3{bottom:722.973333pt;}
.y27{bottom:732.413333pt;}
.ya2{bottom:738.173333pt;}
.yb8{bottom:741.693333pt;}
.yb{bottom:746.173333pt;}
.y25{bottom:748.413333pt;}
.yb7{bottom:758.653333pt;}
.ya1{bottom:763.613333pt;}
.y24{bottom:774.533333pt;}
.ya{bottom:776.773333pt;}
.yb6{bottom:786.053333pt;}
.y23{bottom:789.893333pt;}
.yb5{bottom:803.173333pt;}
.y9{bottom:807.493333pt;}
.y22{bottom:810.533333pt;}
.yb4{bottom:819.973333pt;}
.y21{bottom:823.333333pt;}
.y8{bottom:838.053333pt;}
.y20{bottom:839.013333pt;}
.yb3{bottom:847.333333pt;}
.y1f{bottom:854.693333pt;}
.yb2{bottom:864.453333pt;}
.y7{bottom:868.773333pt;}
.y1e{bottom:870.373333pt;}
.y1b{bottom:887.653333pt;}
.yb1{bottom:891.813333pt;}
.y6{bottom:904.773333pt;}
.yb0{bottom:908.773333pt;}
.y76{bottom:923.653333pt;}
.y1a{bottom:927.173333pt;}
.y5{bottom:930.053333pt;}
.yaf{bottom:936.133333pt;}
.y75{bottom:939.013333pt;}
.y19{bottom:942.533333pt;}
.yae{bottom:953.253333pt;}
.y74{bottom:954.213333pt;}
.y18{bottom:957.893333pt;}
.y73{bottom:969.573333pt;}
.y59{bottom:969.893333pt;}
.yad{bottom:970.053333pt;}
.y4{bottom:971.333333pt;}
.y72{bottom:984.933333pt;}
.y17{bottom:985.413333pt;}
.yac{bottom:987.013333pt;}
.y58{bottom:992.133333pt;}
.y71{bottom:1000.293333pt;}
.y3{bottom:1008.293333pt;}
.y65{bottom:1014.240000pt;}
.y16{bottom:1014.400000pt;}
.y91{bottom:1014.560000pt;}
.y70{bottom:1015.680000pt;}
.ha{height:15.360000pt;}
.h16{height:15.392000pt;}
.hc{height:17.280000pt;}
.hd{height:18.080000pt;}
.hf{height:18.240000pt;}
.h14{height:20.640000pt;}
.h13{height:20.800000pt;}
.h9{height:30.720000pt;}
.h17{height:31.040000pt;}
.h11{height:31.406250pt;}
.he{height:36.320000pt;}
.h5{height:36.507500pt;}
.h4{height:36.667500pt;}
.h18{height:46.720000pt;}
.h12{height:47.406250pt;}
.h19{height:47.621250pt;}
.h8{height:52.134375pt;}
.hb{height:52.478750pt;}
.h7{height:53.535000pt;}
.h10{height:54.400000pt;}
.h2{height:57.787500pt;}
.h15{height:58.563750pt;}
.h6{height:59.340000pt;}
.h3{height:83.540625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:34.400000pt;}
.wb{width:38.752000pt;}
.w18{width:44.640000pt;}
.w16{width:44.800000pt;}
.wc{width:51.520000pt;}
.w19{width:54.880000pt;}
.w14{width:56.960000pt;}
.w1a{width:59.072000pt;}
.w1e{width:59.840000pt;}
.w1c{width:60.160000pt;}
.w10{width:65.472000pt;}
.w12{width:66.080000pt;}
.w11{width:69.920000pt;}
.wf{width:70.080000pt;}
.wa{width:70.720000pt;}
.w6{width:74.400000pt;}
.w7{width:74.912000pt;}
.w8{width:75.360000pt;}
.w5{width:75.392000pt;}
.w26{width:81.120000pt;}
.w25{width:81.152000pt;}
.w23{width:81.280000pt;}
.w27{width:81.312000pt;}
.w22{width:81.472000pt;}
.w24{width:84.320000pt;}
.w1b{width:84.480000pt;}
.w21{width:84.640000pt;}
.we{width:89.632000pt;}
.w9{width:92.352000pt;}
.w13{width:106.112000pt;}
.w20{width:111.712000pt;}
.w1f{width:113.312000pt;}
.w1d{width:113.472000pt;}
.w17{width:114.432000pt;}
.w3{width:150.106667pt;}
.w4{width:150.586667pt;}
.w15{width:314.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.240000pt;}
.x8{left:7.240000pt;}
.x30{left:9.600000pt;}
.x10{left:10.560000pt;}
.x15{left:11.680000pt;}
.x4{left:13.480000pt;}
.x12{left:14.600000pt;}
.x1c{left:15.840000pt;}
.x22{left:17.120000pt;}
.x27{left:18.400000pt;}
.x20{left:19.400000pt;}
.xa{left:20.640000pt;}
.x2c{left:21.760000pt;}
.x26{left:22.880000pt;}
.xd{left:23.840000pt;}
.x21{left:25.760000pt;}
.x19{left:26.880000pt;}
.x1f{left:28.480000pt;}
.x17{left:31.680000pt;}
.x25{left:32.800000pt;}
.x24{left:34.880000pt;}
.xe{left:37.600000pt;}
.x33{left:39.546667pt;}
.x2b{left:41.600000pt;}
.x32{left:42.906667pt;}
.x23{left:44.800000pt;}
.x7{left:45.786667pt;}
.x5{left:47.240000pt;}
.x2{left:75.519988pt;}
.x40{left:118.271988pt;}
.x34{left:146.586667pt;}
.x28{left:160.186667pt;}
.xf{left:167.866667pt;}
.x1e{left:181.626667pt;}
.x11{left:238.586667pt;}
.x3{left:245.626667pt;}
.x35{left:258.306667pt;}
.x2e{left:267.906667pt;}
.x13{left:277.346667pt;}
.x9{left:321.346667pt;}
.x14{left:328.866667pt;}
.x36{left:342.946667pt;}
.x2f{left:352.386667pt;}
.x16{left:363.266667pt;}
.x3d{left:385.506655pt;}
.x3c{left:389.506655pt;}
.x1{left:393.186655pt;}
.x6{left:397.666667pt;}
.x37{left:403.106667pt;}
.x3f{left:409.506655pt;}
.x31{left:412.546667pt;}
.x3e{left:438.333322pt;}
.x18{left:452.893333pt;}
.xc{left:472.893333pt;}
.x29{left:474.333333pt;}
.x38{left:484.573333pt;}
.x2a{left:519.133333pt;}
.x1a{left:522.973333pt;}
.x39{left:565.853333pt;}
.x2d{left:574.493333pt;}
.x1b{left:588.613333pt;}
.x1d{left:658.533333pt;}
.x3a{left:716.133322pt;}
.x3b{left:718.053322pt;}
}




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