
    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_39a0c44672823d500828a8a3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4e61ef03e80b1288643bb0c7.woff')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_bbafb2ca762b435dfb20d103.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8f5c49ff07d60261b9f67722.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')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_0911004199395acec046bdc8.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9259f3e767e0abcc7ed9057a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_4759fcb26572e155736f6e84.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_75d7e55a9d36da8e21925c09.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4ffc50ac17445d80e38cda8b.woff')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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.272400px;}
.ls9{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.576000px;}
.ls6{letter-spacing:1.440000px;}
.lsc{letter-spacing:6.480000px;}
.ls0{letter-spacing:7.200000px;}
.ls7{letter-spacing:9.360000px;}
.ls15{letter-spacing:11.700000px;}
.ls11{letter-spacing:12.960000px;}
.ls16{letter-spacing:14.376000px;}
.lse{letter-spacing:15.294240px;}
.lsd{letter-spacing:15.840000px;}
.ls14{letter-spacing:18.720000px;}
.ls2{letter-spacing:20.880000px;}
.ls1{letter-spacing:25.200000px;}
.lsb{letter-spacing:31.104000px;}
.ls17{letter-spacing:33.984000px;}
.ls4{letter-spacing:54.864000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws3{word-spacing:-18.576000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws5{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.505760px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-5.256000px;}
._17{margin-left:-4.248000px;}
._6{margin-left:-3.096000px;}
._8{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._b{width:2.376000px;}
._c{width:3.456000px;}
._a{width:4.752000px;}
._2{width:6.480000px;}
._3{width:7.632000px;}
._f{width:9.000000px;}
._10{width:10.512000px;}
._1e{width:11.808000px;}
._d{width:13.320000px;}
._e{width:14.472000px;}
._4{width:15.624000px;}
._5{width:16.632000px;}
._7{width:19.296000px;}
._14{width:20.448000px;}
._18{width:21.960000px;}
._19{width:23.112000px;}
._1c{width:24.120000px;}
._13{width:25.176000px;}
._21{width:26.280000px;}
._15{width:27.432000px;}
._16{width:28.584000px;}
._1a{width:29.952000px;}
._1b{width:30.972000px;}
._1f{width:33.048000px;}
._20{width:34.704000px;}
._24{width:35.784000px;}
._9{width:37.224000px;}
._11{width:39.312000px;}
._12{width:40.596000px;}
._25{width:45.372000px;}
._22{width:46.728000px;}
._23{width:57.960000px;}
._26{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y89{bottom:99.576000px;}
.yb2{bottom:100.296000px;}
.y97{bottom:104.796000px;}
.yb1{bottom:105.516000px;}
.y58{bottom:106.416000px;}
.y2e{bottom:112.176000px;}
.y88{bottom:116.856000px;}
.yc8{bottom:117.576000px;}
.ye5{bottom:118.116000px;}
.yb0{bottom:120.996000px;}
.y87{bottom:122.076000px;}
.yc7{bottom:122.796000px;}
.yaf{bottom:126.216000px;}
.y57{bottom:127.116000px;}
.y2d{bottom:132.876000px;}
.y86{bottom:134.136000px;}
.yc6{bottom:135.936000px;}
.y96{bottom:139.356000px;}
.yc5{bottom:141.156000px;}
.ye4{bottom:142.596000px;}
.yae{bottom:146.196000px;}
.y56{bottom:147.816000px;}
.y85{bottom:151.410000px;}
.y95{bottom:152.130000px;}
.ye8{bottom:152.850000px;}
.y2c{bottom:153.570000px;}
.yc4{bottom:154.290000px;}
.y84{bottom:156.630000px;}
.yc3{bottom:159.510000px;}
.yad{bottom:160.050000px;}
.ye3{bottom:163.290000px;}
.y55{bottom:168.510000px;}
.y83{bottom:168.690000px;}
.y94{bottom:170.490000px;}
.yc2{bottom:172.470000px;}
.ye7{bottom:173.550000px;}
.ydf{bottom:173.910000px;}
.y2b{bottom:174.270000px;}
.y93{bottom:175.710000px;}
.yc1{bottom:177.690000px;}
.yac{bottom:180.750000px;}
.ye2{bottom:183.990000px;}
.y82{bottom:185.970000px;}
.yde{bottom:187.230000px;}
.yab{bottom:187.590000px;}
.y54{bottom:189.210000px;}
.yc0{bottom:190.110000px;}
.y81{bottom:191.190000px;}
.ye6{bottom:194.250000px;}
.y2a{bottom:194.970000px;}
.yaa{bottom:201.990000px;}
.y80{bottom:203.070000px;}
.ye1{bottom:204.690000px;}
.ybf{bottom:208.110000px;}
.y53{bottom:209.910000px;}
.ybe{bottom:213.330000px;}
.y92{bottom:214.950000px;}
.y29{bottom:215.670000px;}
.y7f{bottom:220.350000px;}
.ydd{bottom:225.390000px;}
.ybd{bottom:228.090000px;}
.y52{bottom:230.610000px;}
.y91{bottom:235.650000px;}
.y28{bottom:236.370000px;}
.y7e{bottom:237.630000px;}
.y7d{bottom:242.850000px;}
.ybc{bottom:246.090000px;}
.y51{bottom:251.310000px;}
.y7c{bottom:256.170000px;}
.y90{bottom:256.350000px;}
.y27{bottom:257.070000px;}
.ybb{bottom:264.990000px;}
.ydb{bottom:266.790000px;}
.y50{bottom:272.010000px;}
.ydc{bottom:273.630000px;}
.y8f{bottom:277.050000px;}
.y26{bottom:277.770000px;}
.y7b{bottom:285.510000px;}
.yda{bottom:287.490000px;}
.y4f{bottom:292.755000px;}
.y7a{bottom:295.995000px;}
.y8e{bottom:297.795000px;}
.y25{bottom:298.515000px;}
.yba{bottom:304.635000px;}
.y79{bottom:306.255000px;}
.yd9{bottom:308.235000px;}
.y4e{bottom:313.455000px;}
.y78{bottom:316.695000px;}
.y8d{bottom:318.495000px;}
.y24{bottom:319.215000px;}
.y77{bottom:326.955000px;}
.yd8{bottom:328.935000px;}
.y4d{bottom:334.155000px;}
.y76{bottom:339.195000px;}
.y23{bottom:339.915000px;}
.y8c{bottom:346.035000px;}
.yd7{bottom:349.635000px;}
.y4c{bottom:352.875000px;}
.y75{bottom:359.895000px;}
.y22{bottom:360.615000px;}
.y4b{bottom:365.115000px;}
.yd6{bottom:370.335000px;}
.y74{bottom:380.595000px;}
.y21{bottom:381.315000px;}
.y4a{bottom:385.815000px;}
.yd5{bottom:391.035000px;}
.y20{bottom:400.035000px;}
.y73{bottom:401.295000px;}
.y49{bottom:406.515000px;}
.ya9{bottom:408.135000px;}
.yd4{bottom:411.735000px;}
.y1f{bottom:412.275000px;}
.y72{bottom:421.995000px;}
.y48{bottom:427.215000px;}
.yb9{bottom:428.835000px;}
.yd3{bottom:432.435000px;}
.y1e{bottom:432.975000px;}
.y70{bottom:442.695000px;}
.y47{bottom:447.915000px;}
.y71{bottom:448.635000px;}
.yd2{bottom:453.135000px;}
.y1d{bottom:453.675000px;}
.y6e{bottom:463.395000px;}
.y46{bottom:468.615000px;}
.y6f{bottom:469.335000px;}
.ye0{bottom:471.855000px;}
.yd0{bottom:473.835000px;}
.y1c{bottom:474.375000px;}
.yd1{bottom:480.675000px;}
.y6d{bottom:484.095000px;}
.y45{bottom:489.315000px;}
.y8b{bottom:490.935000px;}
.ycf{bottom:494.535000px;}
.y1b{bottom:495.075000px;}
.y6c{bottom:504.795000px;}
.y44{bottom:510.015000px;}
.yce{bottom:515.235000px;}
.y1a{bottom:515.775000px;}
.ya8{bottom:523.725000px;}
.y6b{bottom:525.525000px;}
.y43{bottom:530.745000px;}
.ya7{bottom:535.965000px;}
.y19{bottom:536.505000px;}
.y6a{bottom:546.225000px;}
.y42{bottom:549.645000px;}
.yb8{bottom:553.065000px;}
.ya6{bottom:556.665000px;}
.y18{bottom:557.205000px;}
.y41{bottom:561.885000px;}
.y69{bottom:566.925000px;}
.ya5{bottom:577.365000px;}
.y17{bottom:577.905000px;}
.y40{bottom:582.585000px;}
.y68{bottom:587.625000px;}
.ya3{bottom:598.065000px;}
.y16{bottom:598.605000px;}
.y3f{bottom:603.285000px;}
.ya4{bottom:604.905000px;}
.yb7{bottom:606.525000px;}
.y67{bottom:608.325000px;}
.ya2{bottom:618.765000px;}
.y15{bottom:619.305000px;}
.y3e{bottom:623.985000px;}
.y66{bottom:629.025000px;}
.y8a{bottom:635.865000px;}
.ya1{bottom:639.465000px;}
.y14{bottom:640.005000px;}
.y3d{bottom:644.685000px;}
.yb6{bottom:646.305000px;}
.y65{bottom:649.725000px;}
.ya0{bottom:660.165000px;}
.y13{bottom:660.705000px;}
.y3c{bottom:665.385000px;}
.y64{bottom:670.425000px;}
.y9f{bottom:680.865000px;}
.y12{bottom:681.405000px;}
.y3b{bottom:686.085000px;}
.ycd{bottom:687.705000px;}
.y63{bottom:691.125000px;}
.yb5{bottom:699.585000px;}
.y9e{bottom:701.565000px;}
.y11{bottom:702.105000px;}
.y3a{bottom:706.785000px;}
.y62{bottom:711.825000px;}
.y9d{bottom:722.265000px;}
.y10{bottom:722.805000px;}
.y39{bottom:727.305000px;}
.y61{bottom:732.525000px;}
.y9c{bottom:742.965000px;}
.yf{bottom:743.505000px;}
.y38{bottom:748.005000px;}
.y60{bottom:753.225000px;}
.y9b{bottom:763.710000px;}
.ye{bottom:764.250000px;}
.y37{bottom:768.930000px;}
.y5f{bottom:773.970000px;}
.y9a{bottom:782.430000px;}
.ycc{bottom:784.410000px;}
.yd{bottom:784.950000px;}
.y36{bottom:790.890000px;}
.y5e{bottom:794.670000px;}
.yc{bottom:803.670000px;}
.ycb{bottom:805.110000px;}
.y35{bottom:811.590000px;}
.y5d{bottom:815.370000px;}
.yb{bottom:820.950000px;}
.yca{bottom:823.830000px;}
.y34{bottom:832.290000px;}
.y5c{bottom:836.070000px;}
.ya{bottom:841.650000px;}
.y99{bottom:842.910000px;}
.y33{bottom:854.250000px;}
.y5b{bottom:856.770000px;}
.y9{bottom:860.370000px;}
.yb4{bottom:863.610000px;}
.y8{bottom:872.610000px;}
.y32{bottom:874.950000px;}
.y5a{bottom:877.470000px;}
.y7{bottom:893.310000px;}
.y31{bottom:895.650000px;}
.y59{bottom:898.170000px;}
.yc9{bottom:905.010000px;}
.y30{bottom:917.610000px;}
.y6{bottom:918.870000px;}
.y2f{bottom:938.310000px;}
.y5{bottom:939.570000px;}
.y4{bottom:960.270000px;}
.y98{bottom:967.110000px;}
.y3{bottom:980.970000px;}
.yb3{bottom:987.840000px;}
.h5{height:25.400391px;}
.h6{height:34.036523px;}
.h8{height:34.855313px;}
.he{height:38.671172px;}
.hb{height:43.246406px;}
.h3{height:50.800781px;}
.h9{height:53.573906px;}
.hd{height:59.343750px;}
.hf{height:59.439023px;}
.hc{height:61.189805px;}
.h4{height:64.546875px;}
.h7{height:65.884219px;}
.h2{height:67.824844px;}
.ha{height:70.606406px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w3{width:773.819977px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x4{left:95.255988px;}
.x14{left:99.935988px;}
.x24{left:101.195988px;}
.x1b{left:102.275988px;}
.x25{left:104.795988px;}
.x8{left:117.035988px;}
.xa{left:119.015988px;}
.xb{left:122.075988px;}
.xc{left:149.075988px;}
.x5{left:167.249988px;}
.x17{left:184.529977px;}
.x28{left:189.029977px;}
.x18{left:191.729988px;}
.x29{left:203.789988px;}
.x33{left:222.689977px;}
.x1c{left:228.629977px;}
.x1d{left:234.749988px;}
.x34{left:236.189988px;}
.x6{left:248.654988px;}
.x2d{left:277.634977px;}
.x2b{left:279.614977px;}
.x2e{left:289.874988px;}
.x2c{left:291.854988px;}
.x35{left:302.294988px;}
.x9{left:308.234988px;}
.x7{left:311.654988px;}
.x11{left:320.474988px;}
.x3{left:330.914988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.x19{left:397.154977px;}
.x26{left:400.394977px;}
.x1a{left:403.274988px;}
.x27{left:412.664988px;}
.x2f{left:417.524977px;}
.x30{left:429.764988px;}
.x1e{left:458.204977px;}
.x1f{left:465.944988px;}
.xd{left:476.744977px;}
.xe{left:482.864988px;}
.x31{left:494.204977px;}
.x32{left:509.504988px;}
.x15{left:528.584977px;}
.x16{left:534.704988px;}
.x12{left:542.264977px;}
.x13{left:551.804988px;}
.x22{left:572.189977px;}
.x23{left:588.389988px;}
.x20{left:604.409977px;}
.x21{left:616.649988px;}
.x2a{left:666.689977px;}
.xf{left:672.809977px;}
.x10{left:678.929988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.242133pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls6{letter-spacing:1.280000pt;}
.lsc{letter-spacing:5.760000pt;}
.ls0{letter-spacing:6.400000pt;}
.ls7{letter-spacing:8.320000pt;}
.ls15{letter-spacing:10.400000pt;}
.ls11{letter-spacing:11.520000pt;}
.ls16{letter-spacing:12.778667pt;}
.lse{letter-spacing:13.594880pt;}
.lsd{letter-spacing:14.080000pt;}
.ls14{letter-spacing:16.640000pt;}
.ls2{letter-spacing:18.560000pt;}
.ls1{letter-spacing:22.400000pt;}
.lsb{letter-spacing:27.648000pt;}
.ls17{letter-spacing:30.208000pt;}
.ls4{letter-spacing:48.768000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws3{word-spacing:-16.512000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws7{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-4.672000pt;}
._17{margin-left:-3.776000pt;}
._6{margin-left:-2.752000pt;}
._8{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._b{width:2.112000pt;}
._c{width:3.072000pt;}
._a{width:4.224000pt;}
._2{width:5.760000pt;}
._3{width:6.784000pt;}
._f{width:8.000000pt;}
._10{width:9.344000pt;}
._1e{width:10.496000pt;}
._d{width:11.840000pt;}
._e{width:12.864000pt;}
._4{width:13.888000pt;}
._5{width:14.784000pt;}
._7{width:17.152000pt;}
._14{width:18.176000pt;}
._18{width:19.520000pt;}
._19{width:20.544000pt;}
._1c{width:21.440000pt;}
._13{width:22.378667pt;}
._21{width:23.360000pt;}
._15{width:24.384000pt;}
._16{width:25.408000pt;}
._1a{width:26.624000pt;}
._1b{width:27.530667pt;}
._1f{width:29.376000pt;}
._20{width:30.848000pt;}
._24{width:31.808000pt;}
._9{width:33.088000pt;}
._11{width:34.944000pt;}
._12{width:36.085333pt;}
._25{width:40.330667pt;}
._22{width:41.536000pt;}
._23{width:51.520000pt;}
._26{width:752.138667pt;}
.fs2{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y89{bottom:88.512000pt;}
.yb2{bottom:89.152000pt;}
.y97{bottom:93.152000pt;}
.yb1{bottom:93.792000pt;}
.y58{bottom:94.592000pt;}
.y2e{bottom:99.712000pt;}
.y88{bottom:103.872000pt;}
.yc8{bottom:104.512000pt;}
.ye5{bottom:104.992000pt;}
.yb0{bottom:107.552000pt;}
.y87{bottom:108.512000pt;}
.yc7{bottom:109.152000pt;}
.yaf{bottom:112.192000pt;}
.y57{bottom:112.992000pt;}
.y2d{bottom:118.112000pt;}
.y86{bottom:119.232000pt;}
.yc6{bottom:120.832000pt;}
.y96{bottom:123.872000pt;}
.yc5{bottom:125.472000pt;}
.ye4{bottom:126.752000pt;}
.yae{bottom:129.952000pt;}
.y56{bottom:131.392000pt;}
.y85{bottom:134.586667pt;}
.y95{bottom:135.226667pt;}
.ye8{bottom:135.866667pt;}
.y2c{bottom:136.506667pt;}
.yc4{bottom:137.146667pt;}
.y84{bottom:139.226667pt;}
.yc3{bottom:141.786667pt;}
.yad{bottom:142.266667pt;}
.ye3{bottom:145.146667pt;}
.y55{bottom:149.786667pt;}
.y83{bottom:149.946667pt;}
.y94{bottom:151.546667pt;}
.yc2{bottom:153.306667pt;}
.ye7{bottom:154.266667pt;}
.ydf{bottom:154.586667pt;}
.y2b{bottom:154.906667pt;}
.y93{bottom:156.186667pt;}
.yc1{bottom:157.946667pt;}
.yac{bottom:160.666667pt;}
.ye2{bottom:163.546667pt;}
.y82{bottom:165.306667pt;}
.yde{bottom:166.426667pt;}
.yab{bottom:166.746667pt;}
.y54{bottom:168.186667pt;}
.yc0{bottom:168.986667pt;}
.y81{bottom:169.946667pt;}
.ye6{bottom:172.666667pt;}
.y2a{bottom:173.306667pt;}
.yaa{bottom:179.546667pt;}
.y80{bottom:180.506667pt;}
.ye1{bottom:181.946667pt;}
.ybf{bottom:184.986667pt;}
.y53{bottom:186.586667pt;}
.ybe{bottom:189.626667pt;}
.y92{bottom:191.066667pt;}
.y29{bottom:191.706667pt;}
.y7f{bottom:195.866667pt;}
.ydd{bottom:200.346667pt;}
.ybd{bottom:202.746667pt;}
.y52{bottom:204.986667pt;}
.y91{bottom:209.466667pt;}
.y28{bottom:210.106667pt;}
.y7e{bottom:211.226667pt;}
.y7d{bottom:215.866667pt;}
.ybc{bottom:218.746667pt;}
.y51{bottom:223.386667pt;}
.y7c{bottom:227.706667pt;}
.y90{bottom:227.866667pt;}
.y27{bottom:228.506667pt;}
.ybb{bottom:235.546667pt;}
.ydb{bottom:237.146667pt;}
.y50{bottom:241.786667pt;}
.ydc{bottom:243.226667pt;}
.y8f{bottom:246.266667pt;}
.y26{bottom:246.906667pt;}
.y7b{bottom:253.786667pt;}
.yda{bottom:255.546667pt;}
.y4f{bottom:260.226667pt;}
.y7a{bottom:263.106667pt;}
.y8e{bottom:264.706667pt;}
.y25{bottom:265.346667pt;}
.yba{bottom:270.786667pt;}
.y79{bottom:272.226667pt;}
.yd9{bottom:273.986667pt;}
.y4e{bottom:278.626667pt;}
.y78{bottom:281.506667pt;}
.y8d{bottom:283.106667pt;}
.y24{bottom:283.746667pt;}
.y77{bottom:290.626667pt;}
.yd8{bottom:292.386667pt;}
.y4d{bottom:297.026667pt;}
.y76{bottom:301.506667pt;}
.y23{bottom:302.146667pt;}
.y8c{bottom:307.586667pt;}
.yd7{bottom:310.786667pt;}
.y4c{bottom:313.666667pt;}
.y75{bottom:319.906667pt;}
.y22{bottom:320.546667pt;}
.y4b{bottom:324.546667pt;}
.yd6{bottom:329.186667pt;}
.y74{bottom:338.306667pt;}
.y21{bottom:338.946667pt;}
.y4a{bottom:342.946667pt;}
.yd5{bottom:347.586667pt;}
.y20{bottom:355.586667pt;}
.y73{bottom:356.706667pt;}
.y49{bottom:361.346667pt;}
.ya9{bottom:362.786667pt;}
.yd4{bottom:365.986667pt;}
.y1f{bottom:366.466667pt;}
.y72{bottom:375.106667pt;}
.y48{bottom:379.746667pt;}
.yb9{bottom:381.186667pt;}
.yd3{bottom:384.386667pt;}
.y1e{bottom:384.866667pt;}
.y70{bottom:393.506667pt;}
.y47{bottom:398.146667pt;}
.y71{bottom:398.786667pt;}
.yd2{bottom:402.786667pt;}
.y1d{bottom:403.266667pt;}
.y6e{bottom:411.906667pt;}
.y46{bottom:416.546667pt;}
.y6f{bottom:417.186667pt;}
.ye0{bottom:419.426667pt;}
.yd0{bottom:421.186667pt;}
.y1c{bottom:421.666667pt;}
.yd1{bottom:427.266667pt;}
.y6d{bottom:430.306667pt;}
.y45{bottom:434.946667pt;}
.y8b{bottom:436.386667pt;}
.ycf{bottom:439.586667pt;}
.y1b{bottom:440.066667pt;}
.y6c{bottom:448.706667pt;}
.y44{bottom:453.346667pt;}
.yce{bottom:457.986667pt;}
.y1a{bottom:458.466667pt;}
.ya8{bottom:465.533333pt;}
.y6b{bottom:467.133333pt;}
.y43{bottom:471.773333pt;}
.ya7{bottom:476.413333pt;}
.y19{bottom:476.893333pt;}
.y6a{bottom:485.533333pt;}
.y42{bottom:488.573333pt;}
.yb8{bottom:491.613333pt;}
.ya6{bottom:494.813333pt;}
.y18{bottom:495.293333pt;}
.y41{bottom:499.453333pt;}
.y69{bottom:503.933333pt;}
.ya5{bottom:513.213333pt;}
.y17{bottom:513.693333pt;}
.y40{bottom:517.853333pt;}
.y68{bottom:522.333333pt;}
.ya3{bottom:531.613333pt;}
.y16{bottom:532.093333pt;}
.y3f{bottom:536.253333pt;}
.ya4{bottom:537.693333pt;}
.yb7{bottom:539.133333pt;}
.y67{bottom:540.733333pt;}
.ya2{bottom:550.013333pt;}
.y15{bottom:550.493333pt;}
.y3e{bottom:554.653333pt;}
.y66{bottom:559.133333pt;}
.y8a{bottom:565.213333pt;}
.ya1{bottom:568.413333pt;}
.y14{bottom:568.893333pt;}
.y3d{bottom:573.053333pt;}
.yb6{bottom:574.493333pt;}
.y65{bottom:577.533333pt;}
.ya0{bottom:586.813333pt;}
.y13{bottom:587.293333pt;}
.y3c{bottom:591.453333pt;}
.y64{bottom:595.933333pt;}
.y9f{bottom:605.213333pt;}
.y12{bottom:605.693333pt;}
.y3b{bottom:609.853333pt;}
.ycd{bottom:611.293333pt;}
.y63{bottom:614.333333pt;}
.yb5{bottom:621.853333pt;}
.y9e{bottom:623.613333pt;}
.y11{bottom:624.093333pt;}
.y3a{bottom:628.253333pt;}
.y62{bottom:632.733333pt;}
.y9d{bottom:642.013333pt;}
.y10{bottom:642.493333pt;}
.y39{bottom:646.493333pt;}
.y61{bottom:651.133333pt;}
.y9c{bottom:660.413333pt;}
.yf{bottom:660.893333pt;}
.y38{bottom:664.893333pt;}
.y60{bottom:669.533333pt;}
.y9b{bottom:678.853333pt;}
.ye{bottom:679.333333pt;}
.y37{bottom:683.493333pt;}
.y5f{bottom:687.973333pt;}
.y9a{bottom:695.493333pt;}
.ycc{bottom:697.253333pt;}
.yd{bottom:697.733333pt;}
.y36{bottom:703.013333pt;}
.y5e{bottom:706.373333pt;}
.yc{bottom:714.373333pt;}
.ycb{bottom:715.653333pt;}
.y35{bottom:721.413333pt;}
.y5d{bottom:724.773333pt;}
.yb{bottom:729.733333pt;}
.yca{bottom:732.293333pt;}
.y34{bottom:739.813333pt;}
.y5c{bottom:743.173333pt;}
.ya{bottom:748.133333pt;}
.y99{bottom:749.253333pt;}
.y33{bottom:759.333333pt;}
.y5b{bottom:761.573333pt;}
.y9{bottom:764.773333pt;}
.yb4{bottom:767.653333pt;}
.y8{bottom:775.653333pt;}
.y32{bottom:777.733333pt;}
.y5a{bottom:779.973333pt;}
.y7{bottom:794.053333pt;}
.y31{bottom:796.133333pt;}
.y59{bottom:798.373333pt;}
.yc9{bottom:804.453333pt;}
.y30{bottom:815.653333pt;}
.y6{bottom:816.773333pt;}
.y2f{bottom:834.053333pt;}
.y5{bottom:835.173333pt;}
.y4{bottom:853.573333pt;}
.y98{bottom:859.653333pt;}
.y3{bottom:871.973333pt;}
.yb3{bottom:878.080000pt;}
.h5{height:22.578125pt;}
.h6{height:30.254687pt;}
.h8{height:30.982500pt;}
.he{height:34.374375pt;}
.hb{height:38.441250pt;}
.h3{height:45.156250pt;}
.h9{height:47.621250pt;}
.hd{height:52.750000pt;}
.hf{height:52.834688pt;}
.hc{height:54.390938pt;}
.h4{height:57.375000pt;}
.h7{height:58.563750pt;}
.h2{height:60.288750pt;}
.ha{height:62.761250pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w3{width:687.839979pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x4{left:84.671990pt;}
.x14{left:88.831990pt;}
.x24{left:89.951990pt;}
.x1b{left:90.911990pt;}
.x25{left:93.151990pt;}
.x8{left:104.031990pt;}
.xa{left:105.791990pt;}
.xb{left:108.511990pt;}
.xc{left:132.511990pt;}
.x5{left:148.666656pt;}
.x17{left:164.026646pt;}
.x28{left:168.026646pt;}
.x18{left:170.426656pt;}
.x29{left:181.146656pt;}
.x33{left:197.946646pt;}
.x1c{left:203.226646pt;}
.x1d{left:208.666656pt;}
.x34{left:209.946656pt;}
.x6{left:221.026656pt;}
.x2d{left:246.786646pt;}
.x2b{left:248.546646pt;}
.x2e{left:257.666656pt;}
.x2c{left:259.426656pt;}
.x35{left:268.706656pt;}
.x9{left:273.986656pt;}
.x7{left:277.026656pt;}
.x11{left:284.866656pt;}
.x3{left:294.146656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.x19{left:353.026646pt;}
.x26{left:355.906646pt;}
.x1a{left:358.466656pt;}
.x27{left:366.813323pt;}
.x2f{left:371.133313pt;}
.x30{left:382.013323pt;}
.x1e{left:407.293313pt;}
.x1f{left:414.173323pt;}
.xd{left:423.773313pt;}
.xe{left:429.213323pt;}
.x31{left:439.293313pt;}
.x32{left:452.893323pt;}
.x15{left:469.853313pt;}
.x16{left:475.293323pt;}
.x12{left:482.013313pt;}
.x13{left:490.493323pt;}
.x22{left:508.613313pt;}
.x23{left:523.013323pt;}
.x20{left:537.253313pt;}
.x21{left:548.133323pt;}
.x2a{left:592.613313pt;}
.xf{left:598.053313pt;}
.x10{left:603.493323pt;}
}




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