
    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_0767da678f96d92d41b14ce2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_693c49196d7486d04635997d.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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_c99820d84ebac4cb8aa85837.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_64e287904ccffa2aa1ca185e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_5ad189b37a58e274b8a07206.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_5c06fbabf57fd6ad2eaa68b0.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.720000px;}
.ls2{letter-spacing:65.141280px;}
.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;}
}
.ws4{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:0.000000px;}
._2c{margin-left:-9.864000px;}
._1{margin-left:-7.948800px;}
._8{margin-left:-6.722880px;}
._6{margin-left:-5.095680px;}
._4{margin-left:-3.980640px;}
._a{margin-left:-2.502240px;}
._0{margin-left:-1.457280px;}
._2{width:1.648320px;}
._9{width:2.863680px;}
._16{width:3.893280px;}
._17{width:5.111520px;}
._1b{width:6.408000px;}
._12{width:7.416000px;}
._13{width:8.496000px;}
._14{width:10.163520px;}
._f{width:11.304000px;}
._e{width:12.312000px;}
._1c{width:13.320000px;}
._1a{width:14.328000px;}
._24{width:15.353280px;}
._d{width:16.488000px;}
._7{width:19.918080px;}
._15{width:21.528000px;}
._b{width:23.400000px;}
._c{width:24.541920px;}
._11{width:25.560000px;}
._10{width:26.799120px;}
._5{width:28.057680px;}
._20{width:29.160000px;}
._18{width:30.168000px;}
._19{width:31.968000px;}
._1f{width:33.696000px;}
._1d{width:35.280000px;}
._1e{width:36.504000px;}
._21{width:37.656000px;}
._22{width:39.960000px;}
._23{width:40.968000px;}
._25{width:44.208000px;}
._26{width:48.528000px;}
._2a{width:56.376000px;}
._2b{width:58.225920px;}
._29{width:78.539520px;}
._28{width:79.674240px;}
._3{width:122.169360px;}
._27{width:187.632000px;}
.fc2{color:rgb(17,85,204);}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.260000px;}
.y4{bottom:102.600000px;}
.y3{bottom:121.680000px;}
.y2{bottom:140.796000px;}
.y1{bottom:159.690000px;}
.yfd{bottom:185.250000px;}
.yd9{bottom:189.750000px;}
.y4f{bottom:193.170000px;}
.y2e{bottom:194.070000px;}
.y7d{bottom:202.530000px;}
.y81{bottom:203.250000px;}
.y7e{bottom:203.610000px;}
.y67{bottom:204.150000px;}
.yfc{bottom:206.670000px;}
.yd8{bottom:210.270000px;}
.y2d{bottom:216.390000px;}
.yb0{bottom:218.910000px;}
.y4e{bottom:224.130000px;}
.yfb{bottom:228.270000px;}
.yd7{bottom:231.870000px;}
.y7c{bottom:233.490000px;}
.y80{bottom:234.390000px;}
.y66{bottom:235.290000px;}
.y2c{bottom:238.710000px;}
.yaf{bottom:239.610000px;}
.yfa{bottom:251.130000px;}
.yd6{bottom:253.470000px;}
.y4d{bottom:255.270000px;}
.y2b{bottom:261.030000px;}
.y7b{bottom:264.630000px;}
.y7f{bottom:265.710000px;}
.y65{bottom:266.250000px;}
.yf9{bottom:271.650000px;}
.yd5{bottom:275.250000px;}
.y2a{bottom:283.350000px;}
.yae{bottom:283.890000px;}
.y4c{bottom:286.230000px;}
.yf8{bottom:293.070000px;}
.y7a{bottom:295.590000px;}
.yd4{bottom:296.670000px;}
.y64{bottom:297.390000px;}
.yad{bottom:304.410000px;}
.y29{bottom:305.850000px;}
.yf7{bottom:315.930000px;}
.y4b{bottom:317.370000px;}
.yd3{bottom:319.530000px;}
.yac{bottom:325.830000px;}
.y79{bottom:326.730000px;}
.y63{bottom:328.350000px;}
.y28{bottom:328.530000px;}
.yf6{bottom:336.630000px;}
.yd2{bottom:340.050000px;}
.yab{bottom:347.430000px;}
.y4a{bottom:348.330000px;}
.y27{bottom:350.310000px;}
.y78{bottom:357.690000px;}
.yf5{bottom:358.050000px;}
.y62{bottom:359.670000px;}
.yd1{bottom:361.650000px;}
.yaa{bottom:370.290000px;}
.y26{bottom:371.010000px;}
.y49{bottom:379.470000px;}
.yf4{bottom:380.910000px;}
.yd0{bottom:384.330000px;}
.y77{bottom:388.875000px;}
.ya9{bottom:390.855000px;}
.y25{bottom:393.735000px;}
.yf3{bottom:401.475000px;}
.ycf{bottom:405.075000px;}
.y48{bottom:410.475000px;}
.ya8{bottom:412.275000px;}
.y24{bottom:413.175000px;}
.y76{bottom:419.835000px;}
.yf2{bottom:423.075000px;}
.yce{bottom:426.495000px;}
.y23{bottom:433.695000px;}
.ya7{bottom:434.055000px;}
.y61{bottom:440.715000px;}
.y47{bottom:441.615000px;}
.yf1{bottom:445.755000px;}
.y115{bottom:447.375000px;}
.ycd{bottom:449.355000px;}
.y75{bottom:450.975000px;}
.y22{bottom:454.215000px;}
.ya6{bottom:456.915000px;}
.yf0{bottom:466.455000px;}
.y114{bottom:468.975000px;}
.ycc{bottom:470.055000px;}
.y60{bottom:470.775000px;}
.y46{bottom:472.575000px;}
.y21{bottom:474.735000px;}
.ya5{bottom:477.435000px;}
.y74{bottom:481.935000px;}
.yef{bottom:487.875000px;}
.ycb{bottom:491.475000px;}
.y113{bottom:491.655000px;}
.y20{bottom:495.435000px;}
.ya4{bottom:499.035000px;}
.y5f{bottom:501.735000px;}
.y45{bottom:503.535000px;}
.y89{bottom:503.715000px;}
.yee{bottom:509.295000px;}
.y112{bottom:512.895000px;}
.y73{bottom:513.075000px;}
.yca{bottom:514.335000px;}
.y1f{bottom:515.955000px;}
.ya3{bottom:520.635000px;}
.yed{bottom:530.895000px;}
.y5e{bottom:532.875000px;}
.y111{bottom:533.415000px;}
.y44{bottom:534.675000px;}
.yc9{bottom:534.855000px;}
.y1e{bottom:536.475000px;}
.ya2{bottom:543.495000px;}
.y72{bottom:544.035000px;}
.yec{bottom:553.755000px;}
.y110{bottom:555.015000px;}
.yc8{bottom:556.455000px;}
.y1d{bottom:556.995000px;}
.y5d{bottom:563.835000px;}
.ya1{bottom:564.015000px;}
.y43{bottom:565.635000px;}
.y88{bottom:565.815000px;}
.yeb{bottom:574.275000px;}
.y71{bottom:574.995000px;}
.y10f{bottom:576.435000px;}
.y1c{bottom:577.515000px;}
.yc7{bottom:577.875000px;}
.ya0{bottom:585.615000px;}
.y5c{bottom:594.975000px;}
.yea{bottom:595.695000px;}
.y42{bottom:596.775000px;}
.y1b{bottom:598.035000px;}
.y10e{bottom:599.295000px;}
.yc6{bottom:600.735000px;}
.y70{bottom:606.135000px;}
.y9f{bottom:608.295000px;}
.ye9{bottom:617.475000px;}
.y1a{bottom:618.555000px;}
.y10d{bottom:619.815000px;}
.yc5{bottom:621.255000px;}
.y5b{bottom:625.935000px;}
.y41{bottom:627.735000px;}
.y9e{bottom:628.995000px;}
.y6f{bottom:637.095000px;}
.y19{bottom:639.075000px;}
.ye8{bottom:640.365000px;}
.y10c{bottom:641.625000px;}
.yc4{bottom:642.705000px;}
.y9d{bottom:650.445000px;}
.y5a{bottom:656.925000px;}
.y40{bottom:658.905000px;}
.y18{bottom:659.625000px;}
.ye7{bottom:660.885000px;}
.y10b{bottom:663.045000px;}
.yc3{bottom:664.305000px;}
.y6e{bottom:668.265000px;}
.y9c{bottom:672.045000px;}
.y17{bottom:680.145000px;}
.ye6{bottom:682.485000px;}
.y10a{bottom:685.905000px;}
.yc2{bottom:687.165000px;}
.y59{bottom:688.065000px;}
.y3f{bottom:689.865000px;}
.y9b{bottom:694.725000px;}
.y6d{bottom:699.225000px;}
.y16{bottom:700.665000px;}
.ye5{bottom:705.165000px;}
.y109{bottom:705.345000px;}
.yc1{bottom:707.685000px;}
.y9a{bottom:715.425000px;}
.y58{bottom:719.025000px;}
.y3e{bottom:721.005000px;}
.y15{bottom:721.185000px;}
.ye4{bottom:725.865000px;}
.yc0{bottom:729.105000px;}
.y6c{bottom:730.365000px;}
.y99{bottom:736.845000px;}
.y14{bottom:741.705000px;}
.y3d{bottom:745.845000px;}
.ye3{bottom:747.285000px;}
.y108{bottom:748.725000px;}
.y57{bottom:750.165000px;}
.ybf{bottom:750.705000px;}
.y87{bottom:751.965000px;}
.y98{bottom:758.445000px;}
.y6b{bottom:761.325000px;}
.y13{bottom:762.225000px;}
.y107{bottom:769.245000px;}
.ye2{bottom:770.145000px;}
.ybe{bottom:773.385000px;}
.y97{bottom:781.125000px;}
.y86{bottom:783.105000px;}
.y3c{bottom:784.365000px;}
.y12{bottom:785.085000px;}
.ye1{bottom:790.665000px;}
.y106{bottom:791.025000px;}
.y6a{bottom:792.465000px;}
.ybd{bottom:794.085000px;}
.y96{bottom:801.825000px;}
.y3b{bottom:806.145000px;}
.y11{bottom:806.685000px;}
.ye0{bottom:812.265000px;}
.y105{bottom:812.445000px;}
.y85{bottom:814.065000px;}
.ybc{bottom:815.505000px;}
.y95{bottom:823.245000px;}
.y69{bottom:823.425000px;}
.y3a{bottom:826.845000px;}
.y10{bottom:828.105000px;}
.ydf{bottom:835.125000px;}
.y104{bottom:835.305000px;}
.ybb{bottom:838.365000px;}
.y94{bottom:846.105000px;}
.y84{bottom:849.165000px;}
.y39{bottom:849.525000px;}
.yf{bottom:850.425000px;}
.y68{bottom:854.565000px;}
.y56{bottom:855.645000px;}
.y103{bottom:855.825000px;}
.yba{bottom:857.805000px;}
.y93{bottom:866.625000px;}
.y38{bottom:870.765000px;}
.ye{bottom:873.105000px;}
.yde{bottom:877.065000px;}
.y102{bottom:877.425000px;}
.yb9{bottom:878.325000px;}
.y55{bottom:885.525000px;}
.y83{bottom:887.505000px;}
.y92{bottom:888.405000px;}
.y37{bottom:893.130000px;}
.yd{bottom:894.390000px;}
.yb8{bottom:898.890000px;}
.ydd{bottom:899.970000px;}
.y91{bottom:909.870000px;}
.y36{bottom:915.630000px;}
.y54{bottom:916.710000px;}
.yc{bottom:917.250000px;}
.y82{bottom:917.790000px;}
.ydc{bottom:920.670000px;}
.yb7{bottom:921.750000px;}
.y90{bottom:931.650000px;}
.y35{bottom:937.950000px;}
.yb{bottom:939.030000px;}
.ydb{bottom:942.090000px;}
.yb6{bottom:942.270000px;}
.y53{bottom:947.670000px;}
.y8f{bottom:954.510000px;}
.y34{bottom:960.270000px;}
.ya{bottom:960.450000px;}
.yb5{bottom:963.870000px;}
.yda{bottom:964.950000px;}
.y8e{bottom:975.030000px;}
.y52{bottom:978.810000px;}
.y33{bottom:982.590000px;}
.yb4{bottom:985.470000px;}
.y101{bottom:986.550000px;}
.y9{bottom:988.530000px;}
.y8d{bottom:996.450000px;}
.y32{bottom:1004.910000px;}
.y100{bottom:1007.250000px;}
.yb3{bottom:1008.330000px;}
.y51{bottom:1009.770000px;}
.y8{bottom:1016.790000px;}
.y8c{bottom:1019.310000px;}
.y31{bottom:1027.230000px;}
.yff{bottom:1028.670000px;}
.yb2{bottom:1029.030000px;}
.y7{bottom:1038.210000px;}
.y50{bottom:1040.910000px;}
.y8b{bottom:1043.070000px;}
.y30{bottom:1049.550000px;}
.yfe{bottom:1050.090000px;}
.yb1{bottom:1050.450000px;}
.y6{bottom:1066.290000px;}
.y2f{bottom:1071.870000px;}
.y8a{bottom:1072.950000px;}
.h3{height:55.987031px;}
.h2{height:59.383125px;}
.h7{height:63.351562px;}
.h6{height:64.546875px;}
.h4{height:65.884219px;}
.h8{height:74.820586px;}
.h5{height:85.052461px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x3{left:105.335987px;}
.x1{left:106.415987px;}
.xd{left:138.995987px;}
.x9{left:149.255987px;}
.xc{left:158.249987px;}
.xb{left:159.329987px;}
.xa{left:191.909987px;}
.x7{left:250.589987px;}
.x8{left:262.874987px;}
.x5{left:290.414987px;}
.x6{left:470.084987px;}
.x4{left:791.279987px;}
.x2{left:797.219987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2{letter-spacing:57.903360pt;}
.ws4{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:0.000000pt;}
._2c{margin-left:-8.768000pt;}
._1{margin-left:-7.065600pt;}
._8{margin-left:-5.975893pt;}
._6{margin-left:-4.529493pt;}
._4{margin-left:-3.538347pt;}
._a{margin-left:-2.224213pt;}
._0{margin-left:-1.295360pt;}
._2{width:1.465173pt;}
._9{width:2.545493pt;}
._16{width:3.460693pt;}
._17{width:4.543573pt;}
._1b{width:5.696000pt;}
._12{width:6.592000pt;}
._13{width:7.552000pt;}
._14{width:9.034240pt;}
._f{width:10.048000pt;}
._e{width:10.944000pt;}
._1c{width:11.840000pt;}
._1a{width:12.736000pt;}
._24{width:13.647360pt;}
._d{width:14.656000pt;}
._7{width:17.704960pt;}
._15{width:19.136000pt;}
._b{width:20.800000pt;}
._c{width:21.815040pt;}
._11{width:22.720000pt;}
._10{width:23.821440pt;}
._5{width:24.940160pt;}
._20{width:25.920000pt;}
._18{width:26.816000pt;}
._19{width:28.416000pt;}
._1f{width:29.952000pt;}
._1d{width:31.360000pt;}
._1e{width:32.448000pt;}
._21{width:33.472000pt;}
._22{width:35.520000pt;}
._23{width:36.416000pt;}
._25{width:39.296000pt;}
._26{width:43.136000pt;}
._2a{width:50.112000pt;}
._2b{width:51.756373pt;}
._29{width:69.812907pt;}
._28{width:70.821547pt;}
._3{width:108.594987pt;}
._27{width:166.784000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:73.120000pt;}
.y4{bottom:91.200000pt;}
.y3{bottom:108.160000pt;}
.y2{bottom:125.152000pt;}
.y1{bottom:141.946667pt;}
.yfd{bottom:164.666667pt;}
.yd9{bottom:168.666667pt;}
.y4f{bottom:171.706667pt;}
.y2e{bottom:172.506667pt;}
.y7d{bottom:180.026667pt;}
.y81{bottom:180.666667pt;}
.y7e{bottom:180.986667pt;}
.y67{bottom:181.466667pt;}
.yfc{bottom:183.706667pt;}
.yd8{bottom:186.906667pt;}
.y2d{bottom:192.346667pt;}
.yb0{bottom:194.586667pt;}
.y4e{bottom:199.226667pt;}
.yfb{bottom:202.906667pt;}
.yd7{bottom:206.106667pt;}
.y7c{bottom:207.546667pt;}
.y80{bottom:208.346667pt;}
.y66{bottom:209.146667pt;}
.y2c{bottom:212.186667pt;}
.yaf{bottom:212.986667pt;}
.yfa{bottom:223.226667pt;}
.yd6{bottom:225.306667pt;}
.y4d{bottom:226.906667pt;}
.y2b{bottom:232.026667pt;}
.y7b{bottom:235.226667pt;}
.y7f{bottom:236.186667pt;}
.y65{bottom:236.666667pt;}
.yf9{bottom:241.466667pt;}
.yd5{bottom:244.666667pt;}
.y2a{bottom:251.866667pt;}
.yae{bottom:252.346667pt;}
.y4c{bottom:254.426667pt;}
.yf8{bottom:260.506667pt;}
.y7a{bottom:262.746667pt;}
.yd4{bottom:263.706667pt;}
.y64{bottom:264.346667pt;}
.yad{bottom:270.586667pt;}
.y29{bottom:271.866667pt;}
.yf7{bottom:280.826667pt;}
.y4b{bottom:282.106667pt;}
.yd3{bottom:284.026667pt;}
.yac{bottom:289.626667pt;}
.y79{bottom:290.426667pt;}
.y63{bottom:291.866667pt;}
.y28{bottom:292.026667pt;}
.yf6{bottom:299.226667pt;}
.yd2{bottom:302.266667pt;}
.yab{bottom:308.826667pt;}
.y4a{bottom:309.626667pt;}
.y27{bottom:311.386667pt;}
.y78{bottom:317.946667pt;}
.yf5{bottom:318.266667pt;}
.y62{bottom:319.706667pt;}
.yd1{bottom:321.466667pt;}
.yaa{bottom:329.146667pt;}
.y26{bottom:329.786667pt;}
.y49{bottom:337.306667pt;}
.yf4{bottom:338.586667pt;}
.yd0{bottom:341.626667pt;}
.y77{bottom:345.666667pt;}
.ya9{bottom:347.426667pt;}
.y25{bottom:349.986667pt;}
.yf3{bottom:356.866667pt;}
.ycf{bottom:360.066667pt;}
.y48{bottom:364.866667pt;}
.ya8{bottom:366.466667pt;}
.y24{bottom:367.266667pt;}
.y76{bottom:373.186667pt;}
.yf2{bottom:376.066667pt;}
.yce{bottom:379.106667pt;}
.y23{bottom:385.506667pt;}
.ya7{bottom:385.826667pt;}
.y61{bottom:391.746667pt;}
.y47{bottom:392.546667pt;}
.yf1{bottom:396.226667pt;}
.y115{bottom:397.666667pt;}
.ycd{bottom:399.426667pt;}
.y75{bottom:400.866667pt;}
.y22{bottom:403.746667pt;}
.ya6{bottom:406.146667pt;}
.yf0{bottom:414.626667pt;}
.y114{bottom:416.866667pt;}
.ycc{bottom:417.826667pt;}
.y60{bottom:418.466667pt;}
.y46{bottom:420.066667pt;}
.y21{bottom:421.986667pt;}
.ya5{bottom:424.386667pt;}
.y74{bottom:428.386667pt;}
.yef{bottom:433.666667pt;}
.ycb{bottom:436.866667pt;}
.y113{bottom:437.026667pt;}
.y20{bottom:440.386667pt;}
.ya4{bottom:443.586667pt;}
.y5f{bottom:445.986667pt;}
.y45{bottom:447.586667pt;}
.y89{bottom:447.746667pt;}
.yee{bottom:452.706667pt;}
.y112{bottom:455.906667pt;}
.y73{bottom:456.066667pt;}
.yca{bottom:457.186667pt;}
.y1f{bottom:458.626667pt;}
.ya3{bottom:462.786667pt;}
.yed{bottom:471.906667pt;}
.y5e{bottom:473.666667pt;}
.y111{bottom:474.146667pt;}
.y44{bottom:475.266667pt;}
.yc9{bottom:475.426667pt;}
.y1e{bottom:476.866667pt;}
.ya2{bottom:483.106667pt;}
.y72{bottom:483.586667pt;}
.yec{bottom:492.226667pt;}
.y110{bottom:493.346667pt;}
.yc8{bottom:494.626667pt;}
.y1d{bottom:495.106667pt;}
.y5d{bottom:501.186667pt;}
.ya1{bottom:501.346667pt;}
.y43{bottom:502.786667pt;}
.y88{bottom:502.946667pt;}
.yeb{bottom:510.466667pt;}
.y71{bottom:511.106667pt;}
.y10f{bottom:512.386667pt;}
.y1c{bottom:513.346667pt;}
.yc7{bottom:513.666667pt;}
.ya0{bottom:520.546667pt;}
.y5c{bottom:528.866667pt;}
.yea{bottom:529.506667pt;}
.y42{bottom:530.466667pt;}
.y1b{bottom:531.586667pt;}
.y10e{bottom:532.706667pt;}
.yc6{bottom:533.986667pt;}
.y70{bottom:538.786667pt;}
.y9f{bottom:540.706667pt;}
.ye9{bottom:548.866667pt;}
.y1a{bottom:549.826667pt;}
.y10d{bottom:550.946667pt;}
.yc5{bottom:552.226667pt;}
.y5b{bottom:556.386667pt;}
.y41{bottom:557.986667pt;}
.y9e{bottom:559.106667pt;}
.y6f{bottom:566.306667pt;}
.y19{bottom:568.066667pt;}
.ye8{bottom:569.213333pt;}
.y10c{bottom:570.333333pt;}
.yc4{bottom:571.293333pt;}
.y9d{bottom:578.173333pt;}
.y5a{bottom:583.933333pt;}
.y40{bottom:585.693333pt;}
.y18{bottom:586.333333pt;}
.ye7{bottom:587.453333pt;}
.y10b{bottom:589.373333pt;}
.yc3{bottom:590.493333pt;}
.y6e{bottom:594.013333pt;}
.y9c{bottom:597.373333pt;}
.y17{bottom:604.573333pt;}
.ye6{bottom:606.653333pt;}
.y10a{bottom:609.693333pt;}
.yc2{bottom:610.813333pt;}
.y59{bottom:611.613333pt;}
.y3f{bottom:613.213333pt;}
.y9b{bottom:617.533333pt;}
.y6d{bottom:621.533333pt;}
.y16{bottom:622.813333pt;}
.ye5{bottom:626.813333pt;}
.y109{bottom:626.973333pt;}
.yc1{bottom:629.053333pt;}
.y9a{bottom:635.933333pt;}
.y58{bottom:639.133333pt;}
.y3e{bottom:640.893333pt;}
.y15{bottom:641.053333pt;}
.ye4{bottom:645.213333pt;}
.yc0{bottom:648.093333pt;}
.y6c{bottom:649.213333pt;}
.y99{bottom:654.973333pt;}
.y14{bottom:659.293333pt;}
.y3d{bottom:662.973333pt;}
.ye3{bottom:664.253333pt;}
.y108{bottom:665.533333pt;}
.y57{bottom:666.813333pt;}
.ybf{bottom:667.293333pt;}
.y87{bottom:668.413333pt;}
.y98{bottom:674.173333pt;}
.y6b{bottom:676.733333pt;}
.y13{bottom:677.533333pt;}
.y107{bottom:683.773333pt;}
.ye2{bottom:684.573333pt;}
.ybe{bottom:687.453333pt;}
.y97{bottom:694.333333pt;}
.y86{bottom:696.093333pt;}
.y3c{bottom:697.213333pt;}
.y12{bottom:697.853333pt;}
.ye1{bottom:702.813333pt;}
.y106{bottom:703.133333pt;}
.y6a{bottom:704.413333pt;}
.ybd{bottom:705.853333pt;}
.y96{bottom:712.733333pt;}
.y3b{bottom:716.573333pt;}
.y11{bottom:717.053333pt;}
.ye0{bottom:722.013333pt;}
.y105{bottom:722.173333pt;}
.y85{bottom:723.613333pt;}
.ybc{bottom:724.893333pt;}
.y95{bottom:731.773333pt;}
.y69{bottom:731.933333pt;}
.y3a{bottom:734.973333pt;}
.y10{bottom:736.093333pt;}
.ydf{bottom:742.333333pt;}
.y104{bottom:742.493333pt;}
.ybb{bottom:745.213333pt;}
.y94{bottom:752.093333pt;}
.y84{bottom:754.813333pt;}
.y39{bottom:755.133333pt;}
.yf{bottom:755.933333pt;}
.y68{bottom:759.613333pt;}
.y56{bottom:760.573333pt;}
.y103{bottom:760.733333pt;}
.yba{bottom:762.493333pt;}
.y93{bottom:770.333333pt;}
.y38{bottom:774.013333pt;}
.ye{bottom:776.093333pt;}
.yde{bottom:779.613333pt;}
.y102{bottom:779.933333pt;}
.yb9{bottom:780.733333pt;}
.y55{bottom:787.133333pt;}
.y83{bottom:788.893333pt;}
.y92{bottom:789.693333pt;}
.y37{bottom:793.893333pt;}
.yd{bottom:795.013333pt;}
.yb8{bottom:799.013333pt;}
.ydd{bottom:799.973333pt;}
.y91{bottom:808.773333pt;}
.y36{bottom:813.893333pt;}
.y54{bottom:814.853333pt;}
.yc{bottom:815.333333pt;}
.y82{bottom:815.813333pt;}
.ydc{bottom:818.373333pt;}
.yb7{bottom:819.333333pt;}
.y90{bottom:828.133333pt;}
.y35{bottom:833.733333pt;}
.yb{bottom:834.693333pt;}
.ydb{bottom:837.413333pt;}
.yb6{bottom:837.573333pt;}
.y53{bottom:842.373333pt;}
.y8f{bottom:848.453333pt;}
.y34{bottom:853.573333pt;}
.ya{bottom:853.733333pt;}
.yb5{bottom:856.773333pt;}
.yda{bottom:857.733333pt;}
.y8e{bottom:866.693333pt;}
.y52{bottom:870.053333pt;}
.y33{bottom:873.413333pt;}
.yb4{bottom:875.973333pt;}
.y101{bottom:876.933333pt;}
.y9{bottom:878.693333pt;}
.y8d{bottom:885.733333pt;}
.y32{bottom:893.253333pt;}
.y100{bottom:895.333333pt;}
.yb3{bottom:896.293333pt;}
.y51{bottom:897.573333pt;}
.y8{bottom:903.813333pt;}
.y8c{bottom:906.053333pt;}
.y31{bottom:913.093333pt;}
.yff{bottom:914.373333pt;}
.yb2{bottom:914.693333pt;}
.y7{bottom:922.853333pt;}
.y50{bottom:925.253333pt;}
.y8b{bottom:927.173333pt;}
.y30{bottom:932.933333pt;}
.yfe{bottom:933.413333pt;}
.yb1{bottom:933.733333pt;}
.y6{bottom:947.813333pt;}
.y2f{bottom:952.773333pt;}
.y8a{bottom:953.733333pt;}
.h3{height:49.766250pt;}
.h2{height:52.785000pt;}
.h7{height:56.312500pt;}
.h6{height:57.375000pt;}
.h4{height:58.563750pt;}
.h8{height:66.507188pt;}
.h5{height:75.602187pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x3{left:93.631988pt;}
.x1{left:94.591988pt;}
.xd{left:123.551988pt;}
.x9{left:132.671988pt;}
.xc{left:140.666655pt;}
.xb{left:141.626655pt;}
.xa{left:170.586655pt;}
.x7{left:222.746655pt;}
.x8{left:233.666655pt;}
.x5{left:258.146655pt;}
.x6{left:417.853321pt;}
.x4{left:703.359988pt;}
.x2{left:708.639988pt;}
}




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