
    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_b256136aad78431280aeaf81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_9a8c68c95a363ddf90f6f9d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_09fccb9dab9d7b6f104819e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_0604e8d436d31f67cc0961de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9dc8ab3c62e3c1d15b2ef915.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_de190f8389b6f7ab28332262.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_07360c824f11612627aaeb5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-64.800000px;}
.v3{vertical-align:-63.360000px;}
.v1{vertical-align:-58.320000px;}
.v4{vertical-align:-47.496000px;}
.v0{vertical-align:0.000000px;}
.ls33{letter-spacing:-2.316000px;}
.ls1c{letter-spacing:-2.160000px;}
.ls1d{letter-spacing:-1.584000px;}
.ls18{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-1.332000px;}
.ls32{letter-spacing:-1.176000px;}
.ls17{letter-spacing:-0.720000px;}
.ls40{letter-spacing:-0.460200px;}
.ls1f{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.337200px;}
.ls1e{letter-spacing:-0.147000px;}
.ls38{letter-spacing:-0.109200px;}
.ls2a{letter-spacing:-0.097800px;}
.lsc{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.230400px;}
.ls4{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.262080px;}
.ls29{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.738000px;}
.ls3f{letter-spacing:1.080000px;}
.ls24{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.620000px;}
.ls2f{letter-spacing:2.160000px;}
.ls35{letter-spacing:2.880000px;}
.ls8{letter-spacing:3.600000px;}
.ls3b{letter-spacing:3.780000px;}
.ls7{letter-spacing:4.320000px;}
.ls26{letter-spacing:5.040000px;}
.ls3e{letter-spacing:5.220000px;}
.ls11{letter-spacing:5.760000px;}
.ls14{letter-spacing:6.480000px;}
.ls20{letter-spacing:7.200000px;}
.ls23{letter-spacing:7.920000px;}
.ls1a{letter-spacing:8.100000px;}
.ls13{letter-spacing:8.640000px;}
.ls2c{letter-spacing:9.360000px;}
.ls2b{letter-spacing:10.080000px;}
.lsf{letter-spacing:10.800000px;}
.ls10{letter-spacing:11.520000px;}
.ls2d{letter-spacing:12.240000px;}
.ls34{letter-spacing:12.960000px;}
.ls12{letter-spacing:13.680000px;}
.ls2e{letter-spacing:14.400000px;}
.ls36{letter-spacing:15.120000px;}
.ls27{letter-spacing:15.840000px;}
.ls9{letter-spacing:16.560000px;}
.ls31{letter-spacing:17.280000px;}
.ls21{letter-spacing:20.160000px;}
.lsa{letter-spacing:21.600000px;}
.ls22{letter-spacing:23.040000px;}
.ls6{letter-spacing:23.220000px;}
.ls25{letter-spacing:23.760000px;}
.ls28{letter-spacing:25.200000px;}
.lse{letter-spacing:25.920000px;}
.ls16{letter-spacing:31.680000px;}
.ls30{letter-spacing:36.180000px;}
.ls39{letter-spacing:36.720000px;}
.ls3a{letter-spacing:43.146720px;}
.ls3c{letter-spacing:46.746720px;}
.ls1{letter-spacing:500.040000px;}
.ls3d{letter-spacing:769.476000px;}
.ls41{letter-spacing:1316.640000px;}
.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;}
}
.wsf{word-spacing:-16.822200px;}
.ws9{word-spacing:-16.822080px;}
.ws12{word-spacing:-16.790400px;}
.ws5{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.413000px;}
.wse{word-spacing:-16.102200px;}
.ws14{word-spacing:-16.020000px;}
.ws8{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.384000px;}
.ws0{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.228000px;}
.ws2{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.976000px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.479800px;}
.wsb{word-spacing:-14.400000px;}
.ws11{word-spacing:-14.244000px;}
.ws6{word-spacing:-13.500000px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-3.789840px;}
._13{margin-left:-2.524800px;}
._1{margin-left:-1.494000px;}
._0{width:1.015920px;}
._b{width:2.192400px;}
._2{width:3.712800px;}
._4{width:5.019840px;}
._3{width:6.513840px;}
._6{width:7.529760px;}
._5{width:8.545680px;}
._8{width:10.458000px;}
._7{width:11.473920px;}
._9{width:13.386240px;}
._18{width:14.670000px;}
._a{width:16.075440px;}
._23{width:17.130000px;}
._d{width:18.167040px;}
._17{width:20.056080px;}
._12{width:21.528000px;}
._11{width:22.662720px;}
._10{width:23.874960px;}
._15{width:25.332960px;}
._16{width:26.768160px;}
._1e{width:28.756080px;}
._14{width:30.154560px;}
._1a{width:31.156320px;}
._1d{width:32.227440px;}
._f{width:33.823200px;}
._e{width:35.138880px;}
._20{width:36.606000px;}
._1b{width:41.400000px;}
._1c{width:42.619440px;}
._21{width:44.616000px;}
._1f{width:144.172320px;}
._c{width:2343.197040px;}
._22{width:2508.971280px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y4{bottom:56.700000px;}
.yba{bottom:88.776000px;}
.y43{bottom:93.456000px;}
.y82{bottom:93.816000px;}
.ycd{bottom:96.876000px;}
.y73{bottom:102.816000px;}
.yb9{bottom:105.876000px;}
.y42{bottom:108.936000px;}
.y81{bottom:111.096000px;}
.ycc{bottom:112.356000px;}
.y72{bottom:121.716000px;}
.yb8{bottom:123.156000px;}
.y41{bottom:124.416000px;}
.ycb{bottom:127.116000px;}
.y80{bottom:128.376000px;}
.y40{bottom:140.796000px;}
.y7f{bottom:145.656000px;}
.yb7{bottom:150.870000px;}
.y3f{bottom:159.690000px;}
.y7e{bottom:162.930000px;}
.yb6{bottom:167.970000px;}
.y3e{bottom:178.590000px;}
.y7d{bottom:180.030000px;}
.yb5{bottom:185.250000px;}
.y7c{bottom:197.310000px;}
.y3d{bottom:197.670000px;}
.yb4{bottom:202.530000px;}
.y7b{bottom:214.590000px;}
.y3c{bottom:216.570000px;}
.yb3{bottom:219.810000px;}
.y7a{bottom:231.870000px;}
.y3b{bottom:235.650000px;}
.yb2{bottom:237.090000px;}
.y79{bottom:249.150000px;}
.yb1{bottom:254.370000px;}
.y3a{bottom:254.550000px;}
.y78{bottom:266.430000px;}
.yb0{bottom:271.470000px;}
.y39{bottom:273.630000px;}
.y77{bottom:283.530000px;}
.yaf{bottom:288.750000px;}
.y38{bottom:292.530000px;}
.y76{bottom:300.810000px;}
.yae{bottom:306.030000px;}
.y37{bottom:309.990000px;}
.y71{bottom:311.430000px;}
.y75{bottom:317.730000px;}
.y36{bottom:323.310000px;}
.y70{bottom:330.555000px;}
.y74{bottom:334.515000px;}
.y35{bottom:340.635000px;}
.y6f{bottom:349.455000px;}
.yad{bottom:356.655000px;}
.y34{bottom:357.735000px;}
.y6e{bottom:368.535000px;}
.yac{bottom:369.975000px;}
.y33{bottom:375.015000px;}
.yab{bottom:387.075000px;}
.y6d{bottom:387.435000px;}
.y32{bottom:392.295000px;}
.yaa{bottom:404.355000px;}
.y6c{bottom:406.335000px;}
.y31{bottom:409.575000px;}
.ya9{bottom:421.635000px;}
.y6b{bottom:425.415000px;}
.y30{bottom:426.855000px;}
.y2f{bottom:444.135000px;}
.y6a{bottom:444.315000px;}
.ya8{bottom:454.755000px;}
.y2e{bottom:461.235000px;}
.y69{bottom:463.395000px;}
.ya7{bottom:467.895000px;}
.y2d{bottom:478.515000px;}
.y68{bottom:482.295000px;}
.ya6{bottom:485.175000px;}
.y2c{bottom:495.795000px;}
.y67{bottom:501.195000px;}
.ya5{bottom:502.275000px;}
.y2b{bottom:513.075000px;}
.ya4{bottom:518.475000px;}
.y66{bottom:520.275000px;}
.y2a{bottom:528.735000px;}
.ya3{bottom:531.975000px;}
.y65{bottom:539.175000px;}
.y29{bottom:540.615000px;}
.ya2{bottom:549.255000px;}
.y28{bottom:557.895000px;}
.y64{bottom:558.255000px;}
.ya1{bottom:566.535000px;}
.y27{bottom:575.175000px;}
.y63{bottom:577.155000px;}
.ya0{bottom:583.815000px;}
.y26{bottom:592.455000px;}
.y62{bottom:596.085000px;}
.y9f{bottom:601.125000px;}
.y25{bottom:609.765000px;}
.y61{bottom:615.165000px;}
.y9e{bottom:618.225000px;}
.y24{bottom:626.865000px;}
.y60{bottom:634.065000px;}
.y9d{bottom:635.505000px;}
.y23{bottom:644.145000px;}
.y9c{bottom:652.785000px;}
.y5f{bottom:653.145000px;}
.y22{bottom:661.425000px;}
.y9b{bottom:670.065000px;}
.y5e{bottom:672.045000px;}
.y9a{bottom:687.345000px;}
.y5d{bottom:690.945000px;}
.y21{bottom:694.905000px;}
.y99{bottom:704.625000px;}
.y20{bottom:709.305000px;}
.y5c{bottom:710.025000px;}
.y98{bottom:721.725000px;}
.y1f{bottom:726.585000px;}
.y5b{bottom:728.925000px;}
.y97{bottom:739.005000px;}
.y1e{bottom:743.865000px;}
.y5a{bottom:748.005000px;}
.y96{bottom:756.285000px;}
.y1d{bottom:760.785000px;}
.yca{bottom:765.465000px;}
.y59{bottom:766.905000px;}
.y95{bottom:773.565000px;}
.y1c{bottom:775.185000px;}
.yc9{bottom:778.785000px;}
.y58{bottom:785.985000px;}
.y94{bottom:790.845000px;}
.y1b{bottom:792.465000px;}
.yc8{bottom:795.885000px;}
.y57{bottom:804.885000px;}
.y93{bottom:808.125000px;}
.y1a{bottom:809.745000px;}
.yc7{bottom:813.165000px;}
.y56{bottom:823.785000px;}
.y92{bottom:825.225000px;}
.yc6{bottom:830.445000px;}
.y19{bottom:840.885000px;}
.y91{bottom:842.505000px;}
.y55{bottom:842.865000px;}
.yc5{bottom:847.725000px;}
.y18{bottom:857.985000px;}
.y90{bottom:859.785000px;}
.y54{bottom:861.765000px;}
.yc4{bottom:865.050000px;}
.y17{bottom:875.310000px;}
.y8f{bottom:877.110000px;}
.y53{bottom:880.890000px;}
.yc3{bottom:882.330000px;}
.y16{bottom:892.590000px;}
.y8e{bottom:894.390000px;}
.yc2{bottom:899.430000px;}
.y52{bottom:899.790000px;}
.y15{bottom:909.870000px;}
.y8d{bottom:911.490000px;}
.yc1{bottom:916.710000px;}
.y51{bottom:918.690000px;}
.y14{bottom:927.150000px;}
.y8c{bottom:928.770000px;}
.yc0{bottom:932.550000px;}
.y50{bottom:937.770000px;}
.y13{bottom:944.430000px;}
.y8b{bottom:945.690000px;}
.y4f{bottom:956.670000px;}
.y12{bottom:961.530000px;}
.y8a{bottom:961.890000px;}
.y89{bottom:975.390000px;}
.y4e{bottom:975.750000px;}
.y11{bottom:978.810000px;}
.y88{bottom:992.670000px;}
.y4d{bottom:994.650000px;}
.y10{bottom:996.090000px;}
.y87{bottom:1009.950000px;}
.yf{bottom:1013.370000px;}
.y4c{bottom:1013.550000px;}
.y86{bottom:1027.050000px;}
.ye{bottom:1030.650000px;}
.y4b{bottom:1032.630000px;}
.y85{bottom:1044.330000px;}
.yd{bottom:1046.850000px;}
.ybf{bottom:1047.750000px;}
.y4a{bottom:1051.530000px;}
.yc{bottom:1061.610000px;}
.ybe{bottom:1065.030000px;}
.y49{bottom:1070.610000px;}
.yb{bottom:1078.890000px;}
.ybd{bottom:1082.310000px;}
.y48{bottom:1089.510000px;}
.ya{bottom:1095.810000px;}
.y84{bottom:1096.170000px;}
.y47{bottom:1108.410000px;}
.y9{bottom:1113.450000px;}
.ybc{bottom:1115.970000px;}
.y46{bottom:1127.490000px;}
.ybb{bottom:1130.220000px;}
.y8{bottom:1130.580000px;}
.y45{bottom:1146.420000px;}
.y7{bottom:1147.500000px;}
.y83{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y5{bottom:1189.260000px;}
.y44{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h4{height:17.280000px;}
.h8{height:35.332031px;}
.ha{height:40.985156px;}
.h11{height:42.086250px;}
.h7{height:47.344922px;}
.h6{height:48.616875px;}
.h3{height:49.583118px;}
.he{height:52.998047px;}
.h9{height:53.252930px;}
.h2{height:58.651172px;}
.hd{height:59.027344px;}
.h5{height:60.226875px;}
.hf{height:61.423863px;}
.h10{height:64.978594px;}
.hb{height:65.010937px;}
.hc{height:66.757500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:14.940000px;}
.w3{width:16.920000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:63.900000px;}
.x1e{left:90.719987px;}
.x1{left:106.415987px;}
.x27{left:126.755987px;}
.x1f{left:133.235987px;}
.x9{left:148.895987px;}
.xf{left:159.509987px;}
.x22{left:163.829987px;}
.xd{left:193.709987px;}
.x14{left:226.289987px;}
.x18{left:262.109987px;}
.x28{left:280.289987px;}
.x4{left:302.114987px;}
.x2c{left:306.074987px;}
.x1d{left:334.334987px;}
.xe{left:340.634987px;}
.x15{left:344.234987px;}
.x24{left:360.074987px;}
.x25{left:388.154987px;}
.x8{left:407.234987px;}
.x7{left:412.454987px;}
.x2e{left:422.354987px;}
.x1c{left:425.234987px;}
.x21{left:432.794987px;}
.x19{left:441.254987px;}
.x26{left:443.414987px;}
.x10{left:447.734987px;}
.x20{left:467.714987px;}
.x2d{left:478.904987px;}
.x5{left:533.084987px;}
.x29{left:551.444987px;}
.x23{left:562.964987px;}
.x2b{left:608.324987px;}
.x2f{left:629.924987px;}
.xa{left:646.844987px;}
.xb{left:665.429987px;}
.x17{left:673.349987px;}
.x3{left:678.029987px;}
.x6{left:701.249987px;}
.x13{left:729.869987px;}
.x2a{left:764.249987px;}
.x11{left:782.609987px;}
.x16{left:784.769987px;}
.x1a{left:786.749987px;}
.x12{left:802.589987px;}
.x2{left:819.150000px;}
.xc{left:829.229987px;}
@media print{
.v2{vertical-align:-57.600000pt;}
.v3{vertical-align:-56.320000pt;}
.v1{vertical-align:-51.840000pt;}
.v4{vertical-align:-42.218667pt;}
.v0{vertical-align:0.000000pt;}
.ls33{letter-spacing:-2.058667pt;}
.ls1c{letter-spacing:-1.920000pt;}
.ls1d{letter-spacing:-1.408000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-1.184000pt;}
.ls32{letter-spacing:-1.045333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls40{letter-spacing:-0.409067pt;}
.ls1f{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.299733pt;}
.ls1e{letter-spacing:-0.130667pt;}
.ls38{letter-spacing:-0.097067pt;}
.ls2a{letter-spacing:-0.086933pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.204800pt;}
.ls4{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.232960pt;}
.ls29{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.656000pt;}
.ls3f{letter-spacing:0.960000pt;}
.ls24{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:1.920000pt;}
.ls35{letter-spacing:2.560000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls3b{letter-spacing:3.360000pt;}
.ls7{letter-spacing:3.840000pt;}
.ls26{letter-spacing:4.480000pt;}
.ls3e{letter-spacing:4.640000pt;}
.ls11{letter-spacing:5.120000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls20{letter-spacing:6.400000pt;}
.ls23{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:7.200000pt;}
.ls13{letter-spacing:7.680000pt;}
.ls2c{letter-spacing:8.320000pt;}
.ls2b{letter-spacing:8.960000pt;}
.lsf{letter-spacing:9.600000pt;}
.ls10{letter-spacing:10.240000pt;}
.ls2d{letter-spacing:10.880000pt;}
.ls34{letter-spacing:11.520000pt;}
.ls12{letter-spacing:12.160000pt;}
.ls2e{letter-spacing:12.800000pt;}
.ls36{letter-spacing:13.440000pt;}
.ls27{letter-spacing:14.080000pt;}
.ls9{letter-spacing:14.720000pt;}
.ls31{letter-spacing:15.360000pt;}
.ls21{letter-spacing:17.920000pt;}
.lsa{letter-spacing:19.200000pt;}
.ls22{letter-spacing:20.480000pt;}
.ls6{letter-spacing:20.640000pt;}
.ls25{letter-spacing:21.120000pt;}
.ls28{letter-spacing:22.400000pt;}
.lse{letter-spacing:23.040000pt;}
.ls16{letter-spacing:28.160000pt;}
.ls30{letter-spacing:32.160000pt;}
.ls39{letter-spacing:32.640000pt;}
.ls3a{letter-spacing:38.352640pt;}
.ls3c{letter-spacing:41.552640pt;}
.ls1{letter-spacing:444.480000pt;}
.ls3d{letter-spacing:683.978667pt;}
.ls41{letter-spacing:1170.346667pt;}
.wsf{word-spacing:-14.953067pt;}
.ws9{word-spacing:-14.952960pt;}
.ws12{word-spacing:-14.924800pt;}
.ws5{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.589333pt;}
.wse{word-spacing:-14.313067pt;}
.ws14{word-spacing:-14.240000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.674667pt;}
.ws0{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.312000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.870933pt;}
.wsb{word-spacing:-12.800000pt;}
.ws11{word-spacing:-12.661333pt;}
.ws6{word-spacing:-12.000000pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-3.368747pt;}
._13{margin-left:-2.244267pt;}
._1{margin-left:-1.328000pt;}
._0{width:0.903040pt;}
._b{width:1.948800pt;}
._2{width:3.300267pt;}
._4{width:4.462080pt;}
._3{width:5.790080pt;}
._6{width:6.693120pt;}
._5{width:7.596160pt;}
._8{width:9.296000pt;}
._7{width:10.199040pt;}
._9{width:11.898880pt;}
._18{width:13.040000pt;}
._a{width:14.289280pt;}
._23{width:15.226667pt;}
._d{width:16.148480pt;}
._17{width:17.827627pt;}
._12{width:19.136000pt;}
._11{width:20.144640pt;}
._10{width:21.222187pt;}
._15{width:22.518187pt;}
._16{width:23.793920pt;}
._1e{width:25.560960pt;}
._14{width:26.804053pt;}
._1a{width:27.694507pt;}
._1d{width:28.646613pt;}
._f{width:30.065067pt;}
._e{width:31.234560pt;}
._20{width:32.538667pt;}
._1b{width:36.800000pt;}
._1c{width:37.883947pt;}
._21{width:39.658667pt;}
._1f{width:128.153173pt;}
._c{width:2082.841813pt;}
._22{width:2230.196693pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y4{bottom:50.400000pt;}
.yba{bottom:78.912000pt;}
.y43{bottom:83.072000pt;}
.y82{bottom:83.392000pt;}
.ycd{bottom:86.112000pt;}
.y73{bottom:91.392000pt;}
.yb9{bottom:94.112000pt;}
.y42{bottom:96.832000pt;}
.y81{bottom:98.752000pt;}
.ycc{bottom:99.872000pt;}
.y72{bottom:108.192000pt;}
.yb8{bottom:109.472000pt;}
.y41{bottom:110.592000pt;}
.ycb{bottom:112.992000pt;}
.y80{bottom:114.112000pt;}
.y40{bottom:125.152000pt;}
.y7f{bottom:129.472000pt;}
.yb7{bottom:134.106667pt;}
.y3f{bottom:141.946667pt;}
.y7e{bottom:144.826667pt;}
.yb6{bottom:149.306667pt;}
.y3e{bottom:158.746667pt;}
.y7d{bottom:160.026667pt;}
.yb5{bottom:164.666667pt;}
.y7c{bottom:175.386667pt;}
.y3d{bottom:175.706667pt;}
.yb4{bottom:180.026667pt;}
.y7b{bottom:190.746667pt;}
.y3c{bottom:192.506667pt;}
.yb3{bottom:195.386667pt;}
.y7a{bottom:206.106667pt;}
.y3b{bottom:209.466667pt;}
.yb2{bottom:210.746667pt;}
.y79{bottom:221.466667pt;}
.yb1{bottom:226.106667pt;}
.y3a{bottom:226.266667pt;}
.y78{bottom:236.826667pt;}
.yb0{bottom:241.306667pt;}
.y39{bottom:243.226667pt;}
.y77{bottom:252.026667pt;}
.yaf{bottom:256.666667pt;}
.y38{bottom:260.026667pt;}
.y76{bottom:267.386667pt;}
.yae{bottom:272.026667pt;}
.y37{bottom:275.546667pt;}
.y71{bottom:276.826667pt;}
.y75{bottom:282.426667pt;}
.y36{bottom:287.386667pt;}
.y70{bottom:293.826667pt;}
.y74{bottom:297.346667pt;}
.y35{bottom:302.786667pt;}
.y6f{bottom:310.626667pt;}
.yad{bottom:317.026667pt;}
.y34{bottom:317.986667pt;}
.y6e{bottom:327.586667pt;}
.yac{bottom:328.866667pt;}
.y33{bottom:333.346667pt;}
.yab{bottom:344.066667pt;}
.y6d{bottom:344.386667pt;}
.y32{bottom:348.706667pt;}
.yaa{bottom:359.426667pt;}
.y6c{bottom:361.186667pt;}
.y31{bottom:364.066667pt;}
.ya9{bottom:374.786667pt;}
.y6b{bottom:378.146667pt;}
.y30{bottom:379.426667pt;}
.y2f{bottom:394.786667pt;}
.y6a{bottom:394.946667pt;}
.ya8{bottom:404.226667pt;}
.y2e{bottom:409.986667pt;}
.y69{bottom:411.906667pt;}
.ya7{bottom:415.906667pt;}
.y2d{bottom:425.346667pt;}
.y68{bottom:428.706667pt;}
.ya6{bottom:431.266667pt;}
.y2c{bottom:440.706667pt;}
.y67{bottom:445.506667pt;}
.ya5{bottom:446.466667pt;}
.y2b{bottom:456.066667pt;}
.ya4{bottom:460.866667pt;}
.y66{bottom:462.466667pt;}
.y2a{bottom:469.986667pt;}
.ya3{bottom:472.866667pt;}
.y65{bottom:479.266667pt;}
.y29{bottom:480.546667pt;}
.ya2{bottom:488.226667pt;}
.y28{bottom:495.906667pt;}
.y64{bottom:496.226667pt;}
.ya1{bottom:503.586667pt;}
.y27{bottom:511.266667pt;}
.y63{bottom:513.026667pt;}
.ya0{bottom:518.946667pt;}
.y26{bottom:526.626667pt;}
.y62{bottom:529.853333pt;}
.y9f{bottom:534.333333pt;}
.y25{bottom:542.013333pt;}
.y61{bottom:546.813333pt;}
.y9e{bottom:549.533333pt;}
.y24{bottom:557.213333pt;}
.y60{bottom:563.613333pt;}
.y9d{bottom:564.893333pt;}
.y23{bottom:572.573333pt;}
.y9c{bottom:580.253333pt;}
.y5f{bottom:580.573333pt;}
.y22{bottom:587.933333pt;}
.y9b{bottom:595.613333pt;}
.y5e{bottom:597.373333pt;}
.y9a{bottom:610.973333pt;}
.y5d{bottom:614.173333pt;}
.y21{bottom:617.693333pt;}
.y99{bottom:626.333333pt;}
.y20{bottom:630.493333pt;}
.y5c{bottom:631.133333pt;}
.y98{bottom:641.533333pt;}
.y1f{bottom:645.853333pt;}
.y5b{bottom:647.933333pt;}
.y97{bottom:656.893333pt;}
.y1e{bottom:661.213333pt;}
.y5a{bottom:664.893333pt;}
.y96{bottom:672.253333pt;}
.y1d{bottom:676.253333pt;}
.yca{bottom:680.413333pt;}
.y59{bottom:681.693333pt;}
.y95{bottom:687.613333pt;}
.y1c{bottom:689.053333pt;}
.yc9{bottom:692.253333pt;}
.y58{bottom:698.653333pt;}
.y94{bottom:702.973333pt;}
.y1b{bottom:704.413333pt;}
.yc8{bottom:707.453333pt;}
.y57{bottom:715.453333pt;}
.y93{bottom:718.333333pt;}
.y1a{bottom:719.773333pt;}
.yc7{bottom:722.813333pt;}
.y56{bottom:732.253333pt;}
.y92{bottom:733.533333pt;}
.yc6{bottom:738.173333pt;}
.y19{bottom:747.453333pt;}
.y91{bottom:748.893333pt;}
.y55{bottom:749.213333pt;}
.yc5{bottom:753.533333pt;}
.y18{bottom:762.653333pt;}
.y90{bottom:764.253333pt;}
.y54{bottom:766.013333pt;}
.yc4{bottom:768.933333pt;}
.y17{bottom:778.053333pt;}
.y8f{bottom:779.653333pt;}
.y53{bottom:783.013333pt;}
.yc3{bottom:784.293333pt;}
.y16{bottom:793.413333pt;}
.y8e{bottom:795.013333pt;}
.yc2{bottom:799.493333pt;}
.y52{bottom:799.813333pt;}
.y15{bottom:808.773333pt;}
.y8d{bottom:810.213333pt;}
.yc1{bottom:814.853333pt;}
.y51{bottom:816.613333pt;}
.y14{bottom:824.133333pt;}
.y8c{bottom:825.573333pt;}
.yc0{bottom:828.933333pt;}
.y50{bottom:833.573333pt;}
.y13{bottom:839.493333pt;}
.y8b{bottom:840.613333pt;}
.y4f{bottom:850.373333pt;}
.y12{bottom:854.693333pt;}
.y8a{bottom:855.013333pt;}
.y89{bottom:867.013333pt;}
.y4e{bottom:867.333333pt;}
.y11{bottom:870.053333pt;}
.y88{bottom:882.373333pt;}
.y4d{bottom:884.133333pt;}
.y10{bottom:885.413333pt;}
.y87{bottom:897.733333pt;}
.yf{bottom:900.773333pt;}
.y4c{bottom:900.933333pt;}
.y86{bottom:912.933333pt;}
.ye{bottom:916.133333pt;}
.y4b{bottom:917.893333pt;}
.y85{bottom:928.293333pt;}
.yd{bottom:930.533333pt;}
.ybf{bottom:931.333333pt;}
.y4a{bottom:934.693333pt;}
.yc{bottom:943.653333pt;}
.ybe{bottom:946.693333pt;}
.y49{bottom:951.653333pt;}
.yb{bottom:959.013333pt;}
.ybd{bottom:962.053333pt;}
.y48{bottom:968.453333pt;}
.ya{bottom:974.053333pt;}
.y84{bottom:974.373333pt;}
.y47{bottom:985.253333pt;}
.y9{bottom:989.733333pt;}
.ybc{bottom:991.973333pt;}
.y46{bottom:1002.213333pt;}
.ybb{bottom:1004.640000pt;}
.y8{bottom:1004.960000pt;}
.y45{bottom:1019.040000pt;}
.y7{bottom:1020.000000pt;}
.y83{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y5{bottom:1057.120000pt;}
.y44{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:15.360000pt;}
.h8{height:31.406250pt;}
.ha{height:36.431250pt;}
.h11{height:37.410000pt;}
.h7{height:42.084375pt;}
.h6{height:43.215000pt;}
.h3{height:44.073883pt;}
.he{height:47.109375pt;}
.h9{height:47.335938pt;}
.h2{height:52.134375pt;}
.hd{height:52.468750pt;}
.h5{height:53.535000pt;}
.hf{height:54.598989pt;}
.h10{height:57.758750pt;}
.hb{height:57.787500pt;}
.hc{height:59.340000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:13.280000pt;}
.w3{width:15.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:56.800000pt;}
.x1e{left:80.639988pt;}
.x1{left:94.591988pt;}
.x27{left:112.671988pt;}
.x1f{left:118.431988pt;}
.x9{left:132.351988pt;}
.xf{left:141.786655pt;}
.x22{left:145.626655pt;}
.xd{left:172.186655pt;}
.x14{left:201.146655pt;}
.x18{left:232.986655pt;}
.x28{left:249.146655pt;}
.x4{left:268.546655pt;}
.x2c{left:272.066655pt;}
.x1d{left:297.186655pt;}
.xe{left:302.786655pt;}
.x15{left:305.986655pt;}
.x24{left:320.066655pt;}
.x25{left:345.026655pt;}
.x8{left:361.986655pt;}
.x7{left:366.626655pt;}
.x2e{left:375.426655pt;}
.x1c{left:377.986655pt;}
.x21{left:384.706655pt;}
.x19{left:392.226655pt;}
.x26{left:394.146655pt;}
.x10{left:397.986655pt;}
.x20{left:415.746655pt;}
.x2d{left:425.693322pt;}
.x5{left:473.853322pt;}
.x29{left:490.173322pt;}
.x23{left:500.413322pt;}
.x2b{left:540.733322pt;}
.x2f{left:559.933322pt;}
.xa{left:574.973322pt;}
.xb{left:591.493322pt;}
.x17{left:598.533322pt;}
.x3{left:602.693322pt;}
.x6{left:623.333322pt;}
.x13{left:648.773322pt;}
.x2a{left:679.333322pt;}
.x11{left:695.653322pt;}
.x16{left:697.573322pt;}
.x1a{left:699.333322pt;}
.x12{left:713.413322pt;}
.x2{left:728.133333pt;}
.xc{left:737.093322pt;}
}




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