
    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_1f13b771a7714e9a60cadce0.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_24b9c75346d0dc0b6db06417.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f831e141c2a2e0fd910b35c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120117;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_53cc6b6dbef019826df6e3b5.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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_ca6f331cf7b0e469d2d09a65.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_5a06a0ac3fff2927f1962fba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls7{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.017280px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.004320px;}
.ls11{letter-spacing:0.010080px;}
.lsc{letter-spacing:0.073440px;}
.ls2{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.186000px;}
.ls12{letter-spacing:0.190080px;}
.ls4{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.380400px;}
.lsb{letter-spacing:0.612000px;}
.ls1a{letter-spacing:0.618000px;}
.ls14{letter-spacing:0.666000px;}
.lse{letter-spacing:0.666720px;}
.lsd{letter-spacing:0.702720px;}
.ls19{letter-spacing:0.726000px;}
.ls9{letter-spacing:1.134000px;}
.lsf{letter-spacing:1.386720px;}
.ls1{letter-spacing:2.106720px;}
.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:-59.760000px;}
.wsa{word-spacing:-34.899840px;}
.ws7{word-spacing:-17.747280px;}
.ws9{word-spacing:-17.279280px;}
.wse{word-spacing:-16.993680px;}
.ws0{word-spacing:-16.873080px;}
.wsb{word-spacing:-16.799280px;}
.ws6{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.506480px;}
.ws5{word-spacing:-16.353480px;}
.wsf{word-spacing:-11.534640px;}
.ws8{word-spacing:-10.808640px;}
.wsc{word-spacing:-10.791360px;}
.wsd{word-spacing:-10.008000px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-5.419920px;}
._f{margin-left:-3.674880px;}
._2{margin-left:-2.457120px;}
._0{margin-left:-1.347840px;}
._1{width:1.951680px;}
._7{width:3.088560px;}
._8{width:4.123440px;}
._6{width:5.258880px;}
._5{width:6.812640px;}
._15{width:8.386080px;}
._11{width:10.011360px;}
._4{width:11.502240px;}
._3{width:12.788640px;}
._9{width:13.987440px;}
._a{width:15.408240px;}
._13{width:19.171440px;}
._12{width:20.676960px;}
._17{width:23.485680px;}
._18{width:25.053600px;}
._c{width:26.055360px;}
._d{width:27.841920px;}
._16{width:50.243520px;}
._14{width:52.704000px;}
._e{width:63.873120px;}
._b{width:69.552000px;}
._19{width:87.013440px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y65{bottom:1.005000px;}
.y4c{bottom:2.805000px;}
.y64{bottom:16.665000px;}
.y4b{bottom:18.285000px;}
.y68{bottom:27.750000px;}
.y4a{bottom:33.765000px;}
.y67{bottom:43.230000px;}
.y9c{bottom:117.900000px;}
.y9b{bottom:135.180000px;}
.y62{bottom:135.900000px;}
.y48{bottom:141.480000px;}
.y9a{bottom:152.460000px;}
.y61{bottom:153.180000px;}
.y47{bottom:158.760000px;}
.y2c{bottom:168.660000px;}
.y46{bottom:176.070000px;}
.y99{bottom:178.590000px;}
.y60{bottom:180.390000px;}
.y45{bottom:193.350000px;}
.y2b{bottom:194.970000px;}
.y98{bottom:195.870000px;}
.y5f{bottom:197.670000px;}
.y44{bottom:210.450000px;}
.y97{bottom:213.150000px;}
.y5e{bottom:220.710000px;}
.y2a{bottom:221.250000px;}
.y66{bottom:227.340000px;}
.y43{bottom:227.730000px;}
.y96{bottom:230.430000px;}
.y29{bottom:238.530000px;}
.y69{bottom:239.610000px;}
.y42{bottom:245.010000px;}
.y95{bottom:247.710000px;}
.y28{bottom:255.810000px;}
.y94{bottom:264.810000px;}
.y41{bottom:272.010000px;}
.y27{bottom:281.910000px;}
.y93{bottom:282.090000px;}
.y26{bottom:299.190000px;}
.y92{bottom:299.370000px;}
.y40{bottom:309.990000px;}
.y25{bottom:316.470000px;}
.y91{bottom:316.650000px;}
.y3f{bottom:327.270000px;}
.y24{bottom:333.750000px;}
.y90{bottom:333.930000px;}
.y3e{bottom:344.550000px;}
.y23{bottom:351.030000px;}
.y8f{bottom:351.210000px;}
.y3d{bottom:361.650000px;}
.y22{bottom:368.310000px;}
.y3c{bottom:378.930000px;}
.y21{bottom:385.410000px;}
.y8e{bottom:394.590000px;}
.y20{bottom:402.690000px;}
.y3b{bottom:405.210000px;}
.y8d{bottom:411.870000px;}
.y1f{bottom:420.015000px;}
.y3a{bottom:422.535000px;}
.y8c{bottom:429.195000px;}
.y39{bottom:439.815000px;}
.y1e{bottom:446.295000px;}
.y8b{bottom:455.475000px;}
.y38{bottom:457.095000px;}
.y1d{bottom:463.575000px;}
.y8a{bottom:472.755000px;}
.y37{bottom:474.195000px;}
.y1c{bottom:480.855000px;}
.y89{bottom:489.855000px;}
.y36{bottom:491.475000px;}
.y1b{bottom:506.955000px;}
.y88{bottom:507.135000px;}
.y35{bottom:508.755000px;}
.yb5{bottom:509.295000px;}
.y87{bottom:524.415000px;}
.y34{bottom:526.035000px;}
.y5d{bottom:532.155000px;}
.y1a{bottom:534.315000px;}
.yb4{bottom:535.575000px;}
.y86{bottom:541.695000px;}
.y33{bottom:543.315000px;}
.y5c{bottom:549.435000px;}
.y19{bottom:551.415000px;}
.yb3{bottom:552.855000px;}
.y85{bottom:558.975000px;}
.y5b{bottom:566.715000px;}
.y32{bottom:570.315000px;}
.y84{bottom:576.255000px;}
.y18{bottom:578.775000px;}
.yb2{bottom:579.135000px;}
.y5a{bottom:593.355000px;}
.y17{bottom:596.055000px;}
.yb1{bottom:596.235000px;}
.y31{bottom:608.115000px;}
.yb0{bottom:613.515000px;}
.y83{bottom:619.635000px;}
.y16{bottom:623.235000px;}
.y30{bottom:625.395000px;}
.y82{bottom:636.915000px;}
.yaf{bottom:639.795000px;}
.y15{bottom:640.515000px;}
.y2f{bottom:642.675000px;}
.y81{bottom:654.195000px;}
.y14{bottom:657.795000px;}
.yae{bottom:666.825000px;}
.y2e{bottom:669.705000px;}
.y80{bottom:671.505000px;}
.y13{bottom:675.105000px;}
.y7f{bottom:688.605000px;}
.y12{bottom:692.385000px;}
.y59{bottom:704.265000px;}
.y7e{bottom:705.885000px;}
.y63{bottom:710.280000px;}
.y2d{bottom:713.265000px;}
.yad{bottom:713.805000px;}
.y11{bottom:719.385000px;}
.y7d{bottom:723.165000px;}
.y49{bottom:727.020000px;}
.yac{bottom:731.085000px;}
.y7c{bottom:740.445000px;}
.y7b{bottom:757.725000px;}
.yab{bottom:758.085000px;}
.y10{bottom:766.185000px;}
.y7a{bottom:775.005000px;}
.yf{bottom:792.465000px;}
.y79{bottom:801.105000px;}
.yaa{bottom:804.885000px;}
.ye{bottom:809.745000px;}
.y78{bottom:818.385000px;}
.ya9{bottom:822.165000px;}
.yd{bottom:827.025000px;}
.ya8{bottom:839.445000px;}
.yc{bottom:844.305000px;}
.y77{bottom:845.385000px;}
.ya7{bottom:856.725000px;}
.yb{bottom:861.585000px;}
.ya6{bottom:874.005000px;}
.ya{bottom:878.685000px;}
.ya5{bottom:891.285000px;}
.y76{bottom:892.365000px;}
.y9{bottom:895.965000px;}
.y75{bottom:909.690000px;}
.y8{bottom:913.290000px;}
.ya4{bottom:918.330000px;}
.y74{bottom:926.970000px;}
.y58{bottom:935.610000px;}
.y7{bottom:940.290000px;}
.y73{bottom:944.250000px;}
.y57{bottom:953.070000px;}
.y72{bottom:961.350000px;}
.ya3{bottom:965.130000px;}
.y56{bottom:970.170000px;}
.ya2{bottom:982.410000px;}
.y55{bottom:987.450000px;}
.y71{bottom:987.990000px;}
.y6{bottom:996.450000px;}
.ya1{bottom:999.690000px;}
.y54{bottom:1004.910000px;}
.y5{bottom:1015.530000px;}
.ya0{bottom:1016.970000px;}
.y70{bottom:1020.210000px;}
.y53{bottom:1022.010000px;}
.y9f{bottom:1034.250000px;}
.y6f{bottom:1037.310000px;}
.y52{bottom:1039.290000px;}
.y4{bottom:1043.970000px;}
.y9e{bottom:1051.530000px;}
.y51{bottom:1056.570000px;}
.y6e{bottom:1063.590000px;}
.y3{bottom:1073.670000px;}
.y9d{bottom:1078.530000px;}
.y6d{bottom:1080.870000px;}
.y50{bottom:1090.950000px;}
.y6c{bottom:1107.150000px;}
.y4f{bottom:1108.230000px;}
.y2{bottom:1112.910000px;}
.y6b{bottom:1124.430000px;}
.y4e{bottom:1125.330000px;}
.y1{bottom:1137.030000px;}
.y6a{bottom:1141.530000px;}
.y4d{bottom:1142.610000px;}
.ha{height:29.160000px;}
.h9{height:45.316055px;}
.h7{height:46.260000px;}
.h5{height:54.361758px;}
.hb{height:55.800000px;}
.h8{height:56.320312px;}
.h6{height:62.327813px;}
.h4{height:69.086250px;}
.h3{height:75.093750px;}
.h2{height:87.859687px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:574.560000px;}
.w2{width:574.740000px;}
.w3{width:609.660000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:10.830000px;}
.x8{left:106.416000px;}
.x10{left:129.600000px;}
.x9{left:133.416000px;}
.xe{left:137.376000px;}
.x11{left:139.860000px;}
.xc{left:145.440000px;}
.x1{left:147.996000px;}
.x12{left:150.690000px;}
.xa{left:160.410000px;}
.xf{left:164.370000px;}
.x5{left:174.090000px;}
.x4{left:213.870000px;}
.x2{left:215.490000px;}
.x6{left:361.695000px;}
.x7{left:409.935000px;}
.x3{left:446.475000px;}
.xb{left:754.530000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls7{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.015360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.003840pt;}
.ls11{letter-spacing:0.008960pt;}
.lsc{letter-spacing:0.065280pt;}
.ls2{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.165333pt;}
.ls12{letter-spacing:0.168960pt;}
.ls4{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.338133pt;}
.lsb{letter-spacing:0.544000pt;}
.ls1a{letter-spacing:0.549333pt;}
.ls14{letter-spacing:0.592000pt;}
.lse{letter-spacing:0.592640pt;}
.lsd{letter-spacing:0.624640pt;}
.ls19{letter-spacing:0.645333pt;}
.ls9{letter-spacing:1.008000pt;}
.lsf{letter-spacing:1.232640pt;}
.ls1{letter-spacing:1.872640pt;}
.ws2{word-spacing:-53.120000pt;}
.wsa{word-spacing:-31.022080pt;}
.ws7{word-spacing:-15.775360pt;}
.ws9{word-spacing:-15.359360pt;}
.wse{word-spacing:-15.105493pt;}
.ws0{word-spacing:-14.998293pt;}
.wsb{word-spacing:-14.932693pt;}
.ws6{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.672427pt;}
.ws5{word-spacing:-14.536427pt;}
.wsf{word-spacing:-10.253013pt;}
.ws8{word-spacing:-9.607680pt;}
.wsc{word-spacing:-9.592320pt;}
.wsd{word-spacing:-8.896000pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-4.817707pt;}
._f{margin-left:-3.266560pt;}
._2{margin-left:-2.184107pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.734827pt;}
._7{width:2.745387pt;}
._8{width:3.665280pt;}
._6{width:4.674560pt;}
._5{width:6.055680pt;}
._15{width:7.454293pt;}
._11{width:8.898987pt;}
._4{width:10.224213pt;}
._3{width:11.367680pt;}
._9{width:12.433280pt;}
._a{width:13.696213pt;}
._13{width:17.041280pt;}
._12{width:18.379520pt;}
._17{width:20.876160pt;}
._18{width:22.269867pt;}
._c{width:23.160320pt;}
._d{width:24.748373pt;}
._16{width:44.660907pt;}
._14{width:46.848000pt;}
._e{width:56.776107pt;}
._b{width:61.824000pt;}
._19{width:77.345280pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:0.893333pt;}
.y4c{bottom:2.493333pt;}
.y64{bottom:14.813333pt;}
.y4b{bottom:16.253333pt;}
.y68{bottom:24.666667pt;}
.y4a{bottom:30.013333pt;}
.y67{bottom:38.426667pt;}
.y9c{bottom:104.800000pt;}
.y9b{bottom:120.160000pt;}
.y62{bottom:120.800000pt;}
.y48{bottom:125.760000pt;}
.y9a{bottom:135.520000pt;}
.y61{bottom:136.160000pt;}
.y47{bottom:141.120000pt;}
.y2c{bottom:149.920000pt;}
.y46{bottom:156.506667pt;}
.y99{bottom:158.746667pt;}
.y60{bottom:160.346667pt;}
.y45{bottom:171.866667pt;}
.y2b{bottom:173.306667pt;}
.y98{bottom:174.106667pt;}
.y5f{bottom:175.706667pt;}
.y44{bottom:187.066667pt;}
.y97{bottom:189.466667pt;}
.y5e{bottom:196.186667pt;}
.y2a{bottom:196.666667pt;}
.y66{bottom:202.080000pt;}
.y43{bottom:202.426667pt;}
.y96{bottom:204.826667pt;}
.y29{bottom:212.026667pt;}
.y69{bottom:212.986667pt;}
.y42{bottom:217.786667pt;}
.y95{bottom:220.186667pt;}
.y28{bottom:227.386667pt;}
.y94{bottom:235.386667pt;}
.y41{bottom:241.786667pt;}
.y27{bottom:250.586667pt;}
.y93{bottom:250.746667pt;}
.y26{bottom:265.946667pt;}
.y92{bottom:266.106667pt;}
.y40{bottom:275.546667pt;}
.y25{bottom:281.306667pt;}
.y91{bottom:281.466667pt;}
.y3f{bottom:290.906667pt;}
.y24{bottom:296.666667pt;}
.y90{bottom:296.826667pt;}
.y3e{bottom:306.266667pt;}
.y23{bottom:312.026667pt;}
.y8f{bottom:312.186667pt;}
.y3d{bottom:321.466667pt;}
.y22{bottom:327.386667pt;}
.y3c{bottom:336.826667pt;}
.y21{bottom:342.586667pt;}
.y8e{bottom:350.746667pt;}
.y20{bottom:357.946667pt;}
.y3b{bottom:360.186667pt;}
.y8d{bottom:366.106667pt;}
.y1f{bottom:373.346667pt;}
.y3a{bottom:375.586667pt;}
.y8c{bottom:381.506667pt;}
.y39{bottom:390.946667pt;}
.y1e{bottom:396.706667pt;}
.y8b{bottom:404.866667pt;}
.y38{bottom:406.306667pt;}
.y1d{bottom:412.066667pt;}
.y8a{bottom:420.226667pt;}
.y37{bottom:421.506667pt;}
.y1c{bottom:427.426667pt;}
.y89{bottom:435.426667pt;}
.y36{bottom:436.866667pt;}
.y1b{bottom:450.626667pt;}
.y88{bottom:450.786667pt;}
.y35{bottom:452.226667pt;}
.yb5{bottom:452.706667pt;}
.y87{bottom:466.146667pt;}
.y34{bottom:467.586667pt;}
.y5d{bottom:473.026667pt;}
.y1a{bottom:474.946667pt;}
.yb4{bottom:476.066667pt;}
.y86{bottom:481.506667pt;}
.y33{bottom:482.946667pt;}
.y5c{bottom:488.386667pt;}
.y19{bottom:490.146667pt;}
.yb3{bottom:491.426667pt;}
.y85{bottom:496.866667pt;}
.y5b{bottom:503.746667pt;}
.y32{bottom:506.946667pt;}
.y84{bottom:512.226667pt;}
.y18{bottom:514.466667pt;}
.yb2{bottom:514.786667pt;}
.y5a{bottom:527.426667pt;}
.y17{bottom:529.826667pt;}
.yb1{bottom:529.986667pt;}
.y31{bottom:540.546667pt;}
.yb0{bottom:545.346667pt;}
.y83{bottom:550.786667pt;}
.y16{bottom:553.986667pt;}
.y30{bottom:555.906667pt;}
.y82{bottom:566.146667pt;}
.yaf{bottom:568.706667pt;}
.y15{bottom:569.346667pt;}
.y2f{bottom:571.266667pt;}
.y81{bottom:581.506667pt;}
.y14{bottom:584.706667pt;}
.yae{bottom:592.733333pt;}
.y2e{bottom:595.293333pt;}
.y80{bottom:596.893333pt;}
.y13{bottom:600.093333pt;}
.y7f{bottom:612.093333pt;}
.y12{bottom:615.453333pt;}
.y59{bottom:626.013333pt;}
.y7e{bottom:627.453333pt;}
.y63{bottom:631.360000pt;}
.y2d{bottom:634.013333pt;}
.yad{bottom:634.493333pt;}
.y11{bottom:639.453333pt;}
.y7d{bottom:642.813333pt;}
.y49{bottom:646.240000pt;}
.yac{bottom:649.853333pt;}
.y7c{bottom:658.173333pt;}
.y7b{bottom:673.533333pt;}
.yab{bottom:673.853333pt;}
.y10{bottom:681.053333pt;}
.y7a{bottom:688.893333pt;}
.yf{bottom:704.413333pt;}
.y79{bottom:712.093333pt;}
.yaa{bottom:715.453333pt;}
.ye{bottom:719.773333pt;}
.y78{bottom:727.453333pt;}
.ya9{bottom:730.813333pt;}
.yd{bottom:735.133333pt;}
.ya8{bottom:746.173333pt;}
.yc{bottom:750.493333pt;}
.y77{bottom:751.453333pt;}
.ya7{bottom:761.533333pt;}
.yb{bottom:765.853333pt;}
.ya6{bottom:776.893333pt;}
.ya{bottom:781.053333pt;}
.ya5{bottom:792.253333pt;}
.y76{bottom:793.213333pt;}
.y9{bottom:796.413333pt;}
.y75{bottom:808.613333pt;}
.y8{bottom:811.813333pt;}
.ya4{bottom:816.293333pt;}
.y74{bottom:823.973333pt;}
.y58{bottom:831.653333pt;}
.y7{bottom:835.813333pt;}
.y73{bottom:839.333333pt;}
.y57{bottom:847.173333pt;}
.y72{bottom:854.533333pt;}
.ya3{bottom:857.893333pt;}
.y56{bottom:862.373333pt;}
.ya2{bottom:873.253333pt;}
.y55{bottom:877.733333pt;}
.y71{bottom:878.213333pt;}
.y6{bottom:885.733333pt;}
.ya1{bottom:888.613333pt;}
.y54{bottom:893.253333pt;}
.y5{bottom:902.693333pt;}
.ya0{bottom:903.973333pt;}
.y70{bottom:906.853333pt;}
.y53{bottom:908.453333pt;}
.y9f{bottom:919.333333pt;}
.y6f{bottom:922.053333pt;}
.y52{bottom:923.813333pt;}
.y4{bottom:927.973333pt;}
.y9e{bottom:934.693333pt;}
.y51{bottom:939.173333pt;}
.y6e{bottom:945.413333pt;}
.y3{bottom:954.373333pt;}
.y9d{bottom:958.693333pt;}
.y6d{bottom:960.773333pt;}
.y50{bottom:969.733333pt;}
.y6c{bottom:984.133333pt;}
.y4f{bottom:985.093333pt;}
.y2{bottom:989.253333pt;}
.y6b{bottom:999.493333pt;}
.y4e{bottom:1000.293333pt;}
.y1{bottom:1010.693333pt;}
.y6a{bottom:1014.693333pt;}
.y4d{bottom:1015.653333pt;}
.ha{height:25.920000pt;}
.h9{height:40.280938pt;}
.h7{height:41.120000pt;}
.h5{height:48.321562pt;}
.hb{height:49.600000pt;}
.h8{height:50.062500pt;}
.h6{height:55.402500pt;}
.h4{height:61.410000pt;}
.h3{height:66.750000pt;}
.h2{height:78.097500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:510.720000pt;}
.w2{width:510.880000pt;}
.w3{width:541.920000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.626667pt;}
.x8{left:94.592000pt;}
.x10{left:115.200000pt;}
.x9{left:118.592000pt;}
.xe{left:122.112000pt;}
.x11{left:124.320000pt;}
.xc{left:129.280000pt;}
.x1{left:131.552000pt;}
.x12{left:133.946667pt;}
.xa{left:142.586667pt;}
.xf{left:146.106667pt;}
.x5{left:154.746667pt;}
.x4{left:190.106667pt;}
.x2{left:191.546667pt;}
.x6{left:321.506667pt;}
.x7{left:364.386667pt;}
.x3{left:396.866667pt;}
.xb{left:670.693333pt;}
}




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