
    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_31b958945dcb7d5f21907446.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.859863;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_8253addb4b6cbd00ccaff3b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_608425a6bdb7a0749870d036.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_84d5a72042e25bb5d53a3ce3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_c2867e1622bb49c6be96e91c.woff2')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_0417d1ef3790f5523b534975.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_011aa60599a25f241a1a64fd.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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(0.258352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258352,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-82.980000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.lsb{letter-spacing:-2.672315px;}
.ls7{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.lse{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:15.120000px;}
.ls4{letter-spacing:34.560000px;}
.ls3{letter-spacing:35.280000px;}
.ls1{letter-spacing:106.536000px;}
.lsd{letter-spacing:881.436000px;}
.lsf{letter-spacing:1077.276000px;}
.ls8{letter-spacing:1089.516000px;}
.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;}
}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.226440px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.700000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:388.086935px;}
._13{margin-left:-2.304000px;}
._0{margin-left:-1.175040px;}
._1{width:1.128000px;}
._16{width:2.160000px;}
._5{width:3.312000px;}
._4{width:4.608000px;}
._c{width:5.640000px;}
._b{width:6.672000px;}
._f{width:8.592000px;}
._8{width:9.936000px;}
._9{width:11.088000px;}
._a{width:12.540000px;}
._12{width:13.608000px;}
._6{width:14.760000px;}
._7{width:15.840000px;}
._17{width:16.920000px;}
._e{width:19.368000px;}
._1f{width:20.448000px;}
._1a{width:22.008000px;}
._1b{width:23.280000px;}
._21{width:25.067520px;}
._3{width:26.259840px;}
._2{width:27.455040px;}
._15{width:28.598880px;}
._14{width:29.640960px;}
._1c{width:31.056960px;}
._20{width:32.181120px;}
._10{width:34.056000px;}
._11{width:35.316000px;}
._18{width:38.232000px;}
._19{width:39.600000px;}
._d{width:46.103040px;}
._1e{width:194.376000px;}
._1d{width:407.127178px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs4{font-size:65.471716px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y86{bottom:1.800000px;}
.y72{bottom:3.240000px;}
.y63{bottom:3.600000px;}
.y5a{bottom:3.780000px;}
.y7d{bottom:5.400000px;}
.y7a{bottom:5.580000px;}
.y78{bottom:8.820000px;}
.y76{bottom:9.000000px;}
.y5c{bottom:12.420000px;}
.y61{bottom:20.880000px;}
.y5d{bottom:21.060000px;}
.y85{bottom:26.130000px;}
.y71{bottom:26.640000px;}
.y3f{bottom:27.725252px;}
.y62{bottom:38.160000px;}
.y5f{bottom:38.340000px;}
.y3a{bottom:51.650822px;}
.y3{bottom:77.256000px;}
.y3b{bottom:91.902565px;}
.y2{bottom:98.136000px;}
.y3c{bottom:132.196064px;}
.y32{bottom:146.736000px;}
.y6f{bottom:147.096000px;}
.y31{bottom:167.430000px;}
.y6e{bottom:167.790000px;}
.y3d{bottom:173.747220px;}
.ya3{bottom:178.050000px;}
.y30{bottom:188.130000px;}
.y6d{bottom:188.490000px;}
.y2f{bottom:208.830000px;}
.y6c{bottom:209.190000px;}
.y3e{bottom:213.998964px;}
.ya2{bottom:214.770000px;}
.y2e{bottom:229.530000px;}
.y6b{bottom:229.890000px;}
.ya1{bottom:234.030000px;}
.y6a{bottom:250.590000px;}
.ya0{bottom:252.210000px;}
.y47{bottom:266.295000px;}
.y9f{bottom:270.255000px;}
.y2d{bottom:270.975000px;}
.y69{bottom:271.335000px;}
.y46{bottom:286.995000px;}
.y9e{bottom:288.435000px;}
.y2c{bottom:291.675000px;}
.y68{bottom:292.035000px;}
.y9d{bottom:306.435000px;}
.y45{bottom:307.695000px;}
.y2b{bottom:312.375000px;}
.y67{bottom:312.735000px;}
.y9c{bottom:324.615000px;}
.y44{bottom:328.395000px;}
.y2a{bottom:333.075000px;}
.y66{bottom:333.435000px;}
.y9b{bottom:342.795000px;}
.y43{bottom:349.095000px;}
.y29{bottom:353.775000px;}
.y65{bottom:354.135000px;}
.y9a{bottom:360.795000px;}
.y42{bottom:369.795000px;}
.y28{bottom:374.475000px;}
.y99{bottom:378.975000px;}
.y41{bottom:390.495000px;}
.y27{bottom:395.175000px;}
.y98{bottom:397.155000px;}
.y40{bottom:406.695000px;}
.y39{bottom:406.760057px;}
.y64{bottom:412.455000px;}
.y97{bottom:415.155000px;}
.y26{bottom:415.875000px;}
.y96{bottom:433.335000px;}
.y25{bottom:436.395000px;}
.y60{bottom:447.735000px;}
.y95{bottom:451.335000px;}
.y24{bottom:457.095000px;}
.y94{bottom:469.515000px;}
.y23{bottom:477.795000px;}
.y93{bottom:487.695000px;}
.y22{bottom:498.495000px;}
.y5e{bottom:500.115000px;}
.y92{bottom:505.695000px;}
.y21{bottom:519.195000px;}
.y91{bottom:523.875000px;}
.y20{bottom:539.895000px;}
.y90{bottom:541.875000px;}
.y5b{bottom:552.705000px;}
.y8f{bottom:560.085000px;}
.y1f{bottom:560.625000px;}
.y8e{bottom:578.265000px;}
.y1e{bottom:581.325000px;}
.y59{bottom:587.985000px;}
.y8d{bottom:596.265000px;}
.y1d{bottom:602.025000px;}
.y58{bottom:610.485000px;}
.y8c{bottom:614.445000px;}
.y1c{bottom:622.725000px;}
.y57{bottom:631.185000px;}
.y8b{bottom:632.625000px;}
.y1b{bottom:643.425000px;}
.y8a{bottom:650.625000px;}
.y56{bottom:651.885000px;}
.y1a{bottom:664.125000px;}
.y89{bottom:668.805000px;}
.y55{bottom:672.585000px;}
.y19{bottom:684.825000px;}
.y88{bottom:686.805000px;}
.y54{bottom:693.285000px;}
.y18{bottom:705.525000px;}
.y53{bottom:713.985000px;}
.y17{bottom:726.225000px;}
.y52{bottom:734.685000px;}
.y16{bottom:746.925000px;}
.y51{bottom:755.385000px;}
.y15{bottom:767.625000px;}
.y50{bottom:776.085000px;}
.y14{bottom:788.325000px;}
.y4f{bottom:796.785000px;}
.y13{bottom:809.025000px;}
.y4e{bottom:817.485000px;}
.y12{bottom:829.725000px;}
.y4d{bottom:838.230000px;}
.y11{bottom:850.470000px;}
.y4c{bottom:858.930000px;}
.y10{bottom:871.170000px;}
.y4b{bottom:879.630000px;}
.yf{bottom:891.870000px;}
.y4a{bottom:900.330000px;}
.ye{bottom:912.570000px;}
.y49{bottom:921.030000px;}
.yd{bottom:932.910000px;}
.y38{bottom:933.270000px;}
.y48{bottom:937.230000px;}
.yc{bottom:953.610000px;}
.y37{bottom:953.970000px;}
.y73{bottom:957.030000px;}
.y77{bottom:962.610000px;}
.yb{bottom:974.670000px;}
.y81{bottom:979.530000px;}
.y74{bottom:985.470000px;}
.y7e{bottom:989.430000px;}
.ya{bottom:995.370000px;}
.y7c{bottom:997.530000px;}
.y7b{bottom:1006.350000px;}
.y9{bottom:1016.070000px;}
.y7f{bottom:1019.850000px;}
.y80{bottom:1033.530000px;}
.y8{bottom:1036.410000px;}
.y36{bottom:1036.770000px;}
.y79{bottom:1046.850000px;}
.y75{bottom:1056.930000px;}
.y35{bottom:1057.470000px;}
.y83{bottom:1073.850000px;}
.y7{bottom:1078.170000px;}
.y82{bottom:1083.930000px;}
.y70{bottom:1085.190000px;}
.y84{bottom:1094.010000px;}
.y6{bottom:1098.510000px;}
.y34{bottom:1098.870000px;}
.y5{bottom:1119.210000px;}
.y33{bottom:1119.570000px;}
.y4{bottom:1139.940000px;}
.y87{bottom:1140.300000px;}
.y1{bottom:1194.300000px;}
.ha{height:17.280000px;}
.h16{height:21.045000px;}
.h15{height:21.225000px;}
.h14{height:24.465000px;}
.h13{height:24.645000px;}
.h10{height:34.365000px;}
.hc{height:34.560000px;}
.h11{height:42.105000px;}
.h17{height:42.330000px;}
.hf{height:51.645000px;}
.he{height:51.870000px;}
.h12{height:54.628594px;}
.h1a{height:56.801250px;}
.h18{height:57.003750px;}
.hb{height:58.621992px;}
.hd{height:58.651172px;}
.h2{height:60.257812px;}
.h19{height:62.184375px;}
.h9{height:64.256908px;}
.h4{height:65.010937px;}
.h1b{height:66.757500px;}
.h7{height:70.628906px;}
.h3{height:70.664062px;}
.h5{height:72.562500px;}
.h6{height:81.736875px;}
.h8{height:253.031464px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:43.200000px;}
.we{width:49.665000px;}
.wc{width:49.680000px;}
.wf{width:49.716000px;}
.wd{width:49.845000px;}
.wa{width:49.860000px;}
.wb{width:49.896000px;}
.w9{width:57.960000px;}
.w8{width:107.661000px;}
.w5{width:129.636000px;}
.w7{width:132.469500px;}
.w10{width:149.061000px;}
.w3{width:170.839500px;}
.w6{width:258.495000px;}
.w2{width:636.891231px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.083500px;}
.x28{left:10.620000px;}
.x1f{left:14.040000px;}
.x26{left:15.285000px;}
.x17{left:16.560000px;}
.x1d{left:17.820000px;}
.x23{left:19.785000px;}
.x2a{left:20.880000px;}
.xe{left:22.049554px;}
.x24{left:23.925000px;}
.xd{left:29.816520px;}
.x21{left:32.203500px;}
.x19{left:37.440000px;}
.x1e{left:41.940000px;}
.x35{left:43.005000px;}
.xf{left:47.982591px;}
.x15{left:68.743500px;}
.x1b{left:97.905000px;}
.x1{left:127.656000px;}
.x20{left:129.826500px;}
.x4{left:135.036000px;}
.x3{left:137.556000px;}
.x14{left:145.486500px;}
.x13{left:167.970000px;}
.xb{left:180.750000px;}
.x22{left:210.825000px;}
.x6{left:232.050000px;}
.x11{left:237.270000px;}
.x16{left:316.335000px;}
.x8{left:328.575000px;}
.x27{left:336.855000px;}
.x9{left:338.835000px;}
.x5{left:352.155000px;}
.x18{left:359.535000px;}
.x2d{left:361.875000px;}
.x29{left:376.995000px;}
.xa{left:396.435000px;}
.x2c{left:399.855000px;}
.xc{left:416.955000px;}
.x31{left:426.855000px;}
.x2f{left:430.995000px;}
.x7{left:446.475000px;}
.x33{left:452.955000px;}
.x2b{left:457.995000px;}
.x2e{left:486.120000px;}
.x1a{left:489.180000px;}
.x30{left:510.780000px;}
.x32{left:539.040000px;}
.x25{left:616.260000px;}
.x34{left:628.140000px;}
.x2{left:738.510000px;}
.x10{left:764.970000px;}
.x12{left:769.110000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-73.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.lsb{letter-spacing:-2.375391pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:13.440000pt;}
.ls4{letter-spacing:30.720000pt;}
.ls3{letter-spacing:31.360000pt;}
.ls1{letter-spacing:94.698667pt;}
.lsd{letter-spacing:783.498667pt;}
.lsf{letter-spacing:957.578667pt;}
.ls8{letter-spacing:968.458667pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:344.966164pt;}
._13{margin-left:-2.048000pt;}
._0{margin-left:-1.044480pt;}
._1{width:1.002667pt;}
._16{width:1.920000pt;}
._5{width:2.944000pt;}
._4{width:4.096000pt;}
._c{width:5.013333pt;}
._b{width:5.930667pt;}
._f{width:7.637333pt;}
._8{width:8.832000pt;}
._9{width:9.856000pt;}
._a{width:11.146667pt;}
._12{width:12.096000pt;}
._6{width:13.120000pt;}
._7{width:14.080000pt;}
._17{width:15.040000pt;}
._e{width:17.216000pt;}
._1f{width:18.176000pt;}
._1a{width:19.562667pt;}
._1b{width:20.693333pt;}
._21{width:22.282240pt;}
._3{width:23.342080pt;}
._2{width:24.404480pt;}
._15{width:25.421227pt;}
._14{width:26.347520pt;}
._1c{width:27.606187pt;}
._20{width:28.605440pt;}
._10{width:30.272000pt;}
._11{width:31.392000pt;}
._18{width:33.984000pt;}
._19{width:35.200000pt;}
._d{width:40.980480pt;}
._1e{width:172.778667pt;}
._1d{width:361.890825pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs4{font-size:58.197081pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:1.600000pt;}
.y72{bottom:2.880000pt;}
.y63{bottom:3.200000pt;}
.y5a{bottom:3.360000pt;}
.y7d{bottom:4.800000pt;}
.y7a{bottom:4.960000pt;}
.y78{bottom:7.840000pt;}
.y76{bottom:8.000000pt;}
.y5c{bottom:11.040000pt;}
.y61{bottom:18.560000pt;}
.y5d{bottom:18.720000pt;}
.y85{bottom:23.226667pt;}
.y71{bottom:23.680000pt;}
.y3f{bottom:24.644669pt;}
.y62{bottom:33.920000pt;}
.y5f{bottom:34.080000pt;}
.y3a{bottom:45.911842pt;}
.y3{bottom:68.672000pt;}
.y3b{bottom:81.691169pt;}
.y2{bottom:87.232000pt;}
.y3c{bottom:117.507612pt;}
.y32{bottom:130.432000pt;}
.y6f{bottom:130.752000pt;}
.y31{bottom:148.826667pt;}
.y6e{bottom:149.146667pt;}
.y3d{bottom:154.441974pt;}
.ya3{bottom:158.266667pt;}
.y30{bottom:167.226667pt;}
.y6d{bottom:167.546667pt;}
.y2f{bottom:185.626667pt;}
.y6c{bottom:185.946667pt;}
.y3e{bottom:190.221301pt;}
.ya2{bottom:190.906667pt;}
.y2e{bottom:204.026667pt;}
.y6b{bottom:204.346667pt;}
.ya1{bottom:208.026667pt;}
.y6a{bottom:222.746667pt;}
.ya0{bottom:224.186667pt;}
.y47{bottom:236.706667pt;}
.y9f{bottom:240.226667pt;}
.y2d{bottom:240.866667pt;}
.y69{bottom:241.186667pt;}
.y46{bottom:255.106667pt;}
.y9e{bottom:256.386667pt;}
.y2c{bottom:259.266667pt;}
.y68{bottom:259.586667pt;}
.y9d{bottom:272.386667pt;}
.y45{bottom:273.506667pt;}
.y2b{bottom:277.666667pt;}
.y67{bottom:277.986667pt;}
.y9c{bottom:288.546667pt;}
.y44{bottom:291.906667pt;}
.y2a{bottom:296.066667pt;}
.y66{bottom:296.386667pt;}
.y9b{bottom:304.706667pt;}
.y43{bottom:310.306667pt;}
.y29{bottom:314.466667pt;}
.y65{bottom:314.786667pt;}
.y9a{bottom:320.706667pt;}
.y42{bottom:328.706667pt;}
.y28{bottom:332.866667pt;}
.y99{bottom:336.866667pt;}
.y41{bottom:347.106667pt;}
.y27{bottom:351.266667pt;}
.y98{bottom:353.026667pt;}
.y40{bottom:361.506667pt;}
.y39{bottom:361.564495pt;}
.y64{bottom:366.626667pt;}
.y97{bottom:369.026667pt;}
.y26{bottom:369.666667pt;}
.y96{bottom:385.186667pt;}
.y25{bottom:387.906667pt;}
.y60{bottom:397.986667pt;}
.y95{bottom:401.186667pt;}
.y24{bottom:406.306667pt;}
.y94{bottom:417.346667pt;}
.y23{bottom:424.706667pt;}
.y93{bottom:433.506667pt;}
.y22{bottom:443.106667pt;}
.y5e{bottom:444.546667pt;}
.y92{bottom:449.506667pt;}
.y21{bottom:461.506667pt;}
.y91{bottom:465.666667pt;}
.y20{bottom:479.906667pt;}
.y90{bottom:481.666667pt;}
.y5b{bottom:491.293333pt;}
.y8f{bottom:497.853333pt;}
.y1f{bottom:498.333333pt;}
.y8e{bottom:514.013333pt;}
.y1e{bottom:516.733333pt;}
.y59{bottom:522.653333pt;}
.y8d{bottom:530.013333pt;}
.y1d{bottom:535.133333pt;}
.y58{bottom:542.653333pt;}
.y8c{bottom:546.173333pt;}
.y1c{bottom:553.533333pt;}
.y57{bottom:561.053333pt;}
.y8b{bottom:562.333333pt;}
.y1b{bottom:571.933333pt;}
.y8a{bottom:578.333333pt;}
.y56{bottom:579.453333pt;}
.y1a{bottom:590.333333pt;}
.y89{bottom:594.493333pt;}
.y55{bottom:597.853333pt;}
.y19{bottom:608.733333pt;}
.y88{bottom:610.493333pt;}
.y54{bottom:616.253333pt;}
.y18{bottom:627.133333pt;}
.y53{bottom:634.653333pt;}
.y17{bottom:645.533333pt;}
.y52{bottom:653.053333pt;}
.y16{bottom:663.933333pt;}
.y51{bottom:671.453333pt;}
.y15{bottom:682.333333pt;}
.y50{bottom:689.853333pt;}
.y14{bottom:700.733333pt;}
.y4f{bottom:708.253333pt;}
.y13{bottom:719.133333pt;}
.y4e{bottom:726.653333pt;}
.y12{bottom:737.533333pt;}
.y4d{bottom:745.093333pt;}
.y11{bottom:755.973333pt;}
.y4c{bottom:763.493333pt;}
.y10{bottom:774.373333pt;}
.y4b{bottom:781.893333pt;}
.yf{bottom:792.773333pt;}
.y4a{bottom:800.293333pt;}
.ye{bottom:811.173333pt;}
.y49{bottom:818.693333pt;}
.yd{bottom:829.253333pt;}
.y38{bottom:829.573333pt;}
.y48{bottom:833.093333pt;}
.yc{bottom:847.653333pt;}
.y37{bottom:847.973333pt;}
.y73{bottom:850.693333pt;}
.y77{bottom:855.653333pt;}
.yb{bottom:866.373333pt;}
.y81{bottom:870.693333pt;}
.y74{bottom:875.973333pt;}
.y7e{bottom:879.493333pt;}
.ya{bottom:884.773333pt;}
.y7c{bottom:886.693333pt;}
.y7b{bottom:894.533333pt;}
.y9{bottom:903.173333pt;}
.y7f{bottom:906.533333pt;}
.y80{bottom:918.693333pt;}
.y8{bottom:921.253333pt;}
.y36{bottom:921.573333pt;}
.y79{bottom:930.533333pt;}
.y75{bottom:939.493333pt;}
.y35{bottom:939.973333pt;}
.y83{bottom:954.533333pt;}
.y7{bottom:958.373333pt;}
.y82{bottom:963.493333pt;}
.y70{bottom:964.613333pt;}
.y84{bottom:972.453333pt;}
.y6{bottom:976.453333pt;}
.y34{bottom:976.773333pt;}
.y5{bottom:994.853333pt;}
.y33{bottom:995.173333pt;}
.y4{bottom:1013.280000pt;}
.y87{bottom:1013.600000pt;}
.y1{bottom:1061.600000pt;}
.ha{height:15.360000pt;}
.h16{height:18.706667pt;}
.h15{height:18.866667pt;}
.h14{height:21.746667pt;}
.h13{height:21.906667pt;}
.h10{height:30.546667pt;}
.hc{height:30.720000pt;}
.h11{height:37.426667pt;}
.h17{height:37.626667pt;}
.hf{height:45.906667pt;}
.he{height:46.106667pt;}
.h12{height:48.558750pt;}
.h1a{height:50.490000pt;}
.h18{height:50.670000pt;}
.hb{height:52.108438pt;}
.hd{height:52.134375pt;}
.h2{height:53.562500pt;}
.h19{height:55.275000pt;}
.h9{height:57.117252pt;}
.h4{height:57.787500pt;}
.h1b{height:59.340000pt;}
.h7{height:62.781250pt;}
.h3{height:62.812500pt;}
.h5{height:64.500000pt;}
.h6{height:72.655000pt;}
.h8{height:224.916857pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:38.400000pt;}
.we{width:44.146667pt;}
.wc{width:44.160000pt;}
.wf{width:44.192000pt;}
.wd{width:44.306667pt;}
.wa{width:44.320000pt;}
.wb{width:44.352000pt;}
.w9{width:51.520000pt;}
.w8{width:95.698667pt;}
.w5{width:115.232000pt;}
.w7{width:117.750667pt;}
.w10{width:132.498667pt;}
.w3{width:151.857333pt;}
.w6{width:229.773333pt;}
.w2{width:566.125539pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.185333pt;}
.x28{left:9.440000pt;}
.x1f{left:12.480000pt;}
.x26{left:13.586667pt;}
.x17{left:14.720000pt;}
.x1d{left:15.840000pt;}
.x23{left:17.586667pt;}
.x2a{left:18.560000pt;}
.xe{left:19.599604pt;}
.x24{left:21.266667pt;}
.xd{left:26.503574pt;}
.x21{left:28.625333pt;}
.x19{left:33.280000pt;}
.x1e{left:37.280000pt;}
.x35{left:38.226667pt;}
.xf{left:42.651192pt;}
.x15{left:61.105333pt;}
.x1b{left:87.026667pt;}
.x1{left:113.472000pt;}
.x20{left:115.401333pt;}
.x4{left:120.032000pt;}
.x3{left:122.272000pt;}
.x14{left:129.321333pt;}
.x13{left:149.306667pt;}
.xb{left:160.666667pt;}
.x22{left:187.400000pt;}
.x6{left:206.266667pt;}
.x11{left:210.906667pt;}
.x16{left:281.186667pt;}
.x8{left:292.066667pt;}
.x27{left:299.426667pt;}
.x9{left:301.186667pt;}
.x5{left:313.026667pt;}
.x18{left:319.586667pt;}
.x2d{left:321.666667pt;}
.x29{left:335.106667pt;}
.xa{left:352.386667pt;}
.x2c{left:355.426667pt;}
.xc{left:370.626667pt;}
.x31{left:379.426667pt;}
.x2f{left:383.106667pt;}
.x7{left:396.866667pt;}
.x33{left:402.626667pt;}
.x2b{left:407.106667pt;}
.x2e{left:432.106667pt;}
.x1a{left:434.826667pt;}
.x30{left:454.026667pt;}
.x32{left:479.146667pt;}
.x25{left:547.786667pt;}
.x34{left:558.346667pt;}
.x2{left:656.453333pt;}
.x10{left:679.973333pt;}
.x12{left:683.653333pt;}
}




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