
    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_4a84c3d24dc0fbe0f2b31bd9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_83b582bc1d57c0376d459650.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f33dda49a0aba6f06393117d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fef5eac8cded14344e6c5f52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_00b115d47ce3a8dee081e417.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_a0557656ce0634f97ef2228b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_d1baa098c531567ccd7a85ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_bb66b8b2ac6ab0fe975576a6.woff2')format("woff");}.ff8{font-family:ff8;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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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;}
.ls35{letter-spacing:-1.956000px;}
.lse{letter-spacing:-1.182000px;}
.ls7{letter-spacing:-1.176000px;}
.ls38{letter-spacing:-1.080000px;}
.ls36{letter-spacing:-0.774000px;}
.ls30{letter-spacing:-0.666000px;}
.ls1c{letter-spacing:-0.612000px;}
.ls34{letter-spacing:-0.513600px;}
.ls8{letter-spacing:-0.460200px;}
.ls18{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls26{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.153600px;}
.ls1a{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls2d{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.460200px;}
.ls31{letter-spacing:0.466800px;}
.ls11{letter-spacing:0.513600px;}
.ls33{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.774000px;}
.lsb{letter-spacing:0.828000px;}
.lsd{letter-spacing:0.900000px;}
.ls32{letter-spacing:0.924000px;}
.lsc{letter-spacing:1.080000px;}
.ls4{letter-spacing:2.340000px;}
.ls1{letter-spacing:3.060000px;}
.ls20{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.500000px;}
.ls27{letter-spacing:5.220000px;}
.ls23{letter-spacing:5.940000px;}
.ls2a{letter-spacing:6.660000px;}
.ls24{letter-spacing:6.780000px;}
.ls28{letter-spacing:7.146720px;}
.ls16{letter-spacing:7.380000px;}
.ls37{letter-spacing:8.100000px;}
.ls22{letter-spacing:8.820000px;}
.ls1e{letter-spacing:10.746720px;}
.ls2c{letter-spacing:11.466720px;}
.ls2{letter-spacing:11.700000px;}
.ls2b{letter-spacing:12.420000px;}
.ls14{letter-spacing:14.580000px;}
.ls29{letter-spacing:15.066720px;}
.ls25{letter-spacing:17.226720px;}
.ls1f{letter-spacing:20.106720px;}
.ls2e{letter-spacing:20.988000px;}
.ls0{letter-spacing:27.306720px;}
.ls1b{letter-spacing:30.906720px;}
.ls1d{letter-spacing:35.370720px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.020000px;}
.ws1a{word-spacing:-15.864000px;}
.ws7{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.714000px;}
.wsb{word-spacing:-15.606000px;}
.ws1b{word-spacing:-15.552000px;}
.ws18{word-spacing:-15.453600px;}
.ws19{word-spacing:-15.406800px;}
.ws16{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.093600px;}
.ws12{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws15{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.680200px;}
.ws11{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.426400px;}
.ws13{word-spacing:-14.328000px;}
.ws17{word-spacing:-14.274000px;}
.ws20{word-spacing:-14.166000px;}
.ws1e{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.758000px;}
.ws1f{word-spacing:-12.984000px;}
.wse{word-spacing:0.000000px;}
._2{margin-left:-2540.365200px;}
._3{margin-left:-1446.671520px;}
._5{margin-left:-1441.504320px;}
._4{margin-left:-994.312800px;}
._6{margin-left:-591.280560px;}
._7{margin-left:-8.036160px;}
._21{margin-left:-5.788560px;}
._8{margin-left:-4.364400px;}
._16{margin-left:-2.633280px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._13{width:2.390400px;}
._e{width:3.648480px;}
._12{width:5.378400px;}
._15{width:6.795120px;}
._14{width:8.605440px;}
._b{width:9.846960px;}
._c{width:11.285040px;}
._d{width:12.579360px;}
._17{width:13.815840px;}
._10{width:16.805280px;}
._f{width:17.910720px;}
._11{width:19.117920px;}
._19{width:20.182560px;}
._18{width:21.214800px;}
._1a{width:22.301760px;}
._1d{width:23.786400px;}
._1b{width:25.317360px;}
._1c{width:26.353200px;}
._9{width:28.436160px;}
._22{width:29.756640px;}
._1f{width:32.729760px;}
._20{width:33.984720px;}
._1e{width:43.793040px;}
._a{width:1234.880880px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y80{bottom:35.280000px;}
.y7f{bottom:55.116000px;}
.y7c{bottom:59.256000px;}
.y6{bottom:60.660000px;}
.y7e{bottom:75.090000px;}
.y7b{bottom:81.360000px;}
.y6c{bottom:88.560000px;}
.y34{bottom:89.460000px;}
.y7d{bottom:94.890000px;}
.y76{bottom:99.360000px;}
.y6b{bottom:108.360000px;}
.y33{bottom:109.440000px;}
.y75{bottom:119.160000px;}
.y6a{bottom:128.196000px;}
.y32{bottom:129.276000px;}
.y74{bottom:139.176000px;}
.y69{bottom:148.176000px;}
.y31{bottom:149.076000px;}
.y73{bottom:158.970000px;}
.y78{bottom:167.610000px;}
.y68{bottom:167.970000px;}
.y30{bottom:168.870000px;}
.y72{bottom:178.410000px;}
.y67{bottom:187.770000px;}
.y2f{bottom:188.670000px;}
.y71{bottom:198.210000px;}
.y66{bottom:207.570000px;}
.y2e{bottom:208.650000px;}
.y65{bottom:227.370000px;}
.y2d{bottom:228.450000px;}
.y64{bottom:247.350000px;}
.y2c{bottom:248.250000px;}
.y63{bottom:267.150000px;}
.y2b{bottom:268.050000px;}
.y62{bottom:286.950000px;}
.y2a{bottom:287.850000px;}
.y61{bottom:306.750000px;}
.y29{bottom:307.830000px;}
.y70{bottom:326.190000px;}
.y60{bottom:326.550000px;}
.y28{bottom:327.630000px;}
.y6f{bottom:346.170000px;}
.y5f{bottom:346.530000px;}
.y27{bottom:347.430000px;}
.y5e{bottom:366.330000px;}
.y26{bottom:367.230000px;}
.y5d{bottom:386.175000px;}
.y25{bottom:387.075000px;}
.y5c{bottom:405.975000px;}
.y24{bottom:407.055000px;}
.y5b{bottom:425.775000px;}
.y23{bottom:426.855000px;}
.y5a{bottom:445.755000px;}
.y22{bottom:446.655000px;}
.y77{bottom:465.195000px;}
.y59{bottom:465.555000px;}
.y21{bottom:466.455000px;}
.y58{bottom:485.355000px;}
.y20{bottom:486.255000px;}
.y57{bottom:505.155000px;}
.y1f{bottom:506.235000px;}
.y7a{bottom:522.975000px;}
.y56{bottom:524.955000px;}
.y1e{bottom:526.035000px;}
.y79{bottom:543.675000px;}
.y55{bottom:544.935000px;}
.y1d{bottom:545.835000px;}
.y54{bottom:564.735000px;}
.y1c{bottom:565.635000px;}
.y53{bottom:584.535000px;}
.y1b{bottom:585.435000px;}
.y52{bottom:604.335000px;}
.y1a{bottom:605.055000px;}
.y6e{bottom:623.775000px;}
.y51{bottom:624.135000px;}
.y19{bottom:625.215000px;}
.y50{bottom:644.145000px;}
.y18{bottom:647.205000px;}
.y4f{bottom:663.945000px;}
.y17{bottom:676.185000px;}
.y6d{bottom:683.385000px;}
.y4e{bottom:683.745000px;}
.y16{bottom:695.985000px;}
.y4d{bottom:703.545000px;}
.y15{bottom:715.785000px;}
.y4c{bottom:723.345000px;}
.y14{bottom:735.585000px;}
.y4b{bottom:743.325000px;}
.y13{bottom:755.385000px;}
.y4a{bottom:763.125000px;}
.y12{bottom:775.365000px;}
.y49{bottom:782.925000px;}
.y11{bottom:795.165000px;}
.y48{bottom:802.725000px;}
.y10{bottom:814.965000px;}
.y47{bottom:822.525000px;}
.yf{bottom:834.765000px;}
.y46{bottom:842.505000px;}
.ye{bottom:854.565000px;}
.y45{bottom:862.305000px;}
.yd{bottom:874.545000px;}
.y44{bottom:882.105000px;}
.yc{bottom:896.550000px;}
.y43{bottom:901.950000px;}
.yb{bottom:916.530000px;}
.y42{bottom:921.750000px;}
.ya{bottom:936.690000px;}
.y41{bottom:941.730000px;}
.y9{bottom:957.750000px;}
.y40{bottom:961.530000px;}
.y8{bottom:981.150000px;}
.y3f{bottom:981.330000px;}
.y3e{bottom:1001.130000px;}
.y7{bottom:1013.010000px;}
.y3d{bottom:1020.930000px;}
.y3c{bottom:1040.910000px;}
.y5{bottom:1051.890000px;}
.y3b{bottom:1060.710000px;}
.y3a{bottom:1080.510000px;}
.y4{bottom:1082.670000px;}
.y39{bottom:1100.310000px;}
.y3{bottom:1113.450000px;}
.y38{bottom:1120.110000px;}
.y37{bottom:1140.120000px;}
.y2{bottom:1144.080000px;}
.y36{bottom:1170.360000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.580000px;}
.hc{height:2.826563px;}
.h9{height:43.215117px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h7{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h8{height:67.824844px;}
.h2{height:96.508125px;}
.hb{height:108.576000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:212.295000px;}
.w4{width:585.645000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x20{left:7.740000px;}
.x1d{left:45.900000px;}
.x1{left:54.179987px;}
.x4{left:74.339987px;}
.x5{left:80.999987px;}
.x6{left:101.375987px;}
.x7{left:155.909987px;}
.x8{left:167.429987px;}
.x9{left:182.009987px;}
.x1e{left:191.370000px;}
.xa{left:193.529987px;}
.xb{left:237.629987px;}
.xc{left:249.149987px;}
.x1f{left:258.195000px;}
.xd{left:294.194987px;}
.xe{left:305.714987px;}
.xf{left:330.734987px;}
.x10{left:342.254987px;}
.x11{left:365.654987px;}
.x12{left:377.354987px;}
.x13{left:389.054987px;}
.x14{left:400.574987px;}
.x15{left:489.884987px;}
.x16{left:501.584987px;}
.x17{left:557.744987px;}
.x18{left:569.264987px;}
.x19{left:595.229987px;}
.x1a{left:606.929987px;}
.x1b{left:638.249987px;}
.x1c{left:649.769987px;}
.x2{left:724.109987px;}
.x3{left:737.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls35{letter-spacing:-1.738667pt;}
.lse{letter-spacing:-1.050667pt;}
.ls7{letter-spacing:-1.045333pt;}
.ls38{letter-spacing:-0.960000pt;}
.ls36{letter-spacing:-0.688000pt;}
.ls30{letter-spacing:-0.592000pt;}
.ls1c{letter-spacing:-0.544000pt;}
.ls34{letter-spacing:-0.456533pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls26{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.136533pt;}
.ls1a{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2d{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.409067pt;}
.ls31{letter-spacing:0.414933pt;}
.ls11{letter-spacing:0.456533pt;}
.ls33{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.688000pt;}
.lsb{letter-spacing:0.736000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls32{letter-spacing:0.821333pt;}
.lsc{letter-spacing:0.960000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls1{letter-spacing:2.720000pt;}
.ls20{letter-spacing:3.360000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls27{letter-spacing:4.640000pt;}
.ls23{letter-spacing:5.280000pt;}
.ls2a{letter-spacing:5.920000pt;}
.ls24{letter-spacing:6.026667pt;}
.ls28{letter-spacing:6.352640pt;}
.ls16{letter-spacing:6.560000pt;}
.ls37{letter-spacing:7.200000pt;}
.ls22{letter-spacing:7.840000pt;}
.ls1e{letter-spacing:9.552640pt;}
.ls2c{letter-spacing:10.192640pt;}
.ls2{letter-spacing:10.400000pt;}
.ls2b{letter-spacing:11.040000pt;}
.ls14{letter-spacing:12.960000pt;}
.ls29{letter-spacing:13.392640pt;}
.ls25{letter-spacing:15.312640pt;}
.ls1f{letter-spacing:17.872640pt;}
.ls2e{letter-spacing:18.656000pt;}
.ls0{letter-spacing:24.272640pt;}
.ls1b{letter-spacing:27.472640pt;}
.ls1d{letter-spacing:31.440640pt;}
.wsf{word-spacing:-58.880000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.240000pt;}
.ws1a{word-spacing:-14.101333pt;}
.ws7{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.968000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws1b{word-spacing:-13.824000pt;}
.ws18{word-spacing:-13.736533pt;}
.ws19{word-spacing:-13.694933pt;}
.ws16{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.416533pt;}
.ws12{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws15{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.ws14{word-spacing:-13.049067pt;}
.ws11{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.823467pt;}
.ws13{word-spacing:-12.736000pt;}
.ws17{word-spacing:-12.688000pt;}
.ws20{word-spacing:-12.592000pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.229333pt;}
.ws1f{word-spacing:-11.541333pt;}
.wse{word-spacing:0.000000pt;}
._2{margin-left:-2258.102400pt;}
._3{margin-left:-1285.930240pt;}
._5{margin-left:-1281.337173pt;}
._4{margin-left:-883.833600pt;}
._6{margin-left:-525.582720pt;}
._7{margin-left:-7.143253pt;}
._21{margin-left:-5.145387pt;}
._8{margin-left:-3.879467pt;}
._16{margin-left:-2.340693pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._13{width:2.124800pt;}
._e{width:3.243093pt;}
._12{width:4.780800pt;}
._15{width:6.040107pt;}
._14{width:7.649280pt;}
._b{width:8.752853pt;}
._c{width:10.031147pt;}
._d{width:11.181653pt;}
._17{width:12.280747pt;}
._10{width:14.938027pt;}
._f{width:15.920640pt;}
._11{width:16.993707pt;}
._19{width:17.940053pt;}
._18{width:18.857600pt;}
._1a{width:19.823787pt;}
._1d{width:21.143467pt;}
._1b{width:22.504320pt;}
._1c{width:23.425067pt;}
._9{width:25.276587pt;}
._22{width:26.450347pt;}
._1f{width:29.093120pt;}
._20{width:30.208640pt;}
._1e{width:38.927147pt;}
._a{width:1097.671893pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:31.360000pt;}
.y7f{bottom:48.992000pt;}
.y7c{bottom:52.672000pt;}
.y6{bottom:53.920000pt;}
.y7e{bottom:66.746667pt;}
.y7b{bottom:72.320000pt;}
.y6c{bottom:78.720000pt;}
.y34{bottom:79.520000pt;}
.y7d{bottom:84.346667pt;}
.y76{bottom:88.320000pt;}
.y6b{bottom:96.320000pt;}
.y33{bottom:97.280000pt;}
.y75{bottom:105.920000pt;}
.y6a{bottom:113.952000pt;}
.y32{bottom:114.912000pt;}
.y74{bottom:123.712000pt;}
.y69{bottom:131.712000pt;}
.y31{bottom:132.512000pt;}
.y73{bottom:141.306667pt;}
.y78{bottom:148.986667pt;}
.y68{bottom:149.306667pt;}
.y30{bottom:150.106667pt;}
.y72{bottom:158.586667pt;}
.y67{bottom:166.906667pt;}
.y2f{bottom:167.706667pt;}
.y71{bottom:176.186667pt;}
.y66{bottom:184.506667pt;}
.y2e{bottom:185.466667pt;}
.y65{bottom:202.106667pt;}
.y2d{bottom:203.066667pt;}
.y64{bottom:219.866667pt;}
.y2c{bottom:220.666667pt;}
.y63{bottom:237.466667pt;}
.y2b{bottom:238.266667pt;}
.y62{bottom:255.066667pt;}
.y2a{bottom:255.866667pt;}
.y61{bottom:272.666667pt;}
.y29{bottom:273.626667pt;}
.y70{bottom:289.946667pt;}
.y60{bottom:290.266667pt;}
.y28{bottom:291.226667pt;}
.y6f{bottom:307.706667pt;}
.y5f{bottom:308.026667pt;}
.y27{bottom:308.826667pt;}
.y5e{bottom:325.626667pt;}
.y26{bottom:326.426667pt;}
.y5d{bottom:343.266667pt;}
.y25{bottom:344.066667pt;}
.y5c{bottom:360.866667pt;}
.y24{bottom:361.826667pt;}
.y5b{bottom:378.466667pt;}
.y23{bottom:379.426667pt;}
.y5a{bottom:396.226667pt;}
.y22{bottom:397.026667pt;}
.y77{bottom:413.506667pt;}
.y59{bottom:413.826667pt;}
.y21{bottom:414.626667pt;}
.y58{bottom:431.426667pt;}
.y20{bottom:432.226667pt;}
.y57{bottom:449.026667pt;}
.y1f{bottom:449.986667pt;}
.y7a{bottom:464.866667pt;}
.y56{bottom:466.626667pt;}
.y1e{bottom:467.586667pt;}
.y79{bottom:483.266667pt;}
.y55{bottom:484.386667pt;}
.y1d{bottom:485.186667pt;}
.y54{bottom:501.986667pt;}
.y1c{bottom:502.786667pt;}
.y53{bottom:519.586667pt;}
.y1b{bottom:520.386667pt;}
.y52{bottom:537.186667pt;}
.y1a{bottom:537.826667pt;}
.y6e{bottom:554.466667pt;}
.y51{bottom:554.786667pt;}
.y19{bottom:555.746667pt;}
.y50{bottom:572.573333pt;}
.y18{bottom:575.293333pt;}
.y4f{bottom:590.173333pt;}
.y17{bottom:601.053333pt;}
.y6d{bottom:607.453333pt;}
.y4e{bottom:607.773333pt;}
.y16{bottom:618.653333pt;}
.y4d{bottom:625.373333pt;}
.y15{bottom:636.253333pt;}
.y4c{bottom:642.973333pt;}
.y14{bottom:653.853333pt;}
.y4b{bottom:660.733333pt;}
.y13{bottom:671.453333pt;}
.y4a{bottom:678.333333pt;}
.y12{bottom:689.213333pt;}
.y49{bottom:695.933333pt;}
.y11{bottom:706.813333pt;}
.y48{bottom:713.533333pt;}
.y10{bottom:724.413333pt;}
.y47{bottom:731.133333pt;}
.yf{bottom:742.013333pt;}
.y46{bottom:748.893333pt;}
.ye{bottom:759.613333pt;}
.y45{bottom:766.493333pt;}
.yd{bottom:777.373333pt;}
.y44{bottom:784.093333pt;}
.yc{bottom:796.933333pt;}
.y43{bottom:801.733333pt;}
.yb{bottom:814.693333pt;}
.y42{bottom:819.333333pt;}
.ya{bottom:832.613333pt;}
.y41{bottom:837.093333pt;}
.y9{bottom:851.333333pt;}
.y40{bottom:854.693333pt;}
.y8{bottom:872.133333pt;}
.y3f{bottom:872.293333pt;}
.y3e{bottom:889.893333pt;}
.y7{bottom:900.453333pt;}
.y3d{bottom:907.493333pt;}
.y3c{bottom:925.253333pt;}
.y5{bottom:935.013333pt;}
.y3b{bottom:942.853333pt;}
.y3a{bottom:960.453333pt;}
.y4{bottom:962.373333pt;}
.y39{bottom:978.053333pt;}
.y3{bottom:989.733333pt;}
.y38{bottom:995.653333pt;}
.y37{bottom:1013.440000pt;}
.y2{bottom:1016.960000pt;}
.y36{bottom:1040.320000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.960000pt;}
.hc{height:2.512500pt;}
.h9{height:38.413438pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h7{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h8{height:60.288750pt;}
.h2{height:85.785000pt;}
.hb{height:96.512000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:188.706667pt;}
.w4{width:520.573333pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x20{left:6.880000pt;}
.x1d{left:40.800000pt;}
.x1{left:48.159988pt;}
.x4{left:66.079988pt;}
.x5{left:71.999988pt;}
.x6{left:90.111988pt;}
.x7{left:138.586655pt;}
.x8{left:148.826655pt;}
.x9{left:161.786655pt;}
.x1e{left:170.106667pt;}
.xa{left:172.026655pt;}
.xb{left:211.226655pt;}
.xc{left:221.466655pt;}
.x1f{left:229.506667pt;}
.xd{left:261.506655pt;}
.xe{left:271.746655pt;}
.xf{left:293.986655pt;}
.x10{left:304.226655pt;}
.x11{left:325.026655pt;}
.x12{left:335.426655pt;}
.x13{left:345.826655pt;}
.x14{left:356.066655pt;}
.x15{left:435.453321pt;}
.x16{left:445.853321pt;}
.x17{left:495.773322pt;}
.x18{left:506.013322pt;}
.x19{left:529.093322pt;}
.x1a{left:539.493322pt;}
.x1b{left:567.333322pt;}
.x1c{left:577.573322pt;}
.x2{left:643.653322pt;}
.x3{left:655.173321pt;}
}




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