
    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_ceb6a298a27835da443bb1fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3d04f68c1986292b3a6b943f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c6e9ffeb98007a60d84c87a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_666aebc3385ef940cb5f7198.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_f7db27b5f384caf5b0f41e2a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1e55cc517da0040176a51f75.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b2df21cbd6473b5080a41784.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_6b0d659381cf464b8f051618.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-68.400000px;}
.v2{vertical-align:-58.320000px;}
.v5{vertical-align:-12.240000px;}
.v3{vertical-align:-10.080000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v7{vertical-align:14.400000px;}
.va{vertical-align:23.040000px;}
.v4{vertical-align:30.240000px;}
.v9{vertical-align:33.120000px;}
.vb{vertical-align:35.280000px;}
.vc{vertical-align:47.520000px;}
.ls9{letter-spacing:-0.612000px;}
.ls26{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.258000px;}
.ls1f{letter-spacing:-0.076200px;}
.ls1b{letter-spacing:-0.044640px;}
.ls8{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.132480px;}
.ls7{letter-spacing:0.153360px;}
.ls0{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.181440px;}
.ls1e{letter-spacing:0.197400px;}
.ls6{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.383040px;}
.ls17{letter-spacing:0.399600px;}
.ls21{letter-spacing:0.613440px;}
.ls1a{letter-spacing:0.902640px;}
.ls18{letter-spacing:1.119600px;}
.lsd{letter-spacing:1.594800px;}
.lsb{letter-spacing:1.620000px;}
.ls13{letter-spacing:4.062240px;}
.lsc{letter-spacing:4.782240px;}
.ls2{letter-spacing:8.586720px;}
.ls12{letter-spacing:12.420000px;}
.ls24{letter-spacing:14.669280px;}
.lsf{letter-spacing:16.559280px;}
.lse{letter-spacing:16.959600px;}
.ls20{letter-spacing:25.866720px;}
.ls19{letter-spacing:29.466720px;}
.ls11{letter-spacing:30.420000px;}
.ls4{letter-spacing:36.900000px;}
.ls22{letter-spacing:38.429280px;}
.ls16{letter-spacing:43.380000px;}
.ls5{letter-spacing:46.260000px;}
.ls1{letter-spacing:46.980000px;}
.ls15{letter-spacing:117.000000px;}
.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:-59.760000px;}
.ws11{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.147200px;}
.ws3{word-spacing:-12.060000px;}
.ws12{word-spacing:-9.384600px;}
.ws8{word-spacing:-9.187200px;}
.ws13{word-spacing:-9.111000px;}
.wsb{word-spacing:-8.929200px;}
.ws10{word-spacing:-7.920000px;}
.ws0{word-spacing:-0.059760px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:0.212400px;}
.wsf{word-spacing:3.412080px;}
.wse{word-spacing:3.812400px;}
.wsa{word-spacing:4.132080px;}
.ws9{word-spacing:48.847680px;}
._22{margin-left:-14.326560px;}
._18{margin-left:-11.652840px;}
._1c{margin-left:-10.620000px;}
._1d{margin-left:-9.108000px;}
._1e{margin-left:-6.811200px;}
._6{margin-left:-2.916000px;}
._3{margin-left:-1.674000px;}
._2{width:1.188000px;}
._7{width:2.430000px;}
._c{width:3.672000px;}
._f{width:5.239440px;}
._10{width:6.274800px;}
._15{width:7.470000px;}
._1{width:9.018000px;}
._0{width:10.426800px;}
._1b{width:11.518080px;}
._11{width:12.609360px;}
._17{width:13.618560px;}
._19{width:16.026480px;}
._1a{width:17.029920px;}
._16{width:18.727200px;}
._5{width:20.574000px;}
._20{width:22.157040px;}
._12{width:24.621120px;}
._e{width:26.406000px;}
._d{width:27.660000px;}
._21{width:28.693680px;}
._4{width:30.780000px;}
._1f{width:31.788720px;}
._23{width:34.959600px;}
._24{width:36.456240px;}
._8{width:37.476000px;}
._9{width:38.718000px;}
._a{width:44.280000px;}
._b{width:45.414000px;}
._13{width:53.843760px;}
._14{width:55.789680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:144.000000px;}
.fs5{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y52{bottom:5.040000px;}
.y4e{bottom:8.280000px;}
.y50{bottom:19.080000px;}
.y2{bottom:35.820000px;}
.y35{bottom:78.480000px;}
.y88{bottom:79.560000px;}
.y99{bottom:80.460000px;}
.yb5{bottom:91.980000px;}
.y34{bottom:92.340000px;}
.y87{bottom:97.560000px;}
.y33{bottom:106.020000px;}
.y98{bottom:106.380000px;}
.yb4{bottom:109.620000px;}
.y86{bottom:115.740000px;}
.y4c{bottom:119.880000px;}
.y97{bottom:120.780000px;}
.yb3{bottom:125.820000px;}
.y85{bottom:133.920000px;}
.y32{bottom:134.460000px;}
.yb2{bottom:148.140000px;}
.y84{bottom:151.920000px;}
.y31{bottom:153.900000px;}
.y4b{bottom:154.800000px;}
.y83{bottom:170.100000px;}
.y30{bottom:172.080000px;}
.y4a{bottom:177.120000px;}
.y82{bottom:188.100000px;}
.y2f{bottom:190.080000px;}
.y81{bottom:206.280000px;}
.y2e{bottom:208.260000px;}
.y80{bottom:224.490000px;}
.y2d{bottom:226.470000px;}
.y7f{bottom:242.490000px;}
.y2c{bottom:244.470000px;}
.ye2{bottom:251.310000px;}
.y7e{bottom:260.670000px;}
.y2b{bottom:262.650000px;}
.ye1{bottom:265.170000px;}
.y7d{bottom:278.670000px;}
.ye0{bottom:278.850000px;}
.y2a{bottom:280.830000px;}
.ydf{bottom:292.710000px;}
.y7c{bottom:296.850000px;}
.y29{bottom:298.830000px;}
.yde{bottom:306.570000px;}
.y7b{bottom:315.030000px;}
.y28{bottom:317.010000px;}
.ydd{bottom:320.250000px;}
.yb1{bottom:332.130000px;}
.y7a{bottom:333.030000px;}
.ydc{bottom:334.110000px;}
.y27{bottom:335.010000px;}
.y49{bottom:346.890000px;}
.ydb{bottom:347.970000px;}
.y79{bottom:351.210000px;}
.y26{bottom:353.190000px;}
.yb0{bottom:357.330000px;}
.yda{bottom:361.650000px;}
.y48{bottom:364.890000px;}
.y78{bottom:369.390000px;}
.y25{bottom:371.370000px;}
.yaf{bottom:373.710000px;}
.yd9{bottom:375.510000px;}
.y47{bottom:383.070000px;}
.y77{bottom:387.390000px;}
.y24{bottom:389.370000px;}
.yae{bottom:396.030000px;}
.y46{bottom:401.070000px;}
.yd8{bottom:403.050000px;}
.y76{bottom:405.570000px;}
.y23{bottom:407.550000px;}
.yd7{bottom:416.910000px;}
.y45{bottom:419.250000px;}
.y75{bottom:423.570000px;}
.y22{bottom:425.550000px;}
.yd6{bottom:430.770000px;}
.y44{bottom:437.430000px;}
.y74{bottom:441.795000px;}
.y21{bottom:443.775000px;}
.yd5{bottom:444.495000px;}
.y43{bottom:454.935000px;}
.yd4{bottom:458.355000px;}
.y73{bottom:459.975000px;}
.y20{bottom:461.955000px;}
.yd3{bottom:472.215000px;}
.y42{bottom:477.255000px;}
.y72{bottom:477.975000px;}
.y1f{bottom:479.955000px;}
.yd2{bottom:485.895000px;}
.y96{bottom:488.415000px;}
.y71{bottom:496.155000px;}
.y1e{bottom:498.135000px;}
.yd1{bottom:499.755000px;}
.y95{bottom:506.415000px;}
.yd0{bottom:513.615000px;}
.y70{bottom:514.335000px;}
.y1d{bottom:516.315000px;}
.y94{bottom:524.595000px;}
.ycf{bottom:527.295000px;}
.y6f{bottom:532.335000px;}
.y1c{bottom:534.315000px;}
.yce{bottom:541.155000px;}
.y93{bottom:542.775000px;}
.y6e{bottom:550.515000px;}
.y1b{bottom:552.495000px;}
.ycd{bottom:555.015000px;}
.y92{bottom:560.775000px;}
.y6d{bottom:568.515000px;}
.ycc{bottom:568.695000px;}
.y1a{bottom:570.495000px;}
.y91{bottom:578.955000px;}
.ycb{bottom:582.555000px;}
.y6c{bottom:586.695000px;}
.yad{bottom:587.595000px;}
.y19{bottom:588.675000px;}
.yca{bottom:596.415000px;}
.y90{bottom:596.955000px;}
.y6b{bottom:604.875000px;}
.yac{bottom:605.775000px;}
.y18{bottom:606.855000px;}
.yc9{bottom:610.095000px;}
.y8f{bottom:615.135000px;}
.y51{bottom:620.355000px;}
.y6a{bottom:622.875000px;}
.yab{bottom:623.955000px;}
.y17{bottom:624.855000px;}
.y8e{bottom:633.315000px;}
.yc8{bottom:637.815000px;}
.y69{bottom:641.055000px;}
.yaa{bottom:641.955000px;}
.y16{bottom:643.035000px;}
.y8d{bottom:651.315000px;}
.yc7{bottom:651.495000px;}
.y68{bottom:659.085000px;}
.ya9{bottom:660.165000px;}
.yc6{bottom:665.385000px;}
.y15{bottom:666.105000px;}
.y8c{bottom:669.525000px;}
.ya8{bottom:677.625000px;}
.yc5{bottom:679.245000px;}
.y67{bottom:682.305000px;}
.y8b{bottom:687.705000px;}
.yc4{bottom:692.925000px;}
.ya7{bottom:694.005000px;}
.y14{bottom:701.025000px;}
.y8a{bottom:705.165000px;}
.yc3{bottom:713.265000px;}
.ya6{bottom:716.325000px;}
.y66{bottom:718.485000px;}
.y89{bottom:727.305000px;}
.y13{bottom:733.785000px;}
.y65{bottom:736.665000px;}
.y41{bottom:746.745000px;}
.y12{bottom:749.445000px;}
.yc2{bottom:749.625000px;}
.y64{bottom:755.025000px;}
.y40{bottom:763.665000px;}
.y11{bottom:764.925000px;}
.yc1{bottom:767.805000px;}
.y63{bottom:773.205000px;}
.y10{bottom:780.405000px;}
.y3f{bottom:781.845000px;}
.yc0{bottom:785.805000px;}
.y62{bottom:791.745000px;}
.yf{bottom:795.885000px;}
.y3e{bottom:799.845000px;}
.ybf{bottom:803.985000px;}
.y61{bottom:810.105000px;}
.ye{bottom:811.545000px;}
.y3d{bottom:818.025000px;}
.ybe{bottom:821.985000px;}
.yd{bottom:827.025000px;}
.y3c{bottom:836.025000px;}
.ybd{bottom:840.165000px;}
.yc{bottom:842.505000px;}
.y60{bottom:844.485000px;}
.y5f{bottom:852.045000px;}
.y3b{bottom:854.205000px;}
.yb{bottom:857.985000px;}
.ybc{bottom:858.345000px;}
.ya{bottom:873.510000px;}
.ybb{bottom:876.390000px;}
.y3a{bottom:877.290000px;}
.y9{bottom:889.170000px;}
.y5e{bottom:890.610000px;}
.ya5{bottom:894.390000px;}
.yba{bottom:894.570000px;}
.y5d{bottom:898.170000px;}
.y8{bottom:904.650000px;}
.ya4{bottom:912.570000px;}
.y39{bottom:913.650000px;}
.y7{bottom:920.130000px;}
.ya3{bottom:930.570000px;}
.yb9{bottom:930.750000px;}
.y38{bottom:931.650000px;}
.y6{bottom:935.610000px;}
.y5c{bottom:935.970000px;}
.y5b{bottom:943.530000px;}
.ya2{bottom:948.750000px;}
.yb8{bottom:948.930000px;}
.y37{bottom:949.830000px;}
.y5{bottom:951.270000px;}
.y4{bottom:966.750000px;}
.ya1{bottom:966.930000px;}
.y36{bottom:968.010000px;}
.y5a{bottom:979.710000px;}
.ya0{bottom:984.930000px;}
.yb7{bottom:985.110000px;}
.y3{bottom:986.010000px;}
.y59{bottom:996.090000px;}
.y9f{bottom:1003.110000px;}
.yb6{bottom:1003.290000px;}
.y58{bottom:1009.590000px;}
.y4f{bottom:1013.550000px;}
.y9e{bottom:1021.290000px;}
.y57{bottom:1026.330000px;}
.y9d{bottom:1039.290000px;}
.y56{bottom:1044.510000px;}
.y4d{bottom:1055.130000px;}
.y9c{bottom:1057.470000px;}
.y55{bottom:1062.510000px;}
.y9b{bottom:1075.470000px;}
.y54{bottom:1080.690000px;}
.y9a{bottom:1098.720000px;}
.y53{bottom:1098.900000px;}
.y1{bottom:1142.100000px;}
.h10{height:33.683203px;}
.h8{height:34.005000px;}
.hc{height:35.194219px;}
.ha{height:36.210000px;}
.h6{height:41.430000px;}
.h11{height:47.321367px;}
.h5{height:47.344922px;}
.hf{height:49.583118px;}
.h2{height:52.998047px;}
.h3{height:58.621992px;}
.h1{height:58.651172px;}
.h4{height:61.423863px;}
.h9{height:65.010937px;}
.he{height:70.474219px;}
.hd{height:88.891172px;}
.h7{height:141.328125px;}
.hb{height:164.647266px;}
.h0{height:1188.000000px;}
.w3{width:28.116000px;}
.w2{width:708.570000px;}
.w1{width:806.535000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:15.120000px;}
.xd{left:55.800000px;}
.x1{left:70.200000px;}
.x20{left:75.600000px;}
.x3{left:85.500000px;}
.x5{left:98.316000px;}
.xf{left:104.805000px;}
.x24{left:106.956000px;}
.x22{left:109.656000px;}
.x21{left:111.636000px;}
.x19{left:112.716000px;}
.x10{left:116.625000px;}
.x15{left:142.956000px;}
.x11{left:173.190000px;}
.x1e{left:178.410000px;}
.x12{left:182.910000px;}
.x17{left:188.310000px;}
.x16{left:198.390000px;}
.x4{left:205.770000px;}
.x13{left:218.730000px;}
.x23{left:259.230000px;}
.x18{left:272.550000px;}
.x14{left:276.330000px;}
.x1f{left:448.275000px;}
.x2{left:459.075000px;}
.x6{left:469.875000px;}
.xa{left:481.575000px;}
.x8{left:485.175000px;}
.x27{left:496.875000px;}
.x1b{left:501.555000px;}
.xc{left:505.155000px;}
.x7{left:513.645000px;}
.x25{left:611.565000px;}
.x26{left:620.205000px;}
.x1d{left:658.905000px;}
.xb{left:817.710000px;}
.x9{left:840.030000px;}
.x1c{left:845.610000px;}
.x1a{left:847.950000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v2{vertical-align:-51.840000pt;}
.v5{vertical-align:-10.880000pt;}
.v3{vertical-align:-8.960000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v7{vertical-align:12.800000pt;}
.va{vertical-align:20.480000pt;}
.v4{vertical-align:26.880000pt;}
.v9{vertical-align:29.440000pt;}
.vb{vertical-align:31.360000pt;}
.vc{vertical-align:42.240000pt;}
.ls9{letter-spacing:-0.544000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.229333pt;}
.ls1f{letter-spacing:-0.067733pt;}
.ls1b{letter-spacing:-0.039680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.117760pt;}
.ls7{letter-spacing:0.136320pt;}
.ls0{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.161280pt;}
.ls1e{letter-spacing:0.175467pt;}
.ls6{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.340480pt;}
.ls17{letter-spacing:0.355200pt;}
.ls21{letter-spacing:0.545280pt;}
.ls1a{letter-spacing:0.802347pt;}
.ls18{letter-spacing:0.995200pt;}
.lsd{letter-spacing:1.417600pt;}
.lsb{letter-spacing:1.440000pt;}
.ls13{letter-spacing:3.610880pt;}
.lsc{letter-spacing:4.250880pt;}
.ls2{letter-spacing:7.632640pt;}
.ls12{letter-spacing:11.040000pt;}
.ls24{letter-spacing:13.039360pt;}
.lsf{letter-spacing:14.719360pt;}
.lse{letter-spacing:15.075200pt;}
.ls20{letter-spacing:22.992640pt;}
.ls19{letter-spacing:26.192640pt;}
.ls11{letter-spacing:27.040000pt;}
.ls4{letter-spacing:32.800000pt;}
.ls22{letter-spacing:34.159360pt;}
.ls16{letter-spacing:38.560000pt;}
.ls5{letter-spacing:41.120000pt;}
.ls1{letter-spacing:41.760000pt;}
.ls15{letter-spacing:104.000000pt;}
.ws1{word-spacing:-53.120000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.686400pt;}
.ws3{word-spacing:-10.720000pt;}
.ws12{word-spacing:-8.341867pt;}
.ws8{word-spacing:-8.166400pt;}
.ws13{word-spacing:-8.098667pt;}
.wsb{word-spacing:-7.937067pt;}
.ws10{word-spacing:-7.040000pt;}
.ws0{word-spacing:-0.053120pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:0.188800pt;}
.wsf{word-spacing:3.032960pt;}
.wse{word-spacing:3.388800pt;}
.wsa{word-spacing:3.672960pt;}
.ws9{word-spacing:43.420160pt;}
._22{margin-left:-12.734720pt;}
._18{margin-left:-10.358080pt;}
._1c{margin-left:-9.440000pt;}
._1d{margin-left:-8.096000pt;}
._1e{margin-left:-6.054400pt;}
._6{margin-left:-2.592000pt;}
._3{margin-left:-1.488000pt;}
._2{width:1.056000pt;}
._7{width:2.160000pt;}
._c{width:3.264000pt;}
._f{width:4.657280pt;}
._10{width:5.577600pt;}
._15{width:6.640000pt;}
._1{width:8.016000pt;}
._0{width:9.268267pt;}
._1b{width:10.238293pt;}
._11{width:11.208320pt;}
._17{width:12.105387pt;}
._19{width:14.245760pt;}
._1a{width:15.137707pt;}
._16{width:16.646400pt;}
._5{width:18.288000pt;}
._20{width:19.695147pt;}
._12{width:21.885440pt;}
._e{width:23.472000pt;}
._d{width:24.586667pt;}
._21{width:25.505493pt;}
._4{width:27.360000pt;}
._1f{width:28.256640pt;}
._23{width:31.075200pt;}
._24{width:32.405547pt;}
._8{width:33.312000pt;}
._9{width:34.416000pt;}
._a{width:39.360000pt;}
._b{width:40.368000pt;}
._13{width:47.861120pt;}
._14{width:49.590827pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:128.000000pt;}
.fs5{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:4.480000pt;}
.y4e{bottom:7.360000pt;}
.y50{bottom:16.960000pt;}
.y2{bottom:31.840000pt;}
.y35{bottom:69.760000pt;}
.y88{bottom:70.720000pt;}
.y99{bottom:71.520000pt;}
.yb5{bottom:81.760000pt;}
.y34{bottom:82.080000pt;}
.y87{bottom:86.720000pt;}
.y33{bottom:94.240000pt;}
.y98{bottom:94.560000pt;}
.yb4{bottom:97.440000pt;}
.y86{bottom:102.880000pt;}
.y4c{bottom:106.560000pt;}
.y97{bottom:107.360000pt;}
.yb3{bottom:111.840000pt;}
.y85{bottom:119.040000pt;}
.y32{bottom:119.520000pt;}
.yb2{bottom:131.680000pt;}
.y84{bottom:135.040000pt;}
.y31{bottom:136.800000pt;}
.y4b{bottom:137.600000pt;}
.y83{bottom:151.200000pt;}
.y30{bottom:152.960000pt;}
.y4a{bottom:157.440000pt;}
.y82{bottom:167.200000pt;}
.y2f{bottom:168.960000pt;}
.y81{bottom:183.360000pt;}
.y2e{bottom:185.120000pt;}
.y80{bottom:199.546667pt;}
.y2d{bottom:201.306667pt;}
.y7f{bottom:215.546667pt;}
.y2c{bottom:217.306667pt;}
.ye2{bottom:223.386667pt;}
.y7e{bottom:231.706667pt;}
.y2b{bottom:233.466667pt;}
.ye1{bottom:235.706667pt;}
.y7d{bottom:247.706667pt;}
.ye0{bottom:247.866667pt;}
.y2a{bottom:249.626667pt;}
.ydf{bottom:260.186667pt;}
.y7c{bottom:263.866667pt;}
.y29{bottom:265.626667pt;}
.yde{bottom:272.506667pt;}
.y7b{bottom:280.026667pt;}
.y28{bottom:281.786667pt;}
.ydd{bottom:284.666667pt;}
.yb1{bottom:295.226667pt;}
.y7a{bottom:296.026667pt;}
.ydc{bottom:296.986667pt;}
.y27{bottom:297.786667pt;}
.y49{bottom:308.346667pt;}
.ydb{bottom:309.306667pt;}
.y79{bottom:312.186667pt;}
.y26{bottom:313.946667pt;}
.yb0{bottom:317.626667pt;}
.yda{bottom:321.466667pt;}
.y48{bottom:324.346667pt;}
.y78{bottom:328.346667pt;}
.y25{bottom:330.106667pt;}
.yaf{bottom:332.186667pt;}
.yd9{bottom:333.786667pt;}
.y47{bottom:340.506667pt;}
.y77{bottom:344.346667pt;}
.y24{bottom:346.106667pt;}
.yae{bottom:352.026667pt;}
.y46{bottom:356.506667pt;}
.yd8{bottom:358.266667pt;}
.y76{bottom:360.506667pt;}
.y23{bottom:362.266667pt;}
.yd7{bottom:370.586667pt;}
.y45{bottom:372.666667pt;}
.y75{bottom:376.506667pt;}
.y22{bottom:378.266667pt;}
.yd6{bottom:382.906667pt;}
.y44{bottom:388.826667pt;}
.y74{bottom:392.706667pt;}
.y21{bottom:394.466667pt;}
.yd5{bottom:395.106667pt;}
.y43{bottom:404.386667pt;}
.yd4{bottom:407.426667pt;}
.y73{bottom:408.866667pt;}
.y20{bottom:410.626667pt;}
.yd3{bottom:419.746667pt;}
.y42{bottom:424.226667pt;}
.y72{bottom:424.866667pt;}
.y1f{bottom:426.626667pt;}
.yd2{bottom:431.906667pt;}
.y96{bottom:434.146667pt;}
.y71{bottom:441.026667pt;}
.y1e{bottom:442.786667pt;}
.yd1{bottom:444.226667pt;}
.y95{bottom:450.146667pt;}
.yd0{bottom:456.546667pt;}
.y70{bottom:457.186667pt;}
.y1d{bottom:458.946667pt;}
.y94{bottom:466.306667pt;}
.ycf{bottom:468.706667pt;}
.y6f{bottom:473.186667pt;}
.y1c{bottom:474.946667pt;}
.yce{bottom:481.026667pt;}
.y93{bottom:482.466667pt;}
.y6e{bottom:489.346667pt;}
.y1b{bottom:491.106667pt;}
.ycd{bottom:493.346667pt;}
.y92{bottom:498.466667pt;}
.y6d{bottom:505.346667pt;}
.ycc{bottom:505.506667pt;}
.y1a{bottom:507.106667pt;}
.y91{bottom:514.626667pt;}
.ycb{bottom:517.826667pt;}
.y6c{bottom:521.506667pt;}
.yad{bottom:522.306667pt;}
.y19{bottom:523.266667pt;}
.yca{bottom:530.146667pt;}
.y90{bottom:530.626667pt;}
.y6b{bottom:537.666667pt;}
.yac{bottom:538.466667pt;}
.y18{bottom:539.426667pt;}
.yc9{bottom:542.306667pt;}
.y8f{bottom:546.786667pt;}
.y51{bottom:551.426667pt;}
.y6a{bottom:553.666667pt;}
.yab{bottom:554.626667pt;}
.y17{bottom:555.426667pt;}
.y8e{bottom:562.946667pt;}
.yc8{bottom:566.946667pt;}
.y69{bottom:569.826667pt;}
.yaa{bottom:570.626667pt;}
.y16{bottom:571.586667pt;}
.y8d{bottom:578.946667pt;}
.yc7{bottom:579.106667pt;}
.y68{bottom:585.853333pt;}
.ya9{bottom:586.813333pt;}
.yc6{bottom:591.453333pt;}
.y15{bottom:592.093333pt;}
.y8c{bottom:595.133333pt;}
.ya8{bottom:602.333333pt;}
.yc5{bottom:603.773333pt;}
.y67{bottom:606.493333pt;}
.y8b{bottom:611.293333pt;}
.yc4{bottom:615.933333pt;}
.ya7{bottom:616.893333pt;}
.y14{bottom:623.133333pt;}
.y8a{bottom:626.813333pt;}
.yc3{bottom:634.013333pt;}
.ya6{bottom:636.733333pt;}
.y66{bottom:638.653333pt;}
.y89{bottom:646.493333pt;}
.y13{bottom:652.253333pt;}
.y65{bottom:654.813333pt;}
.y41{bottom:663.773333pt;}
.y12{bottom:666.173333pt;}
.yc2{bottom:666.333333pt;}
.y64{bottom:671.133333pt;}
.y40{bottom:678.813333pt;}
.y11{bottom:679.933333pt;}
.yc1{bottom:682.493333pt;}
.y63{bottom:687.293333pt;}
.y10{bottom:693.693333pt;}
.y3f{bottom:694.973333pt;}
.yc0{bottom:698.493333pt;}
.y62{bottom:703.773333pt;}
.yf{bottom:707.453333pt;}
.y3e{bottom:710.973333pt;}
.ybf{bottom:714.653333pt;}
.y61{bottom:720.093333pt;}
.ye{bottom:721.373333pt;}
.y3d{bottom:727.133333pt;}
.ybe{bottom:730.653333pt;}
.yd{bottom:735.133333pt;}
.y3c{bottom:743.133333pt;}
.ybd{bottom:746.813333pt;}
.yc{bottom:748.893333pt;}
.y60{bottom:750.653333pt;}
.y5f{bottom:757.373333pt;}
.y3b{bottom:759.293333pt;}
.yb{bottom:762.653333pt;}
.ybc{bottom:762.973333pt;}
.ya{bottom:776.453333pt;}
.ybb{bottom:779.013333pt;}
.y3a{bottom:779.813333pt;}
.y9{bottom:790.373333pt;}
.y5e{bottom:791.653333pt;}
.ya5{bottom:795.013333pt;}
.yba{bottom:795.173333pt;}
.y5d{bottom:798.373333pt;}
.y8{bottom:804.133333pt;}
.ya4{bottom:811.173333pt;}
.y39{bottom:812.133333pt;}
.y7{bottom:817.893333pt;}
.ya3{bottom:827.173333pt;}
.yb9{bottom:827.333333pt;}
.y38{bottom:828.133333pt;}
.y6{bottom:831.653333pt;}
.y5c{bottom:831.973333pt;}
.y5b{bottom:838.693333pt;}
.ya2{bottom:843.333333pt;}
.yb8{bottom:843.493333pt;}
.y37{bottom:844.293333pt;}
.y5{bottom:845.573333pt;}
.y4{bottom:859.333333pt;}
.ya1{bottom:859.493333pt;}
.y36{bottom:860.453333pt;}
.y5a{bottom:870.853333pt;}
.ya0{bottom:875.493333pt;}
.yb7{bottom:875.653333pt;}
.y3{bottom:876.453333pt;}
.y59{bottom:885.413333pt;}
.y9f{bottom:891.653333pt;}
.yb6{bottom:891.813333pt;}
.y58{bottom:897.413333pt;}
.y4f{bottom:900.933333pt;}
.y9e{bottom:907.813333pt;}
.y57{bottom:912.293333pt;}
.y9d{bottom:923.813333pt;}
.y56{bottom:928.453333pt;}
.y4d{bottom:937.893333pt;}
.y9c{bottom:939.973333pt;}
.y55{bottom:944.453333pt;}
.y9b{bottom:955.973333pt;}
.y54{bottom:960.613333pt;}
.y9a{bottom:976.640000pt;}
.y53{bottom:976.800000pt;}
.y1{bottom:1015.200000pt;}
.h10{height:29.940625pt;}
.h8{height:30.226667pt;}
.hc{height:31.283750pt;}
.ha{height:32.186667pt;}
.h6{height:36.826667pt;}
.h11{height:42.063437pt;}
.h5{height:42.084375pt;}
.hf{height:44.073883pt;}
.h2{height:47.109375pt;}
.h3{height:52.108438pt;}
.h1{height:52.134375pt;}
.h4{height:54.598989pt;}
.h9{height:57.787500pt;}
.he{height:62.643750pt;}
.hd{height:79.014375pt;}
.h7{height:125.625000pt;}
.hb{height:146.353125pt;}
.h0{height:1056.000000pt;}
.w3{width:24.992000pt;}
.w2{width:629.840000pt;}
.w1{width:716.920000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:13.440000pt;}
.xd{left:49.600000pt;}
.x1{left:62.400000pt;}
.x20{left:67.200000pt;}
.x3{left:76.000000pt;}
.x5{left:87.392000pt;}
.xf{left:93.160000pt;}
.x24{left:95.072000pt;}
.x22{left:97.472000pt;}
.x21{left:99.232000pt;}
.x19{left:100.192000pt;}
.x10{left:103.666667pt;}
.x15{left:127.072000pt;}
.x11{left:153.946667pt;}
.x1e{left:158.586667pt;}
.x12{left:162.586667pt;}
.x17{left:167.386667pt;}
.x16{left:176.346667pt;}
.x4{left:182.906667pt;}
.x13{left:194.426667pt;}
.x23{left:230.426667pt;}
.x18{left:242.266667pt;}
.x14{left:245.626667pt;}
.x1f{left:398.466667pt;}
.x2{left:408.066667pt;}
.x6{left:417.666667pt;}
.xa{left:428.066667pt;}
.x8{left:431.266667pt;}
.x27{left:441.666667pt;}
.x1b{left:445.826667pt;}
.xc{left:449.026667pt;}
.x7{left:456.573333pt;}
.x25{left:543.613333pt;}
.x26{left:551.293333pt;}
.x1d{left:585.693333pt;}
.xb{left:726.853333pt;}
.x9{left:746.693333pt;}
.x1c{left:751.653333pt;}
.x1a{left:753.733333pt;}
}




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