
    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_7069f689dae57508d2417446.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_64fe4908fa529c3eadac8439.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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e042a0b7c3059d23dd846f12.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_89118753fd28feb53d792afd.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_352ae6e7a596cbfcdb84a6b8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_049b67c8a555dcd9b4d9ac1d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_9464b39cc0e220ec33f2a35b.woff')format("woff");}.ffa{font-family:ffa;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:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.ls9{letter-spacing:6.426720px;}
.lsa{letter-spacing:10.026720px;}
.ls8{letter-spacing:22.986720px;}
.lsb{letter-spacing:26.586720px;}
.ls7{letter-spacing:39.522720px;}
.lsc{letter-spacing:41.682720px;}
.ls4{letter-spacing:64.002720px;}
.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:-59.760000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._6{width:2.590320px;}
._2{width:3.960960px;}
._c{width:5.848800px;}
._8{width:6.872400px;}
._7{width:8.127360px;}
._9{width:9.181680px;}
._10{width:10.458000px;}
._e{width:12.421200px;}
._d{width:13.744800px;}
._19{width:16.023360px;}
._5{width:17.031600px;}
._13{width:18.876480px;}
._11{width:20.009520px;}
._b{width:21.155040px;}
._a{width:22.170960px;}
._12{width:23.963760px;}
._18{width:25.094160px;}
._15{width:26.466480px;}
._14{width:27.661200px;}
._f{width:30.171120px;}
._16{width:79.301280px;}
._4{width:85.656000px;}
._17{width:112.011600px;}
._3{width:687.306000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:3.240000px;}
.yc{bottom:36.720000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y41{bottom:113.436000px;}
.yc7{bottom:114.516000px;}
.y77{bottom:114.696000px;}
.y114{bottom:115.776000px;}
.ybd{bottom:117.216000px;}
.y40{bottom:130.716000px;}
.yc6{bottom:131.796000px;}
.y76{bottom:131.976000px;}
.y113{bottom:133.056000px;}
.ybc{bottom:134.496000px;}
.ye5{bottom:137.916000px;}
.y3f{bottom:147.996000px;}
.yc5{bottom:149.076000px;}
.y75{bottom:149.256000px;}
.y112{bottom:150.150000px;}
.ybb{bottom:151.770000px;}
.ye4{bottom:155.190000px;}
.y3e{bottom:165.270000px;}
.y99{bottom:166.170000px;}
.y74{bottom:166.350000px;}
.y111{bottom:167.430000px;}
.yba{bottom:169.050000px;}
.ye3{bottom:173.550000px;}
.y3d{bottom:182.550000px;}
.y98{bottom:183.450000px;}
.y73{bottom:183.630000px;}
.y110{bottom:184.710000px;}
.yb9{bottom:186.150000px;}
.ye2{bottom:190.830000px;}
.y97{bottom:197.490000px;}
.y3c{bottom:199.830000px;}
.y72{bottom:200.910000px;}
.y10f{bottom:201.990000px;}
.yb8{bottom:203.430000px;}
.ye1{bottom:208.110000px;}
.y3b{bottom:216.930000px;}
.y71{bottom:218.190000px;}
.y10e{bottom:219.270000px;}
.yb7{bottom:220.710000px;}
.ye0{bottom:225.210000px;}
.y3a{bottom:234.210000px;}
.y70{bottom:235.470000px;}
.y10d{bottom:236.550000px;}
.yb6{bottom:237.990000px;}
.ydf{bottom:239.250000px;}
.y39{bottom:251.490000px;}
.y6f{bottom:252.750000px;}
.y10c{bottom:253.650000px;}
.yb5{bottom:255.270000px;}
.y38{bottom:268.770000px;}
.y6e{bottom:269.850000px;}
.y10b{bottom:270.930000px;}
.yb4{bottom:272.550000px;}
.y37{bottom:286.050000px;}
.y6d{bottom:287.130000px;}
.y10a{bottom:288.210000px;}
.yb3{bottom:289.650000px;}
.y36{bottom:303.330000px;}
.y6c{bottom:304.410000px;}
.y109{bottom:305.490000px;}
.yb2{bottom:306.930000px;}
.y35{bottom:320.430000px;}
.y6b{bottom:321.690000px;}
.y108{bottom:322.770000px;}
.yb1{bottom:324.210000px;}
.yd9{bottom:334.110000px;}
.y34{bottom:337.755000px;}
.y6a{bottom:339.015000px;}
.y107{bottom:340.095000px;}
.yb0{bottom:341.535000px;}
.yd8{bottom:348.915000px;}
.y33{bottom:355.035000px;}
.y69{bottom:356.295000px;}
.y106{bottom:357.195000px;}
.yaf{bottom:358.815000px;}
.yd7{bottom:366.915000px;}
.y32{bottom:372.315000px;}
.y68{bottom:373.395000px;}
.y105{bottom:374.475000px;}
.yae{bottom:376.095000px;}
.yd6{bottom:384.915000px;}
.y31{bottom:389.595000px;}
.y67{bottom:390.675000px;}
.y104{bottom:391.755000px;}
.yad{bottom:393.195000px;}
.yd5{bottom:402.915000px;}
.y30{bottom:406.875000px;}
.y66{bottom:407.955000px;}
.y103{bottom:409.035000px;}
.yac{bottom:410.475000px;}
.y2f{bottom:423.975000px;}
.yd4{bottom:424.155000px;}
.y65{bottom:425.235000px;}
.y102{bottom:426.315000px;}
.yab{bottom:427.755000px;}
.y2e{bottom:441.255000px;}
.yd3{bottom:441.435000px;}
.y64{bottom:442.515000px;}
.y101{bottom:443.595000px;}
.yaa{bottom:445.035000px;}
.y2d{bottom:458.535000px;}
.yd2{bottom:458.715000px;}
.y63{bottom:459.615000px;}
.y100{bottom:460.695000px;}
.ya9{bottom:462.315000px;}
.y96{bottom:463.935000px;}
.y2c{bottom:475.815000px;}
.yd1{bottom:475.995000px;}
.y62{bottom:476.895000px;}
.yff{bottom:477.975000px;}
.ya8{bottom:479.595000px;}
.y95{bottom:481.215000px;}
.y2b{bottom:493.095000px;}
.yd0{bottom:493.275000px;}
.y61{bottom:494.175000px;}
.yfe{bottom:495.255000px;}
.ya7{bottom:496.695000px;}
.y94{bottom:498.495000px;}
.y2a{bottom:510.195000px;}
.ycf{bottom:510.375000px;}
.y60{bottom:511.455000px;}
.yfd{bottom:512.535000px;}
.ya6{bottom:513.975000px;}
.y93{bottom:515.775000px;}
.y29{bottom:527.475000px;}
.yce{bottom:527.655000px;}
.y5f{bottom:528.735000px;}
.yfc{bottom:529.815000px;}
.ya5{bottom:531.255000px;}
.y92{bottom:533.055000px;}
.ycd{bottom:541.695000px;}
.y5e{bottom:546.015000px;}
.yfb{bottom:546.915000px;}
.y28{bottom:547.455000px;}
.ya4{bottom:548.535000px;}
.y91{bottom:550.335000px;}
.y5d{bottom:563.115000px;}
.yfa{bottom:564.195000px;}
.y27{bottom:564.735000px;}
.ya3{bottom:565.815000px;}
.y90{bottom:567.435000px;}
.yf9{bottom:578.235000px;}
.y5c{bottom:580.395000px;}
.y26{bottom:581.835000px;}
.ya2{bottom:582.915000px;}
.y8f{bottom:584.715000px;}
.yc4{bottom:597.495000px;}
.y5b{bottom:597.675000px;}
.y25{bottom:599.115000px;}
.yf8{bottom:599.295000px;}
.ya1{bottom:600.195000px;}
.y8e{bottom:601.995000px;}
.yde{bottom:610.845000px;}
.yc3{bottom:612.285000px;}
.y5a{bottom:614.985000px;}
.y24{bottom:616.425000px;}
.ya0{bottom:617.505000px;}
.y8d{bottom:619.305000px;}
.yf7{bottom:620.205000px;}
.ydd{bottom:628.125000px;}
.yc2{bottom:630.285000px;}
.y59{bottom:632.265000px;}
.y23{bottom:633.705000px;}
.y9f{bottom:634.785000px;}
.y8c{bottom:636.585000px;}
.ydc{bottom:645.405000px;}
.yf6{bottom:645.945000px;}
.yc1{bottom:648.285000px;}
.y58{bottom:649.545000px;}
.y22{bottom:650.985000px;}
.y9e{bottom:652.065000px;}
.y8b{bottom:653.685000px;}
.ydb{bottom:662.505000px;}
.yf5{bottom:663.225000px;}
.yc0{bottom:666.285000px;}
.y57{bottom:666.645000px;}
.y21{bottom:668.085000px;}
.y9d{bottom:669.345000px;}
.y8a{bottom:670.965000px;}
.yda{bottom:676.545000px;}
.yf4{bottom:680.505000px;}
.y56{bottom:683.925000px;}
.ybe{bottom:684.285000px;}
.y20{bottom:685.365000px;}
.y9c{bottom:686.445000px;}
.y89{bottom:688.245000px;}
.yf3{bottom:700.485000px;}
.y55{bottom:701.205000px;}
.y1f{bottom:702.645000px;}
.y9b{bottom:703.725000px;}
.y88{bottom:705.525000px;}
.y9a{bottom:717.765000px;}
.y54{bottom:718.485000px;}
.y1e{bottom:719.925000px;}
.yf2{bottom:720.825000px;}
.y87{bottom:722.805000px;}
.y53{bottom:735.765000px;}
.y1d{bottom:737.205000px;}
.y86{bottom:740.085000px;}
.yf1{bottom:741.705000px;}
.y52{bottom:752.865000px;}
.y1c{bottom:754.485000px;}
.y85{bottom:757.185000px;}
.yf0{bottom:762.765000px;}
.y51{bottom:770.145000px;}
.y1b{bottom:771.585000px;}
.y84{bottom:774.465000px;}
.yef{bottom:783.825000px;}
.y50{bottom:787.425000px;}
.y1a{bottom:788.865000px;}
.y83{bottom:791.745000px;}
.y4f{bottom:804.705000px;}
.y19{bottom:806.145000px;}
.yee{bottom:807.945000px;}
.y82{bottom:809.025000px;}
.y4e{bottom:821.985000px;}
.y18{bottom:823.425000px;}
.y81{bottom:826.305000px;}
.y4d{bottom:839.265000px;}
.y17{bottom:840.705000px;}
.y80{bottom:843.585000px;}
.y4c{bottom:856.365000px;}
.y16{bottom:857.985000px;}
.y7f{bottom:860.685000px;}
.y4b{bottom:873.690000px;}
.yed{bottom:874.770000px;}
.y15{bottom:876.210000px;}
.y7e{bottom:878.010000px;}
.y4a{bottom:892.050000px;}
.y14{bottom:894.030000px;}
.y7d{bottom:895.290000px;}
.y49{bottom:909.330000px;}
.y7c{bottom:912.570000px;}
.y13{bottom:918.870000px;}
.yec{bottom:926.610000px;}
.y48{bottom:927.690000px;}
.y7b{bottom:929.850000px;}
.y12{bottom:932.010000px;}
.ycc{bottom:943.350000px;}
.yeb{bottom:943.890000px;}
.y47{bottom:944.970000px;}
.y7a{bottom:947.130000px;}
.y11{bottom:950.910000px;}
.ycb{bottom:958.110000px;}
.yea{bottom:962.070000px;}
.y46{bottom:963.150000px;}
.y79{bottom:964.230000px;}
.y10{bottom:969.810000px;}
.yca{bottom:976.110000px;}
.ye9{bottom:979.350000px;}
.y45{bottom:980.430000px;}
.y78{bottom:981.510000px;}
.yf{bottom:989.070000px;}
.yc9{bottom:994.110000px;}
.ye8{bottom:996.630000px;}
.y44{bottom:998.790000px;}
.ye{bottom:1009.770000px;}
.yc8{bottom:1012.110000px;}
.ye7{bottom:1014.990000px;}
.y43{bottom:1016.070000px;}
.yd{bottom:1030.470000px;}
.ye6{bottom:1032.270000px;}
.y42{bottom:1033.350000px;}
.y9{bottom:1051.710000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1087.890000px;}
.y6{bottom:1105.890000px;}
.y5{bottom:1122.630000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.he{height:17.100000px;}
.hd{height:17.280000px;}
.ha{height:30.198516px;}
.h7{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.hb{height:43.506914px;}
.hf{height:45.461953px;}
.h8{height:46.736719px;}
.h3{height:47.901094px;}
.hc{height:48.496641px;}
.h4{height:50.800781px;}
.h9{height:53.224453px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:72.756000px;}
.w7{width:75.060000px;}
.wa{width:81.756000px;}
.w8{width:82.620000px;}
.w9{width:117.540000px;}
.w4{width:124.236000px;}
.w3{width:131.580000px;}
.w5{width:136.296000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.560000px;}
.x2{left:108.035987px;}
.x1{left:128.015987px;}
.x9{left:130.715987px;}
.xf{left:135.035987px;}
.xd{left:152.309987px;}
.x8{left:158.429987px;}
.x10{left:162.029987px;}
.x5{left:167.069987px;}
.x14{left:198.569987px;}
.x16{left:201.089987px;}
.x1f{left:261.930000px;}
.x2d{left:274.529987px;}
.x18{left:298.334987px;}
.x1d{left:303.374987px;}
.x1e{left:308.954987px;}
.x28{left:317.054987px;}
.x19{left:318.315000px;}
.x31{left:321.554987px;}
.x24{left:328.034987px;}
.x17{left:346.394987px;}
.xc{left:362.054987px;}
.x11{left:363.854987px;}
.xa{left:366.914987px;}
.xb{left:369.614987px;}
.xe{left:373.574987px;}
.x12{left:384.554987px;}
.x7{left:386.354987px;}
.x30{left:395.714987px;}
.x20{left:398.955000px;}
.x2f{left:407.414987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x1b{left:450.615000px;}
.x25{left:464.835000px;}
.x21{left:472.605000px;}
.x2e{left:506.264987px;}
.x2a{left:516.164987px;}
.x4{left:518.504987px;}
.x22{left:548.565000px;}
.x29{left:571.424987px;}
.x2b{left:633.884987px;}
.x13{left:692.609987px;}
.x15{left:693.689987px;}
.x2c{left:702.869987px;}
.x27{left:753.089987px;}
.x26{left:755.069987px;}
.x1c{left:776.669987px;}
.x23{left:778.469987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls9{letter-spacing:5.712640pt;}
.lsa{letter-spacing:8.912640pt;}
.ls8{letter-spacing:20.432640pt;}
.lsb{letter-spacing:23.632640pt;}
.ls7{letter-spacing:35.131307pt;}
.lsc{letter-spacing:37.051307pt;}
.ls4{letter-spacing:56.891307pt;}
.ws6{word-spacing:-53.120000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._6{width:2.302507pt;}
._2{width:3.520853pt;}
._c{width:5.198933pt;}
._8{width:6.108800pt;}
._7{width:7.224320pt;}
._9{width:8.161493pt;}
._10{width:9.296000pt;}
._e{width:11.041067pt;}
._d{width:12.217600pt;}
._19{width:14.242987pt;}
._5{width:15.139200pt;}
._13{width:16.779093pt;}
._11{width:17.786240pt;}
._b{width:18.804480pt;}
._a{width:19.707520pt;}
._12{width:21.301120pt;}
._18{width:22.305920pt;}
._15{width:23.525760pt;}
._14{width:24.587733pt;}
._f{width:26.818773pt;}
._16{width:70.490027pt;}
._4{width:76.138667pt;}
._17{width:99.565867pt;}
._3{width:610.938667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:2.880000pt;}
.yc{bottom:32.640000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y41{bottom:100.832000pt;}
.yc7{bottom:101.792000pt;}
.y77{bottom:101.952000pt;}
.y114{bottom:102.912000pt;}
.ybd{bottom:104.192000pt;}
.y40{bottom:116.192000pt;}
.yc6{bottom:117.152000pt;}
.y76{bottom:117.312000pt;}
.y113{bottom:118.272000pt;}
.ybc{bottom:119.552000pt;}
.ye5{bottom:122.592000pt;}
.y3f{bottom:131.552000pt;}
.yc5{bottom:132.512000pt;}
.y75{bottom:132.672000pt;}
.y112{bottom:133.466667pt;}
.ybb{bottom:134.906667pt;}
.ye4{bottom:137.946667pt;}
.y3e{bottom:146.906667pt;}
.y99{bottom:147.706667pt;}
.y74{bottom:147.866667pt;}
.y111{bottom:148.826667pt;}
.yba{bottom:150.266667pt;}
.ye3{bottom:154.266667pt;}
.y3d{bottom:162.266667pt;}
.y98{bottom:163.066667pt;}
.y73{bottom:163.226667pt;}
.y110{bottom:164.186667pt;}
.yb9{bottom:165.466667pt;}
.ye2{bottom:169.626667pt;}
.y97{bottom:175.546667pt;}
.y3c{bottom:177.626667pt;}
.y72{bottom:178.586667pt;}
.y10f{bottom:179.546667pt;}
.yb8{bottom:180.826667pt;}
.ye1{bottom:184.986667pt;}
.y3b{bottom:192.826667pt;}
.y71{bottom:193.946667pt;}
.y10e{bottom:194.906667pt;}
.yb7{bottom:196.186667pt;}
.ye0{bottom:200.186667pt;}
.y3a{bottom:208.186667pt;}
.y70{bottom:209.306667pt;}
.y10d{bottom:210.266667pt;}
.yb6{bottom:211.546667pt;}
.ydf{bottom:212.666667pt;}
.y39{bottom:223.546667pt;}
.y6f{bottom:224.666667pt;}
.y10c{bottom:225.466667pt;}
.yb5{bottom:226.906667pt;}
.y38{bottom:238.906667pt;}
.y6e{bottom:239.866667pt;}
.y10b{bottom:240.826667pt;}
.yb4{bottom:242.266667pt;}
.y37{bottom:254.266667pt;}
.y6d{bottom:255.226667pt;}
.y10a{bottom:256.186667pt;}
.yb3{bottom:257.466667pt;}
.y36{bottom:269.626667pt;}
.y6c{bottom:270.586667pt;}
.y109{bottom:271.546667pt;}
.yb2{bottom:272.826667pt;}
.y35{bottom:284.826667pt;}
.y6b{bottom:285.946667pt;}
.y108{bottom:286.906667pt;}
.yb1{bottom:288.186667pt;}
.yd9{bottom:296.986667pt;}
.y34{bottom:300.226667pt;}
.y6a{bottom:301.346667pt;}
.y107{bottom:302.306667pt;}
.yb0{bottom:303.586667pt;}
.yd8{bottom:310.146667pt;}
.y33{bottom:315.586667pt;}
.y69{bottom:316.706667pt;}
.y106{bottom:317.506667pt;}
.yaf{bottom:318.946667pt;}
.yd7{bottom:326.146667pt;}
.y32{bottom:330.946667pt;}
.y68{bottom:331.906667pt;}
.y105{bottom:332.866667pt;}
.yae{bottom:334.306667pt;}
.yd6{bottom:342.146667pt;}
.y31{bottom:346.306667pt;}
.y67{bottom:347.266667pt;}
.y104{bottom:348.226667pt;}
.yad{bottom:349.506667pt;}
.yd5{bottom:358.146667pt;}
.y30{bottom:361.666667pt;}
.y66{bottom:362.626667pt;}
.y103{bottom:363.586667pt;}
.yac{bottom:364.866667pt;}
.y2f{bottom:376.866667pt;}
.yd4{bottom:377.026667pt;}
.y65{bottom:377.986667pt;}
.y102{bottom:378.946667pt;}
.yab{bottom:380.226667pt;}
.y2e{bottom:392.226667pt;}
.yd3{bottom:392.386667pt;}
.y64{bottom:393.346667pt;}
.y101{bottom:394.306667pt;}
.yaa{bottom:395.586667pt;}
.y2d{bottom:407.586667pt;}
.yd2{bottom:407.746667pt;}
.y63{bottom:408.546667pt;}
.y100{bottom:409.506667pt;}
.ya9{bottom:410.946667pt;}
.y96{bottom:412.386667pt;}
.y2c{bottom:422.946667pt;}
.yd1{bottom:423.106667pt;}
.y62{bottom:423.906667pt;}
.yff{bottom:424.866667pt;}
.ya8{bottom:426.306667pt;}
.y95{bottom:427.746667pt;}
.y2b{bottom:438.306667pt;}
.yd0{bottom:438.466667pt;}
.y61{bottom:439.266667pt;}
.yfe{bottom:440.226667pt;}
.ya7{bottom:441.506667pt;}
.y94{bottom:443.106667pt;}
.y2a{bottom:453.506667pt;}
.ycf{bottom:453.666667pt;}
.y60{bottom:454.626667pt;}
.yfd{bottom:455.586667pt;}
.ya6{bottom:456.866667pt;}
.y93{bottom:458.466667pt;}
.y29{bottom:468.866667pt;}
.yce{bottom:469.026667pt;}
.y5f{bottom:469.986667pt;}
.yfc{bottom:470.946667pt;}
.ya5{bottom:472.226667pt;}
.y92{bottom:473.826667pt;}
.ycd{bottom:481.506667pt;}
.y5e{bottom:485.346667pt;}
.yfb{bottom:486.146667pt;}
.y28{bottom:486.626667pt;}
.ya4{bottom:487.586667pt;}
.y91{bottom:489.186667pt;}
.y5d{bottom:500.546667pt;}
.yfa{bottom:501.506667pt;}
.y27{bottom:501.986667pt;}
.ya3{bottom:502.946667pt;}
.y90{bottom:504.386667pt;}
.yf9{bottom:513.986667pt;}
.y5c{bottom:515.906667pt;}
.y26{bottom:517.186667pt;}
.ya2{bottom:518.146667pt;}
.y8f{bottom:519.746667pt;}
.yc4{bottom:531.106667pt;}
.y5b{bottom:531.266667pt;}
.y25{bottom:532.546667pt;}
.yf8{bottom:532.706667pt;}
.ya1{bottom:533.506667pt;}
.y8e{bottom:535.106667pt;}
.yde{bottom:542.973333pt;}
.yc3{bottom:544.253333pt;}
.y5a{bottom:546.653333pt;}
.y24{bottom:547.933333pt;}
.ya0{bottom:548.893333pt;}
.y8d{bottom:550.493333pt;}
.yf7{bottom:551.293333pt;}
.ydd{bottom:558.333333pt;}
.yc2{bottom:560.253333pt;}
.y59{bottom:562.013333pt;}
.y23{bottom:563.293333pt;}
.y9f{bottom:564.253333pt;}
.y8c{bottom:565.853333pt;}
.ydc{bottom:573.693333pt;}
.yf6{bottom:574.173333pt;}
.yc1{bottom:576.253333pt;}
.y58{bottom:577.373333pt;}
.y22{bottom:578.653333pt;}
.y9e{bottom:579.613333pt;}
.y8b{bottom:581.053333pt;}
.ydb{bottom:588.893333pt;}
.yf5{bottom:589.533333pt;}
.yc0{bottom:592.253333pt;}
.y57{bottom:592.573333pt;}
.y21{bottom:593.853333pt;}
.y9d{bottom:594.973333pt;}
.y8a{bottom:596.413333pt;}
.yda{bottom:601.373333pt;}
.yf4{bottom:604.893333pt;}
.y56{bottom:607.933333pt;}
.ybe{bottom:608.253333pt;}
.y20{bottom:609.213333pt;}
.y9c{bottom:610.173333pt;}
.y89{bottom:611.773333pt;}
.yf3{bottom:622.653333pt;}
.y55{bottom:623.293333pt;}
.y1f{bottom:624.573333pt;}
.y9b{bottom:625.533333pt;}
.y88{bottom:627.133333pt;}
.y9a{bottom:638.013333pt;}
.y54{bottom:638.653333pt;}
.y1e{bottom:639.933333pt;}
.yf2{bottom:640.733333pt;}
.y87{bottom:642.493333pt;}
.y53{bottom:654.013333pt;}
.y1d{bottom:655.293333pt;}
.y86{bottom:657.853333pt;}
.yf1{bottom:659.293333pt;}
.y52{bottom:669.213333pt;}
.y1c{bottom:670.653333pt;}
.y85{bottom:673.053333pt;}
.yf0{bottom:678.013333pt;}
.y51{bottom:684.573333pt;}
.y1b{bottom:685.853333pt;}
.y84{bottom:688.413333pt;}
.yef{bottom:696.733333pt;}
.y50{bottom:699.933333pt;}
.y1a{bottom:701.213333pt;}
.y83{bottom:703.773333pt;}
.y4f{bottom:715.293333pt;}
.y19{bottom:716.573333pt;}
.yee{bottom:718.173333pt;}
.y82{bottom:719.133333pt;}
.y4e{bottom:730.653333pt;}
.y18{bottom:731.933333pt;}
.y81{bottom:734.493333pt;}
.y4d{bottom:746.013333pt;}
.y17{bottom:747.293333pt;}
.y80{bottom:749.853333pt;}
.y4c{bottom:761.213333pt;}
.y16{bottom:762.653333pt;}
.y7f{bottom:765.053333pt;}
.y4b{bottom:776.613333pt;}
.yed{bottom:777.573333pt;}
.y15{bottom:778.853333pt;}
.y7e{bottom:780.453333pt;}
.y4a{bottom:792.933333pt;}
.y14{bottom:794.693333pt;}
.y7d{bottom:795.813333pt;}
.y49{bottom:808.293333pt;}
.y7c{bottom:811.173333pt;}
.y13{bottom:816.773333pt;}
.yec{bottom:823.653333pt;}
.y48{bottom:824.613333pt;}
.y7b{bottom:826.533333pt;}
.y12{bottom:828.453333pt;}
.ycc{bottom:838.533333pt;}
.yeb{bottom:839.013333pt;}
.y47{bottom:839.973333pt;}
.y7a{bottom:841.893333pt;}
.y11{bottom:845.253333pt;}
.ycb{bottom:851.653333pt;}
.yea{bottom:855.173333pt;}
.y46{bottom:856.133333pt;}
.y79{bottom:857.093333pt;}
.y10{bottom:862.053333pt;}
.yca{bottom:867.653333pt;}
.ye9{bottom:870.533333pt;}
.y45{bottom:871.493333pt;}
.y78{bottom:872.453333pt;}
.yf{bottom:879.173333pt;}
.yc9{bottom:883.653333pt;}
.ye8{bottom:885.893333pt;}
.y44{bottom:887.813333pt;}
.ye{bottom:897.573333pt;}
.yc8{bottom:899.653333pt;}
.ye7{bottom:902.213333pt;}
.y43{bottom:903.173333pt;}
.yd{bottom:915.973333pt;}
.ye6{bottom:917.573333pt;}
.y42{bottom:918.533333pt;}
.y9{bottom:934.853333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.013333pt;}
.y6{bottom:983.013333pt;}
.y5{bottom:997.893333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.he{height:15.200000pt;}
.hd{height:15.360000pt;}
.ha{height:26.843125pt;}
.h7{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.hb{height:38.672812pt;}
.hf{height:40.410625pt;}
.h8{height:41.543750pt;}
.h3{height:42.578750pt;}
.hc{height:43.108125pt;}
.h4{height:45.156250pt;}
.h9{height:47.310625pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:64.672000pt;}
.w7{width:66.720000pt;}
.wa{width:72.672000pt;}
.w8{width:73.440000pt;}
.w9{width:104.480000pt;}
.w4{width:110.432000pt;}
.w3{width:116.960000pt;}
.w5{width:121.152000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.720000pt;}
.x2{left:96.031988pt;}
.x1{left:113.791988pt;}
.x9{left:116.191988pt;}
.xf{left:120.031988pt;}
.xd{left:135.386655pt;}
.x8{left:140.826655pt;}
.x10{left:144.026655pt;}
.x5{left:148.506655pt;}
.x14{left:176.506655pt;}
.x16{left:178.746655pt;}
.x1f{left:232.826667pt;}
.x2d{left:244.026655pt;}
.x18{left:265.186655pt;}
.x1d{left:269.666655pt;}
.x1e{left:274.626655pt;}
.x28{left:281.826655pt;}
.x19{left:282.946667pt;}
.x31{left:285.826655pt;}
.x24{left:291.586655pt;}
.x17{left:307.906655pt;}
.xc{left:321.826655pt;}
.x11{left:323.426655pt;}
.xa{left:326.146655pt;}
.xb{left:328.546655pt;}
.xe{left:332.066655pt;}
.x12{left:341.826655pt;}
.x7{left:343.426655pt;}
.x30{left:351.746655pt;}
.x20{left:354.626667pt;}
.x2f{left:362.146655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x1b{left:400.546667pt;}
.x25{left:413.186667pt;}
.x21{left:420.093333pt;}
.x2e{left:450.013322pt;}
.x2a{left:458.813322pt;}
.x4{left:460.893322pt;}
.x22{left:487.613333pt;}
.x29{left:507.933322pt;}
.x2b{left:563.453322pt;}
.x13{left:615.653322pt;}
.x15{left:616.613322pt;}
.x2c{left:624.773322pt;}
.x27{left:669.413322pt;}
.x26{left:671.173322pt;}
.x1c{left:690.373322pt;}
.x23{left:691.973322pt;}
}




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