
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_0000e0afb6a62c4cb4af88eb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_c18ee1a9a4e53fa9dac0c4c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_61e592d181bf69aa8498ce29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_b9ea49fdf436d5b1523898da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_fcbad680f9fa79c2f0fdcc98.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ead744be273292e5d65e2ac1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_2b053df47bfefda8adfab8f8.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.lsa{letter-spacing:-0.053400px;}
.lse{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.052560px;}
.ls15{letter-spacing:-0.038880px;}
.ls14{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.lsf{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.211680px;}
.ls11{letter-spacing:0.319680px;}
.ls17{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.385800px;}
.ls19{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.666000px;}
.ls0{letter-spacing:0.720000px;}
.ls18{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.972800px;}
.ls12{letter-spacing:47.466720px;}
.lsd{letter-spacing:64.026720px;}
.ls10{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.wsb{word-spacing:-14.958600px;}
.ws6{word-spacing:-14.572800px;}
.ws10{word-spacing:-13.813200px;}
.ws11{word-spacing:-13.504200px;}
.wsd{word-spacing:-13.279800px;}
.ws3{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.ws12{word-spacing:-13.136400px;}
.wse{word-spacing:-13.111200px;}
.wsf{word-spacing:-13.108320px;}
.ws13{word-spacing:-13.094640px;}
.wsc{word-spacing:-13.093920px;}
.ws7{word-spacing:-13.093800px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:2.552040px;}
._13{margin-left:-3.370200px;}
._9{margin-left:-2.307000px;}
._0{margin-left:-1.159200px;}
._1{width:1.056000px;}
._6{width:2.420400px;}
._5{width:3.840240px;}
._e{width:4.848720px;}
._8{width:5.916001px;}
._20{width:6.924094px;}
._3{width:7.963322px;}
._2{width:9.414552px;}
._7{width:11.015448px;}
._4{width:12.888552px;}
._d{width:14.679840px;}
._1e{width:15.692880px;}
._11{width:16.732800px;}
._12{width:17.807760px;}
._10{width:19.949760px;}
._a{width:21.035400px;}
._1b{width:22.244039px;}
._b{width:24.761280px;}
._f{width:26.336400px;}
._c{width:27.361680px;}
._1f{width:29.845680px;}
._17{width:31.134960px;}
._18{width:32.250000px;}
._14{width:34.660800px;}
._1c{width:42.243840px;}
._16{width:43.764000px;}
._15{width:44.879760px;}
._1d{width:64.397520px;}
._22{width:89.281440px;}
._19{width:91.267200px;}
._1a{width:92.973600px;}
._21{width:210.255360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y62{bottom:7.740000px;}
.y65{bottom:7.920000px;}
.y61{bottom:25.380000px;}
.y64{bottom:25.560000px;}
.y2{bottom:73.296000px;}
.y2a{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.ycf{bottom:111.636000px;}
.y59{bottom:120.996000px;}
.yce{bottom:129.276000px;}
.y81{bottom:129.816000px;}
.yab{bottom:130.176000px;}
.y28{bottom:135.396000px;}
.y58{bottom:138.636000px;}
.y72{bottom:143.856000px;}
.ycd{bottom:146.916000px;}
.y80{bottom:147.456000px;}
.yaa{bottom:147.636000px;}
.y27{bottom:153.030000px;}
.y57{bottom:156.270000px;}
.y71{bottom:161.490000px;}
.y26{bottom:170.490000px;}
.ycc{bottom:173.370000px;}
.y56{bottom:173.730000px;}
.y70{bottom:179.130000px;}
.y7f{bottom:179.670000px;}
.ya9{bottom:183.270000px;}
.y25{bottom:188.130000px;}
.ycb{bottom:191.010000px;}
.ya8{bottom:200.910000px;}
.y24{bottom:205.770000px;}
.y55{bottom:209.370000px;}
.y6f{bottom:214.590000px;}
.yca{bottom:217.470000px;}
.ya7{bottom:218.370000px;}
.y23{bottom:223.230000px;}
.y54{bottom:227.010000px;}
.y6e{bottom:232.230000px;}
.yc9{bottom:235.110000px;}
.ya6{bottom:236.010000px;}
.y53{bottom:244.470000px;}
.y22{bottom:258.870000px;}
.yc8{bottom:261.750000px;}
.y52{bottom:262.110000px;}
.y6d{bottom:264.450000px;}
.ya5{bottom:271.470000px;}
.y21{bottom:276.510000px;}
.yc7{bottom:279.390000px;}
.y51{bottom:288.930000px;}
.ya4{bottom:289.110000px;}
.y20{bottom:294.150000px;}
.yc6{bottom:297.030000px;}
.ya3{bottom:306.750000px;}
.y1f{bottom:311.655000px;}
.yc5{bottom:323.535000px;}
.ya2{bottom:324.435000px;}
.y1e{bottom:329.295000px;}
.y50{bottom:337.215000px;}
.yc4{bottom:341.175000px;}
.y4f{bottom:354.855000px;}
.y1d{bottom:356.115000px;}
.yc3{bottom:358.815000px;}
.ya1{bottom:359.895000px;}
.y4e{bottom:372.495000px;}
.ya0{bottom:377.535000px;}
.yc2{bottom:385.275000px;}
.yc1{bottom:402.915000px;}
.y1c{bottom:404.355000px;}
.y4d{bottom:407.955000px;}
.y1b{bottom:421.995000px;}
.y4c{bottom:425.595000px;}
.yc0{bottom:429.375000px;}
.y1a{bottom:439.815000px;}
.y4b{bottom:443.235000px;}
.ybf{bottom:447.015000px;}
.y9f{bottom:452.775000px;}
.y4a{bottom:460.875000px;}
.ybe{bottom:464.655000px;}
.y9e{bottom:470.415000px;}
.y19{bottom:476.895000px;}
.y49{bottom:478.515000px;}
.y9d{bottom:487.875000px;}
.ybd{bottom:491.295000px;}
.y18{bottom:494.535000px;}
.ybc{bottom:508.935000px;}
.y17{bottom:512.175000px;}
.y48{bottom:513.975000px;}
.y9c{bottom:523.515000px;}
.ybb{bottom:526.395000px;}
.y16{bottom:529.815000px;}
.y9b{bottom:541.155000px;}
.y15{bottom:547.275000px;}
.y47{bottom:549.615000px;}
.yba{bottom:553.035000px;}
.y9a{bottom:558.615000px;}
.y14{bottom:564.915000px;}
.y46{bottom:567.255000px;}
.y6c{bottom:569.235000px;}
.yb9{bottom:570.675000px;}
.y99{bottom:576.255000px;}
.y13{bottom:582.555000px;}
.y45{bottom:584.745000px;}
.y6b{bottom:586.905000px;}
.yb8{bottom:588.165000px;}
.y98{bottom:593.925000px;}
.y12{bottom:600.045000px;}
.y6a{bottom:604.545000px;}
.y97{bottom:611.385000px;}
.yb7{bottom:614.805000px;}
.y11{bottom:617.685000px;}
.y44{bottom:620.565000px;}
.y96{bottom:629.025000px;}
.yb6{bottom:632.445000px;}
.y10{bottom:635.325000px;}
.y69{bottom:637.485000px;}
.y95{bottom:646.665000px;}
.yf{bottom:652.785000px;}
.yb5{bottom:658.905000px;}
.y94{bottom:664.305000px;}
.y43{bottom:668.985000px;}
.ye{bottom:670.425000px;}
.yb4{bottom:676.545000px;}
.y68{bottom:682.485000px;}
.y42{bottom:686.625000px;}
.yd{bottom:688.065000px;}
.y93{bottom:699.765000px;}
.yb3{bottom:703.005000px;}
.y41{bottom:704.085000px;}
.yc{bottom:705.705000px;}
.y92{bottom:717.405000px;}
.yb2{bottom:720.645000px;}
.y40{bottom:721.725000px;}
.y67{bottom:727.305000px;}
.yb{bottom:732.345000px;}
.y91{bottom:735.045000px;}
.y3f{bottom:739.185000px;}
.ydd{bottom:743.145000px;}
.yb1{bottom:747.285000px;}
.y90{bottom:752.505000px;}
.y3e{bottom:757.725000px;}
.ydc{bottom:760.785000px;}
.yb0{bottom:764.925000px;}
.y8f{bottom:770.145000px;}
.y66{bottom:772.305000px;}
.y3d{bottom:775.365000px;}
.ydb{bottom:778.245000px;}
.ya{bottom:780.765000px;}
.yaf{bottom:782.565000px;}
.y8e{bottom:787.785000px;}
.y3c{bottom:792.825000px;}
.yda{bottom:804.885000px;}
.yae{bottom:809.205000px;}
.y3b{bottom:811.365000px;}
.y9{bottom:816.585000px;}
.y63{bottom:817.125000px;}
.y7e{bottom:821.985000px;}
.yd9{bottom:822.525000px;}
.y8d{bottom:823.245000px;}
.y3a{bottom:828.825000px;}
.y7d{bottom:839.625000px;}
.y8c{bottom:840.885000px;}
.y39{bottom:846.465000px;}
.yd8{bottom:848.985000px;}
.y8{bottom:852.585000px;}
.yad{bottom:857.625000px;}
.y8b{bottom:858.570000px;}
.y60{bottom:862.170000px;}
.y38{bottom:863.970000px;}
.yd7{bottom:866.670000px;}
.y7c{bottom:875.310000px;}
.y8a{bottom:876.210000px;}
.y7{bottom:888.630000px;}
.y37{bottom:891.870000px;}
.y7b{bottom:892.950000px;}
.yd6{bottom:893.310000px;}
.y89{bottom:893.670000px;}
.y7a{bottom:910.410000px;}
.yd5{bottom:910.950000px;}
.y88{bottom:911.310000px;}
.y6{bottom:924.630000px;}
.y79{bottom:928.050000px;}
.y5f{bottom:928.410000px;}
.y36{bottom:928.770000px;}
.y87{bottom:928.950000px;}
.y78{bottom:945.690000px;}
.y5e{bottom:946.050000px;}
.y35{bottom:946.410000px;}
.yd4{bottom:955.050000px;}
.y5{bottom:962.970000px;}
.yac{bottom:963.510000px;}
.y34{bottom:964.050000px;}
.yd3{bottom:972.690000px;}
.y77{bottom:981.150000px;}
.y5d{bottom:981.510000px;}
.y33{bottom:981.690000px;}
.y4{bottom:987.630000px;}
.yd2{bottom:990.150000px;}
.y76{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.y86{bottom:999.510000px;}
.y3{bottom:1012.290000px;}
.y75{bottom:1016.430000px;}
.y31{bottom:1016.790000px;}
.y85{bottom:1017.150000px;}
.y74{bottom:1034.070000px;}
.y30{bottom:1034.430000px;}
.y84{bottom:1034.790000px;}
.y73{bottom:1051.530000px;}
.y2f{bottom:1052.070000px;}
.y83{bottom:1052.430000px;}
.yd1{bottom:1060.890000px;}
.y2e{bottom:1069.530000px;}
.y82{bottom:1070.070000px;}
.yd0{bottom:1078.530000px;}
.y2d{bottom:1087.170000px;}
.y5c{bottom:1087.530000px;}
.y5b{bottom:1105.170000px;}
.y2c{bottom:1122.630000px;}
.y5a{bottom:1122.810000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:29.717578px;}
.h3{height:38.405391px;}
.h9{height:44.100000px;}
.ha{height:44.316000px;}
.h6{height:50.597578px;}
.h5{height:56.084062px;}
.hb{height:60.960938px;}
.h7{height:61.423863px;}
.h8{height:68.956875px;}
.h4{height:71.324297px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:113.256000px;}
.w4{width:142.056000px;}
.w3{width:162.930000px;}
.w6{width:335.415000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.xe{left:69.659987px;}
.xb{left:74.159987px;}
.x4{left:95.075987px;}
.x10{left:111.275987px;}
.x5{left:122.075987px;}
.x2{left:202.709987px;}
.x7{left:232.410000px;}
.x8{left:375.195000px;}
.xc{left:403.994987px;}
.xf{left:409.754987px;}
.x9{left:489.165000px;}
.xa{left:703.229987px;}
.xd{left:708.809987px;}
.x3{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.lsa{letter-spacing:-0.047467pt;}
.lse{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.046720pt;}
.ls15{letter-spacing:-0.034560pt;}
.ls14{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.lsf{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.188160pt;}
.ls11{letter-spacing:0.284160pt;}
.ls17{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.342933pt;}
.ls19{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.592000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.753600pt;}
.ls12{letter-spacing:42.192640pt;}
.lsd{letter-spacing:56.912640pt;}
.ls10{letter-spacing:72.272640pt;}
.wsa{word-spacing:-53.120000pt;}
.wsb{word-spacing:-13.296533pt;}
.ws6{word-spacing:-12.953600pt;}
.ws10{word-spacing:-12.278400pt;}
.ws11{word-spacing:-12.003733pt;}
.wsd{word-spacing:-11.804267pt;}
.ws3{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.ws12{word-spacing:-11.676800pt;}
.wse{word-spacing:-11.654400pt;}
.wsf{word-spacing:-11.651840pt;}
.ws13{word-spacing:-11.639680pt;}
.wsc{word-spacing:-11.639040pt;}
.ws7{word-spacing:-11.638933pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:2.268480pt;}
._13{margin-left:-2.995734pt;}
._9{margin-left:-2.050666pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.938667pt;}
._6{width:2.151467pt;}
._5{width:3.413547pt;}
._e{width:4.309973pt;}
._8{width:5.258668pt;}
._20{width:6.154750pt;}
._3{width:7.078509pt;}
._2{width:8.368490pt;}
._7{width:9.791510pt;}
._4{width:11.456490pt;}
._d{width:13.048747pt;}
._1e{width:13.949227pt;}
._11{width:14.873600pt;}
._12{width:15.829120pt;}
._10{width:17.733120pt;}
._a{width:18.698134pt;}
._1b{width:19.772479pt;}
._b{width:22.010027pt;}
._f{width:23.410133pt;}
._c{width:24.321493pt;}
._1f{width:26.529493pt;}
._17{width:27.675520pt;}
._18{width:28.666667pt;}
._14{width:30.809600pt;}
._1c{width:37.550080pt;}
._16{width:38.901333pt;}
._15{width:39.893120pt;}
._1d{width:57.242240pt;}
._22{width:79.361280pt;}
._19{width:81.126400pt;}
._1a{width:82.643200pt;}
._21{width:186.893653pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:6.880000pt;}
.y65{bottom:7.040000pt;}
.y61{bottom:22.560000pt;}
.y64{bottom:22.720000pt;}
.y2{bottom:65.152000pt;}
.y2a{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.ycf{bottom:99.232000pt;}
.y59{bottom:107.552000pt;}
.yce{bottom:114.912000pt;}
.y81{bottom:115.392000pt;}
.yab{bottom:115.712000pt;}
.y28{bottom:120.352000pt;}
.y58{bottom:123.232000pt;}
.y72{bottom:127.872000pt;}
.ycd{bottom:130.592000pt;}
.y80{bottom:131.072000pt;}
.yaa{bottom:131.232000pt;}
.y27{bottom:136.026667pt;}
.y57{bottom:138.906667pt;}
.y71{bottom:143.546667pt;}
.y26{bottom:151.546667pt;}
.ycc{bottom:154.106667pt;}
.y56{bottom:154.426667pt;}
.y70{bottom:159.226667pt;}
.y7f{bottom:159.706667pt;}
.ya9{bottom:162.906667pt;}
.y25{bottom:167.226667pt;}
.ycb{bottom:169.786667pt;}
.ya8{bottom:178.586667pt;}
.y24{bottom:182.906667pt;}
.y55{bottom:186.106667pt;}
.y6f{bottom:190.746667pt;}
.yca{bottom:193.306667pt;}
.ya7{bottom:194.106667pt;}
.y23{bottom:198.426667pt;}
.y54{bottom:201.786667pt;}
.y6e{bottom:206.426667pt;}
.yc9{bottom:208.986667pt;}
.ya6{bottom:209.786667pt;}
.y53{bottom:217.306667pt;}
.y22{bottom:230.106667pt;}
.yc8{bottom:232.666667pt;}
.y52{bottom:232.986667pt;}
.y6d{bottom:235.066667pt;}
.ya5{bottom:241.306667pt;}
.y21{bottom:245.786667pt;}
.yc7{bottom:248.346667pt;}
.y51{bottom:256.826667pt;}
.ya4{bottom:256.986667pt;}
.y20{bottom:261.466667pt;}
.yc6{bottom:264.026667pt;}
.ya3{bottom:272.666667pt;}
.y1f{bottom:277.026667pt;}
.yc5{bottom:287.586667pt;}
.ya2{bottom:288.386667pt;}
.y1e{bottom:292.706667pt;}
.y50{bottom:299.746667pt;}
.yc4{bottom:303.266667pt;}
.y4f{bottom:315.426667pt;}
.y1d{bottom:316.546667pt;}
.yc3{bottom:318.946667pt;}
.ya1{bottom:319.906667pt;}
.y4e{bottom:331.106667pt;}
.ya0{bottom:335.586667pt;}
.yc2{bottom:342.466667pt;}
.yc1{bottom:358.146667pt;}
.y1c{bottom:359.426667pt;}
.y4d{bottom:362.626667pt;}
.y1b{bottom:375.106667pt;}
.y4c{bottom:378.306667pt;}
.yc0{bottom:381.666667pt;}
.y1a{bottom:390.946667pt;}
.y4b{bottom:393.986667pt;}
.ybf{bottom:397.346667pt;}
.y9f{bottom:402.466667pt;}
.y4a{bottom:409.666667pt;}
.ybe{bottom:413.026667pt;}
.y9e{bottom:418.146667pt;}
.y19{bottom:423.906667pt;}
.y49{bottom:425.346667pt;}
.y9d{bottom:433.666667pt;}
.ybd{bottom:436.706667pt;}
.y18{bottom:439.586667pt;}
.ybc{bottom:452.386667pt;}
.y17{bottom:455.266667pt;}
.y48{bottom:456.866667pt;}
.y9c{bottom:465.346667pt;}
.ybb{bottom:467.906667pt;}
.y16{bottom:470.946667pt;}
.y9b{bottom:481.026667pt;}
.y15{bottom:486.466667pt;}
.y47{bottom:488.546667pt;}
.yba{bottom:491.586667pt;}
.y9a{bottom:496.546667pt;}
.y14{bottom:502.146667pt;}
.y46{bottom:504.226667pt;}
.y6c{bottom:505.986667pt;}
.yb9{bottom:507.266667pt;}
.y99{bottom:512.226667pt;}
.y13{bottom:517.826667pt;}
.y45{bottom:519.773333pt;}
.y6b{bottom:521.693333pt;}
.yb8{bottom:522.813333pt;}
.y98{bottom:527.933333pt;}
.y12{bottom:533.373333pt;}
.y6a{bottom:537.373333pt;}
.y97{bottom:543.453333pt;}
.yb7{bottom:546.493333pt;}
.y11{bottom:549.053333pt;}
.y44{bottom:551.613333pt;}
.y96{bottom:559.133333pt;}
.yb6{bottom:562.173333pt;}
.y10{bottom:564.733333pt;}
.y69{bottom:566.653333pt;}
.y95{bottom:574.813333pt;}
.yf{bottom:580.253333pt;}
.yb5{bottom:585.693333pt;}
.y94{bottom:590.493333pt;}
.y43{bottom:594.653333pt;}
.ye{bottom:595.933333pt;}
.yb4{bottom:601.373333pt;}
.y68{bottom:606.653333pt;}
.y42{bottom:610.333333pt;}
.yd{bottom:611.613333pt;}
.y93{bottom:622.013333pt;}
.yb3{bottom:624.893333pt;}
.y41{bottom:625.853333pt;}
.yc{bottom:627.293333pt;}
.y92{bottom:637.693333pt;}
.yb2{bottom:640.573333pt;}
.y40{bottom:641.533333pt;}
.y67{bottom:646.493333pt;}
.yb{bottom:650.973333pt;}
.y91{bottom:653.373333pt;}
.y3f{bottom:657.053333pt;}
.ydd{bottom:660.573333pt;}
.yb1{bottom:664.253333pt;}
.y90{bottom:668.893333pt;}
.y3e{bottom:673.533333pt;}
.ydc{bottom:676.253333pt;}
.yb0{bottom:679.933333pt;}
.y8f{bottom:684.573333pt;}
.y66{bottom:686.493333pt;}
.y3d{bottom:689.213333pt;}
.ydb{bottom:691.773333pt;}
.ya{bottom:694.013333pt;}
.yaf{bottom:695.613333pt;}
.y8e{bottom:700.253333pt;}
.y3c{bottom:704.733333pt;}
.yda{bottom:715.453333pt;}
.yae{bottom:719.293333pt;}
.y3b{bottom:721.213333pt;}
.y9{bottom:725.853333pt;}
.y63{bottom:726.333333pt;}
.y7e{bottom:730.653333pt;}
.yd9{bottom:731.133333pt;}
.y8d{bottom:731.773333pt;}
.y3a{bottom:736.733333pt;}
.y7d{bottom:746.333333pt;}
.y8c{bottom:747.453333pt;}
.y39{bottom:752.413333pt;}
.yd8{bottom:754.653333pt;}
.y8{bottom:757.853333pt;}
.yad{bottom:762.333333pt;}
.y8b{bottom:763.173333pt;}
.y60{bottom:766.373333pt;}
.y38{bottom:767.973333pt;}
.yd7{bottom:770.373333pt;}
.y7c{bottom:778.053333pt;}
.y8a{bottom:778.853333pt;}
.y7{bottom:789.893333pt;}
.y37{bottom:792.773333pt;}
.y7b{bottom:793.733333pt;}
.yd6{bottom:794.053333pt;}
.y89{bottom:794.373333pt;}
.y7a{bottom:809.253333pt;}
.yd5{bottom:809.733333pt;}
.y88{bottom:810.053333pt;}
.y6{bottom:821.893333pt;}
.y79{bottom:824.933333pt;}
.y5f{bottom:825.253333pt;}
.y36{bottom:825.573333pt;}
.y87{bottom:825.733333pt;}
.y78{bottom:840.613333pt;}
.y5e{bottom:840.933333pt;}
.y35{bottom:841.253333pt;}
.yd4{bottom:848.933333pt;}
.y5{bottom:855.973333pt;}
.yac{bottom:856.453333pt;}
.y34{bottom:856.933333pt;}
.yd3{bottom:864.613333pt;}
.y77{bottom:872.133333pt;}
.y5d{bottom:872.453333pt;}
.y33{bottom:872.613333pt;}
.y4{bottom:877.893333pt;}
.yd2{bottom:880.133333pt;}
.y76{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.y86{bottom:888.453333pt;}
.y3{bottom:899.813333pt;}
.y75{bottom:903.493333pt;}
.y31{bottom:903.813333pt;}
.y85{bottom:904.133333pt;}
.y74{bottom:919.173333pt;}
.y30{bottom:919.493333pt;}
.y84{bottom:919.813333pt;}
.y73{bottom:934.693333pt;}
.y2f{bottom:935.173333pt;}
.y83{bottom:935.493333pt;}
.yd1{bottom:943.013333pt;}
.y2e{bottom:950.693333pt;}
.y82{bottom:951.173333pt;}
.yd0{bottom:958.693333pt;}
.y2d{bottom:966.373333pt;}
.y5c{bottom:966.693333pt;}
.y5b{bottom:982.373333pt;}
.y2c{bottom:997.893333pt;}
.y5a{bottom:998.053333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.415625pt;}
.h3{height:34.138125pt;}
.h9{height:39.200000pt;}
.ha{height:39.392000pt;}
.h6{height:44.975625pt;}
.h5{height:49.852500pt;}
.hb{height:54.187500pt;}
.h7{height:54.598989pt;}
.h8{height:61.295000pt;}
.h4{height:63.399375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:100.672000pt;}
.w4{width:126.272000pt;}
.w3{width:144.826667pt;}
.w6{width:298.146667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.xe{left:61.919988pt;}
.xb{left:65.919988pt;}
.x4{left:84.511988pt;}
.x10{left:98.911988pt;}
.x5{left:108.511988pt;}
.x2{left:180.186655pt;}
.x7{left:206.586667pt;}
.x8{left:333.506667pt;}
.xc{left:359.106655pt;}
.xf{left:364.226655pt;}
.x9{left:434.813333pt;}
.xa{left:625.093322pt;}
.xd{left:630.053322pt;}
.x3{left:703.973322pt;}
}




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