
    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_28260b40e19fd5808db8c051.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3c845cef70ffff3091a98e8d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b45600b0b2d131104b1d9bcd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.372070;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_d437e7c832e181fa923fcb8c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f996cc1c9b552f95d1014d5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_892a8a81b9275be188f35bb9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4bdd3248eb68ce8bfb9f58e3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_af939107d9f8028958b2d47c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4fdd31e1c056775f552b7c65.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-69.120000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-1.176000px;}
.ls14{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls3{letter-spacing:-0.208200px;}
.ls7{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.037440px;}
.lsf{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.540000px;}
.lse{letter-spacing:0.666000px;}
.lsa{letter-spacing:7.866720px;}
.ls16{letter-spacing:11.466720px;}
.ls0{letter-spacing:31.626720px;}
.lsd{letter-spacing:33.066720px;}
.lsb{letter-spacing:36.666720px;}
.ls15{letter-spacing:41.850720px;}
.ls12{letter-spacing:48.420000px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.384000px;}
.ws8{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.680200px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1441.509120px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-575.089920px;}
._7{margin-left:-8.405520px;}
._1c{margin-left:-7.363680px;}
._8{margin-left:-5.472480px;}
._9{margin-left:-3.908160px;}
._1a{margin-left:-2.300400px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._a{width:2.265840px;}
._b{width:3.660720px;}
._c{width:4.780800px;}
._d{width:5.810400px;}
._12{width:6.817680px;}
._e{width:8.097120px;}
._11{width:9.193680px;}
._f{width:10.458000px;}
._10{width:11.533680px;}
._15{width:12.908160px;}
._14{width:13.908960px;}
._13{width:16.633440px;}
._16{width:17.695440px;}
._19{width:18.884160px;}
._1b{width:19.910160px;}
._1d{width:21.354480px;}
._20{width:23.024880px;}
._17{width:24.033600px;}
._18{width:25.102800px;}
._21{width:26.351040px;}
._1f{width:58.993200px;}
._1e{width:59.999040px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:10.800000px;}
.yf5{bottom:30.600000px;}
.yf2{bottom:34.740000px;}
.yf4{bottom:50.394000px;}
.y6{bottom:60.300000px;}
.yf3{bottom:70.194000px;}
.y92{bottom:88.596000px;}
.yab{bottom:90.756000px;}
.yf0{bottom:94.356000px;}
.y33{bottom:94.896000px;}
.yde{bottom:95.796000px;}
.yb8{bottom:96.336000px;}
.y6a{bottom:105.336000px;}
.y91{bottom:108.396000px;}
.yaa{bottom:110.556000px;}
.yf1{bottom:112.176000px;}
.yef{bottom:114.336000px;}
.y32{bottom:114.696000px;}
.ydd{bottom:115.596000px;}
.yb7{bottom:116.136000px;}
.y69{bottom:125.136000px;}
.y90{bottom:128.196000px;}
.ya9{bottom:130.356000px;}
.yee{bottom:134.136000px;}
.y31{bottom:134.676000px;}
.ydc{bottom:135.396000px;}
.yb6{bottom:136.116000px;}
.y68{bottom:144.936000px;}
.y8f{bottom:145.476000px;}
.ya8{bottom:150.150000px;}
.yed{bottom:153.930000px;}
.y30{bottom:154.470000px;}
.ydb{bottom:155.190000px;}
.yb5{bottom:155.910000px;}
.y67{bottom:164.730000px;}
.ya7{bottom:170.130000px;}
.yec{bottom:173.730000px;}
.y2f{bottom:174.270000px;}
.yda{bottom:175.170000px;}
.y66{bottom:184.530000px;}
.yb4{bottom:184.710000px;}
.yeb{bottom:193.530000px;}
.y2e{bottom:194.070000px;}
.y8e{bottom:194.250000px;}
.yd9{bottom:194.970000px;}
.ya6{bottom:198.930000px;}
.y65{bottom:204.510000px;}
.yea{bottom:213.510000px;}
.y2d{bottom:213.870000px;}
.y8d{bottom:214.050000px;}
.yd8{bottom:214.770000px;}
.ya5{bottom:218.730000px;}
.y64{bottom:224.310000px;}
.ye9{bottom:233.310000px;}
.y2c{bottom:233.850000px;}
.yd7{bottom:234.570000px;}
.ya4{bottom:238.530000px;}
.y63{bottom:244.110000px;}
.yb3{bottom:244.290000px;}
.y8c{bottom:251.130000px;}
.ye8{bottom:253.110000px;}
.y2b{bottom:253.650000px;}
.yd6{bottom:254.370000px;}
.ya3{bottom:258.330000px;}
.y62{bottom:263.910000px;}
.yb2{bottom:264.090000px;}
.y8b{bottom:268.410000px;}
.ye7{bottom:272.910000px;}
.y2a{bottom:273.450000px;}
.yd5{bottom:274.350000px;}
.ya2{bottom:278.310000px;}
.y61{bottom:283.710000px;}
.yb1{bottom:283.890000px;}
.y8a{bottom:285.690000px;}
.ye6{bottom:292.710000px;}
.y29{bottom:293.250000px;}
.yd4{bottom:294.150000px;}
.ya1{bottom:298.110000px;}
.y60{bottom:303.690000px;}
.y89{bottom:305.490000px;}
.ye5{bottom:312.690000px;}
.y28{bottom:313.050000px;}
.yd3{bottom:313.950000px;}
.ya0{bottom:317.910000px;}
.y5f{bottom:323.490000px;}
.y88{bottom:325.290000px;}
.ye4{bottom:332.490000px;}
.y27{bottom:333.030000px;}
.yd2{bottom:333.750000px;}
.y9f{bottom:334.470000px;}
.y5e{bottom:343.335000px;}
.yb0{bottom:343.515000px;}
.y87{bottom:345.135000px;}
.ye3{bottom:352.335000px;}
.y26{bottom:352.875000px;}
.yd1{bottom:353.595000px;}
.y5d{bottom:363.135000px;}
.yaf{bottom:363.315000px;}
.y86{bottom:364.935000px;}
.ye2{bottom:372.135000px;}
.y25{bottom:372.675000px;}
.yd0{bottom:373.575000px;}
.y5c{bottom:382.935000px;}
.yae{bottom:383.115000px;}
.y85{bottom:384.915000px;}
.ye1{bottom:391.935000px;}
.y24{bottom:392.475000px;}
.ycf{bottom:393.375000px;}
.y5b{bottom:402.915000px;}
.y84{bottom:404.715000px;}
.ye0{bottom:411.915000px;}
.y23{bottom:412.275000px;}
.yce{bottom:413.175000px;}
.y5a{bottom:422.715000px;}
.y83{bottom:424.515000px;}
.ydf{bottom:431.715000px;}
.y22{bottom:432.255000px;}
.ycd{bottom:441.975000px;}
.yad{bottom:442.695000px;}
.y82{bottom:444.315000px;}
.y59{bottom:451.515000px;}
.y21{bottom:452.055000px;}
.yac{bottom:459.255000px;}
.ycc{bottom:461.775000px;}
.y81{bottom:464.115000px;}
.y58{bottom:471.315000px;}
.y20{bottom:471.855000px;}
.ycb{bottom:481.755000px;}
.y57{bottom:491.115000px;}
.y1f{bottom:491.655000px;}
.y80{bottom:493.095000px;}
.yca{bottom:501.555000px;}
.y56{bottom:511.095000px;}
.y1e{bottom:511.455000px;}
.y7f{bottom:512.895000px;}
.yc9{bottom:521.355000px;}
.y55{bottom:530.895000px;}
.y1d{bottom:531.435000px;}
.y7e{bottom:532.695000px;}
.yc8{bottom:541.155000px;}
.y54{bottom:550.695000px;}
.y1c{bottom:551.235000px;}
.y7d{bottom:552.495000px;}
.yc7{bottom:560.955000px;}
.y53{bottom:570.495000px;}
.y1b{bottom:571.035000px;}
.y7c{bottom:572.295000px;}
.yc6{bottom:580.935000px;}
.y52{bottom:590.295000px;}
.y1a{bottom:590.835000px;}
.y7b{bottom:592.275000px;}
.yc5{bottom:600.735000px;}
.y51{bottom:610.305000px;}
.y7a{bottom:612.105000px;}
.yc4{bottom:620.565000px;}
.y9e{bottom:621.105000px;}
.y50{bottom:630.105000px;}
.y79{bottom:631.905000px;}
.y19{bottom:632.805000px;}
.yc3{bottom:640.365000px;}
.y9d{bottom:640.905000px;}
.y4f{bottom:649.905000px;}
.y78{bottom:651.705000px;}
.yc2{bottom:660.165000px;}
.y9c{bottom:660.705000px;}
.y18{bottom:661.605000px;}
.y4e{bottom:669.705000px;}
.y77{bottom:671.505000px;}
.y9b{bottom:680.505000px;}
.y17{bottom:681.405000px;}
.yc1{bottom:689.145000px;}
.y4d{bottom:689.505000px;}
.y76{bottom:691.485000px;}
.y9a{bottom:700.485000px;}
.y16{bottom:701.385000px;}
.yc0{bottom:708.945000px;}
.y4c{bottom:709.485000px;}
.y75{bottom:711.285000px;}
.y99{bottom:720.285000px;}
.y15{bottom:721.185000px;}
.ybf{bottom:728.745000px;}
.y4b{bottom:729.285000px;}
.y74{bottom:740.085000px;}
.y14{bottom:740.985000px;}
.ybe{bottom:748.545000px;}
.y4a{bottom:749.085000px;}
.y73{bottom:759.885000px;}
.y13{bottom:760.785000px;}
.y49{bottom:768.885000px;}
.y72{bottom:779.685000px;}
.y12{bottom:780.585000px;}
.ybd{bottom:785.625000px;}
.y48{bottom:788.685000px;}
.y71{bottom:799.665000px;}
.y11{bottom:800.565000px;}
.ybc{bottom:805.425000px;}
.y47{bottom:808.665000px;}
.y70{bottom:819.465000px;}
.y10{bottom:820.365000px;}
.ybb{bottom:825.405000px;}
.y46{bottom:828.465000px;}
.y6f{bottom:839.265000px;}
.yf{bottom:840.165000px;}
.yba{bottom:845.205000px;}
.y45{bottom:848.265000px;}
.y6e{bottom:859.065000px;}
.ye{bottom:859.965000px;}
.yb9{bottom:861.765000px;}
.y44{bottom:868.065000px;}
.y6d{bottom:878.910000px;}
.yd{bottom:879.810000px;}
.y43{bottom:887.910000px;}
.y6c{bottom:898.890000px;}
.yc{bottom:901.950000px;}
.y42{bottom:907.890000px;}
.y6b{bottom:918.690000px;}
.yb{bottom:926.970000px;}
.y41{bottom:927.690000px;}
.y98{bottom:938.490000px;}
.ya{bottom:946.950000px;}
.y40{bottom:947.490000px;}
.y97{bottom:958.290000px;}
.y9{bottom:962.070000px;}
.y3f{bottom:967.290000px;}
.y96{bottom:978.090000px;}
.y8{bottom:983.310000px;}
.y3e{bottom:987.090000px;}
.y95{bottom:998.070000px;}
.y7{bottom:1006.710000px;}
.y3d{bottom:1007.070000px;}
.y94{bottom:1017.870000px;}
.y3c{bottom:1026.870000px;}
.y93{bottom:1037.670000px;}
.y3b{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.y3a{bottom:1066.470000px;}
.y4{bottom:1081.950000px;}
.y39{bottom:1086.270000px;}
.y38{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y37{bottom:1126.050000px;}
.y2{bottom:1143.720000px;}
.y36{bottom:1145.880000px;}
.y35{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.hd{height:2.826563px;}
.h6{height:38.158594px;}
.h8{height:58.651172px;}
.h7{height:59.614102px;}
.h5{height:60.226875px;}
.hb{height:61.423863px;}
.h9{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.ha{height:67.824844px;}
.hc{height:84.240000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:210.810000px;}
.w4{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x11{left:45.900000px;}
.x1{left:54.179987px;}
.x2{left:59.039987px;}
.x7{left:70.199987px;}
.x3{left:86.039987px;}
.x10{left:96.515987px;}
.xa{left:130.175987px;}
.x9{left:148.895987px;}
.x5{left:151.949987px;}
.xe{left:159.329987px;}
.xd{left:168.869987px;}
.x12{left:190.290000px;}
.x6{left:205.589987px;}
.x13{left:256.710000px;}
.xf{left:362.054987px;}
.xb{left:430.094987px;}
.xc{left:673.889987px;}
.x8{left:690.089987px;}
.x4{left:712.049987px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-1.045333pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.033280pt;}
.lsf{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.592000pt;}
.lsa{letter-spacing:6.992640pt;}
.ls16{letter-spacing:10.192640pt;}
.ls0{letter-spacing:28.112640pt;}
.lsd{letter-spacing:29.392640pt;}
.lsb{letter-spacing:32.592640pt;}
.ls15{letter-spacing:37.200640pt;}
.ls12{letter-spacing:43.040000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.674667pt;}
.ws8{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.049067pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1281.341440pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-511.191040pt;}
._7{margin-left:-7.471573pt;}
._1c{margin-left:-6.545493pt;}
._8{margin-left:-4.864427pt;}
._9{margin-left:-3.473920pt;}
._1a{margin-left:-2.044800pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._a{width:2.014080pt;}
._b{width:3.253973pt;}
._c{width:4.249600pt;}
._d{width:5.164800pt;}
._12{width:6.060160pt;}
._e{width:7.197440pt;}
._11{width:8.172160pt;}
._f{width:9.296000pt;}
._10{width:10.252160pt;}
._15{width:11.473920pt;}
._14{width:12.363520pt;}
._13{width:14.785280pt;}
._16{width:15.729280pt;}
._19{width:16.785920pt;}
._1b{width:17.697920pt;}
._1d{width:18.981760pt;}
._20{width:20.466560pt;}
._17{width:21.363200pt;}
._18{width:22.313600pt;}
._21{width:23.423147pt;}
._1f{width:52.438400pt;}
._1e{width:53.332480pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:9.600000pt;}
.yf5{bottom:27.200000pt;}
.yf2{bottom:30.880000pt;}
.yf4{bottom:44.794667pt;}
.y6{bottom:53.600000pt;}
.yf3{bottom:62.394667pt;}
.y92{bottom:78.752000pt;}
.yab{bottom:80.672000pt;}
.yf0{bottom:83.872000pt;}
.y33{bottom:84.352000pt;}
.yde{bottom:85.152000pt;}
.yb8{bottom:85.632000pt;}
.y6a{bottom:93.632000pt;}
.y91{bottom:96.352000pt;}
.yaa{bottom:98.272000pt;}
.yf1{bottom:99.712000pt;}
.yef{bottom:101.632000pt;}
.y32{bottom:101.952000pt;}
.ydd{bottom:102.752000pt;}
.yb7{bottom:103.232000pt;}
.y69{bottom:111.232000pt;}
.y90{bottom:113.952000pt;}
.ya9{bottom:115.872000pt;}
.yee{bottom:119.232000pt;}
.y31{bottom:119.712000pt;}
.ydc{bottom:120.352000pt;}
.yb6{bottom:120.992000pt;}
.y68{bottom:128.832000pt;}
.y8f{bottom:129.312000pt;}
.ya8{bottom:133.466667pt;}
.yed{bottom:136.826667pt;}
.y30{bottom:137.306667pt;}
.ydb{bottom:137.946667pt;}
.yb5{bottom:138.586667pt;}
.y67{bottom:146.426667pt;}
.ya7{bottom:151.226667pt;}
.yec{bottom:154.426667pt;}
.y2f{bottom:154.906667pt;}
.yda{bottom:155.706667pt;}
.y66{bottom:164.026667pt;}
.yb4{bottom:164.186667pt;}
.yeb{bottom:172.026667pt;}
.y2e{bottom:172.506667pt;}
.y8e{bottom:172.666667pt;}
.yd9{bottom:173.306667pt;}
.ya6{bottom:176.826667pt;}
.y65{bottom:181.786667pt;}
.yea{bottom:189.786667pt;}
.y2d{bottom:190.106667pt;}
.y8d{bottom:190.266667pt;}
.yd8{bottom:190.906667pt;}
.ya5{bottom:194.426667pt;}
.y64{bottom:199.386667pt;}
.ye9{bottom:207.386667pt;}
.y2c{bottom:207.866667pt;}
.yd7{bottom:208.506667pt;}
.ya4{bottom:212.026667pt;}
.y63{bottom:216.986667pt;}
.yb3{bottom:217.146667pt;}
.y8c{bottom:223.226667pt;}
.ye8{bottom:224.986667pt;}
.y2b{bottom:225.466667pt;}
.yd6{bottom:226.106667pt;}
.ya3{bottom:229.626667pt;}
.y62{bottom:234.586667pt;}
.yb2{bottom:234.746667pt;}
.y8b{bottom:238.586667pt;}
.ye7{bottom:242.586667pt;}
.y2a{bottom:243.066667pt;}
.yd5{bottom:243.866667pt;}
.ya2{bottom:247.386667pt;}
.y61{bottom:252.186667pt;}
.yb1{bottom:252.346667pt;}
.y8a{bottom:253.946667pt;}
.ye6{bottom:260.186667pt;}
.y29{bottom:260.666667pt;}
.yd4{bottom:261.466667pt;}
.ya1{bottom:264.986667pt;}
.y60{bottom:269.946667pt;}
.y89{bottom:271.546667pt;}
.ye5{bottom:277.946667pt;}
.y28{bottom:278.266667pt;}
.yd3{bottom:279.066667pt;}
.ya0{bottom:282.586667pt;}
.y5f{bottom:287.546667pt;}
.y88{bottom:289.146667pt;}
.ye4{bottom:295.546667pt;}
.y27{bottom:296.026667pt;}
.yd2{bottom:296.666667pt;}
.y9f{bottom:297.306667pt;}
.y5e{bottom:305.186667pt;}
.yb0{bottom:305.346667pt;}
.y87{bottom:306.786667pt;}
.ye3{bottom:313.186667pt;}
.y26{bottom:313.666667pt;}
.yd1{bottom:314.306667pt;}
.y5d{bottom:322.786667pt;}
.yaf{bottom:322.946667pt;}
.y86{bottom:324.386667pt;}
.ye2{bottom:330.786667pt;}
.y25{bottom:331.266667pt;}
.yd0{bottom:332.066667pt;}
.y5c{bottom:340.386667pt;}
.yae{bottom:340.546667pt;}
.y85{bottom:342.146667pt;}
.ye1{bottom:348.386667pt;}
.y24{bottom:348.866667pt;}
.ycf{bottom:349.666667pt;}
.y5b{bottom:358.146667pt;}
.y84{bottom:359.746667pt;}
.ye0{bottom:366.146667pt;}
.y23{bottom:366.466667pt;}
.yce{bottom:367.266667pt;}
.y5a{bottom:375.746667pt;}
.y83{bottom:377.346667pt;}
.ydf{bottom:383.746667pt;}
.y22{bottom:384.226667pt;}
.ycd{bottom:392.866667pt;}
.yad{bottom:393.506667pt;}
.y82{bottom:394.946667pt;}
.y59{bottom:401.346667pt;}
.y21{bottom:401.826667pt;}
.yac{bottom:408.226667pt;}
.ycc{bottom:410.466667pt;}
.y81{bottom:412.546667pt;}
.y58{bottom:418.946667pt;}
.y20{bottom:419.426667pt;}
.ycb{bottom:428.226667pt;}
.y57{bottom:436.546667pt;}
.y1f{bottom:437.026667pt;}
.y80{bottom:438.306667pt;}
.yca{bottom:445.826667pt;}
.y56{bottom:454.306667pt;}
.y1e{bottom:454.626667pt;}
.y7f{bottom:455.906667pt;}
.yc9{bottom:463.426667pt;}
.y55{bottom:471.906667pt;}
.y1d{bottom:472.386667pt;}
.y7e{bottom:473.506667pt;}
.yc8{bottom:481.026667pt;}
.y54{bottom:489.506667pt;}
.y1c{bottom:489.986667pt;}
.y7d{bottom:491.106667pt;}
.yc7{bottom:498.626667pt;}
.y53{bottom:507.106667pt;}
.y1b{bottom:507.586667pt;}
.y7c{bottom:508.706667pt;}
.yc6{bottom:516.386667pt;}
.y52{bottom:524.706667pt;}
.y1a{bottom:525.186667pt;}
.y7b{bottom:526.466667pt;}
.yc5{bottom:533.986667pt;}
.y51{bottom:542.493333pt;}
.y7a{bottom:544.093333pt;}
.yc4{bottom:551.613333pt;}
.y9e{bottom:552.093333pt;}
.y50{bottom:560.093333pt;}
.y79{bottom:561.693333pt;}
.y19{bottom:562.493333pt;}
.yc3{bottom:569.213333pt;}
.y9d{bottom:569.693333pt;}
.y4f{bottom:577.693333pt;}
.y78{bottom:579.293333pt;}
.yc2{bottom:586.813333pt;}
.y9c{bottom:587.293333pt;}
.y18{bottom:588.093333pt;}
.y4e{bottom:595.293333pt;}
.y77{bottom:596.893333pt;}
.y9b{bottom:604.893333pt;}
.y17{bottom:605.693333pt;}
.yc1{bottom:612.573333pt;}
.y4d{bottom:612.893333pt;}
.y76{bottom:614.653333pt;}
.y9a{bottom:622.653333pt;}
.y16{bottom:623.453333pt;}
.yc0{bottom:630.173333pt;}
.y4c{bottom:630.653333pt;}
.y75{bottom:632.253333pt;}
.y99{bottom:640.253333pt;}
.y15{bottom:641.053333pt;}
.ybf{bottom:647.773333pt;}
.y4b{bottom:648.253333pt;}
.y74{bottom:657.853333pt;}
.y14{bottom:658.653333pt;}
.ybe{bottom:665.373333pt;}
.y4a{bottom:665.853333pt;}
.y73{bottom:675.453333pt;}
.y13{bottom:676.253333pt;}
.y49{bottom:683.453333pt;}
.y72{bottom:693.053333pt;}
.y12{bottom:693.853333pt;}
.ybd{bottom:698.333333pt;}
.y48{bottom:701.053333pt;}
.y71{bottom:710.813333pt;}
.y11{bottom:711.613333pt;}
.ybc{bottom:715.933333pt;}
.y47{bottom:718.813333pt;}
.y70{bottom:728.413333pt;}
.y10{bottom:729.213333pt;}
.ybb{bottom:733.693333pt;}
.y46{bottom:736.413333pt;}
.y6f{bottom:746.013333pt;}
.yf{bottom:746.813333pt;}
.yba{bottom:751.293333pt;}
.y45{bottom:754.013333pt;}
.y6e{bottom:763.613333pt;}
.ye{bottom:764.413333pt;}
.yb9{bottom:766.013333pt;}
.y44{bottom:771.613333pt;}
.y6d{bottom:781.253333pt;}
.yd{bottom:782.053333pt;}
.y43{bottom:789.253333pt;}
.y6c{bottom:799.013333pt;}
.yc{bottom:801.733333pt;}
.y42{bottom:807.013333pt;}
.y6b{bottom:816.613333pt;}
.yb{bottom:823.973333pt;}
.y41{bottom:824.613333pt;}
.y98{bottom:834.213333pt;}
.ya{bottom:841.733333pt;}
.y40{bottom:842.213333pt;}
.y97{bottom:851.813333pt;}
.y9{bottom:855.173333pt;}
.y3f{bottom:859.813333pt;}
.y96{bottom:869.413333pt;}
.y8{bottom:874.053333pt;}
.y3e{bottom:877.413333pt;}
.y95{bottom:887.173333pt;}
.y7{bottom:894.853333pt;}
.y3d{bottom:895.173333pt;}
.y94{bottom:904.773333pt;}
.y3c{bottom:912.773333pt;}
.y93{bottom:922.373333pt;}
.y3b{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.y3a{bottom:947.973333pt;}
.y4{bottom:961.733333pt;}
.y39{bottom:965.573333pt;}
.y38{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y37{bottom:1000.933333pt;}
.y2{bottom:1016.640000pt;}
.y36{bottom:1018.560000pt;}
.y35{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.hd{height:2.512500pt;}
.h6{height:33.918750pt;}
.h8{height:52.134375pt;}
.h7{height:52.990313pt;}
.h5{height:53.535000pt;}
.hb{height:54.598989pt;}
.h9{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.ha{height:60.288750pt;}
.hc{height:74.880000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:187.386667pt;}
.w4{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x11{left:40.800000pt;}
.x1{left:48.159988pt;}
.x2{left:52.479988pt;}
.x7{left:62.399988pt;}
.x3{left:76.479988pt;}
.x10{left:85.791988pt;}
.xa{left:115.711988pt;}
.x9{left:132.351988pt;}
.x5{left:135.066655pt;}
.xe{left:141.626655pt;}
.xd{left:150.106655pt;}
.x12{left:169.146667pt;}
.x6{left:182.746655pt;}
.x13{left:228.186667pt;}
.xf{left:321.826655pt;}
.xb{left:382.306655pt;}
.xc{left:599.013322pt;}
.x8{left:613.413322pt;}
.x4{left:632.933322pt;}
}




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