
    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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_ca6d8f92362d2cef538f6828.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0a6d9c209b96305463400708.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_0917f0773acfaf5c41062669.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b740c42b1bc83d183e638753.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_66185e66db1aae17c0b08813.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.008000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls5{letter-spacing:10.080000px;}
.ls7{letter-spacing:21.221280px;}
.ls8{letter-spacing:25.920000px;}
.ls3{letter-spacing:125.597280px;}
.ls6{letter-spacing:168.264000px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.420000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._1e{margin-left:-11.520000px;}
._21{margin-left:-8.136000px;}
._1b{margin-left:-5.207520px;}
._11{margin-left:-4.062240px;}
._d{margin-left:-2.973120px;}
._0{margin-left:-1.457280px;}
._1{width:1.583520px;}
._6{width:2.922960px;}
._8{width:4.133040px;}
._9{width:5.370960px;}
._a{width:6.394080px;}
._14{width:7.704000px;}
._10{width:9.432000px;}
._e{width:10.440000px;}
._f{width:11.880480px;}
._c{width:13.824000px;}
._b{width:15.192000px;}
._13{width:16.488000px;}
._15{width:19.224000px;}
._17{width:20.376000px;}
._18{width:21.528480px;}
._1a{width:22.536000px;}
._19{width:23.688000px;}
._12{width:24.744000px;}
._7{width:25.896000px;}
._5{width:27.387360px;}
._4{width:28.728000px;}
._16{width:29.736000px;}
._1c{width:30.888000px;}
._1d{width:32.256000px;}
._2a{width:33.708480px;}
._24{width:34.776000px;}
._3{width:55.157760px;}
._2{width:56.689920px;}
._27{width:103.867920px;}
._2f{width:196.488000px;}
._2e{width:197.928000px;}
._28{width:199.728000px;}
._29{width:200.736000px;}
._30{width:248.616000px;}
._31{width:249.768480px;}
._1f{width:259.776000px;}
._20{width:261.264480px;}
._25{width:313.488000px;}
._26{width:314.496000px;}
._22{width:377.424000px;}
._23{width:378.792000px;}
._32{width:385.776000px;}
._2d{width:504.486720px;}
._2c{width:505.745280px;}
._2b{width:605.016000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.580000px;}
.y7{bottom:58.860000px;}
.y6{bottom:79.416000px;}
.y5{bottom:98.496000px;}
.y4{bottom:117.396000px;}
.y6b{bottom:138.096000px;}
.y31{bottom:146.736000px;}
.ybc{bottom:151.410000px;}
.yf1{bottom:151.950000px;}
.y51{bottom:154.470000px;}
.y84{bottom:156.810000px;}
.y30{bottom:170.850000px;}
.yf0{bottom:172.650000px;}
.yd4{bottom:181.650000px;}
.ya0{bottom:181.830000px;}
.ybb{bottom:182.370000px;}
.y50{bottom:185.610000px;}
.y2f{bottom:191.550000px;}
.yef{bottom:193.350000px;}
.y2e{bottom:212.250000px;}
.yd3{bottom:212.790000px;}
.y9f{bottom:212.970000px;}
.yba{bottom:213.510000px;}
.yee{bottom:214.050000px;}
.y4f{bottom:216.570000px;}
.y2d{bottom:232.950000px;}
.yed{bottom:234.750000px;}
.yd2{bottom:243.750000px;}
.y9e{bottom:243.930000px;}
.yb9{bottom:244.470000px;}
.y4e{bottom:247.530000px;}
.y2c{bottom:253.650000px;}
.yec{bottom:255.450000px;}
.y2b{bottom:274.350000px;}
.yd1{bottom:274.890000px;}
.y9d{bottom:275.070000px;}
.yb8{bottom:275.610000px;}
.yeb{bottom:276.150000px;}
.y4d{bottom:278.670000px;}
.y2a{bottom:295.050000px;}
.yea{bottom:296.850000px;}
.yd0{bottom:305.850000px;}
.y9c{bottom:306.030000px;}
.yb7{bottom:306.570000px;}
.y4c{bottom:309.630000px;}
.y29{bottom:315.750000px;}
.ye9{bottom:317.550000px;}
.y28{bottom:336.495000px;}
.ycf{bottom:337.035000px;}
.y9b{bottom:337.215000px;}
.ye8{bottom:338.295000px;}
.yb6{bottom:339.915000px;}
.y4b{bottom:340.815000px;}
.y27{bottom:357.195000px;}
.ye7{bottom:358.995000px;}
.y6a{bottom:366.195000px;}
.yce{bottom:367.995000px;}
.y9a{bottom:368.175000px;}
.y4a{bottom:371.775000px;}
.y26{bottom:377.895000px;}
.ye6{bottom:379.695000px;}
.yb5{bottom:392.655000px;}
.y110{bottom:393.195000px;}
.y69{bottom:397.335000px;}
.y25{bottom:398.595000px;}
.y99{bottom:399.135000px;}
.y49{bottom:402.915000px;}
.y83{bottom:410.655000px;}
.y24{bottom:419.295000px;}
.ye5{bottom:422.895000px;}
.y68{bottom:424.335000px;}
.yb4{bottom:429.015000px;}
.y98{bottom:430.275000px;}
.ycd{bottom:432.435000px;}
.y48{bottom:433.875000px;}
.y23{bottom:439.995000px;}
.y82{bottom:441.075000px;}
.y10f{bottom:454.755000px;}
.y67{bottom:455.295000px;}
.y22{bottom:460.695000px;}
.y97{bottom:461.235000px;}
.y47{bottom:465.015000px;}
.ye4{bottom:465.915000px;}
.ycc{bottom:470.775000px;}
.y10e{bottom:475.635000px;}
.y81{bottom:477.975000px;}
.yb3{bottom:480.855000px;}
.y21{bottom:481.395000px;}
.y66{bottom:486.435000px;}
.y96{bottom:492.375000px;}
.y46{bottom:495.975000px;}
.y10d{bottom:496.335000px;}
.ye3{bottom:496.875000px;}
.y20{bottom:502.095000px;}
.ycb{bottom:504.795000px;}
.y80{bottom:509.115000px;}
.yb2{bottom:511.995000px;}
.y10c{bottom:517.035000px;}
.y65{bottom:517.395000px;}
.y1f{bottom:522.795000px;}
.y95{bottom:523.335000px;}
.y45{bottom:527.115000px;}
.ye2{bottom:528.015000px;}
.yca{bottom:535.935000px;}
.y10b{bottom:537.735000px;}
.y7f{bottom:540.075000px;}
.yb1{bottom:542.955000px;}
.y1e{bottom:543.495000px;}
.y64{bottom:548.535000px;}
.y94{bottom:554.475000px;}
.y10a{bottom:558.435000px;}
.ye1{bottom:558.975000px;}
.y1d{bottom:564.195000px;}
.yc9{bottom:566.895000px;}
.y44{bottom:570.135000px;}
.y7e{bottom:571.215000px;}
.yb0{bottom:574.095000px;}
.y109{bottom:579.135000px;}
.y63{bottom:579.495000px;}
.y1c{bottom:584.895000px;}
.y93{bottom:587.775000px;}
.ye0{bottom:590.115000px;}
.yc8{bottom:598.035000px;}
.y108{bottom:599.835000px;}
.y43{bottom:601.275000px;}
.y7d{bottom:602.175000px;}
.yaf{bottom:605.085000px;}
.y1b{bottom:605.625000px;}
.y62{bottom:610.485000px;}
.y107{bottom:620.565000px;}
.ydf{bottom:621.105000px;}
.y92{bottom:621.825000px;}
.y1a{bottom:626.325000px;}
.yc7{bottom:629.025000px;}
.y42{bottom:632.265000px;}
.y7c{bottom:633.345000px;}
.yae{bottom:636.045000px;}
.y106{bottom:641.265000px;}
.y61{bottom:641.625000px;}
.y19{bottom:647.025000px;}
.yde{bottom:652.245000px;}
.y91{bottom:652.785000px;}
.y7b{bottom:658.365000px;}
.yc6{bottom:660.165000px;}
.y105{bottom:661.965000px;}
.y41{bottom:663.405000px;}
.yad{bottom:667.185000px;}
.y18{bottom:667.725000px;}
.y60{bottom:672.585000px;}
.y104{bottom:682.665000px;}
.ydd{bottom:683.205000px;}
.y90{bottom:683.925000px;}
.y17{bottom:688.425000px;}
.yc5{bottom:691.125000px;}
.y40{bottom:694.365000px;}
.yac{bottom:698.145000px;}
.y103{bottom:703.365000px;}
.y5f{bottom:703.725000px;}
.y7a{bottom:708.945000px;}
.y16{bottom:709.125000px;}
.ydc{bottom:714.345000px;}
.y8f{bottom:714.885000px;}
.yc4{bottom:722.265000px;}
.y102{bottom:724.065000px;}
.y3f{bottom:725.505000px;}
.yab{bottom:729.285000px;}
.y15{bottom:733.065000px;}
.y5e{bottom:734.685000px;}
.y79{bottom:739.905000px;}
.y101{bottom:744.765000px;}
.ydb{bottom:745.305000px;}
.y8e{bottom:746.025000px;}
.yc3{bottom:753.225000px;}
.y14{bottom:757.185000px;}
.yaa{bottom:760.245000px;}
.y3e{bottom:762.405000px;}
.y100{bottom:765.465000px;}
.y5d{bottom:765.825000px;}
.y78{bottom:771.045000px;}
.yda{bottom:776.445000px;}
.y8d{bottom:776.985000px;}
.y13{bottom:781.305000px;}
.yc2{bottom:784.365000px;}
.yff{bottom:786.165000px;}
.ya9{bottom:791.385000px;}
.y3d{bottom:793.545000px;}
.y5c{bottom:796.785000px;}
.y77{bottom:802.005000px;}
.y8c{bottom:802.185000px;}
.y12{bottom:805.245000px;}
.yfe{bottom:806.865000px;}
.yd9{bottom:807.405000px;}
.yc1{bottom:817.665000px;}
.y5b{bottom:821.985000px;}
.ya8{bottom:822.345000px;}
.y3c{bottom:824.505000px;}
.yfd{bottom:827.565000px;}
.y11{bottom:829.365000px;}
.y76{bottom:833.145000px;}
.yd8{bottom:838.545000px;}
.y8b{bottom:846.825000px;}
.yfc{bottom:848.265000px;}
.yc0{bottom:853.305000px;}
.y10{bottom:853.485000px;}
.y3b{bottom:855.645000px;}
.y75{bottom:864.105000px;}
.y5a{bottom:866.625000px;}
.yfb{bottom:868.965000px;}
.yd7{bottom:869.505000px;}
.yf{bottom:877.470000px;}
.ya7{bottom:884.490000px;}
.y3a{bottom:886.650000px;}
.y8a{bottom:889.530000px;}
.yfa{bottom:889.710000px;}
.y74{bottom:895.290000px;}
.yd6{bottom:900.690000px;}
.y59{bottom:901.770000px;}
.ye{bottom:904.110000px;}
.yf9{bottom:910.410000px;}
.ya6{bottom:915.630000px;}
.y39{bottom:917.790000px;}
.y89{bottom:920.850000px;}
.y73{bottom:926.250000px;}
.yf8{bottom:931.110000px;}
.y58{bottom:931.650000px;}
.yd{bottom:936.150000px;}
.yd5{bottom:939.750000px;}
.ya5{bottom:946.590000px;}
.y38{bottom:948.750000px;}
.y88{bottom:951.810000px;}
.y72{bottom:957.390000px;}
.y57{bottom:962.610000px;}
.yc{bottom:968.190000px;}
.yf7{bottom:972.510000px;}
.ya4{bottom:977.730000px;}
.y37{bottom:979.890000px;}
.y87{bottom:982.950000px;}
.y71{bottom:988.350000px;}
.yf6{bottom:993.210000px;}
.y56{bottom:993.750000px;}
.ya3{bottom:1008.690000px;}
.y36{bottom:1010.850000px;}
.y86{bottom:1013.910000px;}
.y70{bottom:1019.490000px;}
.y55{bottom:1032.990000px;}
.yf5{bottom:1034.610000px;}
.yb{bottom:1036.230000px;}
.ybf{bottom:1039.830000px;}
.y35{bottom:1041.990000px;}
.ya2{bottom:1042.170000px;}
.y85{bottom:1045.050000px;}
.y6f{bottom:1050.450000px;}
.yf4{bottom:1055.310000px;}
.ya{bottom:1068.450000px;}
.ybe{bottom:1070.790000px;}
.y34{bottom:1072.950000px;}
.ya1{bottom:1075.830000px;}
.y54{bottom:1076.010000px;}
.y6e{bottom:1081.590000px;}
.yf3{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y33{bottom:1104.090000px;}
.ybd{bottom:1104.270000px;}
.y53{bottom:1107.150000px;}
.y6d{bottom:1112.550000px;}
.yf2{bottom:1117.410000px;}
.y8{bottom:1132.530000px;}
.y32{bottom:1135.230000px;}
.y6c{bottom:1137.960000px;}
.y52{bottom:1138.140000px;}
.y3{bottom:1169.460000px;}
.y1{bottom:1186.380000px;}
.h2{height:22.500000px;}
.h9{height:48.224531px;}
.hb{height:52.417969px;}
.h7{height:54.773438px;}
.h4{height:59.383125px;}
.h3{height:60.855469px;}
.h6{height:64.546875px;}
.hc{height:71.200898px;}
.h8{height:74.820586px;}
.ha{height:75.519844px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:225.390000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:65.519987px;}
.x13{left:80.999987px;}
.x1{left:108.036000px;}
.x3{left:112.680000px;}
.x8{left:118.475987px;}
.xb{left:150.509987px;}
.x12{left:161.129987px;}
.x5{left:225.945000px;}
.x7{left:248.069987px;}
.xa{left:258.689987px;}
.x2{left:333.435000px;}
.xd{left:358.454987px;}
.x10{left:369.974987px;}
.x9{left:378.794987px;}
.x6{left:446.474987px;}
.xf{left:473.504987px;}
.x4{left:558.825000px;}
.xe{left:585.104987px;}
.x11{left:655.889987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls5{letter-spacing:8.960000pt;}
.ls7{letter-spacing:18.863360pt;}
.ls8{letter-spacing:23.040000pt;}
.ls3{letter-spacing:111.642027pt;}
.ls6{letter-spacing:149.568000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws3{word-spacing:-19.040000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._1e{margin-left:-10.240000pt;}
._21{margin-left:-7.232000pt;}
._1b{margin-left:-4.628907pt;}
._11{margin-left:-3.610880pt;}
._d{margin-left:-2.642773pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.407573pt;}
._6{width:2.598187pt;}
._8{width:3.673813pt;}
._9{width:4.774187pt;}
._a{width:5.683627pt;}
._14{width:6.848000pt;}
._10{width:8.384000pt;}
._e{width:9.280000pt;}
._f{width:10.560427pt;}
._c{width:12.288000pt;}
._b{width:13.504000pt;}
._13{width:14.656000pt;}
._15{width:17.088000pt;}
._17{width:18.112000pt;}
._18{width:19.136427pt;}
._1a{width:20.032000pt;}
._19{width:21.056000pt;}
._12{width:21.994667pt;}
._7{width:23.018667pt;}
._5{width:24.344320pt;}
._4{width:25.536000pt;}
._16{width:26.432000pt;}
._1c{width:27.456000pt;}
._1d{width:28.672000pt;}
._2a{width:29.963093pt;}
._24{width:30.912000pt;}
._3{width:49.029120pt;}
._2{width:50.391040pt;}
._27{width:92.327040pt;}
._2f{width:174.656000pt;}
._2e{width:175.936000pt;}
._28{width:177.536000pt;}
._29{width:178.432000pt;}
._30{width:220.992000pt;}
._31{width:222.016427pt;}
._1f{width:230.912000pt;}
._20{width:232.235093pt;}
._25{width:278.656000pt;}
._26{width:279.552000pt;}
._22{width:335.488000pt;}
._23{width:336.704000pt;}
._32{width:342.912000pt;}
._2d{width:448.432640pt;}
._2c{width:449.551360pt;}
._2b{width:537.792000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.960000pt;}
.y7{bottom:52.320000pt;}
.y6{bottom:70.592000pt;}
.y5{bottom:87.552000pt;}
.y4{bottom:104.352000pt;}
.y6b{bottom:122.752000pt;}
.y31{bottom:130.432000pt;}
.ybc{bottom:134.586667pt;}
.yf1{bottom:135.066667pt;}
.y51{bottom:137.306667pt;}
.y84{bottom:139.386667pt;}
.y30{bottom:151.866667pt;}
.yf0{bottom:153.466667pt;}
.yd4{bottom:161.466667pt;}
.ya0{bottom:161.626667pt;}
.ybb{bottom:162.106667pt;}
.y50{bottom:164.986667pt;}
.y2f{bottom:170.266667pt;}
.yef{bottom:171.866667pt;}
.y2e{bottom:188.666667pt;}
.yd3{bottom:189.146667pt;}
.y9f{bottom:189.306667pt;}
.yba{bottom:189.786667pt;}
.yee{bottom:190.266667pt;}
.y4f{bottom:192.506667pt;}
.y2d{bottom:207.066667pt;}
.yed{bottom:208.666667pt;}
.yd2{bottom:216.666667pt;}
.y9e{bottom:216.826667pt;}
.yb9{bottom:217.306667pt;}
.y4e{bottom:220.026667pt;}
.y2c{bottom:225.466667pt;}
.yec{bottom:227.066667pt;}
.y2b{bottom:243.866667pt;}
.yd1{bottom:244.346667pt;}
.y9d{bottom:244.506667pt;}
.yb8{bottom:244.986667pt;}
.yeb{bottom:245.466667pt;}
.y4d{bottom:247.706667pt;}
.y2a{bottom:262.266667pt;}
.yea{bottom:263.866667pt;}
.yd0{bottom:271.866667pt;}
.y9c{bottom:272.026667pt;}
.yb7{bottom:272.506667pt;}
.y4c{bottom:275.226667pt;}
.y29{bottom:280.666667pt;}
.ye9{bottom:282.266667pt;}
.y28{bottom:299.106667pt;}
.ycf{bottom:299.586667pt;}
.y9b{bottom:299.746667pt;}
.ye8{bottom:300.706667pt;}
.yb6{bottom:302.146667pt;}
.y4b{bottom:302.946667pt;}
.y27{bottom:317.506667pt;}
.ye7{bottom:319.106667pt;}
.y6a{bottom:325.506667pt;}
.yce{bottom:327.106667pt;}
.y9a{bottom:327.266667pt;}
.y4a{bottom:330.466667pt;}
.y26{bottom:335.906667pt;}
.ye6{bottom:337.506667pt;}
.yb5{bottom:349.026667pt;}
.y110{bottom:349.506667pt;}
.y69{bottom:353.186667pt;}
.y25{bottom:354.306667pt;}
.y99{bottom:354.786667pt;}
.y49{bottom:358.146667pt;}
.y83{bottom:365.026667pt;}
.y24{bottom:372.706667pt;}
.ye5{bottom:375.906667pt;}
.y68{bottom:377.186667pt;}
.yb4{bottom:381.346667pt;}
.y98{bottom:382.466667pt;}
.ycd{bottom:384.386667pt;}
.y48{bottom:385.666667pt;}
.y23{bottom:391.106667pt;}
.y82{bottom:392.066667pt;}
.y10f{bottom:404.226667pt;}
.y67{bottom:404.706667pt;}
.y22{bottom:409.506667pt;}
.y97{bottom:409.986667pt;}
.y47{bottom:413.346667pt;}
.ye4{bottom:414.146667pt;}
.ycc{bottom:418.466667pt;}
.y10e{bottom:422.786667pt;}
.y81{bottom:424.866667pt;}
.yb3{bottom:427.426667pt;}
.y21{bottom:427.906667pt;}
.y66{bottom:432.386667pt;}
.y96{bottom:437.666667pt;}
.y46{bottom:440.866667pt;}
.y10d{bottom:441.186667pt;}
.ye3{bottom:441.666667pt;}
.y20{bottom:446.306667pt;}
.ycb{bottom:448.706667pt;}
.y80{bottom:452.546667pt;}
.yb2{bottom:455.106667pt;}
.y10c{bottom:459.586667pt;}
.y65{bottom:459.906667pt;}
.y1f{bottom:464.706667pt;}
.y95{bottom:465.186667pt;}
.y45{bottom:468.546667pt;}
.ye2{bottom:469.346667pt;}
.yca{bottom:476.386667pt;}
.y10b{bottom:477.986667pt;}
.y7f{bottom:480.066667pt;}
.yb1{bottom:482.626667pt;}
.y1e{bottom:483.106667pt;}
.y64{bottom:487.586667pt;}
.y94{bottom:492.866667pt;}
.y10a{bottom:496.386667pt;}
.ye1{bottom:496.866667pt;}
.y1d{bottom:501.506667pt;}
.yc9{bottom:503.906667pt;}
.y44{bottom:506.786667pt;}
.y7e{bottom:507.746667pt;}
.yb0{bottom:510.306667pt;}
.y109{bottom:514.786667pt;}
.y63{bottom:515.106667pt;}
.y1c{bottom:519.906667pt;}
.y93{bottom:522.466667pt;}
.ye0{bottom:524.546667pt;}
.yc8{bottom:531.586667pt;}
.y108{bottom:533.186667pt;}
.y43{bottom:534.466667pt;}
.y7d{bottom:535.266667pt;}
.yaf{bottom:537.853333pt;}
.y1b{bottom:538.333333pt;}
.y62{bottom:542.653333pt;}
.y107{bottom:551.613333pt;}
.ydf{bottom:552.093333pt;}
.y92{bottom:552.733333pt;}
.y1a{bottom:556.733333pt;}
.yc7{bottom:559.133333pt;}
.y42{bottom:562.013333pt;}
.y7c{bottom:562.973333pt;}
.yae{bottom:565.373333pt;}
.y106{bottom:570.013333pt;}
.y61{bottom:570.333333pt;}
.y19{bottom:575.133333pt;}
.yde{bottom:579.773333pt;}
.y91{bottom:580.253333pt;}
.y7b{bottom:585.213333pt;}
.yc6{bottom:586.813333pt;}
.y105{bottom:588.413333pt;}
.y41{bottom:589.693333pt;}
.yad{bottom:593.053333pt;}
.y18{bottom:593.533333pt;}
.y60{bottom:597.853333pt;}
.y104{bottom:606.813333pt;}
.ydd{bottom:607.293333pt;}
.y90{bottom:607.933333pt;}
.y17{bottom:611.933333pt;}
.yc5{bottom:614.333333pt;}
.y40{bottom:617.213333pt;}
.yac{bottom:620.573333pt;}
.y103{bottom:625.213333pt;}
.y5f{bottom:625.533333pt;}
.y7a{bottom:630.173333pt;}
.y16{bottom:630.333333pt;}
.ydc{bottom:634.973333pt;}
.y8f{bottom:635.453333pt;}
.yc4{bottom:642.013333pt;}
.y102{bottom:643.613333pt;}
.y3f{bottom:644.893333pt;}
.yab{bottom:648.253333pt;}
.y15{bottom:651.613333pt;}
.y5e{bottom:653.053333pt;}
.y79{bottom:657.693333pt;}
.y101{bottom:662.013333pt;}
.ydb{bottom:662.493333pt;}
.y8e{bottom:663.133333pt;}
.yc3{bottom:669.533333pt;}
.y14{bottom:673.053333pt;}
.yaa{bottom:675.773333pt;}
.y3e{bottom:677.693333pt;}
.y100{bottom:680.413333pt;}
.y5d{bottom:680.733333pt;}
.y78{bottom:685.373333pt;}
.yda{bottom:690.173333pt;}
.y8d{bottom:690.653333pt;}
.y13{bottom:694.493333pt;}
.yc2{bottom:697.213333pt;}
.yff{bottom:698.813333pt;}
.ya9{bottom:703.453333pt;}
.y3d{bottom:705.373333pt;}
.y5c{bottom:708.253333pt;}
.y77{bottom:712.893333pt;}
.y8c{bottom:713.053333pt;}
.y12{bottom:715.773333pt;}
.yfe{bottom:717.213333pt;}
.yd9{bottom:717.693333pt;}
.yc1{bottom:726.813333pt;}
.y5b{bottom:730.653333pt;}
.ya8{bottom:730.973333pt;}
.y3c{bottom:732.893333pt;}
.yfd{bottom:735.613333pt;}
.y11{bottom:737.213333pt;}
.y76{bottom:740.573333pt;}
.yd8{bottom:745.373333pt;}
.y8b{bottom:752.733333pt;}
.yfc{bottom:754.013333pt;}
.yc0{bottom:758.493333pt;}
.y10{bottom:758.653333pt;}
.y3b{bottom:760.573333pt;}
.y75{bottom:768.093333pt;}
.y5a{bottom:770.333333pt;}
.yfb{bottom:772.413333pt;}
.yd7{bottom:772.893333pt;}
.yf{bottom:779.973333pt;}
.ya7{bottom:786.213333pt;}
.y3a{bottom:788.133333pt;}
.y8a{bottom:790.693333pt;}
.yfa{bottom:790.853333pt;}
.y74{bottom:795.813333pt;}
.yd6{bottom:800.613333pt;}
.y59{bottom:801.573333pt;}
.ye{bottom:803.653333pt;}
.yf9{bottom:809.253333pt;}
.ya6{bottom:813.893333pt;}
.y39{bottom:815.813333pt;}
.y89{bottom:818.533333pt;}
.y73{bottom:823.333333pt;}
.yf8{bottom:827.653333pt;}
.y58{bottom:828.133333pt;}
.yd{bottom:832.133333pt;}
.yd5{bottom:835.333333pt;}
.ya5{bottom:841.413333pt;}
.y38{bottom:843.333333pt;}
.y88{bottom:846.053333pt;}
.y72{bottom:851.013333pt;}
.y57{bottom:855.653333pt;}
.yc{bottom:860.613333pt;}
.yf7{bottom:864.453333pt;}
.ya4{bottom:869.093333pt;}
.y37{bottom:871.013333pt;}
.y87{bottom:873.733333pt;}
.y71{bottom:878.533333pt;}
.yf6{bottom:882.853333pt;}
.y56{bottom:883.333333pt;}
.ya3{bottom:896.613333pt;}
.y36{bottom:898.533333pt;}
.y86{bottom:901.253333pt;}
.y70{bottom:906.213333pt;}
.y55{bottom:918.213333pt;}
.yf5{bottom:919.653333pt;}
.yb{bottom:921.093333pt;}
.ybf{bottom:924.293333pt;}
.y35{bottom:926.213333pt;}
.ya2{bottom:926.373333pt;}
.y85{bottom:928.933333pt;}
.y6f{bottom:933.733333pt;}
.yf4{bottom:938.053333pt;}
.ya{bottom:949.733333pt;}
.ybe{bottom:951.813333pt;}
.y34{bottom:953.733333pt;}
.ya1{bottom:956.293333pt;}
.y54{bottom:956.453333pt;}
.y6e{bottom:961.413333pt;}
.yf3{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y33{bottom:981.413333pt;}
.ybd{bottom:981.573333pt;}
.y53{bottom:984.133333pt;}
.y6d{bottom:988.933333pt;}
.yf2{bottom:993.253333pt;}
.y8{bottom:1006.693333pt;}
.y32{bottom:1009.093333pt;}
.y6c{bottom:1011.520000pt;}
.y52{bottom:1011.680000pt;}
.y3{bottom:1039.520000pt;}
.y1{bottom:1054.560000pt;}
.h2{height:20.000000pt;}
.h9{height:42.866250pt;}
.hb{height:46.593750pt;}
.h7{height:48.687500pt;}
.h4{height:52.785000pt;}
.h3{height:54.093750pt;}
.h6{height:57.375000pt;}
.hc{height:63.289687pt;}
.h8{height:66.507188pt;}
.ha{height:67.128750pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:200.346667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:58.239988pt;}
.x13{left:71.999988pt;}
.x1{left:96.032000pt;}
.x3{left:100.160000pt;}
.x8{left:105.311988pt;}
.xb{left:133.786655pt;}
.x12{left:143.226655pt;}
.x5{left:200.840000pt;}
.x7{left:220.506655pt;}
.xa{left:229.946655pt;}
.x2{left:296.386667pt;}
.xd{left:318.626655pt;}
.x10{left:328.866655pt;}
.x9{left:336.706655pt;}
.x6{left:396.866655pt;}
.xf{left:420.893322pt;}
.x4{left:496.733333pt;}
.xe{left:520.093322pt;}
.x11{left:583.013322pt;}
}




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