
    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_e68d269a5ad973d8d9589821.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_fc8561d3f9363aed73369fd0.woff2')format("woff");}.ff2{font-family:ff2;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: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_93e28aecc25aa1a7895ec2c9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_893e3377f8788ed5df255822.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_fe6dbfaa8c9df56f26717933.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f1c873aff25cf8b23b8dd679.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_a9ac6e90ce77231b473ce70e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982422;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a56b7ff67fa9e5aaae3c8033.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a850f5464e612f37f3f472ab.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.lsd{letter-spacing:-0.924000px;}
.ls15{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls1d{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.018720px;}
.lsc{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.106560px;}
.ls11{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.206400px;}
.lse{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.620000px;}
.lsa{letter-spacing:2.340000px;}
.ls1a{letter-spacing:2.826720px;}
.ls17{letter-spacing:3.060000px;}
.ls16{letter-spacing:3.780000px;}
.ls10{letter-spacing:5.220000px;}
.ls9{letter-spacing:7.380000px;}
.lsb{letter-spacing:16.506720px;}
.ls1b{letter-spacing:19.386720px;}
.ls1c{letter-spacing:29.466720px;}
.ls19{letter-spacing:33.066720px;}
.ls1f{letter-spacing:46.026720px;}
.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;}
}
.ws3{word-spacing:-23.958720px;}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.wsb{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wse{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.479800px;}
.ws4{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-529.548480px;}
._5{margin-left:-8.789520px;}
._6{margin-left:-6.990480px;}
._4{margin-left:-5.286960px;}
._9{margin-left:-3.268800px;}
._d{margin-left:-2.129760px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._a{width:4.619520px;}
._11{width:5.713440px;}
._13{width:7.355040px;}
._17{width:8.426160px;}
._f{width:9.439920px;}
._c{width:10.995840px;}
._b{width:12.370320px;}
._e{width:13.405200px;}
._10{width:16.434000px;}
._18{width:17.555520px;}
._19{width:18.585360px;}
._12{width:19.661040px;}
._1d{width:21.631680px;}
._8{width:44.978640px;}
._7{width:46.093440px;}
._14{width:65.658720px;}
._15{width:67.126320px;}
._1a{width:74.880720px;}
._1b{width:75.895200px;}
._1c{width:77.013840px;}
._16{width:93.184560px;}
.fc6{color:rgb(238,0,0);}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc9{color:rgb(45,45,45);}
.fc8{color:rgb(31,31,31);}
.fc7{color:rgb(237,125,49);}
.fc3{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.fs8{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.y24{bottom:5.760000px;}
.y48{bottom:10.800000px;}
.y6{bottom:14.220000px;}
.y23{bottom:25.560000px;}
.y34{bottom:27.540000px;}
.y22{bottom:45.540000px;}
.y5{bottom:45.720000px;}
.y33{bottom:47.520000px;}
.y9{bottom:60.120000px;}
.y21{bottom:65.340000px;}
.y32{bottom:67.320000px;}
.y47{bottom:72.540000px;}
.y4{bottom:77.400000px;}
.y7f{bottom:82.080000px;}
.y20{bottom:85.140000px;}
.y31{bottom:87.120000px;}
.yb2{bottom:91.080000px;}
.y7e{bottom:101.880000px;}
.y1f{bottom:104.940000px;}
.y30{bottom:106.920000px;}
.y3{bottom:109.110000px;}
.yb1{bottom:110.880000px;}
.y7d{bottom:121.680000px;}
.y1e{bottom:124.740000px;}
.y2f{bottom:126.180000px;}
.y45{bottom:126.900000px;}
.yb0{bottom:130.680000px;}
.y7c{bottom:141.660000px;}
.y2{bottom:142.230000px;}
.y2e{bottom:144.000000px;}
.y1d{bottom:144.720000px;}
.y44{bottom:146.700000px;}
.yaf{bottom:150.660000px;}
.y7b{bottom:161.490000px;}
.y2d{bottom:162.000000px;}
.y1c{bottom:164.520000px;}
.y43{bottom:166.530000px;}
.yae{bottom:170.490000px;}
.y2c{bottom:179.820000px;}
.y7a{bottom:181.290000px;}
.y1b{bottom:184.350000px;}
.y42{bottom:186.330000px;}
.yad{bottom:190.290000px;}
.y2b{bottom:197.670000px;}
.y79{bottom:201.090000px;}
.y1a{bottom:204.150000px;}
.y41{bottom:206.130000px;}
.yac{bottom:210.090000px;}
.y2a{bottom:215.490000px;}
.y78{bottom:220.890000px;}
.y19{bottom:223.950000px;}
.y40{bottom:226.110000px;}
.yab{bottom:229.890000px;}
.y29{bottom:233.310000px;}
.y77{bottom:240.870000px;}
.y18{bottom:243.930000px;}
.y3f{bottom:245.910000px;}
.yaa{bottom:249.870000px;}
.y28{bottom:251.310000px;}
.y76{bottom:260.670000px;}
.y17{bottom:263.730000px;}
.y27{bottom:269.130000px;}
.ya9{bottom:269.670000px;}
.y3e{bottom:274.710000px;}
.y75{bottom:280.470000px;}
.y16{bottom:283.530000px;}
.y26{bottom:286.950000px;}
.ya8{bottom:289.470000px;}
.y3d{bottom:294.510000px;}
.y74{bottom:300.270000px;}
.y15{bottom:303.330000px;}
.y25{bottom:304.770000px;}
.ya7{bottom:309.270000px;}
.y3c{bottom:314.310000px;}
.y73{bottom:320.070000px;}
.y14{bottom:323.130000px;}
.ya6{bottom:329.070000px;}
.y3b{bottom:334.290000px;}
.y72{bottom:340.050000px;}
.y13{bottom:343.110000px;}
.ya5{bottom:349.050000px;}
.y3a{bottom:354.090000px;}
.y71{bottom:359.850000px;}
.ya4{bottom:368.850000px;}
.y39{bottom:373.890000px;}
.y70{bottom:379.650000px;}
.ya3{bottom:388.650000px;}
.y38{bottom:393.690000px;}
.y6f{bottom:399.450000px;}
.ya2{bottom:408.495000px;}
.y37{bottom:413.535000px;}
.y6e{bottom:419.295000px;}
.ya1{bottom:428.295000px;}
.y36{bottom:433.515000px;}
.y6d{bottom:439.275000px;}
.ya0{bottom:448.275000px;}
.y35{bottom:453.315000px;}
.y6c{bottom:459.075000px;}
.y12{bottom:468.075000px;}
.y6b{bottom:478.875000px;}
.y9f{bottom:487.875000px;}
.y6a{bottom:498.675000px;}
.y9e{bottom:507.675000px;}
.y69{bottom:518.475000px;}
.y9d{bottom:527.475000px;}
.y68{bottom:538.455000px;}
.y9c{bottom:547.455000px;}
.y67{bottom:558.255000px;}
.y9b{bottom:567.255000px;}
.y66{bottom:578.055000px;}
.y9a{bottom:587.055000px;}
.y65{bottom:597.855000px;}
.y99{bottom:606.855000px;}
.y64{bottom:617.655000px;}
.y98{bottom:626.655000px;}
.y63{bottom:637.635000px;}
.y97{bottom:646.635000px;}
.y62{bottom:657.465000px;}
.y96{bottom:666.465000px;}
.y61{bottom:677.265000px;}
.y95{bottom:686.265000px;}
.y60{bottom:697.065000px;}
.y94{bottom:706.065000px;}
.y5f{bottom:716.865000px;}
.y93{bottom:725.865000px;}
.y5e{bottom:736.845000px;}
.y92{bottom:745.845000px;}
.y5d{bottom:756.645000px;}
.y91{bottom:765.645000px;}
.y5c{bottom:776.445000px;}
.y90{bottom:785.445000px;}
.y5b{bottom:796.245000px;}
.y8f{bottom:805.245000px;}
.y5a{bottom:816.045000px;}
.y8e{bottom:825.045000px;}
.y11{bottom:834.765000px;}
.y59{bottom:836.025000px;}
.y8d{bottom:845.025000px;}
.y58{bottom:855.825000px;}
.y10{bottom:859.785000px;}
.y8c{bottom:864.825000px;}
.y57{bottom:875.625000px;}
.yf{bottom:879.585000px;}
.y8b{bottom:884.625000px;}
.ye{bottom:894.705000px;}
.y56{bottom:895.425000px;}
.y8a{bottom:904.470000px;}
.y55{bottom:915.270000px;}
.yd{bottom:915.990000px;}
.y89{bottom:924.270000px;}
.y54{bottom:935.250000px;}
.yc{bottom:939.570000px;}
.y88{bottom:944.250000px;}
.y53{bottom:955.050000px;}
.y87{bottom:964.050000px;}
.yb{bottom:971.250000px;}
.y52{bottom:974.850000px;}
.y86{bottom:983.850000px;}
.y51{bottom:994.650000px;}
.ya{bottom:1002.930000px;}
.y85{bottom:1003.650000px;}
.y50{bottom:1014.450000px;}
.y84{bottom:1023.450000px;}
.y8{bottom:1029.750000px;}
.y4f{bottom:1034.430000px;}
.y83{bottom:1043.430000px;}
.y1{bottom:1046.130000px;}
.y4e{bottom:1054.230000px;}
.y82{bottom:1063.230000px;}
.y4d{bottom:1074.030000px;}
.y81{bottom:1083.030000px;}
.y4c{bottom:1093.830000px;}
.y80{bottom:1102.830000px;}
.y4b{bottom:1122.630000px;}
.y4a{bottom:1142.610000px;}
.y49{bottom:1162.440000px;}
.y46{bottom:1192.320000px;}
.h5{height:2.010938px;}
.hb{height:27.147656px;}
.hf{height:37.705078px;}
.he{height:38.100586px;}
.h9{height:41.726953px;}
.hd{height:42.164648px;}
.h13{height:43.506914px;}
.h7{height:46.251562px;}
.h10{height:48.127500px;}
.h4{height:48.774375px;}
.h14{height:49.255313px;}
.ha{height:53.404453px;}
.h3{height:57.256875px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h12{height:111.043828px;}
.h2{height:162.750000px;}
.h11{height:268.590000px;}
.hc{height:357.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:39.780000px;}
.w3{width:147.456000px;}
.w6{width:217.875000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.840000px;}
.x2{left:8.100000px;}
.x8{left:12.825000px;}
.xb{left:31.860000px;}
.x1{left:54.000000px;}
.x6{left:55.800000px;}
.xc{left:67.499987px;}
.xd{left:74.339987px;}
.xe{left:80.999987px;}
.xf{left:108.035987px;}
.x4{left:139.350000px;}
.x9{left:331.994987px;}
.x5{left:384.734987px;}
.x7{left:619.485000px;}
.x3{left:687.930000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.lsd{letter-spacing:-0.821333pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.016640pt;}
.lsc{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.094720pt;}
.ls11{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.440000pt;}
.lsa{letter-spacing:2.080000pt;}
.ls1a{letter-spacing:2.512640pt;}
.ls17{letter-spacing:2.720000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls10{letter-spacing:4.640000pt;}
.ls9{letter-spacing:6.560000pt;}
.lsb{letter-spacing:14.672640pt;}
.ls1b{letter-spacing:17.232640pt;}
.ls1c{letter-spacing:26.192640pt;}
.ls19{letter-spacing:29.392640pt;}
.ls1f{letter-spacing:40.912640pt;}
.ws3{word-spacing:-21.296640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.wsb{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.870933pt;}
.ws4{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-470.709760pt;}
._5{margin-left:-7.812907pt;}
._6{margin-left:-6.213760pt;}
._4{margin-left:-4.699520pt;}
._9{margin-left:-2.905600pt;}
._d{margin-left:-1.893120pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._a{width:4.106240pt;}
._11{width:5.078613pt;}
._13{width:6.537813pt;}
._17{width:7.489920pt;}
._f{width:8.391040pt;}
._c{width:9.774080pt;}
._b{width:10.995840pt;}
._e{width:11.915733pt;}
._10{width:14.608000pt;}
._18{width:15.604907pt;}
._19{width:16.520320pt;}
._12{width:17.476480pt;}
._1d{width:19.228160pt;}
._8{width:39.981013pt;}
._7{width:40.971947pt;}
._14{width:58.363307pt;}
._15{width:59.667840pt;}
._1a{width:66.560640pt;}
._1b{width:67.462400pt;}
._1c{width:68.456747pt;}
._16{width:82.830720pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.fs8{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.y24{bottom:5.120000pt;}
.y48{bottom:9.600000pt;}
.y6{bottom:12.640000pt;}
.y23{bottom:22.720000pt;}
.y34{bottom:24.480000pt;}
.y22{bottom:40.480000pt;}
.y5{bottom:40.640000pt;}
.y33{bottom:42.240000pt;}
.y9{bottom:53.440000pt;}
.y21{bottom:58.080000pt;}
.y32{bottom:59.840000pt;}
.y47{bottom:64.480000pt;}
.y4{bottom:68.800000pt;}
.y7f{bottom:72.960000pt;}
.y20{bottom:75.680000pt;}
.y31{bottom:77.440000pt;}
.yb2{bottom:80.960000pt;}
.y7e{bottom:90.560000pt;}
.y1f{bottom:93.280000pt;}
.y30{bottom:95.040000pt;}
.y3{bottom:96.986667pt;}
.yb1{bottom:98.560000pt;}
.y7d{bottom:108.160000pt;}
.y1e{bottom:110.880000pt;}
.y2f{bottom:112.160000pt;}
.y45{bottom:112.800000pt;}
.yb0{bottom:116.160000pt;}
.y7c{bottom:125.920000pt;}
.y2{bottom:126.426667pt;}
.y2e{bottom:128.000000pt;}
.y1d{bottom:128.640000pt;}
.y44{bottom:130.400000pt;}
.yaf{bottom:133.920000pt;}
.y7b{bottom:143.546667pt;}
.y2d{bottom:144.000000pt;}
.y1c{bottom:146.240000pt;}
.y43{bottom:148.026667pt;}
.yae{bottom:151.546667pt;}
.y2c{bottom:159.840000pt;}
.y7a{bottom:161.146667pt;}
.y1b{bottom:163.866667pt;}
.y42{bottom:165.626667pt;}
.yad{bottom:169.146667pt;}
.y2b{bottom:175.706667pt;}
.y79{bottom:178.746667pt;}
.y1a{bottom:181.466667pt;}
.y41{bottom:183.226667pt;}
.yac{bottom:186.746667pt;}
.y2a{bottom:191.546667pt;}
.y78{bottom:196.346667pt;}
.y19{bottom:199.066667pt;}
.y40{bottom:200.986667pt;}
.yab{bottom:204.346667pt;}
.y29{bottom:207.386667pt;}
.y77{bottom:214.106667pt;}
.y18{bottom:216.826667pt;}
.y3f{bottom:218.586667pt;}
.yaa{bottom:222.106667pt;}
.y28{bottom:223.386667pt;}
.y76{bottom:231.706667pt;}
.y17{bottom:234.426667pt;}
.y27{bottom:239.226667pt;}
.ya9{bottom:239.706667pt;}
.y3e{bottom:244.186667pt;}
.y75{bottom:249.306667pt;}
.y16{bottom:252.026667pt;}
.y26{bottom:255.066667pt;}
.ya8{bottom:257.306667pt;}
.y3d{bottom:261.786667pt;}
.y74{bottom:266.906667pt;}
.y15{bottom:269.626667pt;}
.y25{bottom:270.906667pt;}
.ya7{bottom:274.906667pt;}
.y3c{bottom:279.386667pt;}
.y73{bottom:284.506667pt;}
.y14{bottom:287.226667pt;}
.ya6{bottom:292.506667pt;}
.y3b{bottom:297.146667pt;}
.y72{bottom:302.266667pt;}
.y13{bottom:304.986667pt;}
.ya5{bottom:310.266667pt;}
.y3a{bottom:314.746667pt;}
.y71{bottom:319.866667pt;}
.ya4{bottom:327.866667pt;}
.y39{bottom:332.346667pt;}
.y70{bottom:337.466667pt;}
.ya3{bottom:345.466667pt;}
.y38{bottom:349.946667pt;}
.y6f{bottom:355.066667pt;}
.ya2{bottom:363.106667pt;}
.y37{bottom:367.586667pt;}
.y6e{bottom:372.706667pt;}
.ya1{bottom:380.706667pt;}
.y36{bottom:385.346667pt;}
.y6d{bottom:390.466667pt;}
.ya0{bottom:398.466667pt;}
.y35{bottom:402.946667pt;}
.y6c{bottom:408.066667pt;}
.y12{bottom:416.066667pt;}
.y6b{bottom:425.666667pt;}
.y9f{bottom:433.666667pt;}
.y6a{bottom:443.266667pt;}
.y9e{bottom:451.266667pt;}
.y69{bottom:460.866667pt;}
.y9d{bottom:468.866667pt;}
.y68{bottom:478.626667pt;}
.y9c{bottom:486.626667pt;}
.y67{bottom:496.226667pt;}
.y9b{bottom:504.226667pt;}
.y66{bottom:513.826667pt;}
.y9a{bottom:521.826667pt;}
.y65{bottom:531.426667pt;}
.y99{bottom:539.426667pt;}
.y64{bottom:549.026667pt;}
.y98{bottom:557.026667pt;}
.y63{bottom:566.786667pt;}
.y97{bottom:574.786667pt;}
.y62{bottom:584.413333pt;}
.y96{bottom:592.413333pt;}
.y61{bottom:602.013333pt;}
.y95{bottom:610.013333pt;}
.y60{bottom:619.613333pt;}
.y94{bottom:627.613333pt;}
.y5f{bottom:637.213333pt;}
.y93{bottom:645.213333pt;}
.y5e{bottom:654.973333pt;}
.y92{bottom:662.973333pt;}
.y5d{bottom:672.573333pt;}
.y91{bottom:680.573333pt;}
.y5c{bottom:690.173333pt;}
.y90{bottom:698.173333pt;}
.y5b{bottom:707.773333pt;}
.y8f{bottom:715.773333pt;}
.y5a{bottom:725.373333pt;}
.y8e{bottom:733.373333pt;}
.y11{bottom:742.013333pt;}
.y59{bottom:743.133333pt;}
.y8d{bottom:751.133333pt;}
.y58{bottom:760.733333pt;}
.y10{bottom:764.253333pt;}
.y8c{bottom:768.733333pt;}
.y57{bottom:778.333333pt;}
.yf{bottom:781.853333pt;}
.y8b{bottom:786.333333pt;}
.ye{bottom:795.293333pt;}
.y56{bottom:795.933333pt;}
.y8a{bottom:803.973333pt;}
.y55{bottom:813.573333pt;}
.yd{bottom:814.213333pt;}
.y89{bottom:821.573333pt;}
.y54{bottom:831.333333pt;}
.yc{bottom:835.173333pt;}
.y88{bottom:839.333333pt;}
.y53{bottom:848.933333pt;}
.y87{bottom:856.933333pt;}
.yb{bottom:863.333333pt;}
.y52{bottom:866.533333pt;}
.y86{bottom:874.533333pt;}
.y51{bottom:884.133333pt;}
.ya{bottom:891.493333pt;}
.y85{bottom:892.133333pt;}
.y50{bottom:901.733333pt;}
.y84{bottom:909.733333pt;}
.y8{bottom:915.333333pt;}
.y4f{bottom:919.493333pt;}
.y83{bottom:927.493333pt;}
.y1{bottom:929.893333pt;}
.y4e{bottom:937.093333pt;}
.y82{bottom:945.093333pt;}
.y4d{bottom:954.693333pt;}
.y81{bottom:962.693333pt;}
.y4c{bottom:972.293333pt;}
.y80{bottom:980.293333pt;}
.y4b{bottom:997.893333pt;}
.y4a{bottom:1015.653333pt;}
.y49{bottom:1033.280000pt;}
.y46{bottom:1059.840000pt;}
.h5{height:1.787500pt;}
.hb{height:24.131250pt;}
.hf{height:33.515625pt;}
.he{height:33.867188pt;}
.h9{height:37.090625pt;}
.hd{height:37.479688pt;}
.h13{height:38.672812pt;}
.h7{height:41.112500pt;}
.h10{height:42.780000pt;}
.h4{height:43.355000pt;}
.h14{height:43.782500pt;}
.ha{height:47.470625pt;}
.h3{height:50.895000pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h12{height:98.705625pt;}
.h2{height:144.666667pt;}
.h11{height:238.746667pt;}
.hc{height:317.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:35.360000pt;}
.w3{width:131.072000pt;}
.w6{width:193.666667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.080000pt;}
.x2{left:7.200000pt;}
.x8{left:11.400000pt;}
.xb{left:28.320000pt;}
.x1{left:48.000000pt;}
.x6{left:49.600000pt;}
.xc{left:59.999988pt;}
.xd{left:66.079988pt;}
.xe{left:71.999988pt;}
.xf{left:96.031988pt;}
.x4{left:123.866667pt;}
.x9{left:295.106655pt;}
.x5{left:341.986655pt;}
.x7{left:550.653333pt;}
.x3{left:611.493333pt;}
}




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