
    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_2fa1f08a1727ada8df849f86.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1f5f7cff5a3e173a921d3525.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ff9010315e2084f11d02f675.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b7aab46dd20135dc6b3c7db2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_0b98d64d88b396c33f87b830.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_12c2860d2f01fca21170fc2c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9d2e6d2bd91e2b5cea9dd8b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995605;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_31cf63fed7cb5ff1522bd017.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995605;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.lse{letter-spacing:-0.413400px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.253200px;}
.ls9{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.106560px;}
.ls5{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.900000px;}
.ls19{letter-spacing:4.500000px;}
.ls12{letter-spacing:15.066720px;}
.ls10{letter-spacing:44.730720px;}
.ls13{letter-spacing:55.596000px;}
.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;}
.ws2{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.686800px;}
.ws9{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.479800px;}
.ws1{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-4.197120px;}
._b{margin-left:-2.416800px;}
._0{margin-left:-1.080000px;}
._c{width:1.185600px;}
._1{width:2.220000px;}
._18{width:3.250320px;}
._15{width:4.440720px;}
._14{width:6.094560px;}
._13{width:7.311120px;}
._1c{width:8.512560px;}
._1a{width:9.528000px;}
._6{width:10.800000px;}
._1d{width:12.378960px;}
._17{width:13.873920px;}
._19{width:16.224720px;}
._1b{width:17.439360px;}
._11{width:18.948000px;}
._1e{width:20.318400px;}
._2e{width:21.425040px;}
._28{width:45.079920px;}
._26{width:46.553040px;}
._25{width:47.628000px;}
._2c{width:48.658080px;}
._27{width:49.694160px;}
._2d{width:51.880560px;}
._20{width:55.277520px;}
._1f{width:56.293920px;}
._21{width:58.471920px;}
._7{width:76.284960px;}
._23{width:79.126560px;}
._22{width:80.496720px;}
._24{width:81.581040px;}
._2b{width:88.573920px;}
._29{width:89.879040px;}
._2a{width:91.172880px;}
._12{width:99.660000px;}
._8{width:154.080000px;}
._e{width:195.120000px;}
._10{width:199.584000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._5{width:436.440000px;}
._9{width:604.364160px;}
._f{width:637.320000px;}
._a{width:1096.860000px;}
._d{width:1176.060000px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:4.575000px;}
.y76{bottom:5.145000px;}
.yf{bottom:5.760000px;}
.y6{bottom:12.420000px;}
.y73{bottom:14.685000px;}
.y8{bottom:18.180000px;}
.y6d{bottom:24.375000px;}
.y75{bottom:25.125000px;}
.y70{bottom:32.115000px;}
.yd{bottom:37.260000px;}
.y5{bottom:40.320000px;}
.yc{bottom:57.600000px;}
.y4{bottom:68.400000px;}
.ye{bottom:74.520000px;}
.yb{bottom:78.120000px;}
.y3{bottom:96.330000px;}
.y3c{bottom:109.440000px;}
.y79{bottom:111.060000px;}
.y6b{bottom:113.580000px;}
.y2{bottom:125.670000px;}
.y3b{bottom:129.240000px;}
.y78{bottom:131.040000px;}
.y6a{bottom:133.380000px;}
.y3a{bottom:149.040000px;}
.y77{bottom:150.840000px;}
.y69{bottom:153.210000px;}
.y39{bottom:169.050000px;}
.y68{bottom:173.010000px;}
.y38{bottom:188.850000px;}
.y67{bottom:192.990000px;}
.y37{bottom:208.650000px;}
.y66{bottom:212.790000px;}
.y36{bottom:228.450000px;}
.y65{bottom:232.590000px;}
.y35{bottom:248.250000px;}
.y64{bottom:252.390000px;}
.y34{bottom:268.230000px;}
.y63{bottom:272.190000px;}
.y33{bottom:288.030000px;}
.y62{bottom:292.170000px;}
.y32{bottom:307.830000px;}
.y61{bottom:311.970000px;}
.y31{bottom:327.630000px;}
.y60{bottom:331.770000px;}
.y30{bottom:347.430000px;}
.y5f{bottom:351.570000px;}
.y2f{bottom:367.410000px;}
.y5e{bottom:371.370000px;}
.y2e{bottom:387.210000px;}
.y5d{bottom:391.350000px;}
.y2d{bottom:407.055000px;}
.y5c{bottom:411.195000px;}
.y2c{bottom:426.855000px;}
.y5b{bottom:430.995000px;}
.y2b{bottom:446.655000px;}
.y5a{bottom:450.795000px;}
.y2a{bottom:466.635000px;}
.y59{bottom:470.595000px;}
.y29{bottom:486.435000px;}
.y58{bottom:490.575000px;}
.y28{bottom:506.235000px;}
.y6f{bottom:507.060000px;}
.y57{bottom:510.375000px;}
.y6c{bottom:511.380000px;}
.y71{bottom:519.375000px;}
.y27{bottom:526.035000px;}
.y56{bottom:530.175000px;}
.y26{bottom:545.835000px;}
.y55{bottom:549.975000px;}
.y25{bottom:565.815000px;}
.y54{bottom:569.775000px;}
.y24{bottom:585.615000px;}
.y53{bottom:589.755000px;}
.y23{bottom:605.415000px;}
.y52{bottom:609.555000px;}
.y22{bottom:625.215000px;}
.y51{bottom:629.355000px;}
.y21{bottom:645.015000px;}
.y50{bottom:649.185000px;}
.y74{bottom:652.500000px;}
.y72{bottom:653.580000px;}
.y20{bottom:665.025000px;}
.y4f{bottom:668.985000px;}
.y1f{bottom:684.825000px;}
.y4e{bottom:688.965000px;}
.y1e{bottom:704.625000px;}
.y4d{bottom:708.765000px;}
.y1d{bottom:724.425000px;}
.y4c{bottom:728.565000px;}
.y1c{bottom:744.225000px;}
.y4b{bottom:748.365000px;}
.y1b{bottom:764.205000px;}
.y4a{bottom:768.165000px;}
.y1a{bottom:784.005000px;}
.y49{bottom:788.145000px;}
.y19{bottom:803.805000px;}
.y48{bottom:807.945000px;}
.y18{bottom:823.605000px;}
.y47{bottom:827.745000px;}
.y17{bottom:843.405000px;}
.y46{bottom:847.545000px;}
.y16{bottom:863.385000px;}
.y45{bottom:867.345000px;}
.y15{bottom:883.185000px;}
.y44{bottom:887.325000px;}
.y14{bottom:903.030000px;}
.y43{bottom:907.170000px;}
.y13{bottom:923.370000px;}
.y42{bottom:926.970000px;}
.y12{bottom:944.610000px;}
.y41{bottom:946.770000px;}
.y40{bottom:966.570000px;}
.y11{bottom:968.190000px;}
.y3f{bottom:986.550000px;}
.y10{bottom:999.870000px;}
.y3e{bottom:1006.350000px;}
.y3d{bottom:1026.150000px;}
.ya{bottom:1044.690000px;}
.y9{bottom:1060.530000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.527031px;}
.hb{height:21.240000px;}
.h10{height:28.800000px;}
.h8{height:33.480000px;}
.he{height:38.520000px;}
.h11{height:39.240000px;}
.hd{height:42.164648px;}
.h12{height:42.266250px;}
.h13{height:45.024258px;}
.hf{height:46.260000px;}
.h4{height:46.736719px;}
.h5{height:52.435898px;}
.ha{height:58.121719px;}
.h3{height:63.500977px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w9{width:122.580000px;}
.w8{width:136.260000px;}
.w6{width:136.800000px;}
.w3{width:137.556000px;}
.w7{width:149.580000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x13{left:10.836000px;}
.x16{left:18.615000px;}
.x11{left:30.885000px;}
.x10{left:36.645000px;}
.x18{left:46.725000px;}
.x1{left:53.100000px;}
.xd{left:70.199987px;}
.xc{left:75.599987px;}
.x6{left:87.515987px;}
.x19{left:96.875987px;}
.x4{left:118.470000px;}
.x12{left:133.560000px;}
.x14{left:144.395987px;}
.x9{left:152.129987px;}
.xa{left:227.369987px;}
.x15{left:271.800000px;}
.xb{left:341.894987px;}
.x8{left:354.134987px;}
.xe{left:407.054987px;}
.x7{left:446.504987px;}
.x17{left:556.560000px;}
.xf{left:562.140000px;}
.x3{left:702.510000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.lse{letter-spacing:-0.367467pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.225067pt;}
.ls9{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.094720pt;}
.ls5{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.800000pt;}
.ls19{letter-spacing:4.000000pt;}
.ls12{letter-spacing:13.392640pt;}
.ls10{letter-spacing:39.760640pt;}
.ls13{letter-spacing:49.418667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.054933pt;}
.ws9{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.870933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-3.730773pt;}
._b{margin-left:-2.148267pt;}
._0{margin-left:-0.960000pt;}
._c{width:1.053867pt;}
._1{width:1.973333pt;}
._18{width:2.889173pt;}
._15{width:3.947307pt;}
._14{width:5.417387pt;}
._13{width:6.498773pt;}
._1c{width:7.566720pt;}
._1a{width:8.469333pt;}
._6{width:9.600000pt;}
._1d{width:11.003520pt;}
._17{width:12.332373pt;}
._19{width:14.421973pt;}
._1b{width:15.501653pt;}
._11{width:16.842667pt;}
._1e{width:18.060800pt;}
._2e{width:19.044480pt;}
._28{width:40.071040pt;}
._26{width:41.380480pt;}
._25{width:42.336000pt;}
._2c{width:43.251627pt;}
._27{width:44.172587pt;}
._2d{width:46.116053pt;}
._20{width:49.135573pt;}
._1f{width:50.039040pt;}
._21{width:51.975040pt;}
._7{width:67.808853pt;}
._23{width:70.334720pt;}
._22{width:71.552640pt;}
._24{width:72.516480pt;}
._2b{width:78.732373pt;}
._29{width:79.892480pt;}
._2a{width:81.042560pt;}
._12{width:88.586667pt;}
._8{width:136.960000pt;}
._e{width:173.440000pt;}
._10{width:177.408000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._5{width:387.946667pt;}
._9{width:537.212587pt;}
._f{width:566.506667pt;}
._a{width:974.986667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:4.066667pt;}
.y76{bottom:4.573333pt;}
.yf{bottom:5.120000pt;}
.y6{bottom:11.040000pt;}
.y73{bottom:13.053333pt;}
.y8{bottom:16.160000pt;}
.y6d{bottom:21.666667pt;}
.y75{bottom:22.333333pt;}
.y70{bottom:28.546667pt;}
.yd{bottom:33.120000pt;}
.y5{bottom:35.840000pt;}
.yc{bottom:51.200000pt;}
.y4{bottom:60.800000pt;}
.ye{bottom:66.240000pt;}
.yb{bottom:69.440000pt;}
.y3{bottom:85.626667pt;}
.y3c{bottom:97.280000pt;}
.y79{bottom:98.720000pt;}
.y6b{bottom:100.960000pt;}
.y2{bottom:111.706667pt;}
.y3b{bottom:114.880000pt;}
.y78{bottom:116.480000pt;}
.y6a{bottom:118.560000pt;}
.y3a{bottom:132.480000pt;}
.y77{bottom:134.080000pt;}
.y69{bottom:136.186667pt;}
.y39{bottom:150.266667pt;}
.y68{bottom:153.786667pt;}
.y38{bottom:167.866667pt;}
.y67{bottom:171.546667pt;}
.y37{bottom:185.466667pt;}
.y66{bottom:189.146667pt;}
.y36{bottom:203.066667pt;}
.y65{bottom:206.746667pt;}
.y35{bottom:220.666667pt;}
.y64{bottom:224.346667pt;}
.y34{bottom:238.426667pt;}
.y63{bottom:241.946667pt;}
.y33{bottom:256.026667pt;}
.y62{bottom:259.706667pt;}
.y32{bottom:273.626667pt;}
.y61{bottom:277.306667pt;}
.y31{bottom:291.226667pt;}
.y60{bottom:294.906667pt;}
.y30{bottom:308.826667pt;}
.y5f{bottom:312.506667pt;}
.y2f{bottom:326.586667pt;}
.y5e{bottom:330.106667pt;}
.y2e{bottom:344.186667pt;}
.y5d{bottom:347.866667pt;}
.y2d{bottom:361.826667pt;}
.y5c{bottom:365.506667pt;}
.y2c{bottom:379.426667pt;}
.y5b{bottom:383.106667pt;}
.y2b{bottom:397.026667pt;}
.y5a{bottom:400.706667pt;}
.y2a{bottom:414.786667pt;}
.y59{bottom:418.306667pt;}
.y29{bottom:432.386667pt;}
.y58{bottom:436.066667pt;}
.y28{bottom:449.986667pt;}
.y6f{bottom:450.720000pt;}
.y57{bottom:453.666667pt;}
.y6c{bottom:454.560000pt;}
.y71{bottom:461.666667pt;}
.y27{bottom:467.586667pt;}
.y56{bottom:471.266667pt;}
.y26{bottom:485.186667pt;}
.y55{bottom:488.866667pt;}
.y25{bottom:502.946667pt;}
.y54{bottom:506.466667pt;}
.y24{bottom:520.546667pt;}
.y53{bottom:524.226667pt;}
.y23{bottom:538.146667pt;}
.y52{bottom:541.826667pt;}
.y22{bottom:555.746667pt;}
.y51{bottom:559.426667pt;}
.y21{bottom:573.346667pt;}
.y50{bottom:577.053333pt;}
.y74{bottom:580.000000pt;}
.y72{bottom:580.960000pt;}
.y20{bottom:591.133333pt;}
.y4f{bottom:594.653333pt;}
.y1f{bottom:608.733333pt;}
.y4e{bottom:612.413333pt;}
.y1e{bottom:626.333333pt;}
.y4d{bottom:630.013333pt;}
.y1d{bottom:643.933333pt;}
.y4c{bottom:647.613333pt;}
.y1c{bottom:661.533333pt;}
.y4b{bottom:665.213333pt;}
.y1b{bottom:679.293333pt;}
.y4a{bottom:682.813333pt;}
.y1a{bottom:696.893333pt;}
.y49{bottom:700.573333pt;}
.y19{bottom:714.493333pt;}
.y48{bottom:718.173333pt;}
.y18{bottom:732.093333pt;}
.y47{bottom:735.773333pt;}
.y17{bottom:749.693333pt;}
.y46{bottom:753.373333pt;}
.y16{bottom:767.453333pt;}
.y45{bottom:770.973333pt;}
.y15{bottom:785.053333pt;}
.y44{bottom:788.733333pt;}
.y14{bottom:802.693333pt;}
.y43{bottom:806.373333pt;}
.y13{bottom:820.773333pt;}
.y42{bottom:823.973333pt;}
.y12{bottom:839.653333pt;}
.y41{bottom:841.573333pt;}
.y40{bottom:859.173333pt;}
.y11{bottom:860.613333pt;}
.y3f{bottom:876.933333pt;}
.y10{bottom:888.773333pt;}
.y3e{bottom:894.533333pt;}
.y3d{bottom:912.133333pt;}
.ya{bottom:928.613333pt;}
.y9{bottom:942.693333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.246250pt;}
.hb{height:18.880000pt;}
.h10{height:25.600000pt;}
.h8{height:29.760000pt;}
.he{height:34.240000pt;}
.h11{height:34.880000pt;}
.hd{height:37.479688pt;}
.h12{height:37.570000pt;}
.h13{height:40.021563pt;}
.hf{height:41.120000pt;}
.h4{height:41.543750pt;}
.h5{height:46.609688pt;}
.ha{height:51.663750pt;}
.h3{height:56.445312pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w9{width:108.960000pt;}
.w8{width:121.120000pt;}
.w6{width:121.600000pt;}
.w3{width:122.272000pt;}
.w7{width:132.960000pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x13{left:9.632000pt;}
.x16{left:16.546667pt;}
.x11{left:27.453333pt;}
.x10{left:32.573333pt;}
.x18{left:41.533333pt;}
.x1{left:47.200000pt;}
.xd{left:62.399988pt;}
.xc{left:67.199988pt;}
.x6{left:77.791988pt;}
.x19{left:86.111988pt;}
.x4{left:105.306667pt;}
.x12{left:118.720000pt;}
.x14{left:128.351988pt;}
.x9{left:135.226655pt;}
.xa{left:202.106655pt;}
.x15{left:241.600000pt;}
.xb{left:303.906655pt;}
.x8{left:314.786655pt;}
.xe{left:361.826655pt;}
.x7{left:396.893322pt;}
.x17{left:494.720000pt;}
.xf{left:499.680000pt;}
.x3{left:624.453333pt;}
.x5{left:737.280000pt;}
}




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