
    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_e2999f7cb7125e99f2ab2dd3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ac53dadd23fa4c2787e18196.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8925ab671fa699ce5dc004ab.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d305af69b3763074948e8b05.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_537161c67a4d13f1bcdd1775.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_f6a4439ba3646abbe9ed43b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5a53210b85e5ab77d084090f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_fdccf638dda58dbbaec9679f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_efdb560c7976b6ce9d4ce139.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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:ffa;src:url('chunks/assets/font_d73c990575c9201656152bf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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:ffb;src:url('chunks/assets/font_dc1392f34f38a95513aa32d1.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6a2332c37aa2cd27da010c7c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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:ffd;src:url('chunks/assets/font_e118761fed219040512c7276.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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:ffe;src:url('chunks/assets/font_422fa69e12682f142da1a645.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.206400px;}
.ls9{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.513600px;}
.ls10{letter-spacing:0.900000px;}
.ls7{letter-spacing:3.198240px;}
.lsf{letter-spacing:6.426720px;}
.ls4{letter-spacing:46.026720px;}
.ls0{letter-spacing:1135.769760px;}
.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:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.ws1{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
._9{margin-left:-11.808000px;}
._7{margin-left:-5.554800px;}
._12{margin-left:-4.517280px;}
._6{margin-left:-3.501360px;}
._8{margin-left:-2.239920px;}
._1{margin-left:-1.135440px;}
._0{width:1.135440px;}
._2{width:2.647200px;}
._b{width:3.657120px;}
._e{width:5.391840px;}
._a{width:6.748080px;}
._c{width:7.840800px;}
._d{width:8.956560px;}
._f{width:10.002240px;}
._16{width:11.016720px;}
._11{width:12.191040px;}
._10{width:13.625280px;}
._13{width:16.374240px;}
._14{width:17.449920px;}
._17{width:18.465840px;}
._15{width:19.806960px;}
._4{width:105.269760px;}
._3{width:1048.625760px;}
._5{width:1339.649760px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:19.440000px;}
.y7{bottom:42.840000px;}
.y6{bottom:66.240000px;}
.y5{bottom:89.496000px;}
.y3e{bottom:109.116000px;}
.yc6{bottom:110.196000px;}
.y3d{bottom:126.756000px;}
.yc5{bottom:127.476000px;}
.y9d{bottom:131.256000px;}
.y3c{bottom:144.756000px;}
.y9c{bottom:148.536000px;}
.y3b{bottom:149.976000px;}
.y6d{bottom:155.910000px;}
.yc4{bottom:162.030000px;}
.y3a{bottom:164.010000px;}
.y9b{bottom:165.630000px;}
.yc3{bottom:179.130000px;}
.y6c{bottom:185.250000px;}
.y39{bottom:190.290000px;}
.y9a{bottom:194.970000px;}
.yc2{bottom:196.410000px;}
.y6b{bottom:202.530000px;}
.y99{bottom:212.250000px;}
.yc1{bottom:213.690000px;}
.y38{bottom:219.450000px;}
.y6a{bottom:219.630000px;}
.y98{bottom:229.530000px;}
.yc0{bottom:230.970000px;}
.y37{bottom:236.730000px;}
.y69{bottom:236.910000px;}
.ybf{bottom:248.250000px;}
.y36{bottom:254.010000px;}
.y68{bottom:254.190000px;}
.y97{bottom:258.690000px;}
.ybe{bottom:265.530000px;}
.y35{bottom:271.290000px;}
.y96{bottom:275.970000px;}
.ybd{bottom:282.630000px;}
.y67{bottom:283.350000px;}
.y34{bottom:288.390000px;}
.y95{bottom:293.250000px;}
.ybc{bottom:299.910000px;}
.y66{bottom:300.630000px;}
.ye8{bottom:303.510000px;}
.y33{bottom:305.670000px;}
.y94{bottom:310.530000px;}
.ybb{bottom:317.190000px;}
.y65{bottom:317.910000px;}
.ye7{bottom:320.790000px;}
.y32{bottom:322.950000px;}
.yba{bottom:334.470000px;}
.y64{bottom:335.190000px;}
.ye6{bottom:336.495000px;}
.y93{bottom:339.735000px;}
.y31{bottom:340.275000px;}
.yb9{bottom:351.795000px;}
.ye5{bottom:351.975000px;}
.y92{bottom:357.015000px;}
.y30{bottom:357.555000px;}
.y63{bottom:364.395000px;}
.ye4{bottom:367.455000px;}
.yb8{bottom:368.895000px;}
.y91{bottom:374.295000px;}
.y2f{bottom:374.835000px;}
.y62{bottom:381.675000px;}
.ye3{bottom:384.915000px;}
.yb7{bottom:386.175000px;}
.ye2{bottom:390.855000px;}
.y90{bottom:391.395000px;}
.y2e{bottom:391.935000px;}
.y61{bottom:398.955000px;}
.yb6{bottom:403.455000px;}
.ye9{bottom:406.875000px;}
.y8f{bottom:408.675000px;}
.y2d{bottom:409.215000px;}
.y60{bottom:416.235000px;}
.yb5{bottom:420.735000px;}
.y8e{bottom:425.955000px;}
.y2c{bottom:426.495000px;}
.yb4{bottom:438.015000px;}
.ye1{bottom:443.055000px;}
.y2b{bottom:443.775000px;}
.y5f{bottom:445.395000px;}
.y8d{bottom:455.115000px;}
.yb3{bottom:455.295000px;}
.y2a{bottom:461.055000px;}
.y5e{bottom:462.675000px;}
.y8c{bottom:472.395000px;}
.y29{bottom:478.155000px;}
.y5d{bottom:479.955000px;}
.y8b{bottom:489.675000px;}
.y28{bottom:495.435000px;}
.y5c{bottom:497.235000px;}
.ye0{bottom:501.735000px;}
.y8a{bottom:506.955000px;}
.y27{bottom:512.715000px;}
.y5b{bottom:514.515000px;}
.y89{bottom:524.235000px;}
.y26{bottom:529.995000px;}
.ydf{bottom:530.895000px;}
.y5a{bottom:531.795000px;}
.yb2{bottom:536.115000px;}
.y88{bottom:541.515000px;}
.y25{bottom:547.275000px;}
.y59{bottom:548.895000px;}
.yb1{bottom:553.395000px;}
.y87{bottom:558.795000px;}
.ydd{bottom:560.235000px;}
.y24{bottom:564.555000px;}
.yde{bottom:565.455000px;}
.y58{bottom:566.175000px;}
.y86{bottom:575.895000px;}
.ydc{bottom:577.515000px;}
.y23{bottom:581.655000px;}
.yb0{bottom:582.735000px;}
.y57{bottom:583.455000px;}
.y85{bottom:593.175000px;}
.ydb{bottom:594.795000px;}
.y22{bottom:598.935000px;}
.yaf{bottom:600.015000px;}
.y84{bottom:610.485000px;}
.yda{bottom:611.925000px;}
.y56{bottom:612.645000px;}
.y21{bottom:616.245000px;}
.yae{bottom:617.325000px;}
.y83{bottom:627.765000px;}
.yd9{bottom:629.205000px;}
.y20{bottom:633.525000px;}
.yad{bottom:634.425000px;}
.y55{bottom:641.985000px;}
.y82{bottom:645.045000px;}
.yd8{bottom:646.485000px;}
.y1f{bottom:650.805000px;}
.yac{bottom:651.705000px;}
.y81{bottom:662.325000px;}
.yd7{bottom:663.765000px;}
.y1e{bottom:668.085000px;}
.yab{bottom:668.985000px;}
.y54{bottom:671.145000px;}
.yd6{bottom:681.045000px;}
.yaa{bottom:686.265000px;}
.y80{bottom:691.485000px;}
.y1d{bottom:697.245000px;}
.yd5{bottom:698.325000px;}
.y53{bottom:700.485000px;}
.ya9{bottom:703.545000px;}
.y7f{bottom:708.765000px;}
.yd4{bottom:715.425000px;}
.ya8{bottom:720.645000px;}
.y7e{bottom:726.045000px;}
.y1c{bottom:726.405000px;}
.y52{bottom:729.645000px;}
.yd3{bottom:732.705000px;}
.ya7{bottom:737.925000px;}
.y7d{bottom:743.145000px;}
.y1b{bottom:743.685000px;}
.ya6{bottom:755.205000px;}
.y51{bottom:758.985000px;}
.y7c{bottom:760.425000px;}
.y1a{bottom:760.965000px;}
.yd2{bottom:761.865000px;}
.ya5{bottom:772.485000px;}
.y19{bottom:778.245000px;}
.yd1{bottom:779.145000px;}
.y50{bottom:788.145000px;}
.y7b{bottom:789.765000px;}
.y18{bottom:795.525000px;}
.yd0{bottom:796.425000px;}
.y7a{bottom:807.045000px;}
.y17{bottom:812.805000px;}
.ycf{bottom:813.705000px;}
.y4f{bottom:817.485000px;}
.y79{bottom:824.145000px;}
.y16{bottom:829.905000px;}
.yce{bottom:830.985000px;}
.y78{bottom:841.425000px;}
.y4e{bottom:846.645000px;}
.y15{bottom:847.185000px;}
.ycd{bottom:848.265000px;}
.y77{bottom:858.705000px;}
.y14{bottom:864.465000px;}
.ycc{bottom:865.545000px;}
.ya4{bottom:870.810000px;}
.y4d{bottom:876.030000px;}
.y13{bottom:881.790000px;}
.ycb{bottom:882.690000px;}
.y76{bottom:887.910000px;}
.ya3{bottom:888.090000px;}
.y12{bottom:899.070000px;}
.yca{bottom:899.970000px;}
.y4c{bottom:905.190000px;}
.yc9{bottom:917.250000px;}
.y75{bottom:922.470000px;}
.y11{bottom:928.230000px;}
.y4b{bottom:934.530000px;}
.y74{bottom:939.750000px;}
.yc8{bottom:951.810000px;}
.y73{bottom:957.030000px;}
.y10{bottom:957.570000px;}
.y4a{bottom:963.690000px;}
.ya2{bottom:968.910000px;}
.yc7{bottom:969.090000px;}
.y72{bottom:974.310000px;}
.yf{bottom:975.210000px;}
.y49{bottom:980.970000px;}
.ya1{bottom:986.190000px;}
.y71{bottom:991.590000px;}
.ye{bottom:994.110000px;}
.y48{bottom:998.250000px;}
.ya0{bottom:1003.470000px;}
.y70{bottom:1008.690000px;}
.yc{bottom:1013.190000px;}
.y47{bottom:1015.530000px;}
.yd{bottom:1019.130000px;}
.y9f{bottom:1020.750000px;}
.y46{bottom:1032.810000px;}
.yb{bottom:1033.710000px;}
.y6f{bottom:1038.030000px;}
.y9e{bottom:1049.910000px;}
.y45{bottom:1050.090000px;}
.y6e{bottom:1055.310000px;}
.ya{bottom:1063.230000px;}
.y44{bottom:1067.190000px;}
.y43{bottom:1084.470000px;}
.y9{bottom:1101.210000px;}
.y42{bottom:1101.750000px;}
.y41{bottom:1119.030000px;}
.y40{bottom:1136.310000px;}
.y4{bottom:1136.850000px;}
.y3f{bottom:1155.240000px;}
.y3{bottom:1157.940000px;}
.y2{bottom:1176.300000px;}
.y1{bottom:1194.480000px;}
.h15{height:38.158594px;}
.h12{height:38.671172px;}
.h17{height:39.049805px;}
.h9{height:42.086250px;}
.h11{height:43.215117px;}
.h8{height:46.736719px;}
.h16{height:47.980898px;}
.he{height:48.496641px;}
.h18{height:52.998047px;}
.hf{height:58.651172px;}
.hc{height:59.439023px;}
.h13{height:59.614102px;}
.hd{height:60.226875px;}
.h2{height:61.189805px;}
.h14{height:61.423863px;}
.h10{height:62.211094px;}
.hb{height:65.010937px;}
.h4{height:65.884219px;}
.ha{height:66.757500px;}
.h3{height:71.613281px;}
.h5{height:92.965430px;}
.h7{height:96.508125px;}
.h6{height:132.789375px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:80.999987px;}
.x17{left:83.699987px;}
.x11{left:85.859987px;}
.x13{left:108.035987px;}
.x6{left:123.515987px;}
.x14{left:135.035987px;}
.x9{left:151.049987px;}
.xf{left:160.049987px;}
.x2{left:192.449987px;}
.xa{left:201.629987px;}
.x7{left:214.589987px;}
.x10{left:297.074987px;}
.x1{left:342.614987px;}
.xc{left:366.554987px;}
.x8{left:371.954987px;}
.x12{left:418.934987px;}
.xb{left:446.474987px;}
.x5{left:507.704987px;}
.xd{left:521.384973px;}
.xe{left:526.604987px;}
.x15{left:566.744973px;}
.x16{left:569.444987px;}
.x3{left:662.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.456533pt;}
.ls10{letter-spacing:0.800000pt;}
.ls7{letter-spacing:2.842880pt;}
.lsf{letter-spacing:5.712640pt;}
.ls4{letter-spacing:40.912640pt;}
.ls0{letter-spacing:1009.573120pt;}
.ws4{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.ws1{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.ws5{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
._9{margin-left:-10.496000pt;}
._7{margin-left:-4.937600pt;}
._12{margin-left:-4.015360pt;}
._6{margin-left:-3.112320pt;}
._8{margin-left:-1.991040pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.009280pt;}
._2{width:2.353067pt;}
._b{width:3.250773pt;}
._e{width:4.792747pt;}
._a{width:5.998293pt;}
._c{width:6.969600pt;}
._d{width:7.961387pt;}
._f{width:8.890880pt;}
._16{width:9.792640pt;}
._11{width:10.836480pt;}
._10{width:12.111360pt;}
._13{width:14.554880pt;}
._14{width:15.511040pt;}
._17{width:16.414080pt;}
._15{width:17.606187pt;}
._4{width:93.573120pt;}
._3{width:932.111787pt;}
._5{width:1190.799787pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:17.280000pt;}
.y7{bottom:38.080000pt;}
.y6{bottom:58.880000pt;}
.y5{bottom:79.552000pt;}
.y3e{bottom:96.992000pt;}
.yc6{bottom:97.952000pt;}
.y3d{bottom:112.672000pt;}
.yc5{bottom:113.312000pt;}
.y9d{bottom:116.672000pt;}
.y3c{bottom:128.672000pt;}
.y9c{bottom:132.032000pt;}
.y3b{bottom:133.312000pt;}
.y6d{bottom:138.586667pt;}
.yc4{bottom:144.026667pt;}
.y3a{bottom:145.786667pt;}
.y9b{bottom:147.226667pt;}
.yc3{bottom:159.226667pt;}
.y6c{bottom:164.666667pt;}
.y39{bottom:169.146667pt;}
.y9a{bottom:173.306667pt;}
.yc2{bottom:174.586667pt;}
.y6b{bottom:180.026667pt;}
.y99{bottom:188.666667pt;}
.yc1{bottom:189.946667pt;}
.y38{bottom:195.066667pt;}
.y6a{bottom:195.226667pt;}
.y98{bottom:204.026667pt;}
.yc0{bottom:205.306667pt;}
.y37{bottom:210.426667pt;}
.y69{bottom:210.586667pt;}
.ybf{bottom:220.666667pt;}
.y36{bottom:225.786667pt;}
.y68{bottom:225.946667pt;}
.y97{bottom:229.946667pt;}
.ybe{bottom:236.026667pt;}
.y35{bottom:241.146667pt;}
.y96{bottom:245.306667pt;}
.ybd{bottom:251.226667pt;}
.y67{bottom:251.866667pt;}
.y34{bottom:256.346667pt;}
.y95{bottom:260.666667pt;}
.ybc{bottom:266.586667pt;}
.y66{bottom:267.226667pt;}
.ye8{bottom:269.786667pt;}
.y33{bottom:271.706667pt;}
.y94{bottom:276.026667pt;}
.ybb{bottom:281.946667pt;}
.y65{bottom:282.586667pt;}
.ye7{bottom:285.146667pt;}
.y32{bottom:287.066667pt;}
.yba{bottom:297.306667pt;}
.y64{bottom:297.946667pt;}
.ye6{bottom:299.106667pt;}
.y93{bottom:301.986667pt;}
.y31{bottom:302.466667pt;}
.yb9{bottom:312.706667pt;}
.ye5{bottom:312.866667pt;}
.y92{bottom:317.346667pt;}
.y30{bottom:317.826667pt;}
.y63{bottom:323.906667pt;}
.ye4{bottom:326.626667pt;}
.yb8{bottom:327.906667pt;}
.y91{bottom:332.706667pt;}
.y2f{bottom:333.186667pt;}
.y62{bottom:339.266667pt;}
.ye3{bottom:342.146667pt;}
.yb7{bottom:343.266667pt;}
.ye2{bottom:347.426667pt;}
.y90{bottom:347.906667pt;}
.y2e{bottom:348.386667pt;}
.y61{bottom:354.626667pt;}
.yb6{bottom:358.626667pt;}
.ye9{bottom:361.666667pt;}
.y8f{bottom:363.266667pt;}
.y2d{bottom:363.746667pt;}
.y60{bottom:369.986667pt;}
.yb5{bottom:373.986667pt;}
.y8e{bottom:378.626667pt;}
.y2c{bottom:379.106667pt;}
.yb4{bottom:389.346667pt;}
.ye1{bottom:393.826667pt;}
.y2b{bottom:394.466667pt;}
.y5f{bottom:395.906667pt;}
.y8d{bottom:404.546667pt;}
.yb3{bottom:404.706667pt;}
.y2a{bottom:409.826667pt;}
.y5e{bottom:411.266667pt;}
.y8c{bottom:419.906667pt;}
.y29{bottom:425.026667pt;}
.y5d{bottom:426.626667pt;}
.y8b{bottom:435.266667pt;}
.y28{bottom:440.386667pt;}
.y5c{bottom:441.986667pt;}
.ye0{bottom:445.986667pt;}
.y8a{bottom:450.626667pt;}
.y27{bottom:455.746667pt;}
.y5b{bottom:457.346667pt;}
.y89{bottom:465.986667pt;}
.y26{bottom:471.106667pt;}
.ydf{bottom:471.906667pt;}
.y5a{bottom:472.706667pt;}
.yb2{bottom:476.546667pt;}
.y88{bottom:481.346667pt;}
.y25{bottom:486.466667pt;}
.y59{bottom:487.906667pt;}
.yb1{bottom:491.906667pt;}
.y87{bottom:496.706667pt;}
.ydd{bottom:497.986667pt;}
.y24{bottom:501.826667pt;}
.yde{bottom:502.626667pt;}
.y58{bottom:503.266667pt;}
.y86{bottom:511.906667pt;}
.ydc{bottom:513.346667pt;}
.y23{bottom:517.026667pt;}
.yb0{bottom:517.986667pt;}
.y57{bottom:518.626667pt;}
.y85{bottom:527.266667pt;}
.ydb{bottom:528.706667pt;}
.y22{bottom:532.386667pt;}
.yaf{bottom:533.346667pt;}
.y84{bottom:542.653333pt;}
.yda{bottom:543.933333pt;}
.y56{bottom:544.573333pt;}
.y21{bottom:547.773333pt;}
.yae{bottom:548.733333pt;}
.y83{bottom:558.013333pt;}
.yd9{bottom:559.293333pt;}
.y20{bottom:563.133333pt;}
.yad{bottom:563.933333pt;}
.y55{bottom:570.653333pt;}
.y82{bottom:573.373333pt;}
.yd8{bottom:574.653333pt;}
.y1f{bottom:578.493333pt;}
.yac{bottom:579.293333pt;}
.y81{bottom:588.733333pt;}
.yd7{bottom:590.013333pt;}
.y1e{bottom:593.853333pt;}
.yab{bottom:594.653333pt;}
.y54{bottom:596.573333pt;}
.yd6{bottom:605.373333pt;}
.yaa{bottom:610.013333pt;}
.y80{bottom:614.653333pt;}
.y1d{bottom:619.773333pt;}
.yd5{bottom:620.733333pt;}
.y53{bottom:622.653333pt;}
.ya9{bottom:625.373333pt;}
.y7f{bottom:630.013333pt;}
.yd4{bottom:635.933333pt;}
.ya8{bottom:640.573333pt;}
.y7e{bottom:645.373333pt;}
.y1c{bottom:645.693333pt;}
.y52{bottom:648.573333pt;}
.yd3{bottom:651.293333pt;}
.ya7{bottom:655.933333pt;}
.y7d{bottom:660.573333pt;}
.y1b{bottom:661.053333pt;}
.ya6{bottom:671.293333pt;}
.y51{bottom:674.653333pt;}
.y7c{bottom:675.933333pt;}
.y1a{bottom:676.413333pt;}
.yd2{bottom:677.213333pt;}
.ya5{bottom:686.653333pt;}
.y19{bottom:691.773333pt;}
.yd1{bottom:692.573333pt;}
.y50{bottom:700.573333pt;}
.y7b{bottom:702.013333pt;}
.y18{bottom:707.133333pt;}
.yd0{bottom:707.933333pt;}
.y7a{bottom:717.373333pt;}
.y17{bottom:722.493333pt;}
.ycf{bottom:723.293333pt;}
.y4f{bottom:726.653333pt;}
.y79{bottom:732.573333pt;}
.y16{bottom:737.693333pt;}
.yce{bottom:738.653333pt;}
.y78{bottom:747.933333pt;}
.y4e{bottom:752.573333pt;}
.y15{bottom:753.053333pt;}
.ycd{bottom:754.013333pt;}
.y77{bottom:763.293333pt;}
.y14{bottom:768.413333pt;}
.ycc{bottom:769.373333pt;}
.ya4{bottom:774.053333pt;}
.y4d{bottom:778.693333pt;}
.y13{bottom:783.813333pt;}
.ycb{bottom:784.613333pt;}
.y76{bottom:789.253333pt;}
.ya3{bottom:789.413333pt;}
.y12{bottom:799.173333pt;}
.yca{bottom:799.973333pt;}
.y4c{bottom:804.613333pt;}
.yc9{bottom:815.333333pt;}
.y75{bottom:819.973333pt;}
.y11{bottom:825.093333pt;}
.y4b{bottom:830.693333pt;}
.y74{bottom:835.333333pt;}
.yc8{bottom:846.053333pt;}
.y73{bottom:850.693333pt;}
.y10{bottom:851.173333pt;}
.y4a{bottom:856.613333pt;}
.ya2{bottom:861.253333pt;}
.yc7{bottom:861.413333pt;}
.y72{bottom:866.053333pt;}
.yf{bottom:866.853333pt;}
.y49{bottom:871.973333pt;}
.ya1{bottom:876.613333pt;}
.y71{bottom:881.413333pt;}
.ye{bottom:883.653333pt;}
.y48{bottom:887.333333pt;}
.ya0{bottom:891.973333pt;}
.y70{bottom:896.613333pt;}
.yc{bottom:900.613333pt;}
.y47{bottom:902.693333pt;}
.yd{bottom:905.893333pt;}
.y9f{bottom:907.333333pt;}
.y46{bottom:918.053333pt;}
.yb{bottom:918.853333pt;}
.y6f{bottom:922.693333pt;}
.y9e{bottom:933.253333pt;}
.y45{bottom:933.413333pt;}
.y6e{bottom:938.053333pt;}
.ya{bottom:945.093333pt;}
.y44{bottom:948.613333pt;}
.y43{bottom:963.973333pt;}
.y9{bottom:978.853333pt;}
.y42{bottom:979.333333pt;}
.y41{bottom:994.693333pt;}
.y40{bottom:1010.053333pt;}
.y4{bottom:1010.533333pt;}
.y3f{bottom:1026.880000pt;}
.y3{bottom:1029.280000pt;}
.y2{bottom:1045.600000pt;}
.y1{bottom:1061.760000pt;}
.h15{height:33.918750pt;}
.h12{height:34.374375pt;}
.h17{height:34.710938pt;}
.h9{height:37.410000pt;}
.h11{height:38.413438pt;}
.h8{height:41.543750pt;}
.h16{height:42.649687pt;}
.he{height:43.108125pt;}
.h18{height:47.109375pt;}
.hf{height:52.134375pt;}
.hc{height:52.834688pt;}
.h13{height:52.990313pt;}
.hd{height:53.535000pt;}
.h2{height:54.390938pt;}
.h14{height:54.598989pt;}
.h10{height:55.298750pt;}
.hb{height:57.787500pt;}
.h4{height:58.563750pt;}
.ha{height:59.340000pt;}
.h3{height:63.656250pt;}
.h5{height:82.635937pt;}
.h7{height:85.785000pt;}
.h6{height:118.035000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:71.999988pt;}
.x17{left:74.399988pt;}
.x11{left:76.319988pt;}
.x13{left:96.031988pt;}
.x6{left:109.791988pt;}
.x14{left:120.031988pt;}
.x9{left:134.266655pt;}
.xf{left:142.266655pt;}
.x2{left:171.066655pt;}
.xa{left:179.226655pt;}
.x7{left:190.746655pt;}
.x10{left:264.066655pt;}
.x1{left:304.546655pt;}
.xc{left:325.826655pt;}
.x8{left:330.626655pt;}
.x12{left:372.386655pt;}
.xb{left:396.866655pt;}
.x5{left:451.293322pt;}
.xd{left:463.453310pt;}
.xe{left:468.093322pt;}
.x15{left:503.773310pt;}
.x16{left:506.173322pt;}
.x3{left:589.093322pt;}
}




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