
    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_7c85ca80d11fc41b54ac8953.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_b506b3de475ee7d603901b81.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_3b8e8301d1dbb8bfeec23eb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_67f1362961e52b3db2e585ba.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_be713573f513e51359c78797.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_dd7a4a30126a3cbb05f73b65.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_4c8104e94c91cf8c9e92f254.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5edddc7167c6ae884b5be6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_349639d5f78d81b1382b7b45.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_70c456ede9c082fb68f378f4.woff2')format("woff");}.ffa{font-family:ffa;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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls8{letter-spacing:3.600000px;}
.ls6{letter-spacing:4.320000px;}
.lsd{letter-spacing:4.464000px;}
.ls5{letter-spacing:8.784000px;}
.lsa{letter-spacing:51.984000px;}
.lsb{letter-spacing:74.304000px;}
.ls3{letter-spacing:1092.396000px;}
.ls1{letter-spacing:1158.636000px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-15.145440px;}
._e{margin-left:-4.824000px;}
._f{margin-left:-3.671040px;}
._12{margin-left:-2.611680px;}
._0{margin-left:-1.192320px;}
._1{width:1.457760px;}
._2{width:2.774400px;}
._a{width:3.849600px;}
._4{width:5.472000px;}
._8{width:6.912000px;}
._9{width:8.352000px;}
._3{width:9.720000px;}
._d{width:10.840320px;}
._11{width:12.387360px;}
._19{width:13.464000px;}
._1a{width:14.616000px;}
._1b{width:15.790560px;}
._7{width:16.992000px;}
._1f{width:18.364080px;}
._14{width:19.560000px;}
._18{width:21.568320px;}
._5{width:22.896000px;}
._6{width:24.192000px;}
._13{width:25.488000px;}
._1e{width:26.518560px;}
._b{width:28.152000px;}
._20{width:29.200320px;}
._c{width:30.240000px;}
._1d{width:31.260000px;}
._23{width:32.292480px;}
._1c{width:33.480000px;}
._16{width:34.776000px;}
._17{width:36.144000px;}
._21{width:55.911840px;}
._22{width:57.094320px;}
._24{width:63.144000px;}
._15{width:333.012000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.700000px;}
.y74{bottom:93.816000px;}
.y33{bottom:97.236000px;}
.y106{bottom:101.016000px;}
.ydb{bottom:104.256000px;}
.yc5{bottom:111.096000px;}
.y57{bottom:114.516000px;}
.y89{bottom:117.216000px;}
.y32{bottom:117.936000px;}
.y105{bottom:121.716000px;}
.y73{bottom:124.956000px;}
.yf6{bottom:131.796000px;}
.ya3{bottom:133.596000px;}
.yda{bottom:135.216000px;}
.y31{bottom:138.636000px;}
.yc4{bottom:142.236000px;}
.y104{bottom:142.416000px;}
.y91{bottom:144.936000px;}
.y56{bottom:145.656000px;}
.y88{bottom:148.356000px;}
.y72{bottom:155.910000px;}
.y30{bottom:159.330000px;}
.y90{bottom:162.210000px;}
.yf5{bottom:162.930000px;}
.y103{bottom:163.110000px;}
.ya2{bottom:164.550000px;}
.yd9{bottom:166.350000px;}
.yc3{bottom:173.190000px;}
.y55{bottom:176.610000px;}
.y87{bottom:179.310000px;}
.y2f{bottom:180.030000px;}
.y102{bottom:183.810000px;}
.y71{bottom:187.050000px;}
.yf4{bottom:193.890000px;}
.ya1{bottom:195.690000px;}
.y8f{bottom:196.590000px;}
.yd8{bottom:197.310000px;}
.y2e{bottom:200.730000px;}
.yc2{bottom:204.330000px;}
.y101{bottom:204.510000px;}
.y54{bottom:207.750000px;}
.y86{bottom:210.450000px;}
.y8e{bottom:213.870000px;}
.yd7{bottom:217.290000px;}
.y70{bottom:218.010000px;}
.y2d{bottom:221.430000px;}
.yf3{bottom:225.030000px;}
.y100{bottom:225.210000px;}
.ya0{bottom:226.650000px;}
.y8d{bottom:231.150000px;}
.yd6{bottom:234.570000px;}
.yc1{bottom:235.290000px;}
.y53{bottom:238.710000px;}
.y85{bottom:241.410000px;}
.y2c{bottom:242.130000px;}
.yff{bottom:245.910000px;}
.y8c{bottom:248.430000px;}
.y6f{bottom:249.150000px;}
.yd5{bottom:251.850000px;}
.yf2{bottom:255.990000px;}
.y9f{bottom:257.790000px;}
.y2b{bottom:262.830000px;}
.y8b{bottom:265.530000px;}
.yc0{bottom:266.250000px;}
.yfe{bottom:266.610000px;}
.yd4{bottom:269.130000px;}
.y52{bottom:269.850000px;}
.y84{bottom:272.370000px;}
.y6e{bottom:280.110000px;}
.y8a{bottom:282.810000px;}
.y2a{bottom:283.530000px;}
.yd3{bottom:286.230000px;}
.yf1{bottom:286.950000px;}
.yfd{bottom:287.310000px;}
.y9e{bottom:288.750000px;}
.ybf{bottom:297.390000px;}
.y51{bottom:300.810000px;}
.y83{bottom:303.510000px;}
.yfc{bottom:308.010000px;}
.y6d{bottom:311.250000px;}
.yd2{bottom:314.670000px;}
.yf0{bottom:318.090000px;}
.y9d{bottom:319.890000px;}
.y29{bottom:324.930000px;}
.ybe{bottom:328.395000px;}
.yfb{bottom:328.755000px;}
.y50{bottom:331.995000px;}
.y82{bottom:334.515000px;}
.y6c{bottom:342.255000px;}
.y28{bottom:345.675000px;}
.yef{bottom:349.095000px;}
.yfa{bottom:349.455000px;}
.y9c{bottom:350.895000px;}
.ybd{bottom:359.535000px;}
.y4f{bottom:362.955000px;}
.y81{bottom:365.655000px;}
.y27{bottom:366.375000px;}
.yf9{bottom:370.155000px;}
.y6b{bottom:373.395000px;}
.yd1{bottom:376.815000px;}
.yee{bottom:380.235000px;}
.y9b{bottom:382.035000px;}
.y75{bottom:383.655000px;}
.y26{bottom:387.075000px;}
.ybc{bottom:390.495000px;}
.yf8{bottom:390.855000px;}
.y4e{bottom:394.095000px;}
.y80{bottom:396.615000px;}
.y6a{bottom:404.355000px;}
.y25{bottom:407.775000px;}
.yed{bottom:411.195000px;}
.yf7{bottom:411.555000px;}
.y9a{bottom:412.995000px;}
.ybb{bottom:421.635000px;}
.y4d{bottom:425.055000px;}
.y7f{bottom:427.755000px;}
.y24{bottom:428.475000px;}
.y69{bottom:435.495000px;}
.yd0{bottom:438.915000px;}
.yec{bottom:442.335000px;}
.y99{bottom:443.955000px;}
.y23{bottom:449.175000px;}
.yba{bottom:452.595000px;}
.y4c{bottom:456.195000px;}
.y7e{bottom:458.715000px;}
.y68{bottom:466.455000px;}
.y22{bottom:469.875000px;}
.y98{bottom:472.575000px;}
.yeb{bottom:473.295000px;}
.y10e{bottom:476.895000px;}
.yb9{bottom:483.735000px;}
.y4b{bottom:487.155000px;}
.y7d{bottom:489.855000px;}
.y21{bottom:490.575000px;}
.y67{bottom:497.595000px;}
.ycf{bottom:501.015000px;}
.yea{bottom:504.435000px;}
.y97{bottom:507.135000px;}
.y20{bottom:511.275000px;}
.yb8{bottom:514.695000px;}
.y4a{bottom:518.295000px;}
.y7c{bottom:520.815000px;}
.y96{bottom:524.415000px;}
.y66{bottom:528.555000px;}
.y1f{bottom:531.975000px;}
.ye9{bottom:535.395000px;}
.y10d{bottom:538.995000px;}
.y95{bottom:541.695000px;}
.yb7{bottom:545.835000px;}
.y49{bottom:549.255000px;}
.y7b{bottom:551.955000px;}
.y1e{bottom:552.675000px;}
.y94{bottom:558.975000px;}
.y65{bottom:559.695000px;}
.yce{bottom:563.115000px;}
.ye8{bottom:566.535000px;}
.y1d{bottom:573.375000px;}
.y93{bottom:576.075000px;}
.yb6{bottom:576.795000px;}
.y48{bottom:580.395000px;}
.y7a{bottom:582.915000px;}
.y64{bottom:590.655000px;}
.y92{bottom:593.355000px;}
.y1c{bottom:594.075000px;}
.ye7{bottom:597.525000px;}
.y10c{bottom:601.125000px;}
.yb5{bottom:607.965000px;}
.y47{bottom:611.385000px;}
.y79{bottom:614.085000px;}
.y1b{bottom:614.805000px;}
.y63{bottom:621.645000px;}
.ycd{bottom:625.245000px;}
.ye6{bottom:628.665000px;}
.y1a{bottom:635.505000px;}
.yb4{bottom:638.925000px;}
.y46{bottom:642.345000px;}
.y78{bottom:642.705000px;}
.y62{bottom:652.785000px;}
.y19{bottom:656.205000px;}
.ye5{bottom:659.625000px;}
.y10b{bottom:663.045000px;}
.y77{bottom:667.005000px;}
.yb3{bottom:670.065000px;}
.y45{bottom:673.485000px;}
.ycc{bottom:676.185000px;}
.y18{bottom:676.905000px;}
.y61{bottom:683.745000px;}
.ye4{bottom:690.765000px;}
.ycb{bottom:693.465000px;}
.y17{bottom:697.605000px;}
.yb2{bottom:701.025000px;}
.y44{bottom:704.445000px;}
.yca{bottom:710.745000px;}
.y60{bottom:714.885000px;}
.y16{bottom:718.305000px;}
.ye3{bottom:721.725000px;}
.y10a{bottom:725.145000px;}
.yc9{bottom:728.025000px;}
.yb1{bottom:732.165000px;}
.y43{bottom:735.585000px;}
.y15{bottom:739.005000px;}
.yc8{bottom:745.125000px;}
.y5f{bottom:745.845000px;}
.ye2{bottom:752.865000px;}
.y14{bottom:759.705000px;}
.yc7{bottom:762.405000px;}
.yb0{bottom:763.125000px;}
.y42{bottom:766.545000px;}
.y5e{bottom:776.985000px;}
.yc6{bottom:779.685000px;}
.y13{bottom:780.405000px;}
.ye1{bottom:783.825000px;}
.y109{bottom:787.245000px;}
.yaf{bottom:794.265000px;}
.y41{bottom:797.685000px;}
.y12{bottom:801.105000px;}
.y5d{bottom:807.945000px;}
.ye0{bottom:814.965000px;}
.y11{bottom:821.805000px;}
.yae{bottom:825.225000px;}
.y108{bottom:828.645000px;}
.y5c{bottom:839.085000px;}
.y10{bottom:842.505000px;}
.ydf{bottom:845.925000px;}
.y40{bottom:849.345000px;}
.yad{bottom:856.365000px;}
.yf{bottom:863.250000px;}
.y3f{bottom:870.090000px;}
.yde{bottom:877.110000px;}
.ye{bottom:883.950000px;}
.yac{bottom:887.370000px;}
.y107{bottom:890.790000px;}
.y5b{bottom:901.230000px;}
.yd{bottom:904.650000px;}
.yab{bottom:907.350000px;}
.ydd{bottom:908.070000px;}
.y3e{bottom:911.490000px;}
.yaa{bottom:924.630000px;}
.yc{bottom:925.350000px;}
.y3d{bottom:932.190000px;}
.ydc{bottom:939.210000px;}
.ya9{bottom:941.910000px;}
.yb{bottom:946.050000px;}
.y3c{bottom:952.890000px;}
.ya8{bottom:959.190000px;}
.y5a{bottom:963.330000px;}
.ya{bottom:966.750000px;}
.y3b{bottom:973.590000px;}
.ya7{bottom:976.290000px;}
.y9{bottom:987.450000px;}
.ya6{bottom:993.570000px;}
.y3a{bottom:994.290000px;}
.y76{bottom:996.990000px;}
.y8{bottom:1008.150000px;}
.ya5{bottom:1010.850000px;}
.y39{bottom:1014.990000px;}
.y59{bottom:1025.430000px;}
.ya4{bottom:1028.130000px;}
.y7{bottom:1028.850000px;}
.y38{bottom:1035.690000px;}
.y6{bottom:1049.550000px;}
.y37{bottom:1056.390000px;}
.y5{bottom:1070.250000px;}
.y36{bottom:1077.090000px;}
.y58{bottom:1087.530000px;}
.y4{bottom:1091.490000px;}
.y35{bottom:1097.790000px;}
.y3{bottom:1115.610000px;}
.y34{bottom:1118.490000px;}
.y1{bottom:1231.740000px;}
.h3{height:53.464219px;}
.hb{height:58.651172px;}
.h9{height:60.226875px;}
.ha{height:64.546875px;}
.h7{height:70.628906px;}
.h5{height:70.664062px;}
.h6{height:72.562500px;}
.hc{height:74.004654px;}
.h8{height:74.953125px;}
.h2{height:76.317188px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:127.655987px;}
.x3{left:180.389987px;}
.x11{left:181.649987px;}
.x10{left:191.549987px;}
.x7{left:205.769987px;}
.x4{left:208.649987px;}
.x18{left:212.609987px;}
.xa{left:221.609987px;}
.x8{left:236.729987px;}
.x2{left:241.769987px;}
.x15{left:297.794987px;}
.x9{left:314.714987px;}
.x5{left:318.674987px;}
.xb{left:329.294987px;}
.x12{left:336.314987px;}
.x17{left:361.694987px;}
.xc{left:367.814987px;}
.x14{left:381.134987px;}
.x19{left:403.274987px;}
.xd{left:428.294987px;}
.x6{left:467.894987px;}
.xf{left:499.784987px;}
.x13{left:785.669987px;}
.x16{left:788.729987px;}
.x1{left:798.449987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls6{letter-spacing:3.840000pt;}
.lsd{letter-spacing:3.968000pt;}
.ls5{letter-spacing:7.808000pt;}
.lsa{letter-spacing:46.208000pt;}
.lsb{letter-spacing:66.048000pt;}
.ls3{letter-spacing:971.018667pt;}
.ls1{letter-spacing:1029.898667pt;}
.ws0{word-spacing:-58.880000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-13.462613pt;}
._e{margin-left:-4.288000pt;}
._f{margin-left:-3.263147pt;}
._12{margin-left:-2.321493pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.295787pt;}
._2{width:2.466133pt;}
._a{width:3.421867pt;}
._4{width:4.864000pt;}
._8{width:6.144000pt;}
._9{width:7.424000pt;}
._3{width:8.640000pt;}
._d{width:9.635840pt;}
._11{width:11.010987pt;}
._19{width:11.968000pt;}
._1a{width:12.992000pt;}
._1b{width:14.036053pt;}
._7{width:15.104000pt;}
._1f{width:16.323627pt;}
._14{width:17.386667pt;}
._18{width:19.171840pt;}
._5{width:20.352000pt;}
._6{width:21.504000pt;}
._13{width:22.656000pt;}
._1e{width:23.572053pt;}
._b{width:25.024000pt;}
._20{width:25.955840pt;}
._c{width:26.880000pt;}
._1d{width:27.786667pt;}
._23{width:28.704427pt;}
._1c{width:29.760000pt;}
._16{width:30.912000pt;}
._17{width:32.128000pt;}
._21{width:49.699413pt;}
._22{width:50.750507pt;}
._24{width:56.128000pt;}
._15{width:296.010667pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.400000pt;}
.y74{bottom:83.392000pt;}
.y33{bottom:86.432000pt;}
.y106{bottom:89.792000pt;}
.ydb{bottom:92.672000pt;}
.yc5{bottom:98.752000pt;}
.y57{bottom:101.792000pt;}
.y89{bottom:104.192000pt;}
.y32{bottom:104.832000pt;}
.y105{bottom:108.192000pt;}
.y73{bottom:111.072000pt;}
.yf6{bottom:117.152000pt;}
.ya3{bottom:118.752000pt;}
.yda{bottom:120.192000pt;}
.y31{bottom:123.232000pt;}
.yc4{bottom:126.432000pt;}
.y104{bottom:126.592000pt;}
.y91{bottom:128.832000pt;}
.y56{bottom:129.472000pt;}
.y88{bottom:131.872000pt;}
.y72{bottom:138.586667pt;}
.y30{bottom:141.626667pt;}
.y90{bottom:144.186667pt;}
.yf5{bottom:144.826667pt;}
.y103{bottom:144.986667pt;}
.ya2{bottom:146.266667pt;}
.yd9{bottom:147.866667pt;}
.yc3{bottom:153.946667pt;}
.y55{bottom:156.986667pt;}
.y87{bottom:159.386667pt;}
.y2f{bottom:160.026667pt;}
.y102{bottom:163.386667pt;}
.y71{bottom:166.266667pt;}
.yf4{bottom:172.346667pt;}
.ya1{bottom:173.946667pt;}
.y8f{bottom:174.746667pt;}
.yd8{bottom:175.386667pt;}
.y2e{bottom:178.426667pt;}
.yc2{bottom:181.626667pt;}
.y101{bottom:181.786667pt;}
.y54{bottom:184.666667pt;}
.y86{bottom:187.066667pt;}
.y8e{bottom:190.106667pt;}
.yd7{bottom:193.146667pt;}
.y70{bottom:193.786667pt;}
.y2d{bottom:196.826667pt;}
.yf3{bottom:200.026667pt;}
.y100{bottom:200.186667pt;}
.ya0{bottom:201.466667pt;}
.y8d{bottom:205.466667pt;}
.yd6{bottom:208.506667pt;}
.yc1{bottom:209.146667pt;}
.y53{bottom:212.186667pt;}
.y85{bottom:214.586667pt;}
.y2c{bottom:215.226667pt;}
.yff{bottom:218.586667pt;}
.y8c{bottom:220.826667pt;}
.y6f{bottom:221.466667pt;}
.yd5{bottom:223.866667pt;}
.yf2{bottom:227.546667pt;}
.y9f{bottom:229.146667pt;}
.y2b{bottom:233.626667pt;}
.y8b{bottom:236.026667pt;}
.yc0{bottom:236.666667pt;}
.yfe{bottom:236.986667pt;}
.yd4{bottom:239.226667pt;}
.y52{bottom:239.866667pt;}
.y84{bottom:242.106667pt;}
.y6e{bottom:248.986667pt;}
.y8a{bottom:251.386667pt;}
.y2a{bottom:252.026667pt;}
.yd3{bottom:254.426667pt;}
.yf1{bottom:255.066667pt;}
.yfd{bottom:255.386667pt;}
.y9e{bottom:256.666667pt;}
.ybf{bottom:264.346667pt;}
.y51{bottom:267.386667pt;}
.y83{bottom:269.786667pt;}
.yfc{bottom:273.786667pt;}
.y6d{bottom:276.666667pt;}
.yd2{bottom:279.706667pt;}
.yf0{bottom:282.746667pt;}
.y9d{bottom:284.346667pt;}
.y29{bottom:288.826667pt;}
.ybe{bottom:291.906667pt;}
.yfb{bottom:292.226667pt;}
.y50{bottom:295.106667pt;}
.y82{bottom:297.346667pt;}
.y6c{bottom:304.226667pt;}
.y28{bottom:307.266667pt;}
.yef{bottom:310.306667pt;}
.yfa{bottom:310.626667pt;}
.y9c{bottom:311.906667pt;}
.ybd{bottom:319.586667pt;}
.y4f{bottom:322.626667pt;}
.y81{bottom:325.026667pt;}
.y27{bottom:325.666667pt;}
.yf9{bottom:329.026667pt;}
.y6b{bottom:331.906667pt;}
.yd1{bottom:334.946667pt;}
.yee{bottom:337.986667pt;}
.y9b{bottom:339.586667pt;}
.y75{bottom:341.026667pt;}
.y26{bottom:344.066667pt;}
.ybc{bottom:347.106667pt;}
.yf8{bottom:347.426667pt;}
.y4e{bottom:350.306667pt;}
.y80{bottom:352.546667pt;}
.y6a{bottom:359.426667pt;}
.y25{bottom:362.466667pt;}
.yed{bottom:365.506667pt;}
.yf7{bottom:365.826667pt;}
.y9a{bottom:367.106667pt;}
.ybb{bottom:374.786667pt;}
.y4d{bottom:377.826667pt;}
.y7f{bottom:380.226667pt;}
.y24{bottom:380.866667pt;}
.y69{bottom:387.106667pt;}
.yd0{bottom:390.146667pt;}
.yec{bottom:393.186667pt;}
.y99{bottom:394.626667pt;}
.y23{bottom:399.266667pt;}
.yba{bottom:402.306667pt;}
.y4c{bottom:405.506667pt;}
.y7e{bottom:407.746667pt;}
.y68{bottom:414.626667pt;}
.y22{bottom:417.666667pt;}
.y98{bottom:420.066667pt;}
.yeb{bottom:420.706667pt;}
.y10e{bottom:423.906667pt;}
.yb9{bottom:429.986667pt;}
.y4b{bottom:433.026667pt;}
.y7d{bottom:435.426667pt;}
.y21{bottom:436.066667pt;}
.y67{bottom:442.306667pt;}
.ycf{bottom:445.346667pt;}
.yea{bottom:448.386667pt;}
.y97{bottom:450.786667pt;}
.y20{bottom:454.466667pt;}
.yb8{bottom:457.506667pt;}
.y4a{bottom:460.706667pt;}
.y7c{bottom:462.946667pt;}
.y96{bottom:466.146667pt;}
.y66{bottom:469.826667pt;}
.y1f{bottom:472.866667pt;}
.ye9{bottom:475.906667pt;}
.y10d{bottom:479.106667pt;}
.y95{bottom:481.506667pt;}
.yb7{bottom:485.186667pt;}
.y49{bottom:488.226667pt;}
.y7b{bottom:490.626667pt;}
.y1e{bottom:491.266667pt;}
.y94{bottom:496.866667pt;}
.y65{bottom:497.506667pt;}
.yce{bottom:500.546667pt;}
.ye8{bottom:503.586667pt;}
.y1d{bottom:509.666667pt;}
.y93{bottom:512.066667pt;}
.yb6{bottom:512.706667pt;}
.y48{bottom:515.906667pt;}
.y7a{bottom:518.146667pt;}
.y64{bottom:525.026667pt;}
.y92{bottom:527.426667pt;}
.y1c{bottom:528.066667pt;}
.ye7{bottom:531.133333pt;}
.y10c{bottom:534.333333pt;}
.yb5{bottom:540.413333pt;}
.y47{bottom:543.453333pt;}
.y79{bottom:545.853333pt;}
.y1b{bottom:546.493333pt;}
.y63{bottom:552.573333pt;}
.ycd{bottom:555.773333pt;}
.ye6{bottom:558.813333pt;}
.y1a{bottom:564.893333pt;}
.yb4{bottom:567.933333pt;}
.y46{bottom:570.973333pt;}
.y78{bottom:571.293333pt;}
.y62{bottom:580.253333pt;}
.y19{bottom:583.293333pt;}
.ye5{bottom:586.333333pt;}
.y10b{bottom:589.373333pt;}
.y77{bottom:592.893333pt;}
.yb3{bottom:595.613333pt;}
.y45{bottom:598.653333pt;}
.ycc{bottom:601.053333pt;}
.y18{bottom:601.693333pt;}
.y61{bottom:607.773333pt;}
.ye4{bottom:614.013333pt;}
.ycb{bottom:616.413333pt;}
.y17{bottom:620.093333pt;}
.yb2{bottom:623.133333pt;}
.y44{bottom:626.173333pt;}
.yca{bottom:631.773333pt;}
.y60{bottom:635.453333pt;}
.y16{bottom:638.493333pt;}
.ye3{bottom:641.533333pt;}
.y10a{bottom:644.573333pt;}
.yc9{bottom:647.133333pt;}
.yb1{bottom:650.813333pt;}
.y43{bottom:653.853333pt;}
.y15{bottom:656.893333pt;}
.yc8{bottom:662.333333pt;}
.y5f{bottom:662.973333pt;}
.ye2{bottom:669.213333pt;}
.y14{bottom:675.293333pt;}
.yc7{bottom:677.693333pt;}
.yb0{bottom:678.333333pt;}
.y42{bottom:681.373333pt;}
.y5e{bottom:690.653333pt;}
.yc6{bottom:693.053333pt;}
.y13{bottom:693.693333pt;}
.ye1{bottom:696.733333pt;}
.y109{bottom:699.773333pt;}
.yaf{bottom:706.013333pt;}
.y41{bottom:709.053333pt;}
.y12{bottom:712.093333pt;}
.y5d{bottom:718.173333pt;}
.ye0{bottom:724.413333pt;}
.y11{bottom:730.493333pt;}
.yae{bottom:733.533333pt;}
.y108{bottom:736.573333pt;}
.y5c{bottom:745.853333pt;}
.y10{bottom:748.893333pt;}
.ydf{bottom:751.933333pt;}
.y40{bottom:754.973333pt;}
.yad{bottom:761.213333pt;}
.yf{bottom:767.333333pt;}
.y3f{bottom:773.413333pt;}
.yde{bottom:779.653333pt;}
.ye{bottom:785.733333pt;}
.yac{bottom:788.773333pt;}
.y107{bottom:791.813333pt;}
.y5b{bottom:801.093333pt;}
.yd{bottom:804.133333pt;}
.yab{bottom:806.533333pt;}
.ydd{bottom:807.173333pt;}
.y3e{bottom:810.213333pt;}
.yaa{bottom:821.893333pt;}
.yc{bottom:822.533333pt;}
.y3d{bottom:828.613333pt;}
.ydc{bottom:834.853333pt;}
.ya9{bottom:837.253333pt;}
.yb{bottom:840.933333pt;}
.y3c{bottom:847.013333pt;}
.ya8{bottom:852.613333pt;}
.y5a{bottom:856.293333pt;}
.ya{bottom:859.333333pt;}
.y3b{bottom:865.413333pt;}
.ya7{bottom:867.813333pt;}
.y9{bottom:877.733333pt;}
.ya6{bottom:883.173333pt;}
.y3a{bottom:883.813333pt;}
.y76{bottom:886.213333pt;}
.y8{bottom:896.133333pt;}
.ya5{bottom:898.533333pt;}
.y39{bottom:902.213333pt;}
.y59{bottom:911.493333pt;}
.ya4{bottom:913.893333pt;}
.y7{bottom:914.533333pt;}
.y38{bottom:920.613333pt;}
.y6{bottom:932.933333pt;}
.y37{bottom:939.013333pt;}
.y5{bottom:951.333333pt;}
.y36{bottom:957.413333pt;}
.y58{bottom:966.693333pt;}
.y4{bottom:970.213333pt;}
.y35{bottom:975.813333pt;}
.y3{bottom:991.653333pt;}
.y34{bottom:994.213333pt;}
.y1{bottom:1094.880000pt;}
.h3{height:47.523750pt;}
.hb{height:52.134375pt;}
.h9{height:53.535000pt;}
.ha{height:57.375000pt;}
.h7{height:62.781250pt;}
.h5{height:62.812500pt;}
.h6{height:64.500000pt;}
.hc{height:65.781915pt;}
.h8{height:66.625000pt;}
.h2{height:67.837500pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:113.471988pt;}
.x3{left:160.346655pt;}
.x11{left:161.466655pt;}
.x10{left:170.266655pt;}
.x7{left:182.906655pt;}
.x4{left:185.466655pt;}
.x18{left:188.986655pt;}
.xa{left:196.986655pt;}
.x8{left:210.426655pt;}
.x2{left:214.906655pt;}
.x15{left:264.706655pt;}
.x9{left:279.746655pt;}
.x5{left:283.266655pt;}
.xb{left:292.706655pt;}
.x12{left:298.946655pt;}
.x17{left:321.506655pt;}
.xc{left:326.946655pt;}
.x14{left:338.786655pt;}
.x19{left:358.466655pt;}
.xd{left:380.706655pt;}
.x6{left:415.906655pt;}
.xf{left:444.253322pt;}
.x13{left:698.373322pt;}
.x16{left:701.093322pt;}
.x1{left:709.733322pt;}
}




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