
    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_c2bb0ee614830be871707697.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f6f7e200b0037a80a2ad5fa1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0ee11a866dd8df48a303da03.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_01f89581831331f31b4f6731.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fd185b435d02520f71eb3982.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f0e73b0bbae6cafa9988eac4.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_78ad6e87b144d6339dfe62ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_4783c5e28e1ded51a6be4cbe.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_af2b0b75076c710029df6ba1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_c91ec6dc1c5d58c624ff166f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.123047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-4.800000px;}
.ls12{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-0.408000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.024000px;}
.ls9{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.684000px;}
.lsd{letter-spacing:0.744000px;}
.lse{letter-spacing:0.864000px;}
.ls6{letter-spacing:2.400000px;}
.lsb{letter-spacing:6.000000px;}
.lsa{letter-spacing:7.260000px;}
.ls7{letter-spacing:8.400000px;}
.ls8{letter-spacing:8.460000px;}
.ls11{letter-spacing:138.384000px;}
.ls5{letter-spacing:161.448000px;}
.ls2{letter-spacing:171.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;}
}
.ws4{word-spacing:-60.000000px;}
.ws1{word-spacing:-21.000000px;}
.ws3{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.592000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-99.612000px;}
._19{margin-left:-98.556000px;}
._3{margin-left:-5.952000px;}
._12{margin-left:-4.500000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._4{width:3.042000px;}
._11{width:4.374000px;}
._10{width:5.472000px;}
._5{width:7.032000px;}
._14{width:8.106000px;}
._7{width:9.168000px;}
._6{width:10.980000px;}
._24{width:12.438000px;}
._18{width:13.464000px;}
._25{width:15.300000px;}
._1c{width:19.272000px;}
._1b{width:20.592000px;}
._f{width:22.680000px;}
._b{width:23.838000px;}
._a{width:24.840000px;}
._8{width:27.108000px;}
._9{width:28.164000px;}
._c{width:29.916000px;}
._d{width:30.996000px;}
._e{width:35.106000px;}
._16{width:39.528000px;}
._15{width:40.824000px;}
._17{width:42.258000px;}
._13{width:68.688000px;}
._1f{width:75.024000px;}
._21{width:89.064000px;}
._20{width:90.864000px;}
._23{width:101.304000px;}
._1d{width:105.804000px;}
._1e{width:118.332000px;}
._22{width:176.328000px;}
.fc15{color:rgb(19,161,14);}
.fc14{color:rgb(179,219,242);}
.fc13{color:rgb(49,210,247);}
.fc12{color:rgb(56,56,56);}
.fc10{color:rgb(166,166,166);}
.fcf{color:rgb(255,241,0);}
.fc18{color:rgb(235,163,0);}
.fce{color:rgb(136,108,228);}
.fc16{color:rgb(22,198,12);}
.fcd{color:rgb(242,242,242);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc4{color:rgb(255,200,61);}
.fc11{color:rgb(204,204,204);}
.fc9{color:rgb(117,117,117);}
.fcb{color:rgb(229,229,229);}
.fc6{color:rgb(240,58,23);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(247,137,74);}
.fc7{color:rgb(212,140,0);}
.fc17{color:rgb(255,185,0);}
.fc8{color:rgb(0,188,242);}
.fca{color:rgb(232,18,36);}
.fc1{color:rgb(0,112,192);}
.fcc{color:rgb(131,190,236);}
.fs4{font-size:39.600000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:6.885000px;}
.y54{bottom:6.900000px;}
.y50{bottom:6.915000px;}
.y4b{bottom:7.200000px;}
.y56{bottom:7.215000px;}
.y53{bottom:27.900000px;}
.y67{bottom:28.185000px;}
.y65{bottom:28.200000px;}
.y59{bottom:28.230000px;}
.y52{bottom:30.600000px;}
.y64{bottom:30.885000px;}
.y4a{bottom:30.900000px;}
.y4f{bottom:30.915000px;}
.y58{bottom:30.930000px;}
.y4e{bottom:51.945000px;}
.y4d{bottom:54.645000px;}
.y6{bottom:69.337500px;}
.y62{bottom:92.737500px;}
.y34{bottom:113.737500px;}
.y33{bottom:120.637500px;}
.y61{bottom:132.037500px;}
.y60{bottom:138.937500px;}
.y32{bottom:155.745000px;}
.y31{bottom:161.130000px;}
.y5f{bottom:173.775000px;}
.y30{bottom:176.475000px;}
.y5e{bottom:180.675000px;}
.y5d{bottom:215.475000px;}
.y2f{bottom:215.775000px;}
.y2e{bottom:222.675000px;}
.y2d{bottom:237.075000px;}
.y5c{bottom:254.775000px;}
.y5b{bottom:261.675000px;}
.y5a{bottom:276.375000px;}
.y2c{bottom:288.075000px;}
.y2b{bottom:311.775000px;}
.y57{bottom:312.675000px;}
.y2a{bottom:335.775000px;}
.y29{bottom:359.505000px;}
.y55{bottom:361.005000px;}
.y28{bottom:383.205000px;}
.y26{bottom:407.205000px;}
.y51{bottom:409.605000px;}
.y27{bottom:414.120000px;}
.y24{bottom:430.920000px;}
.y25{bottom:437.820000px;}
.y23{bottom:454.620000px;}
.y4c{bottom:457.905000px;}
.y22{bottom:478.620000px;}
.y21{bottom:502.305000px;}
.y7d{bottom:523.950000px;}
.y20{bottom:526.050000px;}
.y49{bottom:529.950000px;}
.y7c{bottom:547.650000px;}
.y1f{bottom:550.050000px;}
.y7b{bottom:571.350000px;}
.y1e{bottom:573.750000px;}
.y48{bottom:585.450000px;}
.y7a{bottom:595.350000px;}
.y1d{bottom:597.450000px;}
.y47{bottom:609.150000px;}
.y79{bottom:619.050000px;}
.y1c{bottom:621.450000px;}
.y45{bottom:634.050000px;}
.y46{bottom:640.950000px;}
.y78{bottom:643.050000px;}
.y1b{bottom:645.150000px;}
.y44{bottom:660.450000px;}
.y77{bottom:666.750000px;}
.y19{bottom:668.850000px;}
.y1a{bottom:675.750000px;}
.y43{bottom:684.480000px;}
.y76{bottom:690.480000px;}
.y18{bottom:692.880000px;}
.y42{bottom:708.180000px;}
.y75{bottom:714.480000px;}
.y17{bottom:716.580000px;}
.y41{bottom:731.880000px;}
.y74{bottom:738.180000px;}
.y16{bottom:740.280000px;}
.y40{bottom:755.880000px;}
.y73{bottom:761.880000px;}
.y15{bottom:764.280000px;}
.y3e{bottom:779.580000px;}
.y72{bottom:785.880000px;}
.y3f{bottom:786.480000px;}
.y14{bottom:787.995000px;}
.y3d{bottom:803.295000px;}
.y71{bottom:809.580000px;}
.y13{bottom:811.695000px;}
.y3c{bottom:827.295000px;}
.y70{bottom:833.295000px;}
.y12{bottom:835.695000px;}
.y3b{bottom:850.725000px;}
.y6f{bottom:857.325000px;}
.y11{bottom:859.425000px;}
.y3a{bottom:877.725000px;}
.y6e{bottom:881.025000px;}
.y10{bottom:883.125000px;}
.y39{bottom:901.125000px;}
.y6d{bottom:904.725000px;}
.yf{bottom:907.125000px;}
.y38{bottom:928.125000px;}
.y6c{bottom:928.725000px;}
.ye{bottom:930.825000px;}
.y37{bottom:951.825000px;}
.y6b{bottom:952.425000px;}
.yd{bottom:954.525000px;}
.y36{bottom:975.525000px;}
.y6a{bottom:976.125000px;}
.yc{bottom:978.525000px;}
.y69{bottom:1000.125000px;}
.yb{bottom:1002.225000px;}
.y66{bottom:1017.570000px;}
.ya{bottom:1025.955000px;}
.y9{bottom:1049.955000px;}
.y63{bottom:1065.870000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y35{bottom:1104.570000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.hb{height:39.387305px;}
.h2{height:42.333984px;}
.h9{height:47.109375px;}
.hf{height:47.400000px;}
.hd{height:47.700000px;}
.h10{height:47.737500px;}
.h7{height:50.273438px;}
.ha{height:59.677734px;}
.h3{height:60.468750px;}
.h8{height:70.664062px;}
.he{height:71.437500px;}
.h6{height:72.562500px;}
.h11{height:74.004654px;}
.h5{height:82.441406px;}
.h4{height:84.656250px;}
.hc{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:174.645000px;}
.w5{width:174.675000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.800000px;}
.x20{left:15.600000px;}
.x1c{left:19.800000px;}
.x19{left:41.700000px;}
.x1e{left:45.600000px;}
.x1a{left:53.700000px;}
.x3{left:84.937487px;}
.x12{left:90.937487px;}
.x17{left:226.574973px;}
.x18{left:233.774987px;}
.xa{left:239.474987px;}
.x6{left:250.874987px;}
.x1b{left:261.075000px;}
.x9{left:295.619987px;}
.x11{left:301.019987px;}
.x13{left:326.519973px;}
.x8{left:328.619987px;}
.x22{left:344.504987px;}
.x14{left:347.519987px;}
.x4{left:350.819987px;}
.x5{left:425.549987px;}
.x1d{left:436.350000px;}
.x7{left:446.249987px;}
.x2{left:457.049987px;}
.x15{left:464.549973px;}
.x16{left:470.549987px;}
.x1{left:510.449987px;}
.xf{left:571.394973px;}
.x10{left:577.379987px;}
.x1f{left:611.595000px;}
.xd{left:708.524973px;}
.xe{left:714.524987px;}
.xb{left:720.824973px;}
.xc{left:726.824987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-4.266667pt;}
.ls12{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-0.362667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls9{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.608000pt;}
.lsd{letter-spacing:0.661333pt;}
.lse{letter-spacing:0.768000pt;}
.ls6{letter-spacing:2.133333pt;}
.lsb{letter-spacing:5.333333pt;}
.lsa{letter-spacing:6.453333pt;}
.ls7{letter-spacing:7.466667pt;}
.ls8{letter-spacing:7.520000pt;}
.ls11{letter-spacing:123.008000pt;}
.ls5{letter-spacing:143.509333pt;}
.ls2{letter-spacing:152.640000pt;}
.ws4{word-spacing:-53.333333pt;}
.ws1{word-spacing:-18.666667pt;}
.ws3{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.637333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-88.544000pt;}
._19{margin-left:-87.605333pt;}
._3{margin-left:-5.290667pt;}
._12{margin-left:-4.000000pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._4{width:2.704000pt;}
._11{width:3.888000pt;}
._10{width:4.864000pt;}
._5{width:6.250667pt;}
._14{width:7.205333pt;}
._7{width:8.149333pt;}
._6{width:9.760000pt;}
._24{width:11.056000pt;}
._18{width:11.968000pt;}
._25{width:13.600000pt;}
._1c{width:17.130667pt;}
._1b{width:18.304000pt;}
._f{width:20.160000pt;}
._b{width:21.189333pt;}
._a{width:22.080000pt;}
._8{width:24.096000pt;}
._9{width:25.034667pt;}
._c{width:26.592000pt;}
._d{width:27.552000pt;}
._e{width:31.205333pt;}
._16{width:35.136000pt;}
._15{width:36.288000pt;}
._17{width:37.562667pt;}
._13{width:61.056000pt;}
._1f{width:66.688000pt;}
._21{width:79.168000pt;}
._20{width:80.768000pt;}
._23{width:90.048000pt;}
._1d{width:94.048000pt;}
._1e{width:105.184000pt;}
._22{width:156.736000pt;}
.fs4{font-size:35.200000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:6.120000pt;}
.y54{bottom:6.133333pt;}
.y50{bottom:6.146667pt;}
.y4b{bottom:6.400000pt;}
.y56{bottom:6.413333pt;}
.y53{bottom:24.800000pt;}
.y67{bottom:25.053333pt;}
.y65{bottom:25.066667pt;}
.y59{bottom:25.093333pt;}
.y52{bottom:27.200000pt;}
.y64{bottom:27.453333pt;}
.y4a{bottom:27.466667pt;}
.y4f{bottom:27.480000pt;}
.y58{bottom:27.493333pt;}
.y4e{bottom:46.173333pt;}
.y4d{bottom:48.573333pt;}
.y6{bottom:61.633333pt;}
.y62{bottom:82.433333pt;}
.y34{bottom:101.100000pt;}
.y33{bottom:107.233333pt;}
.y61{bottom:117.366667pt;}
.y60{bottom:123.500000pt;}
.y32{bottom:138.440000pt;}
.y31{bottom:143.226667pt;}
.y5f{bottom:154.466667pt;}
.y30{bottom:156.866667pt;}
.y5e{bottom:160.600000pt;}
.y5d{bottom:191.533333pt;}
.y2f{bottom:191.800000pt;}
.y2e{bottom:197.933333pt;}
.y2d{bottom:210.733333pt;}
.y5c{bottom:226.466667pt;}
.y5b{bottom:232.600000pt;}
.y5a{bottom:245.666667pt;}
.y2c{bottom:256.066667pt;}
.y2b{bottom:277.133333pt;}
.y57{bottom:277.933333pt;}
.y2a{bottom:298.466667pt;}
.y29{bottom:319.560000pt;}
.y55{bottom:320.893333pt;}
.y28{bottom:340.626667pt;}
.y26{bottom:361.960000pt;}
.y51{bottom:364.093333pt;}
.y27{bottom:368.106667pt;}
.y24{bottom:383.040000pt;}
.y25{bottom:389.173333pt;}
.y23{bottom:404.106667pt;}
.y4c{bottom:407.026667pt;}
.y22{bottom:425.440000pt;}
.y21{bottom:446.493333pt;}
.y7d{bottom:465.733333pt;}
.y20{bottom:467.600000pt;}
.y49{bottom:471.066667pt;}
.y7c{bottom:486.800000pt;}
.y1f{bottom:488.933333pt;}
.y7b{bottom:507.866667pt;}
.y1e{bottom:510.000000pt;}
.y48{bottom:520.400000pt;}
.y7a{bottom:529.200000pt;}
.y1d{bottom:531.066667pt;}
.y47{bottom:541.466667pt;}
.y79{bottom:550.266667pt;}
.y1c{bottom:552.400000pt;}
.y45{bottom:563.600000pt;}
.y46{bottom:569.733333pt;}
.y78{bottom:571.600000pt;}
.y1b{bottom:573.466667pt;}
.y44{bottom:587.066667pt;}
.y77{bottom:592.666667pt;}
.y19{bottom:594.533333pt;}
.y1a{bottom:600.666667pt;}
.y43{bottom:608.426667pt;}
.y76{bottom:613.760000pt;}
.y18{bottom:615.893333pt;}
.y42{bottom:629.493333pt;}
.y75{bottom:635.093333pt;}
.y17{bottom:636.960000pt;}
.y41{bottom:650.560000pt;}
.y74{bottom:656.160000pt;}
.y16{bottom:658.026667pt;}
.y40{bottom:671.893333pt;}
.y73{bottom:677.226667pt;}
.y15{bottom:679.360000pt;}
.y3e{bottom:692.960000pt;}
.y72{bottom:698.560000pt;}
.y3f{bottom:699.093333pt;}
.y14{bottom:700.440000pt;}
.y3d{bottom:714.040000pt;}
.y71{bottom:719.626667pt;}
.y13{bottom:721.506667pt;}
.y3c{bottom:735.373333pt;}
.y70{bottom:740.706667pt;}
.y12{bottom:742.840000pt;}
.y3b{bottom:756.200000pt;}
.y6f{bottom:762.066667pt;}
.y11{bottom:763.933333pt;}
.y3a{bottom:780.200000pt;}
.y6e{bottom:783.133333pt;}
.y10{bottom:785.000000pt;}
.y39{bottom:801.000000pt;}
.y6d{bottom:804.200000pt;}
.yf{bottom:806.333333pt;}
.y38{bottom:825.000000pt;}
.y6c{bottom:825.533333pt;}
.ye{bottom:827.400000pt;}
.y37{bottom:846.066667pt;}
.y6b{bottom:846.600000pt;}
.yd{bottom:848.466667pt;}
.y36{bottom:867.133333pt;}
.y6a{bottom:867.666667pt;}
.yc{bottom:869.800000pt;}
.y69{bottom:889.000000pt;}
.yb{bottom:890.866667pt;}
.y66{bottom:904.506667pt;}
.ya{bottom:911.960000pt;}
.y9{bottom:933.293333pt;}
.y63{bottom:947.440000pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y35{bottom:981.840000pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.hb{height:35.010937pt;}
.h2{height:37.630208pt;}
.h9{height:41.875000pt;}
.hf{height:42.133333pt;}
.hd{height:42.400000pt;}
.h10{height:42.433333pt;}
.h7{height:44.687500pt;}
.ha{height:53.046875pt;}
.h3{height:53.750000pt;}
.h8{height:62.812500pt;}
.he{height:63.500000pt;}
.h6{height:64.500000pt;}
.h11{height:65.781915pt;}
.h5{height:73.281250pt;}
.h4{height:75.250000pt;}
.hc{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:155.240000pt;}
.w5{width:155.266667pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.933333pt;}
.x20{left:13.866667pt;}
.x1c{left:17.600000pt;}
.x19{left:37.066667pt;}
.x1e{left:40.533333pt;}
.x1a{left:47.733333pt;}
.x3{left:75.499988pt;}
.x12{left:80.833322pt;}
.x17{left:201.399976pt;}
.x18{left:207.799988pt;}
.xa{left:212.866655pt;}
.x6{left:222.999988pt;}
.x1b{left:232.066667pt;}
.x9{left:262.773322pt;}
.x11{left:267.573322pt;}
.x13{left:290.239976pt;}
.x8{left:292.106655pt;}
.x22{left:306.226655pt;}
.x14{left:308.906655pt;}
.x4{left:311.839988pt;}
.x5{left:378.266655pt;}
.x1d{left:387.866667pt;}
.x7{left:396.666655pt;}
.x2{left:406.266655pt;}
.x15{left:412.933310pt;}
.x16{left:418.266655pt;}
.x1{left:453.733322pt;}
.xf{left:507.906643pt;}
.x10{left:513.226655pt;}
.x1f{left:543.640000pt;}
.xd{left:629.799976pt;}
.xe{left:635.133322pt;}
.xb{left:640.733310pt;}
.xc{left:646.066655pt;}
}




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