
    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_2a4ff4801c2c6aa7c25b62c9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_abaec2ff27e3982392f01710.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8885f5c8cf6b27244f2dd740.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_54a60998bfda04a8ce134378.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_2451b0061cbfad185b6c252b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f7e2e8fb6e4f290062b2d61e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5e7da7adecce820d5d14787f.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.496200px;}
.ls7{letter-spacing:-0.305400px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.223800px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:15.840000px;}
.lsb{letter-spacing:26.945280px;}
.ls6{letter-spacing:39.881280px;}
.lsa{letter-spacing:39.905280px;}
.ls8{letter-spacing:60.065280px;}
.ls9{letter-spacing:69.401280px;}
.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;}
}
.ws9{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.563800px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.wsa{word-spacing:-0.066240px;}
.ws4{word-spacing:-0.048240px;}
.ws8{word-spacing:0.000000px;}
._21{margin-left:-5.066880px;}
._12{margin-left:-3.986880px;}
._2{margin-left:-2.868000px;}
._1{margin-left:-1.736640px;}
._0{width:1.254960px;}
._3{width:3.053280px;}
._6{width:4.086480px;}
._8{width:5.454000px;}
._7{width:6.534000px;}
._17{width:7.884000px;}
._11{width:9.186240px;}
._d{width:10.487040px;}
._9{width:12.251280px;}
._10{width:13.777920px;}
._5{width:15.069120px;}
._4{width:16.170480px;}
._13{width:18.498720px;}
._b{width:20.465040px;}
._a{width:21.816000px;}
._14{width:23.051520px;}
._15{width:24.528960px;}
._16{width:26.118720px;}
._1c{width:27.255600px;}
._1b{width:28.440000px;}
._c{width:29.538000px;}
._f{width:30.821040px;}
._18{width:31.993920px;}
._22{width:34.568640px;}
._1f{width:36.034560px;}
._20{width:37.373760px;}
._1d{width:40.538880px;}
._1e{width:41.878080px;}
._23{width:74.321280px;}
._e{width:111.600000px;}
._19{width:959.880000px;}
._1a{width:1316.460000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:3.060000px;}
.y2{bottom:6.510000px;}
.y35{bottom:9.720000px;}
.y36{bottom:11.340000px;}
.y2d{bottom:18.540000px;}
.y5{bottom:25.410000px;}
.y8{bottom:28.830000px;}
.y2c{bottom:34.020000px;}
.y4{bottom:42.690000px;}
.y7{bottom:46.110000px;}
.y2b{bottom:49.500000px;}
.ya{bottom:55.620000px;}
.y3{bottom:60.690000px;}
.y6{bottom:63.390000px;}
.y2a{bottom:65.160000px;}
.y29{bottom:80.640000px;}
.y28{bottom:96.150000px;}
.y27{bottom:111.630000px;}
.y26{bottom:127.290000px;}
.yb2{bottom:127.476000px;}
.y87{bottom:128.556000px;}
.y73{bottom:131.436000px;}
.y46{bottom:134.496000px;}
.y25{bottom:142.770000px;}
.yb1{bottom:149.256000px;}
.yca{bottom:149.796000px;}
.y86{bottom:150.510000px;}
.y72{bottom:153.210000px;}
.y45{bottom:156.270000px;}
.y24{bottom:158.250000px;}
.yb0{bottom:171.210000px;}
.yc9{bottom:171.750000px;}
.y85{bottom:172.290000px;}
.y23{bottom:173.730000px;}
.yf0{bottom:173.910000px;}
.y71{bottom:174.990000px;}
.y44{bottom:178.050000px;}
.y22{bottom:189.390000px;}
.yaf{bottom:193.170000px;}
.yc8{bottom:193.710000px;}
.y84{bottom:194.250000px;}
.yef{bottom:195.690000px;}
.y70{bottom:196.950000px;}
.y33{bottom:197.490000px;}
.y43{bottom:199.830000px;}
.y21{bottom:204.870000px;}
.y32{bottom:211.350000px;}
.yae{bottom:214.950000px;}
.yc7{bottom:215.670000px;}
.y83{bottom:216.210000px;}
.yee{bottom:217.470000px;}
.y6f{bottom:218.730000px;}
.y20{bottom:220.350000px;}
.y42{bottom:221.610000px;}
.y31{bottom:225.210000px;}
.y1f{bottom:235.830000px;}
.yad{bottom:236.910000px;}
.yc6{bottom:237.450000px;}
.y82{bottom:238.170000px;}
.y30{bottom:238.890000px;}
.yed{bottom:239.250000px;}
.y6e{bottom:240.510000px;}
.y41{bottom:243.570000px;}
.y1e{bottom:251.490000px;}
.y2f{bottom:252.750000px;}
.yac{bottom:259.050000px;}
.yc5{bottom:259.230000px;}
.y81{bottom:260.130000px;}
.yec{bottom:261.030000px;}
.y6d{bottom:262.290000px;}
.y40{bottom:265.350000px;}
.y1d{bottom:266.970000px;}
.yab{bottom:280.830000px;}
.yc4{bottom:281.010000px;}
.y80{bottom:281.910000px;}
.y1c{bottom:282.450000px;}
.yeb{bottom:282.990000px;}
.y6c{bottom:284.070000px;}
.y3f{bottom:287.130000px;}
.y1b{bottom:297.930000px;}
.yaa{bottom:302.970000px;}
.y7f{bottom:303.870000px;}
.yea{bottom:304.770000px;}
.y6b{bottom:306.030000px;}
.y3e{bottom:308.910000px;}
.y1a{bottom:313.590000px;}
.yc3{bottom:324.750000px;}
.ya9{bottom:324.930000px;}
.y7e{bottom:325.650000px;}
.ye9{bottom:326.550000px;}
.y6a{bottom:327.810000px;}
.y19{bottom:329.070000px;}
.y3d{bottom:330.870000px;}
.y18{bottom:344.550000px;}
.yc2{bottom:346.575000px;}
.ya8{bottom:346.935000px;}
.y7d{bottom:347.475000px;}
.ye8{bottom:348.375000px;}
.y69{bottom:349.635000px;}
.y3c{bottom:352.695000px;}
.y17{bottom:360.030000px;}
.yc1{bottom:368.355000px;}
.ya7{bottom:368.715000px;}
.y7c{bottom:369.255000px;}
.ye7{bottom:370.335000px;}
.y68{bottom:371.415000px;}
.y3b{bottom:374.475000px;}
.y16{bottom:375.555000px;}
.yc0{bottom:390.315000px;}
.ya6{bottom:390.495000px;}
.y7b{bottom:391.035000px;}
.ye6{bottom:392.115000px;}
.y67{bottom:393.375000px;}
.y3a{bottom:396.255000px;}
.ybf{bottom:412.095000px;}
.ya5{bottom:412.275000px;}
.y7a{bottom:412.995000px;}
.ye5{bottom:413.895000px;}
.y66{bottom:415.155000px;}
.y39{bottom:418.035000px;}
.ya4{bottom:434.235000px;}
.y79{bottom:434.775000px;}
.ye4{bottom:435.675000px;}
.y65{bottom:436.935000px;}
.y38{bottom:439.995000px;}
.ya3{bottom:456.195000px;}
.y78{bottom:456.555000px;}
.ye3{bottom:457.455000px;}
.y64{bottom:458.715000px;}
.y37{bottom:461.775000px;}
.y34{bottom:477.255000px;}
.ya2{bottom:478.155000px;}
.y77{bottom:478.335000px;}
.ye2{bottom:479.415000px;}
.y63{bottom:480.495000px;}
.ya1{bottom:499.935000px;}
.y76{bottom:500.295000px;}
.ye1{bottom:501.195000px;}
.y62{bottom:502.455000px;}
.y15{bottom:508.575000px;}
.y75{bottom:518.655000px;}
.ybe{bottom:521.715000px;}
.ya0{bottom:521.895000px;}
.ye0{bottom:522.975000px;}
.y61{bottom:524.235000px;}
.ybd{bottom:543.495000px;}
.y9f{bottom:543.855000px;}
.ydf{bottom:544.755000px;}
.y60{bottom:546.015000px;}
.ybc{bottom:565.455000px;}
.y9e{bottom:565.815000px;}
.yde{bottom:566.715000px;}
.y5f{bottom:567.795000px;}
.ybb{bottom:587.415000px;}
.y9d{bottom:587.775000px;}
.ydd{bottom:588.495000px;}
.y5e{bottom:589.755000px;}
.yba{bottom:609.405000px;}
.y9c{bottom:609.765000px;}
.ydc{bottom:610.305000px;}
.y5d{bottom:611.565000px;}
.yb9{bottom:631.185000px;}
.y9b{bottom:631.545000px;}
.ydb{bottom:632.085000px;}
.y5c{bottom:633.345000px;}
.yb8{bottom:653.145000px;}
.y9a{bottom:653.325000px;}
.yda{bottom:653.865000px;}
.y5b{bottom:655.125000px;}
.y99{bottom:675.105000px;}
.yb7{bottom:675.285000px;}
.yd9{bottom:675.825000px;}
.y5a{bottom:676.905000px;}
.y98{bottom:697.065000px;}
.yb6{bottom:697.245000px;}
.yd8{bottom:697.605000px;}
.y59{bottom:698.865000px;}
.y74{bottom:719.025000px;}
.yd7{bottom:719.385000px;}
.y58{bottom:720.645000px;}
.y97{bottom:740.985000px;}
.yd6{bottom:741.345000px;}
.y57{bottom:742.425000px;}
.y96{bottom:762.765000px;}
.yd5{bottom:763.305000px;}
.y56{bottom:764.205000px;}
.y95{bottom:784.905000px;}
.yd4{bottom:785.265000px;}
.y55{bottom:786.165000px;}
.y94{bottom:806.685000px;}
.yd3{bottom:807.225000px;}
.y54{bottom:807.945000px;}
.y93{bottom:828.465000px;}
.yd2{bottom:829.185000px;}
.y53{bottom:829.725000px;}
.y92{bottom:850.425000px;}
.yd1{bottom:850.965000px;}
.y52{bottom:851.505000px;}
.y91{bottom:872.430000px;}
.yd0{bottom:872.790000px;}
.y51{bottom:873.330000px;}
.y90{bottom:894.390000px;}
.ycf{bottom:894.570000px;}
.y50{bottom:895.290000px;}
.y14{bottom:903.210000px;}
.y8f{bottom:916.170000px;}
.yce{bottom:916.350000px;}
.y4f{bottom:917.070000px;}
.y13{bottom:924.450000px;}
.y8e{bottom:938.310000px;}
.y4e{bottom:938.850000px;}
.y12{bottom:949.470000px;}
.y8d{bottom:960.090000px;}
.ycd{bottom:960.270000px;}
.y4d{bottom:960.630000px;}
.y11{bottom:964.590000px;}
.yb5{bottom:981.870000px;}
.y8c{bottom:982.050000px;}
.ycc{bottom:982.230000px;}
.y4c{bottom:982.410000px;}
.y10{bottom:984.570000px;}
.yf{bottom:1002.390000px;}
.yb4{bottom:1003.830000px;}
.y8b{bottom:1004.010000px;}
.y4b{bottom:1004.370000px;}
.ye{bottom:1024.170000px;}
.y8a{bottom:1025.790000px;}
.y4a{bottom:1026.150000px;}
.yd{bottom:1044.150000px;}
.y89{bottom:1047.570000px;}
.ycb{bottom:1047.750000px;}
.y49{bottom:1047.930000px;}
.yc{bottom:1063.050000px;}
.y88{bottom:1069.530000px;}
.y48{bottom:1069.710000px;}
.yb{bottom:1088.970000px;}
.yb3{bottom:1091.490000px;}
.y47{bottom:1091.670000px;}
.y9{bottom:1111.110000px;}
.y1{bottom:1132.350000px;}
.hd{height:27.147656px;}
.h14{height:31.320000px;}
.h15{height:33.683203px;}
.ha{height:34.036523px;}
.h11{height:37.705078px;}
.h12{height:38.100586px;}
.h8{height:39.147891px;}
.h13{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.h10{height:44.507812px;}
.he{height:46.251562px;}
.h16{height:46.736719px;}
.h18{height:48.224531px;}
.h6{height:49.255313px;}
.h19{height:50.229844px;}
.h7{height:50.273438px;}
.h4{height:50.800781px;}
.hc{height:53.224453px;}
.h17{height:53.755312px;}
.hb{height:54.596250px;}
.h9{height:54.864844px;}
.h2{height:77.436000px;}
.hf{height:388.155000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x14{left:29.520000px;}
.x6{left:44.640000px;}
.x2{left:58.494000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.xb{left:115.775987px;}
.x19{left:129.275987px;}
.x8{left:132.345000px;}
.x17{left:135.035987px;}
.xe{left:138.095987px;}
.x16{left:140.075987px;}
.x1f{left:150.509987px;}
.x18{left:162.029987px;}
.x1d{left:167.069987px;}
.x3{left:171.930000px;}
.x1c{left:174.449987px;}
.x11{left:192.629987px;}
.x1e{left:194.069987px;}
.xc{left:275.249987px;}
.x10{left:292.214987px;}
.x1a{left:337.214987px;}
.xf{left:352.334987px;}
.x12{left:361.154987px;}
.x15{left:391.575000px;}
.xd{left:446.474987px;}
.x1b{left:447.914987px;}
.xa{left:500.144987px;}
.x13{left:567.105000px;}
.x5{left:599.865000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.441067pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.198933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:14.080000pt;}
.lsb{letter-spacing:23.951360pt;}
.ls6{letter-spacing:35.450027pt;}
.lsa{letter-spacing:35.471360pt;}
.ls8{letter-spacing:53.391360pt;}
.ls9{letter-spacing:61.690027pt;}
.ws9{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.278933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsa{word-spacing:-0.058880pt;}
.ws4{word-spacing:-0.042880pt;}
.ws8{word-spacing:0.000000pt;}
._21{margin-left:-4.503893pt;}
._12{margin-left:-3.543893pt;}
._2{margin-left:-2.549333pt;}
._1{margin-left:-1.543680pt;}
._0{width:1.115520pt;}
._3{width:2.714027pt;}
._6{width:3.632427pt;}
._8{width:4.848000pt;}
._7{width:5.808000pt;}
._17{width:7.008000pt;}
._11{width:8.165547pt;}
._d{width:9.321813pt;}
._9{width:10.890027pt;}
._10{width:12.247040pt;}
._5{width:13.394773pt;}
._4{width:14.373760pt;}
._13{width:16.443307pt;}
._b{width:18.191147pt;}
._a{width:19.392000pt;}
._14{width:20.490240pt;}
._15{width:21.803520pt;}
._16{width:23.216640pt;}
._1c{width:24.227200pt;}
._1b{width:25.280000pt;}
._c{width:26.256000pt;}
._f{width:27.396480pt;}
._18{width:28.439040pt;}
._22{width:30.727680pt;}
._1f{width:32.030720pt;}
._20{width:33.221120pt;}
._1d{width:36.034560pt;}
._1e{width:37.224960pt;}
._23{width:66.063360pt;}
._e{width:99.200000pt;}
._19{width:853.226667pt;}
._1a{width:1170.186667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:2.720000pt;}
.y2{bottom:5.786667pt;}
.y35{bottom:8.640000pt;}
.y36{bottom:10.080000pt;}
.y2d{bottom:16.480000pt;}
.y5{bottom:22.586667pt;}
.y8{bottom:25.626667pt;}
.y2c{bottom:30.240000pt;}
.y4{bottom:37.946667pt;}
.y7{bottom:40.986667pt;}
.y2b{bottom:44.000000pt;}
.ya{bottom:49.440000pt;}
.y3{bottom:53.946667pt;}
.y6{bottom:56.346667pt;}
.y2a{bottom:57.920000pt;}
.y29{bottom:71.680000pt;}
.y28{bottom:85.466667pt;}
.y27{bottom:99.226667pt;}
.y26{bottom:113.146667pt;}
.yb2{bottom:113.312000pt;}
.y87{bottom:114.272000pt;}
.y73{bottom:116.832000pt;}
.y46{bottom:119.552000pt;}
.y25{bottom:126.906667pt;}
.yb1{bottom:132.672000pt;}
.yca{bottom:133.152000pt;}
.y86{bottom:133.786667pt;}
.y72{bottom:136.186667pt;}
.y45{bottom:138.906667pt;}
.y24{bottom:140.666667pt;}
.yb0{bottom:152.186667pt;}
.yc9{bottom:152.666667pt;}
.y85{bottom:153.146667pt;}
.y23{bottom:154.426667pt;}
.yf0{bottom:154.586667pt;}
.y71{bottom:155.546667pt;}
.y44{bottom:158.266667pt;}
.y22{bottom:168.346667pt;}
.yaf{bottom:171.706667pt;}
.yc8{bottom:172.186667pt;}
.y84{bottom:172.666667pt;}
.yef{bottom:173.946667pt;}
.y70{bottom:175.066667pt;}
.y33{bottom:175.546667pt;}
.y43{bottom:177.626667pt;}
.y21{bottom:182.106667pt;}
.y32{bottom:187.866667pt;}
.yae{bottom:191.066667pt;}
.yc7{bottom:191.706667pt;}
.y83{bottom:192.186667pt;}
.yee{bottom:193.306667pt;}
.y6f{bottom:194.426667pt;}
.y20{bottom:195.866667pt;}
.y42{bottom:196.986667pt;}
.y31{bottom:200.186667pt;}
.y1f{bottom:209.626667pt;}
.yad{bottom:210.586667pt;}
.yc6{bottom:211.066667pt;}
.y82{bottom:211.706667pt;}
.y30{bottom:212.346667pt;}
.yed{bottom:212.666667pt;}
.y6e{bottom:213.786667pt;}
.y41{bottom:216.506667pt;}
.y1e{bottom:223.546667pt;}
.y2f{bottom:224.666667pt;}
.yac{bottom:230.266667pt;}
.yc5{bottom:230.426667pt;}
.y81{bottom:231.226667pt;}
.yec{bottom:232.026667pt;}
.y6d{bottom:233.146667pt;}
.y40{bottom:235.866667pt;}
.y1d{bottom:237.306667pt;}
.yab{bottom:249.626667pt;}
.yc4{bottom:249.786667pt;}
.y80{bottom:250.586667pt;}
.y1c{bottom:251.066667pt;}
.yeb{bottom:251.546667pt;}
.y6c{bottom:252.506667pt;}
.y3f{bottom:255.226667pt;}
.y1b{bottom:264.826667pt;}
.yaa{bottom:269.306667pt;}
.y7f{bottom:270.106667pt;}
.yea{bottom:270.906667pt;}
.y6b{bottom:272.026667pt;}
.y3e{bottom:274.586667pt;}
.y1a{bottom:278.746667pt;}
.yc3{bottom:288.666667pt;}
.ya9{bottom:288.826667pt;}
.y7e{bottom:289.466667pt;}
.ye9{bottom:290.266667pt;}
.y6a{bottom:291.386667pt;}
.y19{bottom:292.506667pt;}
.y3d{bottom:294.106667pt;}
.y18{bottom:306.266667pt;}
.yc2{bottom:308.066667pt;}
.ya8{bottom:308.386667pt;}
.y7d{bottom:308.866667pt;}
.ye8{bottom:309.666667pt;}
.y69{bottom:310.786667pt;}
.y3c{bottom:313.506667pt;}
.y17{bottom:320.026667pt;}
.yc1{bottom:327.426667pt;}
.ya7{bottom:327.746667pt;}
.y7c{bottom:328.226667pt;}
.ye7{bottom:329.186667pt;}
.y68{bottom:330.146667pt;}
.y3b{bottom:332.866667pt;}
.y16{bottom:333.826667pt;}
.yc0{bottom:346.946667pt;}
.ya6{bottom:347.106667pt;}
.y7b{bottom:347.586667pt;}
.ye6{bottom:348.546667pt;}
.y67{bottom:349.666667pt;}
.y3a{bottom:352.226667pt;}
.ybf{bottom:366.306667pt;}
.ya5{bottom:366.466667pt;}
.y7a{bottom:367.106667pt;}
.ye5{bottom:367.906667pt;}
.y66{bottom:369.026667pt;}
.y39{bottom:371.586667pt;}
.ya4{bottom:385.986667pt;}
.y79{bottom:386.466667pt;}
.ye4{bottom:387.266667pt;}
.y65{bottom:388.386667pt;}
.y38{bottom:391.106667pt;}
.ya3{bottom:405.506667pt;}
.y78{bottom:405.826667pt;}
.ye3{bottom:406.626667pt;}
.y64{bottom:407.746667pt;}
.y37{bottom:410.466667pt;}
.y34{bottom:424.226667pt;}
.ya2{bottom:425.026667pt;}
.y77{bottom:425.186667pt;}
.ye2{bottom:426.146667pt;}
.y63{bottom:427.106667pt;}
.ya1{bottom:444.386667pt;}
.y76{bottom:444.706667pt;}
.ye1{bottom:445.506667pt;}
.y62{bottom:446.626667pt;}
.y15{bottom:452.066667pt;}
.y75{bottom:461.026667pt;}
.ybe{bottom:463.746667pt;}
.ya0{bottom:463.906667pt;}
.ye0{bottom:464.866667pt;}
.y61{bottom:465.986667pt;}
.ybd{bottom:483.106667pt;}
.y9f{bottom:483.426667pt;}
.ydf{bottom:484.226667pt;}
.y60{bottom:485.346667pt;}
.ybc{bottom:502.626667pt;}
.y9e{bottom:502.946667pt;}
.yde{bottom:503.746667pt;}
.y5f{bottom:504.706667pt;}
.ybb{bottom:522.146667pt;}
.y9d{bottom:522.466667pt;}
.ydd{bottom:523.106667pt;}
.y5e{bottom:524.226667pt;}
.yba{bottom:541.693333pt;}
.y9c{bottom:542.013333pt;}
.ydc{bottom:542.493333pt;}
.y5d{bottom:543.613333pt;}
.yb9{bottom:561.053333pt;}
.y9b{bottom:561.373333pt;}
.ydb{bottom:561.853333pt;}
.y5c{bottom:562.973333pt;}
.yb8{bottom:580.573333pt;}
.y9a{bottom:580.733333pt;}
.yda{bottom:581.213333pt;}
.y5b{bottom:582.333333pt;}
.y99{bottom:600.093333pt;}
.yb7{bottom:600.253333pt;}
.yd9{bottom:600.733333pt;}
.y5a{bottom:601.693333pt;}
.y98{bottom:619.613333pt;}
.yb6{bottom:619.773333pt;}
.yd8{bottom:620.093333pt;}
.y59{bottom:621.213333pt;}
.y74{bottom:639.133333pt;}
.yd7{bottom:639.453333pt;}
.y58{bottom:640.573333pt;}
.y97{bottom:658.653333pt;}
.yd6{bottom:658.973333pt;}
.y57{bottom:659.933333pt;}
.y96{bottom:678.013333pt;}
.yd5{bottom:678.493333pt;}
.y56{bottom:679.293333pt;}
.y95{bottom:697.693333pt;}
.yd4{bottom:698.013333pt;}
.y55{bottom:698.813333pt;}
.y94{bottom:717.053333pt;}
.yd3{bottom:717.533333pt;}
.y54{bottom:718.173333pt;}
.y93{bottom:736.413333pt;}
.yd2{bottom:737.053333pt;}
.y53{bottom:737.533333pt;}
.y92{bottom:755.933333pt;}
.yd1{bottom:756.413333pt;}
.y52{bottom:756.893333pt;}
.y91{bottom:775.493333pt;}
.yd0{bottom:775.813333pt;}
.y51{bottom:776.293333pt;}
.y90{bottom:795.013333pt;}
.ycf{bottom:795.173333pt;}
.y50{bottom:795.813333pt;}
.y14{bottom:802.853333pt;}
.y8f{bottom:814.373333pt;}
.yce{bottom:814.533333pt;}
.y4f{bottom:815.173333pt;}
.y13{bottom:821.733333pt;}
.y8e{bottom:834.053333pt;}
.y4e{bottom:834.533333pt;}
.y12{bottom:843.973333pt;}
.y8d{bottom:853.413333pt;}
.ycd{bottom:853.573333pt;}
.y4d{bottom:853.893333pt;}
.y11{bottom:857.413333pt;}
.yb5{bottom:872.773333pt;}
.y8c{bottom:872.933333pt;}
.ycc{bottom:873.093333pt;}
.y4c{bottom:873.253333pt;}
.y10{bottom:875.173333pt;}
.yf{bottom:891.013333pt;}
.yb4{bottom:892.293333pt;}
.y8b{bottom:892.453333pt;}
.y4b{bottom:892.773333pt;}
.ye{bottom:910.373333pt;}
.y8a{bottom:911.813333pt;}
.y4a{bottom:912.133333pt;}
.yd{bottom:928.133333pt;}
.y89{bottom:931.173333pt;}
.ycb{bottom:931.333333pt;}
.y49{bottom:931.493333pt;}
.yc{bottom:944.933333pt;}
.y88{bottom:950.693333pt;}
.y48{bottom:950.853333pt;}
.yb{bottom:967.973333pt;}
.yb3{bottom:970.213333pt;}
.y47{bottom:970.373333pt;}
.y9{bottom:987.653333pt;}
.y1{bottom:1006.533333pt;}
.hd{height:24.131250pt;}
.h14{height:27.840000pt;}
.h15{height:29.940625pt;}
.ha{height:30.254687pt;}
.h11{height:33.515625pt;}
.h12{height:33.867188pt;}
.h8{height:34.798125pt;}
.h13{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.h10{height:39.562500pt;}
.he{height:41.112500pt;}
.h16{height:41.543750pt;}
.h18{height:42.866250pt;}
.h6{height:43.782500pt;}
.h19{height:44.648750pt;}
.h7{height:44.687500pt;}
.h4{height:45.156250pt;}
.hc{height:47.310625pt;}
.h17{height:47.782500pt;}
.hb{height:48.530000pt;}
.h9{height:48.768750pt;}
.h2{height:68.832000pt;}
.hf{height:345.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x14{left:26.240000pt;}
.x6{left:39.680000pt;}
.x2{left:51.994667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.xb{left:102.911988pt;}
.x19{left:114.911988pt;}
.x8{left:117.640000pt;}
.x17{left:120.031988pt;}
.xe{left:122.751988pt;}
.x16{left:124.511988pt;}
.x1f{left:133.786655pt;}
.x18{left:144.026655pt;}
.x1d{left:148.506655pt;}
.x3{left:152.826667pt;}
.x1c{left:155.066655pt;}
.x11{left:171.226655pt;}
.x1e{left:172.506655pt;}
.xc{left:244.666655pt;}
.x10{left:259.746655pt;}
.x1a{left:299.746655pt;}
.xf{left:313.186655pt;}
.x12{left:321.026655pt;}
.x15{left:348.066667pt;}
.xd{left:396.866655pt;}
.x1b{left:398.146655pt;}
.xa{left:444.573322pt;}
.x13{left:504.093333pt;}
.x5{left:533.213333pt;}
}




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