
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_726de1654b25de1f1e8ce669.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_5db27b8daba6c531dd985ded.woff')format("woff");}.ff3{font-family:ff3;line-height:1.142090;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_27a0d156090f76abc74e8795.woff')format("woff");}.ff4{font-family:ff4;line-height:1.142090;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_e17413256ef09a677dda6081.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_49f1984aefc237d65625550f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7d58a4da115b6be833d88000.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8df4565ea3a13ac990acde34.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_38006a882b1e45bdaf58c199.woff')format("woff");}.ff9{font-family:ff9;line-height:1.056152;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_ea57ef3ed02ed2bd423e9fba.woff')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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.lsb{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.084600px;}
.ls1b{letter-spacing:-0.063600px;}
.lsa{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.008400px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.064800px;}
.ls5{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.074160px;}
.ls3{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls22{letter-spacing:0.098400px;}
.ls1c{letter-spacing:0.116280px;}
.ls9{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.160800px;}
.ls17{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.181440px;}
.ls7{letter-spacing:0.185520px;}
.ls10{letter-spacing:0.199200px;}
.ls23{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.425520px;}
.ls16{letter-spacing:0.813600px;}
.ls1a{letter-spacing:2.256000px;}
.ls1e{letter-spacing:5.490000px;}
.ls20{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls1f{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.387200px;}
.ws11{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.064400px;}
.wsa{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.844000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.wsf{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._b{margin-left:-3.117600px;}
._5{margin-left:-2.108400px;}
._0{margin-left:-1.050000px;}
._1{width:1.074252px;}
._6{width:2.174906px;}
._4{width:3.727200px;}
._a{width:4.809600px;}
._2{width:6.168600px;}
._3{width:7.393200px;}
._7{width:8.536800px;}
._8{width:9.741601px;}
._9{width:10.819799px;}
._10{width:12.216601px;}
._c{width:20.080080px;}
._d{width:21.495000px;}
._11{width:23.326560px;}
._12{width:24.425028px;}
._15{width:35.909280px;}
._13{width:37.399800px;}
._14{width:38.816880px;}
._f{width:44.336400px;}
._e{width:45.570960px;}
._16{width:207.978840px;}
._17{width:209.266560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:3.330000px;}
.y5a{bottom:4.500000px;}
.y5b{bottom:6.750000px;}
.y6f{bottom:7.830000px;}
.y81{bottom:7.860000px;}
.y6d{bottom:7.920000px;}
.y5f{bottom:11.250000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ybe{bottom:121.980000px;}
.y66{bottom:123.150000px;}
.ye1{bottom:128.640000px;}
.y26{bottom:129.900000px;}
.y8e{bottom:132.510000px;}
.ybd{bottom:139.530000px;}
.y65{bottom:141.600000px;}
.y52{bottom:144.930000px;}
.ye0{bottom:146.190000px;}
.y25{bottom:147.450000px;}
.y8d{bottom:150.060000px;}
.ybc{bottom:157.170000px;}
.y64{bottom:160.050000px;}
.y51{bottom:162.480000px;}
.y24{bottom:165.090000px;}
.y8c{bottom:167.700000px;}
.ydf{bottom:172.830000px;}
.ybb{bottom:174.720000px;}
.y63{bottom:178.410000px;}
.y8b{bottom:185.250000px;}
.y23{bottom:192.000000px;}
.yba{bottom:192.270000px;}
.y50{bottom:198.030000px;}
.yde{bottom:199.380000px;}
.y62{bottom:205.860000px;}
.yb9{bottom:209.910000px;}
.ydd{bottom:216.930000px;}
.y8a{bottom:218.190000px;}
.y4f{bottom:230.610000px;}
.ydc{bottom:234.570000px;}
.y22{bottom:240.240000px;}
.y61{bottom:241.500000px;}
.yb8{bottom:245.460000px;}
.y89{bottom:245.550000px;}
.y4e{bottom:249.060000px;}
.ydb{bottom:261.120000px;}
.yb7{bottom:263.100000px;}
.y60{bottom:265.440000px;}
.y4d{bottom:266.610000px;}
.y88{bottom:272.910000px;}
.y21{bottom:275.880000px;}
.yda{bottom:278.760000px;}
.yb6{bottom:280.650000px;}
.y5e{bottom:292.800000px;}
.y20{bottom:293.430000px;}
.yb5{bottom:298.200000px;}
.y87{bottom:300.270000px;}
.y4c{bottom:303.060000px;}
.yd9{bottom:305.310000px;}
.yb4{bottom:315.840000px;}
.yd8{bottom:322.860000px;}
.y86{bottom:327.540000px;}
.y1f{bottom:328.980000px;}
.y4b{bottom:329.700000px;}
.yb3{bottom:333.390000px;}
.y1e{bottom:346.620000px;}
.yd7{bottom:349.500000px;}
.yb2{bottom:350.940000px;}
.y85{bottom:354.900000px;}
.y1d{bottom:364.170000px;}
.y4a{bottom:365.250000px;}
.yd6{bottom:367.050000px;}
.yb1{bottom:368.580000px;}
.y1c{bottom:381.810000px;}
.y84{bottom:382.260000px;}
.y49{bottom:382.800000px;}
.yb0{bottom:386.130000px;}
.yd5{bottom:393.690000px;}
.y1b{bottom:399.360000px;}
.y48{bottom:401.250000px;}
.yaf{bottom:403.770000px;}
.y83{bottom:409.530000px;}
.yd4{bottom:411.240000px;}
.y1a{bottom:416.910000px;}
.y47{bottom:418.800000px;}
.yae{bottom:421.320000px;}
.y19{bottom:434.550000px;}
.y82{bottom:436.890000px;}
.yd3{bottom:437.790000px;}
.y18{bottom:452.100000px;}
.y46{bottom:455.250000px;}
.yd2{bottom:455.430000px;}
.yad{bottom:456.870000px;}
.y80{bottom:464.250000px;}
.yac{bottom:474.540000px;}
.yd1{bottom:482.010000px;}
.y17{bottom:487.770000px;}
.y45{bottom:490.830000px;}
.y7f{bottom:491.640000px;}
.yab{bottom:492.090000px;}
.yd0{bottom:499.650000px;}
.y16{bottom:505.320000px;}
.y44{bottom:508.470000px;}
.yaa{bottom:509.730000px;}
.ycf{bottom:517.200000px;}
.y7e{bottom:518.910000px;}
.ya9{bottom:527.280000px;}
.y43{bottom:535.020000px;}
.y15{bottom:540.870000px;}
.yce{bottom:543.750000px;}
.ya8{bottom:544.830000px;}
.ycd{bottom:561.390000px;}
.ya7{bottom:562.470000px;}
.y7d{bottom:567.690000px;}
.y42{bottom:570.660000px;}
.y14{bottom:576.510000px;}
.ycc{bottom:578.940000px;}
.ya6{bottom:580.020000px;}
.y41{bottom:588.210000px;}
.y5c{bottom:592.800000px;}
.y13{bottom:594.060000px;}
.y7c{bottom:594.240000px;}
.ya5{bottom:597.660000px;}
.ycb{bottom:605.580000px;}
.y40{bottom:605.760000px;}
.y12{bottom:611.700000px;}
.y59{bottom:620.160000px;}
.yca{bottom:623.130000px;}
.y3f{bottom:623.400000px;}
.ya4{bottom:624.210000px;}
.y11{bottom:629.250000px;}
.y7b{bottom:629.790000px;}
.y3e{bottom:640.950000px;}
.y10{bottom:646.800000px;}
.y7a{bottom:647.430000px;}
.yc9{bottom:650.040000px;}
.ya3{bottom:659.760000px;}
.yf{bottom:664.440000px;}
.y79{bottom:664.980000px;}
.y3d{bottom:676.590000px;}
.ya2{bottom:677.400000px;}
.y78{bottom:682.530000px;}
.ye{bottom:691.350000px;}
.y3c{bottom:694.140000px;}
.ya1{bottom:694.950000px;}
.yc8{bottom:698.280000px;}
.ya0{bottom:712.590000px;}
.y77{bottom:715.560000px;}
.yc7{bottom:724.920000px;}
.y3b{bottom:729.690000px;}
.y9f{bottom:730.140000px;}
.yd{bottom:739.590000px;}
.y76{bottom:742.920000px;}
.y3a{bottom:747.330000px;}
.y9e{bottom:747.690000px;}
.yc6{bottom:760.470000px;}
.y9d{bottom:765.330000px;}
.y75{bottom:770.190000px;}
.yc{bottom:775.410000px;}
.yef{bottom:778.290000px;}
.y39{bottom:782.880000px;}
.yc5{bottom:787.020000px;}
.yee{bottom:795.930000px;}
.y74{bottom:797.550000px;}
.y9c{bottom:800.520000px;}
.yb{bottom:811.410000px;}
.y9b{bottom:818.070000px;}
.y38{bottom:818.520000px;}
.yed{bottom:822.480000px;}
.yc4{bottom:822.930000px;}
.y73{bottom:824.910000px;}
.y9a{bottom:835.620000px;}
.y37{bottom:836.070000px;}
.yec{bottom:840.030000px;}
.ya{bottom:851.190000px;}
.y72{bottom:852.180000px;}
.y99{bottom:853.260000px;}
.y36{bottom:853.620000px;}
.yeb{bottom:857.670000px;}
.y9{bottom:869.190000px;}
.y98{bottom:870.810000px;}
.y35{bottom:871.260000px;}
.y71{bottom:879.540000px;}
.yea{bottom:884.220000px;}
.y8{bottom:887.190000px;}
.yc3{bottom:888.810000px;}
.y34{bottom:897.810000px;}
.ye9{bottom:901.860000px;}
.y7{bottom:905.190000px;}
.y97{bottom:906.450000px;}
.y70{bottom:906.900000px;}
.y96{bottom:924.000000px;}
.y58{bottom:927.960000px;}
.ye8{bottom:928.410000px;}
.y33{bottom:933.720000px;}
.y6e{bottom:934.260000px;}
.y6{bottom:937.500000px;}
.y95{bottom:941.550000px;}
.y57{bottom:945.600000px;}
.ye7{bottom:945.960000px;}
.yc2{bottom:950.910000px;}
.y5{bottom:956.850000px;}
.y94{bottom:959.190000px;}
.y6c{bottom:961.530000px;}
.y56{bottom:963.150000px;}
.ye6{bottom:972.600000px;}
.y4{bottom:976.200000px;}
.y93{bottom:976.740000px;}
.y32{bottom:981.960000px;}
.ye5{bottom:990.150000px;}
.y92{bottom:994.290000px;}
.y55{bottom:998.790000px;}
.yc1{bottom:999.150000px;}
.y31{bottom:999.600000px;}
.ye4{bottom:1007.790000px;}
.y6b{bottom:1010.250000px;}
.y91{bottom:1011.960000px;}
.y3{bottom:1014.480000px;}
.y54{bottom:1016.370000px;}
.yc0{bottom:1016.820000px;}
.y30{bottom:1017.180000px;}
.ybf{bottom:1034.370000px;}
.y2f{bottom:1034.820000px;}
.y6a{bottom:1036.890000px;}
.y90{bottom:1038.510000px;}
.y53{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.y2d{bottom:1069.920000px;}
.y69{bottom:1072.800000px;}
.y8f{bottom:1074.420000px;}
.ye3{bottom:1078.560000px;}
.y2c{bottom:1087.560000px;}
.ye2{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y68{bottom:1121.040000px;}
.y2a{bottom:1122.750000px;}
.y67{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.he{height:26.550000px;}
.h12{height:26.580000px;}
.h10{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:41.572266px;}
.h11{height:50.902383px;}
.h7{height:55.540547px;}
.h8{height:55.779258px;}
.hc{height:59.973223px;}
.h5{height:60.861797px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:77.490703px;}
.hd{height:285.750000px;}
.hf{height:299.280000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:175.140000px;}
.w8{width:211.410000px;}
.w9{width:243.570000px;}
.w3{width:243.930000px;}
.w4{width:252.930000px;}
.w5{width:257.310000px;}
.wb{width:339.870000px;}
.w6{width:370.740000px;}
.w7{width:384.150000px;}
.wa{width:455.790000px;}
.wd{width:515.730000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x17{left:111.239987px;}
.xb{left:117.300000px;}
.x5{left:122.039987px;}
.xc{left:124.470000px;}
.x10{left:180.480000px;}
.x11{left:188.040000px;}
.x12{left:210.629987px;}
.x13{left:218.730000px;}
.x6{left:237.270000px;}
.x8{left:246.180000px;}
.xa{left:250.740000px;}
.x2{left:251.759987px;}
.xd{left:310.260000px;}
.x7{left:313.500000px;}
.xf{left:320.250000px;}
.x15{left:430.950000px;}
.xe{left:440.310000px;}
.x16{left:529.350000px;}
.x9{left:567.150000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.lsb{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075200pt;}
.ls1b{letter-spacing:-0.056533pt;}
.lsa{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.007467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.057600pt;}
.ls5{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.065920pt;}
.ls3{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls22{letter-spacing:0.087467pt;}
.ls1c{letter-spacing:0.103360pt;}
.ls9{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.142933pt;}
.ls17{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.161280pt;}
.ls7{letter-spacing:0.164907pt;}
.ls10{letter-spacing:0.177067pt;}
.ls23{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.378240pt;}
.ls16{letter-spacing:0.723200pt;}
.ls1a{letter-spacing:2.005333pt;}
.ls1e{letter-spacing:4.880000pt;}
.ls20{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.899733pt;}
.ws11{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.612800pt;}
.wsa{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.528000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.wsf{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._b{margin-left:-2.771200pt;}
._5{margin-left:-1.874133pt;}
._0{margin-left:-0.933333pt;}
._1{width:0.954890pt;}
._6{width:1.933250pt;}
._4{width:3.313066pt;}
._a{width:4.275200pt;}
._2{width:5.483200pt;}
._3{width:6.571733pt;}
._7{width:7.588266pt;}
._8{width:8.659201pt;}
._9{width:9.617599pt;}
._10{width:10.859201pt;}
._c{width:17.848960pt;}
._d{width:19.106667pt;}
._11{width:20.734720pt;}
._12{width:21.711136pt;}
._15{width:31.919360pt;}
._13{width:33.244267pt;}
._14{width:34.503893pt;}
._f{width:39.410133pt;}
._e{width:40.507520pt;}
._16{width:184.870080pt;}
._17{width:186.014720pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.960000pt;}
.y5a{bottom:4.000000pt;}
.y5b{bottom:6.000000pt;}
.y6f{bottom:6.960000pt;}
.y81{bottom:6.986667pt;}
.y6d{bottom:7.040000pt;}
.y5f{bottom:10.000000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ybe{bottom:108.426667pt;}
.y66{bottom:109.466667pt;}
.ye1{bottom:114.346667pt;}
.y26{bottom:115.466667pt;}
.y8e{bottom:117.786667pt;}
.ybd{bottom:124.026667pt;}
.y65{bottom:125.866667pt;}
.y52{bottom:128.826667pt;}
.ye0{bottom:129.946667pt;}
.y25{bottom:131.066667pt;}
.y8d{bottom:133.386667pt;}
.ybc{bottom:139.706667pt;}
.y64{bottom:142.266667pt;}
.y51{bottom:144.426667pt;}
.y24{bottom:146.746667pt;}
.y8c{bottom:149.066667pt;}
.ydf{bottom:153.626667pt;}
.ybb{bottom:155.306667pt;}
.y63{bottom:158.586667pt;}
.y8b{bottom:164.666667pt;}
.y23{bottom:170.666667pt;}
.yba{bottom:170.906667pt;}
.y50{bottom:176.026667pt;}
.yde{bottom:177.226667pt;}
.y62{bottom:182.986667pt;}
.yb9{bottom:186.586667pt;}
.ydd{bottom:192.826667pt;}
.y8a{bottom:193.946667pt;}
.y4f{bottom:204.986667pt;}
.ydc{bottom:208.506667pt;}
.y22{bottom:213.546667pt;}
.y61{bottom:214.666667pt;}
.yb8{bottom:218.186667pt;}
.y89{bottom:218.266667pt;}
.y4e{bottom:221.386667pt;}
.ydb{bottom:232.106667pt;}
.yb7{bottom:233.866667pt;}
.y60{bottom:235.946667pt;}
.y4d{bottom:236.986667pt;}
.y88{bottom:242.586667pt;}
.y21{bottom:245.226667pt;}
.yda{bottom:247.786667pt;}
.yb6{bottom:249.466667pt;}
.y5e{bottom:260.266667pt;}
.y20{bottom:260.826667pt;}
.yb5{bottom:265.066667pt;}
.y87{bottom:266.906667pt;}
.y4c{bottom:269.386667pt;}
.yd9{bottom:271.386667pt;}
.yb4{bottom:280.746667pt;}
.yd8{bottom:286.986667pt;}
.y86{bottom:291.146667pt;}
.y1f{bottom:292.426667pt;}
.y4b{bottom:293.066667pt;}
.yb3{bottom:296.346667pt;}
.y1e{bottom:308.106667pt;}
.yd7{bottom:310.666667pt;}
.yb2{bottom:311.946667pt;}
.y85{bottom:315.466667pt;}
.y1d{bottom:323.706667pt;}
.y4a{bottom:324.666667pt;}
.yd6{bottom:326.266667pt;}
.yb1{bottom:327.626667pt;}
.y1c{bottom:339.386667pt;}
.y84{bottom:339.786667pt;}
.y49{bottom:340.266667pt;}
.yb0{bottom:343.226667pt;}
.yd5{bottom:349.946667pt;}
.y1b{bottom:354.986667pt;}
.y48{bottom:356.666667pt;}
.yaf{bottom:358.906667pt;}
.y83{bottom:364.026667pt;}
.yd4{bottom:365.546667pt;}
.y1a{bottom:370.586667pt;}
.y47{bottom:372.266667pt;}
.yae{bottom:374.506667pt;}
.y19{bottom:386.266667pt;}
.y82{bottom:388.346667pt;}
.yd3{bottom:389.146667pt;}
.y18{bottom:401.866667pt;}
.y46{bottom:404.666667pt;}
.yd2{bottom:404.826667pt;}
.yad{bottom:406.106667pt;}
.y80{bottom:412.666667pt;}
.yac{bottom:421.813333pt;}
.yd1{bottom:428.453333pt;}
.y17{bottom:433.573333pt;}
.y45{bottom:436.293333pt;}
.y7f{bottom:437.013333pt;}
.yab{bottom:437.413333pt;}
.yd0{bottom:444.133333pt;}
.y16{bottom:449.173333pt;}
.y44{bottom:451.973333pt;}
.yaa{bottom:453.093333pt;}
.ycf{bottom:459.733333pt;}
.y7e{bottom:461.253333pt;}
.ya9{bottom:468.693333pt;}
.y43{bottom:475.573333pt;}
.y15{bottom:480.773333pt;}
.yce{bottom:483.333333pt;}
.ya8{bottom:484.293333pt;}
.ycd{bottom:499.013333pt;}
.ya7{bottom:499.973333pt;}
.y7d{bottom:504.613333pt;}
.y42{bottom:507.253333pt;}
.y14{bottom:512.453333pt;}
.ycc{bottom:514.613333pt;}
.ya6{bottom:515.573333pt;}
.y41{bottom:522.853333pt;}
.y5c{bottom:526.933333pt;}
.y13{bottom:528.053333pt;}
.y7c{bottom:528.213333pt;}
.ya5{bottom:531.253333pt;}
.ycb{bottom:538.293333pt;}
.y40{bottom:538.453333pt;}
.y12{bottom:543.733333pt;}
.y59{bottom:551.253333pt;}
.yca{bottom:553.893333pt;}
.y3f{bottom:554.133333pt;}
.ya4{bottom:554.853333pt;}
.y11{bottom:559.333333pt;}
.y7b{bottom:559.813333pt;}
.y3e{bottom:569.733333pt;}
.y10{bottom:574.933333pt;}
.y7a{bottom:575.493333pt;}
.yc9{bottom:577.813333pt;}
.ya3{bottom:586.453333pt;}
.yf{bottom:590.613333pt;}
.y79{bottom:591.093333pt;}
.y3d{bottom:601.413333pt;}
.ya2{bottom:602.133333pt;}
.y78{bottom:606.693333pt;}
.ye{bottom:614.533333pt;}
.y3c{bottom:617.013333pt;}
.ya1{bottom:617.733333pt;}
.yc8{bottom:620.693333pt;}
.ya0{bottom:633.413333pt;}
.y77{bottom:636.053333pt;}
.yc7{bottom:644.373333pt;}
.y3b{bottom:648.613333pt;}
.y9f{bottom:649.013333pt;}
.yd{bottom:657.413333pt;}
.y76{bottom:660.373333pt;}
.y3a{bottom:664.293333pt;}
.y9e{bottom:664.613333pt;}
.yc6{bottom:675.973333pt;}
.y9d{bottom:680.293333pt;}
.y75{bottom:684.613333pt;}
.yc{bottom:689.253333pt;}
.yef{bottom:691.813333pt;}
.y39{bottom:695.893333pt;}
.yc5{bottom:699.573333pt;}
.yee{bottom:707.493333pt;}
.y74{bottom:708.933333pt;}
.y9c{bottom:711.573333pt;}
.yb{bottom:721.253333pt;}
.y9b{bottom:727.173333pt;}
.y38{bottom:727.573333pt;}
.yed{bottom:731.093333pt;}
.yc4{bottom:731.493333pt;}
.y73{bottom:733.253333pt;}
.y9a{bottom:742.773333pt;}
.y37{bottom:743.173333pt;}
.yec{bottom:746.693333pt;}
.ya{bottom:756.613333pt;}
.y72{bottom:757.493333pt;}
.y99{bottom:758.453333pt;}
.y36{bottom:758.773333pt;}
.yeb{bottom:762.373333pt;}
.y9{bottom:772.613333pt;}
.y98{bottom:774.053333pt;}
.y35{bottom:774.453333pt;}
.y71{bottom:781.813333pt;}
.yea{bottom:785.973333pt;}
.y8{bottom:788.613333pt;}
.yc3{bottom:790.053333pt;}
.y34{bottom:798.053333pt;}
.ye9{bottom:801.653333pt;}
.y7{bottom:804.613333pt;}
.y97{bottom:805.733333pt;}
.y70{bottom:806.133333pt;}
.y96{bottom:821.333333pt;}
.y58{bottom:824.853333pt;}
.ye8{bottom:825.253333pt;}
.y33{bottom:829.973333pt;}
.y6e{bottom:830.453333pt;}
.y6{bottom:833.333333pt;}
.y95{bottom:836.933333pt;}
.y57{bottom:840.533333pt;}
.ye7{bottom:840.853333pt;}
.yc2{bottom:845.253333pt;}
.y5{bottom:850.533333pt;}
.y94{bottom:852.613333pt;}
.y6c{bottom:854.693333pt;}
.y56{bottom:856.133333pt;}
.ye6{bottom:864.533333pt;}
.y4{bottom:867.733333pt;}
.y93{bottom:868.213333pt;}
.y32{bottom:872.853333pt;}
.ye5{bottom:880.133333pt;}
.y92{bottom:883.813333pt;}
.y55{bottom:887.813333pt;}
.yc1{bottom:888.133333pt;}
.y31{bottom:888.533333pt;}
.ye4{bottom:895.813333pt;}
.y6b{bottom:898.000000pt;}
.y91{bottom:899.520000pt;}
.y3{bottom:901.760000pt;}
.y54{bottom:903.440000pt;}
.yc0{bottom:903.840000pt;}
.y30{bottom:904.160000pt;}
.ybf{bottom:919.440000pt;}
.y2f{bottom:919.840000pt;}
.y6a{bottom:921.680000pt;}
.y90{bottom:923.120000pt;}
.y53{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.y2d{bottom:951.040000pt;}
.y69{bottom:953.600000pt;}
.y8f{bottom:955.040000pt;}
.ye3{bottom:958.720000pt;}
.y2c{bottom:966.720000pt;}
.ye2{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y68{bottom:996.480000pt;}
.y2a{bottom:998.000000pt;}
.y67{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h12{height:23.626667pt;}
.h10{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:36.953125pt;}
.h11{height:45.246562pt;}
.h7{height:49.369375pt;}
.h8{height:49.581562pt;}
.hc{height:53.309531pt;}
.h5{height:54.099375pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:68.880625pt;}
.hd{height:254.000000pt;}
.hf{height:266.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:155.680000pt;}
.w8{width:187.920000pt;}
.w9{width:216.506667pt;}
.w3{width:216.826667pt;}
.w4{width:224.826667pt;}
.w5{width:228.720000pt;}
.wb{width:302.106667pt;}
.w6{width:329.546667pt;}
.w7{width:341.466667pt;}
.wa{width:405.146667pt;}
.wd{width:458.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x17{left:98.879988pt;}
.xb{left:104.266667pt;}
.x5{left:108.479988pt;}
.xc{left:110.640000pt;}
.x10{left:160.426667pt;}
.x11{left:167.146667pt;}
.x12{left:187.226655pt;}
.x13{left:194.426667pt;}
.x6{left:210.906667pt;}
.x8{left:218.826667pt;}
.xa{left:222.880000pt;}
.x2{left:223.786655pt;}
.xd{left:275.786667pt;}
.x7{left:278.666667pt;}
.xf{left:284.666667pt;}
.x15{left:383.066667pt;}
.xe{left:391.386667pt;}
.x16{left:470.533333pt;}
.x9{left:504.133333pt;}
.x3{left:711.413322pt;}
}




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