
    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_732dd3e946f88e4a6b046ecb.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_0f3a43067d53b3be8f9d6a91.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.038086;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_fb4f0b33a3612af6d8623ec1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_b4b640352738cdd0cfdd9498.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_05ff7d6593e77a5f0edc08e6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d4dd25bb73242324710d754b.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_152c6159a5cbb02aea2b92fe.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6eadd93c0809977d59e39435.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3a59ec4fe4cf77580a0c491b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f1f7fddc5cf3658b77d0f69f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.v3{vertical-align:-82.800000px;}
.v4{vertical-align:-81.360000px;}
.v2{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.072000px;}
.lse{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.146880px;}
.ls7{letter-spacing:0.357000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.864000px;}
.ls9{letter-spacing:10.944000px;}
.ls5{letter-spacing:21.026880px;}
.lsd{letter-spacing:69.096000px;}
.ls4{letter-spacing:1214.796000px;}
.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;}
}
.ws7{word-spacing:-18.864000px;}
.ws8{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-13.504200px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-1.432080px;}
._0{width:1.010160px;}
._1{width:2.012160px;}
._26{width:3.013200px;}
._10{width:4.015440px;}
._5{width:5.692800px;}
._4{width:6.955200px;}
._1a{width:8.296080px;}
._6{width:9.538560px;}
._7{width:10.597680px;}
._13{width:12.503280px;}
._12{width:13.677120px;}
._f{width:14.771520px;}
._18{width:16.488000px;}
._3{width:17.951040px;}
._b{width:18.994320px;}
._16{width:20.159760px;}
._15{width:21.345120px;}
._11{width:22.919040px;}
._8{width:24.508800px;}
._9{width:26.429760px;}
._a{width:27.795600px;}
._20{width:29.247120px;}
._14{width:30.296880px;}
._1b{width:31.320000px;}
._1c{width:32.976000px;}
._19{width:34.920000px;}
._d{width:35.968320px;}
._e{width:37.226880px;}
._1e{width:38.952000px;}
._1f{width:40.032000px;}
._c{width:41.374800px;}
._24{width:42.624000px;}
._25{width:43.629840px;}
._21{width:46.152000px;}
._22{width:47.160000px;}
._23{width:48.240000px;}
._1d{width:57.864000px;}
._27{width:144.403200px;}
._28{width:145.595520px;}
._17{width:199.416000px;}
._29{width:255.553920px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.420000px;}
.y4{bottom:5.220000px;}
.y5{bottom:21.090000px;}
.y3{bottom:33.510000px;}
.y9{bottom:35.640000px;}
.y8{bottom:55.440000px;}
.y3b{bottom:120.096000px;}
.y6c{bottom:123.336000px;}
.y83{bottom:123.516000px;}
.yab{bottom:123.696000px;}
.yc2{bottom:125.136000px;}
.y3a{bottom:138.996000px;}
.y6b{bottom:144.036000px;}
.y82{bottom:144.216000px;}
.yaa{bottom:144.396000px;}
.y39{bottom:158.070000px;}
.yc1{bottom:163.110000px;}
.y6a{bottom:164.730000px;}
.y81{bottom:164.910000px;}
.ya9{bottom:165.090000px;}
.y38{bottom:176.970000px;}
.yc0{bottom:182.190000px;}
.y69{bottom:185.430000px;}
.y80{bottom:185.610000px;}
.ya8{bottom:185.790000px;}
.y37{bottom:195.870000px;}
.ybf{bottom:201.090000px;}
.y68{bottom:206.130000px;}
.y7f{bottom:206.310000px;}
.ya7{bottom:206.490000px;}
.y36{bottom:214.950000px;}
.ybe{bottom:220.170000px;}
.y67{bottom:226.830000px;}
.y7e{bottom:227.010000px;}
.ya6{bottom:227.190000px;}
.y35{bottom:233.850000px;}
.ybd{bottom:239.070000px;}
.y66{bottom:247.530000px;}
.y7d{bottom:247.710000px;}
.ya5{bottom:247.890000px;}
.y34{bottom:252.930000px;}
.ybc{bottom:257.970000px;}
.y65{bottom:268.230000px;}
.y7c{bottom:268.410000px;}
.ya4{bottom:268.590000px;}
.y33{bottom:271.830000px;}
.ybb{bottom:277.050000px;}
.y64{bottom:288.930000px;}
.y7b{bottom:289.110000px;}
.ya3{bottom:289.290000px;}
.y32{bottom:290.730000px;}
.yba{bottom:295.950000px;}
.y63{bottom:309.630000px;}
.y31{bottom:309.810000px;}
.ya2{bottom:309.990000px;}
.yb9{bottom:315.030000px;}
.y30{bottom:328.710000px;}
.y62{bottom:330.330000px;}
.y7a{bottom:330.510000px;}
.ya1{bottom:330.690000px;}
.yb8{bottom:333.930000px;}
.y2f{bottom:347.835000px;}
.y61{bottom:351.075000px;}
.y79{bottom:351.255000px;}
.ya0{bottom:351.435000px;}
.yb7{bottom:352.875000px;}
.y2e{bottom:366.735000px;}
.y60{bottom:371.775000px;}
.y78{bottom:371.955000px;}
.y9f{bottom:372.135000px;}
.y2d{bottom:385.815000px;}
.yb6{bottom:390.855000px;}
.y5f{bottom:392.475000px;}
.y77{bottom:392.655000px;}
.y9e{bottom:392.835000px;}
.ye6{bottom:396.075000px;}
.y2c{bottom:404.715000px;}
.yb5{bottom:409.935000px;}
.y5e{bottom:413.175000px;}
.y76{bottom:413.355000px;}
.y9d{bottom:413.535000px;}
.ye5{bottom:414.975000px;}
.y2b{bottom:423.615000px;}
.yb4{bottom:428.835000px;}
.y5d{bottom:433.875000px;}
.y75{bottom:434.055000px;}
.y9c{bottom:434.235000px;}
.y2a{bottom:442.695000px;}
.yb3{bottom:447.735000px;}
.ye4{bottom:452.955000px;}
.y5c{bottom:454.575000px;}
.y74{bottom:454.755000px;}
.y9b{bottom:454.935000px;}
.y29{bottom:461.595000px;}
.yb2{bottom:466.815000px;}
.ye3{bottom:472.035000px;}
.y5b{bottom:475.275000px;}
.y73{bottom:475.455000px;}
.y9a{bottom:475.635000px;}
.y28{bottom:480.675000px;}
.yb1{bottom:485.715000px;}
.ye2{bottom:490.935000px;}
.y5a{bottom:496.155000px;}
.y99{bottom:496.335000px;}
.yb0{bottom:504.795000px;}
.ye1{bottom:509.835000px;}
.y59{bottom:516.855000px;}
.y98{bottom:517.035000px;}
.y27{bottom:518.475000px;}
.yaf{bottom:523.695000px;}
.ye0{bottom:528.915000px;}
.y26{bottom:537.555000px;}
.y97{bottom:537.735000px;}
.yae{bottom:542.595000px;}
.ydf{bottom:547.815000px;}
.y25{bottom:556.455000px;}
.y58{bottom:558.255000px;}
.y96{bottom:558.435000px;}
.yad{bottom:561.675000px;}
.yde{bottom:566.895000px;}
.y24{bottom:575.535000px;}
.y57{bottom:578.955000px;}
.y95{bottom:579.135000px;}
.yac{bottom:580.575000px;}
.ydd{bottom:585.795000px;}
.y23{bottom:594.435000px;}
.y56{bottom:599.655000px;}
.y94{bottom:599.835000px;}
.ydc{bottom:604.725000px;}
.y22{bottom:613.365000px;}
.y55{bottom:620.385000px;}
.y93{bottom:620.565000px;}
.ydb{bottom:623.805000px;}
.y21{bottom:632.445000px;}
.y54{bottom:641.085000px;}
.y92{bottom:641.265000px;}
.yda{bottom:642.705000px;}
.y20{bottom:651.345000px;}
.y53{bottom:661.785000px;}
.y91{bottom:661.965000px;}
.y1f{bottom:670.425000px;}
.yd9{bottom:680.685000px;}
.y52{bottom:682.485000px;}
.y90{bottom:682.665000px;}
.y1e{bottom:689.325000px;}
.yd8{bottom:699.585000px;}
.y51{bottom:703.185000px;}
.y8f{bottom:703.365000px;}
.y1d{bottom:708.225000px;}
.yd7{bottom:718.665000px;}
.y50{bottom:723.885000px;}
.y8e{bottom:724.065000px;}
.y1c{bottom:727.305000px;}
.yd6{bottom:737.565000px;}
.y4f{bottom:744.585000px;}
.y8d{bottom:744.765000px;}
.y1b{bottom:746.205000px;}
.yd5{bottom:756.645000px;}
.y1a{bottom:765.285000px;}
.y8c{bottom:765.465000px;}
.yd4{bottom:775.545000px;}
.y19{bottom:784.185000px;}
.y4e{bottom:785.985000px;}
.y8b{bottom:786.165000px;}
.yd3{bottom:794.445000px;}
.y18{bottom:803.085000px;}
.y4d{bottom:806.685000px;}
.y8a{bottom:806.865000px;}
.yd2{bottom:813.525000px;}
.y17{bottom:822.165000px;}
.y4c{bottom:827.385000px;}
.y89{bottom:827.565000px;}
.yd1{bottom:832.425000px;}
.y16{bottom:841.065000px;}
.y4b{bottom:848.085000px;}
.y88{bottom:848.265000px;}
.yd0{bottom:851.505000px;}
.y15{bottom:860.145000px;}
.y4a{bottom:868.785000px;}
.y87{bottom:868.965000px;}
.ycf{bottom:870.405000px;}
.y14{bottom:879.090000px;}
.y49{bottom:889.530000px;}
.y86{bottom:889.710000px;}
.y13{bottom:898.170000px;}
.yce{bottom:908.790000px;}
.y48{bottom:910.230000px;}
.y85{bottom:910.410000px;}
.y12{bottom:917.070000px;}
.y47{bottom:930.930000px;}
.y84{bottom:931.110000px;}
.y11{bottom:935.970000px;}
.ycd{bottom:949.830000px;}
.y72{bottom:951.630000px;}
.y46{bottom:951.810000px;}
.y10{bottom:955.050000px;}
.ycc{bottom:968.730000px;}
.y71{bottom:972.330000px;}
.y45{bottom:972.510000px;}
.yf{bottom:974.310000px;}
.ycb{bottom:987.810000px;}
.y70{bottom:993.030000px;}
.y44{bottom:993.210000px;}
.ye{bottom:995.550000px;}
.yca{bottom:1006.710000px;}
.y6f{bottom:1013.730000px;}
.y43{bottom:1013.910000px;}
.yd{bottom:1019.670000px;}
.yc9{bottom:1025.790000px;}
.y6e{bottom:1034.430000px;}
.y42{bottom:1034.610000px;}
.yc{bottom:1043.790000px;}
.yc8{bottom:1044.690000px;}
.y6d{bottom:1055.130000px;}
.y41{bottom:1055.310000px;}
.yc7{bottom:1063.590000px;}
.yb{bottom:1067.910000px;}
.y40{bottom:1076.010000px;}
.yc6{bottom:1082.670000px;}
.ya{bottom:1092.210000px;}
.y3f{bottom:1096.710000px;}
.yc5{bottom:1101.570000px;}
.y7{bottom:1115.250000px;}
.y3e{bottom:1117.410000px;}
.yc4{bottom:1120.650000px;}
.y2{bottom:1131.630000px;}
.y3d{bottom:1138.140000px;}
.yc3{bottom:1139.580000px;}
.y3c{bottom:1193.220000px;}
.y1{bottom:1194.300000px;}
.he{height:50.273438px;}
.h6{height:50.326875px;}
.h5{height:50.364141px;}
.hc{height:54.596250px;}
.h3{height:56.376000px;}
.h7{height:58.651172px;}
.hb{height:64.978594px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.hd{height:70.664062px;}
.h9{height:72.562500px;}
.hf{height:74.004654px;}
.h4{height:81.078047px;}
.h8{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:338.070000px;}
.w4{width:367.455000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x3{left:-4.176000px;}
.x0{left:0.000000px;}
.xf{left:12.239987px;}
.x2{left:89.316000px;}
.x1{left:108.035987px;}
.xc{left:110.195987px;}
.x12{left:129.275987px;}
.x8{left:138.995987px;}
.x9{left:148.895987px;}
.x11{left:150.509987px;}
.x5{left:157.530000px;}
.xb{left:186.689987px;}
.x6{left:272.775000px;}
.xd{left:373.394987px;}
.xe{left:418.214987px;}
.x4{left:427.395000px;}
.x7{left:450.614987px;}
.xa{left:457.994987px;}
.x10{left:793.229987px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v4{vertical-align:-72.320000pt;}
.v2{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.130560pt;}
.ls7{letter-spacing:0.317333pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls9{letter-spacing:9.728000pt;}
.ls5{letter-spacing:18.690560pt;}
.lsd{letter-spacing:61.418667pt;}
.ls4{letter-spacing:1079.818667pt;}
.ws7{word-spacing:-16.768000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-12.003733pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-1.272960pt;}
._0{width:0.897920pt;}
._1{width:1.788587pt;}
._26{width:2.678400pt;}
._10{width:3.569280pt;}
._5{width:5.060267pt;}
._4{width:6.182400pt;}
._1a{width:7.374293pt;}
._6{width:8.478720pt;}
._7{width:9.420160pt;}
._13{width:11.114027pt;}
._12{width:12.157440pt;}
._f{width:13.130240pt;}
._18{width:14.656000pt;}
._3{width:15.956480pt;}
._b{width:16.883840pt;}
._16{width:17.919787pt;}
._15{width:18.973440pt;}
._11{width:20.372480pt;}
._8{width:21.785600pt;}
._9{width:23.493120pt;}
._a{width:24.707200pt;}
._20{width:25.997440pt;}
._14{width:26.930560pt;}
._1b{width:27.840000pt;}
._1c{width:29.312000pt;}
._19{width:31.040000pt;}
._d{width:31.971840pt;}
._e{width:33.090560pt;}
._1e{width:34.624000pt;}
._1f{width:35.584000pt;}
._c{width:36.777600pt;}
._24{width:37.888000pt;}
._25{width:38.782080pt;}
._21{width:41.024000pt;}
._22{width:41.920000pt;}
._23{width:42.880000pt;}
._1d{width:51.434667pt;}
._27{width:128.358400pt;}
._28{width:129.418240pt;}
._17{width:177.258667pt;}
._29{width:227.159040pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.040000pt;}
.y4{bottom:4.640000pt;}
.y5{bottom:18.746667pt;}
.y3{bottom:29.786667pt;}
.y9{bottom:31.680000pt;}
.y8{bottom:49.280000pt;}
.y3b{bottom:106.752000pt;}
.y6c{bottom:109.632000pt;}
.y83{bottom:109.792000pt;}
.yab{bottom:109.952000pt;}
.yc2{bottom:111.232000pt;}
.y3a{bottom:123.552000pt;}
.y6b{bottom:128.032000pt;}
.y82{bottom:128.192000pt;}
.yaa{bottom:128.352000pt;}
.y39{bottom:140.506667pt;}
.yc1{bottom:144.986667pt;}
.y6a{bottom:146.426667pt;}
.y81{bottom:146.586667pt;}
.ya9{bottom:146.746667pt;}
.y38{bottom:157.306667pt;}
.yc0{bottom:161.946667pt;}
.y69{bottom:164.826667pt;}
.y80{bottom:164.986667pt;}
.ya8{bottom:165.146667pt;}
.y37{bottom:174.106667pt;}
.ybf{bottom:178.746667pt;}
.y68{bottom:183.226667pt;}
.y7f{bottom:183.386667pt;}
.ya7{bottom:183.546667pt;}
.y36{bottom:191.066667pt;}
.ybe{bottom:195.706667pt;}
.y67{bottom:201.626667pt;}
.y7e{bottom:201.786667pt;}
.ya6{bottom:201.946667pt;}
.y35{bottom:207.866667pt;}
.ybd{bottom:212.506667pt;}
.y66{bottom:220.026667pt;}
.y7d{bottom:220.186667pt;}
.ya5{bottom:220.346667pt;}
.y34{bottom:224.826667pt;}
.ybc{bottom:229.306667pt;}
.y65{bottom:238.426667pt;}
.y7c{bottom:238.586667pt;}
.ya4{bottom:238.746667pt;}
.y33{bottom:241.626667pt;}
.ybb{bottom:246.266667pt;}
.y64{bottom:256.826667pt;}
.y7b{bottom:256.986667pt;}
.ya3{bottom:257.146667pt;}
.y32{bottom:258.426667pt;}
.yba{bottom:263.066667pt;}
.y63{bottom:275.226667pt;}
.y31{bottom:275.386667pt;}
.ya2{bottom:275.546667pt;}
.yb9{bottom:280.026667pt;}
.y30{bottom:292.186667pt;}
.y62{bottom:293.626667pt;}
.y7a{bottom:293.786667pt;}
.ya1{bottom:293.946667pt;}
.yb8{bottom:296.826667pt;}
.y2f{bottom:309.186667pt;}
.y61{bottom:312.066667pt;}
.y79{bottom:312.226667pt;}
.ya0{bottom:312.386667pt;}
.yb7{bottom:313.666667pt;}
.y2e{bottom:325.986667pt;}
.y60{bottom:330.466667pt;}
.y78{bottom:330.626667pt;}
.y9f{bottom:330.786667pt;}
.y2d{bottom:342.946667pt;}
.yb6{bottom:347.426667pt;}
.y5f{bottom:348.866667pt;}
.y77{bottom:349.026667pt;}
.y9e{bottom:349.186667pt;}
.ye6{bottom:352.066667pt;}
.y2c{bottom:359.746667pt;}
.yb5{bottom:364.386667pt;}
.y5e{bottom:367.266667pt;}
.y76{bottom:367.426667pt;}
.y9d{bottom:367.586667pt;}
.ye5{bottom:368.866667pt;}
.y2b{bottom:376.546667pt;}
.yb4{bottom:381.186667pt;}
.y5d{bottom:385.666667pt;}
.y75{bottom:385.826667pt;}
.y9c{bottom:385.986667pt;}
.y2a{bottom:393.506667pt;}
.yb3{bottom:397.986667pt;}
.ye4{bottom:402.626667pt;}
.y5c{bottom:404.066667pt;}
.y74{bottom:404.226667pt;}
.y9b{bottom:404.386667pt;}
.y29{bottom:410.306667pt;}
.yb2{bottom:414.946667pt;}
.ye3{bottom:419.586667pt;}
.y5b{bottom:422.466667pt;}
.y73{bottom:422.626667pt;}
.y9a{bottom:422.786667pt;}
.y28{bottom:427.266667pt;}
.yb1{bottom:431.746667pt;}
.ye2{bottom:436.386667pt;}
.y5a{bottom:441.026667pt;}
.y99{bottom:441.186667pt;}
.yb0{bottom:448.706667pt;}
.ye1{bottom:453.186667pt;}
.y59{bottom:459.426667pt;}
.y98{bottom:459.586667pt;}
.y27{bottom:460.866667pt;}
.yaf{bottom:465.506667pt;}
.ye0{bottom:470.146667pt;}
.y26{bottom:477.826667pt;}
.y97{bottom:477.986667pt;}
.yae{bottom:482.306667pt;}
.ydf{bottom:486.946667pt;}
.y25{bottom:494.626667pt;}
.y58{bottom:496.226667pt;}
.y96{bottom:496.386667pt;}
.yad{bottom:499.266667pt;}
.yde{bottom:503.906667pt;}
.y24{bottom:511.586667pt;}
.y57{bottom:514.626667pt;}
.y95{bottom:514.786667pt;}
.yac{bottom:516.066667pt;}
.ydd{bottom:520.706667pt;}
.y23{bottom:528.386667pt;}
.y56{bottom:533.026667pt;}
.y94{bottom:533.186667pt;}
.ydc{bottom:537.533333pt;}
.y22{bottom:545.213333pt;}
.y55{bottom:551.453333pt;}
.y93{bottom:551.613333pt;}
.ydb{bottom:554.493333pt;}
.y21{bottom:562.173333pt;}
.y54{bottom:569.853333pt;}
.y92{bottom:570.013333pt;}
.yda{bottom:571.293333pt;}
.y20{bottom:578.973333pt;}
.y53{bottom:588.253333pt;}
.y91{bottom:588.413333pt;}
.y1f{bottom:595.933333pt;}
.yd9{bottom:605.053333pt;}
.y52{bottom:606.653333pt;}
.y90{bottom:606.813333pt;}
.y1e{bottom:612.733333pt;}
.yd8{bottom:621.853333pt;}
.y51{bottom:625.053333pt;}
.y8f{bottom:625.213333pt;}
.y1d{bottom:629.533333pt;}
.yd7{bottom:638.813333pt;}
.y50{bottom:643.453333pt;}
.y8e{bottom:643.613333pt;}
.y1c{bottom:646.493333pt;}
.yd6{bottom:655.613333pt;}
.y4f{bottom:661.853333pt;}
.y8d{bottom:662.013333pt;}
.y1b{bottom:663.293333pt;}
.yd5{bottom:672.573333pt;}
.y1a{bottom:680.253333pt;}
.y8c{bottom:680.413333pt;}
.yd4{bottom:689.373333pt;}
.y19{bottom:697.053333pt;}
.y4e{bottom:698.653333pt;}
.y8b{bottom:698.813333pt;}
.yd3{bottom:706.173333pt;}
.y18{bottom:713.853333pt;}
.y4d{bottom:717.053333pt;}
.y8a{bottom:717.213333pt;}
.yd2{bottom:723.133333pt;}
.y17{bottom:730.813333pt;}
.y4c{bottom:735.453333pt;}
.y89{bottom:735.613333pt;}
.yd1{bottom:739.933333pt;}
.y16{bottom:747.613333pt;}
.y4b{bottom:753.853333pt;}
.y88{bottom:754.013333pt;}
.yd0{bottom:756.893333pt;}
.y15{bottom:764.573333pt;}
.y4a{bottom:772.253333pt;}
.y87{bottom:772.413333pt;}
.ycf{bottom:773.693333pt;}
.y14{bottom:781.413333pt;}
.y49{bottom:790.693333pt;}
.y86{bottom:790.853333pt;}
.y13{bottom:798.373333pt;}
.yce{bottom:807.813333pt;}
.y48{bottom:809.093333pt;}
.y85{bottom:809.253333pt;}
.y12{bottom:815.173333pt;}
.y47{bottom:827.493333pt;}
.y84{bottom:827.653333pt;}
.y11{bottom:831.973333pt;}
.ycd{bottom:844.293333pt;}
.y72{bottom:845.893333pt;}
.y46{bottom:846.053333pt;}
.y10{bottom:848.933333pt;}
.ycc{bottom:861.093333pt;}
.y71{bottom:864.293333pt;}
.y45{bottom:864.453333pt;}
.yf{bottom:866.053333pt;}
.ycb{bottom:878.053333pt;}
.y70{bottom:882.693333pt;}
.y44{bottom:882.853333pt;}
.ye{bottom:884.933333pt;}
.yca{bottom:894.853333pt;}
.y6f{bottom:901.093333pt;}
.y43{bottom:901.253333pt;}
.yd{bottom:906.373333pt;}
.yc9{bottom:911.813333pt;}
.y6e{bottom:919.493333pt;}
.y42{bottom:919.653333pt;}
.yc{bottom:927.813333pt;}
.yc8{bottom:928.613333pt;}
.y6d{bottom:937.893333pt;}
.y41{bottom:938.053333pt;}
.yc7{bottom:945.413333pt;}
.yb{bottom:949.253333pt;}
.y40{bottom:956.453333pt;}
.yc6{bottom:962.373333pt;}
.ya{bottom:970.853333pt;}
.y3f{bottom:974.853333pt;}
.yc5{bottom:979.173333pt;}
.y7{bottom:991.333333pt;}
.y3e{bottom:993.253333pt;}
.yc4{bottom:996.133333pt;}
.y2{bottom:1005.893333pt;}
.y3d{bottom:1011.680000pt;}
.yc3{bottom:1012.960000pt;}
.y3c{bottom:1060.640000pt;}
.y1{bottom:1061.600000pt;}
.he{height:44.687500pt;}
.h6{height:44.735000pt;}
.h5{height:44.768125pt;}
.hc{height:48.530000pt;}
.h3{height:50.112000pt;}
.h7{height:52.134375pt;}
.hb{height:57.758750pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.hd{height:62.812500pt;}
.h9{height:64.500000pt;}
.hf{height:65.781915pt;}
.h4{height:72.069375pt;}
.h8{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:300.506667pt;}
.w4{width:326.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x3{left:-3.712000pt;}
.x0{left:0.000000pt;}
.xf{left:10.879988pt;}
.x2{left:79.392000pt;}
.x1{left:96.031988pt;}
.xc{left:97.951988pt;}
.x12{left:114.911988pt;}
.x8{left:123.551988pt;}
.x9{left:132.351988pt;}
.x11{left:133.786655pt;}
.x5{left:140.026667pt;}
.xb{left:165.946655pt;}
.x6{left:242.466667pt;}
.xd{left:331.906655pt;}
.xe{left:371.746655pt;}
.x4{left:379.906667pt;}
.x7{left:400.546655pt;}
.xa{left:407.106655pt;}
.x10{left:705.093322pt;}
}




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