
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_97235861edbb1942fb5ec75d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_936644af7dfe7a9042f6e0c6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_5b0353db33ca309910720552.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_d930616196984ee4aee160fb.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6f4f2dbca621e46882078689.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_8c4ed4489493ed3ceacc8a71.woff')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_9da77cd12ecd2ad37c7b14b2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2af0283f58187f0f6aa2163.woff')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_cc7b06a0dd1d60d068d251a4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.117188;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_08a111aef3135369ef79cb0b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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_43e775943638bb1ec894e808.woff')format("woff");}.ffc{font-family:ffc;line-height:0.683594;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);}
.m2{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;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls7{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.045360px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.840000px;}
.ls14{letter-spacing:1.224000px;}
.ls13{letter-spacing:1.440000px;}
.lsb{letter-spacing:2.160000px;}
.ls15{letter-spacing:2.880000px;}
.ls10{letter-spacing:9.360000px;}
.ls11{letter-spacing:15.840000px;}
.lsa{letter-spacing:19.440000px;}
.lsd{letter-spacing:22.320000px;}
.lsc{letter-spacing:34.560000px;}
.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;}
}
.wsb{word-spacing:-19.224000px;}
.wsa{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.580000px;}
.ws8{word-spacing:-12.329400px;}
.ws9{word-spacing:-12.014640px;}
.ws7{word-spacing:-11.609400px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-7.920000px;}
._23{margin-left:-6.912000px;}
._b{margin-left:-5.166720px;}
._12{margin-left:-4.095360px;}
._4{margin-left:-3.049920px;}
._3{margin-left:-1.853280px;}
._0{width:1.195200px;}
._5{width:2.779200px;}
._c{width:4.040640px;}
._a{width:5.295840px;}
._d{width:6.524640px;}
._15{width:8.280000px;}
._18{width:9.432000px;}
._1a{width:10.578480px;}
._1c{width:11.597520px;}
._7{width:13.442400px;}
._6{width:14.837760px;}
._1b{width:16.119360px;}
._9{width:17.792640px;}
._8{width:19.218720px;}
._19{width:20.664000px;}
._16{width:22.536000px;}
._17{width:23.616000px;}
._13{width:24.696000px;}
._14{width:25.768800px;}
._10{width:27.072000px;}
._11{width:28.078080px;}
._21{width:30.600000px;}
._22{width:31.824000px;}
._26{width:33.497280px;}
._24{width:34.704000px;}
._25{width:35.801280px;}
._20{width:37.503360px;}
._1f{width:38.520000px;}
._1d{width:43.344000px;}
._1e{width:44.838720px;}
._1{width:220.897920px;}
._2{width:397.151040px;}
._e{width:721.363440px;}
._27{width:843.096000px;}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(71,71,71);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:66.786636px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:46.800000px;}
.y6{bottom:66.960000px;}
.y5{bottom:86.616000px;}
.y4{bottom:103.536000px;}
.y3{bottom:120.276000px;}
.y2{bottom:139.716000px;}
.y29{bottom:161.130000px;}
.y4c{bottom:166.170000px;}
.y28{bottom:181.830000px;}
.y59{bottom:186.870000px;}
.y7a{bottom:192.450000px;}
.y4b{bottom:197.310000px;}
.y27{bottom:211.530000px;}
.y58{bottom:218.010000px;}
.y79{bottom:223.590000px;}
.y4a{bottom:228.270000px;}
.y26{bottom:239.970000px;}
.y57{bottom:248.970000px;}
.y78{bottom:254.550000px;}
.y25{bottom:259.410000px;}
.y56{bottom:280.110000px;}
.y77{bottom:285.690000px;}
.y24{bottom:289.110000px;}
.y49{bottom:290.370000px;}
.y55{bottom:311.070000px;}
.y76{bottom:316.650000px;}
.y23{bottom:317.550000px;}
.y48{bottom:321.510000px;}
.y54{bottom:342.210000px;}
.y22{bottom:346.035000px;}
.y75{bottom:347.835000px;}
.y47{bottom:352.515000px;}
.y53{bottom:373.215000px;}
.y21{bottom:374.655000px;}
.y74{bottom:378.795000px;}
.y46{bottom:383.655000px;}
.y20{bottom:403.095000px;}
.y52{bottom:404.355000px;}
.y73{bottom:409.935000px;}
.y45{bottom:414.615000px;}
.y1f{bottom:431.535000px;}
.y51{bottom:435.315000px;}
.y50{bottom:440.715000px;}
.y72{bottom:440.895000px;}
.y44{bottom:445.755000px;}
.y1e{bottom:459.975000px;}
.y4f{bottom:466.455000px;}
.y71{bottom:472.035000px;}
.y43{bottom:476.715000px;}
.y1d{bottom:488.415000px;}
.y4e{bottom:497.415000px;}
.y70{bottom:502.995000px;}
.y42{bottom:507.855000px;}
.y1c{bottom:516.855000px;}
.y4d{bottom:528.555000px;}
.y41{bottom:533.955000px;}
.y6f{bottom:534.135000px;}
.y5b{bottom:538.815000px;}
.y1b{bottom:545.295000px;}
.y40{bottom:559.515000px;}
.y6e{bottom:565.095000px;}
.y5a{bottom:569.955000px;}
.y1a{bottom:573.735000px;}
.y7d{bottom:589.935000px;}
.y3f{bottom:590.655000px;}
.y6d{bottom:596.235000px;}
.y19{bottom:602.175000px;}
.y3e{bottom:621.645000px;}
.y7c{bottom:623.985000px;}
.y6c{bottom:627.225000px;}
.y18{bottom:630.825000px;}
.y5c{bottom:649.905000px;}
.y3d{bottom:652.785000px;}
.y7b{bottom:654.225000px;}
.y6b{bottom:658.365000px;}
.y17{bottom:659.265000px;}
.y3c{bottom:683.745000px;}
.y16{bottom:687.705000px;}
.y6a{bottom:689.325000px;}
.y3b{bottom:714.885000px;}
.y15{bottom:716.145000px;}
.y69{bottom:720.465000px;}
.y14{bottom:744.585000px;}
.y3a{bottom:745.845000px;}
.y68{bottom:751.425000px;}
.y13{bottom:773.025000px;}
.y39{bottom:776.805000px;}
.y67{bottom:782.565000px;}
.y12{bottom:801.465000px;}
.y38{bottom:807.945000px;}
.y66{bottom:813.525000px;}
.y11{bottom:829.905000px;}
.y37{bottom:838.905000px;}
.y65{bottom:844.665000px;}
.y10{bottom:858.345000px;}
.y36{bottom:870.090000px;}
.y64{bottom:875.670000px;}
.yf{bottom:887.010000px;}
.y35{bottom:901.050000px;}
.y63{bottom:906.810000px;}
.ye{bottom:916.710000px;}
.y34{bottom:932.190000px;}
.y62{bottom:937.770000px;}
.yd{bottom:950.010000px;}
.y33{bottom:963.150000px;}
.y61{bottom:968.910000px;}
.yc{bottom:986.370000px;}
.y60{bottom:992.670000px;}
.y32{bottom:994.290000px;}
.y5f{bottom:1014.990000px;}
.yb{bottom:1020.210000px;}
.y31{bottom:1025.250000px;}
.y5e{bottom:1048.290000px;}
.ya{bottom:1051.350000px;}
.y30{bottom:1056.390000px;}
.y9{bottom:1082.310000px;}
.y5d{bottom:1084.470000px;}
.y2f{bottom:1087.350000px;}
.y2e{bottom:1108.230000px;}
.y8{bottom:1115.610000px;}
.y2d{bottom:1126.770000px;}
.y2c{bottom:1161.360000px;}
.y2b{bottom:1181.160000px;}
.y1{bottom:1204.740000px;}
.y2a{bottom:1207.620000px;}
.h3{height:46.804219px;}
.hf{height:47.344922px;}
.h14{height:47.988281px;}
.hd{height:48.616875px;}
.ha{height:50.742191px;}
.h13{height:56.390625px;}
.hb{height:58.651172px;}
.h9{height:59.383125px;}
.hc{height:64.546875px;}
.he{height:64.898438px;}
.h8{height:65.010937px;}
.h2{height:65.884219px;}
.h11{height:70.628906px;}
.h5{height:70.664062px;}
.h12{height:70.841953px;}
.h6{height:72.562500px;}
.h10{height:74.704922px;}
.h7{height:82.676953px;}
.h4{height:84.661875px;}
.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:127.655987px;}
.x3{left:159.689987px;}
.xb{left:180.749987px;}
.xc{left:191.549987px;}
.x4{left:234.029987px;}
.x8{left:278.354987px;}
.x7{left:287.174987px;}
.x5{left:398.954987px;}
.x6{left:403.274987px;}
.x10{left:470.624987px;}
.xd{left:520.124987px;}
.x9{left:527.684987px;}
.x11{left:563.144987px;}
.xa{left:589.469987px;}
.xf{left:606.209987px;}
.xe{left:652.649987px;}
.x12{left:723.029987px;}
.x2{left:808.199987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.040320pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.746667pt;}
.ls14{letter-spacing:1.088000pt;}
.ls13{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.920000pt;}
.ls15{letter-spacing:2.560000pt;}
.ls10{letter-spacing:8.320000pt;}
.ls11{letter-spacing:14.080000pt;}
.lsa{letter-spacing:17.280000pt;}
.lsd{letter-spacing:19.840000pt;}
.lsc{letter-spacing:30.720000pt;}
.wsb{word-spacing:-17.088000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws8{word-spacing:-10.959467pt;}
.ws9{word-spacing:-10.679680pt;}
.ws7{word-spacing:-10.319467pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-7.040000pt;}
._23{margin-left:-6.144000pt;}
._b{margin-left:-4.592640pt;}
._12{margin-left:-3.640320pt;}
._4{margin-left:-2.711040pt;}
._3{margin-left:-1.647360pt;}
._0{width:1.062400pt;}
._5{width:2.470400pt;}
._c{width:3.591680pt;}
._a{width:4.707413pt;}
._d{width:5.799680pt;}
._15{width:7.360000pt;}
._18{width:8.384000pt;}
._1a{width:9.403093pt;}
._1c{width:10.308907pt;}
._7{width:11.948800pt;}
._6{width:13.189120pt;}
._1b{width:14.328320pt;}
._9{width:15.815680pt;}
._8{width:17.083307pt;}
._19{width:18.368000pt;}
._16{width:20.032000pt;}
._17{width:20.992000pt;}
._13{width:21.952000pt;}
._14{width:22.905600pt;}
._10{width:24.064000pt;}
._11{width:24.958293pt;}
._21{width:27.200000pt;}
._22{width:28.288000pt;}
._26{width:29.775360pt;}
._24{width:30.848000pt;}
._25{width:31.823360pt;}
._20{width:33.336320pt;}
._1f{width:34.240000pt;}
._1d{width:38.528000pt;}
._1e{width:39.856640pt;}
._1{width:196.353707pt;}
._2{width:353.023147pt;}
._e{width:641.211947pt;}
._27{width:749.418667pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:59.365899pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:41.600000pt;}
.y6{bottom:59.520000pt;}
.y5{bottom:76.992000pt;}
.y4{bottom:92.032000pt;}
.y3{bottom:106.912000pt;}
.y2{bottom:124.192000pt;}
.y29{bottom:143.226667pt;}
.y4c{bottom:147.706667pt;}
.y28{bottom:161.626667pt;}
.y59{bottom:166.106667pt;}
.y7a{bottom:171.066667pt;}
.y4b{bottom:175.386667pt;}
.y27{bottom:188.026667pt;}
.y58{bottom:193.786667pt;}
.y79{bottom:198.746667pt;}
.y4a{bottom:202.906667pt;}
.y26{bottom:213.306667pt;}
.y57{bottom:221.306667pt;}
.y78{bottom:226.266667pt;}
.y25{bottom:230.586667pt;}
.y56{bottom:248.986667pt;}
.y77{bottom:253.946667pt;}
.y24{bottom:256.986667pt;}
.y49{bottom:258.106667pt;}
.y55{bottom:276.506667pt;}
.y76{bottom:281.466667pt;}
.y23{bottom:282.266667pt;}
.y48{bottom:285.786667pt;}
.y54{bottom:304.186667pt;}
.y22{bottom:307.586667pt;}
.y75{bottom:309.186667pt;}
.y47{bottom:313.346667pt;}
.y53{bottom:331.746667pt;}
.y21{bottom:333.026667pt;}
.y74{bottom:336.706667pt;}
.y46{bottom:341.026667pt;}
.y20{bottom:358.306667pt;}
.y52{bottom:359.426667pt;}
.y73{bottom:364.386667pt;}
.y45{bottom:368.546667pt;}
.y1f{bottom:383.586667pt;}
.y51{bottom:386.946667pt;}
.y50{bottom:391.746667pt;}
.y72{bottom:391.906667pt;}
.y44{bottom:396.226667pt;}
.y1e{bottom:408.866667pt;}
.y4f{bottom:414.626667pt;}
.y71{bottom:419.586667pt;}
.y43{bottom:423.746667pt;}
.y1d{bottom:434.146667pt;}
.y4e{bottom:442.146667pt;}
.y70{bottom:447.106667pt;}
.y42{bottom:451.426667pt;}
.y1c{bottom:459.426667pt;}
.y4d{bottom:469.826667pt;}
.y41{bottom:474.626667pt;}
.y6f{bottom:474.786667pt;}
.y5b{bottom:478.946667pt;}
.y1b{bottom:484.706667pt;}
.y40{bottom:497.346667pt;}
.y6e{bottom:502.306667pt;}
.y5a{bottom:506.626667pt;}
.y1a{bottom:509.986667pt;}
.y7d{bottom:524.386667pt;}
.y3f{bottom:525.026667pt;}
.y6d{bottom:529.986667pt;}
.y19{bottom:535.266667pt;}
.y3e{bottom:552.573333pt;}
.y7c{bottom:554.653333pt;}
.y6c{bottom:557.533333pt;}
.y18{bottom:560.733333pt;}
.y5c{bottom:577.693333pt;}
.y3d{bottom:580.253333pt;}
.y7b{bottom:581.533333pt;}
.y6b{bottom:585.213333pt;}
.y17{bottom:586.013333pt;}
.y3c{bottom:607.773333pt;}
.y16{bottom:611.293333pt;}
.y6a{bottom:612.733333pt;}
.y3b{bottom:635.453333pt;}
.y15{bottom:636.573333pt;}
.y69{bottom:640.413333pt;}
.y14{bottom:661.853333pt;}
.y3a{bottom:662.973333pt;}
.y68{bottom:667.933333pt;}
.y13{bottom:687.133333pt;}
.y39{bottom:690.493333pt;}
.y67{bottom:695.613333pt;}
.y12{bottom:712.413333pt;}
.y38{bottom:718.173333pt;}
.y66{bottom:723.133333pt;}
.y11{bottom:737.693333pt;}
.y37{bottom:745.693333pt;}
.y65{bottom:750.813333pt;}
.y10{bottom:762.973333pt;}
.y36{bottom:773.413333pt;}
.y64{bottom:778.373333pt;}
.yf{bottom:788.453333pt;}
.y35{bottom:800.933333pt;}
.y63{bottom:806.053333pt;}
.ye{bottom:814.853333pt;}
.y34{bottom:828.613333pt;}
.y62{bottom:833.573333pt;}
.yd{bottom:844.453333pt;}
.y33{bottom:856.133333pt;}
.y61{bottom:861.253333pt;}
.yc{bottom:876.773333pt;}
.y60{bottom:882.373333pt;}
.y32{bottom:883.813333pt;}
.y5f{bottom:902.213333pt;}
.yb{bottom:906.853333pt;}
.y31{bottom:911.333333pt;}
.y5e{bottom:931.813333pt;}
.ya{bottom:934.533333pt;}
.y30{bottom:939.013333pt;}
.y9{bottom:962.053333pt;}
.y5d{bottom:963.973333pt;}
.y2f{bottom:966.533333pt;}
.y2e{bottom:985.093333pt;}
.y8{bottom:991.653333pt;}
.y2d{bottom:1001.573333pt;}
.y2c{bottom:1032.320000pt;}
.y2b{bottom:1049.920000pt;}
.y1{bottom:1070.880000pt;}
.y2a{bottom:1073.440000pt;}
.h3{height:41.603750pt;}
.hf{height:42.084375pt;}
.h14{height:42.656250pt;}
.hd{height:43.215000pt;}
.ha{height:45.104169pt;}
.h13{height:50.125000pt;}
.hb{height:52.134375pt;}
.h9{height:52.785000pt;}
.hc{height:57.375000pt;}
.he{height:57.687500pt;}
.h8{height:57.787500pt;}
.h2{height:58.563750pt;}
.h11{height:62.781250pt;}
.h5{height:62.812500pt;}
.h12{height:62.970625pt;}
.h6{height:64.500000pt;}
.h10{height:66.404375pt;}
.h7{height:73.490625pt;}
.h4{height:75.255000pt;}
.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:113.471988pt;}
.x3{left:141.946655pt;}
.xb{left:160.666655pt;}
.xc{left:170.266655pt;}
.x4{left:208.026655pt;}
.x8{left:247.426655pt;}
.x7{left:255.266655pt;}
.x5{left:354.626655pt;}
.x6{left:358.466655pt;}
.x10{left:418.333322pt;}
.xd{left:462.333322pt;}
.x9{left:469.053322pt;}
.x11{left:500.573322pt;}
.xa{left:523.973322pt;}
.xf{left:538.853322pt;}
.xe{left:580.133322pt;}
.x12{left:642.693322pt;}
.x2{left:718.399988pt;}
}




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