
    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_02b944ef5efd78fe2ae62310.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074707;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_30ec7281e342abdd1d341546.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940918;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_f045ca8bb0157199d24160ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_ead8ac88c163a77976b3641c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_71235ae0767405904a0af303.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_61e864ea2fbe5f4c3533dbb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.200000px;}
.v3{vertical-align:24.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.300000px;}
.ls7{letter-spacing:3.900000px;}
.ls6{letter-spacing:5.700000px;}
.ls8{letter-spacing:9.900000px;}
.ls5{letter-spacing:10.500000px;}
.ls3{letter-spacing:13.500000px;}
.ls0{letter-spacing:71.400000px;}
.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;}
}
.ws2{word-spacing:-19.500000px;}
.ws6{word-spacing:-16.500000px;}
.ws4{word-spacing:-15.000000px;}
.ws9{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.634000px;}
.ws8{word-spacing:-9.600000px;}
.ws7{word-spacing:-8.700000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:13.152000px;}
.ws5{word-spacing:19.200000px;}
._11{margin-left:-2.286000px;}
._1{margin-left:-1.092000px;}
._5{width:1.080000px;}
._6{width:2.970000px;}
._a{width:3.978000px;}
._3{width:4.992000px;}
._2{width:6.006000px;}
._4{width:7.020000px;}
._c{width:8.046000px;}
._12{width:9.546000px;}
._13{width:10.674000px;}
._14{width:12.078000px;}
._10{width:13.134000px;}
._7{width:14.634000px;}
._8{width:15.714000px;}
._9{width:16.740000px;}
._b{width:18.348000px;}
._16{width:19.800000px;}
._1c{width:20.988000px;}
._17{width:23.166000px;}
._1b{width:24.636000px;}
._f{width:29.052000px;}
._1d{width:31.746000px;}
._18{width:33.948000px;}
._15{width:35.700000px;}
._1e{width:37.824000px;}
._0{width:55.920000px;}
._19{width:143.880000px;}
._1a{width:158.880000px;}
._e{width:955.344000px;}
._d{width:1399.638000px;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,10);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(37,37,37);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:27.600000px;}
.fs4{font-size:34.800000px;}
.fs9{font-size:38.400000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2b{bottom:41.937000px;}
.y2a{bottom:77.187000px;}
.yf3{bottom:81.237000px;}
.y95{bottom:81.687000px;}
.y6f{bottom:87.987000px;}
.yd5{bottom:90.687000px;}
.ye4{bottom:91.437000px;}
.y55{bottom:92.187000px;}
.yd6{bottom:92.937000px;}
.y29{bottom:95.187000px;}
.yf2{bottom:99.237000px;}
.yf8{bottom:104.337000px;}
.y6e{bottom:105.987000px;}
.yd4{bottom:108.837000px;}
.ye3{bottom:109.437000px;}
.y54{bottom:110.187000px;}
.yba{bottom:110.937000px;}
.y94{bottom:111.537000px;}
.yf1{bottom:117.237000px;}
.yf7{bottom:117.837000px;}
.y6d{bottom:123.987000px;}
.ye2{bottom:127.437000px;}
.y53{bottom:128.187000px;}
.yb9{bottom:128.937000px;}
.y93{bottom:129.537000px;}
.yf6{bottom:131.487000px;}
.yf0{bottom:135.237000px;}
.yd3{bottom:137.037000px;}
.yf5{bottom:144.987000px;}
.ye1{bottom:145.437000px;}
.y52{bottom:146.187000px;}
.yb8{bottom:146.937000px;}
.y92{bottom:147.537000px;}
.y28{bottom:148.887000px;}
.yef{bottom:153.237000px;}
.yd2{bottom:155.037000px;}
.y6c{bottom:159.837000px;}
.yf4{bottom:163.137000px;}
.ye0{bottom:163.437000px;}
.y27{bottom:163.887000px;}
.y51{bottom:164.187000px;}
.yb7{bottom:164.937000px;}
.yee{bottom:171.237000px;}
.yd1{bottom:173.037000px;}
.y6b{bottom:177.837000px;}
.y26{bottom:178.887000px;}
.ydf{bottom:181.437000px;}
.y50{bottom:182.187000px;}
.yb6{bottom:182.937000px;}
.y91{bottom:183.537000px;}
.yed{bottom:189.237000px;}
.yd0{bottom:191.037000px;}
.y25{bottom:193.887000px;}
.y6a{bottom:195.837000px;}
.yde{bottom:199.437000px;}
.y4f{bottom:200.187000px;}
.yb5{bottom:200.937000px;}
.y90{bottom:201.537000px;}
.yec{bottom:207.237000px;}
.y24{bottom:208.887000px;}
.ycf{bottom:209.037000px;}
.y69{bottom:213.837000px;}
.ydd{bottom:217.437000px;}
.y4e{bottom:218.187000px;}
.yb4{bottom:218.937000px;}
.y8f{bottom:219.537000px;}
.y23{bottom:223.887000px;}
.yeb{bottom:225.237000px;}
.yce{bottom:227.037000px;}
.y68{bottom:231.837000px;}
.ydc{bottom:235.437000px;}
.y4d{bottom:236.187000px;}
.yb3{bottom:236.937000px;}
.y8e{bottom:237.537000px;}
.y22{bottom:238.887000px;}
.yea{bottom:243.237000px;}
.ycd{bottom:245.037000px;}
.y67{bottom:249.837000px;}
.ydb{bottom:253.437000px;}
.y21{bottom:253.887000px;}
.y4c{bottom:254.187000px;}
.yb2{bottom:254.937000px;}
.y8d{bottom:255.537000px;}
.ye9{bottom:261.237000px;}
.ycc{bottom:263.037000px;}
.y66{bottom:267.837000px;}
.y20{bottom:268.887000px;}
.yda{bottom:271.437000px;}
.y4b{bottom:272.187000px;}
.yb1{bottom:272.937000px;}
.y8c{bottom:273.537000px;}
.ye8{bottom:279.237000px;}
.ycb{bottom:281.037000px;}
.y1f{bottom:283.887000px;}
.y65{bottom:285.837000px;}
.yd9{bottom:289.437000px;}
.y4a{bottom:290.187000px;}
.yb0{bottom:290.937000px;}
.y8b{bottom:291.537000px;}
.ye7{bottom:297.237000px;}
.y1e{bottom:298.887000px;}
.yca{bottom:299.037000px;}
.y64{bottom:303.837000px;}
.yd8{bottom:307.437000px;}
.y49{bottom:308.187000px;}
.yaf{bottom:308.937000px;}
.y8a{bottom:309.537000px;}
.y1d{bottom:313.887000px;}
.yc9{bottom:317.037000px;}
.y63{bottom:321.837000px;}
.y48{bottom:326.187000px;}
.yae{bottom:326.937000px;}
.y89{bottom:327.537000px;}
.y1c{bottom:328.887000px;}
.yc8{bottom:335.037000px;}
.y62{bottom:339.837000px;}
.y1b{bottom:343.887000px;}
.y47{bottom:344.187000px;}
.yad{bottom:344.937000px;}
.ye6{bottom:350.487000px;}
.yc7{bottom:353.037000px;}
.y61{bottom:357.837000px;}
.yd7{bottom:360.687000px;}
.y46{bottom:362.187000px;}
.yac{bottom:362.937000px;}
.y88{bottom:363.387000px;}
.yc6{bottom:371.037000px;}
.y1a{bottom:375.537000px;}
.y60{bottom:375.837000px;}
.y45{bottom:380.187000px;}
.yab{bottom:380.937000px;}
.y87{bottom:381.387000px;}
.yc5{bottom:389.037000px;}
.y44{bottom:398.187000px;}
.yaa{bottom:398.937000px;}
.y86{bottom:399.387000px;}
.yc4{bottom:407.037000px;}
.y43{bottom:416.187000px;}
.ya9{bottom:416.937000px;}
.y85{bottom:417.387000px;}
.y19{bottom:424.587000px;}
.yc3{bottom:425.037000px;}
.y42{bottom:434.187000px;}
.y5f{bottom:434.337000px;}
.ya8{bottom:434.937000px;}
.y84{bottom:435.387000px;}
.y18{bottom:439.587000px;}
.yc2{bottom:443.037000px;}
.ya7{bottom:452.937000px;}
.y17{bottom:454.587000px;}
.yc1{bottom:461.037000px;}
.y16{bottom:469.587000px;}
.y41{bottom:470.187000px;}
.ya6{bottom:470.937000px;}
.y83{bottom:471.237000px;}
.yc0{bottom:479.037000px;}
.y15{bottom:484.587000px;}
.ya5{bottom:488.937000px;}
.y82{bottom:489.237000px;}
.ybf{bottom:497.037000px;}
.y14{bottom:499.587000px;}
.ya4{bottom:506.937000px;}
.y81{bottom:507.237000px;}
.y13{bottom:514.587000px;}
.ybe{bottom:515.037000px;}
.y40{bottom:524.187000px;}
.ya3{bottom:524.937000px;}
.y80{bottom:525.237000px;}
.y12{bottom:529.587000px;}
.ybd{bottom:533.037000px;}
.ya2{bottom:542.937000px;}
.y7f{bottom:543.237000px;}
.y11{bottom:544.587000px;}
.y3f{bottom:546.687000px;}
.y10{bottom:559.587000px;}
.ya1{bottom:560.937000px;}
.y7e{bottom:561.237000px;}
.y3e{bottom:569.187000px;}
.yf{bottom:574.587000px;}
.ya0{bottom:578.937000px;}
.y7d{bottom:579.237000px;}
.y3d{bottom:587.187000px;}
.ye{bottom:589.587000px;}
.ybc{bottom:591.537000px;}
.y9f{bottom:596.937000px;}
.y7c{bottom:597.237000px;}
.yd{bottom:604.587000px;}
.y3c{bottom:605.187000px;}
.y9e{bottom:614.937000px;}
.y7b{bottom:615.237000px;}
.yc{bottom:619.587000px;}
.y3b{bottom:623.187000px;}
.y9d{bottom:632.937000px;}
.yb{bottom:634.587000px;}
.y3a{bottom:641.187000px;}
.y9c{bottom:650.937000px;}
.y7a{bottom:651.087000px;}
.ya{bottom:664.287000px;}
.y9b{bottom:668.937000px;}
.y79{bottom:669.087000px;}
.ye5{bottom:669.237000px;}
.y9a{bottom:686.937000px;}
.y78{bottom:687.087000px;}
.y99{bottom:704.937000px;}
.y77{bottom:705.087000px;}
.y9{bottom:707.637000px;}
.y39{bottom:712.287000px;}
.y98{bottom:722.937000px;}
.y76{bottom:723.087000px;}
.y38{bottom:727.287000px;}
.y8{bottom:740.937000px;}
.y75{bottom:741.087000px;}
.y37{bottom:742.287000px;}
.y36{bottom:757.287000px;}
.y97{bottom:758.937000px;}
.y5e{bottom:759.087000px;}
.y7{bottom:763.437000px;}
.y35{bottom:772.287000px;}
.y96{bottom:776.937000px;}
.y74{bottom:777.087000px;}
.y34{bottom:787.287000px;}
.y5d{bottom:794.937000px;}
.y73{bottom:795.087000px;}
.y33{bottom:802.287000px;}
.y5c{bottom:812.937000px;}
.y72{bottom:813.087000px;}
.y32{bottom:817.287000px;}
.y6{bottom:830.037000px;}
.y5b{bottom:830.937000px;}
.y71{bottom:831.087000px;}
.y31{bottom:832.287000px;}
.y5a{bottom:848.937000px;}
.y70{bottom:849.087000px;}
.y5{bottom:852.837000px;}
.y30{bottom:862.287000px;}
.y4{bottom:866.637000px;}
.y59{bottom:866.937000px;}
.y2f{bottom:877.287000px;}
.y3{bottom:881.187000px;}
.y58{bottom:884.937000px;}
.y57{bottom:902.937000px;}
.y2e{bottom:907.737000px;}
.y2{bottom:920.487000px;}
.y56{bottom:920.937000px;}
.ybb{bottom:921.087000px;}
.y2d{bottom:923.337000px;}
.y2c{bottom:957.687000px;}
.hb{height:19.177148px;}
.h13{height:24.234375px;}
.h8{height:29.182617px;}
.hc{height:33.351562px;}
.h3{height:36.421875px;}
.h9{height:37.520508px;}
.h5{height:41.625000px;}
.hf{height:41.689453px;}
.h14{height:42.234375px;}
.h4{height:44.003906px;}
.h10{height:45.181641px;}
.h11{height:45.858398px;}
.h7{height:46.379883px;}
.hd{height:47.513672px;}
.ha{height:50.027344px;}
.he{height:52.792969px;}
.h6{height:54.196289px;}
.h12{height:58.072266px;}
.h2{height:1020.387000px;}
.h0{height:1020.429921px;}
.h1{height:1020.750000px;}
.w2{width:722.791500px;}
.w0{width:722.834646px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:85.200000px;}
.x2{left:95.850000px;}
.x4{left:106.500000px;}
.x5{left:119.250000px;}
.x8{left:144.750000px;}
.xa{left:233.850000px;}
.x9{left:244.800000px;}
.x7{left:258.900000px;}
.x6{left:442.200000px;}
.x1{left:556.500000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.733333pt;}
.v3{vertical-align:21.866667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls7{letter-spacing:3.466667pt;}
.ls6{letter-spacing:5.066667pt;}
.ls8{letter-spacing:8.800000pt;}
.ls5{letter-spacing:9.333333pt;}
.ls3{letter-spacing:12.000000pt;}
.ls0{letter-spacing:63.466667pt;}
.ws2{word-spacing:-17.333333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws9{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.341333pt;}
.ws8{word-spacing:-8.533333pt;}
.ws7{word-spacing:-7.733333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:11.690667pt;}
.ws5{word-spacing:17.066667pt;}
._11{margin-left:-2.032000pt;}
._1{margin-left:-0.970667pt;}
._5{width:0.960000pt;}
._6{width:2.640000pt;}
._a{width:3.536000pt;}
._3{width:4.437333pt;}
._2{width:5.338667pt;}
._4{width:6.240000pt;}
._c{width:7.152000pt;}
._12{width:8.485333pt;}
._13{width:9.488000pt;}
._14{width:10.736000pt;}
._10{width:11.674667pt;}
._7{width:13.008000pt;}
._8{width:13.968000pt;}
._9{width:14.880000pt;}
._b{width:16.309333pt;}
._16{width:17.600000pt;}
._1c{width:18.656000pt;}
._17{width:20.592000pt;}
._1b{width:21.898667pt;}
._f{width:25.824000pt;}
._1d{width:28.218667pt;}
._18{width:30.176000pt;}
._15{width:31.733333pt;}
._1e{width:33.621333pt;}
._0{width:49.706667pt;}
._19{width:127.893333pt;}
._1a{width:141.226667pt;}
._e{width:849.194667pt;}
._d{width:1244.122667pt;}
.fs7{font-size:24.533333pt;}
.fs4{font-size:30.933333pt;}
.fs9{font-size:34.133333pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2b{bottom:37.277333pt;}
.y2a{bottom:68.610667pt;}
.yf3{bottom:72.210667pt;}
.y95{bottom:72.610667pt;}
.y6f{bottom:78.210667pt;}
.yd5{bottom:80.610667pt;}
.ye4{bottom:81.277333pt;}
.y55{bottom:81.944000pt;}
.yd6{bottom:82.610667pt;}
.y29{bottom:84.610667pt;}
.yf2{bottom:88.210667pt;}
.yf8{bottom:92.744000pt;}
.y6e{bottom:94.210667pt;}
.yd4{bottom:96.744000pt;}
.ye3{bottom:97.277333pt;}
.y54{bottom:97.944000pt;}
.yba{bottom:98.610667pt;}
.y94{bottom:99.144000pt;}
.yf1{bottom:104.210667pt;}
.yf7{bottom:104.744000pt;}
.y6d{bottom:110.210667pt;}
.ye2{bottom:113.277333pt;}
.y53{bottom:113.944000pt;}
.yb9{bottom:114.610667pt;}
.y93{bottom:115.144000pt;}
.yf6{bottom:116.877333pt;}
.yf0{bottom:120.210667pt;}
.yd3{bottom:121.810667pt;}
.yf5{bottom:128.877333pt;}
.ye1{bottom:129.277333pt;}
.y52{bottom:129.944000pt;}
.yb8{bottom:130.610667pt;}
.y92{bottom:131.144000pt;}
.y28{bottom:132.344000pt;}
.yef{bottom:136.210667pt;}
.yd2{bottom:137.810667pt;}
.y6c{bottom:142.077333pt;}
.yf4{bottom:145.010667pt;}
.ye0{bottom:145.277333pt;}
.y27{bottom:145.677333pt;}
.y51{bottom:145.944000pt;}
.yb7{bottom:146.610667pt;}
.yee{bottom:152.210667pt;}
.yd1{bottom:153.810667pt;}
.y6b{bottom:158.077333pt;}
.y26{bottom:159.010667pt;}
.ydf{bottom:161.277333pt;}
.y50{bottom:161.944000pt;}
.yb6{bottom:162.610667pt;}
.y91{bottom:163.144000pt;}
.yed{bottom:168.210667pt;}
.yd0{bottom:169.810667pt;}
.y25{bottom:172.344000pt;}
.y6a{bottom:174.077333pt;}
.yde{bottom:177.277333pt;}
.y4f{bottom:177.944000pt;}
.yb5{bottom:178.610667pt;}
.y90{bottom:179.144000pt;}
.yec{bottom:184.210667pt;}
.y24{bottom:185.677333pt;}
.ycf{bottom:185.810667pt;}
.y69{bottom:190.077333pt;}
.ydd{bottom:193.277333pt;}
.y4e{bottom:193.944000pt;}
.yb4{bottom:194.610667pt;}
.y8f{bottom:195.144000pt;}
.y23{bottom:199.010667pt;}
.yeb{bottom:200.210667pt;}
.yce{bottom:201.810667pt;}
.y68{bottom:206.077333pt;}
.ydc{bottom:209.277333pt;}
.y4d{bottom:209.944000pt;}
.yb3{bottom:210.610667pt;}
.y8e{bottom:211.144000pt;}
.y22{bottom:212.344000pt;}
.yea{bottom:216.210667pt;}
.ycd{bottom:217.810667pt;}
.y67{bottom:222.077333pt;}
.ydb{bottom:225.277333pt;}
.y21{bottom:225.677333pt;}
.y4c{bottom:225.944000pt;}
.yb2{bottom:226.610667pt;}
.y8d{bottom:227.144000pt;}
.ye9{bottom:232.210667pt;}
.ycc{bottom:233.810667pt;}
.y66{bottom:238.077333pt;}
.y20{bottom:239.010667pt;}
.yda{bottom:241.277333pt;}
.y4b{bottom:241.944000pt;}
.yb1{bottom:242.610667pt;}
.y8c{bottom:243.144000pt;}
.ye8{bottom:248.210667pt;}
.ycb{bottom:249.810667pt;}
.y1f{bottom:252.344000pt;}
.y65{bottom:254.077333pt;}
.yd9{bottom:257.277333pt;}
.y4a{bottom:257.944000pt;}
.yb0{bottom:258.610667pt;}
.y8b{bottom:259.144000pt;}
.ye7{bottom:264.210667pt;}
.y1e{bottom:265.677333pt;}
.yca{bottom:265.810667pt;}
.y64{bottom:270.077333pt;}
.yd8{bottom:273.277333pt;}
.y49{bottom:273.944000pt;}
.yaf{bottom:274.610667pt;}
.y8a{bottom:275.144000pt;}
.y1d{bottom:279.010667pt;}
.yc9{bottom:281.810667pt;}
.y63{bottom:286.077333pt;}
.y48{bottom:289.944000pt;}
.yae{bottom:290.610667pt;}
.y89{bottom:291.144000pt;}
.y1c{bottom:292.344000pt;}
.yc8{bottom:297.810667pt;}
.y62{bottom:302.077333pt;}
.y1b{bottom:305.677333pt;}
.y47{bottom:305.944000pt;}
.yad{bottom:306.610667pt;}
.ye6{bottom:311.544000pt;}
.yc7{bottom:313.810667pt;}
.y61{bottom:318.077333pt;}
.yd7{bottom:320.610667pt;}
.y46{bottom:321.944000pt;}
.yac{bottom:322.610667pt;}
.y88{bottom:323.010667pt;}
.yc6{bottom:329.810667pt;}
.y1a{bottom:333.810667pt;}
.y60{bottom:334.077333pt;}
.y45{bottom:337.944000pt;}
.yab{bottom:338.610667pt;}
.y87{bottom:339.010667pt;}
.yc5{bottom:345.810667pt;}
.y44{bottom:353.944000pt;}
.yaa{bottom:354.610667pt;}
.y86{bottom:355.010667pt;}
.yc4{bottom:361.810667pt;}
.y43{bottom:369.944000pt;}
.ya9{bottom:370.610667pt;}
.y85{bottom:371.010667pt;}
.y19{bottom:377.410667pt;}
.yc3{bottom:377.810667pt;}
.y42{bottom:385.944000pt;}
.y5f{bottom:386.077333pt;}
.ya8{bottom:386.610667pt;}
.y84{bottom:387.010667pt;}
.y18{bottom:390.744000pt;}
.yc2{bottom:393.810667pt;}
.ya7{bottom:402.610667pt;}
.y17{bottom:404.077333pt;}
.yc1{bottom:409.810667pt;}
.y16{bottom:417.410667pt;}
.y41{bottom:417.944000pt;}
.ya6{bottom:418.610667pt;}
.y83{bottom:418.877333pt;}
.yc0{bottom:425.810667pt;}
.y15{bottom:430.744000pt;}
.ya5{bottom:434.610667pt;}
.y82{bottom:434.877333pt;}
.ybf{bottom:441.810667pt;}
.y14{bottom:444.077333pt;}
.ya4{bottom:450.610667pt;}
.y81{bottom:450.877333pt;}
.y13{bottom:457.410667pt;}
.ybe{bottom:457.810667pt;}
.y40{bottom:465.944000pt;}
.ya3{bottom:466.610667pt;}
.y80{bottom:466.877333pt;}
.y12{bottom:470.744000pt;}
.ybd{bottom:473.810667pt;}
.ya2{bottom:482.610667pt;}
.y7f{bottom:482.877333pt;}
.y11{bottom:484.077333pt;}
.y3f{bottom:485.944000pt;}
.y10{bottom:497.410667pt;}
.ya1{bottom:498.610667pt;}
.y7e{bottom:498.877333pt;}
.y3e{bottom:505.944000pt;}
.yf{bottom:510.744000pt;}
.ya0{bottom:514.610667pt;}
.y7d{bottom:514.877333pt;}
.y3d{bottom:521.944000pt;}
.ye{bottom:524.077333pt;}
.ybc{bottom:525.810667pt;}
.y9f{bottom:530.610667pt;}
.y7c{bottom:530.877333pt;}
.yd{bottom:537.410667pt;}
.y3c{bottom:537.944000pt;}
.y9e{bottom:546.610667pt;}
.y7b{bottom:546.877333pt;}
.yc{bottom:550.744000pt;}
.y3b{bottom:553.944000pt;}
.y9d{bottom:562.610667pt;}
.yb{bottom:564.077333pt;}
.y3a{bottom:569.944000pt;}
.y9c{bottom:578.610667pt;}
.y7a{bottom:578.744000pt;}
.ya{bottom:590.477333pt;}
.y9b{bottom:594.610667pt;}
.y79{bottom:594.744000pt;}
.ye5{bottom:594.877333pt;}
.y9a{bottom:610.610667pt;}
.y78{bottom:610.744000pt;}
.y99{bottom:626.610667pt;}
.y77{bottom:626.744000pt;}
.y9{bottom:629.010667pt;}
.y39{bottom:633.144000pt;}
.y98{bottom:642.610667pt;}
.y76{bottom:642.744000pt;}
.y38{bottom:646.477333pt;}
.y8{bottom:658.610667pt;}
.y75{bottom:658.744000pt;}
.y37{bottom:659.810667pt;}
.y36{bottom:673.144000pt;}
.y97{bottom:674.610667pt;}
.y5e{bottom:674.744000pt;}
.y7{bottom:678.610667pt;}
.y35{bottom:686.477333pt;}
.y96{bottom:690.610667pt;}
.y74{bottom:690.744000pt;}
.y34{bottom:699.810667pt;}
.y5d{bottom:706.610667pt;}
.y73{bottom:706.744000pt;}
.y33{bottom:713.144000pt;}
.y5c{bottom:722.610667pt;}
.y72{bottom:722.744000pt;}
.y32{bottom:726.477333pt;}
.y6{bottom:737.810667pt;}
.y5b{bottom:738.610667pt;}
.y71{bottom:738.744000pt;}
.y31{bottom:739.810667pt;}
.y5a{bottom:754.610667pt;}
.y70{bottom:754.744000pt;}
.y5{bottom:758.077333pt;}
.y30{bottom:766.477333pt;}
.y4{bottom:770.344000pt;}
.y59{bottom:770.610667pt;}
.y2f{bottom:779.810667pt;}
.y3{bottom:783.277333pt;}
.y58{bottom:786.610667pt;}
.y57{bottom:802.610667pt;}
.y2e{bottom:806.877333pt;}
.y2{bottom:818.210667pt;}
.y56{bottom:818.610667pt;}
.ybb{bottom:818.744000pt;}
.y2d{bottom:820.744000pt;}
.y2c{bottom:851.277333pt;}
.hb{height:17.046354pt;}
.h13{height:21.541667pt;}
.h8{height:25.940104pt;}
.hc{height:29.645833pt;}
.h3{height:32.375000pt;}
.h9{height:33.351562pt;}
.h5{height:37.000000pt;}
.hf{height:37.057292pt;}
.h14{height:37.541667pt;}
.h4{height:39.114583pt;}
.h10{height:40.161458pt;}
.h11{height:40.763021pt;}
.h7{height:41.226563pt;}
.hd{height:42.234375pt;}
.ha{height:44.468750pt;}
.he{height:46.927083pt;}
.h6{height:48.174479pt;}
.h12{height:51.619792pt;}
.h2{height:907.010667pt;}
.h0{height:907.048819pt;}
.h1{height:907.333333pt;}
.w2{width:642.481333pt;}
.w0{width:642.519685pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:75.733333pt;}
.x2{left:85.200000pt;}
.x4{left:94.666667pt;}
.x5{left:106.000000pt;}
.x8{left:128.666667pt;}
.xa{left:207.866667pt;}
.x9{left:217.600000pt;}
.x7{left:230.133333pt;}
.x6{left:393.066667pt;}
.x1{left:494.666667pt;}
}




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