
    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_d47edf4a791112a138dc6a25.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_a5c8596333b61c7618966c0b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_885682b7579b184988329177.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_0aa9f571179eed3d0f06817e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f9623e6834c21c6c1c01091b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_13b6f731c8001ffd29c00cb7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c9afa556d6de80b104ec3b09.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a941d87defcbf1e654061da2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.640000px;}
.v3{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.292200px;}
.ls13{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:4.464000px;}
.ls5{letter-spacing:4.500000px;}
.ls4{letter-spacing:5.220000px;}
.ls9{letter-spacing:5.760000px;}
.ls0{letter-spacing:5.880000px;}
.ls1{letter-spacing:10.980000px;}
.ls12{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.850720px;}
.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:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws5{word-spacing:-9.711360px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2127.144960px;}
._2{margin-left:-1339.028640px;}
._13{margin-left:-5.368080px;}
._6{margin-left:-4.083840px;}
._8{margin-left:-2.607120px;}
._0{margin-left:-1.263600px;}
._4{width:1.053360px;}
._7{width:2.255760px;}
._3{width:3.638880px;}
._5{width:5.415360px;}
._b{width:6.476400px;}
._c{width:7.523040px;}
._12{width:8.965200px;}
._14{width:10.152000px;}
._a{width:11.197440px;}
._9{width:12.370320px;}
._f{width:13.625280px;}
._e{width:16.673040px;}
._d{width:18.107280px;}
._11{width:23.323680px;}
._10{width:24.501600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y23{bottom:3.240000px;}
.ye{bottom:4.500000px;}
.y37{bottom:14.220000px;}
.y22{bottom:20.520000px;}
.y36{bottom:32.940000px;}
.y21{bottom:49.320000px;}
.y35{bottom:51.480000px;}
.y20{bottom:69.120000px;}
.y34{bottom:70.020000px;}
.y6{bottom:81.756000px;}
.y33{bottom:88.770000px;}
.y1f{bottom:88.950000px;}
.y32{bottom:107.310000px;}
.y1e{bottom:108.930000px;}
.y4d{bottom:111.816000px;}
.y94{bottom:112.536000px;}
.y93{bottom:117.756000px;}
.y31{bottom:126.030000px;}
.y1d{bottom:128.730000px;}
.y4c{bottom:129.096000px;}
.y92{bottom:130.176000px;}
.yc2{bottom:131.436000px;}
.yc1{bottom:137.376000px;}
.y30{bottom:144.570000px;}
.y4b{bottom:146.376000px;}
.y91{bottom:147.456000px;}
.y1c{bottom:148.530000px;}
.yc0{bottom:151.590000px;}
.y90{bottom:152.670000px;}
.y2f{bottom:163.290000px;}
.y4a{bottom:163.650000px;}
.y8f{bottom:164.550000px;}
.y1b{bottom:168.330000px;}
.y8e{bottom:169.770000px;}
.y49{bottom:180.750000px;}
.y2e{bottom:181.830000px;}
.y1a{bottom:188.130000px;}
.y48{bottom:198.030000px;}
.y8d{bottom:199.110000px;}
.y2d{bottom:200.370000px;}
.y8c{bottom:204.330000px;}
.y19{bottom:208.110000px;}
.y47{bottom:215.310000px;}
.y8b{bottom:216.390000px;}
.y2c{bottom:219.090000px;}
.ybf{bottom:223.950000px;}
.y18{bottom:227.910000px;}
.y46{bottom:232.590000px;}
.y8a{bottom:233.670000px;}
.y2b{bottom:237.630000px;}
.ybe{bottom:243.930000px;}
.y17{bottom:247.710000px;}
.y45{bottom:249.870000px;}
.y89{bottom:250.950000px;}
.y2a{bottom:256.350000px;}
.ybd{bottom:263.730000px;}
.y44{bottom:267.150000px;}
.y16{bottom:267.510000px;}
.y88{bottom:268.050000px;}
.y87{bottom:273.315000px;}
.y29{bottom:274.890000px;}
.ybc{bottom:283.575000px;}
.y43{bottom:284.295000px;}
.y86{bottom:285.375000px;}
.y15{bottom:287.310000px;}
.yc9{bottom:288.975000px;}
.y85{bottom:290.595000px;}
.y28{bottom:293.430000px;}
.y42{bottom:301.575000px;}
.y84{bottom:302.655000px;}
.ybb{bottom:303.375000px;}
.y14{bottom:307.290000px;}
.y83{bottom:307.875000px;}
.yc8{bottom:308.775000px;}
.y27{bottom:312.150000px;}
.y41{bottom:318.855000px;}
.y82{bottom:319.935000px;}
.yba{bottom:323.175000px;}
.y13{bottom:327.090000px;}
.yc7{bottom:328.575000px;}
.y26{bottom:330.690000px;}
.y40{bottom:336.855000px;}
.y81{bottom:337.215000px;}
.y3f{bottom:342.075000px;}
.y80{bottom:342.435000px;}
.yb9{bottom:343.155000px;}
.y12{bottom:346.890000px;}
.yc6{bottom:348.375000px;}
.y25{bottom:349.410000px;}
.y7f{bottom:354.495000px;}
.y3e{bottom:355.215000px;}
.yb8{bottom:362.955000px;}
.y11{bottom:366.735000px;}
.y24{bottom:367.995000px;}
.yc5{bottom:368.175000px;}
.y7e{bottom:371.595000px;}
.y3d{bottom:373.935000px;}
.y10{bottom:386.535000px;}
.yc4{bottom:388.155000px;}
.y7d{bottom:390.135000px;}
.yb7{bottom:391.755000px;}
.y3c{bottom:401.295000px;}
.yc3{bottom:407.955000px;}
.yb6{bottom:411.555000px;}
.y3a{bottom:421.275000px;}
.y3b{bottom:426.495000px;}
.y7c{bottom:427.755000px;}
.yb5{bottom:431.355000px;}
.y39{bottom:441.075000px;}
.y7b{bottom:447.555000px;}
.yb4{bottom:451.335000px;}
.y38{bottom:459.075000px;}
.y7a{bottom:467.355000px;}
.yf{bottom:477.975000px;}
.yb3{bottom:480.135000px;}
.y79{bottom:487.335000px;}
.yb2{bottom:499.935000px;}
.y78{bottom:507.135000px;}
.yb1{bottom:519.735000px;}
.y77{bottom:526.935000px;}
.yb0{bottom:539.535000px;}
.y76{bottom:546.735000px;}
.y75{bottom:566.565000px;}
.yaf{bottom:568.545000px;}
.y74{bottom:586.545000px;}
.yae{bottom:588.345000px;}
.y73{bottom:606.345000px;}
.yad{bottom:608.145000px;}
.y71{bottom:626.145000px;}
.yac{bottom:627.945000px;}
.y72{bottom:631.365000px;}
.y70{bottom:645.945000px;}
.yab{bottom:647.745000px;}
.y6f{bottom:665.745000px;}
.yaa{bottom:667.725000px;}
.y6e{bottom:685.725000px;}
.ya9{bottom:687.525000px;}
.y6d{bottom:705.525000px;}
.ya8{bottom:707.325000px;}
.y6c{bottom:725.325000px;}
.ya7{bottom:727.125000px;}
.y6a{bottom:745.125000px;}
.ya6{bottom:746.925000px;}
.y6b{bottom:750.345000px;}
.y69{bottom:764.925000px;}
.ya5{bottom:766.725000px;}
.y67{bottom:784.725000px;}
.ya4{bottom:786.705000px;}
.y68{bottom:789.945000px;}
.y66{bottom:804.705000px;}
.ya2{bottom:806.505000px;}
.ya3{bottom:811.725000px;}
.y64{bottom:824.505000px;}
.ya1{bottom:826.305000px;}
.y65{bottom:829.725000px;}
.y63{bottom:844.350000px;}
.ya0{bottom:846.150000px;}
.y61{bottom:864.150000px;}
.y9f{bottom:865.950000px;}
.y62{bottom:869.370000px;}
.yd{bottom:880.890000px;}
.y60{bottom:883.950000px;}
.y9e{bottom:885.930000px;}
.y5f{bottom:903.930000px;}
.y9d{bottom:905.730000px;}
.yc{bottom:907.530000px;}
.y5e{bottom:923.730000px;}
.y9c{bottom:925.530000px;}
.yb{bottom:927.330000px;}
.y5d{bottom:943.530000px;}
.y9b{bottom:945.330000px;}
.ya{bottom:947.850000px;}
.y5c{bottom:963.330000px;}
.y9a{bottom:965.130000px;}
.y9{bottom:969.090000px;}
.y5b{bottom:983.130000px;}
.y99{bottom:985.110000px;}
.y8{bottom:992.490000px;}
.y5a{bottom:1003.110000px;}
.y98{bottom:1013.910000px;}
.y59{bottom:1022.910000px;}
.y7{bottom:1024.170000px;}
.y97{bottom:1033.710000px;}
.y57{bottom:1042.710000px;}
.y58{bottom:1047.930000px;}
.y96{bottom:1053.510000px;}
.y56{bottom:1062.510000px;}
.y5{bottom:1064.130000px;}
.y95{bottom:1073.310000px;}
.y55{bottom:1082.310000px;}
.y4{bottom:1094.910000px;}
.y53{bottom:1102.290000px;}
.y54{bottom:1107.510000px;}
.y52{bottom:1122.120000px;}
.y3{bottom:1125.900000px;}
.y51{bottom:1141.920000px;}
.y2{bottom:1156.680000px;}
.y4f{bottom:1161.720000px;}
.y50{bottom:1166.940000px;}
.y1{bottom:1189.260000px;}
.y4e{bottom:1193.400000px;}
.h9{height:18.540000px;}
.hc{height:34.855313px;}
.hf{height:38.671172px;}
.h11{height:41.535703px;}
.h6{height:53.252930px;}
.h8{height:53.573906px;}
.h10{height:55.735313px;}
.h7{height:59.027344px;}
.h4{height:59.383125px;}
.he{height:59.439023px;}
.hb{height:64.546875px;}
.hd{height:65.884219px;}
.h2{height:75.067383px;}
.h3{height:75.519844px;}
.h5{height:85.333008px;}
.ha{height:400.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:193.530000px;}
.w3{width:587.985000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.179987px;}
.x8{left:58.859987px;}
.x1b{left:64.439987px;}
.x1c{left:80.999987px;}
.x7{left:108.035987px;}
.x15{left:111.995973px;}
.x16{left:116.855987px;}
.x17{left:133.955973px;}
.xf{left:136.475973px;}
.x18{left:138.815987px;}
.x10{left:141.335987px;}
.x6{left:270.029987px;}
.xb{left:298.334973px;}
.xc{left:303.194987px;}
.x19{left:307.514973px;}
.x1a{left:317.234987px;}
.xd{left:352.874973px;}
.xe{left:357.734987px;}
.x4{left:374.474973px;}
.x5{left:379.334987px;}
.x13{left:396.974973px;}
.x14{left:401.834987px;}
.x11{left:455.114973px;}
.x12{left:459.974987px;}
.x9{left:477.434973px;}
.xa{left:482.294987px;}
.x3{left:641.985000px;}
@media print{
.v1{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.680000pt;}
.v3{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.259733pt;}
.ls13{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:3.968000pt;}
.ls5{letter-spacing:4.000000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls9{letter-spacing:5.120000pt;}
.ls0{letter-spacing:5.226667pt;}
.ls1{letter-spacing:9.760000pt;}
.ls12{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.200640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws5{word-spacing:-8.632320pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1890.795520pt;}
._2{margin-left:-1190.247680pt;}
._13{margin-left:-4.771627pt;}
._6{margin-left:-3.630080pt;}
._8{margin-left:-2.317440pt;}
._0{margin-left:-1.123200pt;}
._4{width:0.936320pt;}
._7{width:2.005120pt;}
._3{width:3.234560pt;}
._5{width:4.813653pt;}
._b{width:5.756800pt;}
._c{width:6.687147pt;}
._12{width:7.969067pt;}
._14{width:9.024000pt;}
._a{width:9.953280pt;}
._9{width:10.995840pt;}
._f{width:12.111360pt;}
._e{width:14.820480pt;}
._d{width:16.095360pt;}
._11{width:20.732160pt;}
._10{width:21.779200pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:2.880000pt;}
.ye{bottom:4.000000pt;}
.y37{bottom:12.640000pt;}
.y22{bottom:18.240000pt;}
.y36{bottom:29.280000pt;}
.y21{bottom:43.840000pt;}
.y35{bottom:45.760000pt;}
.y20{bottom:61.440000pt;}
.y34{bottom:62.240000pt;}
.y6{bottom:72.672000pt;}
.y33{bottom:78.906667pt;}
.y1f{bottom:79.066667pt;}
.y32{bottom:95.386667pt;}
.y1e{bottom:96.826667pt;}
.y4d{bottom:99.392000pt;}
.y94{bottom:100.032000pt;}
.y93{bottom:104.672000pt;}
.y31{bottom:112.026667pt;}
.y1d{bottom:114.426667pt;}
.y4c{bottom:114.752000pt;}
.y92{bottom:115.712000pt;}
.yc2{bottom:116.832000pt;}
.yc1{bottom:122.112000pt;}
.y30{bottom:128.506667pt;}
.y4b{bottom:130.112000pt;}
.y91{bottom:131.072000pt;}
.y1c{bottom:132.026667pt;}
.yc0{bottom:134.746667pt;}
.y90{bottom:135.706667pt;}
.y2f{bottom:145.146667pt;}
.y4a{bottom:145.466667pt;}
.y8f{bottom:146.266667pt;}
.y1b{bottom:149.626667pt;}
.y8e{bottom:150.906667pt;}
.y49{bottom:160.666667pt;}
.y2e{bottom:161.626667pt;}
.y1a{bottom:167.226667pt;}
.y48{bottom:176.026667pt;}
.y8d{bottom:176.986667pt;}
.y2d{bottom:178.106667pt;}
.y8c{bottom:181.626667pt;}
.y19{bottom:184.986667pt;}
.y47{bottom:191.386667pt;}
.y8b{bottom:192.346667pt;}
.y2c{bottom:194.746667pt;}
.ybf{bottom:199.066667pt;}
.y18{bottom:202.586667pt;}
.y46{bottom:206.746667pt;}
.y8a{bottom:207.706667pt;}
.y2b{bottom:211.226667pt;}
.ybe{bottom:216.826667pt;}
.y17{bottom:220.186667pt;}
.y45{bottom:222.106667pt;}
.y89{bottom:223.066667pt;}
.y2a{bottom:227.866667pt;}
.ybd{bottom:234.426667pt;}
.y44{bottom:237.466667pt;}
.y16{bottom:237.786667pt;}
.y88{bottom:238.266667pt;}
.y87{bottom:242.946667pt;}
.y29{bottom:244.346667pt;}
.ybc{bottom:252.066667pt;}
.y43{bottom:252.706667pt;}
.y86{bottom:253.666667pt;}
.y15{bottom:255.386667pt;}
.yc9{bottom:256.866667pt;}
.y85{bottom:258.306667pt;}
.y28{bottom:260.826667pt;}
.y42{bottom:268.066667pt;}
.y84{bottom:269.026667pt;}
.ybb{bottom:269.666667pt;}
.y14{bottom:273.146667pt;}
.y83{bottom:273.666667pt;}
.yc8{bottom:274.466667pt;}
.y27{bottom:277.466667pt;}
.y41{bottom:283.426667pt;}
.y82{bottom:284.386667pt;}
.yba{bottom:287.266667pt;}
.y13{bottom:290.746667pt;}
.yc7{bottom:292.066667pt;}
.y26{bottom:293.946667pt;}
.y40{bottom:299.426667pt;}
.y81{bottom:299.746667pt;}
.y3f{bottom:304.066667pt;}
.y80{bottom:304.386667pt;}
.yb9{bottom:305.026667pt;}
.y12{bottom:308.346667pt;}
.yc6{bottom:309.666667pt;}
.y25{bottom:310.586667pt;}
.y7f{bottom:315.106667pt;}
.y3e{bottom:315.746667pt;}
.yb8{bottom:322.626667pt;}
.y11{bottom:325.986667pt;}
.y24{bottom:327.106667pt;}
.yc5{bottom:327.266667pt;}
.y7e{bottom:330.306667pt;}
.y3d{bottom:332.386667pt;}
.y10{bottom:343.586667pt;}
.yc4{bottom:345.026667pt;}
.y7d{bottom:346.786667pt;}
.yb7{bottom:348.226667pt;}
.y3c{bottom:356.706667pt;}
.yc3{bottom:362.626667pt;}
.yb6{bottom:365.826667pt;}
.y3a{bottom:374.466667pt;}
.y3b{bottom:379.106667pt;}
.y7c{bottom:380.226667pt;}
.yb5{bottom:383.426667pt;}
.y39{bottom:392.066667pt;}
.y7b{bottom:397.826667pt;}
.yb4{bottom:401.186667pt;}
.y38{bottom:408.066667pt;}
.y7a{bottom:415.426667pt;}
.yf{bottom:424.866667pt;}
.yb3{bottom:426.786667pt;}
.y79{bottom:433.186667pt;}
.yb2{bottom:444.386667pt;}
.y78{bottom:450.786667pt;}
.yb1{bottom:461.986667pt;}
.y77{bottom:468.386667pt;}
.yb0{bottom:479.586667pt;}
.y76{bottom:485.986667pt;}
.y75{bottom:503.613333pt;}
.yaf{bottom:505.373333pt;}
.y74{bottom:521.373333pt;}
.yae{bottom:522.973333pt;}
.y73{bottom:538.973333pt;}
.yad{bottom:540.573333pt;}
.y71{bottom:556.573333pt;}
.yac{bottom:558.173333pt;}
.y72{bottom:561.213333pt;}
.y70{bottom:574.173333pt;}
.yab{bottom:575.773333pt;}
.y6f{bottom:591.773333pt;}
.yaa{bottom:593.533333pt;}
.y6e{bottom:609.533333pt;}
.ya9{bottom:611.133333pt;}
.y6d{bottom:627.133333pt;}
.ya8{bottom:628.733333pt;}
.y6c{bottom:644.733333pt;}
.ya7{bottom:646.333333pt;}
.y6a{bottom:662.333333pt;}
.ya6{bottom:663.933333pt;}
.y6b{bottom:666.973333pt;}
.y69{bottom:679.933333pt;}
.ya5{bottom:681.533333pt;}
.y67{bottom:697.533333pt;}
.ya4{bottom:699.293333pt;}
.y68{bottom:702.173333pt;}
.y66{bottom:715.293333pt;}
.ya2{bottom:716.893333pt;}
.ya3{bottom:721.533333pt;}
.y64{bottom:732.893333pt;}
.ya1{bottom:734.493333pt;}
.y65{bottom:737.533333pt;}
.y63{bottom:750.533333pt;}
.ya0{bottom:752.133333pt;}
.y61{bottom:768.133333pt;}
.y9f{bottom:769.733333pt;}
.y62{bottom:772.773333pt;}
.yd{bottom:783.013333pt;}
.y60{bottom:785.733333pt;}
.y9e{bottom:787.493333pt;}
.y5f{bottom:803.493333pt;}
.y9d{bottom:805.093333pt;}
.yc{bottom:806.693333pt;}
.y5e{bottom:821.093333pt;}
.y9c{bottom:822.693333pt;}
.yb{bottom:824.293333pt;}
.y5d{bottom:838.693333pt;}
.y9b{bottom:840.293333pt;}
.ya{bottom:842.533333pt;}
.y5c{bottom:856.293333pt;}
.y9a{bottom:857.893333pt;}
.y9{bottom:861.413333pt;}
.y5b{bottom:873.893333pt;}
.y99{bottom:875.653333pt;}
.y8{bottom:882.213333pt;}
.y5a{bottom:891.653333pt;}
.y98{bottom:901.253333pt;}
.y59{bottom:909.253333pt;}
.y7{bottom:910.373333pt;}
.y97{bottom:918.853333pt;}
.y57{bottom:926.853333pt;}
.y58{bottom:931.493333pt;}
.y96{bottom:936.453333pt;}
.y56{bottom:944.453333pt;}
.y5{bottom:945.893333pt;}
.y95{bottom:954.053333pt;}
.y55{bottom:962.053333pt;}
.y4{bottom:973.253333pt;}
.y53{bottom:979.813333pt;}
.y54{bottom:984.453333pt;}
.y52{bottom:997.440000pt;}
.y3{bottom:1000.800000pt;}
.y51{bottom:1015.040000pt;}
.y2{bottom:1028.160000pt;}
.y4f{bottom:1032.640000pt;}
.y50{bottom:1037.280000pt;}
.y1{bottom:1057.120000pt;}
.y4e{bottom:1060.800000pt;}
.h9{height:16.480000pt;}
.hc{height:30.982500pt;}
.hf{height:34.374375pt;}
.h11{height:36.920625pt;}
.h6{height:47.335938pt;}
.h8{height:47.621250pt;}
.h10{height:49.542500pt;}
.h7{height:52.468750pt;}
.h4{height:52.785000pt;}
.he{height:52.834688pt;}
.hb{height:57.375000pt;}
.hd{height:58.563750pt;}
.h2{height:66.726562pt;}
.h3{height:67.128750pt;}
.h5{height:75.851562pt;}
.ha{height:356.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:172.026667pt;}
.w3{width:522.653333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.159988pt;}
.x8{left:52.319988pt;}
.x1b{left:57.279988pt;}
.x1c{left:71.999988pt;}
.x7{left:96.031988pt;}
.x15{left:99.551976pt;}
.x16{left:103.871988pt;}
.x17{left:119.071976pt;}
.xf{left:121.311976pt;}
.x18{left:123.391988pt;}
.x10{left:125.631988pt;}
.x6{left:240.026655pt;}
.xb{left:265.186643pt;}
.xc{left:269.506655pt;}
.x19{left:273.346643pt;}
.x1a{left:281.986655pt;}
.xd{left:313.666643pt;}
.xe{left:317.986655pt;}
.x4{left:332.866643pt;}
.x5{left:337.186655pt;}
.x13{left:352.866643pt;}
.x14{left:357.186655pt;}
.x11{left:404.546643pt;}
.x12{left:408.866655pt;}
.x9{left:424.386643pt;}
.xa{left:428.706655pt;}
.x3{left:570.653333pt;}
}




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