
    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_221796669aae7b92554acb63.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_5b9d94990c24e7c49e3f87a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b70bf2776d87780c77a23677.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0eaf674b15e2b1b638c4ac2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_eabef14c71f27f874216e78b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853516;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_d2ec21fc6206f8d272861b4e.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_1c54d9ef0a1221e098f84fb4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1c653dd591a94ada466cdf9c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls10{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:21.221280px;}
.lse{letter-spacing:33.960000px;}
.lsb{letter-spacing:54.864000px;}
.lsa{letter-spacing:72.120000px;}
.lsc{letter-spacing:75.024000px;}
.ls8{letter-spacing:91.560000px;}
.ls6{letter-spacing:111.720000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsa{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.064000px;}
.ws8{word-spacing:-15.785280px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws0{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-7.695360px;}
._19{margin-left:-5.306640px;}
._4{margin-left:-4.282560px;}
._0{margin-left:-2.404800px;}
._3{margin-left:-1.322640px;}
._1{width:1.190640px;}
._7{width:2.364000px;}
._8{width:4.019520px;}
._a{width:5.832000px;}
._b{width:6.984000px;}
._d{width:7.992000px;}
._10{width:9.216000px;}
._11{width:10.728000px;}
._13{width:12.384000px;}
._14{width:13.824000px;}
._5{width:14.976000px;}
._6{width:16.488000px;}
._e{width:17.796000px;}
._9{width:19.490640px;}
._c{width:20.733360px;}
._1a{width:21.893280px;}
._27{width:23.024160px;}
._1d{width:24.192000px;}
._f{width:25.848000px;}
._12{width:27.048000px;}
._22{width:29.160000px;}
._24{width:30.850560px;}
._1b{width:32.400000px;}
._1c{width:33.945360px;}
._17{width:36.000000px;}
._18{width:37.008000px;}
._15{width:43.272000px;}
._16{width:44.496000px;}
._20{width:50.976000px;}
._21{width:52.056000px;}
._23{width:56.304000px;}
._25{width:75.384000px;}
._26{width:76.392000px;}
._1e{width:168.516000px;}
._1f{width:243.216000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:77.904000px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yad{bottom:14.220000px;}
.ya2{bottom:14.400000px;}
.y7b{bottom:25.920000px;}
.y78{bottom:36.615000px;}
.yac{bottom:45.180000px;}
.ya1{bottom:45.360000px;}
.y7a{bottom:47.340000px;}
.y5{bottom:56.880000px;}
.y77{bottom:58.035000px;}
.y79{bottom:68.760000px;}
.ya6{bottom:75.780000px;}
.yaa{bottom:76.320000px;}
.ya0{bottom:76.500000px;}
.y4{bottom:77.616000px;}
.y3{bottom:98.496000px;}
.ya5{bottom:107.100000px;}
.ya9{bottom:107.280000px;}
.ya4{bottom:107.460000px;}
.y80{bottom:125.175000px;}
.y4e{bottom:130.896000px;}
.y82{bottom:135.900000px;}
.yab{bottom:138.105000px;}
.yaf{bottom:138.420000px;}
.ya8{bottom:138.465000px;}
.y24{bottom:143.856000px;}
.y9e{bottom:145.116000px;}
.y7f{bottom:146.625000px;}
.yce{bottom:151.590000px;}
.yc9{bottom:155.190000px;}
.y43{bottom:156.810000px;}
.y81{bottom:157.320000px;}
.y4d{bottom:162.030000px;}
.y7e{bottom:168.045000px;}
.y23{bottom:174.810000px;}
.y73{bottom:174.990000px;}
.y9d{bottom:176.250000px;}
.ye3{bottom:177.510000px;}
.ycd{bottom:182.730000px;}
.yc8{bottom:186.330000px;}
.y42{bottom:187.770000px;}
.y4c{bottom:192.990000px;}
.y22{bottom:205.950000px;}
.y9c{bottom:207.210000px;}
.ya7{bottom:207.570000px;}
.ye2{bottom:208.470000px;}
.ycc{bottom:213.690000px;}
.yc7{bottom:217.290000px;}
.y41{bottom:218.910000px;}
.y4b{bottom:224.130000px;}
.y7d{bottom:235.185000px;}
.y21{bottom:236.910000px;}
.y72{bottom:237.090000px;}
.y9b{bottom:238.350000px;}
.ye1{bottom:239.610000px;}
.ycb{bottom:244.650000px;}
.yc6{bottom:248.430000px;}
.y40{bottom:249.870000px;}
.y4a{bottom:255.090000px;}
.y7c{bottom:256.605000px;}
.y71{bottom:268.050000px;}
.y9a{bottom:269.310000px;}
.y20{bottom:270.390000px;}
.ye0{bottom:270.570000px;}
.yc5{bottom:279.390000px;}
.yca{bottom:280.470000px;}
.y3f{bottom:281.010000px;}
.y49{bottom:286.050000px;}
.y70{bottom:299.190000px;}
.y99{bottom:300.450000px;}
.y1f{bottom:301.710000px;}
.yc4{bottom:310.530000px;}
.y3e{bottom:311.970000px;}
.y48{bottom:317.190000px;}
.y1e{bottom:330.150000px;}
.y98{bottom:331.410000px;}
.y76{bottom:334.440000px;}
.ydf{bottom:335.010000px;}
.yc3{bottom:341.535000px;}
.y3d{bottom:343.155000px;}
.y47{bottom:348.195000px;}
.y75{bottom:355.890000px;}
.y1d{bottom:361.155000px;}
.y6f{bottom:361.335000px;}
.y97{bottom:362.595000px;}
.ya3{bottom:363.495000px;}
.yde{bottom:368.895000px;}
.yc2{bottom:372.675000px;}
.y3c{bottom:374.115000px;}
.y46{bottom:379.335000px;}
.y6e{bottom:392.295000px;}
.y1c{bottom:394.635000px;}
.y96{bottom:395.895000px;}
.ydd{bottom:400.035000px;}
.yc1{bottom:403.635000px;}
.y3b{bottom:405.255000px;}
.y45{bottom:410.295000px;}
.y6d{bottom:423.435000px;}
.y1b{bottom:424.875000px;}
.ydc{bottom:430.995000px;}
.y95{bottom:432.075000px;}
.yc0{bottom:434.775000px;}
.y63{bottom:436.215000px;}
.y3a{bottom:438.555000px;}
.y44{bottom:441.435000px;}
.y1a{bottom:451.695000px;}
.y6c{bottom:454.395000px;}
.ydb{bottom:462.135000px;}
.ybf{bottom:465.735000px;}
.y94{bottom:466.095000px;}
.y62{bottom:467.355000px;}
.y39{bottom:472.395000px;}
.y19{bottom:482.835000px;}
.y6b{bottom:485.535000px;}
.y9f{bottom:488.415000px;}
.yda{bottom:493.095000px;}
.ybe{bottom:496.875000px;}
.y93{bottom:497.055000px;}
.y61{bottom:498.315000px;}
.y38{bottom:503.535000px;}
.y18{bottom:513.795000px;}
.y6a{bottom:516.495000px;}
.yd9{bottom:524.235000px;}
.ybd{bottom:527.835000px;}
.y92{bottom:528.015000px;}
.y60{bottom:529.455000px;}
.y37{bottom:534.495000px;}
.y17{bottom:544.935000px;}
.y69{bottom:547.635000px;}
.yd8{bottom:555.195000px;}
.ybc{bottom:558.975000px;}
.y91{bottom:559.155000px;}
.y5f{bottom:560.415000px;}
.y36{bottom:565.635000px;}
.y16{bottom:575.895000px;}
.y68{bottom:578.595000px;}
.yd7{bottom:586.335000px;}
.ybb{bottom:589.935000px;}
.y90{bottom:590.115000px;}
.y5e{bottom:591.555000px;}
.y35{bottom:596.595000px;}
.y15{bottom:607.065000px;}
.y67{bottom:609.765000px;}
.yd6{bottom:617.325000px;}
.yba{bottom:621.105000px;}
.y5d{bottom:622.545000px;}
.y34{bottom:627.765000px;}
.y14{bottom:638.025000px;}
.y66{bottom:640.725000px;}
.yd5{bottom:648.465000px;}
.yb9{bottom:652.065000px;}
.y5c{bottom:653.685000px;}
.y33{bottom:658.725000px;}
.y13{bottom:669.165000px;}
.y65{bottom:671.865000px;}
.yd4{bottom:679.425000px;}
.y5b{bottom:684.645000px;}
.yb8{bottom:685.365000px;}
.y74{bottom:688.680000px;}
.y32{bottom:689.865000px;}
.y64{bottom:698.865000px;}
.y12{bottom:700.125000px;}
.yd3{bottom:710.565000px;}
.y8f{bottom:715.605000px;}
.y5a{bottom:715.785000px;}
.yb7{bottom:719.385000px;}
.y31{bottom:720.825000px;}
.y11{bottom:731.265000px;}
.yd2{bottom:741.525000px;}
.y59{bottom:746.745000px;}
.y8e{bottom:748.005000px;}
.yb6{bottom:750.345000px;}
.y30{bottom:751.965000px;}
.y10{bottom:762.225000px;}
.yd1{bottom:772.665000px;}
.y58{bottom:777.705000px;}
.y8d{bottom:779.145000px;}
.yb5{bottom:781.485000px;}
.y2f{bottom:782.925000px;}
.yf{bottom:793.365000px;}
.yd0{bottom:803.625000px;}
.y57{bottom:808.845000px;}
.y8c{bottom:810.105000px;}
.yb4{bottom:812.445000px;}
.y2e{bottom:814.065000px;}
.ye{bottom:824.325000px;}
.ycf{bottom:839.445000px;}
.y56{bottom:839.805000px;}
.y8b{bottom:841.065000px;}
.yb3{bottom:843.585000px;}
.y2d{bottom:845.025000px;}
.yd{bottom:857.625000px;}
.y55{bottom:870.990000px;}
.y8a{bottom:873.510000px;}
.yb2{bottom:874.590000px;}
.y2c{bottom:876.210000px;}
.yc{bottom:886.650000px;}
.y54{bottom:901.950000px;}
.y89{bottom:904.650000px;}
.yb1{bottom:905.730000px;}
.y2b{bottom:907.170000px;}
.yb{bottom:912.390000px;}
.y53{bottom:933.090000px;}
.y88{bottom:935.610000px;}
.yb0{bottom:936.690000px;}
.y2a{bottom:938.310000px;}
.ya{bottom:943.350000px;}
.yae{bottom:954.330000px;}
.y52{bottom:964.050000px;}
.y87{bottom:966.570000px;}
.y29{bottom:969.270000px;}
.y9{bottom:974.490000px;}
.y51{bottom:995.190000px;}
.y86{bottom:998.970000px;}
.y28{bottom:1000.410000px;}
.y8{bottom:1012.290000px;}
.y50{bottom:1026.150000px;}
.y85{bottom:1030.110000px;}
.y27{bottom:1031.370000px;}
.y7{bottom:1038.930000px;}
.y4f{bottom:1059.630000px;}
.y84{bottom:1061.070000px;}
.y26{bottom:1062.510000px;}
.y6{bottom:1082.130000px;}
.y83{bottom:1092.030000px;}
.y25{bottom:1093.470000px;}
.y2{bottom:1115.250000px;}
.y1{bottom:1132.170000px;}
.h9{height:34.036523px;}
.hb{height:37.705078px;}
.h7{height:39.760312px;}
.hc{height:49.255313px;}
.h3{height:50.273438px;}
.h4{height:50.800781px;}
.he{height:52.417969px;}
.h18{height:58.819922px;}
.h8{height:59.343750px;}
.ha{height:59.436914px;}
.h14{height:60.679688px;}
.h2{height:60.855469px;}
.hd{height:61.329023px;}
.h11{height:65.723906px;}
.h10{height:65.845617px;}
.h17{height:67.565039px;}
.h6{height:68.340586px;}
.h5{height:84.837305px;}
.h12{height:93.240000px;}
.h13{height:124.200000px;}
.h16{height:155.160000px;}
.h15{height:155.190000px;}
.hf{height:421.560000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:113.580000px;}
.w4{width:116.496000px;}
.w5{width:144.216000px;}
.w6{width:299.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.740000px;}
.x2{left:108.035987px;}
.x4{left:109.475987px;}
.x1d{left:113.075987px;}
.x20{left:133.955987px;}
.x1f{left:135.035987px;}
.xe{left:137.051987px;}
.xf{left:146.231987px;}
.x1e{left:162.029987px;}
.x6{left:196.769987px;}
.x18{left:205.814987px;}
.x7{left:221.069987px;}
.x22{left:223.050000px;}
.x17{left:235.154987px;}
.xb{left:249.689987px;}
.x5{left:252.029987px;}
.x9{left:261.569987px;}
.x10{left:286.994987px;}
.x15{left:305.894987px;}
.x16{left:306.974987px;}
.x8{left:326.954987px;}
.x23{left:340.275000px;}
.xc{left:392.834987px;}
.xd{left:402.734987px;}
.x11{left:465.194987px;}
.x19{left:475.994987px;}
.x12{left:477.434987px;}
.x1a{left:484.634987px;}
.x1b{left:552.674987px;}
.x1c{left:582.914987px;}
.x14{left:630.974987px;}
.x13{left:660.344987px;}
.x3{left:692.609987px;}
.xa{left:760.649987px;}
.x1{left:785.309987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls10{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:18.863360pt;}
.lse{letter-spacing:30.186667pt;}
.lsb{letter-spacing:48.768000pt;}
.lsa{letter-spacing:64.106667pt;}
.lsc{letter-spacing:66.688000pt;}
.ls8{letter-spacing:81.386667pt;}
.ls6{letter-spacing:99.306667pt;}
.ws9{word-spacing:-64.000000pt;}
.wsa{word-spacing:-21.280000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws8{word-spacing:-14.031360pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-6.840320pt;}
._19{margin-left:-4.717013pt;}
._4{margin-left:-3.806720pt;}
._0{margin-left:-2.137600pt;}
._3{margin-left:-1.175680pt;}
._1{width:1.058347pt;}
._7{width:2.101333pt;}
._8{width:3.572907pt;}
._a{width:5.184000pt;}
._b{width:6.208000pt;}
._d{width:7.104000pt;}
._10{width:8.192000pt;}
._11{width:9.536000pt;}
._13{width:11.008000pt;}
._14{width:12.288000pt;}
._5{width:13.312000pt;}
._6{width:14.656000pt;}
._e{width:15.818667pt;}
._9{width:17.325013pt;}
._c{width:18.429653pt;}
._1a{width:19.460693pt;}
._27{width:20.465920pt;}
._1d{width:21.504000pt;}
._f{width:22.976000pt;}
._12{width:24.042667pt;}
._22{width:25.920000pt;}
._24{width:27.422720pt;}
._1b{width:28.800000pt;}
._1c{width:30.173653pt;}
._17{width:32.000000pt;}
._18{width:32.896000pt;}
._15{width:38.464000pt;}
._16{width:39.552000pt;}
._20{width:45.312000pt;}
._21{width:46.272000pt;}
._23{width:50.048000pt;}
._25{width:67.008000pt;}
._26{width:67.904000pt;}
._1e{width:149.792000pt;}
._1f{width:216.192000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:69.248000pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:12.640000pt;}
.ya2{bottom:12.800000pt;}
.y7b{bottom:23.040000pt;}
.y78{bottom:32.546667pt;}
.yac{bottom:40.160000pt;}
.ya1{bottom:40.320000pt;}
.y7a{bottom:42.080000pt;}
.y5{bottom:50.560000pt;}
.y77{bottom:51.586667pt;}
.y79{bottom:61.120000pt;}
.ya6{bottom:67.360000pt;}
.yaa{bottom:67.840000pt;}
.ya0{bottom:68.000000pt;}
.y4{bottom:68.992000pt;}
.y3{bottom:87.552000pt;}
.ya5{bottom:95.200000pt;}
.ya9{bottom:95.360000pt;}
.ya4{bottom:95.520000pt;}
.y80{bottom:111.266667pt;}
.y4e{bottom:116.352000pt;}
.y82{bottom:120.800000pt;}
.yab{bottom:122.760000pt;}
.yaf{bottom:123.040000pt;}
.ya8{bottom:123.080000pt;}
.y24{bottom:127.872000pt;}
.y9e{bottom:128.992000pt;}
.y7f{bottom:130.333333pt;}
.yce{bottom:134.746667pt;}
.yc9{bottom:137.946667pt;}
.y43{bottom:139.386667pt;}
.y81{bottom:139.840000pt;}
.y4d{bottom:144.026667pt;}
.y7e{bottom:149.373333pt;}
.y23{bottom:155.386667pt;}
.y73{bottom:155.546667pt;}
.y9d{bottom:156.666667pt;}
.ye3{bottom:157.786667pt;}
.ycd{bottom:162.426667pt;}
.yc8{bottom:165.626667pt;}
.y42{bottom:166.906667pt;}
.y4c{bottom:171.546667pt;}
.y22{bottom:183.066667pt;}
.y9c{bottom:184.186667pt;}
.ya7{bottom:184.506667pt;}
.ye2{bottom:185.306667pt;}
.ycc{bottom:189.946667pt;}
.yc7{bottom:193.146667pt;}
.y41{bottom:194.586667pt;}
.y4b{bottom:199.226667pt;}
.y7d{bottom:209.053333pt;}
.y21{bottom:210.586667pt;}
.y72{bottom:210.746667pt;}
.y9b{bottom:211.866667pt;}
.ye1{bottom:212.986667pt;}
.ycb{bottom:217.466667pt;}
.yc6{bottom:220.826667pt;}
.y40{bottom:222.106667pt;}
.y4a{bottom:226.746667pt;}
.y7c{bottom:228.093333pt;}
.y71{bottom:238.266667pt;}
.y9a{bottom:239.386667pt;}
.y20{bottom:240.346667pt;}
.ye0{bottom:240.506667pt;}
.yc5{bottom:248.346667pt;}
.yca{bottom:249.306667pt;}
.y3f{bottom:249.786667pt;}
.y49{bottom:254.266667pt;}
.y70{bottom:265.946667pt;}
.y99{bottom:267.066667pt;}
.y1f{bottom:268.186667pt;}
.yc4{bottom:276.026667pt;}
.y3e{bottom:277.306667pt;}
.y48{bottom:281.946667pt;}
.y1e{bottom:293.466667pt;}
.y98{bottom:294.586667pt;}
.y76{bottom:297.280000pt;}
.ydf{bottom:297.786667pt;}
.yc3{bottom:303.586667pt;}
.y3d{bottom:305.026667pt;}
.y47{bottom:309.506667pt;}
.y75{bottom:316.346667pt;}
.y1d{bottom:321.026667pt;}
.y6f{bottom:321.186667pt;}
.y97{bottom:322.306667pt;}
.ya3{bottom:323.106667pt;}
.yde{bottom:327.906667pt;}
.yc2{bottom:331.266667pt;}
.y3c{bottom:332.546667pt;}
.y46{bottom:337.186667pt;}
.y6e{bottom:348.706667pt;}
.y1c{bottom:350.786667pt;}
.y96{bottom:351.906667pt;}
.ydd{bottom:355.586667pt;}
.yc1{bottom:358.786667pt;}
.y3b{bottom:360.226667pt;}
.y45{bottom:364.706667pt;}
.y6d{bottom:376.386667pt;}
.y1b{bottom:377.666667pt;}
.ydc{bottom:383.106667pt;}
.y95{bottom:384.066667pt;}
.yc0{bottom:386.466667pt;}
.y63{bottom:387.746667pt;}
.y3a{bottom:389.826667pt;}
.y44{bottom:392.386667pt;}
.y1a{bottom:401.506667pt;}
.y6c{bottom:403.906667pt;}
.ydb{bottom:410.786667pt;}
.ybf{bottom:413.986667pt;}
.y94{bottom:414.306667pt;}
.y62{bottom:415.426667pt;}
.y39{bottom:419.906667pt;}
.y19{bottom:429.186667pt;}
.y6b{bottom:431.586667pt;}
.y9f{bottom:434.146667pt;}
.yda{bottom:438.306667pt;}
.ybe{bottom:441.666667pt;}
.y93{bottom:441.826667pt;}
.y61{bottom:442.946667pt;}
.y38{bottom:447.586667pt;}
.y18{bottom:456.706667pt;}
.y6a{bottom:459.106667pt;}
.yd9{bottom:465.986667pt;}
.ybd{bottom:469.186667pt;}
.y92{bottom:469.346667pt;}
.y60{bottom:470.626667pt;}
.y37{bottom:475.106667pt;}
.y17{bottom:484.386667pt;}
.y69{bottom:486.786667pt;}
.yd8{bottom:493.506667pt;}
.ybc{bottom:496.866667pt;}
.y91{bottom:497.026667pt;}
.y5f{bottom:498.146667pt;}
.y36{bottom:502.786667pt;}
.y16{bottom:511.906667pt;}
.y68{bottom:514.306667pt;}
.yd7{bottom:521.186667pt;}
.ybb{bottom:524.386667pt;}
.y90{bottom:524.546667pt;}
.y5e{bottom:525.826667pt;}
.y35{bottom:530.306667pt;}
.y15{bottom:539.613333pt;}
.y67{bottom:542.013333pt;}
.yd6{bottom:548.733333pt;}
.yba{bottom:552.093333pt;}
.y5d{bottom:553.373333pt;}
.y34{bottom:558.013333pt;}
.y14{bottom:567.133333pt;}
.y66{bottom:569.533333pt;}
.yd5{bottom:576.413333pt;}
.yb9{bottom:579.613333pt;}
.y5c{bottom:581.053333pt;}
.y33{bottom:585.533333pt;}
.y13{bottom:594.813333pt;}
.y65{bottom:597.213333pt;}
.yd4{bottom:603.933333pt;}
.y5b{bottom:608.573333pt;}
.yb8{bottom:609.213333pt;}
.y74{bottom:612.160000pt;}
.y32{bottom:613.213333pt;}
.y64{bottom:621.213333pt;}
.y12{bottom:622.333333pt;}
.yd3{bottom:631.613333pt;}
.y8f{bottom:636.093333pt;}
.y5a{bottom:636.253333pt;}
.yb7{bottom:639.453333pt;}
.y31{bottom:640.733333pt;}
.y11{bottom:650.013333pt;}
.yd2{bottom:659.133333pt;}
.y59{bottom:663.773333pt;}
.y8e{bottom:664.893333pt;}
.yb6{bottom:666.973333pt;}
.y30{bottom:668.413333pt;}
.y10{bottom:677.533333pt;}
.yd1{bottom:686.813333pt;}
.y58{bottom:691.293333pt;}
.y8d{bottom:692.573333pt;}
.yb5{bottom:694.653333pt;}
.y2f{bottom:695.933333pt;}
.yf{bottom:705.213333pt;}
.yd0{bottom:714.333333pt;}
.y57{bottom:718.973333pt;}
.y8c{bottom:720.093333pt;}
.yb4{bottom:722.173333pt;}
.y2e{bottom:723.613333pt;}
.ye{bottom:732.733333pt;}
.ycf{bottom:746.173333pt;}
.y56{bottom:746.493333pt;}
.y8b{bottom:747.613333pt;}
.yb3{bottom:749.853333pt;}
.y2d{bottom:751.133333pt;}
.yd{bottom:762.333333pt;}
.y55{bottom:774.213333pt;}
.y8a{bottom:776.453333pt;}
.yb2{bottom:777.413333pt;}
.y2c{bottom:778.853333pt;}
.yc{bottom:788.133333pt;}
.y54{bottom:801.733333pt;}
.y89{bottom:804.133333pt;}
.yb1{bottom:805.093333pt;}
.y2b{bottom:806.373333pt;}
.yb{bottom:811.013333pt;}
.y53{bottom:829.413333pt;}
.y88{bottom:831.653333pt;}
.yb0{bottom:832.613333pt;}
.y2a{bottom:834.053333pt;}
.ya{bottom:838.533333pt;}
.yae{bottom:848.293333pt;}
.y52{bottom:856.933333pt;}
.y87{bottom:859.173333pt;}
.y29{bottom:861.573333pt;}
.y9{bottom:866.213333pt;}
.y51{bottom:884.613333pt;}
.y86{bottom:887.973333pt;}
.y28{bottom:889.253333pt;}
.y8{bottom:899.813333pt;}
.y50{bottom:912.133333pt;}
.y85{bottom:915.653333pt;}
.y27{bottom:916.773333pt;}
.y7{bottom:923.493333pt;}
.y4f{bottom:941.893333pt;}
.y84{bottom:943.173333pt;}
.y26{bottom:944.453333pt;}
.y6{bottom:961.893333pt;}
.y83{bottom:970.693333pt;}
.y25{bottom:971.973333pt;}
.y2{bottom:991.333333pt;}
.y1{bottom:1006.373333pt;}
.h9{height:30.254687pt;}
.hb{height:33.515625pt;}
.h7{height:35.342500pt;}
.hc{height:43.782500pt;}
.h3{height:44.687500pt;}
.h4{height:45.156250pt;}
.he{height:46.593750pt;}
.h18{height:52.284375pt;}
.h8{height:52.750000pt;}
.ha{height:52.832812pt;}
.h14{height:53.937500pt;}
.h2{height:54.093750pt;}
.hd{height:54.514687pt;}
.h11{height:58.421250pt;}
.h10{height:58.529437pt;}
.h17{height:60.057813pt;}
.h6{height:60.747187pt;}
.h5{height:75.410937pt;}
.h12{height:82.880000pt;}
.h13{height:110.400000pt;}
.h16{height:137.920000pt;}
.h15{height:137.946667pt;}
.hf{height:374.720000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:100.960000pt;}
.w4{width:103.552000pt;}
.w5{width:128.192000pt;}
.w6{width:265.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.880000pt;}
.x2{left:96.031988pt;}
.x4{left:97.311988pt;}
.x1d{left:100.511988pt;}
.x20{left:119.071988pt;}
.x1f{left:120.031988pt;}
.xe{left:121.823988pt;}
.xf{left:129.983988pt;}
.x1e{left:144.026655pt;}
.x6{left:174.906655pt;}
.x18{left:182.946655pt;}
.x7{left:196.506655pt;}
.x22{left:198.266667pt;}
.x17{left:209.026655pt;}
.xb{left:221.946655pt;}
.x5{left:224.026655pt;}
.x9{left:232.506655pt;}
.x10{left:255.106655pt;}
.x15{left:271.906655pt;}
.x16{left:272.866655pt;}
.x8{left:290.626655pt;}
.x23{left:302.466667pt;}
.xc{left:349.186655pt;}
.xd{left:357.986655pt;}
.x11{left:413.506655pt;}
.x19{left:423.106655pt;}
.x12{left:424.386655pt;}
.x1a{left:430.786655pt;}
.x1b{left:491.266655pt;}
.x1c{left:518.146655pt;}
.x14{left:560.866655pt;}
.x13{left:586.973322pt;}
.x3{left:615.653322pt;}
.xa{left:676.133322pt;}
.x1{left:698.053322pt;}
}




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