
    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_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.884277;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_cc98d09da9b30dbb22ba5667.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a20910bc36355ec9dad5138f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6663c74df4229e16a42a9c55.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5621456604e8b978f467976e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_5113d0e209ac148353c0a17d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6aec4ff04ac5a2e5bcc70b99.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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);}
.v2{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.120000px;}
.v1{vertical-align:38.880000px;}
.ls1b{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.272400px;}
.lsb{letter-spacing:-0.269400px;}
.lsc{letter-spacing:-0.223800px;}
.ls25{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.109200px;}
.ls1c{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls13{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.153360px;}
.ls23{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.256200px;}
.ls1d{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.450600px;}
.ls27{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.080000px;}
.ls1e{letter-spacing:2.334240px;}
.ls18{letter-spacing:2.880000px;}
.ls1f{letter-spacing:3.780000px;}
.ls22{letter-spacing:4.320000px;}
.ls24{letter-spacing:5.934240px;}
.ls4{letter-spacing:6.629760px;}
.ls1a{letter-spacing:10.254240px;}
.ls19{letter-spacing:10.260000px;}
.ls17{letter-spacing:10.800000px;}
.ls12{letter-spacing:11.694240px;}
.ls14{letter-spacing:12.420000px;}
.ls6{letter-spacing:28.224000px;}
.ls5{letter-spacing:31.824000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.wse{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.226440px;}
.wsc{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws5{word-spacing:-12.510600px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.836200px;}
.ws3{word-spacing:-11.790600px;}
.ws8{word-spacing:0.000000px;}
._12{margin-left:-3.028800px;}
._0{margin-left:-1.485360px;}
._1{width:1.182480px;}
._3{width:2.623200px;}
._d{width:3.711840px;}
._8{width:5.040000px;}
._4{width:6.960000px;}
._7{width:8.052240px;}
._c{width:9.221280px;}
._9{width:10.560000px;}
._a{width:11.736000px;}
._b{width:13.091040px;}
._10{width:14.904000px;}
._11{width:16.025520px;}
._14{width:17.839440px;}
._f{width:19.152000px;}
._15{width:21.150000px;}
._5{width:22.176000px;}
._6{width:23.256000px;}
._e{width:24.425520px;}
._2{width:25.980000px;}
._13{width:27.252000px;}
._16{width:28.487280px;}
._22{width:29.569440px;}
._18{width:31.157280px;}
._17{width:32.373360px;}
._1c{width:33.669360px;}
._1f{width:34.848000px;}
._20{width:35.924160px;}
._1d{width:37.944000px;}
._1e{width:39.134880px;}
._21{width:40.419360px;}
._23{width:42.121920px;}
._19{width:48.672000px;}
._1b{width:64.709280px;}
._1a{width:66.213360px;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.636000px;}
.y1{bottom:77.796000px;}
.y36{bottom:109.836000px;}
.y35{bottom:116.676000px;}
.y6c{bottom:127.116000px;}
.y34{bottom:128.016000px;}
.ycd{bottom:133.956000px;}
.y6b{bottom:144.396000px;}
.ycc{bottom:145.296000px;}
.y33{bottom:157.170000px;}
.y6a{bottom:161.670000px;}
.ye0{bottom:162.030000px;}
.ycb{bottom:167.430000px;}
.y69{bottom:168.510000px;}
.ydf{bottom:169.590000px;}
.y32{bottom:177.870000px;}
.y68{bottom:178.950000px;}
.yba{bottom:179.310000px;}
.yde{bottom:180.390000px;}
.y67{bottom:185.790000px;}
.yb9{bottom:186.870000px;}
.ydd{bottom:187.950000px;}
.yca{bottom:188.130000px;}
.y85{bottom:196.230000px;}
.y66{bottom:197.130000px;}
.ydc{bottom:198.210000px;}
.y31{bottom:198.570000px;}
.yc9{bottom:208.830000px;}
.y84{bottom:213.330000px;}
.ye3{bottom:213.690000px;}
.yb8{bottom:214.410000px;}
.ydb{bottom:215.490000px;}
.y30{bottom:219.270000px;}
.ye2{bottom:221.250000px;}
.y64{bottom:229.530000px;}
.y83{bottom:230.610000px;}
.yb7{bottom:231.690000px;}
.ye1{bottom:232.590000px;}
.yda{bottom:232.770000px;}
.yd4{bottom:237.450000px;}
.y65{bottom:237.810000px;}
.y2f{bottom:239.970000px;}
.y82{bottom:247.890000px;}
.yb6{bottom:248.970000px;}
.yd9{bottom:250.050000px;}
.y63{bottom:250.230000px;}
.yd8{bottom:256.890000px;}
.y2e{bottom:260.490000px;}
.y81{bottom:265.170000px;}
.yb5{bottom:266.250000px;}
.yd7{bottom:268.230000px;}
.y61{bottom:270.930000px;}
.y62{bottom:279.255000px;}
.y2d{bottom:281.235000px;}
.y80{bottom:282.495000px;}
.yb4{bottom:283.575000px;}
.y60{bottom:291.675000px;}
.y7f{bottom:299.595000px;}
.yb3{bottom:300.675000px;}
.y2c{bottom:301.935000px;}
.y5f{bottom:312.375000px;}
.y7e{bottom:316.875000px;}
.yb2{bottom:317.955000px;}
.y2b{bottom:322.635000px;}
.y5e{bottom:333.075000px;}
.y7d{bottom:334.155000px;}
.yb1{bottom:335.235000px;}
.y2a{bottom:343.335000px;}
.y7c{bottom:351.435000px;}
.yd3{bottom:351.795000px;}
.yb0{bottom:352.515000px;}
.y5d{bottom:353.775000px;}
.yd2{bottom:359.355000px;}
.y29{bottom:364.035000px;}
.y7b{bottom:368.715000px;}
.yaf{bottom:369.795000px;}
.yd1{bottom:370.695000px;}
.y5c{bottom:374.475000px;}
.y28{bottom:384.735000px;}
.y7a{bottom:385.995000px;}
.yae{bottom:387.075000px;}
.y5b{bottom:394.815000px;}
.yc8{bottom:395.175000px;}
.y79{bottom:403.095000px;}
.yd0{bottom:403.455000px;}
.yad{bottom:404.175000px;}
.y27{bottom:405.435000px;}
.y5a{bottom:415.875000px;}
.y78{bottom:420.375000px;}
.yac{bottom:421.455000px;}
.y26{bottom:426.135000px;}
.y59{bottom:436.575000px;}
.y77{bottom:437.655000px;}
.yab{bottom:438.735000px;}
.y25{bottom:446.835000px;}
.y76{bottom:454.935000px;}
.yaa{bottom:456.015000px;}
.y58{bottom:457.275000px;}
.y24{bottom:467.535000px;}
.y75{bottom:472.215000px;}
.ya9{bottom:473.295000px;}
.y57{bottom:477.975000px;}
.y23{bottom:488.235000px;}
.y74{bottom:489.495000px;}
.ya8{bottom:490.395000px;}
.y56{bottom:498.675000px;}
.y73{bottom:506.595000px;}
.ycf{bottom:506.955000px;}
.ya7{bottom:507.675000px;}
.y22{bottom:508.935000px;}
.ybf{bottom:513.435000px;}
.y55{bottom:519.375000px;}
.y72{bottom:523.875000px;}
.ybe{bottom:524.775000px;}
.ya6{bottom:524.955000px;}
.y21{bottom:529.635000px;}
.y54{bottom:540.075000px;}
.y71{bottom:541.155000px;}
.ya5{bottom:542.235000px;}
.y20{bottom:550.335000px;}
.y70{bottom:558.465000px;}
.ya4{bottom:559.545000px;}
.y53{bottom:560.805000px;}
.y6f{bottom:565.305000px;}
.ybd{bottom:569.085000px;}
.y1f{bottom:570.705000px;}
.yc6{bottom:575.745000px;}
.y6e{bottom:576.645000px;}
.ya3{bottom:576.825000px;}
.y52{bottom:581.505000px;}
.yc7{bottom:589.785000px;}
.y1e{bottom:591.765000px;}
.yc5{bottom:593.025000px;}
.ya2{bottom:593.925000px;}
.y51{bottom:602.205000px;}
.yc4{bottom:610.125000px;}
.ya1{bottom:611.205000px;}
.y1d{bottom:612.465000px;}
.y50{bottom:622.905000px;}
.yc3{bottom:628.305000px;}
.ya0{bottom:628.485000px;}
.y1c{bottom:633.165000px;}
.y4f{bottom:643.605000px;}
.y9f{bottom:645.765000px;}
.y6d{bottom:651.885000px;}
.y1b{bottom:653.865000px;}
.y9e{bottom:663.045000px;}
.y4e{bottom:664.305000px;}
.y1a{bottom:674.565000px;}
.y9d{bottom:680.325000px;}
.y4d{bottom:685.005000px;}
.y19{bottom:695.265000px;}
.y9c{bottom:697.425000px;}
.y4c{bottom:705.705000px;}
.ybc{bottom:713.985000px;}
.y9b{bottom:714.705000px;}
.y18{bottom:715.965000px;}
.y4b{bottom:726.405000px;}
.y9a{bottom:731.985000px;}
.y17{bottom:736.665000px;}
.y4a{bottom:747.105000px;}
.y99{bottom:749.265000px;}
.y16{bottom:757.365000px;}
.y98{bottom:766.545000px;}
.y49{bottom:767.805000px;}
.y15{bottom:778.065000px;}
.y97{bottom:783.645000px;}
.y48{bottom:788.505000px;}
.y14{bottom:798.765000px;}
.y96{bottom:800.925000px;}
.y47{bottom:809.205000px;}
.y95{bottom:818.205000px;}
.y13{bottom:819.465000px;}
.y46{bottom:829.905000px;}
.y94{bottom:835.485000px;}
.yce{bottom:838.185000px;}
.y12{bottom:840.210000px;}
.y45{bottom:850.650000px;}
.y93{bottom:852.810000px;}
.yd6{bottom:858.930000px;}
.y11{bottom:860.910000px;}
.y92{bottom:870.090000px;}
.y44{bottom:871.350000px;}
.yd5{bottom:879.630000px;}
.y10{bottom:881.610000px;}
.y91{bottom:887.190000px;}
.yc2{bottom:891.690000px;}
.y43{bottom:892.050000px;}
.yf{bottom:902.310000px;}
.y90{bottom:904.470000px;}
.yc1{bottom:912.390000px;}
.y42{bottom:912.750000px;}
.y8f{bottom:921.750000px;}
.ye{bottom:923.010000px;}
.yc0{bottom:933.090000px;}
.y41{bottom:933.450000px;}
.y8e{bottom:939.030000px;}
.yd{bottom:943.710000px;}
.y40{bottom:954.150000px;}
.y8d{bottom:956.310000px;}
.ybb{bottom:962.430000px;}
.yc{bottom:964.410000px;}
.y8c{bottom:973.590000px;}
.y3f{bottom:974.850000px;}
.yb{bottom:985.110000px;}
.y8b{bottom:990.690000px;}
.y3e{bottom:995.550000px;}
.ya{bottom:1005.090000px;}
.y8a{bottom:1007.970000px;}
.y89{bottom:1014.810000px;}
.y3d{bottom:1016.250000px;}
.y9{bottom:1022.370000px;}
.y88{bottom:1026.150000px;}
.y3c{bottom:1036.950000px;}
.y3b{bottom:1057.650000px;}
.y8{bottom:1059.450000px;}
.y7{bottom:1073.310000px;}
.y3a{bottom:1078.350000px;}
.y87{bottom:1086.630000px;}
.y5{bottom:1088.790000px;}
.y6{bottom:1098.510000px;}
.y39{bottom:1099.050000px;}
.y4{bottom:1112.910000px;}
.y38{bottom:1119.750000px;}
.y3{bottom:1137.240000px;}
.y37{bottom:1140.480000px;}
.y86{bottom:1148.760000px;}
.h11{height:29.482734px;}
.hb{height:38.158594px;}
.hf{height:45.549492px;}
.h6{height:47.344922px;}
.h2{height:50.229844px;}
.h10{height:53.573906px;}
.h5{height:54.421875px;}
.h7{height:58.621992px;}
.hc{height:58.651172px;}
.h12{height:64.546875px;}
.hd{height:70.628906px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.ha{height:74.004654px;}
.he{height:80.464922px;}
.h3{height:84.898125px;}
.h4{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:100.656000px;}
.x2{left:127.656000px;}
.xd{left:132.516000px;}
.x3{left:133.776000px;}
.x4{left:136.116000px;}
.x21{left:137.376000px;}
.x16{left:177.688125px;}
.x17{left:183.810000px;}
.x1a{left:195.688125px;}
.x1b{left:201.810000px;}
.x1c{left:207.030000px;}
.x22{left:248.968125px;}
.x23{left:261.210000px;}
.xa{left:286.950000px;}
.x8{left:297.210000px;}
.x1e{left:298.335000px;}
.x29{left:299.773125px;}
.xe{left:304.633125px;}
.xf{left:310.755000px;}
.x2a{left:312.015000px;}
.x10{left:318.493125px;}
.x11{left:324.615000px;}
.xc{left:343.695000px;}
.x9{left:369.435000px;}
.x5{left:374.835000px;}
.x1f{left:420.013125px;}
.x20{left:432.255000px;}
.x2f{left:438.195000px;}
.x1{left:442.335000px;}
.x2b{left:498.163125px;}
.x2c{left:510.405000px;}
.x6{left:511.483125px;}
.x12{left:513.283125px;}
.x24{left:515.623125px;}
.x7{left:518.325000px;}
.x13{left:519.405000px;}
.x25{left:527.865000px;}
.x18{left:545.683125px;}
.x19{left:551.805000px;}
.x14{left:555.943125px;}
.x26{left:558.825000px;}
.x15{left:562.065000px;}
.x27{left:626.683125px;}
.x28{left:638.925000px;}
.x2d{left:717.088125px;}
.x2e{left:729.330000px;}
.x30{left:748.948125px;}
.x31{left:761.190000px;}
.x1d{left:765.510000px;}
@media print{
.v2{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.440000pt;}
.v1{vertical-align:34.560000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.242133pt;}
.lsb{letter-spacing:-0.239467pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.097067pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls13{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.136320pt;}
.ls23{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.227733pt;}
.ls1d{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.400533pt;}
.ls27{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:2.074880pt;}
.ls18{letter-spacing:2.560000pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls22{letter-spacing:3.840000pt;}
.ls24{letter-spacing:5.274880pt;}
.ls4{letter-spacing:5.893120pt;}
.ls1a{letter-spacing:9.114880pt;}
.ls19{letter-spacing:9.120000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls12{letter-spacing:10.394880pt;}
.ls14{letter-spacing:11.040000pt;}
.ls6{letter-spacing:25.088000pt;}
.ls5{letter-spacing:28.288000pt;}
.ws0{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.448533pt;}
.ws9{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.534613pt;}
.wsc{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws5{word-spacing:-11.120533pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:-10.521067pt;}
.ws3{word-spacing:-10.480533pt;}
.ws8{word-spacing:0.000000pt;}
._12{margin-left:-2.692267pt;}
._0{margin-left:-1.320320pt;}
._1{width:1.051093pt;}
._3{width:2.331733pt;}
._d{width:3.299413pt;}
._8{width:4.480000pt;}
._4{width:6.186667pt;}
._7{width:7.157547pt;}
._c{width:8.196693pt;}
._9{width:9.386667pt;}
._a{width:10.432000pt;}
._b{width:11.636480pt;}
._10{width:13.248000pt;}
._11{width:14.244907pt;}
._14{width:15.857280pt;}
._f{width:17.024000pt;}
._15{width:18.800000pt;}
._5{width:19.712000pt;}
._6{width:20.672000pt;}
._e{width:21.711573pt;}
._2{width:23.093333pt;}
._13{width:24.224000pt;}
._16{width:25.322027pt;}
._22{width:26.283947pt;}
._18{width:27.695360pt;}
._17{width:28.776320pt;}
._1c{width:29.928320pt;}
._1f{width:30.976000pt;}
._20{width:31.932587pt;}
._1d{width:33.728000pt;}
._1e{width:34.786560pt;}
._21{width:35.928320pt;}
._23{width:37.441707pt;}
._19{width:43.264000pt;}
._1b{width:57.519360pt;}
._1a{width:58.856320pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.232000pt;}
.y1{bottom:69.152000pt;}
.y36{bottom:97.632000pt;}
.y35{bottom:103.712000pt;}
.y6c{bottom:112.992000pt;}
.y34{bottom:113.792000pt;}
.ycd{bottom:119.072000pt;}
.y6b{bottom:128.352000pt;}
.ycc{bottom:129.152000pt;}
.y33{bottom:139.706667pt;}
.y6a{bottom:143.706667pt;}
.ye0{bottom:144.026667pt;}
.ycb{bottom:148.826667pt;}
.y69{bottom:149.786667pt;}
.ydf{bottom:150.746667pt;}
.y32{bottom:158.106667pt;}
.y68{bottom:159.066667pt;}
.yba{bottom:159.386667pt;}
.yde{bottom:160.346667pt;}
.y67{bottom:165.146667pt;}
.yb9{bottom:166.106667pt;}
.ydd{bottom:167.066667pt;}
.yca{bottom:167.226667pt;}
.y85{bottom:174.426667pt;}
.y66{bottom:175.226667pt;}
.ydc{bottom:176.186667pt;}
.y31{bottom:176.506667pt;}
.yc9{bottom:185.626667pt;}
.y84{bottom:189.626667pt;}
.ye3{bottom:189.946667pt;}
.yb8{bottom:190.586667pt;}
.ydb{bottom:191.546667pt;}
.y30{bottom:194.906667pt;}
.ye2{bottom:196.666667pt;}
.y64{bottom:204.026667pt;}
.y83{bottom:204.986667pt;}
.yb7{bottom:205.946667pt;}
.ye1{bottom:206.746667pt;}
.yda{bottom:206.906667pt;}
.yd4{bottom:211.066667pt;}
.y65{bottom:211.386667pt;}
.y2f{bottom:213.306667pt;}
.y82{bottom:220.346667pt;}
.yb6{bottom:221.306667pt;}
.yd9{bottom:222.266667pt;}
.y63{bottom:222.426667pt;}
.yd8{bottom:228.346667pt;}
.y2e{bottom:231.546667pt;}
.y81{bottom:235.706667pt;}
.yb5{bottom:236.666667pt;}
.yd7{bottom:238.426667pt;}
.y61{bottom:240.826667pt;}
.y62{bottom:248.226667pt;}
.y2d{bottom:249.986667pt;}
.y80{bottom:251.106667pt;}
.yb4{bottom:252.066667pt;}
.y60{bottom:259.266667pt;}
.y7f{bottom:266.306667pt;}
.yb3{bottom:267.266667pt;}
.y2c{bottom:268.386667pt;}
.y5f{bottom:277.666667pt;}
.y7e{bottom:281.666667pt;}
.yb2{bottom:282.626667pt;}
.y2b{bottom:286.786667pt;}
.y5e{bottom:296.066667pt;}
.y7d{bottom:297.026667pt;}
.yb1{bottom:297.986667pt;}
.y2a{bottom:305.186667pt;}
.y7c{bottom:312.386667pt;}
.yd3{bottom:312.706667pt;}
.yb0{bottom:313.346667pt;}
.y5d{bottom:314.466667pt;}
.yd2{bottom:319.426667pt;}
.y29{bottom:323.586667pt;}
.y7b{bottom:327.746667pt;}
.yaf{bottom:328.706667pt;}
.yd1{bottom:329.506667pt;}
.y5c{bottom:332.866667pt;}
.y28{bottom:341.986667pt;}
.y7a{bottom:343.106667pt;}
.yae{bottom:344.066667pt;}
.y5b{bottom:350.946667pt;}
.yc8{bottom:351.266667pt;}
.y79{bottom:358.306667pt;}
.yd0{bottom:358.626667pt;}
.yad{bottom:359.266667pt;}
.y27{bottom:360.386667pt;}
.y5a{bottom:369.666667pt;}
.y78{bottom:373.666667pt;}
.yac{bottom:374.626667pt;}
.y26{bottom:378.786667pt;}
.y59{bottom:388.066667pt;}
.y77{bottom:389.026667pt;}
.yab{bottom:389.986667pt;}
.y25{bottom:397.186667pt;}
.y76{bottom:404.386667pt;}
.yaa{bottom:405.346667pt;}
.y58{bottom:406.466667pt;}
.y24{bottom:415.586667pt;}
.y75{bottom:419.746667pt;}
.ya9{bottom:420.706667pt;}
.y57{bottom:424.866667pt;}
.y23{bottom:433.986667pt;}
.y74{bottom:435.106667pt;}
.ya8{bottom:435.906667pt;}
.y56{bottom:443.266667pt;}
.y73{bottom:450.306667pt;}
.ycf{bottom:450.626667pt;}
.ya7{bottom:451.266667pt;}
.y22{bottom:452.386667pt;}
.ybf{bottom:456.386667pt;}
.y55{bottom:461.666667pt;}
.y72{bottom:465.666667pt;}
.ybe{bottom:466.466667pt;}
.ya6{bottom:466.626667pt;}
.y21{bottom:470.786667pt;}
.y54{bottom:480.066667pt;}
.y71{bottom:481.026667pt;}
.ya5{bottom:481.986667pt;}
.y20{bottom:489.186667pt;}
.y70{bottom:496.413333pt;}
.ya4{bottom:497.373333pt;}
.y53{bottom:498.493333pt;}
.y6f{bottom:502.493333pt;}
.ybd{bottom:505.853333pt;}
.y1f{bottom:507.293333pt;}
.yc6{bottom:511.773333pt;}
.y6e{bottom:512.573333pt;}
.ya3{bottom:512.733333pt;}
.y52{bottom:516.893333pt;}
.yc7{bottom:524.253333pt;}
.y1e{bottom:526.013333pt;}
.yc5{bottom:527.133333pt;}
.ya2{bottom:527.933333pt;}
.y51{bottom:535.293333pt;}
.yc4{bottom:542.333333pt;}
.ya1{bottom:543.293333pt;}
.y1d{bottom:544.413333pt;}
.y50{bottom:553.693333pt;}
.yc3{bottom:558.493333pt;}
.ya0{bottom:558.653333pt;}
.y1c{bottom:562.813333pt;}
.y4f{bottom:572.093333pt;}
.y9f{bottom:574.013333pt;}
.y6d{bottom:579.453333pt;}
.y1b{bottom:581.213333pt;}
.y9e{bottom:589.373333pt;}
.y4e{bottom:590.493333pt;}
.y1a{bottom:599.613333pt;}
.y9d{bottom:604.733333pt;}
.y4d{bottom:608.893333pt;}
.y19{bottom:618.013333pt;}
.y9c{bottom:619.933333pt;}
.y4c{bottom:627.293333pt;}
.ybc{bottom:634.653333pt;}
.y9b{bottom:635.293333pt;}
.y18{bottom:636.413333pt;}
.y4b{bottom:645.693333pt;}
.y9a{bottom:650.653333pt;}
.y17{bottom:654.813333pt;}
.y4a{bottom:664.093333pt;}
.y99{bottom:666.013333pt;}
.y16{bottom:673.213333pt;}
.y98{bottom:681.373333pt;}
.y49{bottom:682.493333pt;}
.y15{bottom:691.613333pt;}
.y97{bottom:696.573333pt;}
.y48{bottom:700.893333pt;}
.y14{bottom:710.013333pt;}
.y96{bottom:711.933333pt;}
.y47{bottom:719.293333pt;}
.y95{bottom:727.293333pt;}
.y13{bottom:728.413333pt;}
.y46{bottom:737.693333pt;}
.y94{bottom:742.653333pt;}
.yce{bottom:745.053333pt;}
.y12{bottom:746.853333pt;}
.y45{bottom:756.133333pt;}
.y93{bottom:758.053333pt;}
.yd6{bottom:763.493333pt;}
.y11{bottom:765.253333pt;}
.y92{bottom:773.413333pt;}
.y44{bottom:774.533333pt;}
.yd5{bottom:781.893333pt;}
.y10{bottom:783.653333pt;}
.y91{bottom:788.613333pt;}
.yc2{bottom:792.613333pt;}
.y43{bottom:792.933333pt;}
.yf{bottom:802.053333pt;}
.y90{bottom:803.973333pt;}
.yc1{bottom:811.013333pt;}
.y42{bottom:811.333333pt;}
.y8f{bottom:819.333333pt;}
.ye{bottom:820.453333pt;}
.yc0{bottom:829.413333pt;}
.y41{bottom:829.733333pt;}
.y8e{bottom:834.693333pt;}
.yd{bottom:838.853333pt;}
.y40{bottom:848.133333pt;}
.y8d{bottom:850.053333pt;}
.ybb{bottom:855.493333pt;}
.yc{bottom:857.253333pt;}
.y8c{bottom:865.413333pt;}
.y3f{bottom:866.533333pt;}
.yb{bottom:875.653333pt;}
.y8b{bottom:880.613333pt;}
.y3e{bottom:884.933333pt;}
.ya{bottom:893.413333pt;}
.y8a{bottom:895.973333pt;}
.y89{bottom:902.053333pt;}
.y3d{bottom:903.333333pt;}
.y9{bottom:908.773333pt;}
.y88{bottom:912.133333pt;}
.y3c{bottom:921.733333pt;}
.y3b{bottom:940.133333pt;}
.y8{bottom:941.733333pt;}
.y7{bottom:954.053333pt;}
.y3a{bottom:958.533333pt;}
.y87{bottom:965.893333pt;}
.y5{bottom:967.813333pt;}
.y6{bottom:976.453333pt;}
.y39{bottom:976.933333pt;}
.y4{bottom:989.253333pt;}
.y38{bottom:995.333333pt;}
.y3{bottom:1010.880000pt;}
.y37{bottom:1013.760000pt;}
.y86{bottom:1021.120000pt;}
.h11{height:26.206875pt;}
.hb{height:33.918750pt;}
.hf{height:40.488438pt;}
.h6{height:42.084375pt;}
.h2{height:44.648750pt;}
.h10{height:47.621250pt;}
.h5{height:48.375000pt;}
.h7{height:52.108438pt;}
.hc{height:52.134375pt;}
.h12{height:57.375000pt;}
.hd{height:62.781250pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.ha{height:65.781915pt;}
.he{height:71.524375pt;}
.h3{height:75.465000pt;}
.h4{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:89.472000pt;}
.x2{left:113.472000pt;}
.xd{left:117.792000pt;}
.x3{left:118.912000pt;}
.x4{left:120.992000pt;}
.x21{left:122.112000pt;}
.x16{left:157.945000pt;}
.x17{left:163.386667pt;}
.x1a{left:173.945000pt;}
.x1b{left:179.386667pt;}
.x1c{left:184.026667pt;}
.x22{left:221.305000pt;}
.x23{left:232.186667pt;}
.xa{left:255.066667pt;}
.x8{left:264.186667pt;}
.x1e{left:265.186667pt;}
.x29{left:266.465000pt;}
.xe{left:270.785000pt;}
.xf{left:276.226667pt;}
.x2a{left:277.346667pt;}
.x10{left:283.105000pt;}
.x11{left:288.546667pt;}
.xc{left:305.506667pt;}
.x9{left:328.386667pt;}
.x5{left:333.186667pt;}
.x1f{left:373.345000pt;}
.x20{left:384.226667pt;}
.x2f{left:389.506667pt;}
.x1{left:393.186667pt;}
.x2b{left:442.811667pt;}
.x2c{left:453.693333pt;}
.x6{left:454.651667pt;}
.x12{left:456.251667pt;}
.x24{left:458.331667pt;}
.x7{left:460.733333pt;}
.x13{left:461.693333pt;}
.x25{left:469.213333pt;}
.x18{left:485.051667pt;}
.x19{left:490.493333pt;}
.x14{left:494.171667pt;}
.x26{left:496.733333pt;}
.x15{left:499.613333pt;}
.x27{left:557.051667pt;}
.x28{left:567.933333pt;}
.x2d{left:637.411667pt;}
.x2e{left:648.293333pt;}
.x30{left:665.731667pt;}
.x31{left:676.613333pt;}
.x1d{left:680.453333pt;}
}




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