
    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_4446386590e39df440c1feb1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4d9da704bd405f2d581d7e94.woff')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_fb46a699e01a0ed92c9470c7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_7408b555e25d7f7ea00da74a.woff')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_1470d9aa7775d6b340c40a96.woff')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_564d16ef252b7c00f5f01c81.woff')format("woff");}.ff6{font-family:ff6;line-height:1.222656;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_fdfea71b6e0f771573c37edd.woff')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_624f96982a26734ba1b2e791.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_b8a451f7633fdfe1903e7b48.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958496;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_3616ca36f2aa4451a48522ab.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8a87bb3450c600c1b3efb49e.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9afd51fafcc92ad502e76848.woff')format("woff");}.ffc{font-family:ffc;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.302153,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.302153,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.302153,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.206849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206849,0.000000,0.000000,0.250000,0,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);}
.v5{vertical-align:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440000px;}
.v3{vertical-align:9.360000px;}
.v4{vertical-align:32.179691px;}
.ls5{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.259800px;}
.ls18{letter-spacing:-0.074892px;}
.ls15{letter-spacing:-0.053280px;}
.ls16{letter-spacing:-0.047105px;}
.ls17{letter-spacing:-0.003153px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.061200px;}
.ls22{letter-spacing:0.106560px;}
.ls1a{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.206640px;}
.ls11{letter-spacing:0.245759px;}
.lsb{letter-spacing:0.271034px;}
.ls6{letter-spacing:0.294146px;}
.ls14{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.317832px;}
.lsc{letter-spacing:0.343170px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.391178px;}
.lsf{letter-spacing:0.436636px;}
.lse{letter-spacing:0.459682px;}
.ls12{letter-spacing:0.462100px;}
.lsd{letter-spacing:0.506736px;}
.ls9{letter-spacing:0.648080px;}
.lsa{letter-spacing:0.842077px;}
.ls1f{letter-spacing:0.900000px;}
.ls13{letter-spacing:0.929548px;}
.ls10{letter-spacing:1.080254px;}
.ls20{letter-spacing:1.620000px;}
.ls1d{letter-spacing:2.106720px;}
.ls1e{letter-spacing:2.340000px;}
.ls21{letter-spacing:5.940000px;}
.ls19{letter-spacing:31.602720px;}
.ls1c{letter-spacing:31.626720px;}
.ls1b{letter-spacing:63.540000px;}
.ls1{letter-spacing:869.520000px;}
.ls2{letter-spacing:1213.680000px;}
.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;}
}
.ws6{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.680200px;}
.ws4{word-spacing:-7.345393px;}
.ws3{word-spacing:-0.026422px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:343.518283px;}
._18{margin-left:-2590.519578px;}
._e{margin-left:-3.286800px;}
._5{margin-left:-2.091600px;}
._4{margin-left:-1.075680px;}
._0{width:1.075680px;}
._1{width:2.463600px;}
._3{width:4.003920px;}
._f{width:5.438160px;}
._11{width:6.513840px;}
._12{width:7.589520px;}
._b{width:9.023760px;}
._a{width:10.159200px;}
._13{width:11.473920px;}
._14{width:12.728880px;}
._c{width:13.744800px;}
._d{width:16.223520px;}
._7{width:17.390160px;}
._16{width:18.645120px;}
._10{width:19.900080px;}
._15{width:21.453840px;}
._8{width:23.127120px;}
._9{width:24.262560px;}
._22{width:25.924800px;}
._23{width:26.973840px;}
._1f{width:30.417840px;}
._21{width:62.963760px;}
._20{width:64.182240px;}
._1e{width:102.826560px;}
._1c{width:104.598278px;}
._1d{width:109.867975px;}
._19{width:359.231984px;}
._1a{width:384.612944px;}
._1b{width:597.728755px;}
._2{width:798.363840px;}
._24{width:849.216000px;}
._6{width:1062.147120px;}
._17{width:2897.788826px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:22.984133px;}
.fs15{font-size:23.238712px;}
.fsa{font-size:23.939202px;}
.fs7{font-size:24.002980px;}
.fsd{font-size:24.130269px;}
.fse{font-size:24.193782px;}
.fsf{font-size:24.257559px;}
.fs14{font-size:24.321072px;}
.fs8{font-size:24.448626px;}
.fs6{font-size:24.512139px;}
.fs13{font-size:24.575916px;}
.fsc{font-size:24.639428px;}
.fsb{font-size:24.766983px;}
.fs9{font-size:24.957785px;}
.fs16{font-size:25.021562px;}
.fs5{font-size:25.212629px;}
.fs10{font-size:25.530986px;}
.fs11{font-size:25.721788px;}
.fs2{font-size:26.422278px;}
.fs4{font-size:28.447096px;}
.fs3{font-size:34.381459px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.042450px;}
.y5e{bottom:12.521896px;}
.y6d{bottom:19.282013px;}
.y5f{bottom:27.711980px;}
.y61{bottom:33.358643px;}
.y62{bottom:40.436322px;}
.y6f{bottom:47.212317px;}
.y70{bottom:55.021714px;}
.y63{bottom:61.765953px;}
.y71{bottom:71.134054px;}
.y64{bottom:85.940416px;}
.y72{bottom:87.309906px;}
.y56{bottom:91.260000px;}
.y9d{bottom:96.300000px;}
.y74{bottom:103.518837px;}
.y54{bottom:108.540000px;}
.y73{bottom:108.957099px;}
.y65{bottom:110.134727px;}
.y31{bottom:111.600000px;}
.y9c{bottom:113.580000px;}
.y53{bottom:125.820000px;}
.y75{bottom:127.600678px;}
.y76{bottom:127.613910px;}
.y30{bottom:128.880000px;}
.y9b{bottom:130.680000px;}
.y66{bottom:134.229800px;}
.y52{bottom:142.740000px;}
.y55{bottom:143.100000px;}
.y7e{bottom:143.994855px;}
.y2f{bottom:146.160000px;}
.y9a{bottom:147.960000px;}
.y77{bottom:150.438732px;}
.y6e{bottom:153.892227px;}
.y67{bottom:158.424112px;}
.y7c{bottom:160.124395px;}
.y51{bottom:160.230000px;}
.y2e{bottom:163.290000px;}
.y99{bottom:165.270000px;}
.y78{bottom:167.997305px;}
.y79{bottom:172.039614px;}
.y7a{bottom:176.062075px;}
.y50{bottom:177.510000px;}
.y2d{bottom:180.570000px;}
.y68{bottom:182.519184px;}
.y98{bottom:182.550000px;}
.y7b{bottom:184.113614px;}
.y7d{bottom:184.140078px;}
.y7f{bottom:184.159925px;}
.y4f{bottom:194.790000px;}
.y2c{bottom:197.850000px;}
.y97{bottom:199.830000px;}
.y80{bottom:202.148531px;}
.y69{bottom:206.713496px;}
.y81{bottom:208.413779px;}
.y4e{bottom:208.470000px;}
.y2b{bottom:215.130000px;}
.y84{bottom:216.478550px;}
.y96{bottom:217.110000px;}
.y83{bottom:224.450698px;}
.y82{bottom:227.943888px;}
.y6a{bottom:230.887959px;}
.y2a{bottom:232.410000px;}
.y95{bottom:234.210000px;}
.y29{bottom:249.510000px;}
.y94{bottom:251.490000px;}
.y6b{bottom:255.002880px;}
.y28{bottom:266.790000px;}
.y9e{bottom:268.410000px;}
.y93{bottom:268.770000px;}
.y6c{bottom:279.177343px;}
.y27{bottom:284.070000px;}
.y92{bottom:286.050000px;}
.y60{bottom:290.649297px;}
.y26{bottom:301.350000px;}
.y91{bottom:303.330000px;}
.y25{bottom:318.630000px;}
.y90{bottom:320.430000px;}
.y24{bottom:335.910000px;}
.y8f{bottom:337.710000px;}
.y23{bottom:349.590000px;}
.y8e{bottom:354.990000px;}
.y8d{bottom:372.270000px;}
.y8c{bottom:389.550000px;}
.y8b{bottom:406.875000px;}
.y8a{bottom:423.975000px;}
.y89{bottom:441.255000px;}
.y88{bottom:458.535000px;}
.y87{bottom:475.815000px;}
.y4d{bottom:484.275000px;}
.y86{bottom:493.095000px;}
.y4c{bottom:501.555000px;}
.y85{bottom:506.775000px;}
.y5c{bottom:506.790000px;}
.y4b{bottom:518.835000px;}
.y4a{bottom:535.935000px;}
.y49{bottom:553.215000px;}
.y48{bottom:570.495000px;}
.y47{bottom:587.775000px;}
.y22{bottom:592.095000px;}
.y46{bottom:605.055000px;}
.y21{bottom:609.375000px;}
.y45{bottom:622.335000px;}
.y20{bottom:626.295000px;}
.y44{bottom:635.835000px;}
.y1f{bottom:643.395000px;}
.y1e{bottom:661.065000px;}
.ya7{bottom:674.025000px;}
.y1d{bottom:678.345000px;}
.ya6{bottom:691.665000px;}
.y1c{bottom:695.265000px;}
.ya5{bottom:708.945000px;}
.y1b{bottom:712.905000px;}
.ya4{bottom:726.225000px;}
.y1a{bottom:730.005000px;}
.ya3{bottom:743.505000px;}
.y19{bottom:747.285000px;}
.ya2{bottom:760.785000px;}
.y18{bottom:764.565000px;}
.ya1{bottom:777.885000px;}
.y17{bottom:781.845000px;}
.ya0{bottom:795.165000px;}
.y16{bottom:799.125000px;}
.y5a{bottom:812.445000px;}
.y15{bottom:816.405000px;}
.y59{bottom:829.725000px;}
.y14{bottom:833.145000px;}
.y58{bottom:846.645000px;}
.y5b{bottom:847.005000px;}
.y13{bottom:850.785000px;}
.y57{bottom:864.285000px;}
.y12{bottom:868.065000px;}
.y43{bottom:881.385000px;}
.y11{bottom:885.345000px;}
.y42{bottom:898.710000px;}
.y10{bottom:902.670000px;}
.y41{bottom:915.990000px;}
.yf{bottom:919.950000px;}
.y40{bottom:933.270000px;}
.ye{bottom:936.690000px;}
.y3f{bottom:950.550000px;}
.yd{bottom:954.330000px;}
.y3e{bottom:967.830000px;}
.yc{bottom:971.610000px;}
.y3d{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.y3c{bottom:1002.210000px;}
.ya{bottom:1005.810000px;}
.y3b{bottom:1019.490000px;}
.y9{bottom:1023.450000px;}
.y3a{bottom:1036.770000px;}
.y8{bottom:1040.550000px;}
.y39{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.y38{bottom:1071.150000px;}
.y37{bottom:1088.430000px;}
.y6{bottom:1092.030000px;}
.y9f{bottom:1105.350000px;}
.y36{bottom:1105.710000px;}
.y5{bottom:1109.310000px;}
.y35{bottom:1122.990000px;}
.y4{bottom:1126.410000px;}
.y34{bottom:1140.270000px;}
.y3{bottom:1143.720000px;}
.y33{bottom:1157.580000px;}
.y2{bottom:1163.880000px;}
.y32{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h9{height:18.406988px;}
.hb{height:19.765103px;}
.h1d{height:23.971732px;}
.h1f{height:24.237250px;}
.h14{height:24.967840px;}
.h11{height:25.034358px;}
.h20{height:25.233358px;}
.h19{height:25.299876px;}
.h18{height:25.312749px;}
.h12{height:25.499153px;}
.h10{height:25.565395px;}
.h15{height:25.631471px;}
.h17{height:25.698154px;}
.h16{height:25.831189px;}
.h13{height:26.030190px;}
.h21{height:26.096707px;}
.hf{height:26.295984px;}
.h1a{height:26.628020px;}
.h1b{height:26.827021px;}
.ha{height:27.557611px;}
.he{height:29.669433px;}
.hd{height:35.858788px;}
.h1c{height:57.214049px;}
.h1e{height:57.439954px;}
.h5{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h7{height:60.168516px;}
.h4{height:60.226875px;}
.h22{height:61.423863px;}
.h8{height:67.981992px;}
.h3{height:81.949219px;}
.hc{height:302.260185px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:645.451523px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.584631px;}
.x22{left:17.449903px;}
.x21{left:19.095924px;}
.x1d{left:28.314626px;}
.x1e{left:34.504585px;}
.x1f{left:57.553258px;}
.x1{left:106.415987px;}
.x19{left:110.915987px;}
.x1c{left:123.765000px;}
.x20{left:130.592360px;}
.x10{left:136.115987px;}
.x16{left:142.955987px;}
.x4{left:153.029987px;}
.x31{left:159.379937px;}
.x35{left:180.929987px;}
.x5{left:192.089987px;}
.x1a{left:198.389987px;}
.x36{left:248.429987px;}
.x2{left:293.294987px;}
.x32{left:302.611681px;}
.x23{left:322.224894px;}
.x13{left:333.794987px;}
.x33{left:344.230229px;}
.x6{left:391.574987px;}
.x2e{left:402.648374px;}
.x17{left:404.354987px;}
.x29{left:416.212857px;}
.x2c{left:426.553175px;}
.xa{left:429.734987px;}
.x27{left:433.926604px;}
.x12{left:437.474987px;}
.x1b{left:446.474987px;}
.x25{left:449.992689px;}
.x11{left:457.274987px;}
.x3{left:461.414987px;}
.x28{left:478.375192px;}
.x14{left:487.004987px;}
.x2b{left:489.109636px;}
.xd{left:490.784987px;}
.x26{left:501.278258px;}
.x30{left:516.698415px;}
.xb{left:531.284987px;}
.xe{left:537.944987px;}
.x8{left:545.504987px;}
.x2f{left:546.739530px;}
.x7{left:554.144987px;}
.x2a{left:568.137255px;}
.x2d{left:580.453674px;}
.x18{left:636.404987px;}
.xc{left:689.189987px;}
.x9{left:708.449987px;}
.x15{left:728.069987px;}
.x34{left:769.289987px;}
.xf{left:786.749987px;}
@media print{
.v5{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280000pt;}
.v3{vertical-align:8.320000pt;}
.v4{vertical-align:28.604170pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.230933pt;}
.ls18{letter-spacing:-0.066571pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls16{letter-spacing:-0.041871pt;}
.ls17{letter-spacing:-0.002803pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.054400pt;}
.ls22{letter-spacing:0.094720pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.183680pt;}
.ls11{letter-spacing:0.218453pt;}
.lsb{letter-spacing:0.240919pt;}
.ls6{letter-spacing:0.261463pt;}
.ls14{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.282517pt;}
.lsc{letter-spacing:0.305040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.347714pt;}
.lsf{letter-spacing:0.388121pt;}
.lse{letter-spacing:0.408606pt;}
.ls12{letter-spacing:0.410756pt;}
.lsd{letter-spacing:0.450432pt;}
.ls9{letter-spacing:0.576072pt;}
.lsa{letter-spacing:0.748513pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.826265pt;}
.ls10{letter-spacing:0.960226pt;}
.ls20{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:1.872640pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls21{letter-spacing:5.280000pt;}
.ls19{letter-spacing:28.091307pt;}
.ls1c{letter-spacing:28.112640pt;}
.ls1b{letter-spacing:56.480000pt;}
.ls1{letter-spacing:772.906667pt;}
.ls2{letter-spacing:1078.826667pt;}
.ws6{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.049067pt;}
.ws4{word-spacing:-6.529239pt;}
.ws3{word-spacing:-0.023486pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:305.349585pt;}
._18{margin-left:-2302.684069pt;}
._e{margin-left:-2.921600pt;}
._5{margin-left:-1.859200pt;}
._4{margin-left:-0.956160pt;}
._0{width:0.956160pt;}
._1{width:2.189867pt;}
._3{width:3.559040pt;}
._f{width:4.833920pt;}
._11{width:5.790080pt;}
._12{width:6.746240pt;}
._b{width:8.021120pt;}
._a{width:9.030400pt;}
._13{width:10.199040pt;}
._14{width:11.314560pt;}
._c{width:12.217600pt;}
._d{width:14.420907pt;}
._7{width:15.457920pt;}
._16{width:16.573440pt;}
._10{width:17.688960pt;}
._15{width:19.070080pt;}
._8{width:20.557440pt;}
._9{width:21.566720pt;}
._22{width:23.044267pt;}
._23{width:23.976747pt;}
._1f{width:27.038080pt;}
._21{width:55.967787pt;}
._20{width:57.050880pt;}
._1e{width:91.401387pt;}
._1c{width:92.976247pt;}
._1d{width:97.660423pt;}
._19{width:319.317319pt;}
._1a{width:341.878172pt;}
._1b{width:531.314449pt;}
._2{width:709.656747pt;}
._24{width:754.858667pt;}
._6{width:944.130773pt;}
._17{width:2575.812289pt;}
.fs12{font-size:20.430340pt;}
.fs15{font-size:20.656633pt;}
.fsa{font-size:21.279291pt;}
.fs7{font-size:21.335982pt;}
.fsd{font-size:21.449128pt;}
.fse{font-size:21.505584pt;}
.fsf{font-size:21.562275pt;}
.fs14{font-size:21.618730pt;}
.fs8{font-size:21.732112pt;}
.fs6{font-size:21.788568pt;}
.fs13{font-size:21.845258pt;}
.fsc{font-size:21.901714pt;}
.fsb{font-size:22.015096pt;}
.fs9{font-size:22.184698pt;}
.fs16{font-size:22.241389pt;}
.fs5{font-size:22.411226pt;}
.fs10{font-size:22.694210pt;}
.fs11{font-size:22.863812pt;}
.fs2{font-size:23.486470pt;}
.fs4{font-size:25.286308pt;}
.fs3{font-size:30.561297pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.704400pt;}
.y5e{bottom:11.130574pt;}
.y6d{bottom:17.139567pt;}
.y5f{bottom:24.632871pt;}
.y61{bottom:29.652127pt;}
.y62{bottom:35.943397pt;}
.y6f{bottom:41.966504pt;}
.y70{bottom:48.908190pt;}
.y63{bottom:54.903069pt;}
.y71{bottom:63.230270pt;}
.y64{bottom:76.391481pt;}
.y72{bottom:77.608805pt;}
.y56{bottom:81.120000pt;}
.y9d{bottom:85.600000pt;}
.y74{bottom:92.016744pt;}
.y54{bottom:96.480000pt;}
.y73{bottom:96.850755pt;}
.y65{bottom:97.897536pt;}
.y31{bottom:99.200000pt;}
.y9c{bottom:100.960000pt;}
.y53{bottom:111.840000pt;}
.y75{bottom:113.422825pt;}
.y76{bottom:113.434587pt;}
.y30{bottom:114.560000pt;}
.y9b{bottom:116.160000pt;}
.y66{bottom:119.315378pt;}
.y52{bottom:126.880000pt;}
.y55{bottom:127.200000pt;}
.y7e{bottom:127.995426pt;}
.y2f{bottom:129.920000pt;}
.y9a{bottom:131.520000pt;}
.y77{bottom:133.723317pt;}
.y6e{bottom:136.793090pt;}
.y67{bottom:140.821432pt;}
.y7c{bottom:142.332796pt;}
.y51{bottom:142.426667pt;}
.y2e{bottom:145.146667pt;}
.y99{bottom:146.906667pt;}
.y78{bottom:149.330938pt;}
.y79{bottom:152.924101pt;}
.y7a{bottom:156.499623pt;}
.y50{bottom:157.786667pt;}
.y2d{bottom:160.506667pt;}
.y68{bottom:162.239275pt;}
.y98{bottom:162.266667pt;}
.y7b{bottom:163.656546pt;}
.y7d{bottom:163.680069pt;}
.y7f{bottom:163.697711pt;}
.y4f{bottom:173.146667pt;}
.y2c{bottom:175.866667pt;}
.y97{bottom:177.626667pt;}
.y80{bottom:179.687583pt;}
.y69{bottom:183.745329pt;}
.y81{bottom:185.256693pt;}
.y4e{bottom:185.306667pt;}
.y2b{bottom:191.226667pt;}
.y84{bottom:192.425378pt;}
.y96{bottom:192.986667pt;}
.y83{bottom:199.511731pt;}
.y82{bottom:202.616789pt;}
.y6a{bottom:205.233741pt;}
.y2a{bottom:206.586667pt;}
.y95{bottom:208.186667pt;}
.y29{bottom:221.786667pt;}
.y94{bottom:223.546667pt;}
.y6b{bottom:226.669226pt;}
.y28{bottom:237.146667pt;}
.y9e{bottom:238.586667pt;}
.y93{bottom:238.906667pt;}
.y6c{bottom:248.157638pt;}
.y27{bottom:252.506667pt;}
.y92{bottom:254.266667pt;}
.y60{bottom:258.354931pt;}
.y26{bottom:267.866667pt;}
.y91{bottom:269.626667pt;}
.y25{bottom:283.226667pt;}
.y90{bottom:284.826667pt;}
.y24{bottom:298.586667pt;}
.y8f{bottom:300.186667pt;}
.y23{bottom:310.746667pt;}
.y8e{bottom:315.546667pt;}
.y8d{bottom:330.906667pt;}
.y8c{bottom:346.266667pt;}
.y8b{bottom:361.666667pt;}
.y8a{bottom:376.866667pt;}
.y89{bottom:392.226667pt;}
.y88{bottom:407.586667pt;}
.y87{bottom:422.946667pt;}
.y4d{bottom:430.466667pt;}
.y86{bottom:438.306667pt;}
.y4c{bottom:445.826667pt;}
.y85{bottom:450.466667pt;}
.y5c{bottom:450.480000pt;}
.y4b{bottom:461.186667pt;}
.y4a{bottom:476.386667pt;}
.y49{bottom:491.746667pt;}
.y48{bottom:507.106667pt;}
.y47{bottom:522.466667pt;}
.y22{bottom:526.306667pt;}
.y46{bottom:537.826667pt;}
.y21{bottom:541.666667pt;}
.y45{bottom:553.186667pt;}
.y20{bottom:556.706667pt;}
.y44{bottom:565.186667pt;}
.y1f{bottom:571.906667pt;}
.y1e{bottom:587.613333pt;}
.ya7{bottom:599.133333pt;}
.y1d{bottom:602.973333pt;}
.ya6{bottom:614.813333pt;}
.y1c{bottom:618.013333pt;}
.ya5{bottom:630.173333pt;}
.y1b{bottom:633.693333pt;}
.ya4{bottom:645.533333pt;}
.y1a{bottom:648.893333pt;}
.ya3{bottom:660.893333pt;}
.y19{bottom:664.253333pt;}
.ya2{bottom:676.253333pt;}
.y18{bottom:679.613333pt;}
.ya1{bottom:691.453333pt;}
.y17{bottom:694.973333pt;}
.ya0{bottom:706.813333pt;}
.y16{bottom:710.333333pt;}
.y5a{bottom:722.173333pt;}
.y15{bottom:725.693333pt;}
.y59{bottom:737.533333pt;}
.y14{bottom:740.573333pt;}
.y58{bottom:752.573333pt;}
.y5b{bottom:752.893333pt;}
.y13{bottom:756.253333pt;}
.y57{bottom:768.253333pt;}
.y12{bottom:771.613333pt;}
.y43{bottom:783.453333pt;}
.y11{bottom:786.973333pt;}
.y42{bottom:798.853333pt;}
.y10{bottom:802.373333pt;}
.y41{bottom:814.213333pt;}
.yf{bottom:817.733333pt;}
.y40{bottom:829.573333pt;}
.ye{bottom:832.613333pt;}
.y3f{bottom:844.933333pt;}
.yd{bottom:848.293333pt;}
.y3e{bottom:860.293333pt;}
.yc{bottom:863.653333pt;}
.y3d{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.y3c{bottom:890.853333pt;}
.ya{bottom:894.053333pt;}
.y3b{bottom:906.213333pt;}
.y9{bottom:909.733333pt;}
.y3a{bottom:921.573333pt;}
.y8{bottom:924.933333pt;}
.y39{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.y38{bottom:952.133333pt;}
.y37{bottom:967.493333pt;}
.y6{bottom:970.693333pt;}
.y9f{bottom:982.533333pt;}
.y36{bottom:982.853333pt;}
.y5{bottom:986.053333pt;}
.y35{bottom:998.213333pt;}
.y4{bottom:1001.253333pt;}
.y34{bottom:1013.573333pt;}
.y3{bottom:1016.640000pt;}
.y33{bottom:1028.960000pt;}
.y2{bottom:1034.560000pt;}
.y32{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h9{height:16.361767pt;}
.hb{height:17.568980pt;}
.h1d{height:21.308206pt;}
.h1f{height:21.544223pt;}
.h14{height:22.193636pt;}
.h11{height:22.252762pt;}
.h20{height:22.429652pt;}
.h19{height:22.488779pt;}
.h18{height:22.500221pt;}
.h12{height:22.665914pt;}
.h10{height:22.724795pt;}
.h15{height:22.783530pt;}
.h17{height:22.842803pt;}
.h16{height:22.961057pt;}
.h13{height:23.137946pt;}
.h21{height:23.197073pt;}
.hf{height:23.374208pt;}
.h1a{height:23.669351pt;}
.h1b{height:23.846241pt;}
.ha{height:24.495654pt;}
.he{height:26.372829pt;}
.hd{height:31.874478pt;}
.h1c{height:50.856932pt;}
.h1e{height:51.057737pt;}
.h5{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h7{height:53.483125pt;}
.h4{height:53.535000pt;}
.h22{height:54.598989pt;}
.h8{height:60.428437pt;}
.h3{height:72.843750pt;}
.hc{height:268.675720pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:573.734687pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:5.853006pt;}
.x22{left:15.511025pt;}
.x21{left:16.974154pt;}
.x1d{left:25.168557pt;}
.x1e{left:30.670742pt;}
.x1f{left:51.158452pt;}
.x1{left:94.591988pt;}
.x19{left:98.591988pt;}
.x1c{left:110.013333pt;}
.x20{left:116.082098pt;}
.x10{left:120.991988pt;}
.x16{left:127.071988pt;}
.x4{left:136.026655pt;}
.x31{left:141.671055pt;}
.x35{left:160.826655pt;}
.x5{left:170.746655pt;}
.x1a{left:176.346655pt;}
.x36{left:220.826655pt;}
.x2{left:260.706655pt;}
.x32{left:268.988161pt;}
.x23{left:286.422128pt;}
.x13{left:296.706655pt;}
.x33{left:305.982426pt;}
.x6{left:348.066655pt;}
.x2e{left:357.909666pt;}
.x17{left:359.426655pt;}
.x29{left:369.966984pt;}
.x2c{left:379.158378pt;}
.xa{left:381.986655pt;}
.x27{left:385.712537pt;}
.x12{left:388.866655pt;}
.x1b{left:396.866655pt;}
.x25{left:399.993501pt;}
.x11{left:406.466655pt;}
.x3{left:410.146655pt;}
.x28{left:425.222393pt;}
.x14{left:432.893322pt;}
.x2b{left:434.764121pt;}
.xd{left:436.253322pt;}
.x26{left:445.580674pt;}
.x30{left:459.287480pt;}
.xb{left:472.253322pt;}
.xe{left:478.173322pt;}
.x8{left:484.893322pt;}
.x2f{left:485.990693pt;}
.x7{left:492.573322pt;}
.x2a{left:505.010893pt;}
.x2d{left:515.958821pt;}
.x18{left:565.693322pt;}
.xc{left:612.613322pt;}
.x9{left:629.733322pt;}
.x15{left:647.173322pt;}
.x34{left:683.813322pt;}
.xf{left:699.333322pt;}
}




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