
    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_a041914e8d6d11beb0740e43.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_6bc2346291f4a26ff2253d59.woff')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_026ef2d11be7d1d69dcaf85c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_6699f3c48e30f722d97cbe8d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_bd1f655b218b81bb4f0ed624.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_5b32ebf30d7e1f8ccf3276e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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);}
.v1{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.480000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.060000px;}
.ls6{letter-spacing:0.078000px;}
.lsd{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.lsc{letter-spacing:15.720000px;}
.lsb{letter-spacing:45.720000px;}
.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:-18.384000px;}
.ws7{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.100000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.000000px;}
.ws3{word-spacing:-12.900000px;}
.ws4{word-spacing:-11.136000px;}
.ws2{word-spacing:0.000000px;}
._18{margin-left:-2.424000px;}
._1{margin-left:-1.278000px;}
._0{width:1.122000px;}
._6{width:2.676000px;}
._9{width:4.446000px;}
._f{width:5.610000px;}
._c{width:6.840000px;}
._d{width:8.580000px;}
._8{width:10.470000px;}
._7{width:11.700000px;}
._a{width:13.260000px;}
._b{width:16.680000px;}
._10{width:18.678000px;}
._1b{width:19.980000px;}
._11{width:21.654000px;}
._12{width:23.040000px;}
._e{width:24.240000px;}
._16{width:25.416000px;}
._15{width:26.700000px;}
._1a{width:27.834000px;}
._13{width:31.620000px;}
._19{width:34.458000px;}
._17{width:35.580000px;}
._2{width:43.800000px;}
._14{width:51.900000px;}
._1c{width:78.762000px;}
._4{width:336.180000px;}
._3{width:1162.530000px;}
._5{width:1184.820000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.915000px;}
.y40{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y5{bottom:12.337500px;}
.y3f{bottom:23.100000px;}
.y3e{bottom:42.600000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3d{bottom:57.300000px;}
.y42{bottom:74.137500px;}
.y3c{bottom:74.400000px;}
.y3{bottom:81.337500px;}
.y3b{bottom:91.800000px;}
.y3a{bottom:108.900000px;}
.y2e{bottom:115.237500px;}
.y119{bottom:123.337500px;}
.y39{bottom:126.345000px;}
.ye0{bottom:127.237500px;}
.y2d{bottom:132.337500px;}
.y118{bottom:140.437500px;}
.y38{bottom:143.430000px;}
.ydf{bottom:144.337500px;}
.y2c{bottom:149.737500px;}
.y7c{bottom:150.630000px;}
.y117{bottom:157.830000px;}
.y37{bottom:160.845000px;}
.yde{bottom:161.745000px;}
.y2b{bottom:166.845000px;}
.y7b{bottom:168.045000px;}
.yac{bottom:168.930000px;}
.y116{bottom:174.930000px;}
.y36{bottom:177.945000px;}
.ydd{bottom:178.875000px;}
.y2a{bottom:184.275000px;}
.y7a{bottom:185.775000px;}
.y115{bottom:192.375000px;}
.y35{bottom:195.345000px;}
.ydc{bottom:196.275000px;}
.yab{bottom:198.075000px;}
.y29{bottom:201.375000px;}
.y79{bottom:203.775000px;}
.y114{bottom:209.475000px;}
.y34{bottom:212.445000px;}
.ydb{bottom:213.675000px;}
.yaa{bottom:215.475000px;}
.y78{bottom:218.175000px;}
.y28{bottom:218.775000px;}
.y113{bottom:226.875000px;}
.y33{bottom:229.845000px;}
.yda{bottom:232.275000px;}
.y77{bottom:235.575000px;}
.y27{bottom:235.875000px;}
.y112{bottom:243.975000px;}
.ya9{bottom:244.575000px;}
.y32{bottom:246.945000px;}
.yd9{bottom:249.675000px;}
.y76{bottom:252.675000px;}
.y26{bottom:253.275000px;}
.y111{bottom:261.375000px;}
.ya8{bottom:261.975000px;}
.y31{bottom:264.345000px;}
.yd8{bottom:266.775000px;}
.y75{bottom:269.775000px;}
.y25{bottom:270.375000px;}
.y110{bottom:278.475000px;}
.ya7{bottom:279.375000px;}
.y30{bottom:282.030000px;}
.yd7{bottom:284.175000px;}
.y74{bottom:287.475000px;}
.y24{bottom:287.775000px;}
.y10f{bottom:295.875000px;}
.ya6{bottom:296.475000px;}
.yd6{bottom:301.275000px;}
.y23{bottom:304.875000px;}
.y73{bottom:306.075000px;}
.y10e{bottom:312.975000px;}
.ya5{bottom:314.175000px;}
.yd5{bottom:318.675000px;}
.y22{bottom:322.275000px;}
.y72{bottom:323.475000px;}
.y10d{bottom:330.375000px;}
.ya4{bottom:332.175000px;}
.yd4{bottom:336.675000px;}
.y21{bottom:339.375000px;}
.y71{bottom:340.575000px;}
.ya3{bottom:346.620000px;}
.y10c{bottom:347.505000px;}
.yd3{bottom:351.405000px;}
.y20{bottom:356.820000px;}
.y70{bottom:358.005000px;}
.ya2{bottom:364.005000px;}
.y10b{bottom:364.905000px;}
.yd2{bottom:368.520000px;}
.y1f{bottom:373.920000px;}
.y6f{bottom:375.105000px;}
.ya1{bottom:381.120000px;}
.y10a{bottom:382.020000px;}
.yd1{bottom:385.920000px;}
.y1e{bottom:391.320000px;}
.y6e{bottom:392.520000px;}
.ya0{bottom:398.505000px;}
.y109{bottom:399.420000px;}
.yd0{bottom:403.005000px;}
.y1d{bottom:408.420000px;}
.y6d{bottom:409.920000px;}
.y9f{bottom:415.920000px;}
.y108{bottom:416.505000px;}
.ycf{bottom:420.420000px;}
.y1c{bottom:425.820000px;}
.y6c{bottom:427.920000px;}
.y9e{bottom:433.920000px;}
.yce{bottom:437.820000px;}
.y6b{bottom:442.320000px;}
.y1b{bottom:442.920000px;}
.y9d{bottom:448.320000px;}
.y107{bottom:451.005000px;}
.ycd{bottom:455.820000px;}
.y6a{bottom:459.705000px;}
.y1a{bottom:460.620000px;}
.y9c{bottom:465.705000px;}
.y106{bottom:468.420000px;}
.ycc{bottom:470.505000px;}
.y69{bottom:476.820000px;}
.y19{bottom:481.005000px;}
.y9b{bottom:482.820000px;}
.y105{bottom:485.505000px;}
.ycb{bottom:487.620000px;}
.y68{bottom:494.205000px;}
.y9a{bottom:500.220000px;}
.y104{bottom:502.920000px;}
.yca{bottom:505.020000px;}
.y67{bottom:511.320000px;}
.y99{bottom:517.350000px;}
.y103{bottom:520.050000px;}
.yc9{bottom:522.150000px;}
.y66{bottom:528.750000px;}
.y98{bottom:534.750000px;}
.y102{bottom:537.450000px;}
.yc8{bottom:539.550000px;}
.y65{bottom:545.850000px;}
.y101{bottom:554.550000px;}
.y2f{bottom:557.850000px;}
.yc7{bottom:558.450000px;}
.y97{bottom:559.050000px;}
.y64{bottom:563.250000px;}
.y100{bottom:571.950000px;}
.yc6{bottom:575.550000px;}
.y63{bottom:580.350000px;}
.y96{bottom:583.950000px;}
.yff{bottom:589.050000px;}
.yc5{bottom:592.950000px;}
.y62{bottom:597.750000px;}
.y95{bottom:601.350000px;}
.yfe{bottom:606.450000px;}
.yc4{bottom:610.050000px;}
.y61{bottom:614.850000px;}
.y94{bottom:618.750000px;}
.yfd{bottom:623.550000px;}
.yc3{bottom:627.750000px;}
.y122{bottom:628.050000px;}
.y60{bottom:632.250000px;}
.y93{bottom:636.150000px;}
.yfc{bottom:640.950000px;}
.y5f{bottom:649.350000px;}
.y121{bottom:652.650000px;}
.y92{bottom:655.050000px;}
.yc2{bottom:658.050000px;}
.y5e{bottom:666.750000px;}
.y91{bottom:672.150000px;}
.yfb{bottom:675.450000px;}
.y120{bottom:677.250000px;}
.y5d{bottom:684.195000px;}
.yc1{bottom:687.495000px;}
.y90{bottom:689.595000px;}
.yfa{bottom:692.595000px;}
.y11f{bottom:702.195000px;}
.y5c{bottom:703.095000px;}
.yc0{bottom:704.880000px;}
.y8f{bottom:706.695000px;}
.yf9{bottom:709.980000px;}
.y5b{bottom:720.195000px;}
.y8e{bottom:724.095000px;}
.y11e{bottom:726.780000px;}
.yf8{bottom:727.080000px;}
.ybf{bottom:733.995000px;}
.y5a{bottom:737.595000px;}
.y8d{bottom:741.195000px;}
.yf7{bottom:744.495000px;}
.ybe{bottom:751.395000px;}
.y59{bottom:754.695000px;}
.y8c{bottom:758.595000px;}
.yf6{bottom:761.595000px;}
.y58{bottom:772.080000px;}
.y11d{bottom:778.980000px;}
.yf5{bottom:779.295000px;}
.ybd{bottom:780.495000px;}
.y57{bottom:789.195000px;}
.y11c{bottom:796.080000px;}
.ybc{bottom:797.880000px;}
.yf4{bottom:798.795000px;}
.y56{bottom:806.580000px;}
.yf3{bottom:813.495000px;}
.ybb{bottom:815.295000px;}
.y55{bottom:823.695000px;}
.y8b{bottom:823.995000px;}
.yf2{bottom:830.580000px;}
.yba{bottom:832.380000px;}
.y54{bottom:841.080000px;}
.yf1{bottom:847.995000px;}
.yb9{bottom:849.825000px;}
.y53{bottom:858.225000px;}
.y8a{bottom:858.825000px;}
.yf0{bottom:865.125000px;}
.yb8{bottom:867.225000px;}
.y52{bottom:875.625000px;}
.y11b{bottom:882.525000px;}
.yef{bottom:882.825000px;}
.yb7{bottom:885.825000px;}
.y89{bottom:889.125000px;}
.y18{bottom:893.925000px;}
.y51{bottom:894.525000px;}
.y11a{bottom:899.625000px;}
.yee{bottom:902.325000px;}
.yb6{bottom:903.225000px;}
.y88{bottom:906.825000px;}
.y17{bottom:911.025000px;}
.y50{bottom:911.625000px;}
.yed{bottom:917.025000px;}
.yb5{bottom:920.325000px;}
.y87{bottom:923.925000px;}
.y4f{bottom:929.025000px;}
.y16{bottom:930.825000px;}
.yec{bottom:934.125000px;}
.yb4{bottom:937.725000px;}
.y86{bottom:941.325000px;}
.y4e{bottom:946.125000px;}
.y15{bottom:949.425000px;}
.yeb{bottom:951.525000px;}
.yb3{bottom:954.825000px;}
.y4d{bottom:963.525000px;}
.yea{bottom:968.625000px;}
.y85{bottom:971.925000px;}
.yb2{bottom:972.225000px;}
.y14{bottom:973.425000px;}
.y4c{bottom:980.625000px;}
.y13{bottom:985.725000px;}
.ye9{bottom:986.025000px;}
.y84{bottom:989.325000px;}
.y4b{bottom:998.325000px;}
.ye8{bottom:1003.125000px;}
.y83{bottom:1006.725000px;}
.y12{bottom:1008.225000px;}
.y4a{bottom:1016.955000px;}
.y11{bottom:1020.570000px;}
.yb1{bottom:1023.870000px;}
.y82{bottom:1024.170000px;}
.y49{bottom:1034.370000px;}
.ye7{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.yb0{bottom:1041.255000px;}
.y48{bottom:1051.455000px;}
.y81{bottom:1054.755000px;}
.ye6{bottom:1055.070000px;}
.yaf{bottom:1058.370000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y47{bottom:1068.870000px;}
.y80{bottom:1072.170000px;}
.ye5{bottom:1073.070000px;}
.yae{bottom:1076.070000px;}
.ya{bottom:1083.570000px;}
.y46{bottom:1085.955000px;}
.ye4{bottom:1087.755000px;}
.y7f{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y45{bottom:1103.370000px;}
.ye3{bottom:1104.870000px;}
.yad{bottom:1106.370000px;}
.y7e{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y44{bottom:1120.455000px;}
.ye2{bottom:1122.255000px;}
.y7d{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y43{bottom:1138.170000px;}
.ye1{bottom:1139.670000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.ha{height:21.000000px;}
.hc{height:28.636523px;}
.h7{height:33.867188px;}
.h11{height:34.664062px;}
.h14{height:34.710938px;}
.h3{height:36.000000px;}
.hd{height:38.100586px;}
.h8{height:39.049805px;}
.h12{height:39.471680px;}
.h4{height:42.333984px;}
.hf{height:43.388672px;}
.h15{height:43.681641px;}
.he{height:43.857422px;}
.h13{height:46.567383px;}
.h6{height:50.800781px;}
.hb{height:51.996094px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:298.875000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.w6{width:247.875000px;}
.w5{width:483.450000px;}
.w7{width:728.925000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.799998px;}
.xf{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x1{left:81.037487px;}
.xe{left:84.037500px;}
.x11{left:108.037487px;}
.xd{left:126.330000px;}
.x9{left:153.629987px;}
.xb{left:241.582500px;}
.x6{left:446.249987px;}
.xc{left:564.495000px;}
.x10{left:592.979987px;}
.x8{left:614.879987px;}
.x7{left:648.194987px;}
.x5{left:697.124987px;}
.xa{left:812.369987px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.053333pt;}
.ls6{letter-spacing:0.069333pt;}
.lsd{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.lsc{letter-spacing:13.973333pt;}
.lsb{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws7{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.200000pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws3{word-spacing:-11.466667pt;}
.ws4{word-spacing:-9.898667pt;}
.ws2{word-spacing:0.000000pt;}
._18{margin-left:-2.154667pt;}
._1{margin-left:-1.136000pt;}
._0{width:0.997333pt;}
._6{width:2.378667pt;}
._9{width:3.952000pt;}
._f{width:4.986667pt;}
._c{width:6.080000pt;}
._d{width:7.626667pt;}
._8{width:9.306667pt;}
._7{width:10.400000pt;}
._a{width:11.786667pt;}
._b{width:14.826667pt;}
._10{width:16.602667pt;}
._1b{width:17.760000pt;}
._11{width:19.248000pt;}
._12{width:20.480000pt;}
._e{width:21.546667pt;}
._16{width:22.592000pt;}
._15{width:23.733333pt;}
._1a{width:24.741333pt;}
._13{width:28.106667pt;}
._19{width:30.629333pt;}
._17{width:31.626667pt;}
._2{width:38.933333pt;}
._14{width:46.133333pt;}
._1c{width:70.010667pt;}
._4{width:298.826667pt;}
._3{width:1033.360000pt;}
._5{width:1053.173333pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.480000pt;}
.y40{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y5{bottom:10.966667pt;}
.y3f{bottom:20.533333pt;}
.y3e{bottom:37.866667pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3d{bottom:50.933333pt;}
.y42{bottom:65.900000pt;}
.y3c{bottom:66.133333pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:81.600000pt;}
.y3a{bottom:96.800000pt;}
.y2e{bottom:102.433333pt;}
.y119{bottom:109.633333pt;}
.y39{bottom:112.306667pt;}
.ye0{bottom:113.100000pt;}
.y2d{bottom:117.633333pt;}
.y118{bottom:124.833333pt;}
.y38{bottom:127.493333pt;}
.ydf{bottom:128.300000pt;}
.y2c{bottom:133.100000pt;}
.y7c{bottom:133.893333pt;}
.y117{bottom:140.293333pt;}
.y37{bottom:142.973333pt;}
.yde{bottom:143.773333pt;}
.y2b{bottom:148.306667pt;}
.y7b{bottom:149.373333pt;}
.yac{bottom:150.160000pt;}
.y116{bottom:155.493333pt;}
.y36{bottom:158.173333pt;}
.ydd{bottom:159.000000pt;}
.y2a{bottom:163.800000pt;}
.y7a{bottom:165.133333pt;}
.y115{bottom:171.000000pt;}
.y35{bottom:173.640000pt;}
.ydc{bottom:174.466667pt;}
.yab{bottom:176.066667pt;}
.y29{bottom:179.000000pt;}
.y79{bottom:181.133333pt;}
.y114{bottom:186.200000pt;}
.y34{bottom:188.840000pt;}
.ydb{bottom:189.933333pt;}
.yaa{bottom:191.533333pt;}
.y78{bottom:193.933333pt;}
.y28{bottom:194.466667pt;}
.y113{bottom:201.666667pt;}
.y33{bottom:204.306667pt;}
.yda{bottom:206.466667pt;}
.y77{bottom:209.400000pt;}
.y27{bottom:209.666667pt;}
.y112{bottom:216.866667pt;}
.ya9{bottom:217.400000pt;}
.y32{bottom:219.506667pt;}
.yd9{bottom:221.933333pt;}
.y76{bottom:224.600000pt;}
.y26{bottom:225.133333pt;}
.y111{bottom:232.333333pt;}
.ya8{bottom:232.866667pt;}
.y31{bottom:234.973333pt;}
.yd8{bottom:237.133333pt;}
.y75{bottom:239.800000pt;}
.y25{bottom:240.333333pt;}
.y110{bottom:247.533333pt;}
.ya7{bottom:248.333333pt;}
.y30{bottom:250.693333pt;}
.yd7{bottom:252.600000pt;}
.y74{bottom:255.533333pt;}
.y24{bottom:255.800000pt;}
.y10f{bottom:263.000000pt;}
.ya6{bottom:263.533333pt;}
.yd6{bottom:267.800000pt;}
.y23{bottom:271.000000pt;}
.y73{bottom:272.066667pt;}
.y10e{bottom:278.200000pt;}
.ya5{bottom:279.266667pt;}
.yd5{bottom:283.266667pt;}
.y22{bottom:286.466667pt;}
.y72{bottom:287.533333pt;}
.y10d{bottom:293.666667pt;}
.ya4{bottom:295.266667pt;}
.yd4{bottom:299.266667pt;}
.y21{bottom:301.666667pt;}
.y71{bottom:302.733333pt;}
.ya3{bottom:308.106667pt;}
.y10c{bottom:308.893333pt;}
.yd3{bottom:312.360000pt;}
.y20{bottom:317.173333pt;}
.y70{bottom:318.226667pt;}
.ya2{bottom:323.560000pt;}
.y10b{bottom:324.360000pt;}
.yd2{bottom:327.573333pt;}
.y1f{bottom:332.373333pt;}
.y6f{bottom:333.426667pt;}
.ya1{bottom:338.773333pt;}
.y10a{bottom:339.573333pt;}
.yd1{bottom:343.040000pt;}
.y1e{bottom:347.840000pt;}
.y6e{bottom:348.906667pt;}
.ya0{bottom:354.226667pt;}
.y109{bottom:355.040000pt;}
.yd0{bottom:358.226667pt;}
.y1d{bottom:363.040000pt;}
.y6d{bottom:364.373333pt;}
.y9f{bottom:369.706667pt;}
.y108{bottom:370.226667pt;}
.ycf{bottom:373.706667pt;}
.y1c{bottom:378.506667pt;}
.y6c{bottom:380.373333pt;}
.y9e{bottom:385.706667pt;}
.yce{bottom:389.173333pt;}
.y6b{bottom:393.173333pt;}
.y1b{bottom:393.706667pt;}
.y9d{bottom:398.506667pt;}
.y107{bottom:400.893333pt;}
.ycd{bottom:405.173333pt;}
.y6a{bottom:408.626667pt;}
.y1a{bottom:409.440000pt;}
.y9c{bottom:413.960000pt;}
.y106{bottom:416.373333pt;}
.ycc{bottom:418.226667pt;}
.y69{bottom:423.840000pt;}
.y19{bottom:427.560000pt;}
.y9b{bottom:429.173333pt;}
.y105{bottom:431.560000pt;}
.ycb{bottom:433.440000pt;}
.y68{bottom:439.293333pt;}
.y9a{bottom:444.640000pt;}
.y104{bottom:447.040000pt;}
.yca{bottom:448.906667pt;}
.y67{bottom:454.506667pt;}
.y99{bottom:459.866667pt;}
.y103{bottom:462.266667pt;}
.yc9{bottom:464.133333pt;}
.y66{bottom:470.000000pt;}
.y98{bottom:475.333333pt;}
.y102{bottom:477.733333pt;}
.yc8{bottom:479.600000pt;}
.y65{bottom:485.200000pt;}
.y101{bottom:492.933333pt;}
.y2f{bottom:495.866667pt;}
.yc7{bottom:496.400000pt;}
.y97{bottom:496.933333pt;}
.y64{bottom:500.666667pt;}
.y100{bottom:508.400000pt;}
.yc6{bottom:511.600000pt;}
.y63{bottom:515.866667pt;}
.y96{bottom:519.066667pt;}
.yff{bottom:523.600000pt;}
.yc5{bottom:527.066667pt;}
.y62{bottom:531.333333pt;}
.y95{bottom:534.533333pt;}
.yfe{bottom:539.066667pt;}
.yc4{bottom:542.266667pt;}
.y61{bottom:546.533333pt;}
.y94{bottom:550.000000pt;}
.yfd{bottom:554.266667pt;}
.yc3{bottom:558.000000pt;}
.y122{bottom:558.266667pt;}
.y60{bottom:562.000000pt;}
.y93{bottom:565.466667pt;}
.yfc{bottom:569.733333pt;}
.y5f{bottom:577.200000pt;}
.y121{bottom:580.133333pt;}
.y92{bottom:582.266667pt;}
.yc2{bottom:584.933333pt;}
.y5e{bottom:592.666667pt;}
.y91{bottom:597.466667pt;}
.yfb{bottom:600.400000pt;}
.y120{bottom:602.000000pt;}
.y5d{bottom:608.173333pt;}
.yc1{bottom:611.106667pt;}
.y90{bottom:612.973333pt;}
.yfa{bottom:615.640000pt;}
.y11f{bottom:624.173333pt;}
.y5c{bottom:624.973333pt;}
.yc0{bottom:626.560000pt;}
.y8f{bottom:628.173333pt;}
.yf9{bottom:631.093333pt;}
.y5b{bottom:640.173333pt;}
.y8e{bottom:643.640000pt;}
.y11e{bottom:646.026667pt;}
.yf8{bottom:646.293333pt;}
.ybf{bottom:652.440000pt;}
.y5a{bottom:655.640000pt;}
.y8d{bottom:658.840000pt;}
.yf7{bottom:661.773333pt;}
.ybe{bottom:667.906667pt;}
.y59{bottom:670.840000pt;}
.y8c{bottom:674.306667pt;}
.yf6{bottom:676.973333pt;}
.y58{bottom:686.293333pt;}
.y11d{bottom:692.426667pt;}
.yf5{bottom:692.706667pt;}
.ybd{bottom:693.773333pt;}
.y57{bottom:701.506667pt;}
.y11c{bottom:707.626667pt;}
.ybc{bottom:709.226667pt;}
.yf4{bottom:710.040000pt;}
.y56{bottom:716.960000pt;}
.yf3{bottom:723.106667pt;}
.ybb{bottom:724.706667pt;}
.y55{bottom:732.173333pt;}
.y8b{bottom:732.440000pt;}
.yf2{bottom:738.293333pt;}
.yba{bottom:739.893333pt;}
.y54{bottom:747.626667pt;}
.yf1{bottom:753.773333pt;}
.yb9{bottom:755.400000pt;}
.y53{bottom:762.866667pt;}
.y8a{bottom:763.400000pt;}
.yf0{bottom:769.000000pt;}
.yb8{bottom:770.866667pt;}
.y52{bottom:778.333333pt;}
.y11b{bottom:784.466667pt;}
.yef{bottom:784.733333pt;}
.yb7{bottom:787.400000pt;}
.y89{bottom:790.333333pt;}
.y18{bottom:794.600000pt;}
.y51{bottom:795.133333pt;}
.y11a{bottom:799.666667pt;}
.yee{bottom:802.066667pt;}
.yb6{bottom:802.866667pt;}
.y88{bottom:806.066667pt;}
.y17{bottom:809.800000pt;}
.y50{bottom:810.333333pt;}
.yed{bottom:815.133333pt;}
.yb5{bottom:818.066667pt;}
.y87{bottom:821.266667pt;}
.y4f{bottom:825.800000pt;}
.y16{bottom:827.400000pt;}
.yec{bottom:830.333333pt;}
.yb4{bottom:833.533333pt;}
.y86{bottom:836.733333pt;}
.y4e{bottom:841.000000pt;}
.y15{bottom:843.933333pt;}
.yeb{bottom:845.800000pt;}
.yb3{bottom:848.733333pt;}
.y4d{bottom:856.466667pt;}
.yea{bottom:861.000000pt;}
.y85{bottom:863.933333pt;}
.yb2{bottom:864.200000pt;}
.y14{bottom:865.266667pt;}
.y4c{bottom:871.666667pt;}
.y13{bottom:876.200000pt;}
.ye9{bottom:876.466667pt;}
.y84{bottom:879.400000pt;}
.y4b{bottom:887.400000pt;}
.ye8{bottom:891.666667pt;}
.y83{bottom:894.866667pt;}
.y12{bottom:896.200000pt;}
.y4a{bottom:903.960000pt;}
.y11{bottom:907.173333pt;}
.yb1{bottom:910.106667pt;}
.y82{bottom:910.373333pt;}
.y49{bottom:919.440000pt;}
.ye7{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.yb0{bottom:925.560000pt;}
.y48{bottom:934.626667pt;}
.y81{bottom:937.560000pt;}
.ye6{bottom:937.840000pt;}
.yaf{bottom:940.773333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y47{bottom:950.106667pt;}
.y80{bottom:953.040000pt;}
.ye5{bottom:953.840000pt;}
.yae{bottom:956.506667pt;}
.ya{bottom:963.173333pt;}
.y46{bottom:965.293333pt;}
.ye4{bottom:966.893333pt;}
.y7f{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y45{bottom:980.773333pt;}
.ye3{bottom:982.106667pt;}
.yad{bottom:983.440000pt;}
.y7e{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y44{bottom:995.960000pt;}
.ye2{bottom:997.560000pt;}
.y7d{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y43{bottom:1011.706667pt;}
.ye1{bottom:1013.040000pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.ha{height:18.666667pt;}
.hc{height:25.454687pt;}
.h7{height:30.104167pt;}
.h11{height:30.812500pt;}
.h14{height:30.854167pt;}
.h3{height:32.000000pt;}
.hd{height:33.867188pt;}
.h8{height:34.710938pt;}
.h12{height:35.085938pt;}
.h4{height:37.630208pt;}
.hf{height:38.567708pt;}
.h15{height:38.828125pt;}
.he{height:38.984375pt;}
.h13{height:41.393229pt;}
.h6{height:45.156250pt;}
.hb{height:46.218750pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:265.666667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.w6{width:220.333333pt;}
.w5{width:429.733333pt;}
.w7{width:647.933333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.599999pt;}
.xf{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x1{left:72.033322pt;}
.xe{left:74.700000pt;}
.x11{left:96.033322pt;}
.xd{left:112.293333pt;}
.x9{left:136.559988pt;}
.xb{left:214.740000pt;}
.x6{left:396.666655pt;}
.xc{left:501.773333pt;}
.x10{left:527.093322pt;}
.x8{left:546.559988pt;}
.x7{left:576.173322pt;}
.x5{left:619.666655pt;}
.xa{left:722.106655pt;}
}




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