
    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_d4d6e9a7749989fc71572860.woff2')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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_ae5bfaef97ca7f95fae0ace4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b520b2412184d98b99d1e8f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_df4a055ba3dadabb45e26ba8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a25ad99c37345799f042524c.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_fcf8bb68082c43491662c57a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_3865dc3dec64ab1101774ab2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4632d228af20fe0a304c18c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_384bca07f42a8f87a3ea3377.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_9397520fb7c36641ca6e2356.woff2')format("woff");}.ffb{font-family:ffb;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);}
.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);}
.v1{vertical-align:-74.160000px;}
.v2{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.176000px;}
.lsa{letter-spacing:-1.008000px;}
.lsb{letter-spacing:-0.810000px;}
.lse{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.108000px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.642240px;}
.ls11{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.ls4{letter-spacing:208.620000px;}
.ls2{letter-spacing:1047.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.384000px;}
.ws2{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.140000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.289520px;}
._2{width:1.014240px;}
._1{width:2.338800px;}
._4{width:3.672000px;}
._c{width:5.105520px;}
._10{width:6.264720px;}
._8{width:7.398000px;}
._f{width:8.520480px;}
._e{width:9.979920px;}
._12{width:11.107680px;}
._3{width:12.197520px;}
._b{width:13.770000px;}
._7{width:15.444000px;}
._d{width:16.732800px;}
._6{width:17.807040px;}
._5{width:19.224000px;}
._13{width:23.007600px;}
._a{width:26.046000px;}
._9{width:27.738000px;}
._11{width:2867.076000px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:0.715500px;}
.y45{bottom:3.765000px;}
.y5{bottom:4.140000px;}
.y5d{bottom:5.010000px;}
.y2{bottom:9.930000px;}
.y44{bottom:14.205000px;}
.y58{bottom:18.349500px;}
.y4{bottom:23.070000px;}
.y4d{bottom:31.129500px;}
.y43{bottom:31.350000px;}
.y57{bottom:34.009500px;}
.y3{bottom:48.090000px;}
.y42{bottom:48.630000px;}
.y56{bottom:51.649500px;}
.y4c{bottom:53.089500px;}
.y41{bottom:65.910000px;}
.y4b{bottom:66.229500px;}
.y55{bottom:67.129500px;}
.y8{bottom:72.000000px;}
.y40{bottom:83.190000px;}
.y54{bottom:84.589500px;}
.y4a{bottom:88.009500px;}
.y7{bottom:91.296000px;}
.y53{bottom:100.429500px;}
.y3f{bottom:100.470000px;}
.y5b{bottom:112.896000px;}
.y52{bottom:115.909500px;}
.y95{bottom:117.216000px;}
.y3e{bottom:117.570000px;}
.y5a{bottom:126.576000px;}
.y51{bottom:131.569500px;}
.y94{bottom:134.496000px;}
.y3d{bottom:134.850000px;}
.y8e{bottom:134.856000px;}
.y47{bottom:144.400500px;}
.y50{bottom:147.049500px;}
.y49{bottom:150.109500px;}
.y3c{bottom:152.130000px;}
.y48{bottom:160.729500px;}
.y4f{bottom:162.169500px;}
.y3b{bottom:169.410000px;}
.y59{bottom:177.289500px;}
.y3a{bottom:186.690000px;}
.y39{bottom:203.970000px;}
.y38{bottom:221.070000px;}
.y37{bottom:238.350000px;}
.y36{bottom:255.630000px;}
.y35{bottom:272.910000px;}
.y8d{bottom:290.190000px;}
.y34{bottom:290.220000px;}
.y1f{bottom:293.100000px;}
.y8c{bottom:307.290000px;}
.y33{bottom:307.500000px;}
.y1e{bottom:310.200000px;}
.y8b{bottom:324.570000px;}
.y32{bottom:324.600000px;}
.y1d{bottom:334.320000px;}
.y11{bottom:335.025000px;}
.y8a{bottom:341.850000px;}
.y31{bottom:341.880000px;}
.y1c{bottom:358.440000px;}
.y30{bottom:358.800000px;}
.y89{bottom:359.175000px;}
.y2f{bottom:373.200000px;}
.y93{bottom:376.095000px;}
.y88{bottom:376.455000px;}
.y2e{bottom:377.700000px;}
.y1b{bottom:382.560000px;}
.y2d{bottom:393.180000px;}
.y87{bottom:393.735000px;}
.y1a{bottom:406.860000px;}
.y2c{bottom:408.660000px;}
.y86{bottom:410.835000px;}
.y2b{bottom:424.320000px;}
.y85{bottom:428.115000px;}
.y19{bottom:430.980000px;}
.y2a{bottom:439.800000px;}
.y84{bottom:445.395000px;}
.y18{bottom:455.100000px;}
.y29{bottom:455.280000px;}
.y83{bottom:462.315000px;}
.y92{bottom:462.675000px;}
.y28{bottom:470.760000px;}
.y17{bottom:479.220000px;}
.y82{bottom:479.955000px;}
.y27{bottom:486.420000px;}
.y81{bottom:497.235000px;}
.y26{bottom:501.900000px;}
.y16{bottom:503.340000px;}
.y80{bottom:514.335000px;}
.y25{bottom:517.380000px;}
.y15{bottom:527.460000px;}
.y7f{bottom:531.615000px;}
.y24{bottom:532.860000px;}
.y23{bottom:548.565000px;}
.y7e{bottom:548.895000px;}
.y14{bottom:551.625000px;}
.y22{bottom:564.045000px;}
.y7d{bottom:566.175000px;}
.y13{bottom:575.925000px;}
.y21{bottom:579.525000px;}
.y7c{bottom:583.455000px;}
.y20{bottom:594.825000px;}
.y46{bottom:597.165000px;}
.y12{bottom:600.045000px;}
.y7b{bottom:600.735000px;}
.y7a{bottom:617.865000px;}
.y91{bottom:634.785000px;}
.y79{bottom:635.145000px;}
.y78{bottom:652.425000px;}
.y77{bottom:669.705000px;}
.y76{bottom:686.985000px;}
.y75{bottom:704.085000px;}
.y74{bottom:721.365000px;}
.y73{bottom:738.645000px;}
.y72{bottom:755.925000px;}
.y71{bottom:773.205000px;}
.y70{bottom:790.125000px;}
.y90{bottom:790.485000px;}
.y6f{bottom:807.585000px;}
.y6e{bottom:824.865000px;}
.y6d{bottom:842.145000px;}
.y6c{bottom:859.425000px;}
.y6b{bottom:876.750000px;}
.y6a{bottom:894.030000px;}
.y69{bottom:911.130000px;}
.y68{bottom:928.410000px;}
.y10{bottom:944.970000px;}
.y67{bottom:945.690000px;}
.yf{bottom:948.570000px;}
.ye{bottom:960.450000px;}
.y66{bottom:962.970000px;}
.yd{bottom:977.550000px;}
.y65{bottom:980.250000px;}
.yc{bottom:994.830000px;}
.y64{bottom:997.350000px;}
.y63{bottom:1014.630000px;}
.yb{bottom:1030.290000px;}
.y62{bottom:1031.910000px;}
.y61{bottom:1049.190000px;}
.ya{bottom:1054.410000px;}
.y60{bottom:1066.470000px;}
.y9{bottom:1082.850000px;}
.y5f{bottom:1083.750000px;}
.y5c{bottom:1086.480000px;}
.y5e{bottom:1100.490000px;}
.y8f{bottom:1100.850000px;}
.y6{bottom:1116.510000px;}
.y1{bottom:1123.530000px;}
.hc{height:5.653125px;}
.h10{height:12.012891px;}
.h18{height:27.540000px;}
.h14{height:29.678906px;}
.h6{height:30.077578px;}
.hb{height:35.332031px;}
.hf{height:40.985156px;}
.h16{height:41.535703px;}
.h13{height:41.726953px;}
.he{height:42.086250px;}
.h12{height:44.507812px;}
.h11{height:52.971680px;}
.h17{height:54.421875px;}
.h8{height:57.324375px;}
.h7{height:58.651172px;}
.ha{height:60.226875px;}
.h1a{height:61.423863px;}
.h19{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:84.898125px;}
.h2{height:84.982500px;}
.h4{height:117.180000px;}
.h15{height:189.895500px;}
.hd{height:609.570000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:-518.880000px;}
.w6{width:77.580000px;}
.w2{width:104.040000px;}
.w4{width:132.651000px;}
.w8{width:171.360000px;}
.w5{width:596.490000px;}
.w3{width:622.410000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x18{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x1d{left:18.180000px;}
.x16{left:19.980000px;}
.x15{left:28.980000px;}
.xf{left:43.740000px;}
.x1e{left:47.700000px;}
.x10{left:50.760000px;}
.xe{left:55.080000px;}
.x19{left:62.145000px;}
.x14{left:67.134000px;}
.x12{left:71.814000px;}
.x13{left:73.254000px;}
.x1{left:78.327000px;}
.x8{left:86.436000px;}
.x2{left:95.763000px;}
.x1f{left:102.774000px;}
.x1c{left:106.734000px;}
.x21{left:113.436000px;}
.x11{left:124.554000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x17{left:219.090000px;}
.xb{left:539.025000px;}
.xc{left:584.790000px;}
.xa{left:651.750000px;}
.x7{left:784.440000px;}
.x9{left:799.740000px;}
.xd{left:806.940000px;}
.x1a{left:815.580000px;}
.x1b{left:1412.040000px;}
@media print{
.v1{vertical-align:-65.920000pt;}
.v2{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.045333pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsb{letter-spacing:-0.720000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.570880pt;}
.ls11{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ls4{letter-spacing:185.440000pt;}
.ls2{letter-spacing:931.306667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.674667pt;}
.ws2{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.146240pt;}
._2{width:0.901547pt;}
._1{width:2.078933pt;}
._4{width:3.264000pt;}
._c{width:4.538240pt;}
._10{width:5.568640pt;}
._8{width:6.576000pt;}
._f{width:7.573760pt;}
._e{width:8.871040pt;}
._12{width:9.873493pt;}
._3{width:10.842240pt;}
._b{width:12.240000pt;}
._7{width:13.728000pt;}
._d{width:14.873600pt;}
._6{width:15.828480pt;}
._5{width:17.088000pt;}
._13{width:20.451200pt;}
._a{width:23.152000pt;}
._9{width:24.656000pt;}
._11{width:2548.512000pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:0.636000pt;}
.y45{bottom:3.346667pt;}
.y5{bottom:3.680000pt;}
.y5d{bottom:4.453333pt;}
.y2{bottom:8.826667pt;}
.y44{bottom:12.626667pt;}
.y58{bottom:16.310667pt;}
.y4{bottom:20.506667pt;}
.y4d{bottom:27.670667pt;}
.y43{bottom:27.866667pt;}
.y57{bottom:30.230667pt;}
.y3{bottom:42.746667pt;}
.y42{bottom:43.226667pt;}
.y56{bottom:45.910667pt;}
.y4c{bottom:47.190667pt;}
.y41{bottom:58.586667pt;}
.y4b{bottom:58.870667pt;}
.y55{bottom:59.670667pt;}
.y8{bottom:64.000000pt;}
.y40{bottom:73.946667pt;}
.y54{bottom:75.190667pt;}
.y4a{bottom:78.230667pt;}
.y7{bottom:81.152000pt;}
.y53{bottom:89.270667pt;}
.y3f{bottom:89.306667pt;}
.y5b{bottom:100.352000pt;}
.y52{bottom:103.030667pt;}
.y95{bottom:104.192000pt;}
.y3e{bottom:104.506667pt;}
.y5a{bottom:112.512000pt;}
.y51{bottom:116.950667pt;}
.y94{bottom:119.552000pt;}
.y3d{bottom:119.866667pt;}
.y8e{bottom:119.872000pt;}
.y47{bottom:128.356000pt;}
.y50{bottom:130.710667pt;}
.y49{bottom:133.430667pt;}
.y3c{bottom:135.226667pt;}
.y48{bottom:142.870667pt;}
.y4f{bottom:144.150667pt;}
.y3b{bottom:150.586667pt;}
.y59{bottom:157.590667pt;}
.y3a{bottom:165.946667pt;}
.y39{bottom:181.306667pt;}
.y38{bottom:196.506667pt;}
.y37{bottom:211.866667pt;}
.y36{bottom:227.226667pt;}
.y35{bottom:242.586667pt;}
.y8d{bottom:257.946667pt;}
.y34{bottom:257.973333pt;}
.y1f{bottom:260.533333pt;}
.y8c{bottom:273.146667pt;}
.y33{bottom:273.333333pt;}
.y1e{bottom:275.733333pt;}
.y8b{bottom:288.506667pt;}
.y32{bottom:288.533333pt;}
.y1d{bottom:297.173333pt;}
.y11{bottom:297.800000pt;}
.y8a{bottom:303.866667pt;}
.y31{bottom:303.893333pt;}
.y1c{bottom:318.613333pt;}
.y30{bottom:318.933333pt;}
.y89{bottom:319.266667pt;}
.y2f{bottom:331.733333pt;}
.y93{bottom:334.306667pt;}
.y88{bottom:334.626667pt;}
.y2e{bottom:335.733333pt;}
.y1b{bottom:340.053333pt;}
.y2d{bottom:349.493333pt;}
.y87{bottom:349.986667pt;}
.y1a{bottom:361.653333pt;}
.y2c{bottom:363.253333pt;}
.y86{bottom:365.186667pt;}
.y2b{bottom:377.173333pt;}
.y85{bottom:380.546667pt;}
.y19{bottom:383.093333pt;}
.y2a{bottom:390.933333pt;}
.y84{bottom:395.906667pt;}
.y18{bottom:404.533333pt;}
.y29{bottom:404.693333pt;}
.y83{bottom:410.946667pt;}
.y92{bottom:411.266667pt;}
.y28{bottom:418.453333pt;}
.y17{bottom:425.973333pt;}
.y82{bottom:426.626667pt;}
.y27{bottom:432.373333pt;}
.y81{bottom:441.986667pt;}
.y26{bottom:446.133333pt;}
.y16{bottom:447.413333pt;}
.y80{bottom:457.186667pt;}
.y25{bottom:459.893333pt;}
.y15{bottom:468.853333pt;}
.y7f{bottom:472.546667pt;}
.y24{bottom:473.653333pt;}
.y23{bottom:487.613333pt;}
.y7e{bottom:487.906667pt;}
.y14{bottom:490.333333pt;}
.y22{bottom:501.373333pt;}
.y7d{bottom:503.266667pt;}
.y13{bottom:511.933333pt;}
.y21{bottom:515.133333pt;}
.y7c{bottom:518.626667pt;}
.y20{bottom:528.733333pt;}
.y46{bottom:530.813333pt;}
.y12{bottom:533.373333pt;}
.y7b{bottom:533.986667pt;}
.y7a{bottom:549.213333pt;}
.y91{bottom:564.253333pt;}
.y79{bottom:564.573333pt;}
.y78{bottom:579.933333pt;}
.y77{bottom:595.293333pt;}
.y76{bottom:610.653333pt;}
.y75{bottom:625.853333pt;}
.y74{bottom:641.213333pt;}
.y73{bottom:656.573333pt;}
.y72{bottom:671.933333pt;}
.y71{bottom:687.293333pt;}
.y70{bottom:702.333333pt;}
.y90{bottom:702.653333pt;}
.y6f{bottom:717.853333pt;}
.y6e{bottom:733.213333pt;}
.y6d{bottom:748.573333pt;}
.y6c{bottom:763.933333pt;}
.y6b{bottom:779.333333pt;}
.y6a{bottom:794.693333pt;}
.y69{bottom:809.893333pt;}
.y68{bottom:825.253333pt;}
.y10{bottom:839.973333pt;}
.y67{bottom:840.613333pt;}
.yf{bottom:843.173333pt;}
.ye{bottom:853.733333pt;}
.y66{bottom:855.973333pt;}
.yd{bottom:868.933333pt;}
.y65{bottom:871.333333pt;}
.yc{bottom:884.293333pt;}
.y64{bottom:886.533333pt;}
.y63{bottom:901.893333pt;}
.yb{bottom:915.813333pt;}
.y62{bottom:917.253333pt;}
.y61{bottom:932.613333pt;}
.ya{bottom:937.253333pt;}
.y60{bottom:947.973333pt;}
.y9{bottom:962.533333pt;}
.y5f{bottom:963.333333pt;}
.y5c{bottom:965.760000pt;}
.y5e{bottom:978.213333pt;}
.y8f{bottom:978.533333pt;}
.y6{bottom:992.453333pt;}
.y1{bottom:998.693333pt;}
.hc{height:5.025000pt;}
.h10{height:10.678125pt;}
.h18{height:24.480000pt;}
.h14{height:26.381250pt;}
.h6{height:26.735625pt;}
.hb{height:31.406250pt;}
.hf{height:36.431250pt;}
.h16{height:36.920625pt;}
.h13{height:37.090625pt;}
.he{height:37.410000pt;}
.h12{height:39.562500pt;}
.h11{height:47.085938pt;}
.h17{height:48.375000pt;}
.h8{height:50.955000pt;}
.h7{height:52.134375pt;}
.ha{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h19{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:75.465000pt;}
.h2{height:75.540000pt;}
.h4{height:104.160000pt;}
.h15{height:168.796000pt;}
.hd{height:541.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:-461.226667pt;}
.w6{width:68.960000pt;}
.w2{width:92.480000pt;}
.w4{width:117.912000pt;}
.w8{width:152.320000pt;}
.w5{width:530.213333pt;}
.w3{width:553.253333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x18{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x1d{left:16.160000pt;}
.x16{left:17.760000pt;}
.x15{left:25.760000pt;}
.xf{left:38.880000pt;}
.x1e{left:42.400000pt;}
.x10{left:45.120000pt;}
.xe{left:48.960000pt;}
.x19{left:55.240000pt;}
.x14{left:59.674667pt;}
.x12{left:63.834667pt;}
.x13{left:65.114667pt;}
.x1{left:69.624000pt;}
.x8{left:76.832000pt;}
.x2{left:85.122667pt;}
.x1f{left:91.354667pt;}
.x1c{left:94.874667pt;}
.x21{left:100.832000pt;}
.x11{left:110.714667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x17{left:194.746667pt;}
.xb{left:479.133333pt;}
.xc{left:519.813333pt;}
.xa{left:579.333333pt;}
.x7{left:697.280000pt;}
.x9{left:710.880000pt;}
.xd{left:717.280000pt;}
.x1a{left:724.960000pt;}
.x1b{left:1255.146667pt;}
}




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