
    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_286c02aa5061f6d98ef7bf58.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_feb3c35d0fc159173ee139b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_09150a93c3f0fd0f48e368db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_e34dc2d660d7c6db967da98c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_9c8eb26c91e42e69abcc574b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_89455b226e809c2a7dc1d582.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.223800px;}
.ls1{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.lsb{letter-spacing:8.864640px;}
.ls4{letter-spacing:14.024640px;}
.lsc{letter-spacing:21.221280px;}
.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;}
}
.wsa{word-spacing:-21.420000px;}
.ws9{word-spacing:-18.720000px;}
.wsb{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.280000px;}
.ws8{word-spacing:-14.940000px;}
.ws7{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.700000px;}
.ws1{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._11{margin-left:-5.752320px;}
._f{margin-left:-4.752000px;}
._10{margin-left:-3.672960px;}
._14{margin-left:-2.549760px;}
._0{margin-left:-1.481280px;}
._1{width:1.770240px;}
._a{width:2.831520px;}
._d{width:4.248000px;}
._e{width:5.465760px;}
._7{width:7.272000px;}
._8{width:8.496000px;}
._9{width:9.792000px;}
._19{width:10.872000px;}
._24{width:11.927040px;}
._15{width:13.032000px;}
._1d{width:14.904000px;}
._20{width:15.912000px;}
._1b{width:16.930560px;}
._23{width:18.083520px;}
._6{width:19.296000px;}
._17{width:20.531040px;}
._16{width:21.600000px;}
._18{width:22.633920px;}
._1c{width:23.733120px;}
._1a{width:24.912000px;}
._b{width:26.136000px;}
._c{width:27.288000px;}
._12{width:28.728000px;}
._13{width:29.736000px;}
._25{width:30.960000px;}
._26{width:32.112000px;}
._21{width:34.488000px;}
._22{width:35.712000px;}
._27{width:36.936000px;}
._2c{width:38.723040px;}
._1e{width:48.240000px;}
._1f{width:49.709760px;}
._3{width:70.194720px;}
._2{width:71.341200px;}
._4{width:74.692800px;}
._5{width:75.841920px;}
._28{width:77.003520px;}
._2b{width:125.136000px;}
._2a{width:132.696000px;}
._29{width:699.192000px;}
.fc2{color:rgb(42,42,42);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:2.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y62{bottom:18.900000px;}
.y90{bottom:18.945000px;}
.y67{bottom:19.080000px;}
.y87{bottom:19.125000px;}
.y64{bottom:33.120000px;}
.y65{bottom:47.340000px;}
.y69{bottom:47.520000px;}
.y6b{bottom:61.560000px;}
.y6c{bottom:75.825000px;}
.y6{bottom:81.756000px;}
.y5{bottom:101.196000px;}
.y4{bottom:127.296000px;}
.y3{bottom:146.556000px;}
.y2{bottom:165.450000px;}
.y60{bottom:187.050000px;}
.y30{bottom:193.170000px;}
.y80{bottom:196.050000px;}
.y5b{bottom:200.010000px;}
.yc5{bottom:205.590000px;}
.y4d{bottom:211.710000px;}
.ya7{bottom:212.790000px;}
.y5f{bottom:218.010000px;}
.y8b{bottom:219.990000px;}
.ya4{bottom:221.070000px;}
.y2f{bottom:224.130000px;}
.yc4{bottom:226.290000px;}
.y7f{bottom:227.010000px;}
.y5a{bottom:231.150000px;}
.y4c{bottom:242.850000px;}
.ya6{bottom:243.930000px;}
.y8a{bottom:246.810000px;}
.yc3{bottom:246.990000px;}
.y5e{bottom:249.150000px;}
.ya3{bottom:252.210000px;}
.y7e{bottom:258.150000px;}
.y89{bottom:258.690000px;}
.y59{bottom:262.110000px;}
.y2e{bottom:266.610000px;}
.yc2{bottom:267.690000px;}
.y4b{bottom:273.810000px;}
.ya5{bottom:277.230000px;}
.y5d{bottom:280.110000px;}
.ya2{bottom:283.170000px;}
.y7d{bottom:289.110000px;}
.y88{bottom:293.790000px;}
.yc1{bottom:294.510000px;}
.y2d{bottom:299.190000px;}
.y58{bottom:302.070000px;}
.y4a{bottom:304.950000px;}
.y5c{bottom:311.250000px;}
.ya1{bottom:314.310000px;}
.y2c{bottom:319.890000px;}
.y7c{bottom:320.250000px;}
.yc0{bottom:321.150000px;}
.y86{bottom:329.070000px;}
.y49{bottom:335.910000px;}
.y2b{bottom:340.635000px;}
.ybf{bottom:341.895000px;}
.y57{bottom:342.255000px;}
.ya0{bottom:345.315000px;}
.y7b{bottom:351.255000px;}
.y2a{bottom:361.335000px;}
.ybe{bottom:362.595000px;}
.y85{bottom:364.395000px;}
.y48{bottom:367.095000px;}
.y56{bottom:373.395000px;}
.y9f{bottom:376.455000px;}
.y29{bottom:382.035000px;}
.y7a{bottom:382.395000px;}
.ybd{bottom:389.235000px;}
.y84{bottom:399.495000px;}
.y28{bottom:402.735000px;}
.y55{bottom:404.355000px;}
.y9e{bottom:407.415000px;}
.y47{bottom:409.395000px;}
.y79{bottom:413.355000px;}
.ybc{bottom:416.055000px;}
.y27{bottom:423.435000px;}
.y83{bottom:434.775000px;}
.y54{bottom:435.495000px;}
.ybb{bottom:436.755000px;}
.y9d{bottom:438.555000px;}
.y46{bottom:443.235000px;}
.y26{bottom:443.955000px;}
.y78{bottom:444.495000px;}
.yba{bottom:463.395000px;}
.y25{bottom:464.655000px;}
.y53{bottom:466.455000px;}
.y9c{bottom:469.515000px;}
.y45{bottom:474.375000px;}
.y77{bottom:475.455000px;}
.y24{bottom:485.355000px;}
.yb9{bottom:490.035000px;}
.y52{bottom:497.595000px;}
.y82{bottom:498.495000px;}
.y9b{bottom:500.655000px;}
.y44{bottom:505.335000px;}
.y23{bottom:506.055000px;}
.y76{bottom:506.595000px;}
.yb8{bottom:510.735000px;}
.y22{bottom:526.755000px;}
.y51{bottom:528.555000px;}
.y9a{bottom:531.615000px;}
.y81{bottom:535.215000px;}
.y43{bottom:536.475000px;}
.y75{bottom:537.555000px;}
.y21{bottom:547.455000px;}
.y50{bottom:559.695000px;}
.y99{bottom:562.755000px;}
.yb7{bottom:564.195000px;}
.y42{bottom:567.435000px;}
.y20{bottom:568.155000px;}
.y74{bottom:568.695000px;}
.yb6{bottom:584.895000px;}
.y1f{bottom:588.855000px;}
.y4f{bottom:590.655000px;}
.y73{bottom:599.655000px;}
.y98{bottom:602.715000px;}
.yb5{bottom:605.625000px;}
.y1e{bottom:609.585000px;}
.y41{bottom:609.765000px;}
.y4e{bottom:621.645000px;}
.yb4{bottom:626.325000px;}
.y1d{bottom:630.285000px;}
.y72{bottom:630.825000px;}
.y97{bottom:637.845000px;}
.y1c{bottom:650.985000px;}
.y40{bottom:652.785000px;}
.yb3{bottom:652.965000px;}
.y71{bottom:661.785000px;}
.y96{bottom:670.065000px;}
.y1b{bottom:671.685000px;}
.yb2{bottom:679.785000px;}
.y3f{bottom:683.745000px;}
.y95{bottom:684.825000px;}
.y1a{bottom:692.385000px;}
.y70{bottom:692.925000px;}
.yb1{bottom:700.485000px;}
.y19{bottom:713.085000px;}
.y3e{bottom:714.885000px;}
.yd5{bottom:718.665000px;}
.y94{bottom:720.105000px;}
.yb0{bottom:721.185000px;}
.y6f{bottom:732.885000px;}
.y18{bottom:733.785000px;}
.yaf{bottom:741.885000px;}
.yd4{bottom:745.305000px;}
.y3d{bottom:745.845000px;}
.y17{bottom:754.485000px;}
.y93{bottom:755.205000px;}
.yae{bottom:762.405000px;}
.yd3{bottom:766.005000px;}
.y6e{bottom:768.165000px;}
.y16{bottom:775.185000px;}
.y3c{bottom:776.985000px;}
.yd2{bottom:786.705000px;}
.yad{bottom:789.225000px;}
.y92{bottom:790.485000px;}
.y6d{bottom:794.805000px;}
.y15{bottom:795.885000px;}
.y6a{bottom:806.865000px;}
.y3b{bottom:807.945000px;}
.yd1{bottom:813.345000px;}
.yac{bottom:815.865000px;}
.y14{bottom:816.585000px;}
.y91{bottom:825.585000px;}
.yab{bottom:836.565000px;}
.y13{bottom:837.285000px;}
.y3a{bottom:839.085000px;}
.yd0{bottom:840.165000px;}
.yaa{bottom:857.265000px;}
.y12{bottom:857.985000px;}
.y8f{bottom:860.865000px;}
.y39{bottom:870.045000px;}
.ya9{bottom:878.010000px;}
.y11{bottom:878.730000px;}
.ycf{bottom:881.610000px;}
.y8e{bottom:896.190000px;}
.y68{bottom:898.890000px;}
.y10{bottom:899.430000px;}
.y38{bottom:901.230000px;}
.yce{bottom:902.310000px;}
.yf{bottom:920.130000px;}
.ya8{bottom:920.310000px;}
.ycd{bottom:928.950000px;}
.y37{bottom:932.190000px;}
.y8d{bottom:932.910000px;}
.ye{bottom:940.830000px;}
.ycc{bottom:955.590000px;}
.yd{bottom:961.530000px;}
.y66{bottom:962.610000px;}
.y36{bottom:963.330000px;}
.ycb{bottom:976.290000px;}
.yc{bottom:983.670000px;}
.y8c{bottom:988.350000px;}
.y35{bottom:994.290000px;}
.yca{bottom:996.990000px;}
.y63{bottom:997.890000px;}
.yb{bottom:1011.210000px;}
.yc9{bottom:1017.690000px;}
.y34{bottom:1025.430000px;}
.ya{bottom:1038.750000px;}
.yc8{bottom:1044.510000px;}
.y33{bottom:1056.390000px;}
.y61{bottom:1063.050000px;}
.y9{bottom:1066.470000px;}
.yc7{bottom:1071.150000px;}
.y32{bottom:1087.530000px;}
.yc6{bottom:1091.850000px;}
.y8{bottom:1094.010000px;}
.y31{bottom:1118.490000px;}
.y7{bottom:1119.930000px;}
.y1{bottom:1233.900000px;}
.h10{height:2.581875px;}
.h8{height:34.380000px;}
.h12{height:34.416000px;}
.hb{height:34.560000px;}
.h11{height:34.596000px;}
.he{height:36.768867px;}
.hf{height:43.246406px;}
.h13{height:45.549492px;}
.h5{height:54.878906px;}
.h9{height:58.833281px;}
.h3{height:59.383125px;}
.ha{height:62.820000px;}
.hc{height:63.000000px;}
.h7{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.hd{height:91.296000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:144.900000px;}
.w7{width:148.860000px;}
.wb{width:168.870000px;}
.w6{width:181.470000px;}
.wa{width:243.750000px;}
.w9{width:264.630000px;}
.w8{width:337.215000px;}
.w5{width:352.875000px;}
.w4{width:541.905000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.785000px;}
.x10{left:12.060000px;}
.xe{left:14.040000px;}
.x12{left:17.820000px;}
.x13{left:27.894000px;}
.x1c{left:35.274000px;}
.x18{left:36.714000px;}
.x29{left:38.205000px;}
.xb{left:41.754000px;}
.x11{left:44.814000px;}
.x1e{left:48.780000px;}
.x21{left:52.920000px;}
.x1a{left:59.040000px;}
.x2a{left:63.045000px;}
.x24{left:73.434000px;}
.x2d{left:75.774000px;}
.x19{left:82.440000px;}
.x2b{left:93.774000px;}
.x2f{left:94.854000px;}
.x1f{left:95.934000px;}
.x26{left:99.714000px;}
.x23{left:103.674000px;}
.x2e{left:105.834000px;}
.x22{left:106.914000px;}
.x2c{left:107.994000px;}
.x15{left:113.754000px;}
.x20{left:118.434000px;}
.x1d{left:119.514000px;}
.x14{left:125.316000px;}
.x2{left:127.655987px;}
.x8{left:131.975987px;}
.x1b{left:133.236000px;}
.x9{left:159.509987px;}
.x6{left:170.129987px;}
.x7{left:174.449987px;}
.x3{left:177.149987px;}
.xa{left:180.749987px;}
.xd{left:212.115000px;}
.x25{left:239.249987px;}
.xc{left:273.990000px;}
.x27{left:393.915000px;}
.x4{left:416.594987px;}
.x16{left:479.085000px;}
.x28{left:638.385000px;}
.x17{left:661.470000px;}
.x5{left:803.849987px;}
.x1{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsb{letter-spacing:7.879680pt;}
.ls4{letter-spacing:12.466347pt;}
.lsc{letter-spacing:18.863360pt;}
.wsa{word-spacing:-19.040000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._11{margin-left:-5.113173pt;}
._f{margin-left:-4.224000pt;}
._10{margin-left:-3.264853pt;}
._14{margin-left:-2.266453pt;}
._0{margin-left:-1.316693pt;}
._1{width:1.573547pt;}
._a{width:2.516907pt;}
._d{width:3.776000pt;}
._e{width:4.858453pt;}
._7{width:6.464000pt;}
._8{width:7.552000pt;}
._9{width:8.704000pt;}
._19{width:9.664000pt;}
._24{width:10.601813pt;}
._15{width:11.584000pt;}
._1d{width:13.248000pt;}
._20{width:14.144000pt;}
._1b{width:15.049387pt;}
._23{width:16.074240pt;}
._6{width:17.152000pt;}
._17{width:18.249813pt;}
._16{width:19.200000pt;}
._18{width:20.119040pt;}
._1c{width:21.096107pt;}
._1a{width:22.144000pt;}
._b{width:23.232000pt;}
._c{width:24.256000pt;}
._12{width:25.536000pt;}
._13{width:26.432000pt;}
._25{width:27.520000pt;}
._26{width:28.544000pt;}
._21{width:30.656000pt;}
._22{width:31.744000pt;}
._27{width:32.832000pt;}
._2c{width:34.420480pt;}
._1e{width:42.880000pt;}
._1f{width:44.186453pt;}
._3{width:62.395307pt;}
._2{width:63.414400pt;}
._4{width:66.393600pt;}
._5{width:67.415040pt;}
._28{width:68.447573pt;}
._2b{width:111.232000pt;}
._2a{width:117.952000pt;}
._29{width:621.504000pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:16.800000pt;}
.y90{bottom:16.840000pt;}
.y67{bottom:16.960000pt;}
.y87{bottom:17.000000pt;}
.y64{bottom:29.440000pt;}
.y65{bottom:42.080000pt;}
.y69{bottom:42.240000pt;}
.y6b{bottom:54.720000pt;}
.y6c{bottom:67.400000pt;}
.y6{bottom:72.672000pt;}
.y5{bottom:89.952000pt;}
.y4{bottom:113.152000pt;}
.y3{bottom:130.272000pt;}
.y2{bottom:147.066667pt;}
.y60{bottom:166.266667pt;}
.y30{bottom:171.706667pt;}
.y80{bottom:174.266667pt;}
.y5b{bottom:177.786667pt;}
.yc5{bottom:182.746667pt;}
.y4d{bottom:188.186667pt;}
.ya7{bottom:189.146667pt;}
.y5f{bottom:193.786667pt;}
.y8b{bottom:195.546667pt;}
.ya4{bottom:196.506667pt;}
.y2f{bottom:199.226667pt;}
.yc4{bottom:201.146667pt;}
.y7f{bottom:201.786667pt;}
.y5a{bottom:205.466667pt;}
.y4c{bottom:215.866667pt;}
.ya6{bottom:216.826667pt;}
.y8a{bottom:219.386667pt;}
.yc3{bottom:219.546667pt;}
.y5e{bottom:221.466667pt;}
.ya3{bottom:224.186667pt;}
.y7e{bottom:229.466667pt;}
.y89{bottom:229.946667pt;}
.y59{bottom:232.986667pt;}
.y2e{bottom:236.986667pt;}
.yc2{bottom:237.946667pt;}
.y4b{bottom:243.386667pt;}
.ya5{bottom:246.426667pt;}
.y5d{bottom:248.986667pt;}
.ya2{bottom:251.706667pt;}
.y7d{bottom:256.986667pt;}
.y88{bottom:261.146667pt;}
.yc1{bottom:261.786667pt;}
.y2d{bottom:265.946667pt;}
.y58{bottom:268.506667pt;}
.y4a{bottom:271.066667pt;}
.y5c{bottom:276.666667pt;}
.ya1{bottom:279.386667pt;}
.y2c{bottom:284.346667pt;}
.y7c{bottom:284.666667pt;}
.yc0{bottom:285.466667pt;}
.y86{bottom:292.506667pt;}
.y49{bottom:298.586667pt;}
.y2b{bottom:302.786667pt;}
.ybf{bottom:303.906667pt;}
.y57{bottom:304.226667pt;}
.ya0{bottom:306.946667pt;}
.y7b{bottom:312.226667pt;}
.y2a{bottom:321.186667pt;}
.ybe{bottom:322.306667pt;}
.y85{bottom:323.906667pt;}
.y48{bottom:326.306667pt;}
.y56{bottom:331.906667pt;}
.y9f{bottom:334.626667pt;}
.y29{bottom:339.586667pt;}
.y7a{bottom:339.906667pt;}
.ybd{bottom:345.986667pt;}
.y84{bottom:355.106667pt;}
.y28{bottom:357.986667pt;}
.y55{bottom:359.426667pt;}
.y9e{bottom:362.146667pt;}
.y47{bottom:363.906667pt;}
.y79{bottom:367.426667pt;}
.ybc{bottom:369.826667pt;}
.y27{bottom:376.386667pt;}
.y83{bottom:386.466667pt;}
.y54{bottom:387.106667pt;}
.ybb{bottom:388.226667pt;}
.y9d{bottom:389.826667pt;}
.y46{bottom:393.986667pt;}
.y26{bottom:394.626667pt;}
.y78{bottom:395.106667pt;}
.yba{bottom:411.906667pt;}
.y25{bottom:413.026667pt;}
.y53{bottom:414.626667pt;}
.y9c{bottom:417.346667pt;}
.y45{bottom:421.666667pt;}
.y77{bottom:422.626667pt;}
.y24{bottom:431.426667pt;}
.yb9{bottom:435.586667pt;}
.y52{bottom:442.306667pt;}
.y82{bottom:443.106667pt;}
.y9b{bottom:445.026667pt;}
.y44{bottom:449.186667pt;}
.y23{bottom:449.826667pt;}
.y76{bottom:450.306667pt;}
.yb8{bottom:453.986667pt;}
.y22{bottom:468.226667pt;}
.y51{bottom:469.826667pt;}
.y9a{bottom:472.546667pt;}
.y81{bottom:475.746667pt;}
.y43{bottom:476.866667pt;}
.y75{bottom:477.826667pt;}
.y21{bottom:486.626667pt;}
.y50{bottom:497.506667pt;}
.y99{bottom:500.226667pt;}
.yb7{bottom:501.506667pt;}
.y42{bottom:504.386667pt;}
.y20{bottom:505.026667pt;}
.y74{bottom:505.506667pt;}
.yb6{bottom:519.906667pt;}
.y1f{bottom:523.426667pt;}
.y4f{bottom:525.026667pt;}
.y73{bottom:533.026667pt;}
.y98{bottom:535.746667pt;}
.yb5{bottom:538.333333pt;}
.y1e{bottom:541.853333pt;}
.y41{bottom:542.013333pt;}
.y4e{bottom:552.573333pt;}
.yb4{bottom:556.733333pt;}
.y1d{bottom:560.253333pt;}
.y72{bottom:560.733333pt;}
.y97{bottom:566.973333pt;}
.y1c{bottom:578.653333pt;}
.y40{bottom:580.253333pt;}
.yb3{bottom:580.413333pt;}
.y71{bottom:588.253333pt;}
.y96{bottom:595.613333pt;}
.y1b{bottom:597.053333pt;}
.yb2{bottom:604.253333pt;}
.y3f{bottom:607.773333pt;}
.y95{bottom:608.733333pt;}
.y1a{bottom:615.453333pt;}
.y70{bottom:615.933333pt;}
.yb1{bottom:622.653333pt;}
.y19{bottom:633.853333pt;}
.y3e{bottom:635.453333pt;}
.yd5{bottom:638.813333pt;}
.y94{bottom:640.093333pt;}
.yb0{bottom:641.053333pt;}
.y6f{bottom:651.453333pt;}
.y18{bottom:652.253333pt;}
.yaf{bottom:659.453333pt;}
.yd4{bottom:662.493333pt;}
.y3d{bottom:662.973333pt;}
.y17{bottom:670.653333pt;}
.y93{bottom:671.293333pt;}
.yae{bottom:677.693333pt;}
.yd3{bottom:680.893333pt;}
.y6e{bottom:682.813333pt;}
.y16{bottom:689.053333pt;}
.y3c{bottom:690.653333pt;}
.yd2{bottom:699.293333pt;}
.yad{bottom:701.533333pt;}
.y92{bottom:702.653333pt;}
.y6d{bottom:706.493333pt;}
.y15{bottom:707.453333pt;}
.y6a{bottom:717.213333pt;}
.y3b{bottom:718.173333pt;}
.yd1{bottom:722.973333pt;}
.yac{bottom:725.213333pt;}
.y14{bottom:725.853333pt;}
.y91{bottom:733.853333pt;}
.yab{bottom:743.613333pt;}
.y13{bottom:744.253333pt;}
.y3a{bottom:745.853333pt;}
.yd0{bottom:746.813333pt;}
.yaa{bottom:762.013333pt;}
.y12{bottom:762.653333pt;}
.y8f{bottom:765.213333pt;}
.y39{bottom:773.373333pt;}
.ya9{bottom:780.453333pt;}
.y11{bottom:781.093333pt;}
.ycf{bottom:783.653333pt;}
.y8e{bottom:796.613333pt;}
.y68{bottom:799.013333pt;}
.y10{bottom:799.493333pt;}
.y38{bottom:801.093333pt;}
.yce{bottom:802.053333pt;}
.yf{bottom:817.893333pt;}
.ya8{bottom:818.053333pt;}
.ycd{bottom:825.733333pt;}
.y37{bottom:828.613333pt;}
.y8d{bottom:829.253333pt;}
.ye{bottom:836.293333pt;}
.ycc{bottom:849.413333pt;}
.yd{bottom:854.693333pt;}
.y66{bottom:855.653333pt;}
.y36{bottom:856.293333pt;}
.ycb{bottom:867.813333pt;}
.yc{bottom:874.373333pt;}
.y8c{bottom:878.533333pt;}
.y35{bottom:883.813333pt;}
.yca{bottom:886.213333pt;}
.y63{bottom:887.013333pt;}
.yb{bottom:898.853333pt;}
.yc9{bottom:904.613333pt;}
.y34{bottom:911.493333pt;}
.ya{bottom:923.333333pt;}
.yc8{bottom:928.453333pt;}
.y33{bottom:939.013333pt;}
.y61{bottom:944.933333pt;}
.y9{bottom:947.973333pt;}
.yc7{bottom:952.133333pt;}
.y32{bottom:966.693333pt;}
.yc6{bottom:970.533333pt;}
.y8{bottom:972.453333pt;}
.y31{bottom:994.213333pt;}
.y7{bottom:995.493333pt;}
.y1{bottom:1096.800000pt;}
.h10{height:2.295000pt;}
.h8{height:30.560000pt;}
.h12{height:30.592000pt;}
.hb{height:30.720000pt;}
.h11{height:30.752000pt;}
.he{height:32.683437pt;}
.hf{height:38.441250pt;}
.h13{height:40.488438pt;}
.h5{height:48.781250pt;}
.h9{height:52.296250pt;}
.h3{height:52.785000pt;}
.ha{height:55.840000pt;}
.hc{height:56.000000pt;}
.h7{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.hd{height:81.152000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:128.800000pt;}
.w7{width:132.320000pt;}
.wb{width:150.106667pt;}
.w6{width:161.306667pt;}
.wa{width:216.666667pt;}
.w9{width:235.226667pt;}
.w8{width:299.746667pt;}
.w5{width:313.666667pt;}
.w4{width:481.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.920000pt;}
.x10{left:10.720000pt;}
.xe{left:12.480000pt;}
.x12{left:15.840000pt;}
.x13{left:24.794667pt;}
.x1c{left:31.354667pt;}
.x18{left:32.634667pt;}
.x29{left:33.960000pt;}
.xb{left:37.114667pt;}
.x11{left:39.834667pt;}
.x1e{left:43.360000pt;}
.x21{left:47.040000pt;}
.x1a{left:52.480000pt;}
.x2a{left:56.040000pt;}
.x24{left:65.274667pt;}
.x2d{left:67.354667pt;}
.x19{left:73.280000pt;}
.x2b{left:83.354667pt;}
.x2f{left:84.314667pt;}
.x1f{left:85.274667pt;}
.x26{left:88.634667pt;}
.x23{left:92.154667pt;}
.x2e{left:94.074667pt;}
.x22{left:95.034667pt;}
.x2c{left:95.994667pt;}
.x15{left:101.114667pt;}
.x20{left:105.274667pt;}
.x1d{left:106.234667pt;}
.x14{left:111.392000pt;}
.x2{left:113.471988pt;}
.x8{left:117.311988pt;}
.x1b{left:118.432000pt;}
.x9{left:141.786655pt;}
.x6{left:151.226655pt;}
.x7{left:155.066655pt;}
.x3{left:157.466655pt;}
.xa{left:160.666655pt;}
.xd{left:188.546667pt;}
.x25{left:212.666655pt;}
.xc{left:243.546667pt;}
.x27{left:350.146667pt;}
.x4{left:370.306655pt;}
.x16{left:425.853333pt;}
.x28{left:567.453333pt;}
.x17{left:587.973333pt;}
.x5{left:714.533322pt;}
.x1{left:718.373322pt;}
}




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