
    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_16ea1bb33e564b7d49e22c39.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1bba5c0461352722bb47d665.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_07244d3d098b9341106b1331.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_82497f01d0441840d8de6265.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ae6037e22236f7fd9ae98334.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123047;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7633cf1acd613977de430fe4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_22a1e3fab7c8293c18d1df33.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-69.300000px;}
.v2{vertical-align:-63.360000px;}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-1.998000px;}
.ls28{letter-spacing:-1.914000px;}
.ls20{letter-spacing:-1.440000px;}
.ls2c{letter-spacing:-1.254000px;}
.ls13{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.492600px;}
.ls14{letter-spacing:-0.486600px;}
.ls2a{letter-spacing:-0.475200px;}
.ls8{letter-spacing:-0.466800px;}
.ls25{letter-spacing:-0.276600px;}
.ls7{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.012000px;}
.lse{letter-spacing:0.020160px;}
.ls16{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.172800px;}
.ls17{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.380400px;}
.ls10{letter-spacing:0.466800px;}
.ls1{letter-spacing:0.486720px;}
.ls19{letter-spacing:0.507000px;}
.ls29{letter-spacing:0.630000px;}
.ls2{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.440000px;}
.ls12{letter-spacing:1.458000px;}
.ls1c{letter-spacing:2.160000px;}
.ls22{letter-spacing:3.600000px;}
.ls1b{letter-spacing:5.040000px;}
.ls1e{letter-spacing:6.480000px;}
.ls3{letter-spacing:9.360000px;}
.ls4{letter-spacing:13.680000px;}
.lsf{letter-spacing:19.440000px;}
.lsc{letter-spacing:22.320000px;}
.lsa{letter-spacing:36.720000px;}
.lsb{letter-spacing:62.640000px;}
.ls5{letter-spacing:154.944000px;}
.ls1d{letter-spacing:163.198560px;}
.ls21{letter-spacing:163.318560px;}
.ls1a{letter-spacing:193.438560px;}
.ls0{letter-spacing:783.096000px;}
.ls24{letter-spacing:1091.376000px;}
.ls23{letter-spacing:1151.976000px;}
.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;}
}
.ws4{word-spacing:-60.480000px;}
.ws5{word-spacing:-16.578000px;}
.ws8{word-spacing:-15.627000px;}
.ws0{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.843400px;}
.ws1{word-spacing:-14.653200px;}
.ws7{word-spacing:-14.633400px;}
.wsd{word-spacing:-14.310000px;}
.ws6{word-spacing:-14.148000px;}
.ws2{word-spacing:-13.680000px;}
.wse{word-spacing:-13.204800px;}
.wsb{word-spacing:-13.187400px;}
.wsf{word-spacing:-12.870000px;}
.ws10{word-spacing:-12.426000px;}
.wsa{word-spacing:-12.240000px;}
.wsc{word-spacing:-11.766000px;}
.ws3{word-spacing:0.000000px;}
._26{margin-left:-16.093440px;}
._2b{margin-left:-7.113600px;}
._31{margin-left:-5.798160px;}
._e{margin-left:-3.702480px;}
._2{margin-left:-2.550960px;}
._0{margin-left:-1.088640px;}
._1{width:1.313280px;}
._a{width:2.477520px;}
._9{width:3.959280px;}
._b{width:5.279040px;}
._4{width:7.028880px;}
._3{width:8.103120px;}
._5{width:9.748080px;}
._6{width:10.861920px;}
._c{width:12.450240px;}
._d{width:13.510080px;}
._20{width:17.139840px;}
._1a{width:18.539760px;}
._17{width:19.849680px;}
._13{width:21.850560px;}
._12{width:23.373360px;}
._f{width:25.401600px;}
._10{width:26.809920px;}
._11{width:28.662480px;}
._1f{width:29.782800px;}
._7{width:30.905280px;}
._8{width:32.604240px;}
._25{width:33.863280px;}
._14{width:34.896960px;}
._16{width:36.475920px;}
._15{width:37.586160px;}
._1b{width:39.098160px;}
._27{width:40.192560px;}
._1c{width:41.325840px;}
._1d{width:43.545600px;}
._1e{width:44.754480px;}
._23{width:47.718720px;}
._24{width:49.088160px;}
._2d{width:51.055920px;}
._2e{width:52.223280px;}
._19{width:61.112880px;}
._18{width:62.596800px;}
._2f{width:82.010880px;}
._30{width:83.779680px;}
._22{width:100.044720px;}
._32{width:104.544000px;}
._33{width:105.989280px;}
._35{width:120.751680px;}
._34{width:122.214960px;}
._2a{width:156.126960px;}
._28{width:157.688640px;}
._29{width:160.036800px;}
._2c{width:166.803840px;}
._21{width:1184.898960px;}
.fc4{color:rgb(16,0,12);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y71{bottom:3.240000px;}
.y74{bottom:3.600000px;}
.y72{bottom:11.880000px;}
.y79{bottom:12.240000px;}
.y70{bottom:20.520000px;}
.y77{bottom:20.880000px;}
.y7d{bottom:20.910000px;}
.y81{bottom:20.925000px;}
.y2{bottom:24.480000px;}
.y76{bottom:38.160000px;}
.y1{bottom:65.520000px;}
.yae{bottom:105.120000px;}
.y37{bottom:108.720000px;}
.y91{bottom:112.716000px;}
.y6e{bottom:113.436000px;}
.yc3{bottom:116.676000px;}
.yad{bottom:122.436000px;}
.y36{bottom:124.596000px;}
.y90{bottom:129.996000px;}
.y6d{bottom:130.716000px;}
.yc2{bottom:133.956000px;}
.yac{bottom:139.716000px;}
.y35{bottom:140.076000px;}
.y8f{bottom:147.276000px;}
.y6c{bottom:147.996000px;}
.yc1{bottom:151.230000px;}
.yab{bottom:156.990000px;}
.y34{bottom:157.350000px;}
.y8e{bottom:164.190000px;}
.yb2{bottom:164.910000px;}
.y6b{bottom:165.270000px;}
.yc0{bottom:168.510000px;}
.yaa{bottom:174.270000px;}
.y8d{bottom:181.470000px;}
.yb0{bottom:181.830000px;}
.y6a{bottom:182.190000px;}
.ybf{bottom:185.790000px;}
.y33{bottom:191.550000px;}
.y8c{bottom:198.750000px;}
.y69{bottom:199.470000px;}
.ybe{bottom:203.070000px;}
.ya9{bottom:208.470000px;}
.y32{bottom:209.190000px;}
.y8b{bottom:216.030000px;}
.y68{bottom:216.750000px;}
.ybd{bottom:220.395000px;}
.ya8{bottom:225.795000px;}
.y31{bottom:226.515000px;}
.y8a{bottom:233.355000px;}
.y67{bottom:234.075000px;}
.ybc{bottom:237.675000px;}
.ya7{bottom:243.075000px;}
.y30{bottom:243.795000px;}
.y89{bottom:250.635000px;}
.y66{bottom:251.355000px;}
.ybb{bottom:254.955000px;}
.ya6{bottom:260.355000px;}
.y2f{bottom:261.075000px;}
.y88{bottom:267.915000px;}
.y65{bottom:268.635000px;}
.yba{bottom:272.235000px;}
.ya5{bottom:277.635000px;}
.y2e{bottom:278.355000px;}
.y87{bottom:285.195000px;}
.y64{bottom:285.915000px;}
.yb9{bottom:289.515000px;}
.ya4{bottom:294.915000px;}
.y2d{bottom:295.635000px;}
.y86{bottom:302.475000px;}
.y63{bottom:303.195000px;}
.ya3{bottom:312.195000px;}
.y2c{bottom:312.915000px;}
.y85{bottom:319.755000px;}
.yaf{bottom:320.115000px;}
.y62{bottom:320.475000px;}
.yb8{bottom:323.745000px;}
.ya2{bottom:329.505000px;}
.y2b{bottom:330.225000px;}
.y84{bottom:337.065000px;}
.y61{bottom:337.785000px;}
.yb7{bottom:340.665000px;}
.ya1{bottom:346.785000px;}
.y2a{bottom:347.505000px;}
.y83{bottom:353.985000px;}
.y60{bottom:355.065000px;}
.ya0{bottom:364.065000px;}
.y29{bottom:364.425000px;}
.y5f{bottom:371.985000px;}
.y82{bottom:372.705000px;}
.y9f{bottom:381.345000px;}
.y28{bottom:381.705000px;}
.y5e{bottom:389.265000px;}
.y9e{bottom:398.265000px;}
.y27{bottom:398.985000px;}
.yb6{bottom:406.185000px;}
.y5d{bottom:406.545000px;}
.y80{bottom:413.025000px;}
.y9d{bottom:415.545000px;}
.y26{bottom:416.265000px;}
.y5c{bottom:423.825000px;}
.y9c{bottom:432.870000px;}
.y25{bottom:433.590000px;}
.yb5{bottom:440.790000px;}
.y5b{bottom:441.150000px;}
.y9b{bottom:450.150000px;}
.y24{bottom:450.870000px;}
.y7f{bottom:453.750000px;}
.y5a{bottom:458.430000px;}
.y9a{bottom:467.430000px;}
.y23{bottom:468.150000px;}
.y59{bottom:475.710000px;}
.y7e{bottom:477.150000px;}
.y99{bottom:484.710000px;}
.y22{bottom:485.430000px;}
.y58{bottom:492.990000px;}
.y98{bottom:501.990000px;}
.y21{bottom:502.710000px;}
.y57{bottom:510.270000px;}
.y7c{bottom:517.470000px;}
.y97{bottom:519.270000px;}
.y20{bottom:519.990000px;}
.y56{bottom:527.550000px;}
.y96{bottom:536.580000px;}
.y1f{bottom:537.300000px;}
.y55{bottom:544.860000px;}
.y95{bottom:553.860000px;}
.y1e{bottom:554.220000px;}
.y7b{bottom:557.820000px;}
.y54{bottom:562.140000px;}
.y94{bottom:571.140000px;}
.y1d{bottom:571.500000px;}
.yb4{bottom:578.700000px;}
.y53{bottom:579.060000px;}
.y93{bottom:588.420000px;}
.y1c{bottom:588.780000px;}
.y52{bottom:596.340000px;}
.y92{bottom:602.100000px;}
.y1b{bottom:606.060000px;}
.y51{bottom:613.620000px;}
.y7a{bottom:615.780000px;}
.y1a{bottom:623.340000px;}
.y50{bottom:630.900000px;}
.y78{bottom:638.850000px;}
.y19{bottom:640.650000px;}
.y4f{bottom:648.210000px;}
.y18{bottom:657.930000px;}
.y4e{bottom:665.490000px;}
.y17{bottom:675.210000px;}
.y75{bottom:679.530000px;}
.y4d{bottom:682.770000px;}
.y16{bottom:692.490000px;}
.y4c{bottom:700.050000px;}
.y15{bottom:709.770000px;}
.y4b{bottom:717.330000px;}
.y14{bottom:727.050000px;}
.y4a{bottom:734.610000px;}
.y73{bottom:737.130000px;}
.y13{bottom:744.375000px;}
.y49{bottom:751.935000px;}
.y6f{bottom:760.575000px;}
.y12{bottom:761.295000px;}
.yb3{bottom:768.495000px;}
.y48{bottom:768.855000px;}
.y11{bottom:778.575000px;}
.y47{bottom:786.135000px;}
.y10{bottom:795.495000px;}
.y46{bottom:803.415000px;}
.yf{bottom:811.335000px;}
.y45{bottom:820.695000px;}
.ye{bottom:826.455000px;}
.y44{bottom:837.975000px;}
.yd{bottom:842.655000px;}
.y43{bottom:855.285000px;}
.yc{bottom:859.965000px;}
.y42{bottom:872.565000px;}
.yb{bottom:876.885000px;}
.y41{bottom:889.845000px;}
.ya{bottom:893.805000px;}
.y40{bottom:907.125000px;}
.y9{bottom:911.085000px;}
.y3f{bottom:924.405000px;}
.y8{bottom:928.725000px;}
.y3e{bottom:941.685000px;}
.y3d{bottom:959.010000px;}
.y7{bottom:963.330000px;}
.y3c{bottom:975.930000px;}
.y6{bottom:980.610000px;}
.yb1{bottom:992.850000px;}
.y3b{bottom:993.210000px;}
.y5{bottom:997.890000px;}
.y3a{bottom:1010.490000px;}
.y4{bottom:1015.170000px;}
.y39{bottom:1027.770000px;}
.y3{bottom:1036.770000px;}
.y38{bottom:1045.050000px;}
.hb{height:17.280000px;}
.h9{height:17.316000px;}
.hd{height:34.200000px;}
.h8{height:34.560000px;}
.hc{height:34.596000px;}
.ha{height:51.840000px;}
.h6{height:53.704687px;}
.h7{height:54.219375px;}
.h5{height:55.147500px;}
.h10{height:59.328281px;}
.h2{height:59.357813px;}
.h4{height:60.952500px;}
.hf{height:62.163910px;}
.h3{height:70.664062px;}
.he{height:81.970312px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w5{width:62.316000px;}
.w4{width:78.156000px;}
.w7{width:81.396000px;}
.w8{width:101.592000px;}
.w6{width:114.192000px;}
.w3{width:126.792000px;}
.w9{width:274.830000px;}
.wa{width:304.380000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:1.080000px;}
.x19{left:2.520000px;}
.x1b{left:5.040000px;}
.x14{left:15.510000px;}
.x16{left:20.190000px;}
.x17{left:23.430000px;}
.xf{left:26.676000px;}
.x10{left:29.556000px;}
.xd{left:51.155989px;}
.x4{left:76.715989px;}
.xe{left:86.076000px;}
.xc{left:93.635989px;}
.x2{left:119.231989px;}
.xa{left:129.671989px;}
.x6{left:175.424989px;}
.x1e{left:209.624989px;}
.x11{left:216.825000px;}
.x7{left:247.109989px;}
.x8{left:262.949989px;}
.x3{left:287.069989px;}
.x13{left:298.590000px;}
.xb{left:341.459989px;}
.x15{left:364.860000px;}
.x1{left:367.019989px;}
.x1f{left:370.259989px;}
.x5{left:374.609989px;}
.x9{left:395.849989px;}
.x18{left:482.655000px;}
.x1d{left:520.844989px;}
.x1a{left:567.645000px;}
.x1c{left:672.479989px;}
@media print{
.v1{vertical-align:-61.600000pt;}
.v2{vertical-align:-56.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-1.776000pt;}
.ls28{letter-spacing:-1.701333pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls2c{letter-spacing:-1.114667pt;}
.ls13{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.437867pt;}
.ls14{letter-spacing:-0.432533pt;}
.ls2a{letter-spacing:-0.422400pt;}
.ls8{letter-spacing:-0.414933pt;}
.ls25{letter-spacing:-0.245867pt;}
.ls7{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.017920pt;}
.ls16{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.153600pt;}
.ls17{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.338133pt;}
.ls10{letter-spacing:0.414933pt;}
.ls1{letter-spacing:0.432640pt;}
.ls19{letter-spacing:0.450667pt;}
.ls29{letter-spacing:0.560000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.296000pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls22{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:4.480000pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls3{letter-spacing:8.320000pt;}
.ls4{letter-spacing:12.160000pt;}
.lsf{letter-spacing:17.280000pt;}
.lsc{letter-spacing:19.840000pt;}
.lsa{letter-spacing:32.640000pt;}
.lsb{letter-spacing:55.680000pt;}
.ls5{letter-spacing:137.728000pt;}
.ls1d{letter-spacing:145.065387pt;}
.ls21{letter-spacing:145.172053pt;}
.ls1a{letter-spacing:171.945387pt;}
.ls0{letter-spacing:696.085333pt;}
.ls24{letter-spacing:970.112000pt;}
.ls23{letter-spacing:1023.978667pt;}
.ws4{word-spacing:-53.760000pt;}
.ws5{word-spacing:-14.736000pt;}
.ws8{word-spacing:-13.890667pt;}
.ws0{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.194133pt;}
.ws1{word-spacing:-13.025067pt;}
.ws7{word-spacing:-13.007467pt;}
.wsd{word-spacing:-12.720000pt;}
.ws6{word-spacing:-12.576000pt;}
.ws2{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.737600pt;}
.wsb{word-spacing:-11.722133pt;}
.wsf{word-spacing:-11.440000pt;}
.ws10{word-spacing:-11.045333pt;}
.wsa{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.458667pt;}
.ws3{word-spacing:0.000000pt;}
._26{margin-left:-14.305280pt;}
._2b{margin-left:-6.323200pt;}
._31{margin-left:-5.153920pt;}
._e{margin-left:-3.291093pt;}
._2{margin-left:-2.267520pt;}
._0{margin-left:-0.967680pt;}
._1{width:1.167360pt;}
._a{width:2.202240pt;}
._9{width:3.519360pt;}
._b{width:4.692480pt;}
._4{width:6.247893pt;}
._3{width:7.202773pt;}
._5{width:8.664960pt;}
._6{width:9.655040pt;}
._c{width:11.066880pt;}
._d{width:12.008960pt;}
._20{width:15.235413pt;}
._1a{width:16.479787pt;}
._17{width:17.644160pt;}
._13{width:19.422720pt;}
._12{width:20.776320pt;}
._f{width:22.579200pt;}
._10{width:23.831040pt;}
._11{width:25.477760pt;}
._1f{width:26.473600pt;}
._7{width:27.471360pt;}
._8{width:28.981547pt;}
._25{width:30.100693pt;}
._14{width:31.019520pt;}
._16{width:32.423040pt;}
._15{width:33.409920pt;}
._1b{width:34.753920pt;}
._27{width:35.726720pt;}
._1c{width:36.734080pt;}
._1d{width:38.707200pt;}
._1e{width:39.781760pt;}
._23{width:42.416640pt;}
._24{width:43.633920pt;}
._2d{width:45.383040pt;}
._2e{width:46.420693pt;}
._19{width:54.322560pt;}
._18{width:55.641600pt;}
._2f{width:72.898560pt;}
._30{width:74.470827pt;}
._22{width:88.928640pt;}
._32{width:92.928000pt;}
._33{width:94.212693pt;}
._35{width:107.334827pt;}
._34{width:108.635520pt;}
._2a{width:138.779520pt;}
._28{width:140.167680pt;}
._29{width:142.254933pt;}
._2c{width:148.270080pt;}
._21{width:1053.243520pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:2.880000pt;}
.y74{bottom:3.200000pt;}
.y72{bottom:10.560000pt;}
.y79{bottom:10.880000pt;}
.y70{bottom:18.240000pt;}
.y77{bottom:18.560000pt;}
.y7d{bottom:18.586667pt;}
.y81{bottom:18.600000pt;}
.y2{bottom:21.760000pt;}
.y76{bottom:33.920000pt;}
.y1{bottom:58.240000pt;}
.yae{bottom:93.440000pt;}
.y37{bottom:96.640000pt;}
.y91{bottom:100.192000pt;}
.y6e{bottom:100.832000pt;}
.yc3{bottom:103.712000pt;}
.yad{bottom:108.832000pt;}
.y36{bottom:110.752000pt;}
.y90{bottom:115.552000pt;}
.y6d{bottom:116.192000pt;}
.yc2{bottom:119.072000pt;}
.yac{bottom:124.192000pt;}
.y35{bottom:124.512000pt;}
.y8f{bottom:130.912000pt;}
.y6c{bottom:131.552000pt;}
.yc1{bottom:134.426667pt;}
.yab{bottom:139.546667pt;}
.y34{bottom:139.866667pt;}
.y8e{bottom:145.946667pt;}
.yb2{bottom:146.586667pt;}
.y6b{bottom:146.906667pt;}
.yc0{bottom:149.786667pt;}
.yaa{bottom:154.906667pt;}
.y8d{bottom:161.306667pt;}
.yb0{bottom:161.626667pt;}
.y6a{bottom:161.946667pt;}
.ybf{bottom:165.146667pt;}
.y33{bottom:170.266667pt;}
.y8c{bottom:176.666667pt;}
.y69{bottom:177.306667pt;}
.ybe{bottom:180.506667pt;}
.ya9{bottom:185.306667pt;}
.y32{bottom:185.946667pt;}
.y8b{bottom:192.026667pt;}
.y68{bottom:192.666667pt;}
.ybd{bottom:195.906667pt;}
.ya8{bottom:200.706667pt;}
.y31{bottom:201.346667pt;}
.y8a{bottom:207.426667pt;}
.y67{bottom:208.066667pt;}
.ybc{bottom:211.266667pt;}
.ya7{bottom:216.066667pt;}
.y30{bottom:216.706667pt;}
.y89{bottom:222.786667pt;}
.y66{bottom:223.426667pt;}
.ybb{bottom:226.626667pt;}
.ya6{bottom:231.426667pt;}
.y2f{bottom:232.066667pt;}
.y88{bottom:238.146667pt;}
.y65{bottom:238.786667pt;}
.yba{bottom:241.986667pt;}
.ya5{bottom:246.786667pt;}
.y2e{bottom:247.426667pt;}
.y87{bottom:253.506667pt;}
.y64{bottom:254.146667pt;}
.yb9{bottom:257.346667pt;}
.ya4{bottom:262.146667pt;}
.y2d{bottom:262.786667pt;}
.y86{bottom:268.866667pt;}
.y63{bottom:269.506667pt;}
.ya3{bottom:277.506667pt;}
.y2c{bottom:278.146667pt;}
.y85{bottom:284.226667pt;}
.yaf{bottom:284.546667pt;}
.y62{bottom:284.866667pt;}
.yb8{bottom:287.773333pt;}
.ya2{bottom:292.893333pt;}
.y2b{bottom:293.533333pt;}
.y84{bottom:299.613333pt;}
.y61{bottom:300.253333pt;}
.yb7{bottom:302.813333pt;}
.ya1{bottom:308.253333pt;}
.y2a{bottom:308.893333pt;}
.y83{bottom:314.653333pt;}
.y60{bottom:315.613333pt;}
.ya0{bottom:323.613333pt;}
.y29{bottom:323.933333pt;}
.y5f{bottom:330.653333pt;}
.y82{bottom:331.293333pt;}
.y9f{bottom:338.973333pt;}
.y28{bottom:339.293333pt;}
.y5e{bottom:346.013333pt;}
.y9e{bottom:354.013333pt;}
.y27{bottom:354.653333pt;}
.yb6{bottom:361.053333pt;}
.y5d{bottom:361.373333pt;}
.y80{bottom:367.133333pt;}
.y9d{bottom:369.373333pt;}
.y26{bottom:370.013333pt;}
.y5c{bottom:376.733333pt;}
.y9c{bottom:384.773333pt;}
.y25{bottom:385.413333pt;}
.yb5{bottom:391.813333pt;}
.y5b{bottom:392.133333pt;}
.y9b{bottom:400.133333pt;}
.y24{bottom:400.773333pt;}
.y7f{bottom:403.333333pt;}
.y5a{bottom:407.493333pt;}
.y9a{bottom:415.493333pt;}
.y23{bottom:416.133333pt;}
.y59{bottom:422.853333pt;}
.y7e{bottom:424.133333pt;}
.y99{bottom:430.853333pt;}
.y22{bottom:431.493333pt;}
.y58{bottom:438.213333pt;}
.y98{bottom:446.213333pt;}
.y21{bottom:446.853333pt;}
.y57{bottom:453.573333pt;}
.y7c{bottom:459.973333pt;}
.y97{bottom:461.573333pt;}
.y20{bottom:462.213333pt;}
.y56{bottom:468.933333pt;}
.y96{bottom:476.960000pt;}
.y1f{bottom:477.600000pt;}
.y55{bottom:484.320000pt;}
.y95{bottom:492.320000pt;}
.y1e{bottom:492.640000pt;}
.y7b{bottom:495.840000pt;}
.y54{bottom:499.680000pt;}
.y94{bottom:507.680000pt;}
.y1d{bottom:508.000000pt;}
.yb4{bottom:514.400000pt;}
.y53{bottom:514.720000pt;}
.y93{bottom:523.040000pt;}
.y1c{bottom:523.360000pt;}
.y52{bottom:530.080000pt;}
.y92{bottom:535.200000pt;}
.y1b{bottom:538.720000pt;}
.y51{bottom:545.440000pt;}
.y7a{bottom:547.360000pt;}
.y1a{bottom:554.080000pt;}
.y50{bottom:560.800000pt;}
.y78{bottom:567.866667pt;}
.y19{bottom:569.466667pt;}
.y4f{bottom:576.186667pt;}
.y18{bottom:584.826667pt;}
.y4e{bottom:591.546667pt;}
.y17{bottom:600.186667pt;}
.y75{bottom:604.026667pt;}
.y4d{bottom:606.906667pt;}
.y16{bottom:615.546667pt;}
.y4c{bottom:622.266667pt;}
.y15{bottom:630.906667pt;}
.y4b{bottom:637.626667pt;}
.y14{bottom:646.266667pt;}
.y4a{bottom:652.986667pt;}
.y73{bottom:655.226667pt;}
.y13{bottom:661.666667pt;}
.y49{bottom:668.386667pt;}
.y6f{bottom:676.066667pt;}
.y12{bottom:676.706667pt;}
.yb3{bottom:683.106667pt;}
.y48{bottom:683.426667pt;}
.y11{bottom:692.066667pt;}
.y47{bottom:698.786667pt;}
.y10{bottom:707.106667pt;}
.y46{bottom:714.146667pt;}
.yf{bottom:721.186667pt;}
.y45{bottom:729.506667pt;}
.ye{bottom:734.626667pt;}
.y44{bottom:744.866667pt;}
.yd{bottom:749.026667pt;}
.y43{bottom:760.253333pt;}
.yc{bottom:764.413333pt;}
.y42{bottom:775.613333pt;}
.yb{bottom:779.453333pt;}
.y41{bottom:790.973333pt;}
.ya{bottom:794.493333pt;}
.y40{bottom:806.333333pt;}
.y9{bottom:809.853333pt;}
.y3f{bottom:821.693333pt;}
.y8{bottom:825.533333pt;}
.y3e{bottom:837.053333pt;}
.y3d{bottom:852.453333pt;}
.y7{bottom:856.293333pt;}
.y3c{bottom:867.493333pt;}
.y6{bottom:871.653333pt;}
.yb1{bottom:882.533333pt;}
.y3b{bottom:882.853333pt;}
.y5{bottom:887.013333pt;}
.y3a{bottom:898.213333pt;}
.y4{bottom:902.373333pt;}
.y39{bottom:913.573333pt;}
.y3{bottom:921.573333pt;}
.y38{bottom:928.933333pt;}
.hb{height:15.360000pt;}
.h9{height:15.392000pt;}
.hd{height:30.400000pt;}
.h8{height:30.720000pt;}
.hc{height:30.752000pt;}
.ha{height:46.080000pt;}
.h6{height:47.737500pt;}
.h7{height:48.195000pt;}
.h5{height:49.020000pt;}
.h10{height:52.736250pt;}
.h2{height:52.762500pt;}
.h4{height:54.180000pt;}
.hf{height:55.256809pt;}
.h3{height:62.812500pt;}
.he{height:72.862500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w5{width:55.392000pt;}
.w4{width:69.472000pt;}
.w7{width:72.352000pt;}
.w8{width:90.304000pt;}
.w6{width:101.504000pt;}
.w3{width:112.704000pt;}
.w9{width:244.293333pt;}
.wa{width:270.560000pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:0.960000pt;}
.x19{left:2.240000pt;}
.x1b{left:4.480000pt;}
.x14{left:13.786667pt;}
.x16{left:17.946667pt;}
.x17{left:20.826667pt;}
.xf{left:23.712000pt;}
.x10{left:26.272000pt;}
.xd{left:45.471990pt;}
.x4{left:68.191990pt;}
.xe{left:76.512000pt;}
.xc{left:83.231990pt;}
.x2{left:105.983990pt;}
.xa{left:115.263990pt;}
.x6{left:155.933324pt;}
.x1e{left:186.333324pt;}
.x11{left:192.733333pt;}
.x7{left:219.653324pt;}
.x8{left:233.733324pt;}
.x3{left:255.173324pt;}
.x13{left:265.413333pt;}
.xb{left:303.519990pt;}
.x15{left:324.320000pt;}
.x1{left:326.239990pt;}
.x1f{left:329.119990pt;}
.x5{left:332.986657pt;}
.x9{left:351.866657pt;}
.x18{left:429.026667pt;}
.x1d{left:462.973324pt;}
.x1a{left:504.573333pt;}
.x1c{left:597.759990pt;}
}




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