
    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_8de9ae1ecfbb9f0b1ce15032.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963867;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_b5a3054b914fa885466359f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.086914;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_3cb426ce875f10dc118ed1c0.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_33ef1f4be1d42caea71e00fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.089844;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_efe18e3b228f67699a352bab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b4c6caf1e71151798d046201.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_c5445126b0f9d99e09a49edd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_9c2aea2f9e3efaa0807657ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090332;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_c95fc1dde3a0c6e448c8a22b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.852539;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_465d26222624764edbc72479.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.945801;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_806f0188146e8034a75daf2a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c846bf261047709df5c45da7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_54390cbc81758c13bc0750ee.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls3{letter-spacing:-0.834000px;}
.ls14{letter-spacing:-0.295200px;}
.ls12{letter-spacing:-0.243600px;}
.ls6{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108600px;}
.ls1{letter-spacing:0.108720px;}
.ls9{letter-spacing:0.128880px;}
.ls4{letter-spacing:0.137400px;}
.lsa{letter-spacing:0.188640px;}
.ls13{letter-spacing:0.288600px;}
.lsc{letter-spacing:0.288720px;}
.lse{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.348480px;}
.ls8{letter-spacing:5.273280px;}
.ls10{letter-spacing:6.600000px;}
.lsd{letter-spacing:10.200000px;}
.lsf{letter-spacing:11.640000px;}
.ls11{letter-spacing:22.440000px;}
.ls7{letter-spacing:704.178000px;}
.ls0{letter-spacing:717.858000px;}
.ls15{letter-spacing:845.825280px;}
.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;}
}
.ws1{word-spacing:-13.446720px;}
.ws2{word-spacing:-12.268680px;}
.ws3{word-spacing:-12.131280px;}
.ws8{word-spacing:-11.887680px;}
.ws0{word-spacing:-8.477280px;}
.ws7{word-spacing:-7.632000px;}
.ws4{word-spacing:-7.200000px;}
.ws5{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-9.602880px;}
._10{margin-left:-7.254960px;}
._8{margin-left:-5.315520px;}
._7{margin-left:-4.148640px;}
._5{margin-left:-3.035760px;}
._2{margin-left:-1.447200px;}
._4{width:1.572480px;}
._19{width:2.610720px;}
._9{width:3.764880px;}
._a{width:4.998000px;}
._b{width:6.632640px;}
._c{width:7.685760px;}
._f{width:8.901120px;}
._e{width:10.172160px;}
._18{width:13.804560px;}
._22{width:15.046560px;}
._d{width:16.176240px;}
._1e{width:18.226800px;}
._20{width:19.356480px;}
._16{width:20.975760px;}
._15{width:22.350240px;}
._14{width:24.322320px;}
._1f{width:25.763040px;}
._17{width:27.138240px;}
._21{width:28.146960px;}
._23{width:30.298320px;}
._1d{width:31.553280px;}
._27{width:32.940720px;}
._28{width:34.391520px;}
._24{width:35.826480px;}
._25{width:36.919440px;}
._3{width:140.012640px;}
._0{width:147.888000px;}
._1c{width:153.692640px;}
._1{width:181.848000px;}
._12{width:352.297680px;}
._11{width:413.400240px;}
._1b{width:696.308160px;}
._13{width:740.340720px;}
._1a{width:927.503040px;}
._26{width:1003.208160px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(15,158,213);}
.fsa{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:50.848916px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:56.520000px;}
.y35{bottom:150.690000px;}
.y2b{bottom:151.590000px;}
.y5a{bottom:162.210000px;}
.y34{bottom:170.490000px;}
.y2a{bottom:171.390000px;}
.y59{bottom:176.970000px;}
.y33{bottom:190.110000px;}
.y29{bottom:191.190000px;}
.y7f{bottom:191.910000px;}
.y58{bottom:202.710000px;}
.y32{bottom:209.910000px;}
.y7e{bottom:210.270000px;}
.y28{bottom:210.990000px;}
.y57{bottom:222.510000px;}
.y7d{bottom:228.450000px;}
.y31{bottom:229.710000px;}
.ya4{bottom:230.070000px;}
.y27{bottom:230.790000px;}
.y56{bottom:242.130000px;}
.ya3{bottom:244.830000px;}
.y7c{bottom:248.250000px;}
.y26{bottom:250.410000px;}
.y30{bottom:258.510000px;}
.ya2{bottom:259.410000px;}
.y55{bottom:261.930000px;}
.y25{bottom:270.210000px;}
.ya1{bottom:274.170000px;}
.y7b{bottom:275.610000px;}
.y2f{bottom:278.130000px;}
.y54{bottom:281.730000px;}
.ya0{bottom:288.750000px;}
.y24{bottom:290.010000px;}
.y7a{bottom:293.970000px;}
.y2e{bottom:297.930000px;}
.y9f{bottom:303.510000px;}
.y23{bottom:309.810000px;}
.y53{bottom:310.530000px;}
.y79{bottom:312.150000px;}
.y2d{bottom:317.730000px;}
.y9e{bottom:318.090000px;}
.y52{bottom:330.150000px;}
.y22{bottom:330.330000px;}
.y78{bottom:330.510000px;}
.y9d{bottom:332.670000px;}
.y2c{bottom:337.575000px;}
.y9c{bottom:347.475000px;}
.y51{bottom:349.995000px;}
.y77{bottom:357.915000px;}
.y9b{bottom:362.055000px;}
.y21{bottom:366.555000px;}
.y50{bottom:369.795000px;}
.y76{bottom:376.275000px;}
.y9a{bottom:376.815000px;}
.y20{bottom:387.255000px;}
.y4f{bottom:389.595000px;}
.y99{bottom:391.395000px;}
.y75{bottom:394.455000px;}
.y98{bottom:405.975000px;}
.y4e{bottom:409.395000px;}
.y74{bottom:421.815000px;}
.y97{bottom:423.435000px;}
.y4d{bottom:429.015000px;}
.ya9{bottom:439.095000px;}
.y73{bottom:440.175000px;}
.y4c{bottom:448.815000px;}
.y72{bottom:458.355000px;}
.y96{bottom:462.495000px;}
.y4b{bottom:468.615000px;}
.y95{bottom:482.295000px;}
.y71{bottom:485.715000px;}
.y4a{bottom:488.415000px;}
.y94{bottom:501.915000px;}
.y70{bottom:504.075000px;}
.y49{bottom:508.035000px;}
.y93{bottom:521.715000px;}
.y6f{bottom:522.435000px;}
.y48{bottom:536.835000px;}
.y6e{bottom:540.615000px;}
.y92{bottom:541.515000px;}
.y47{bottom:556.635000px;}
.y91{bottom:562.035000px;}
.y6d{bottom:567.975000px;}
.y46{bottom:576.435000px;}
.y1f{bottom:583.635000px;}
.y6c{bottom:586.335000px;}
.y45{bottom:596.235000px;}
.y90{bottom:596.775000px;}
.y1e{bottom:603.255000px;}
.y6b{bottom:604.545000px;}
.y44{bottom:615.885000px;}
.y6a{bottom:622.905000px;}
.y1d{bottom:628.125000px;}
.y43{bottom:635.685000px;}
.y69{bottom:643.425000px;}
.y42{bottom:655.485000px;}
.ya8{bottom:657.825000px;}
.yf{bottom:658.545000px;}
.y41{bottom:675.285000px;}
.y68{bottom:682.305000px;}
.ya7{bottom:686.985000px;}
.y40{bottom:694.905000px;}
.y1c{bottom:696.885000px;}
.y67{bottom:711.105000px;}
.y3f{bottom:714.705000px;}
.y1b{bottom:716.685000px;}
.y66{bottom:730.905000px;}
.y3e{bottom:734.505000px;}
.y1a{bottom:736.485000px;}
.y3d{bottom:754.845000px;}
.y19{bottom:756.285000px;}
.y65{bottom:759.705000px;}
.ye{bottom:772.125000px;}
.y18{bottom:775.905000px;}
.y64{bottom:779.505000px;}
.y3c{bottom:789.765000px;}
.y17{bottom:795.705000px;}
.yd{bottom:803.985000px;}
.y63{bottom:804.165000px;}
.y8f{bottom:811.905000px;}
.y16{bottom:815.505000px;}
.y8e{bottom:831.705000px;}
.yc{bottom:831.885000px;}
.y15{bottom:836.025000px;}
.y8d{bottom:851.505000px;}
.yb{bottom:859.605000px;}
.y8c{bottom:872.070000px;}
.y14{bottom:875.670000px;}
.ya{bottom:887.550000px;}
.y13{bottom:897.630000px;}
.ya6{bottom:905.730000px;}
.y8b{bottom:911.130000px;}
.y9{bottom:915.270000px;}
.y12{bottom:927.150000px;}
.y8a{bottom:930.930000px;}
.y8{bottom:931.110000px;}
.ya5{bottom:934.710000px;}
.y7{bottom:946.950000px;}
.y11{bottom:948.930000px;}
.y89{bottom:950.190000px;}
.y88{bottom:964.590000px;}
.y10{bottom:970.530000px;}
.y62{bottom:971.790000px;}
.y6{bottom:974.670000px;}
.y87{bottom:984.210000px;}
.y61{bottom:991.590000px;}
.y86{bottom:1004.010000px;}
.y5{bottom:1006.890000px;}
.y60{bottom:1011.210000px;}
.y85{bottom:1023.810000px;}
.y5f{bottom:1031.010000px;}
.y3b{bottom:1041.990000px;}
.y84{bottom:1042.530000px;}
.y4{bottom:1048.110000px;}
.y5e{bottom:1050.810000px;}
.y83{bottom:1056.930000px;}
.y3a{bottom:1061.790000px;}
.y82{bottom:1076.550000px;}
.y5d{bottom:1079.610000px;}
.y39{bottom:1081.590000px;}
.y81{bottom:1096.350000px;}
.y5c{bottom:1099.230000px;}
.y38{bottom:1101.210000px;}
.y80{bottom:1119.750000px;}
.y5b{bottom:1119.930000px;}
.y37{bottom:1121.010000px;}
.y2{bottom:1141.200000px;}
.y1{bottom:1174.860000px;}
.y36{bottom:1193.760000px;}
.hf{height:20.592773px;}
.hc{height:26.208984px;}
.h4{height:41.644687px;}
.h9{height:41.809570px;}
.h5{height:42.854116px;}
.h6{height:46.617188px;}
.hb{height:50.510039px;}
.ha{height:51.793945px;}
.hd{height:52.081172px;}
.h8{height:57.410156px;}
.he{height:61.453125px;}
.h3{height:83.267578px;}
.h2{height:111.023438px;}
.h7{height:121.710938px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:63.899987px;}
.xc{left:106.415987px;}
.x4{left:127.835987px;}
.x2{left:175.169987px;}
.x3{left:178.409987px;}
.x5{left:249.689987px;}
.x6{left:303.014987px;}
.x7{left:402.914987px;}
.xa{left:420.014987px;}
.x9{left:473.144987px;}
.xb{left:775.589987px;}
.x8{left:814.649987px;}
.xd{left:829.229987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls3{letter-spacing:-0.741333pt;}
.ls14{letter-spacing:-0.262400pt;}
.ls12{letter-spacing:-0.216533pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096533pt;}
.ls1{letter-spacing:0.096640pt;}
.ls9{letter-spacing:0.114560pt;}
.ls4{letter-spacing:0.122133pt;}
.lsa{letter-spacing:0.167680pt;}
.ls13{letter-spacing:0.256533pt;}
.lsc{letter-spacing:0.256640pt;}
.lse{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.309760pt;}
.ls8{letter-spacing:4.687360pt;}
.ls10{letter-spacing:5.866667pt;}
.lsd{letter-spacing:9.066667pt;}
.lsf{letter-spacing:10.346667pt;}
.ls11{letter-spacing:19.946667pt;}
.ls7{letter-spacing:625.936000pt;}
.ls0{letter-spacing:638.096000pt;}
.ls15{letter-spacing:751.844693pt;}
.ws1{word-spacing:-11.952640pt;}
.ws2{word-spacing:-10.905493pt;}
.ws3{word-spacing:-10.783360pt;}
.ws8{word-spacing:-10.566827pt;}
.ws0{word-spacing:-7.535360pt;}
.ws7{word-spacing:-6.784000pt;}
.ws4{word-spacing:-6.400000pt;}
.ws5{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-8.535893pt;}
._10{margin-left:-6.448853pt;}
._8{margin-left:-4.724907pt;}
._7{margin-left:-3.687680pt;}
._5{margin-left:-2.698453pt;}
._2{margin-left:-1.286400pt;}
._4{width:1.397760pt;}
._19{width:2.320640pt;}
._9{width:3.346560pt;}
._a{width:4.442667pt;}
._b{width:5.895680pt;}
._c{width:6.831787pt;}
._f{width:7.912107pt;}
._e{width:9.041920pt;}
._18{width:12.270720pt;}
._22{width:13.374720pt;}
._d{width:14.378880pt;}
._1e{width:16.201600pt;}
._20{width:17.205760pt;}
._16{width:18.645120pt;}
._15{width:19.866880pt;}
._14{width:21.619840pt;}
._1f{width:22.900480pt;}
._17{width:24.122880pt;}
._21{width:25.019520pt;}
._23{width:26.931840pt;}
._1d{width:28.047360pt;}
._27{width:29.280640pt;}
._28{width:30.570240pt;}
._24{width:31.845760pt;}
._25{width:32.817280pt;}
._3{width:124.455680pt;}
._0{width:131.456000pt;}
._1c{width:136.615680pt;}
._1{width:161.642667pt;}
._12{width:313.153493pt;}
._11{width:367.466880pt;}
._1b{width:618.940587pt;}
._13{width:658.080640pt;}
._1a{width:824.447147pt;}
._26{width:891.740587pt;}
.fsa{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.199037pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.240000pt;}
.y35{bottom:133.946667pt;}
.y2b{bottom:134.746667pt;}
.y5a{bottom:144.186667pt;}
.y34{bottom:151.546667pt;}
.y2a{bottom:152.346667pt;}
.y59{bottom:157.306667pt;}
.y33{bottom:168.986667pt;}
.y29{bottom:169.946667pt;}
.y7f{bottom:170.586667pt;}
.y58{bottom:180.186667pt;}
.y32{bottom:186.586667pt;}
.y7e{bottom:186.906667pt;}
.y28{bottom:187.546667pt;}
.y57{bottom:197.786667pt;}
.y7d{bottom:203.066667pt;}
.y31{bottom:204.186667pt;}
.ya4{bottom:204.506667pt;}
.y27{bottom:205.146667pt;}
.y56{bottom:215.226667pt;}
.ya3{bottom:217.626667pt;}
.y7c{bottom:220.666667pt;}
.y26{bottom:222.586667pt;}
.y30{bottom:229.786667pt;}
.ya2{bottom:230.586667pt;}
.y55{bottom:232.826667pt;}
.y25{bottom:240.186667pt;}
.ya1{bottom:243.706667pt;}
.y7b{bottom:244.986667pt;}
.y2f{bottom:247.226667pt;}
.y54{bottom:250.426667pt;}
.ya0{bottom:256.666667pt;}
.y24{bottom:257.786667pt;}
.y7a{bottom:261.306667pt;}
.y2e{bottom:264.826667pt;}
.y9f{bottom:269.786667pt;}
.y23{bottom:275.386667pt;}
.y53{bottom:276.026667pt;}
.y79{bottom:277.466667pt;}
.y2d{bottom:282.426667pt;}
.y9e{bottom:282.746667pt;}
.y52{bottom:293.466667pt;}
.y22{bottom:293.626667pt;}
.y78{bottom:293.786667pt;}
.y9d{bottom:295.706667pt;}
.y2c{bottom:300.066667pt;}
.y9c{bottom:308.866667pt;}
.y51{bottom:311.106667pt;}
.y77{bottom:318.146667pt;}
.y9b{bottom:321.826667pt;}
.y21{bottom:325.826667pt;}
.y50{bottom:328.706667pt;}
.y76{bottom:334.466667pt;}
.y9a{bottom:334.946667pt;}
.y20{bottom:344.226667pt;}
.y4f{bottom:346.306667pt;}
.y99{bottom:347.906667pt;}
.y75{bottom:350.626667pt;}
.y98{bottom:360.866667pt;}
.y4e{bottom:363.906667pt;}
.y74{bottom:374.946667pt;}
.y97{bottom:376.386667pt;}
.y4d{bottom:381.346667pt;}
.ya9{bottom:390.306667pt;}
.y73{bottom:391.266667pt;}
.y4c{bottom:398.946667pt;}
.y72{bottom:407.426667pt;}
.y96{bottom:411.106667pt;}
.y4b{bottom:416.546667pt;}
.y95{bottom:428.706667pt;}
.y71{bottom:431.746667pt;}
.y4a{bottom:434.146667pt;}
.y94{bottom:446.146667pt;}
.y70{bottom:448.066667pt;}
.y49{bottom:451.586667pt;}
.y93{bottom:463.746667pt;}
.y6f{bottom:464.386667pt;}
.y48{bottom:477.186667pt;}
.y6e{bottom:480.546667pt;}
.y92{bottom:481.346667pt;}
.y47{bottom:494.786667pt;}
.y91{bottom:499.586667pt;}
.y6d{bottom:504.866667pt;}
.y46{bottom:512.386667pt;}
.y1f{bottom:518.786667pt;}
.y6c{bottom:521.186667pt;}
.y45{bottom:529.986667pt;}
.y90{bottom:530.466667pt;}
.y1e{bottom:536.226667pt;}
.y6b{bottom:537.373333pt;}
.y44{bottom:547.453333pt;}
.y6a{bottom:553.693333pt;}
.y1d{bottom:558.333333pt;}
.y43{bottom:565.053333pt;}
.y69{bottom:571.933333pt;}
.y42{bottom:582.653333pt;}
.ya8{bottom:584.733333pt;}
.yf{bottom:585.373333pt;}
.y41{bottom:600.253333pt;}
.y68{bottom:606.493333pt;}
.ya7{bottom:610.653333pt;}
.y40{bottom:617.693333pt;}
.y1c{bottom:619.453333pt;}
.y67{bottom:632.093333pt;}
.y3f{bottom:635.293333pt;}
.y1b{bottom:637.053333pt;}
.y66{bottom:649.693333pt;}
.y3e{bottom:652.893333pt;}
.y1a{bottom:654.653333pt;}
.y3d{bottom:670.973333pt;}
.y19{bottom:672.253333pt;}
.y65{bottom:675.293333pt;}
.ye{bottom:686.333333pt;}
.y18{bottom:689.693333pt;}
.y64{bottom:692.893333pt;}
.y3c{bottom:702.013333pt;}
.y17{bottom:707.293333pt;}
.yd{bottom:714.653333pt;}
.y63{bottom:714.813333pt;}
.y8f{bottom:721.693333pt;}
.y16{bottom:724.893333pt;}
.y8e{bottom:739.293333pt;}
.yc{bottom:739.453333pt;}
.y15{bottom:743.133333pt;}
.y8d{bottom:756.893333pt;}
.yb{bottom:764.093333pt;}
.y8c{bottom:775.173333pt;}
.y14{bottom:778.373333pt;}
.ya{bottom:788.933333pt;}
.y13{bottom:797.893333pt;}
.ya6{bottom:805.093333pt;}
.y8b{bottom:809.893333pt;}
.y9{bottom:813.573333pt;}
.y12{bottom:824.133333pt;}
.y8a{bottom:827.493333pt;}
.y8{bottom:827.653333pt;}
.ya5{bottom:830.853333pt;}
.y7{bottom:841.733333pt;}
.y11{bottom:843.493333pt;}
.y89{bottom:844.613333pt;}
.y88{bottom:857.413333pt;}
.y10{bottom:862.693333pt;}
.y62{bottom:863.813333pt;}
.y6{bottom:866.373333pt;}
.y87{bottom:874.853333pt;}
.y61{bottom:881.413333pt;}
.y86{bottom:892.453333pt;}
.y5{bottom:895.013333pt;}
.y60{bottom:898.853333pt;}
.y85{bottom:910.053333pt;}
.y5f{bottom:916.453333pt;}
.y3b{bottom:926.213333pt;}
.y84{bottom:926.693333pt;}
.y4{bottom:931.653333pt;}
.y5e{bottom:934.053333pt;}
.y83{bottom:939.493333pt;}
.y3a{bottom:943.813333pt;}
.y82{bottom:956.933333pt;}
.y5d{bottom:959.653333pt;}
.y39{bottom:961.413333pt;}
.y81{bottom:974.533333pt;}
.y5c{bottom:977.093333pt;}
.y38{bottom:978.853333pt;}
.y80{bottom:995.333333pt;}
.y5b{bottom:995.493333pt;}
.y37{bottom:996.453333pt;}
.y2{bottom:1014.400000pt;}
.y1{bottom:1044.320000pt;}
.y36{bottom:1061.120000pt;}
.hf{height:18.304688pt;}
.hc{height:23.296875pt;}
.h4{height:37.017500pt;}
.h9{height:37.164062pt;}
.h5{height:38.092548pt;}
.h6{height:41.437500pt;}
.hb{height:44.897813pt;}
.ha{height:46.039063pt;}
.hd{height:46.294375pt;}
.h8{height:51.031250pt;}
.he{height:54.625000pt;}
.h3{height:74.015625pt;}
.h2{height:98.687500pt;}
.h7{height:108.187500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:56.799988pt;}
.xc{left:94.591988pt;}
.x4{left:113.631988pt;}
.x2{left:155.706655pt;}
.x3{left:158.586655pt;}
.x5{left:221.946655pt;}
.x6{left:269.346655pt;}
.x7{left:358.146655pt;}
.xa{left:373.346655pt;}
.x9{left:420.573322pt;}
.xb{left:689.413322pt;}
.x8{left:724.133322pt;}
.xd{left:737.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; }
  