
    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_17a59b173d1c597e51a40b28.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ce0b2e584d56d3053cc00939.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b65163fd9aa43a8673545353.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_d71cccf7cbdc158e9a6cc78f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_0d75295721b2be9f93539e31.woff2')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_50c8cf8521a83358e839b01b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_74e9e210f96b904e8d69b491.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.292200px;}
.ls1a{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.175800px;}
.lsf{letter-spacing:-0.132600px;}
.ls6{letter-spacing:-0.090600px;}
.lse{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.048960px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.020160px;}
.ls1b{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.089400px;}
.ls12{letter-spacing:0.129600px;}
.ls0{letter-spacing:0.132480px;}
.ls13{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.256200px;}
.ls7{letter-spacing:15.425280px;}
.lsa{letter-spacing:16.145280px;}
.ls14{letter-spacing:22.625280px;}
.lsb{letter-spacing:32.346720px;}
.ls15{letter-spacing:38.465280px;}
.ls1{letter-spacing:39.161280px;}
.ls10{letter-spacing:39.185280px;}
.ls1c{letter-spacing:39.905280px;}
.ls17{letter-spacing:41.345280px;}
.ls18{letter-spacing:44.945280px;}
.lsd{letter-spacing:45.306720px;}
.lsc{letter-spacing:46.026720px;}
.ls9{letter-spacing:55.386720px;}
.ls11{letter-spacing:849.185760px;}
.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;}
}
.ws3{word-spacing:-15.226440px;}
.ws7{word-spacing:-15.102840px;}
.ws8{word-spacing:-15.099840px;}
.ws1{word-spacing:-15.059640px;}
.wsc{word-spacing:-15.030840px;}
.wse{word-spacing:-14.990400px;}
.ws2{word-spacing:-14.970240px;}
.wsa{word-spacing:-14.921280px;}
.wsd{word-spacing:-14.837640px;}
.ws9{word-spacing:-14.794440px;}
.wsb{word-spacing:-14.754240px;}
.ws6{word-spacing:-13.447440px;}
.ws0{word-spacing:-9.437760px;}
.ws4{word-spacing:-9.347160px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-17.077560px;}
._2{margin-left:-1.029600px;}
._0{width:1.244880px;}
._1{width:2.786160px;}
._4{width:25.974720px;}
.fc1{color:rgb(56,119,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y33{bottom:4.500000px;}
.y71{bottom:6.840000px;}
.ydd{bottom:24.654000px;}
.y3a{bottom:24.660000px;}
.y43{bottom:24.690000px;}
.y7f{bottom:24.705000px;}
.y70{bottom:27.000000px;}
.yad{bottom:44.634000px;}
.y4a{bottom:44.640000px;}
.y42{bottom:44.670000px;}
.y50{bottom:44.814000px;}
.y39{bottom:44.820000px;}
.y7e{bottom:44.865000px;}
.y6f{bottom:46.974000px;}
.y2{bottom:57.456000px;}
.yac{bottom:64.794000px;}
.y49{bottom:64.800000px;}
.y41{bottom:64.830000px;}
.y4f{bottom:64.974000px;}
.y38{bottom:64.980000px;}
.y52{bottom:65.010000px;}
.y59{bottom:65.025000px;}
.y6e{bottom:67.134000px;}
.y1{bottom:77.616000px;}
.yab{bottom:84.954000px;}
.y37{bottom:84.960000px;}
.y40{bottom:84.990000px;}
.y4e{bottom:85.134000px;}
.y46{bottom:85.140000px;}
.y58{bottom:85.185000px;}
.y6d{bottom:87.294000px;}
.y72{bottom:98.496000px;}
.y8d{bottom:103.536000px;}
.ybc{bottom:104.616000px;}
.yaa{bottom:105.114000px;}
.y36{bottom:105.120000px;}
.y3f{bottom:105.150000px;}
.y57{bottom:105.165000px;}
.yd1{bottom:105.294000px;}
.y45{bottom:105.300000px;}
.y7d{bottom:105.345000px;}
.yd0{bottom:106.776000px;}
.y6c{bottom:107.454000px;}
.y9f{bottom:111.276000px;}
.y61{bottom:121.716000px;}
.y4d{bottom:122.436000px;}
.ya9{bottom:125.274000px;}
.y48{bottom:125.280000px;}
.y3e{bottom:125.310000px;}
.y8b{bottom:125.325000px;}
.y55{bottom:125.460000px;}
.y7c{bottom:125.505000px;}
.ydc{bottom:126.936000px;}
.y6b{bottom:127.614000px;}
.y8c{bottom:139.176000px;}
.ya8{bottom:145.434000px;}
.y5e{bottom:145.440000px;}
.y3d{bottom:145.470000px;}
.y8a{bottom:145.485000px;}
.y54{bottom:145.620000px;}
.y7b{bottom:145.665000px;}
.y6a{bottom:147.774000px;}
.y28{bottom:157.530000px;}
.ya7{bottom:165.594000px;}
.y5d{bottom:165.600000px;}
.y3c{bottom:165.630000px;}
.y89{bottom:165.645000px;}
.ydf{bottom:165.780000px;}
.y7a{bottom:165.825000px;}
.y69{bottom:167.979000px;}
.y88{bottom:174.630000px;}
.y27{bottom:177.690000px;}
.y5c{bottom:185.760000px;}
.y86{bottom:185.790000px;}
.ya6{bottom:185.799000px;}
.y79{bottom:185.805000px;}
.ybb{bottom:185.970000px;}
.ydb{bottom:188.130000px;}
.y68{bottom:188.139000px;}
.y26{bottom:197.670000px;}
.y5b{bottom:205.920000px;}
.y85{bottom:205.950000px;}
.ya5{bottom:205.959000px;}
.y78{bottom:205.965000px;}
.y67{bottom:208.299000px;}
.y25{bottom:217.830000px;}
.y4c{bottom:223.950000px;}
.ya4{bottom:225.939000px;}
.y84{bottom:226.110000px;}
.y77{bottom:226.125000px;}
.ybe{bottom:228.450000px;}
.y66{bottom:228.459000px;}
.y4b{bottom:244.830000px;}
.ya3{bottom:246.099000px;}
.y9e{bottom:246.270000px;}
.yb5{bottom:246.285000px;}
.y24{bottom:246.990000px;}
.y65{bottom:248.439000px;}
.yba{bottom:266.250000px;}
.ya2{bottom:266.259000px;}
.y9d{bottom:266.430000px;}
.yb4{bottom:266.445000px;}
.y23{bottom:267.150000px;}
.y64{bottom:268.599000px;}
.y47{bottom:285.915000px;}
.yb9{bottom:286.410000px;}
.ya1{bottom:286.419000px;}
.y9c{bottom:286.590000px;}
.yb3{bottom:286.605000px;}
.y22{bottom:287.355000px;}
.y63{bottom:288.759000px;}
.yb8{bottom:306.570000px;}
.ya0{bottom:306.579000px;}
.ycf{bottom:306.585000px;}
.y9b{bottom:306.750000px;}
.yb2{bottom:306.765000px;}
.y21{bottom:307.515000px;}
.y62{bottom:308.919000px;}
.yb7{bottom:326.730000px;}
.yce{bottom:326.745000px;}
.y9a{bottom:326.910000px;}
.yb1{bottom:326.925000px;}
.y20{bottom:336.675000px;}
.y99{bottom:346.890000px;}
.yb0{bottom:346.905000px;}
.ycd{bottom:346.935000px;}
.y1f{bottom:356.835000px;}
.y98{bottom:367.050000px;}
.yda{bottom:367.065000px;}
.ycc{bottom:367.095000px;}
.y87{bottom:376.815000px;}
.y1e{bottom:385.995000px;}
.y97{bottom:387.210000px;}
.yd9{bottom:387.225000px;}
.ycb{bottom:387.255000px;}
.y83{bottom:397.695000px;}
.y96{bottom:407.370000px;}
.yd8{bottom:407.385000px;}
.yca{bottom:407.415000px;}
.y1d{bottom:419.655000px;}
.yd7{bottom:427.545000px;}
.y44{bottom:427.575000px;}
.yb6{bottom:429.195000px;}
.y95{bottom:434.235000px;}
.y1c{bottom:441.435000px;}
.y60{bottom:447.015000px;}
.yd6{bottom:447.705000px;}
.yc9{bottom:447.735000px;}
.yd5{bottom:467.865000px;}
.y5f{bottom:467.895000px;}
.y1b{bottom:475.095000px;}
.yc8{bottom:487.875000px;}
.yd4{bottom:488.025000px;}
.yf3{bottom:491.475000px;}
.y1a{bottom:496.875000px;}
.yc7{bottom:508.035000px;}
.yd3{bottom:508.215000px;}
.yf2{bottom:511.635000px;}
.y19{bottom:518.655000px;}
.yc6{bottom:528.195000px;}
.yf1{bottom:531.795000px;}
.y18{bottom:540.255000px;}
.yc5{bottom:548.355000px;}
.y3b{bottom:549.255000px;}
.yf0{bottom:551.955000px;}
.yc4{bottom:568.515000px;}
.y5a{bottom:569.445000px;}
.yef{bottom:572.145000px;}
.y17{bottom:574.125000px;}
.yc3{bottom:588.675000px;}
.yee{bottom:592.305000px;}
.y16{bottom:607.785000px;}
.yc2{bottom:608.835000px;}
.yed{bottom:612.465000px;}
.yc1{bottom:629.040000px;}
.y15{bottom:629.565000px;}
.yd2{bottom:632.085000px;}
.yec{bottom:632.625000px;}
.y82{bottom:640.185000px;}
.yc0{bottom:649.200000px;}
.y14{bottom:651.345000px;}
.yeb{bottom:652.605000px;}
.y81{bottom:661.065000px;}
.ybf{bottom:669.360000px;}
.yea{bottom:672.765000px;}
.y13{bottom:673.125000px;}
.ye9{bottom:692.925000px;}
.y12{bottom:694.725000px;}
.ye8{bottom:713.085000px;}
.y11{bottom:716.505000px;}
.y80{bottom:722.265000px;}
.y35{bottom:731.265000px;}
.ye7{bottom:733.245000px;}
.y10{bottom:738.285000px;}
.ye6{bottom:753.405000px;}
.yf{bottom:771.945000px;}
.yaf{bottom:772.305000px;}
.ye5{bottom:773.565000px;}
.y56{bottom:791.745000px;}
.ye{bottom:793.725000px;}
.ye4{bottom:813.885000px;}
.y76{bottom:823.605000px;}
.yd{bottom:833.505000px;}
.ye3{bottom:842.505000px;}
.y34{bottom:852.810000px;}
.yc{bottom:862.350000px;}
.y32{bottom:873.870000px;}
.y94{bottom:878.190000px;}
.ye2{bottom:883.410000px;}
.yb{bottom:903.030000px;}
.y53{bottom:913.290000px;}
.ybd{bottom:914.190000px;}
.y31{bottom:914.910000px;}
.ye1{bottom:917.070000px;}
.y93{bottom:919.230000px;}
.ye0{bottom:933.450000px;}
.ya{bottom:936.690000px;}
.y30{bottom:948.750000px;}
.yde{bottom:954.330000px;}
.y9{bottom:958.470000px;}
.y92{bottom:960.450000px;}
.y2f{bottom:970.530000px;}
.y8{bottom:980.250000px;}
.y91{bottom:994.110000px;}
.y2e{bottom:1004.190000px;}
.y90{bottom:1015.890000px;}
.y7{bottom:1019.850000px;}
.y2d{bottom:1033.350000px;}
.y8f{bottom:1037.670000px;}
.y6{bottom:1041.630000px;}
.y5{bottom:1057.470000px;}
.y2c{bottom:1062.510000px;}
.y75{bottom:1066.110000px;}
.y8e{bottom:1071.330000px;}
.y51{bottom:1075.290000px;}
.y4{bottom:1084.110000px;}
.y2b{bottom:1091.670000px;}
.y74{bottom:1105.170000px;}
.y2a{bottom:1111.830000px;}
.y3{bottom:1115.790000px;}
.y73{bottom:1134.000000px;}
.yae{bottom:1135.800000px;}
.y29{bottom:1141.020000px;}
.h8{height:19.980000px;}
.h9{height:20.160000px;}
.he{height:40.176000px;}
.h19{height:40.320000px;}
.h4{height:42.124219px;}
.h14{height:53.302500px;}
.h17{height:60.480000px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.h1a{height:68.956875px;}
.h7{height:69.086250px;}
.h21{height:80.460000px;}
.h10{height:80.496000px;}
.h3{height:95.245664px;}
.h5{height:99.874688px;}
.hf{height:100.620000px;}
.h20{height:100.656000px;}
.h13{height:100.836000px;}
.hc{height:120.780000px;}
.ha{height:120.816000px;}
.h24{height:120.960000px;}
.hd{height:140.940000px;}
.h1f{height:141.120000px;}
.h11{height:161.280000px;}
.hb{height:181.290000px;}
.h18{height:201.450000px;}
.h12{height:221.580000px;}
.h22{height:241.590000px;}
.h16{height:241.770000px;}
.h1c{height:322.230000px;}
.h15{height:324.570000px;}
.h1e{height:342.390000px;}
.h1d{height:362.595000px;}
.h1b{height:443.235000px;}
.h25{height:523.695000px;}
.h23{height:684.825000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:211.530000px;}
.w7{width:296.490000px;}
.w6{width:381.675000px;}
.w3{width:466.635000px;}
.w5{width:678.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x14{left:9.540000px;}
.x17{left:10.800000px;}
.xb{left:20.880000px;}
.x15{left:31.320000px;}
.x11{left:34.740000px;}
.x1a{left:35.820000px;}
.xd{left:41.940000px;}
.xe{left:52.734000px;}
.x16{left:58.314000px;}
.x12{left:61.734000px;}
.x1b{left:62.814000px;}
.xf{left:73.974000px;}
.x18{left:85.494000px;}
.xc{left:88.734000px;}
.x2{left:106.235987px;}
.x19{left:112.494000px;}
.x10{left:115.734000px;}
.x8{left:133.235987px;}
.x1c{left:135.035987px;}
.x5{left:161.669987px;}
.x6{left:203.969987px;}
.x3{left:207.029987px;}
.x7{left:225.029987px;}
.x4{left:302.294987px;}
.x13{left:489.525000px;}
.xa{left:574.485000px;}
.x1{left:778.469987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.259733pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.156267pt;}
.lsf{letter-spacing:-0.117867pt;}
.ls6{letter-spacing:-0.080533pt;}
.lse{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.043520pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.017920pt;}
.ls1b{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.079467pt;}
.ls12{letter-spacing:0.115200pt;}
.ls0{letter-spacing:0.117760pt;}
.ls13{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls7{letter-spacing:13.711360pt;}
.lsa{letter-spacing:14.351360pt;}
.ls14{letter-spacing:20.111360pt;}
.lsb{letter-spacing:28.752640pt;}
.ls15{letter-spacing:34.191360pt;}
.ls1{letter-spacing:34.810027pt;}
.ls10{letter-spacing:34.831360pt;}
.ls1c{letter-spacing:35.471360pt;}
.ls17{letter-spacing:36.751360pt;}
.ls18{letter-spacing:39.951360pt;}
.lsd{letter-spacing:40.272640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls9{letter-spacing:49.232640pt;}
.ls11{letter-spacing:754.831787pt;}
.ws3{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.424747pt;}
.ws8{word-spacing:-13.422080pt;}
.ws1{word-spacing:-13.386347pt;}
.wsc{word-spacing:-13.360747pt;}
.wse{word-spacing:-13.324800pt;}
.ws2{word-spacing:-13.306880pt;}
.wsa{word-spacing:-13.263360pt;}
.wsd{word-spacing:-13.189013pt;}
.ws9{word-spacing:-13.150613pt;}
.wsb{word-spacing:-13.114880pt;}
.ws6{word-spacing:-11.953280pt;}
.ws0{word-spacing:-8.389120pt;}
.ws4{word-spacing:-8.308587pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-15.180053pt;}
._2{margin-left:-0.915200pt;}
._0{width:1.106560pt;}
._1{width:2.476587pt;}
._4{width:23.088640pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:4.000000pt;}
.y71{bottom:6.080000pt;}
.ydd{bottom:21.914667pt;}
.y3a{bottom:21.920000pt;}
.y43{bottom:21.946667pt;}
.y7f{bottom:21.960000pt;}
.y70{bottom:24.000000pt;}
.yad{bottom:39.674667pt;}
.y4a{bottom:39.680000pt;}
.y42{bottom:39.706667pt;}
.y50{bottom:39.834667pt;}
.y39{bottom:39.840000pt;}
.y7e{bottom:39.880000pt;}
.y6f{bottom:41.754667pt;}
.y2{bottom:51.072000pt;}
.yac{bottom:57.594667pt;}
.y49{bottom:57.600000pt;}
.y41{bottom:57.626667pt;}
.y4f{bottom:57.754667pt;}
.y38{bottom:57.760000pt;}
.y52{bottom:57.786667pt;}
.y59{bottom:57.800000pt;}
.y6e{bottom:59.674667pt;}
.y1{bottom:68.992000pt;}
.yab{bottom:75.514667pt;}
.y37{bottom:75.520000pt;}
.y40{bottom:75.546667pt;}
.y4e{bottom:75.674667pt;}
.y46{bottom:75.680000pt;}
.y58{bottom:75.720000pt;}
.y6d{bottom:77.594667pt;}
.y72{bottom:87.552000pt;}
.y8d{bottom:92.032000pt;}
.ybc{bottom:92.992000pt;}
.yaa{bottom:93.434667pt;}
.y36{bottom:93.440000pt;}
.y3f{bottom:93.466667pt;}
.y57{bottom:93.480000pt;}
.yd1{bottom:93.594667pt;}
.y45{bottom:93.600000pt;}
.y7d{bottom:93.640000pt;}
.yd0{bottom:94.912000pt;}
.y6c{bottom:95.514667pt;}
.y9f{bottom:98.912000pt;}
.y61{bottom:108.192000pt;}
.y4d{bottom:108.832000pt;}
.ya9{bottom:111.354667pt;}
.y48{bottom:111.360000pt;}
.y3e{bottom:111.386667pt;}
.y8b{bottom:111.400000pt;}
.y55{bottom:111.520000pt;}
.y7c{bottom:111.560000pt;}
.ydc{bottom:112.832000pt;}
.y6b{bottom:113.434667pt;}
.y8c{bottom:123.712000pt;}
.ya8{bottom:129.274667pt;}
.y5e{bottom:129.280000pt;}
.y3d{bottom:129.306667pt;}
.y8a{bottom:129.320000pt;}
.y54{bottom:129.440000pt;}
.y7b{bottom:129.480000pt;}
.y6a{bottom:131.354667pt;}
.y28{bottom:140.026667pt;}
.ya7{bottom:147.194667pt;}
.y5d{bottom:147.200000pt;}
.y3c{bottom:147.226667pt;}
.y89{bottom:147.240000pt;}
.ydf{bottom:147.360000pt;}
.y7a{bottom:147.400000pt;}
.y69{bottom:149.314667pt;}
.y88{bottom:155.226667pt;}
.y27{bottom:157.946667pt;}
.y5c{bottom:165.120000pt;}
.y86{bottom:165.146667pt;}
.ya6{bottom:165.154667pt;}
.y79{bottom:165.160000pt;}
.ybb{bottom:165.306667pt;}
.ydb{bottom:167.226667pt;}
.y68{bottom:167.234667pt;}
.y26{bottom:175.706667pt;}
.y5b{bottom:183.040000pt;}
.y85{bottom:183.066667pt;}
.ya5{bottom:183.074667pt;}
.y78{bottom:183.080000pt;}
.y67{bottom:185.154667pt;}
.y25{bottom:193.626667pt;}
.y4c{bottom:199.066667pt;}
.ya4{bottom:200.834667pt;}
.y84{bottom:200.986667pt;}
.y77{bottom:201.000000pt;}
.ybe{bottom:203.066667pt;}
.y66{bottom:203.074667pt;}
.y4b{bottom:217.626667pt;}
.ya3{bottom:218.754667pt;}
.y9e{bottom:218.906667pt;}
.yb5{bottom:218.920000pt;}
.y24{bottom:219.546667pt;}
.y65{bottom:220.834667pt;}
.yba{bottom:236.666667pt;}
.ya2{bottom:236.674667pt;}
.y9d{bottom:236.826667pt;}
.yb4{bottom:236.840000pt;}
.y23{bottom:237.466667pt;}
.y64{bottom:238.754667pt;}
.y47{bottom:254.146667pt;}
.yb9{bottom:254.586667pt;}
.ya1{bottom:254.594667pt;}
.y9c{bottom:254.746667pt;}
.yb3{bottom:254.760000pt;}
.y22{bottom:255.426667pt;}
.y63{bottom:256.674667pt;}
.yb8{bottom:272.506667pt;}
.ya0{bottom:272.514667pt;}
.ycf{bottom:272.520000pt;}
.y9b{bottom:272.666667pt;}
.yb2{bottom:272.680000pt;}
.y21{bottom:273.346667pt;}
.y62{bottom:274.594667pt;}
.yb7{bottom:290.426667pt;}
.yce{bottom:290.440000pt;}
.y9a{bottom:290.586667pt;}
.yb1{bottom:290.600000pt;}
.y20{bottom:299.266667pt;}
.y99{bottom:308.346667pt;}
.yb0{bottom:308.360000pt;}
.ycd{bottom:308.386667pt;}
.y1f{bottom:317.186667pt;}
.y98{bottom:326.266667pt;}
.yda{bottom:326.280000pt;}
.ycc{bottom:326.306667pt;}
.y87{bottom:334.946667pt;}
.y1e{bottom:343.106667pt;}
.y97{bottom:344.186667pt;}
.yd9{bottom:344.200000pt;}
.ycb{bottom:344.226667pt;}
.y83{bottom:353.506667pt;}
.y96{bottom:362.106667pt;}
.yd8{bottom:362.120000pt;}
.yca{bottom:362.146667pt;}
.y1d{bottom:373.026667pt;}
.yd7{bottom:380.040000pt;}
.y44{bottom:380.066667pt;}
.yb6{bottom:381.506667pt;}
.y95{bottom:385.986667pt;}
.y1c{bottom:392.386667pt;}
.y60{bottom:397.346667pt;}
.yd6{bottom:397.960000pt;}
.yc9{bottom:397.986667pt;}
.yd5{bottom:415.880000pt;}
.y5f{bottom:415.906667pt;}
.y1b{bottom:422.306667pt;}
.yc8{bottom:433.666667pt;}
.yd4{bottom:433.800000pt;}
.yf3{bottom:436.866667pt;}
.y1a{bottom:441.666667pt;}
.yc7{bottom:451.586667pt;}
.yd3{bottom:451.746667pt;}
.yf2{bottom:454.786667pt;}
.y19{bottom:461.026667pt;}
.yc6{bottom:469.506667pt;}
.yf1{bottom:472.706667pt;}
.y18{bottom:480.226667pt;}
.yc5{bottom:487.426667pt;}
.y3b{bottom:488.226667pt;}
.yf0{bottom:490.626667pt;}
.yc4{bottom:505.346667pt;}
.y5a{bottom:506.173333pt;}
.yef{bottom:508.573333pt;}
.y17{bottom:510.333333pt;}
.yc3{bottom:523.266667pt;}
.yee{bottom:526.493333pt;}
.y16{bottom:540.253333pt;}
.yc2{bottom:541.186667pt;}
.yed{bottom:544.413333pt;}
.yc1{bottom:559.146667pt;}
.y15{bottom:559.613333pt;}
.yd2{bottom:561.853333pt;}
.yec{bottom:562.333333pt;}
.y82{bottom:569.053333pt;}
.yc0{bottom:577.066667pt;}
.y14{bottom:578.973333pt;}
.yeb{bottom:580.093333pt;}
.y81{bottom:587.613333pt;}
.ybf{bottom:594.986667pt;}
.yea{bottom:598.013333pt;}
.y13{bottom:598.333333pt;}
.ye9{bottom:615.933333pt;}
.y12{bottom:617.533333pt;}
.ye8{bottom:633.853333pt;}
.y11{bottom:636.893333pt;}
.y80{bottom:642.013333pt;}
.y35{bottom:650.013333pt;}
.ye7{bottom:651.773333pt;}
.y10{bottom:656.253333pt;}
.ye6{bottom:669.693333pt;}
.yf{bottom:686.173333pt;}
.yaf{bottom:686.493333pt;}
.ye5{bottom:687.613333pt;}
.y56{bottom:703.773333pt;}
.ye{bottom:705.533333pt;}
.ye4{bottom:723.453333pt;}
.y76{bottom:732.093333pt;}
.yd{bottom:740.893333pt;}
.ye3{bottom:748.893333pt;}
.y34{bottom:758.053333pt;}
.yc{bottom:766.533333pt;}
.y32{bottom:776.773333pt;}
.y94{bottom:780.613333pt;}
.ye2{bottom:785.253333pt;}
.yb{bottom:802.693333pt;}
.y53{bottom:811.813333pt;}
.ybd{bottom:812.613333pt;}
.y31{bottom:813.253333pt;}
.ye1{bottom:815.173333pt;}
.y93{bottom:817.093333pt;}
.ye0{bottom:829.733333pt;}
.ya{bottom:832.613333pt;}
.y30{bottom:843.333333pt;}
.yde{bottom:848.293333pt;}
.y9{bottom:851.973333pt;}
.y92{bottom:853.733333pt;}
.y2f{bottom:862.693333pt;}
.y8{bottom:871.333333pt;}
.y91{bottom:883.653333pt;}
.y2e{bottom:892.613333pt;}
.y90{bottom:903.013333pt;}
.y7{bottom:906.533333pt;}
.y2d{bottom:918.533333pt;}
.y8f{bottom:922.373333pt;}
.y6{bottom:925.893333pt;}
.y5{bottom:939.973333pt;}
.y2c{bottom:944.453333pt;}
.y75{bottom:947.653333pt;}
.y8e{bottom:952.293333pt;}
.y51{bottom:955.813333pt;}
.y4{bottom:963.653333pt;}
.y2b{bottom:970.373333pt;}
.y74{bottom:982.373333pt;}
.y2a{bottom:988.293333pt;}
.y3{bottom:991.813333pt;}
.y73{bottom:1008.000000pt;}
.yae{bottom:1009.600000pt;}
.y29{bottom:1014.240000pt;}
.h8{height:17.760000pt;}
.h9{height:17.920000pt;}
.he{height:35.712000pt;}
.h19{height:35.840000pt;}
.h4{height:37.443750pt;}
.h14{height:47.380000pt;}
.h17{height:53.760000pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.h1a{height:61.295000pt;}
.h7{height:61.410000pt;}
.h21{height:71.520000pt;}
.h10{height:71.552000pt;}
.h3{height:84.662813pt;}
.h5{height:88.777500pt;}
.hf{height:89.440000pt;}
.h20{height:89.472000pt;}
.h13{height:89.632000pt;}
.hc{height:107.360000pt;}
.ha{height:107.392000pt;}
.h24{height:107.520000pt;}
.hd{height:125.280000pt;}
.h1f{height:125.440000pt;}
.h11{height:143.360000pt;}
.hb{height:161.146667pt;}
.h18{height:179.066667pt;}
.h12{height:196.960000pt;}
.h22{height:214.746667pt;}
.h16{height:214.906667pt;}
.h1c{height:286.426667pt;}
.h15{height:288.506667pt;}
.h1e{height:304.346667pt;}
.h1d{height:322.306667pt;}
.h1b{height:393.986667pt;}
.h25{height:465.506667pt;}
.h23{height:608.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:188.026667pt;}
.w7{width:263.546667pt;}
.w6{width:339.266667pt;}
.w3{width:414.786667pt;}
.w5{width:603.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x14{left:8.480000pt;}
.x17{left:9.600000pt;}
.xb{left:18.560000pt;}
.x15{left:27.840000pt;}
.x11{left:30.880000pt;}
.x1a{left:31.840000pt;}
.xd{left:37.280000pt;}
.xe{left:46.874667pt;}
.x16{left:51.834667pt;}
.x12{left:54.874667pt;}
.x1b{left:55.834667pt;}
.xf{left:65.754667pt;}
.x18{left:75.994667pt;}
.xc{left:78.874667pt;}
.x2{left:94.431988pt;}
.x19{left:99.994667pt;}
.x10{left:102.874667pt;}
.x8{left:118.431988pt;}
.x1c{left:120.031988pt;}
.x5{left:143.706655pt;}
.x6{left:181.306655pt;}
.x3{left:184.026655pt;}
.x7{left:200.026655pt;}
.x4{left:268.706655pt;}
.x13{left:435.133333pt;}
.xa{left:510.653333pt;}
.x1{left:691.973322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  