
    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_e003c37a51a4077162e9362b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_05b55e9514de22ada4b4cc4f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8f529a2336ccd300e0a7ff7.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_7e94ca93347590bfbc2aaf2c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_53622188d8881e7411a0a636.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.772949;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_e902232d2fd9a8e310d39f8e.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_a8ab4e8c917ae86e2d97f0c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c07b4f75d958937a651c12aa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a34521133f6806d9ffe51487.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_284e20c6f3786a04cd0d94e4.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6eac2ee7643e114e1599044a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9a10e328d1e49d17468929ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-67.680000px;}
.v1{vertical-align:-61.380000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.360000px;}
.ls0{letter-spacing:28.260000px;}
.ls9{letter-spacing:46.026720px;}
.lsa{letter-spacing:64.026720px;}
.ls2{letter-spacing:201.060000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.226440px;}
.wsb{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.274000px;}
.ws5{word-spacing:-13.626000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-7.684560px;}
._1d{margin-left:-5.763600px;}
._1b{margin-left:-4.163520px;}
._1c{margin-left:-2.123520px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._4{width:2.343600px;}
._6{width:3.780000px;}
._9{width:5.292000px;}
._e{width:7.053840px;}
._3{width:8.424000px;}
._2{width:9.517680px;}
._8{width:10.584000px;}
._7{width:11.826000px;}
._1a{width:13.774080px;}
._5{width:15.313680px;}
._17{width:16.390560px;}
._18{width:17.416320px;}
._14{width:19.003680px;}
._15{width:20.057760px;}
._f{width:21.214800px;}
._10{width:22.432320px;}
._19{width:23.445120px;}
._d{width:27.996240px;}
._c{width:29.019600px;}
._13{width:32.270400px;}
._b{width:36.112560px;}
._a{width:37.170720px;}
._12{width:70.226640px;}
._11{width:72.318960px;}
._16{width:84.312000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.405000px;}
.y4c{bottom:3.420000px;}
.y5{bottom:4.140000px;}
.y58{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4b{bottom:14.040000px;}
.y40{bottom:19.245000px;}
.y4{bottom:23.040000px;}
.y3f{bottom:36.525000px;}
.y55{bottom:37.080000px;}
.y4a{bottom:38.160000px;}
.y3{bottom:48.090000px;}
.y49{bottom:51.120000px;}
.y54{bottom:52.560000px;}
.y3e{bottom:53.805000px;}
.y8{bottom:58.500000px;}
.y48{bottom:64.260000px;}
.y53{bottom:70.020000px;}
.y3d{bottom:70.725000px;}
.y47{bottom:77.220000px;}
.y7{bottom:78.660000px;}
.y52{bottom:85.890000px;}
.y3c{bottom:88.365000px;}
.y46{bottom:90.390000px;}
.y51{bottom:101.550000px;}
.y3b{bottom:105.690000px;}
.yc5{bottom:111.960000px;}
.y45{bottom:112.170000px;}
.y56{bottom:117.540000px;}
.y50{bottom:118.830000px;}
.y8f{bottom:119.520000px;}
.y3a{bottom:122.790000px;}
.yc4{bottom:129.240000px;}
.y42{bottom:132.120000px;}
.y4f{bottom:134.850000px;}
.y8e{bottom:136.800000px;}
.y39{bottom:139.710000px;}
.yc3{bottom:146.520000px;}
.y4e{bottom:150.330000px;}
.y8d{bottom:154.080000px;}
.y38{bottom:157.350000px;}
.yc2{bottom:163.800000px;}
.y4d{bottom:165.810000px;}
.y8c{bottom:172.440000px;}
.y44{bottom:174.270000px;}
.y37{bottom:174.630000px;}
.yc1{bottom:181.080000px;}
.y43{bottom:184.710000px;}
.y8b{bottom:189.720000px;}
.y36{bottom:191.910000px;}
.yc0{bottom:198.000000px;}
.y8a{bottom:206.820000px;}
.y35{bottom:209.190000px;}
.ybf{bottom:215.490000px;}
.y89{bottom:225.210000px;}
.y34{bottom:226.290000px;}
.ybe{bottom:233.850000px;}
.y88{bottom:242.490000px;}
.y33{bottom:243.570000px;}
.ybd{bottom:251.130000px;}
.y87{bottom:259.770000px;}
.y32{bottom:260.850000px;}
.y1f{bottom:263.550000px;}
.ybc{bottom:269.490000px;}
.y86{bottom:277.050000px;}
.y31{bottom:278.130000px;}
.y1e{bottom:287.670000px;}
.ybb{bottom:287.850000px;}
.y85{bottom:295.230000px;}
.y30{bottom:295.410000px;}
.yba{bottom:306.030000px;}
.y1d{bottom:311.790000px;}
.y2f{bottom:312.510000px;}
.yb9{bottom:324.030000px;}
.y2e{bottom:329.790000px;}
.y1c{bottom:335.910000px;}
.yb8{bottom:341.670000px;}
.y11{bottom:344.745000px;}
.y2d{bottom:346.740000px;}
.y84{bottom:347.070000px;}
.yb7{bottom:360.030000px;}
.y1b{bottom:360.060000px;}
.y83{bottom:364.350000px;}
.y2c{bottom:372.840000px;}
.yb6{bottom:377.310000px;}
.y82{bottom:382.710000px;}
.y1a{bottom:384.180000px;}
.y2b{bottom:388.500000px;}
.yb5{bottom:395.490000px;}
.y81{bottom:399.810000px;}
.y2a{bottom:403.980000px;}
.y19{bottom:408.300000px;}
.yb4{bottom:412.770000px;}
.y80{bottom:417.090000px;}
.y29{bottom:419.460000px;}
.yb3{bottom:431.130000px;}
.y18{bottom:432.600000px;}
.y7f{bottom:434.370000px;}
.y28{bottom:434.940000px;}
.yb2{bottom:449.535000px;}
.y27{bottom:450.600000px;}
.y7e{bottom:451.335000px;}
.y17{bottom:456.720000px;}
.y26{bottom:466.080000px;}
.yb1{bottom:466.815000px;}
.y7d{bottom:468.975000px;}
.y16{bottom:480.840000px;}
.y25{bottom:481.560000px;}
.yb0{bottom:484.815000px;}
.y7c{bottom:486.255000px;}
.y24{bottom:497.040000px;}
.yaf{bottom:502.275000px;}
.y7b{bottom:503.355000px;}
.y15{bottom:504.960000px;}
.y23{bottom:512.700000px;}
.yae{bottom:519.555000px;}
.y7a{bottom:520.635000px;}
.y22{bottom:528.180000px;}
.y14{bottom:529.080000px;}
.yad{bottom:536.835000px;}
.y79{bottom:537.915000px;}
.y21{bottom:543.660000px;}
.y13{bottom:553.200000px;}
.yac{bottom:554.115000px;}
.y78{bottom:555.195000px;}
.yab{bottom:571.395000px;}
.y77{bottom:572.475000px;}
.y20{bottom:574.485000px;}
.y12{bottom:577.545000px;}
.yaa{bottom:588.495000px;}
.y76{bottom:589.215000px;}
.ya9{bottom:605.775000px;}
.y75{bottom:606.855000px;}
.ya8{bottom:622.695000px;}
.y74{bottom:624.135000px;}
.ya7{bottom:640.335000px;}
.y73{bottom:641.055000px;}
.ya6{bottom:657.615000px;}
.y72{bottom:658.695000px;}
.ya5{bottom:674.895000px;}
.y71{bottom:675.975000px;}
.ya4{bottom:692.025000px;}
.y70{bottom:693.105000px;}
.ya3{bottom:709.305000px;}
.y6f{bottom:710.025000px;}
.ya2{bottom:726.225000px;}
.y6e{bottom:727.665000px;}
.ya1{bottom:743.865000px;}
.y6d{bottom:744.945000px;}
.ya0{bottom:761.145000px;}
.y6c{bottom:762.225000px;}
.y9f{bottom:778.425000px;}
.y6b{bottom:779.505000px;}
.y9e{bottom:795.525000px;}
.y6a{bottom:796.605000px;}
.y9d{bottom:812.445000px;}
.y69{bottom:813.885000px;}
.y9c{bottom:830.085000px;}
.y68{bottom:831.165000px;}
.y9b{bottom:847.365000px;}
.y67{bottom:848.445000px;}
.ycf{bottom:861.405000px;}
.y9a{bottom:864.645000px;}
.y66{bottom:865.725000px;}
.yce{bottom:878.685000px;}
.y99{bottom:881.925000px;}
.y65{bottom:882.825000px;}
.ycd{bottom:895.785000px;}
.y98{bottom:899.025000px;}
.y64{bottom:900.105000px;}
.ycc{bottom:914.145000px;}
.y97{bottom:915.945000px;}
.y63{bottom:917.430000px;}
.ycb{bottom:931.470000px;}
.y96{bottom:933.630000px;}
.y62{bottom:934.710000px;}
.y10{bottom:935.070000px;}
.yf{bottom:941.730000px;}
.yca{bottom:949.830000px;}
.y95{bottom:950.910000px;}
.y61{bottom:951.990000px;}
.ye{bottom:959.010000px;}
.yc9{bottom:967.110000px;}
.y94{bottom:968.190000px;}
.y60{bottom:968.910000px;}
.yd{bottom:975.930000px;}
.y93{bottom:984.930000px;}
.yc8{bottom:985.290000px;}
.y5f{bottom:986.370000px;}
.yc{bottom:995.370000px;}
.y92{bottom:1002.570000px;}
.y5e{bottom:1003.650000px;}
.yb{bottom:1019.850000px;}
.yc7{bottom:1020.570000px;}
.y5d{bottom:1020.930000px;}
.y91{bottom:1037.130000px;}
.y5c{bottom:1037.850000px;}
.yc6{bottom:1038.210000px;}
.ya{bottom:1044.150000px;}
.y90{bottom:1054.410000px;}
.y5b{bottom:1055.490000px;}
.y9{bottom:1071.870000px;}
.y5a{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.y59{bottom:1089.870000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:8.905078px;}
.h11{height:27.540000px;}
.hd{height:40.985156px;}
.h14{height:41.726953px;}
.hc{height:42.086250px;}
.he{height:52.971680px;}
.h10{height:54.421875px;}
.h6{height:57.324375px;}
.h9{height:58.651172px;}
.h8{height:60.226875px;}
.h13{height:61.423863px;}
.h15{height:62.211094px;}
.h12{height:64.002656px;}
.h7{height:64.126055px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h2{height:84.990000px;}
.h4{height:117.180000px;}
.hf{height:211.890000px;}
.hb{height:587.070000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x19{left:8.085000px;}
.x4{left:12.765000px;}
.x14{left:15.471000px;}
.x6{left:17.265000px;}
.x17{left:20.691000px;}
.x16{left:23.751000px;}
.x15{left:27.171000px;}
.x1d{left:29.151000px;}
.xf{left:43.731000px;}
.x1c{left:47.691000px;}
.x10{left:50.751000px;}
.xe{left:55.071000px;}
.x1a{left:62.130000px;}
.x1e{left:66.225000px;}
.x13{left:68.205000px;}
.x12{left:75.585000px;}
.x1{left:78.300000px;}
.x7{left:86.436000px;}
.x2{left:95.790000px;}
.x1b{left:103.305000px;}
.x20{left:113.436000px;}
.x11{left:124.545000px;}
.x5{left:141.330000px;}
.x3{left:182.385000px;}
.x18{left:219.105000px;}
.xc{left:317.415000px;}
.xa{left:675.150000px;}
.xb{left:691.530000px;}
.x9{left:766.050000px;}
.x8{left:790.170000px;}
.xd{left:806.940000px;}
@media print{
.v2{vertical-align:-60.160000pt;}
.v1{vertical-align:-54.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.320000pt;}
.ls0{letter-spacing:25.120000pt;}
.ls9{letter-spacing:40.912640pt;}
.lsa{letter-spacing:56.912640pt;}
.ls2{letter-spacing:178.720000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws8{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.688000pt;}
.ws5{word-spacing:-12.112000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-6.830720pt;}
._1d{margin-left:-5.123200pt;}
._1b{margin-left:-3.700907pt;}
._1c{margin-left:-1.887573pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._4{width:2.083200pt;}
._6{width:3.360000pt;}
._9{width:4.704000pt;}
._e{width:6.270080pt;}
._3{width:7.488000pt;}
._2{width:8.460160pt;}
._8{width:9.408000pt;}
._7{width:10.512000pt;}
._1a{width:12.243627pt;}
._5{width:13.612160pt;}
._17{width:14.569387pt;}
._18{width:15.481173pt;}
._14{width:16.892160pt;}
._15{width:17.829120pt;}
._f{width:18.857600pt;}
._10{width:19.939840pt;}
._19{width:20.840107pt;}
._d{width:24.885547pt;}
._c{width:25.795200pt;}
._13{width:28.684800pt;}
._b{width:32.100053pt;}
._a{width:33.040640pt;}
._12{width:62.423680pt;}
._11{width:64.283520pt;}
._16{width:74.944000pt;}
.fs5{font-size:10.880000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.026667pt;}
.y4c{bottom:3.040000pt;}
.y5{bottom:3.680000pt;}
.y58{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4b{bottom:12.480000pt;}
.y40{bottom:17.106667pt;}
.y4{bottom:20.480000pt;}
.y3f{bottom:32.466667pt;}
.y55{bottom:32.960000pt;}
.y4a{bottom:33.920000pt;}
.y3{bottom:42.746667pt;}
.y49{bottom:45.440000pt;}
.y54{bottom:46.720000pt;}
.y3e{bottom:47.826667pt;}
.y8{bottom:52.000000pt;}
.y48{bottom:57.120000pt;}
.y53{bottom:62.240000pt;}
.y3d{bottom:62.866667pt;}
.y47{bottom:68.640000pt;}
.y7{bottom:69.920000pt;}
.y52{bottom:76.346667pt;}
.y3c{bottom:78.546667pt;}
.y46{bottom:80.346667pt;}
.y51{bottom:90.266667pt;}
.y3b{bottom:93.946667pt;}
.yc5{bottom:99.520000pt;}
.y45{bottom:99.706667pt;}
.y56{bottom:104.480000pt;}
.y50{bottom:105.626667pt;}
.y8f{bottom:106.240000pt;}
.y3a{bottom:109.146667pt;}
.yc4{bottom:114.880000pt;}
.y42{bottom:117.440000pt;}
.y4f{bottom:119.866667pt;}
.y8e{bottom:121.600000pt;}
.y39{bottom:124.186667pt;}
.yc3{bottom:130.240000pt;}
.y4e{bottom:133.626667pt;}
.y8d{bottom:136.960000pt;}
.y38{bottom:139.866667pt;}
.yc2{bottom:145.600000pt;}
.y4d{bottom:147.386667pt;}
.y8c{bottom:153.280000pt;}
.y44{bottom:154.906667pt;}
.y37{bottom:155.226667pt;}
.yc1{bottom:160.960000pt;}
.y43{bottom:164.186667pt;}
.y8b{bottom:168.640000pt;}
.y36{bottom:170.586667pt;}
.yc0{bottom:176.000000pt;}
.y8a{bottom:183.840000pt;}
.y35{bottom:185.946667pt;}
.ybf{bottom:191.546667pt;}
.y89{bottom:200.186667pt;}
.y34{bottom:201.146667pt;}
.ybe{bottom:207.866667pt;}
.y88{bottom:215.546667pt;}
.y33{bottom:216.506667pt;}
.ybd{bottom:223.226667pt;}
.y87{bottom:230.906667pt;}
.y32{bottom:231.866667pt;}
.y1f{bottom:234.266667pt;}
.ybc{bottom:239.546667pt;}
.y86{bottom:246.266667pt;}
.y31{bottom:247.226667pt;}
.y1e{bottom:255.706667pt;}
.ybb{bottom:255.866667pt;}
.y85{bottom:262.426667pt;}
.y30{bottom:262.586667pt;}
.yba{bottom:272.026667pt;}
.y1d{bottom:277.146667pt;}
.y2f{bottom:277.786667pt;}
.yb9{bottom:288.026667pt;}
.y2e{bottom:293.146667pt;}
.y1c{bottom:298.586667pt;}
.yb8{bottom:303.706667pt;}
.y11{bottom:306.440000pt;}
.y2d{bottom:308.213333pt;}
.y84{bottom:308.506667pt;}
.yb7{bottom:320.026667pt;}
.y1b{bottom:320.053333pt;}
.y83{bottom:323.866667pt;}
.y2c{bottom:331.413333pt;}
.yb6{bottom:335.386667pt;}
.y82{bottom:340.186667pt;}
.y1a{bottom:341.493333pt;}
.y2b{bottom:345.333333pt;}
.yb5{bottom:351.546667pt;}
.y81{bottom:355.386667pt;}
.y2a{bottom:359.093333pt;}
.y19{bottom:362.933333pt;}
.yb4{bottom:366.906667pt;}
.y80{bottom:370.746667pt;}
.y29{bottom:372.853333pt;}
.yb3{bottom:383.226667pt;}
.y18{bottom:384.533333pt;}
.y7f{bottom:386.106667pt;}
.y28{bottom:386.613333pt;}
.yb2{bottom:399.586667pt;}
.y27{bottom:400.533333pt;}
.y7e{bottom:401.186667pt;}
.y17{bottom:405.973333pt;}
.y26{bottom:414.293333pt;}
.yb1{bottom:414.946667pt;}
.y7d{bottom:416.866667pt;}
.y16{bottom:427.413333pt;}
.y25{bottom:428.053333pt;}
.yb0{bottom:430.946667pt;}
.y7c{bottom:432.226667pt;}
.y24{bottom:441.813333pt;}
.yaf{bottom:446.466667pt;}
.y7b{bottom:447.426667pt;}
.y15{bottom:448.853333pt;}
.y23{bottom:455.733333pt;}
.yae{bottom:461.826667pt;}
.y7a{bottom:462.786667pt;}
.y22{bottom:469.493333pt;}
.y14{bottom:470.293333pt;}
.yad{bottom:477.186667pt;}
.y79{bottom:478.146667pt;}
.y21{bottom:483.253333pt;}
.y13{bottom:491.733333pt;}
.yac{bottom:492.546667pt;}
.y78{bottom:493.506667pt;}
.yab{bottom:507.906667pt;}
.y77{bottom:508.866667pt;}
.y20{bottom:510.653333pt;}
.y12{bottom:513.373333pt;}
.yaa{bottom:523.106667pt;}
.y76{bottom:523.746667pt;}
.ya9{bottom:538.466667pt;}
.y75{bottom:539.426667pt;}
.ya8{bottom:553.506667pt;}
.y74{bottom:554.786667pt;}
.ya7{bottom:569.186667pt;}
.y73{bottom:569.826667pt;}
.ya6{bottom:584.546667pt;}
.y72{bottom:585.506667pt;}
.ya5{bottom:599.906667pt;}
.y71{bottom:600.866667pt;}
.ya4{bottom:615.133333pt;}
.y70{bottom:616.093333pt;}
.ya3{bottom:630.493333pt;}
.y6f{bottom:631.133333pt;}
.ya2{bottom:645.533333pt;}
.y6e{bottom:646.813333pt;}
.ya1{bottom:661.213333pt;}
.y6d{bottom:662.173333pt;}
.ya0{bottom:676.573333pt;}
.y6c{bottom:677.533333pt;}
.y9f{bottom:691.933333pt;}
.y6b{bottom:692.893333pt;}
.y9e{bottom:707.133333pt;}
.y6a{bottom:708.093333pt;}
.y9d{bottom:722.173333pt;}
.y69{bottom:723.453333pt;}
.y9c{bottom:737.853333pt;}
.y68{bottom:738.813333pt;}
.y9b{bottom:753.213333pt;}
.y67{bottom:754.173333pt;}
.ycf{bottom:765.693333pt;}
.y9a{bottom:768.573333pt;}
.y66{bottom:769.533333pt;}
.yce{bottom:781.053333pt;}
.y99{bottom:783.933333pt;}
.y65{bottom:784.733333pt;}
.ycd{bottom:796.253333pt;}
.y98{bottom:799.133333pt;}
.y64{bottom:800.093333pt;}
.ycc{bottom:812.573333pt;}
.y97{bottom:814.173333pt;}
.y63{bottom:815.493333pt;}
.ycb{bottom:827.973333pt;}
.y96{bottom:829.893333pt;}
.y62{bottom:830.853333pt;}
.y10{bottom:831.173333pt;}
.yf{bottom:837.093333pt;}
.yca{bottom:844.293333pt;}
.y95{bottom:845.253333pt;}
.y61{bottom:846.213333pt;}
.ye{bottom:852.453333pt;}
.yc9{bottom:859.653333pt;}
.y94{bottom:860.613333pt;}
.y60{bottom:861.253333pt;}
.yd{bottom:867.493333pt;}
.y93{bottom:875.493333pt;}
.yc8{bottom:875.813333pt;}
.y5f{bottom:876.773333pt;}
.yc{bottom:884.773333pt;}
.y92{bottom:891.173333pt;}
.y5e{bottom:892.133333pt;}
.yb{bottom:906.533333pt;}
.yc7{bottom:907.173333pt;}
.y5d{bottom:907.493333pt;}
.y91{bottom:921.893333pt;}
.y5c{bottom:922.533333pt;}
.yc6{bottom:922.853333pt;}
.ya{bottom:928.133333pt;}
.y90{bottom:937.253333pt;}
.y5b{bottom:938.213333pt;}
.y9{bottom:952.773333pt;}
.y5a{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.y59{bottom:968.773333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:7.915625pt;}
.h11{height:24.480000pt;}
.hd{height:36.431250pt;}
.h14{height:37.090625pt;}
.hc{height:37.410000pt;}
.he{height:47.085938pt;}
.h10{height:48.375000pt;}
.h6{height:50.955000pt;}
.h9{height:52.134375pt;}
.h8{height:53.535000pt;}
.h13{height:54.598989pt;}
.h15{height:55.298750pt;}
.h12{height:56.891250pt;}
.h7{height:57.000937pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h2{height:75.546667pt;}
.h4{height:104.160000pt;}
.hf{height:188.346667pt;}
.hb{height:521.840000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x19{left:7.186667pt;}
.x4{left:11.346667pt;}
.x14{left:13.752000pt;}
.x6{left:15.346667pt;}
.x17{left:18.392000pt;}
.x16{left:21.112000pt;}
.x15{left:24.152000pt;}
.x1d{left:25.912000pt;}
.xf{left:38.872000pt;}
.x1c{left:42.392000pt;}
.x10{left:45.112000pt;}
.xe{left:48.952000pt;}
.x1a{left:55.226667pt;}
.x1e{left:58.866667pt;}
.x13{left:60.626667pt;}
.x12{left:67.186667pt;}
.x1{left:69.600000pt;}
.x7{left:76.832000pt;}
.x2{left:85.146667pt;}
.x1b{left:91.826667pt;}
.x20{left:100.832000pt;}
.x11{left:110.706667pt;}
.x5{left:125.626667pt;}
.x3{left:162.120000pt;}
.x18{left:194.760000pt;}
.xc{left:282.146667pt;}
.xa{left:600.133333pt;}
.xb{left:614.693333pt;}
.x9{left:680.933333pt;}
.x8{left:702.373333pt;}
.xd{left:717.280000pt;}
}




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