
    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_8cd531d7a38f8fb1645cfdf9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ff62b194a8c8cec8de9b7121.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_bf28da24ac6f595bdf782172.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_66fc6eaef1a2e2127b26301c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_f24856e6ee02f9fd35612c5e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_844ab47332a719d96a0beb3f.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-69.120000px;}
.v2{vertical-align:-67.800000px;}
.v3{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-7.680000px;}
.ls37{letter-spacing:-1.998000px;}
.ls39{letter-spacing:-1.914000px;}
.ls2a{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-1.422000px;}
.ls3d{letter-spacing:-1.254000px;}
.lsf{letter-spacing:-1.026000px;}
.ls3c{letter-spacing:-0.810000px;}
.ls10{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.593400px;}
.ls38{letter-spacing:-0.492600px;}
.ls3b{letter-spacing:-0.475200px;}
.lse{letter-spacing:-0.466800px;}
.ls36{letter-spacing:-0.276600px;}
.lsd{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.020160px;}
.ls29{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.120960px;}
.ls2b{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.200160px;}
.lsc{letter-spacing:0.316800px;}
.ls2f{letter-spacing:0.512640px;}
.ls2e{letter-spacing:0.583200px;}
.ls32{letter-spacing:0.590400px;}
.ls3a{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.840000px;}
.ls28{letter-spacing:0.900000px;}
.ls25{letter-spacing:1.460160px;}
.ls8{letter-spacing:2.160000px;}
.ls9{letter-spacing:3.600000px;}
.ls1e{letter-spacing:5.040000px;}
.ls30{letter-spacing:5.160000px;}
.ls18{letter-spacing:6.480000px;}
.ls1b{letter-spacing:7.920000px;}
.ls12{letter-spacing:9.360000px;}
.ls1d{letter-spacing:9.540000px;}
.lsa{letter-spacing:10.800000px;}
.ls19{letter-spacing:12.240000px;}
.ls2d{letter-spacing:12.360000px;}
.ls17{letter-spacing:13.680000px;}
.ls1f{letter-spacing:16.560000px;}
.ls27{letter-spacing:18.000000px;}
.ls20{letter-spacing:19.440000px;}
.ls14{letter-spacing:20.880000px;}
.ls15{letter-spacing:22.320000px;}
.ls13{letter-spacing:28.080000px;}
.ls2{letter-spacing:30.972000px;}
.ls33{letter-spacing:32.400000px;}
.ls31{letter-spacing:33.840000px;}
.ls21{letter-spacing:33.960000px;}
.ls1a{letter-spacing:35.280000px;}
.ls22{letter-spacing:39.600000px;}
.ls23{letter-spacing:44.100000px;}
.ls24{letter-spacing:73.224000px;}
.ls5{letter-spacing:74.172000px;}
.ls7{letter-spacing:79.932000px;}
.ls6{letter-spacing:82.812000px;}
.ls3{letter-spacing:91.452000px;}
.lsb{letter-spacing:154.800000px;}
.ls4{letter-spacing:157.692000px;}
.ls34{letter-spacing:1110.072000px;}
.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;}
}
.ws6{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.843400px;}
.ws1{word-spacing:-14.653200px;}
.ws8{word-spacing:-14.526600px;}
.wsd{word-spacing:-14.310000px;}
.ws2{word-spacing:-14.094000px;}
.ws7{word-spacing:-13.698000px;}
.ws3{word-spacing:-13.680000px;}
.wse{word-spacing:-13.204800px;}
.wsb{word-spacing:-13.187400px;}
.wsf{word-spacing:-12.870000px;}
.ws10{word-spacing:-12.426000px;}
.wsa{word-spacing:-12.240000px;}
.wsc{word-spacing:-11.766000px;}
.ws4{word-spacing:-7.440000px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-9.132480px;}
._2{margin-left:-7.665840px;}
._7{margin-left:-6.091920px;}
._16{margin-left:-5.046000px;}
._a{margin-left:-3.962400px;}
._3{margin-left:-2.643840px;}
._0{margin-left:-1.440000px;}
._1{width:1.393920px;}
._9{width:2.891280px;}
._b{width:3.936240px;}
._f{width:5.095440px;}
._e{width:6.894720px;}
._11{width:8.176320px;}
._8{width:9.389760px;}
._c{width:10.621440px;}
._d{width:11.833440px;}
._14{width:12.864000px;}
._12{width:13.887360px;}
._13{width:16.180800px;}
._15{width:17.640000px;}
._22{width:18.731520px;}
._24{width:20.024640px;}
._19{width:21.371520px;}
._1a{width:22.441920px;}
._10{width:23.690400px;}
._5{width:25.206240px;}
._4{width:26.697120px;}
._17{width:27.852000px;}
._2c{width:28.956000px;}
._18{width:30.068160px;}
._1c{width:31.596480px;}
._1b{width:33.200880px;}
._1e{width:34.214400px;}
._1f{width:35.879040px;}
._20{width:37.535040px;}
._21{width:38.635200px;}
._23{width:40.613760px;}
._27{width:42.088320px;}
._28{width:43.315200px;}
._26{width:45.069120px;}
._25{width:46.586880px;}
._1d{width:48.502080px;}
._2a{width:66.683520px;}
._29{width:67.720320px;}
._2b{width:83.934720px;}
.fc4{color:rgb(16,0,12);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:3.240000px;}
.yb0{bottom:3.600000px;}
.yb4{bottom:20.880000px;}
.yaf{bottom:20.925000px;}
.y2{bottom:24.480000px;}
.yb3{bottom:38.160000px;}
.yae{bottom:38.205000px;}
.yb2{bottom:55.080000px;}
.yad{bottom:55.485000px;}
.y1{bottom:65.520000px;}
.yac{bottom:72.765000px;}
.y38{bottom:100.440000px;}
.yec{bottom:100.800000px;}
.ya6{bottom:102.600000px;}
.y6f{bottom:113.436000px;}
.yd2{bottom:113.796000px;}
.y37{bottom:115.956000px;}
.y89{bottom:116.676000px;}
.ya5{bottom:119.916000px;}
.y6e{bottom:130.716000px;}
.yd1{bottom:131.076000px;}
.y36{bottom:131.796000px;}
.y88{bottom:133.956000px;}
.ya4{bottom:137.196000px;}
.y6d{bottom:147.996000px;}
.yd0{bottom:148.356000px;}
.y87{bottom:151.230000px;}
.ya3{bottom:154.110000px;}
.y6c{bottom:165.270000px;}
.ycf{bottom:165.630000px;}
.y35{bottom:166.350000px;}
.y86{bottom:168.150000px;}
.ye4{bottom:168.510000px;}
.ya2{bottom:171.390000px;}
.y6b{bottom:182.190000px;}
.yce{bottom:182.910000px;}
.y34{bottom:183.630000px;}
.y85{bottom:185.430000px;}
.ye3{bottom:185.790000px;}
.ya1{bottom:188.670000px;}
.y6a{bottom:199.470000px;}
.ycd{bottom:200.190000px;}
.y33{bottom:200.910000px;}
.y84{bottom:202.710000px;}
.ye2{bottom:203.070000px;}
.ya0{bottom:205.950000px;}
.yeb{bottom:216.390000px;}
.y69{bottom:216.750000px;}
.ycc{bottom:217.155000px;}
.y32{bottom:218.235000px;}
.y83{bottom:220.035000px;}
.ye1{bottom:220.395000px;}
.y9f{bottom:223.275000px;}
.y68{bottom:234.075000px;}
.ycb{bottom:234.435000px;}
.y31{bottom:235.515000px;}
.y82{bottom:237.315000px;}
.ye0{bottom:237.675000px;}
.y9e{bottom:240.555000px;}
.y67{bottom:251.355000px;}
.yca{bottom:251.715000px;}
.y30{bottom:252.795000px;}
.y81{bottom:254.595000px;}
.ydf{bottom:254.955000px;}
.y9d{bottom:257.835000px;}
.yea{bottom:268.275000px;}
.y66{bottom:268.635000px;}
.yc9{bottom:268.995000px;}
.y2f{bottom:270.075000px;}
.y80{bottom:271.875000px;}
.yde{bottom:272.235000px;}
.y9c{bottom:275.115000px;}
.y73{bottom:285.555000px;}
.y65{bottom:285.915000px;}
.yc8{bottom:286.275000px;}
.y2e{bottom:286.995000px;}
.y7f{bottom:289.155000px;}
.ydd{bottom:289.515000px;}
.y9b{bottom:292.395000px;}
.y64{bottom:303.195000px;}
.yc7{bottom:303.555000px;}
.y2d{bottom:304.275000px;}
.y7e{bottom:306.435000px;}
.y9a{bottom:309.675000px;}
.y63{bottom:320.475000px;}
.yc6{bottom:320.835000px;}
.y2c{bottom:321.555000px;}
.y7d{bottom:323.745000px;}
.y99{bottom:326.985000px;}
.y62{bottom:337.785000px;}
.yc5{bottom:338.145000px;}
.y2b{bottom:338.505000px;}
.y7c{bottom:341.025000px;}
.y98{bottom:344.265000px;}
.y61{bottom:355.065000px;}
.yc4{bottom:355.425000px;}
.y2a{bottom:356.145000px;}
.y7b{bottom:357.945000px;}
.ydc{bottom:358.305000px;}
.y97{bottom:361.185000px;}
.y60{bottom:371.985000px;}
.yc3{bottom:372.705000px;}
.y29{bottom:373.425000px;}
.y7a{bottom:375.225000px;}
.ydb{bottom:375.585000px;}
.y96{bottom:378.465000px;}
.ye9{bottom:388.905000px;}
.y5f{bottom:389.265000px;}
.yc2{bottom:389.985000px;}
.y28{bottom:390.705000px;}
.y79{bottom:392.505000px;}
.yda{bottom:392.865000px;}
.y95{bottom:395.745000px;}
.y5e{bottom:406.545000px;}
.yc1{bottom:407.265000px;}
.y27{bottom:407.985000px;}
.y78{bottom:409.785000px;}
.yd9{bottom:410.145000px;}
.y94{bottom:413.025000px;}
.ye8{bottom:423.465000px;}
.y5d{bottom:423.825000px;}
.yc0{bottom:424.185000px;}
.y26{bottom:425.265000px;}
.y77{bottom:427.110000px;}
.yd8{bottom:427.470000px;}
.y93{bottom:430.350000px;}
.y5c{bottom:441.150000px;}
.ybf{bottom:441.510000px;}
.y25{bottom:442.590000px;}
.y76{bottom:444.390000px;}
.yd7{bottom:444.750000px;}
.y92{bottom:447.630000px;}
.ye7{bottom:458.070000px;}
.y5b{bottom:458.430000px;}
.ybe{bottom:458.790000px;}
.y24{bottom:459.870000px;}
.y75{bottom:461.670000px;}
.yd6{bottom:462.030000px;}
.y91{bottom:464.910000px;}
.y74{bottom:475.350000px;}
.y5a{bottom:475.710000px;}
.ybd{bottom:476.070000px;}
.y23{bottom:477.150000px;}
.yd5{bottom:479.310000px;}
.y90{bottom:482.190000px;}
.y59{bottom:492.990000px;}
.ybc{bottom:493.350000px;}
.y22{bottom:494.070000px;}
.yd4{bottom:495.870000px;}
.y8f{bottom:499.470000px;}
.y58{bottom:510.270000px;}
.ybb{bottom:510.630000px;}
.y21{bottom:511.350000px;}
.yd3{bottom:512.790000px;}
.y8e{bottom:516.030000px;}
.y57{bottom:527.550000px;}
.yba{bottom:527.910000px;}
.y20{bottom:528.630000px;}
.y8d{bottom:530.430000px;}
.y56{bottom:544.860000px;}
.yb9{bottom:545.220000px;}
.y1f{bottom:545.940000px;}
.y8c{bottom:547.740000px;}
.y8b{bottom:561.420000px;}
.ye6{bottom:561.780000px;}
.y55{bottom:562.140000px;}
.yb8{bottom:562.500000px;}
.y1e{bottom:563.220000px;}
.y54{bottom:579.060000px;}
.yb7{bottom:579.780000px;}
.y1d{bottom:580.500000px;}
.y53{bottom:596.340000px;}
.yb6{bottom:597.060000px;}
.y1c{bottom:597.780000px;}
.y52{bottom:613.620000px;}
.yb5{bottom:614.340000px;}
.y1b{bottom:615.060000px;}
.y51{bottom:630.900000px;}
.y1a{bottom:632.340000px;}
.y50{bottom:648.210000px;}
.y19{bottom:649.650000px;}
.yb1{bottom:659.730000px;}
.y72{bottom:665.130000px;}
.y4f{bottom:665.490000px;}
.y18{bottom:666.930000px;}
.y4e{bottom:682.770000px;}
.y17{bottom:683.850000px;}
.y4d{bottom:700.050000px;}
.y16{bottom:701.130000px;}
.y4c{bottom:717.330000px;}
.y15{bottom:718.410000px;}
.yab{bottom:729.210000px;}
.y4b{bottom:734.610000px;}
.y14{bottom:735.330000px;}
.y13{bottom:750.855000px;}
.y4a{bottom:751.935000px;}
.y12{bottom:766.695000px;}
.y49{bottom:768.855000px;}
.y11{bottom:782.175000px;}
.y48{bottom:786.135000px;}
.y8a{bottom:789.015000px;}
.y10{bottom:797.655000px;}
.y47{bottom:803.055000px;}
.y71{bottom:803.415000px;}
.yf{bottom:813.135000px;}
.ya9{bottom:816.375000px;}
.y46{bottom:820.335000px;}
.y70{bottom:820.695000px;}
.ye{bottom:828.255000px;}
.ya8{bottom:837.615000px;}
.y45{bottom:837.975000px;}
.yd{bottom:844.455000px;}
.ya7{bottom:854.925000px;}
.y44{bottom:855.285000px;}
.yc{bottom:861.765000px;}
.y43{bottom:872.565000px;}
.yb{bottom:878.685000px;}
.y42{bottom:889.845000px;}
.ya{bottom:895.965000px;}
.y41{bottom:907.125000px;}
.y9{bottom:913.245000px;}
.y40{bottom:924.405000px;}
.y8{bottom:930.525000px;}
.y3f{bottom:941.685000px;}
.y7{bottom:948.165000px;}
.y3e{bottom:959.010000px;}
.y3d{bottom:975.930000px;}
.y6{bottom:982.410000px;}
.ye5{bottom:992.850000px;}
.y3c{bottom:993.210000px;}
.y5{bottom:999.690000px;}
.y3b{bottom:1010.490000px;}
.y4{bottom:1016.250000px;}
.y3a{bottom:1027.770000px;}
.y3{bottom:1035.330000px;}
.y39{bottom:1045.050000px;}
.hc{height:17.280000px;}
.hb{height:46.638281px;}
.h5{height:47.891250px;}
.h6{height:52.299844px;}
.h8{height:53.704687px;}
.h9{height:54.219375px;}
.h7{height:55.147500px;}
.ha{height:59.328281px;}
.h2{height:59.357813px;}
.h4{height:60.952500px;}
.he{height:68.760000px;}
.h3{height:70.664062px;}
.hd{height:86.436000px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w3{width:116.352000px;}
.w4{width:462.855000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x17{left:7.920000px;}
.x4{left:51.155989px;}
.x5{left:63.755989px;}
.xd{left:76.715989px;}
.x16{left:87.516000px;}
.x2{left:93.635989px;}
.x18{left:97.955989px;}
.x3{left:99.755989px;}
.x7{left:100.871989px;}
.x13{left:104.471989px;}
.xc{left:119.231989px;}
.x19{left:129.671989px;}
.xa{left:199.184989px;}
.x12{left:203.864989px;}
.x1a{left:235.184989px;}
.xf{left:237.749989px;}
.x8{left:288.869989px;}
.x15{left:330.299989px;}
.x1{left:337.859989px;}
.x9{left:349.019989px;}
.xb{left:363.419989px;}
.x6{left:370.259989px;}
.x10{left:400.889989px;}
.xe{left:538.844989px;}
.x11{left:560.444989px;}
.x14{left:609.449989px;}
.x1b{left:672.479989px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-60.266667pt;}
.v3{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-6.826667pt;}
.ls37{letter-spacing:-1.776000pt;}
.ls39{letter-spacing:-1.701333pt;}
.ls2a{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-1.264000pt;}
.ls3d{letter-spacing:-1.114667pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls3c{letter-spacing:-0.720000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.527467pt;}
.ls38{letter-spacing:-0.437867pt;}
.ls3b{letter-spacing:-0.422400pt;}
.lse{letter-spacing:-0.414933pt;}
.ls36{letter-spacing:-0.245867pt;}
.lsd{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.017920pt;}
.ls29{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.107520pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.177920pt;}
.lsc{letter-spacing:0.281600pt;}
.ls2f{letter-spacing:0.455680pt;}
.ls2e{letter-spacing:0.518400pt;}
.ls32{letter-spacing:0.524800pt;}
.ls3a{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.746667pt;}
.ls28{letter-spacing:0.800000pt;}
.ls25{letter-spacing:1.297920pt;}
.ls8{letter-spacing:1.920000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls30{letter-spacing:4.586667pt;}
.ls18{letter-spacing:5.760000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls12{letter-spacing:8.320000pt;}
.ls1d{letter-spacing:8.480000pt;}
.lsa{letter-spacing:9.600000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls2d{letter-spacing:10.986667pt;}
.ls17{letter-spacing:12.160000pt;}
.ls1f{letter-spacing:14.720000pt;}
.ls27{letter-spacing:16.000000pt;}
.ls20{letter-spacing:17.280000pt;}
.ls14{letter-spacing:18.560000pt;}
.ls15{letter-spacing:19.840000pt;}
.ls13{letter-spacing:24.960000pt;}
.ls2{letter-spacing:27.530667pt;}
.ls33{letter-spacing:28.800000pt;}
.ls31{letter-spacing:30.080000pt;}
.ls21{letter-spacing:30.186667pt;}
.ls1a{letter-spacing:31.360000pt;}
.ls22{letter-spacing:35.200000pt;}
.ls23{letter-spacing:39.200000pt;}
.ls24{letter-spacing:65.088000pt;}
.ls5{letter-spacing:65.930667pt;}
.ls7{letter-spacing:71.050667pt;}
.ls6{letter-spacing:73.610667pt;}
.ls3{letter-spacing:81.290667pt;}
.lsb{letter-spacing:137.600000pt;}
.ls4{letter-spacing:140.170667pt;}
.ls34{letter-spacing:986.730667pt;}
.ws6{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.194133pt;}
.ws1{word-spacing:-13.025067pt;}
.ws8{word-spacing:-12.912533pt;}
.wsd{word-spacing:-12.720000pt;}
.ws2{word-spacing:-12.528000pt;}
.ws7{word-spacing:-12.176000pt;}
.ws3{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.737600pt;}
.wsb{word-spacing:-11.722133pt;}
.wsf{word-spacing:-11.440000pt;}
.ws10{word-spacing:-11.045333pt;}
.wsa{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.458667pt;}
.ws4{word-spacing:-6.613333pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-8.117760pt;}
._2{margin-left:-6.814080pt;}
._7{margin-left:-5.415040pt;}
._16{margin-left:-4.485333pt;}
._a{margin-left:-3.522133pt;}
._3{margin-left:-2.350080pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.239040pt;}
._9{width:2.570027pt;}
._b{width:3.498880pt;}
._f{width:4.529280pt;}
._e{width:6.128640pt;}
._11{width:7.267840pt;}
._8{width:8.346453pt;}
._c{width:9.441280pt;}
._d{width:10.518613pt;}
._14{width:11.434667pt;}
._12{width:12.344320pt;}
._13{width:14.382933pt;}
._15{width:15.680000pt;}
._22{width:16.650240pt;}
._24{width:17.799680pt;}
._19{width:18.996907pt;}
._1a{width:19.948373pt;}
._10{width:21.058133pt;}
._5{width:22.405547pt;}
._4{width:23.730773pt;}
._17{width:24.757333pt;}
._2c{width:25.738667pt;}
._18{width:26.727253pt;}
._1c{width:28.085760pt;}
._1b{width:29.511893pt;}
._1e{width:30.412800pt;}
._1f{width:31.892480pt;}
._20{width:33.364480pt;}
._21{width:34.342400pt;}
._23{width:36.101120pt;}
._27{width:37.411840pt;}
._28{width:38.502400pt;}
._26{width:40.061440pt;}
._25{width:41.410560pt;}
._1d{width:43.112960pt;}
._2a{width:59.274240pt;}
._29{width:60.195840pt;}
._2b{width:74.608640pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:2.880000pt;}
.yb0{bottom:3.200000pt;}
.yb4{bottom:18.560000pt;}
.yaf{bottom:18.600000pt;}
.y2{bottom:21.760000pt;}
.yb3{bottom:33.920000pt;}
.yae{bottom:33.960000pt;}
.yb2{bottom:48.960000pt;}
.yad{bottom:49.320000pt;}
.y1{bottom:58.240000pt;}
.yac{bottom:64.680000pt;}
.y38{bottom:89.280000pt;}
.yec{bottom:89.600000pt;}
.ya6{bottom:91.200000pt;}
.y6f{bottom:100.832000pt;}
.yd2{bottom:101.152000pt;}
.y37{bottom:103.072000pt;}
.y89{bottom:103.712000pt;}
.ya5{bottom:106.592000pt;}
.y6e{bottom:116.192000pt;}
.yd1{bottom:116.512000pt;}
.y36{bottom:117.152000pt;}
.y88{bottom:119.072000pt;}
.ya4{bottom:121.952000pt;}
.y6d{bottom:131.552000pt;}
.yd0{bottom:131.872000pt;}
.y87{bottom:134.426667pt;}
.ya3{bottom:136.986667pt;}
.y6c{bottom:146.906667pt;}
.ycf{bottom:147.226667pt;}
.y35{bottom:147.866667pt;}
.y86{bottom:149.466667pt;}
.ye4{bottom:149.786667pt;}
.ya2{bottom:152.346667pt;}
.y6b{bottom:161.946667pt;}
.yce{bottom:162.586667pt;}
.y34{bottom:163.226667pt;}
.y85{bottom:164.826667pt;}
.ye3{bottom:165.146667pt;}
.ya1{bottom:167.706667pt;}
.y6a{bottom:177.306667pt;}
.ycd{bottom:177.946667pt;}
.y33{bottom:178.586667pt;}
.y84{bottom:180.186667pt;}
.ye2{bottom:180.506667pt;}
.ya0{bottom:183.066667pt;}
.yeb{bottom:192.346667pt;}
.y69{bottom:192.666667pt;}
.ycc{bottom:193.026667pt;}
.y32{bottom:193.986667pt;}
.y83{bottom:195.586667pt;}
.ye1{bottom:195.906667pt;}
.y9f{bottom:198.466667pt;}
.y68{bottom:208.066667pt;}
.ycb{bottom:208.386667pt;}
.y31{bottom:209.346667pt;}
.y82{bottom:210.946667pt;}
.ye0{bottom:211.266667pt;}
.y9e{bottom:213.826667pt;}
.y67{bottom:223.426667pt;}
.yca{bottom:223.746667pt;}
.y30{bottom:224.706667pt;}
.y81{bottom:226.306667pt;}
.ydf{bottom:226.626667pt;}
.y9d{bottom:229.186667pt;}
.yea{bottom:238.466667pt;}
.y66{bottom:238.786667pt;}
.yc9{bottom:239.106667pt;}
.y2f{bottom:240.066667pt;}
.y80{bottom:241.666667pt;}
.yde{bottom:241.986667pt;}
.y9c{bottom:244.546667pt;}
.y73{bottom:253.826667pt;}
.y65{bottom:254.146667pt;}
.yc8{bottom:254.466667pt;}
.y2e{bottom:255.106667pt;}
.y7f{bottom:257.026667pt;}
.ydd{bottom:257.346667pt;}
.y9b{bottom:259.906667pt;}
.y64{bottom:269.506667pt;}
.yc7{bottom:269.826667pt;}
.y2d{bottom:270.466667pt;}
.y7e{bottom:272.386667pt;}
.y9a{bottom:275.266667pt;}
.y63{bottom:284.866667pt;}
.yc6{bottom:285.186667pt;}
.y2c{bottom:285.826667pt;}
.y7d{bottom:287.773333pt;}
.y99{bottom:290.653333pt;}
.y62{bottom:300.253333pt;}
.yc5{bottom:300.573333pt;}
.y2b{bottom:300.893333pt;}
.y7c{bottom:303.133333pt;}
.y98{bottom:306.013333pt;}
.y61{bottom:315.613333pt;}
.yc4{bottom:315.933333pt;}
.y2a{bottom:316.573333pt;}
.y7b{bottom:318.173333pt;}
.ydc{bottom:318.493333pt;}
.y97{bottom:321.053333pt;}
.y60{bottom:330.653333pt;}
.yc3{bottom:331.293333pt;}
.y29{bottom:331.933333pt;}
.y7a{bottom:333.533333pt;}
.ydb{bottom:333.853333pt;}
.y96{bottom:336.413333pt;}
.ye9{bottom:345.693333pt;}
.y5f{bottom:346.013333pt;}
.yc2{bottom:346.653333pt;}
.y28{bottom:347.293333pt;}
.y79{bottom:348.893333pt;}
.yda{bottom:349.213333pt;}
.y95{bottom:351.773333pt;}
.y5e{bottom:361.373333pt;}
.yc1{bottom:362.013333pt;}
.y27{bottom:362.653333pt;}
.y78{bottom:364.253333pt;}
.yd9{bottom:364.573333pt;}
.y94{bottom:367.133333pt;}
.ye8{bottom:376.413333pt;}
.y5d{bottom:376.733333pt;}
.yc0{bottom:377.053333pt;}
.y26{bottom:378.013333pt;}
.y77{bottom:379.653333pt;}
.yd8{bottom:379.973333pt;}
.y93{bottom:382.533333pt;}
.y5c{bottom:392.133333pt;}
.ybf{bottom:392.453333pt;}
.y25{bottom:393.413333pt;}
.y76{bottom:395.013333pt;}
.yd7{bottom:395.333333pt;}
.y92{bottom:397.893333pt;}
.ye7{bottom:407.173333pt;}
.y5b{bottom:407.493333pt;}
.ybe{bottom:407.813333pt;}
.y24{bottom:408.773333pt;}
.y75{bottom:410.373333pt;}
.yd6{bottom:410.693333pt;}
.y91{bottom:413.253333pt;}
.y74{bottom:422.533333pt;}
.y5a{bottom:422.853333pt;}
.ybd{bottom:423.173333pt;}
.y23{bottom:424.133333pt;}
.yd5{bottom:426.053333pt;}
.y90{bottom:428.613333pt;}
.y59{bottom:438.213333pt;}
.ybc{bottom:438.533333pt;}
.y22{bottom:439.173333pt;}
.yd4{bottom:440.773333pt;}
.y8f{bottom:443.973333pt;}
.y58{bottom:453.573333pt;}
.ybb{bottom:453.893333pt;}
.y21{bottom:454.533333pt;}
.yd3{bottom:455.813333pt;}
.y8e{bottom:458.693333pt;}
.y57{bottom:468.933333pt;}
.yba{bottom:469.253333pt;}
.y20{bottom:469.893333pt;}
.y8d{bottom:471.493333pt;}
.y56{bottom:484.320000pt;}
.yb9{bottom:484.640000pt;}
.y1f{bottom:485.280000pt;}
.y8c{bottom:486.880000pt;}
.y8b{bottom:499.040000pt;}
.ye6{bottom:499.360000pt;}
.y55{bottom:499.680000pt;}
.yb8{bottom:500.000000pt;}
.y1e{bottom:500.640000pt;}
.y54{bottom:514.720000pt;}
.yb7{bottom:515.360000pt;}
.y1d{bottom:516.000000pt;}
.y53{bottom:530.080000pt;}
.yb6{bottom:530.720000pt;}
.y1c{bottom:531.360000pt;}
.y52{bottom:545.440000pt;}
.yb5{bottom:546.080000pt;}
.y1b{bottom:546.720000pt;}
.y51{bottom:560.800000pt;}
.y1a{bottom:562.080000pt;}
.y50{bottom:576.186667pt;}
.y19{bottom:577.466667pt;}
.yb1{bottom:586.426667pt;}
.y72{bottom:591.226667pt;}
.y4f{bottom:591.546667pt;}
.y18{bottom:592.826667pt;}
.y4e{bottom:606.906667pt;}
.y17{bottom:607.866667pt;}
.y4d{bottom:622.266667pt;}
.y16{bottom:623.226667pt;}
.y4c{bottom:637.626667pt;}
.y15{bottom:638.586667pt;}
.yab{bottom:648.186667pt;}
.y4b{bottom:652.986667pt;}
.y14{bottom:653.626667pt;}
.y13{bottom:667.426667pt;}
.y4a{bottom:668.386667pt;}
.y12{bottom:681.506667pt;}
.y49{bottom:683.426667pt;}
.y11{bottom:695.266667pt;}
.y48{bottom:698.786667pt;}
.y8a{bottom:701.346667pt;}
.y10{bottom:709.026667pt;}
.y47{bottom:713.826667pt;}
.y71{bottom:714.146667pt;}
.yf{bottom:722.786667pt;}
.ya9{bottom:725.666667pt;}
.y46{bottom:729.186667pt;}
.y70{bottom:729.506667pt;}
.ye{bottom:736.226667pt;}
.ya8{bottom:744.546667pt;}
.y45{bottom:744.866667pt;}
.yd{bottom:750.626667pt;}
.ya7{bottom:759.933333pt;}
.y44{bottom:760.253333pt;}
.yc{bottom:766.013333pt;}
.y43{bottom:775.613333pt;}
.yb{bottom:781.053333pt;}
.y42{bottom:790.973333pt;}
.ya{bottom:796.413333pt;}
.y41{bottom:806.333333pt;}
.y9{bottom:811.773333pt;}
.y40{bottom:821.693333pt;}
.y8{bottom:827.133333pt;}
.y3f{bottom:837.053333pt;}
.y7{bottom:842.813333pt;}
.y3e{bottom:852.453333pt;}
.y3d{bottom:867.493333pt;}
.y6{bottom:873.253333pt;}
.ye5{bottom:882.533333pt;}
.y3c{bottom:882.853333pt;}
.y5{bottom:888.613333pt;}
.y3b{bottom:898.213333pt;}
.y4{bottom:903.333333pt;}
.y3a{bottom:913.573333pt;}
.y3{bottom:920.293333pt;}
.y39{bottom:928.933333pt;}
.hc{height:15.360000pt;}
.hb{height:41.456250pt;}
.h5{height:42.570000pt;}
.h6{height:46.488750pt;}
.h8{height:47.737500pt;}
.h9{height:48.195000pt;}
.h7{height:49.020000pt;}
.ha{height:52.736250pt;}
.h2{height:52.762500pt;}
.h4{height:54.180000pt;}
.he{height:61.120000pt;}
.h3{height:62.812500pt;}
.hd{height:76.832000pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w3{width:103.424000pt;}
.w4{width:411.426667pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x17{left:7.040000pt;}
.x4{left:45.471990pt;}
.x5{left:56.671990pt;}
.xd{left:68.191990pt;}
.x16{left:77.792000pt;}
.x2{left:83.231990pt;}
.x18{left:87.071990pt;}
.x3{left:88.671990pt;}
.x7{left:89.663990pt;}
.x13{left:92.863990pt;}
.xc{left:105.983990pt;}
.x19{left:115.263990pt;}
.xa{left:177.053324pt;}
.x12{left:181.213324pt;}
.x1a{left:209.053324pt;}
.xf{left:211.333324pt;}
.x8{left:256.773324pt;}
.x15{left:293.599990pt;}
.x1{left:300.319990pt;}
.x9{left:310.239990pt;}
.xb{left:323.039990pt;}
.x6{left:329.119990pt;}
.x10{left:356.346657pt;}
.xe{left:478.973324pt;}
.x11{left:498.173324pt;}
.x14{left:541.733324pt;}
.x1b{left:597.759990pt;}
}




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