
    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_a58205e8b8f29c8be5e313fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a38e7c0f9ce33e0ef8293254.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.054199;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_99e0c8b7fbc663f8c60841a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_68549c85eea010dd23886708.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_96d9a17f785e80853de382a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.860840;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_b65c3d8380371dcdf46465c0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f1e1b36252d10e694b192d3a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0e41201dcf708db0aca42b7e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956543;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_b9571d56f2ab6315f161ddaa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694824;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.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-43.200000px;}
.v6{vertical-align:-29.521377px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:50.400000px;}
.v4{vertical-align:57.600000px;}
.v5{vertical-align:89.914185px;}
.v2{vertical-align:144.000000px;}
.ls10{letter-spacing:-0.325200px;}
.lsd{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.162600px;}
.ls11{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.117600px;}
.lsf{letter-spacing:-0.098400px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.023040px;}
.ls0{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.047726px;}
.ls4{letter-spacing:0.064080px;}
.lsc{letter-spacing:0.204600px;}
.ls1{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.290880px;}
.lse{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.557280px;}
.ls7{letter-spacing:88.957419px;}
.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;}
}
.ws2{word-spacing:-104.094480px;}
.ws1{word-spacing:-69.082560px;}
.ws5{word-spacing:-53.802720px;}
.ws0{word-spacing:-53.442720px;}
.ws6{word-spacing:-53.344320px;}
.ws8{word-spacing:-53.280120px;}
.ws7{word-spacing:-53.117520px;}
.ws9{word-spacing:-40.032000px;}
.wsa{word-spacing:-39.888000px;}
.ws4{word-spacing:-36.403920px;}
.wsb{word-spacing:-32.544000px;}
.ws3{word-spacing:-24.373440px;}
.wsf{word-spacing:-0.174925px;}
.wse{word-spacing:-0.127199px;}
.wsc{word-spacing:-0.074204px;}
.ws10{word-spacing:0.000000px;}
.wsd{word-spacing:391.354220px;}
._12{margin-left:-1319.658850px;}
._f{margin-left:-1276.687937px;}
._11{margin-left:-705.184015px;}
._17{margin-left:-677.609512px;}
._16{margin-left:-639.104300px;}
._14{margin-left:-614.162773px;}
._15{margin-left:-426.680145px;}
._10{margin-left:-254.793905px;}
._18{margin-left:-188.548784px;}
._13{margin-left:-174.990408px;}
._2{margin-left:-11.808000px;}
._4{margin-left:-10.512000px;}
._3{margin-left:-8.352000px;}
._5{margin-left:-6.912000px;}
._7{margin-left:-4.194240px;}
._8{margin-left:-2.568960px;}
._0{margin-left:-1.440000px;}
._1{width:1.584000px;}
._6{width:3.144000px;}
._9{width:31.242000px;}
._a{width:189.917280px;}
._b{width:623.477280px;}
._c{width:865.997280px;}
._d{width:867.557280px;}
._19{width:2334.966960px;}
._e{width:4916.160000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,61,175);}
.fc2{color:rgb(0,84,159);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:72.000000px;}
.fsc{font-size:74.203883px;}
.fsf{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs6{font-size:112.320000px;}
.fs8{font-size:120.240000px;}
.fsd{font-size:127.199184px;}
.fs9{font-size:128.160000px;}
.fs1{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.fse{font-size:190.798777px;}
.fs2{font-size:192.240000px;}
.fs4{font-size:319.680000px;}
.fs7{font-size:360.000000px;}
.fsa{font-size:360.144000px;}
.fs3{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y83{bottom:6.368377px;}
.y85{bottom:14.331646px;}
.y8{bottom:51.012000px;}
.y84{bottom:54.890443px;}
.y86{bottom:85.330379px;}
.y7b{bottom:85.572000px;}
.y7{bottom:103.572000px;}
.y87{bottom:117.680167px;}
.y7a{bottom:128.052000px;}
.y6{bottom:144.972000px;}
.y79{bottom:168.375000px;}
.y5{bottom:197.175000px;}
.y78{bottom:211.035000px;}
.y4{bottom:238.755000px;}
.y77{bottom:251.355000px;}
.y3{bottom:280.155000px;}
.y76{bottom:292.935000px;}
.y2{bottom:321.735000px;}
.y75{bottom:352.335000px;}
.y1{bottom:363.135000px;}
.y40{bottom:585.075000px;}
.y3f{bottom:642.675000px;}
.y7d{bottom:651.960000px;}
.y7c{bottom:695.160000px;}
.y3e{bottom:700.275000px;}
.y3d{bottom:757.875000px;}
.y3c{bottom:815.475000px;}
.y3b{bottom:873.075000px;}
.y3a{bottom:930.675000px;}
.y74{bottom:967.140000px;}
.y39{bottom:988.275000px;}
.y73{bottom:1024.740000px;}
.y38{bottom:1045.875000px;}
.y72{bottom:1082.340000px;}
.y37{bottom:1103.475000px;}
.y82{bottom:1127.970000px;}
.y71{bottom:1139.940000px;}
.y36{bottom:1161.075000px;}
.y70{bottom:1197.540000px;}
.y35{bottom:1218.675000px;}
.y6f{bottom:1255.140000px;}
.y34{bottom:1276.275000px;}
.y6e{bottom:1312.740000px;}
.y33{bottom:1333.875000px;}
.y81{bottom:1337.760000px;}
.y6d{bottom:1364.760000px;}
.y80{bottom:1378.260000px;}
.y32{bottom:1391.475000px;}
.y31{bottom:1449.105000px;}
.y30{bottom:1506.705000px;}
.y2f{bottom:1564.305000px;}
.y6c{bottom:1598.835000px;}
.y2e{bottom:1621.905000px;}
.y6b{bottom:1656.435000px;}
.y2d{bottom:1679.505000px;}
.y6a{bottom:1714.035000px;}
.y2c{bottom:1737.105000px;}
.y69{bottom:1771.635000px;}
.y2b{bottom:1794.705000px;}
.y68{bottom:1829.235000px;}
.y2a{bottom:1852.305000px;}
.y67{bottom:1886.835000px;}
.y29{bottom:1909.905000px;}
.y66{bottom:1944.465000px;}
.y28{bottom:1967.505000px;}
.y65{bottom:2002.065000px;}
.y27{bottom:2025.105000px;}
.y64{bottom:2059.665000px;}
.y26{bottom:2082.705000px;}
.y63{bottom:2117.265000px;}
.y25{bottom:2140.305000px;}
.y62{bottom:2174.865000px;}
.y24{bottom:2197.905000px;}
.y61{bottom:2232.465000px;}
.y23{bottom:2255.505000px;}
.y60{bottom:2290.065000px;}
.y22{bottom:2313.105000px;}
.y5f{bottom:2347.665000px;}
.y8a{bottom:2351.775000px;}
.y21{bottom:2370.705000px;}
.y5e{bottom:2405.265000px;}
.y20{bottom:2428.305000px;}
.y5d{bottom:2462.865000px;}
.y1f{bottom:2485.905000px;}
.y5c{bottom:2520.465000px;}
.y1e{bottom:2537.925000px;}
.y89{bottom:2547.975000px;}
.y7e{bottom:2556.870000px;}
.y5b{bottom:2578.065000px;}
.y5a{bottom:2635.665000px;}
.y59{bottom:2693.265000px;}
.y58{bottom:2750.865000px;}
.y57{bottom:2808.465000px;}
.y56{bottom:2866.065000px;}
.y55{bottom:2923.665000px;}
.y54{bottom:2981.265000px;}
.y53{bottom:3038.865000px;}
.y52{bottom:3096.510000px;}
.y51{bottom:3148.530000px;}
.y50{bottom:3177.330000px;}
.y1d{bottom:3207.135000px;}
.y4f{bottom:3211.710000px;}
.y1c{bottom:3264.765000px;}
.y4e{bottom:3269.310000px;}
.y1b{bottom:3322.365000px;}
.y4d{bottom:3326.910000px;}
.y1a{bottom:3379.965000px;}
.y4c{bottom:3384.510000px;}
.y19{bottom:3437.565000px;}
.y4b{bottom:3442.110000px;}
.y18{bottom:3495.165000px;}
.y4a{bottom:3499.710000px;}
.y17{bottom:3552.765000px;}
.y49{bottom:3557.310000px;}
.y16{bottom:3610.365000px;}
.y48{bottom:3614.910000px;}
.y15{bottom:3667.965000px;}
.y47{bottom:3672.510000px;}
.y14{bottom:3725.565000px;}
.y46{bottom:3730.110000px;}
.y13{bottom:3783.165000px;}
.y45{bottom:3787.710000px;}
.y12{bottom:3840.765000px;}
.y44{bottom:3845.310000px;}
.y11{bottom:3898.365000px;}
.y43{bottom:3902.910000px;}
.y10{bottom:3955.965000px;}
.y42{bottom:3960.510000px;}
.y88{bottom:3991.710000px;}
.yf{bottom:4007.985000px;}
.y41{bottom:4012.530000px;}
.y7f{bottom:4022.820000px;}
.ye{bottom:4215.495000px;}
.yd{bottom:4303.335000px;}
.yc{bottom:4350.135000px;}
.yb{bottom:4395.495000px;}
.ya{bottom:4457.775000px;}
.y9{bottom:4591.695000px;}
.hc{height:49.183594px;}
.h15{height:54.964497px;}
.h17{height:57.544805px;}
.h18{height:57.585938px;}
.h16{height:65.414180px;}
.he{height:72.790821px;}
.h12{height:72.827053px;}
.h13{height:94.219318px;}
.ha{height:99.874688px;}
.h2{height:106.987500px;}
.h14{height:111.807599px;}
.h7{height:115.453125px;}
.h10{height:124.776934px;}
.h11{height:124.839043px;}
.hd{height:138.001243px;}
.h8{height:140.453438px;}
.h3{height:150.187500px;}
.hf{height:162.705006px;}
.h4{height:200.500313px;}
.h9{height:288.632812px;}
.hb{height:288.748266px;}
.h6{height:385.036172px;}
.h5{height:400.305938px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w3{width:378.564092px;}
.w2{width:3576.419999px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x17{left:66.425314px;}
.x16{left:81.479783px;}
.x18{left:97.526952px;}
.x11{left:108.198691px;}
.x2{left:157.709999px;}
.x5{left:165.599999px;}
.x3{left:169.949999px;}
.x1{left:173.699999px;}
.x13{left:178.014850px;}
.x4{left:186.869999px;}
.x15{left:203.077897px;}
.x6{left:226.439999px;}
.x14{left:276.534503px;}
.xc{left:292.934999px;}
.xb{left:301.214999px;}
.x12{left:351.976511px;}
.x10{left:367.693324px;}
.xe{left:1322.534999px;}
.xf{left:1342.710000px;}
.x9{left:1857.164999px;}
.x8{left:1859.939999px;}
.x7{left:1861.889999px;}
.xd{left:1986.689999px;}
.x1c{left:2195.174999px;}
.x1b{left:2488.289999px;}
.xa{left:2645.024999px;}
.x1a{left:2712.269999px;}
.x19{left:2804.039999px;}
@media print{
.v1{vertical-align:-38.400000pt;}
.v6{vertical-align:-26.241224pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:44.800000pt;}
.v4{vertical-align:51.200000pt;}
.v5{vertical-align:79.923720pt;}
.v2{vertical-align:128.000000pt;}
.ls10{letter-spacing:-0.289067pt;}
.lsd{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.144533pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.104533pt;}
.lsf{letter-spacing:-0.087467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.020480pt;}
.ls0{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.042423pt;}
.ls4{letter-spacing:0.056960pt;}
.lsc{letter-spacing:0.181867pt;}
.ls1{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.258560pt;}
.lse{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.495360pt;}
.ls7{letter-spacing:79.073261pt;}
.ws2{word-spacing:-92.528427pt;}
.ws1{word-spacing:-61.406720pt;}
.ws5{word-spacing:-47.824640pt;}
.ws0{word-spacing:-47.504640pt;}
.ws6{word-spacing:-47.417173pt;}
.ws8{word-spacing:-47.360107pt;}
.ws7{word-spacing:-47.215573pt;}
.ws9{word-spacing:-35.584000pt;}
.wsa{word-spacing:-35.456000pt;}
.ws4{word-spacing:-32.359040pt;}
.wsb{word-spacing:-28.928000pt;}
.ws3{word-spacing:-21.665280pt;}
.wsf{word-spacing:-0.155489pt;}
.wse{word-spacing:-0.113066pt;}
.wsc{word-spacing:-0.065959pt;}
.ws10{word-spacing:0.000000pt;}
.wsd{word-spacing:347.870418pt;}
._12{margin-left:-1173.030089pt;}
._f{margin-left:-1134.833722pt;}
._11{margin-left:-626.830236pt;}
._17{margin-left:-602.319566pt;}
._16{margin-left:-568.092711pt;}
._14{margin-left:-545.922465pt;}
._15{margin-left:-379.271240pt;}
._10{margin-left:-226.483471pt;}
._18{margin-left:-167.598919pt;}
._13{margin-left:-155.547029pt;}
._2{margin-left:-10.496000pt;}
._4{margin-left:-9.344000pt;}
._3{margin-left:-7.424000pt;}
._5{margin-left:-6.144000pt;}
._7{margin-left:-3.728213pt;}
._8{margin-left:-2.283520pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.408000pt;}
._6{width:2.794667pt;}
._9{width:27.770667pt;}
._a{width:168.815360pt;}
._b{width:554.202027pt;}
._c{width:769.775360pt;}
._d{width:771.162027pt;}
._19{width:2075.526187pt;}
._e{width:4369.920000pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:65.959007pt;}
.fsf{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs6{font-size:99.840000pt;}
.fs8{font-size:106.880000pt;}
.fsd{font-size:113.065942pt;}
.fs9{font-size:113.920000pt;}
.fs1{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.fse{font-size:169.598913pt;}
.fs2{font-size:170.880000pt;}
.fs4{font-size:284.160000pt;}
.fs7{font-size:320.000000pt;}
.fsa{font-size:320.128000pt;}
.fs3{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:5.660779pt;}
.y85{bottom:12.739241pt;}
.y8{bottom:45.344000pt;}
.y84{bottom:48.791505pt;}
.y86{bottom:75.849226pt;}
.y7b{bottom:76.064000pt;}
.y7{bottom:92.064000pt;}
.y87{bottom:104.604593pt;}
.y7a{bottom:113.824000pt;}
.y6{bottom:128.864000pt;}
.y79{bottom:149.666667pt;}
.y5{bottom:175.266667pt;}
.y78{bottom:187.586667pt;}
.y4{bottom:212.226667pt;}
.y77{bottom:223.426667pt;}
.y3{bottom:249.026667pt;}
.y76{bottom:260.386667pt;}
.y2{bottom:285.986667pt;}
.y75{bottom:313.186667pt;}
.y1{bottom:322.786667pt;}
.y40{bottom:520.066667pt;}
.y3f{bottom:571.266667pt;}
.y7d{bottom:579.520000pt;}
.y7c{bottom:617.920000pt;}
.y3e{bottom:622.466667pt;}
.y3d{bottom:673.666667pt;}
.y3c{bottom:724.866667pt;}
.y3b{bottom:776.066667pt;}
.y3a{bottom:827.266667pt;}
.y74{bottom:859.680000pt;}
.y39{bottom:878.466667pt;}
.y73{bottom:910.880000pt;}
.y38{bottom:929.666667pt;}
.y72{bottom:962.080000pt;}
.y37{bottom:980.866667pt;}
.y82{bottom:1002.640000pt;}
.y71{bottom:1013.280000pt;}
.y36{bottom:1032.066667pt;}
.y70{bottom:1064.480000pt;}
.y35{bottom:1083.266667pt;}
.y6f{bottom:1115.680000pt;}
.y34{bottom:1134.466667pt;}
.y6e{bottom:1166.880000pt;}
.y33{bottom:1185.666667pt;}
.y81{bottom:1189.120000pt;}
.y6d{bottom:1213.120000pt;}
.y80{bottom:1225.120000pt;}
.y32{bottom:1236.866667pt;}
.y31{bottom:1288.093333pt;}
.y30{bottom:1339.293333pt;}
.y2f{bottom:1390.493333pt;}
.y6c{bottom:1421.186667pt;}
.y2e{bottom:1441.693333pt;}
.y6b{bottom:1472.386667pt;}
.y2d{bottom:1492.893333pt;}
.y6a{bottom:1523.586667pt;}
.y2c{bottom:1544.093333pt;}
.y69{bottom:1574.786667pt;}
.y2b{bottom:1595.293333pt;}
.y68{bottom:1625.986667pt;}
.y2a{bottom:1646.493333pt;}
.y67{bottom:1677.186667pt;}
.y29{bottom:1697.693333pt;}
.y66{bottom:1728.413333pt;}
.y28{bottom:1748.893333pt;}
.y65{bottom:1779.613333pt;}
.y27{bottom:1800.093333pt;}
.y64{bottom:1830.813333pt;}
.y26{bottom:1851.293333pt;}
.y63{bottom:1882.013333pt;}
.y25{bottom:1902.493333pt;}
.y62{bottom:1933.213333pt;}
.y24{bottom:1953.693333pt;}
.y61{bottom:1984.413333pt;}
.y23{bottom:2004.893333pt;}
.y60{bottom:2035.613333pt;}
.y22{bottom:2056.093333pt;}
.y5f{bottom:2086.813333pt;}
.y8a{bottom:2090.466667pt;}
.y21{bottom:2107.293333pt;}
.y5e{bottom:2138.013333pt;}
.y20{bottom:2158.493333pt;}
.y5d{bottom:2189.213333pt;}
.y1f{bottom:2209.693333pt;}
.y5c{bottom:2240.413333pt;}
.y1e{bottom:2255.933333pt;}
.y89{bottom:2264.866667pt;}
.y7e{bottom:2272.773333pt;}
.y5b{bottom:2291.613333pt;}
.y5a{bottom:2342.813333pt;}
.y59{bottom:2394.013333pt;}
.y58{bottom:2445.213333pt;}
.y57{bottom:2496.413333pt;}
.y56{bottom:2547.613333pt;}
.y55{bottom:2598.813333pt;}
.y54{bottom:2650.013333pt;}
.y53{bottom:2701.213333pt;}
.y52{bottom:2752.453333pt;}
.y51{bottom:2798.693333pt;}
.y50{bottom:2824.293333pt;}
.y1d{bottom:2850.786667pt;}
.y4f{bottom:2854.853333pt;}
.y1c{bottom:2902.013333pt;}
.y4e{bottom:2906.053333pt;}
.y1b{bottom:2953.213333pt;}
.y4d{bottom:2957.253333pt;}
.y1a{bottom:3004.413333pt;}
.y4c{bottom:3008.453333pt;}
.y19{bottom:3055.613333pt;}
.y4b{bottom:3059.653333pt;}
.y18{bottom:3106.813333pt;}
.y4a{bottom:3110.853333pt;}
.y17{bottom:3158.013333pt;}
.y49{bottom:3162.053333pt;}
.y16{bottom:3209.213333pt;}
.y48{bottom:3213.253333pt;}
.y15{bottom:3260.413333pt;}
.y47{bottom:3264.453333pt;}
.y14{bottom:3311.613333pt;}
.y46{bottom:3315.653333pt;}
.y13{bottom:3362.813333pt;}
.y45{bottom:3366.853333pt;}
.y12{bottom:3414.013333pt;}
.y44{bottom:3418.053333pt;}
.y11{bottom:3465.213333pt;}
.y43{bottom:3469.253333pt;}
.y10{bottom:3516.413333pt;}
.y42{bottom:3520.453333pt;}
.y88{bottom:3548.186667pt;}
.yf{bottom:3562.653333pt;}
.y41{bottom:3566.693333pt;}
.y7f{bottom:3575.840000pt;}
.ye{bottom:3747.106667pt;}
.yd{bottom:3825.186667pt;}
.yc{bottom:3866.786667pt;}
.yb{bottom:3907.106667pt;}
.ya{bottom:3962.466667pt;}
.y9{bottom:4081.506667pt;}
.hc{height:43.718750pt;}
.h15{height:48.857331pt;}
.h17{height:51.150937pt;}
.h18{height:51.187500pt;}
.h16{height:58.145938pt;}
.he{height:64.702952pt;}
.h12{height:64.735158pt;}
.h13{height:83.750505pt;}
.ha{height:88.777500pt;}
.h2{height:95.100000pt;}
.h14{height:99.384533pt;}
.h7{height:102.625000pt;}
.h10{height:110.912831pt;}
.h11{height:110.968039pt;}
.hd{height:122.667772pt;}
.h8{height:124.847500pt;}
.h3{height:133.500000pt;}
.hf{height:144.626672pt;}
.h4{height:178.222500pt;}
.h9{height:256.562500pt;}
.hb{height:256.665125pt;}
.h6{height:342.254375pt;}
.h5{height:355.827500pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w3{width:336.501415pt;}
.w2{width:3179.039999pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x17{left:59.044724pt;}
.x16{left:72.426474pt;}
.x18{left:86.690624pt;}
.x11{left:96.176614pt;}
.x2{left:140.186665pt;}
.x5{left:147.199999pt;}
.x3{left:151.066665pt;}
.x1{left:154.399999pt;}
.x13{left:158.235422pt;}
.x4{left:166.106665pt;}
.x15{left:180.513686pt;}
.x6{left:201.279999pt;}
.x14{left:245.808447pt;}
.xc{left:260.386665pt;}
.xb{left:267.746665pt;}
.x12{left:312.868009pt;}
.x10{left:326.838510pt;}
.xe{left:1175.586665pt;}
.xf{left:1193.520000pt;}
.x9{left:1650.813332pt;}
.x8{left:1653.279999pt;}
.x7{left:1655.013332pt;}
.xd{left:1765.946665pt;}
.x1c{left:1951.266665pt;}
.x1b{left:2211.813332pt;}
.xa{left:2351.133332pt;}
.x1a{left:2410.906665pt;}
.x19{left:2492.479999pt;}
}




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