
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_320b98939b22606fa9ce5169.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148926;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_7f6ce696cee9f01a12c33bc9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_32e3e23b0adc59c741f055b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1f403a95e6935852b744054c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1ccb8203249a6a4887e79bf1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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;}
.lsa{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.210720px;}
.ls0{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.396000px;}
.lsd{letter-spacing:0.720000px;}
.ls8{letter-spacing:33.960000px;}
.ls4{letter-spacing:54.840000px;}
.ls9{letter-spacing:64.002720px;}
.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:-72.000000px;}
.ws7{word-spacing:-59.760000px;}
.ws3{word-spacing:-36.000000px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.568000px;}
.ws2{word-spacing:0.000000px;}
._27{margin-left:-10.248000px;}
._17{margin-left:-7.506480px;}
._25{margin-left:-6.393600px;}
._1{margin-left:-5.292000px;}
._7{margin-left:-4.140000px;}
._d{margin-left:-2.765520px;}
._0{margin-left:-1.608000px;}
._2{width:1.116000px;}
._9{width:2.316000px;}
._8{width:4.248000px;}
._13{width:5.256000px;}
._5{width:6.264000px;}
._6{width:7.344000px;}
._12{width:8.604000px;}
._c{width:10.608000px;}
._a{width:11.736000px;}
._b{width:13.248000px;}
._14{width:14.796000px;}
._4{width:16.416000px;}
._15{width:19.152000px;}
._10{width:20.304000px;}
._11{width:21.396000px;}
._16{width:22.440000px;}
._3{width:23.832000px;}
._1a{width:24.852000px;}
._20{width:25.980000px;}
._23{width:27.492000px;}
._1c{width:30.000000px;}
._1d{width:31.116000px;}
._26{width:32.688000px;}
._24{width:34.200000px;}
._19{width:35.232000px;}
._18{width:36.684000px;}
._21{width:39.456000px;}
._22{width:40.488000px;}
._1f{width:43.128000px;}
._e{width:50.184000px;}
._f{width:51.696000px;}
._29{width:56.693520px;}
._28{width:57.816000px;}
._2b{width:110.952000px;}
._2a{width:112.344000px;}
._1b{width:308.940000px;}
._1e{width:2324.232000px;}
.fc3{color:rgb(13,13,13);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.400000px;}
.y3{bottom:7.200000px;}
.y72{bottom:14.400000px;}
.y70{bottom:14.760000px;}
.y76{bottom:15.300000px;}
.y6e{bottom:15.480000px;}
.y7b{bottom:26.280000px;}
.y80{bottom:26.460000px;}
.y7d{bottom:26.490000px;}
.y3b{bottom:117.756000px;}
.y56{bottom:123.156000px;}
.y8a{bottom:125.676000px;}
.yb3{bottom:137.556000px;}
.y6c{bottom:144.396000px;}
.ya1{bottom:146.016000px;}
.y3a{bottom:148.896000px;}
.y55{bottom:154.290000px;}
.y89{bottom:156.630000px;}
.yd0{bottom:171.030000px;}
.y20{bottom:171.750000px;}
.ya0{bottom:176.970000px;}
.yb2{bottom:180.570000px;}
.y54{bottom:185.250000px;}
.y6b{bottom:187.410000px;}
.y39{bottom:191.910000px;}
.y1f{bottom:196.230000px;}
.y88{bottom:199.650000px;}
.ycf{bottom:201.990000px;}
.y53{bottom:216.390000px;}
.y9f{bottom:219.990000px;}
.yb1{bottom:223.590000px;}
.y6a{bottom:230.430000px;}
.y87{bottom:230.790000px;}
.yce{bottom:232.950000px;}
.y38{bottom:234.930000px;}
.y52{bottom:247.350000px;}
.yb0{bottom:254.550000px;}
.y1e{bottom:256.170000px;}
.y9e{bottom:263.010000px;}
.ycd{bottom:264.090000px;}
.y37{bottom:265.890000px;}
.y69{bottom:273.450000px;}
.y86{bottom:273.810000px;}
.yaf{bottom:285.690000px;}
.y51{bottom:290.370000px;}
.ycc{bottom:295.050000px;}
.y36{bottom:297.030000px;}
.y1d{bottom:299.010000px;}
.y85{bottom:304.770000px;}
.y9d{bottom:306.210000px;}
.y68{bottom:316.470000px;}
.yae{bottom:316.650000px;}
.ycb{bottom:326.190000px;}
.y35{bottom:327.990000px;}
.y1c{bottom:331.410000px;}
.y50{bottom:333.390000px;}
.y9c{bottom:337.215000px;}
.yad{bottom:347.835000px;}
.y84{bottom:348.015000px;}
.yca{bottom:357.195000px;}
.y34{bottom:359.175000px;}
.y67{bottom:359.535000px;}
.y1b{bottom:363.855000px;}
.y4f{bottom:364.575000px;}
.y9b{bottom:368.355000px;}
.yac{bottom:378.795000px;}
.yc9{bottom:388.335000px;}
.y33{bottom:390.135000px;}
.y83{bottom:391.035000px;}
.y4e{bottom:395.535000px;}
.y1a{bottom:396.075000px;}
.y9a{bottom:399.315000px;}
.y66{bottom:402.555000px;}
.yc8{bottom:419.295000px;}
.y19{bottom:428.475000px;}
.y99{bottom:430.455000px;}
.y32{bottom:433.155000px;}
.y65{bottom:433.695000px;}
.y82{bottom:434.055000px;}
.y4d{bottom:438.555000px;}
.yc7{bottom:450.435000px;}
.y81{bottom:455.655000px;}
.y98{bottom:461.415000px;}
.y31{bottom:464.295000px;}
.y64{bottom:464.655000px;}
.y4c{bottom:469.695000px;}
.y18{bottom:472.935000px;}
.yab{bottom:478.875000px;}
.yc6{bottom:481.395000px;}
.y30{bottom:495.255000px;}
.y63{bottom:495.795000px;}
.y97{bottom:504.435000px;}
.y7f{bottom:504.615000px;}
.yc5{bottom:512.535000px;}
.y4b{bottom:512.715000px;}
.y17{bottom:515.955000px;}
.yaa{bottom:521.895000px;}
.y2f{bottom:526.395000px;}
.y62{bottom:526.755000px;}
.y4a{bottom:537.195000px;}
.yc4{bottom:543.495000px;}
.y16{bottom:547.095000px;}
.y96{bottom:547.455000px;}
.y7e{bottom:553.755000px;}
.y2e{bottom:557.355000px;}
.ya9{bottom:564.915000px;}
.y61{bottom:569.955000px;}
.yc3{bottom:574.635000px;}
.y49{bottom:574.815000px;}
.y15{bottom:578.055000px;}
.y95{bottom:578.595000px;}
.y2d{bottom:588.495000px;}
.y7c{bottom:602.715000px;}
.yc2{bottom:605.625000px;}
.ya8{bottom:607.965000px;}
.y14{bottom:609.225000px;}
.y94{bottom:609.585000px;}
.y2c{bottom:613.005000px;}
.y48{bottom:617.865000px;}
.yc1{bottom:636.765000px;}
.y13{bottom:640.185000px;}
.y93{bottom:640.725000px;}
.y60{bottom:643.965000px;}
.y47{bottom:649.005000px;}
.ya7{bottom:650.985000px;}
.y7a{bottom:651.885000px;}
.yc0{bottom:667.725000px;}
.y12{bottom:671.325000px;}
.y2b{bottom:672.945000px;}
.y46{bottom:679.965000px;}
.y92{bottom:683.745000px;}
.y5f{bottom:686.985000px;}
.ya6{bottom:694.005000px;}
.ybf{bottom:698.865000px;}
.y11{bottom:702.285000px;}
.y2a{bottom:704.085000px;}
.y45{bottom:711.105000px;}
.y5e{bottom:718.125000px;}
.y79{bottom:726.045000px;}
.ybe{bottom:729.825000px;}
.y10{bottom:733.425000px;}
.y29{bottom:735.045000px;}
.y91{bottom:736.125000px;}
.ya5{bottom:737.205000px;}
.y44{bottom:742.065000px;}
.y5d{bottom:749.085000px;}
.ybd{bottom:760.965000px;}
.yf{bottom:764.385000px;}
.y28{bottom:766.005000px;}
.y90{bottom:768.165000px;}
.y78{bottom:769.065000px;}
.y43{bottom:773.205000px;}
.ya4{bottom:780.225000px;}
.ybc{bottom:791.925000px;}
.y5c{bottom:792.105000px;}
.ye{bottom:795.525000px;}
.y27{bottom:797.145000px;}
.y8f{bottom:811.185000px;}
.y77{bottom:812.265000px;}
.y42{bottom:816.225000px;}
.ybb{bottom:823.065000px;}
.ya3{bottom:823.245000px;}
.yd{bottom:826.485000px;}
.y26{bottom:828.105000px;}
.y75{bottom:833.865000px;}
.y5b{bottom:835.305000px;}
.yba{bottom:854.025000px;}
.y8e{bottom:854.205000px;}
.y41{bottom:859.245000px;}
.y5a{bottom:866.265000px;}
.yc{bottom:869.505000px;}
.y25{bottom:871.350000px;}
.y74{bottom:873.150000px;}
.yb9{bottom:885.210000px;}
.y8d{bottom:885.390000px;}
.y40{bottom:890.250000px;}
.ya2{bottom:897.450000px;}
.y24{bottom:902.310000px;}
.y59{bottom:909.330000px;}
.y73{bottom:911.130000px;}
.yb{bottom:912.750000px;}
.yb8{bottom:916.170000px;}
.y3f{bottom:921.390000px;}
.y8c{bottom:928.410000px;}
.ya{bottom:933.450000px;}
.y58{bottom:940.470000px;}
.yb7{bottom:947.310000px;}
.y71{bottom:949.110000px;}
.y3e{bottom:952.350000px;}
.y9{bottom:964.410000px;}
.y57{bottom:971.430000px;}
.yb6{bottom:978.270000px;}
.y3d{bottom:983.490000px;}
.y6f{bottom:986.190000px;}
.y23{bottom:995.550000px;}
.y8{bottom:1002.390000px;}
.yb5{bottom:1009.410000px;}
.y3c{bottom:1014.450000px;}
.y6d{bottom:1024.170000px;}
.y22{bottom:1026.510000px;}
.yb4{bottom:1042.710000px;}
.y8b{bottom:1045.590000px;}
.y7{bottom:1049.010000px;}
.y21{bottom:1057.650000px;}
.y6{bottom:1088.610000px;}
.y1{bottom:1105.350000px;}
.y2{bottom:1125.870000px;}
.y4{bottom:1126.590000px;}
.h5{height:22.536000px;}
.h3{height:24.336000px;}
.hd{height:31.140000px;}
.hc{height:32.040000px;}
.he{height:33.120000px;}
.hb{height:33.300000px;}
.hf{height:43.020000px;}
.h11{height:43.200000px;}
.h10{height:43.236000px;}
.h8{height:50.273438px;}
.h6{height:50.800781px;}
.h9{height:52.417969px;}
.h15{height:52.628906px;}
.h14{height:59.436914px;}
.h2{height:71.613281px;}
.h4{height:73.722656px;}
.h7{height:76.201172px;}
.h12{height:84.837305px;}
.ha{height:101.601562px;}
.h13{height:110.237695px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:4.860000px;}
.w4{width:5.220000px;}
.w7{width:6.300000px;}
.w6{width:12.060000px;}
.w8{width:12.096000px;}
.w3{width:12.240000px;}
.w9{width:96.660000px;}
.wd{width:139.680000px;}
.wc{width:155.010000px;}
.wa{width:164.730000px;}
.wb{width:168.870000px;}
.wf{width:183.450000px;}
.we{width:207.930000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:1.080000px;}
.x1f{left:7.740000px;}
.x16{left:12.240000px;}
.x19{left:13.860000px;}
.x1e{left:15.300000px;}
.x14{left:22.320000px;}
.x1d{left:25.380000px;}
.x1c{left:57.060000px;}
.x1a{left:62.100000px;}
.x1b{left:64.260000px;}
.x13{left:106.956000px;}
.x11{left:108.035987px;}
.xd{left:118.655987px;}
.x12{left:135.035987px;}
.x23{left:162.029987px;}
.xe{left:168.509987px;}
.x15{left:207.390000px;}
.x21{left:250.410000px;}
.xf{left:353.954987px;}
.x10{left:362.594987px;}
.x17{left:375.915000px;}
.xc{left:446.474987px;}
.x22{left:462.135000px;}
.x18{left:548.565000px;}
.x7{left:648.645000px;}
.x8{left:657.690000px;}
.x9{left:662.550000px;}
.xa{left:663.630000px;}
.xb{left:672.810000px;}
.x5{left:731.850000px;}
.x6{left:741.030000px;}
.x2{left:746.610000px;}
.x3{left:755.970000px;}
.x4{left:759.930000px;}
.x1{left:786.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.187307pt;}
.ls0{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.352000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls8{letter-spacing:30.186667pt;}
.ls4{letter-spacing:48.746667pt;}
.ls9{letter-spacing:56.891307pt;}
.ws1{word-spacing:-64.000000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.616000pt;}
.ws2{word-spacing:0.000000pt;}
._27{margin-left:-9.109333pt;}
._17{margin-left:-6.672427pt;}
._25{margin-left:-5.683200pt;}
._1{margin-left:-4.704000pt;}
._7{margin-left:-3.680000pt;}
._d{margin-left:-2.458240pt;}
._0{margin-left:-1.429333pt;}
._2{width:0.992000pt;}
._9{width:2.058667pt;}
._8{width:3.776000pt;}
._13{width:4.672000pt;}
._5{width:5.568000pt;}
._6{width:6.528000pt;}
._12{width:7.648000pt;}
._c{width:9.429333pt;}
._a{width:10.432000pt;}
._b{width:11.776000pt;}
._14{width:13.152000pt;}
._4{width:14.592000pt;}
._15{width:17.024000pt;}
._10{width:18.048000pt;}
._11{width:19.018667pt;}
._16{width:19.946667pt;}
._3{width:21.184000pt;}
._1a{width:22.090667pt;}
._20{width:23.093333pt;}
._23{width:24.437333pt;}
._1c{width:26.666667pt;}
._1d{width:27.658667pt;}
._26{width:29.056000pt;}
._24{width:30.400000pt;}
._19{width:31.317333pt;}
._18{width:32.608000pt;}
._21{width:35.072000pt;}
._22{width:35.989333pt;}
._1f{width:38.336000pt;}
._e{width:44.608000pt;}
._f{width:45.952000pt;}
._29{width:50.394240pt;}
._28{width:51.392000pt;}
._2b{width:98.624000pt;}
._2a{width:99.861333pt;}
._1b{width:274.613333pt;}
._1e{width:2065.984000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.800000pt;}
.y3{bottom:6.400000pt;}
.y72{bottom:12.800000pt;}
.y70{bottom:13.120000pt;}
.y76{bottom:13.600000pt;}
.y6e{bottom:13.760000pt;}
.y7b{bottom:23.360000pt;}
.y80{bottom:23.520000pt;}
.y7d{bottom:23.546667pt;}
.y3b{bottom:104.672000pt;}
.y56{bottom:109.472000pt;}
.y8a{bottom:111.712000pt;}
.yb3{bottom:122.272000pt;}
.y6c{bottom:128.352000pt;}
.ya1{bottom:129.792000pt;}
.y3a{bottom:132.352000pt;}
.y55{bottom:137.146667pt;}
.y89{bottom:139.226667pt;}
.yd0{bottom:152.026667pt;}
.y20{bottom:152.666667pt;}
.ya0{bottom:157.306667pt;}
.yb2{bottom:160.506667pt;}
.y54{bottom:164.666667pt;}
.y6b{bottom:166.586667pt;}
.y39{bottom:170.586667pt;}
.y1f{bottom:174.426667pt;}
.y88{bottom:177.466667pt;}
.ycf{bottom:179.546667pt;}
.y53{bottom:192.346667pt;}
.y9f{bottom:195.546667pt;}
.yb1{bottom:198.746667pt;}
.y6a{bottom:204.826667pt;}
.y87{bottom:205.146667pt;}
.yce{bottom:207.066667pt;}
.y38{bottom:208.826667pt;}
.y52{bottom:219.866667pt;}
.yb0{bottom:226.266667pt;}
.y1e{bottom:227.706667pt;}
.y9e{bottom:233.786667pt;}
.ycd{bottom:234.746667pt;}
.y37{bottom:236.346667pt;}
.y69{bottom:243.066667pt;}
.y86{bottom:243.386667pt;}
.yaf{bottom:253.946667pt;}
.y51{bottom:258.106667pt;}
.ycc{bottom:262.266667pt;}
.y36{bottom:264.026667pt;}
.y1d{bottom:265.786667pt;}
.y85{bottom:270.906667pt;}
.y9d{bottom:272.186667pt;}
.y68{bottom:281.306667pt;}
.yae{bottom:281.466667pt;}
.ycb{bottom:289.946667pt;}
.y35{bottom:291.546667pt;}
.y1c{bottom:294.586667pt;}
.y50{bottom:296.346667pt;}
.y9c{bottom:299.746667pt;}
.yad{bottom:309.186667pt;}
.y84{bottom:309.346667pt;}
.yca{bottom:317.506667pt;}
.y34{bottom:319.266667pt;}
.y67{bottom:319.586667pt;}
.y1b{bottom:323.426667pt;}
.y4f{bottom:324.066667pt;}
.y9b{bottom:327.426667pt;}
.yac{bottom:336.706667pt;}
.yc9{bottom:345.186667pt;}
.y33{bottom:346.786667pt;}
.y83{bottom:347.586667pt;}
.y4e{bottom:351.586667pt;}
.y1a{bottom:352.066667pt;}
.y9a{bottom:354.946667pt;}
.y66{bottom:357.826667pt;}
.yc8{bottom:372.706667pt;}
.y19{bottom:380.866667pt;}
.y99{bottom:382.626667pt;}
.y32{bottom:385.026667pt;}
.y65{bottom:385.506667pt;}
.y82{bottom:385.826667pt;}
.y4d{bottom:389.826667pt;}
.yc7{bottom:400.386667pt;}
.y81{bottom:405.026667pt;}
.y98{bottom:410.146667pt;}
.y31{bottom:412.706667pt;}
.y64{bottom:413.026667pt;}
.y4c{bottom:417.506667pt;}
.y18{bottom:420.386667pt;}
.yab{bottom:425.666667pt;}
.yc6{bottom:427.906667pt;}
.y30{bottom:440.226667pt;}
.y63{bottom:440.706667pt;}
.y97{bottom:448.386667pt;}
.y7f{bottom:448.546667pt;}
.yc5{bottom:455.586667pt;}
.y4b{bottom:455.746667pt;}
.y17{bottom:458.626667pt;}
.yaa{bottom:463.906667pt;}
.y2f{bottom:467.906667pt;}
.y62{bottom:468.226667pt;}
.y4a{bottom:477.506667pt;}
.yc4{bottom:483.106667pt;}
.y16{bottom:486.306667pt;}
.y96{bottom:486.626667pt;}
.y7e{bottom:492.226667pt;}
.y2e{bottom:495.426667pt;}
.ya9{bottom:502.146667pt;}
.y61{bottom:506.626667pt;}
.yc3{bottom:510.786667pt;}
.y49{bottom:510.946667pt;}
.y15{bottom:513.826667pt;}
.y95{bottom:514.306667pt;}
.y2d{bottom:523.106667pt;}
.y7c{bottom:535.746667pt;}
.yc2{bottom:538.333333pt;}
.ya8{bottom:540.413333pt;}
.y14{bottom:541.533333pt;}
.y94{bottom:541.853333pt;}
.y2c{bottom:544.893333pt;}
.y48{bottom:549.213333pt;}
.yc1{bottom:566.013333pt;}
.y13{bottom:569.053333pt;}
.y93{bottom:569.533333pt;}
.y60{bottom:572.413333pt;}
.y47{bottom:576.893333pt;}
.ya7{bottom:578.653333pt;}
.y7a{bottom:579.453333pt;}
.yc0{bottom:593.533333pt;}
.y12{bottom:596.733333pt;}
.y2b{bottom:598.173333pt;}
.y46{bottom:604.413333pt;}
.y92{bottom:607.773333pt;}
.y5f{bottom:610.653333pt;}
.ya6{bottom:616.893333pt;}
.ybf{bottom:621.213333pt;}
.y11{bottom:624.253333pt;}
.y2a{bottom:625.853333pt;}
.y45{bottom:632.093333pt;}
.y5e{bottom:638.333333pt;}
.y79{bottom:645.373333pt;}
.ybe{bottom:648.733333pt;}
.y10{bottom:651.933333pt;}
.y29{bottom:653.373333pt;}
.y91{bottom:654.333333pt;}
.ya5{bottom:655.293333pt;}
.y44{bottom:659.613333pt;}
.y5d{bottom:665.853333pt;}
.ybd{bottom:676.413333pt;}
.yf{bottom:679.453333pt;}
.y28{bottom:680.893333pt;}
.y90{bottom:682.813333pt;}
.y78{bottom:683.613333pt;}
.y43{bottom:687.293333pt;}
.ya4{bottom:693.533333pt;}
.ybc{bottom:703.933333pt;}
.y5c{bottom:704.093333pt;}
.ye{bottom:707.133333pt;}
.y27{bottom:708.573333pt;}
.y8f{bottom:721.053333pt;}
.y77{bottom:722.013333pt;}
.y42{bottom:725.533333pt;}
.ybb{bottom:731.613333pt;}
.ya3{bottom:731.773333pt;}
.yd{bottom:734.653333pt;}
.y26{bottom:736.093333pt;}
.y75{bottom:741.213333pt;}
.y5b{bottom:742.493333pt;}
.yba{bottom:759.133333pt;}
.y8e{bottom:759.293333pt;}
.y41{bottom:763.773333pt;}
.y5a{bottom:770.013333pt;}
.yc{bottom:772.893333pt;}
.y25{bottom:774.533333pt;}
.y74{bottom:776.133333pt;}
.yb9{bottom:786.853333pt;}
.y8d{bottom:787.013333pt;}
.y40{bottom:791.333333pt;}
.ya2{bottom:797.733333pt;}
.y24{bottom:802.053333pt;}
.y59{bottom:808.293333pt;}
.y73{bottom:809.893333pt;}
.yb{bottom:811.333333pt;}
.yb8{bottom:814.373333pt;}
.y3f{bottom:819.013333pt;}
.y8c{bottom:825.253333pt;}
.ya{bottom:829.733333pt;}
.y58{bottom:835.973333pt;}
.yb7{bottom:842.053333pt;}
.y71{bottom:843.653333pt;}
.y3e{bottom:846.533333pt;}
.y9{bottom:857.253333pt;}
.y57{bottom:863.493333pt;}
.yb6{bottom:869.573333pt;}
.y3d{bottom:874.213333pt;}
.y6f{bottom:876.613333pt;}
.y23{bottom:884.933333pt;}
.y8{bottom:891.013333pt;}
.yb5{bottom:897.253333pt;}
.y3c{bottom:901.733333pt;}
.y6d{bottom:910.373333pt;}
.y22{bottom:912.453333pt;}
.yb4{bottom:926.853333pt;}
.y8b{bottom:929.413333pt;}
.y7{bottom:932.453333pt;}
.y21{bottom:940.133333pt;}
.y6{bottom:967.653333pt;}
.y1{bottom:982.533333pt;}
.y2{bottom:1000.773333pt;}
.y4{bottom:1001.413333pt;}
.h5{height:20.032000pt;}
.h3{height:21.632000pt;}
.hd{height:27.680000pt;}
.hc{height:28.480000pt;}
.he{height:29.440000pt;}
.hb{height:29.600000pt;}
.hf{height:38.240000pt;}
.h11{height:38.400000pt;}
.h10{height:38.432000pt;}
.h8{height:44.687500pt;}
.h6{height:45.156250pt;}
.h9{height:46.593750pt;}
.h15{height:46.781250pt;}
.h14{height:52.832812pt;}
.h2{height:63.656250pt;}
.h4{height:65.531250pt;}
.h7{height:67.734375pt;}
.h12{height:75.410937pt;}
.ha{height:90.312500pt;}
.h13{height:97.989063pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:4.320000pt;}
.w4{width:4.640000pt;}
.w7{width:5.600000pt;}
.w6{width:10.720000pt;}
.w8{width:10.752000pt;}
.w3{width:10.880000pt;}
.w9{width:85.920000pt;}
.wd{width:124.160000pt;}
.wc{width:137.786667pt;}
.wa{width:146.426667pt;}
.wb{width:150.106667pt;}
.wf{width:163.066667pt;}
.we{width:184.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:0.960000pt;}
.x1f{left:6.880000pt;}
.x16{left:10.880000pt;}
.x19{left:12.320000pt;}
.x1e{left:13.600000pt;}
.x14{left:19.840000pt;}
.x1d{left:22.560000pt;}
.x1c{left:50.720000pt;}
.x1a{left:55.200000pt;}
.x1b{left:57.120000pt;}
.x13{left:95.072000pt;}
.x11{left:96.031988pt;}
.xd{left:105.471988pt;}
.x12{left:120.031988pt;}
.x23{left:144.026655pt;}
.xe{left:149.786655pt;}
.x15{left:184.346667pt;}
.x21{left:222.586667pt;}
.xf{left:314.626655pt;}
.x10{left:322.306655pt;}
.x17{left:334.146667pt;}
.xc{left:396.866655pt;}
.x22{left:410.786667pt;}
.x18{left:487.613333pt;}
.x7{left:576.573333pt;}
.x8{left:584.613333pt;}
.x9{left:588.933333pt;}
.xa{left:589.893333pt;}
.xb{left:598.053333pt;}
.x5{left:650.533333pt;}
.x6{left:658.693333pt;}
.x2{left:663.653333pt;}
.x3{left:671.973333pt;}
.x4{left:675.493333pt;}
.x1{left:699.173322pt;}
}




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