
    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_a43ac32713bf30f36b9deb35.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_ffef40cf6e98886d815a81f8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_510f5de4b629ad6dba8ad57f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_67612c153b7c75d53286d5ff.woff')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_4bf755cf5e0c5a5df40e114e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_36160a8c5bb3a8a78249e43b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4326b7209f839292844138c0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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;}
.ls10{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls5{letter-spacing:0.037440px;}
.ls12{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.186480px;}
.ls8{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.360000px;}
.ls14{letter-spacing:1.080000px;}
.ls15{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-24.300000px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.479800px;}
.wsc{word-spacing:-14.166000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-461.868480px;}
._14{margin-left:-3.966480px;}
._6{margin-left:-2.928240px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._10{width:4.289280px;}
._11{width:5.444160px;}
._13{width:6.932160px;}
._8{width:8.164800px;}
._7{width:9.203040px;}
._a{width:10.435680px;}
._d{width:11.644560px;}
._5{width:12.766320px;}
._12{width:13.908240px;}
._4{width:15.502800px;}
._9{width:17.012880px;}
._15{width:18.942720px;}
._b{width:20.833920px;}
._c{width:21.976560px;}
._e{width:24.897600px;}
._f{width:38.246400px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.y2f{bottom:5.760000px;}
.y1e{bottom:7.200000px;}
.yc0{bottom:7.920000px;}
.yb3{bottom:9.000000px;}
.ybc{bottom:10.620000px;}
.yba{bottom:12.090000px;}
.ybe{bottom:12.240000px;}
.y1d{bottom:12.960000px;}
.y6{bottom:14.220000px;}
.yb5{bottom:15.660000px;}
.yb1{bottom:21.420000px;}
.y2e{bottom:25.560000px;}
.y1c{bottom:32.760000px;}
.y2d{bottom:45.360000px;}
.y5{bottom:45.720000px;}
.y1b{bottom:52.740000px;}
.y9{bottom:60.120000px;}
.y2c{bottom:65.340000px;}
.y1a{bottom:72.540000px;}
.y4{bottom:77.400000px;}
.y2b{bottom:82.620000px;}
.y8a{bottom:83.916000px;}
.y19{bottom:92.340000px;}
.y86{bottom:92.916000px;}
.y7e{bottom:94.716000px;}
.y2a{bottom:99.000000px;}
.yb8{bottom:99.396000px;}
.y89{bottom:103.716000px;}
.y3{bottom:109.110000px;}
.y18{bottom:112.140000px;}
.y85{bottom:112.716000px;}
.y29{bottom:112.860000px;}
.y7d{bottom:114.516000px;}
.yb7{bottom:119.196000px;}
.y48{bottom:119.736000px;}
.yee{bottom:119.916000px;}
.y88{bottom:123.516000px;}
.y28{bottom:126.720000px;}
.y17{bottom:131.940000px;}
.y84{bottom:132.516000px;}
.y7c{bottom:134.316000px;}
.yb6{bottom:138.996000px;}
.y47{bottom:139.536000px;}
.yed{bottom:139.716000px;}
.y27{bottom:140.400000px;}
.y2{bottom:142.230000px;}
.y87{bottom:143.316000px;}
.y16{bottom:151.920000px;}
.y83{bottom:152.310000px;}
.y26{bottom:154.260000px;}
.yb4{bottom:155.010000px;}
.y46{bottom:159.330000px;}
.yec{bottom:159.690000px;}
.y7b{bottom:163.110000px;}
.y25{bottom:168.120000px;}
.y15{bottom:171.720000px;}
.y82{bottom:172.110000px;}
.y45{bottom:179.130000px;}
.yeb{bottom:179.490000px;}
.y24{bottom:181.800000px;}
.y7a{bottom:183.090000px;}
.y14{bottom:191.520000px;}
.y81{bottom:192.090000px;}
.y23{bottom:195.660000px;}
.yb2{bottom:197.670000px;}
.y44{bottom:199.110000px;}
.yea{bottom:199.290000px;}
.y79{bottom:202.890000px;}
.y22{bottom:209.520000px;}
.y13{bottom:211.320000px;}
.y80{bottom:211.890000px;}
.y43{bottom:218.910000px;}
.ye9{bottom:219.090000px;}
.y78{bottom:222.690000px;}
.y21{bottom:223.200000px;}
.yb0{bottom:227.190000px;}
.y12{bottom:231.120000px;}
.y7f{bottom:231.690000px;}
.y20{bottom:237.780000px;}
.y42{bottom:238.710000px;}
.ye8{bottom:238.890000px;}
.y77{bottom:251.490000px;}
.y11{bottom:252.405000px;}
.y1f{bottom:255.105000px;}
.y41{bottom:258.510000px;}
.ye7{bottom:258.870000px;}
.y76{bottom:271.290000px;}
.y40{bottom:278.310000px;}
.ye6{bottom:278.670000px;}
.yaf{bottom:285.870000px;}
.y75{bottom:291.270000px;}
.y3f{bottom:298.290000px;}
.ye5{bottom:298.470000px;}
.yae{bottom:305.670000px;}
.y74{bottom:311.070000px;}
.y3e{bottom:318.090000px;}
.ye4{bottom:318.270000px;}
.y73{bottom:330.915000px;}
.yad{bottom:334.515000px;}
.y3d{bottom:337.935000px;}
.ye3{bottom:338.115000px;}
.y72{bottom:350.715000px;}
.yac{bottom:354.495000px;}
.y3c{bottom:357.735000px;}
.ye2{bottom:358.095000px;}
.y71{bottom:370.515000px;}
.yab{bottom:374.295000px;}
.y3b{bottom:377.535000px;}
.ye1{bottom:377.895000px;}
.y70{bottom:390.495000px;}
.yaa{bottom:394.095000px;}
.y3a{bottom:397.515000px;}
.ye0{bottom:397.695000px;}
.y6f{bottom:410.295000px;}
.ya9{bottom:413.895000px;}
.y39{bottom:417.315000px;}
.ydf{bottom:417.495000px;}
.y6e{bottom:430.095000px;}
.ya8{bottom:433.695000px;}
.y38{bottom:437.115000px;}
.yde{bottom:437.295000px;}
.y6d{bottom:449.895000px;}
.ya7{bottom:453.675000px;}
.y37{bottom:456.915000px;}
.ydd{bottom:457.275000px;}
.y6c{bottom:469.695000px;}
.ya6{bottom:473.475000px;}
.y36{bottom:476.715000px;}
.ydc{bottom:477.075000px;}
.y6b{bottom:489.675000px;}
.ya5{bottom:493.275000px;}
.y35{bottom:496.695000px;}
.ydb{bottom:496.875000px;}
.y6a{bottom:509.475000px;}
.ya4{bottom:513.075000px;}
.y34{bottom:516.495000px;}
.yda{bottom:516.675000px;}
.y69{bottom:529.275000px;}
.ya3{bottom:532.875000px;}
.y33{bottom:536.295000px;}
.yd9{bottom:536.475000px;}
.y68{bottom:549.075000px;}
.ya2{bottom:552.855000px;}
.y32{bottom:556.095000px;}
.yd8{bottom:556.455000px;}
.y67{bottom:568.875000px;}
.y31{bottom:575.895000px;}
.yd7{bottom:576.255000px;}
.ya1{bottom:581.655000px;}
.y66{bottom:588.855000px;}
.y30{bottom:595.905000px;}
.yd6{bottom:596.085000px;}
.ya0{bottom:601.485000px;}
.y65{bottom:608.685000px;}
.y10{bottom:610.665000px;}
.yd5{bottom:615.885000px;}
.y9f{bottom:621.285000px;}
.y64{bottom:628.485000px;}
.yd4{bottom:635.685000px;}
.y9e{bottom:641.085000px;}
.y63{bottom:648.285000px;}
.yd3{bottom:655.665000px;}
.y9d{bottom:661.065000px;}
.y62{bottom:668.085000px;}
.yd2{bottom:675.465000px;}
.y61{bottom:688.065000px;}
.y9c{bottom:689.865000px;}
.yd1{bottom:695.265000px;}
.y60{bottom:707.865000px;}
.y9b{bottom:709.665000px;}
.yd0{bottom:715.065000px;}
.y5f{bottom:727.665000px;}
.y9a{bottom:729.465000px;}
.ycf{bottom:734.865000px;}
.y5e{bottom:747.465000px;}
.y99{bottom:749.265000px;}
.yce{bottom:754.845000px;}
.y5d{bottom:767.265000px;}
.y98{bottom:769.245000px;}
.ycd{bottom:774.645000px;}
.y5c{bottom:787.245000px;}
.y97{bottom:789.045000px;}
.ycc{bottom:794.445000px;}
.y5b{bottom:807.045000px;}
.y96{bottom:808.845000px;}
.ycb{bottom:814.245000px;}
.y5a{bottom:826.845000px;}
.y95{bottom:828.645000px;}
.yca{bottom:834.045000px;}
.y59{bottom:846.645000px;}
.y94{bottom:848.445000px;}
.yc9{bottom:854.025000px;}
.y58{bottom:866.490000px;}
.yc8{bottom:873.870000px;}
.y93{bottom:877.290000px;}
.yf{bottom:886.290000px;}
.yc7{bottom:893.670000px;}
.y92{bottom:897.270000px;}
.ye{bottom:906.090000px;}
.y57{bottom:906.270000px;}
.yc6{bottom:913.470000px;}
.y91{bottom:917.070000px;}
.y56{bottom:926.070000px;}
.yd{bottom:926.430000px;}
.yc5{bottom:933.270000px;}
.y90{bottom:936.870000px;}
.y55{bottom:945.870000px;}
.yc{bottom:947.850000px;}
.yc4{bottom:953.250000px;}
.y8f{bottom:956.670000px;}
.y54{bottom:965.670000px;}
.yb{bottom:971.250000px;}
.yc3{bottom:973.050000px;}
.y8e{bottom:976.470000px;}
.y53{bottom:985.470000px;}
.yc2{bottom:992.850000px;}
.y8d{bottom:996.450000px;}
.ya{bottom:1002.930000px;}
.y52{bottom:1005.450000px;}
.yc1{bottom:1012.650000px;}
.y8c{bottom:1016.250000px;}
.y51{bottom:1025.250000px;}
.ybf{bottom:1028.670000px;}
.y8{bottom:1029.750000px;}
.y8b{bottom:1036.050000px;}
.y50{bottom:1045.050000px;}
.y1{bottom:1046.130000px;}
.ybd{bottom:1055.850000px;}
.y4f{bottom:1064.850000px;}
.y4e{bottom:1084.650000px;}
.ybb{bottom:1091.490000px;}
.y4d{bottom:1104.630000px;}
.yb9{bottom:1124.070000px;}
.y4c{bottom:1124.430000px;}
.y4b{bottom:1144.260000px;}
.y4a{bottom:1164.060000px;}
.y49{bottom:1192.140000px;}
.h5{height:2.010938px;}
.h17{height:24.120000px;}
.h12{height:26.460000px;}
.h15{height:29.520000px;}
.h14{height:32.436000px;}
.h16{height:32.580000px;}
.he{height:34.036523px;}
.h13{height:39.600000px;}
.hb{height:41.726953px;}
.h9{height:42.164648px;}
.h10{height:43.506914px;}
.h18{height:43.681992px;}
.h7{height:46.251562px;}
.ha{height:46.736719px;}
.hf{height:48.127500px;}
.h4{height:48.774375px;}
.hd{height:50.800781px;}
.h11{height:50.940000px;}
.h3{height:57.256875px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h2{height:162.750000px;}
.hc{height:269.130000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:22.860000px;}
.w8{width:53.280000px;}
.w9{width:53.496000px;}
.w10{width:71.640000px;}
.we{width:71.676000px;}
.wf{width:73.440000px;}
.w11{width:77.940000px;}
.w7{width:81.180000px;}
.wa{width:119.160000px;}
.w3{width:147.420000px;}
.wb{width:170.850000px;}
.w6{width:215.490000px;}
.wd{width:290.910000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.000000px;}
.x6{left:56.880000px;}
.x9{left:80.999987px;}
.xb{left:104.796000px;}
.xa{left:108.035987px;}
.x12{left:127.656000px;}
.x4{left:139.320000px;}
.xc{left:186.870000px;}
.xd{left:240.870000px;}
.xe{left:295.095000px;}
.x8{left:333.794987px;}
.x5{left:393.014987px;}
.x13{left:419.475000px;}
.xf{left:443.235000px;}
.x14{left:491.865000px;}
.x10{left:497.445000px;}
.x15{left:566.025000px;}
.x11{left:617.505000px;}
.x7{left:620.565000px;}
.x16{left:638.565000px;}
.x3{left:687.930000px;}
.x17{left:710.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls5{letter-spacing:0.033280pt;}
.ls12{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.165760pt;}
.ls8{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls15{letter-spacing:14.672640pt;}
.lsa{letter-spacing:41.040640pt;}
.ws3{word-spacing:-21.600000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.592000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-410.549760pt;}
._14{margin-left:-3.525760pt;}
._6{margin-left:-2.602880pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._10{width:3.812693pt;}
._11{width:4.839253pt;}
._13{width:6.161920pt;}
._8{width:7.257600pt;}
._7{width:8.180480pt;}
._a{width:9.276160pt;}
._d{width:10.350720pt;}
._5{width:11.347840pt;}
._12{width:12.362880pt;}
._4{width:13.780267pt;}
._9{width:15.122560pt;}
._15{width:16.837973pt;}
._b{width:18.519040pt;}
._c{width:19.534720pt;}
._e{width:22.131200pt;}
._f{width:33.996800pt;}
.fs2{font-size:2.560000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.y2f{bottom:5.120000pt;}
.y1e{bottom:6.400000pt;}
.yc0{bottom:7.040000pt;}
.yb3{bottom:8.000000pt;}
.ybc{bottom:9.440000pt;}
.yba{bottom:10.746667pt;}
.ybe{bottom:10.880000pt;}
.y1d{bottom:11.520000pt;}
.y6{bottom:12.640000pt;}
.yb5{bottom:13.920000pt;}
.yb1{bottom:19.040000pt;}
.y2e{bottom:22.720000pt;}
.y1c{bottom:29.120000pt;}
.y2d{bottom:40.320000pt;}
.y5{bottom:40.640000pt;}
.y1b{bottom:46.880000pt;}
.y9{bottom:53.440000pt;}
.y2c{bottom:58.080000pt;}
.y1a{bottom:64.480000pt;}
.y4{bottom:68.800000pt;}
.y2b{bottom:73.440000pt;}
.y8a{bottom:74.592000pt;}
.y19{bottom:82.080000pt;}
.y86{bottom:82.592000pt;}
.y7e{bottom:84.192000pt;}
.y2a{bottom:88.000000pt;}
.yb8{bottom:88.352000pt;}
.y89{bottom:92.192000pt;}
.y3{bottom:96.986667pt;}
.y18{bottom:99.680000pt;}
.y85{bottom:100.192000pt;}
.y29{bottom:100.320000pt;}
.y7d{bottom:101.792000pt;}
.yb7{bottom:105.952000pt;}
.y48{bottom:106.432000pt;}
.yee{bottom:106.592000pt;}
.y88{bottom:109.792000pt;}
.y28{bottom:112.640000pt;}
.y17{bottom:117.280000pt;}
.y84{bottom:117.792000pt;}
.y7c{bottom:119.392000pt;}
.yb6{bottom:123.552000pt;}
.y47{bottom:124.032000pt;}
.yed{bottom:124.192000pt;}
.y27{bottom:124.800000pt;}
.y2{bottom:126.426667pt;}
.y87{bottom:127.392000pt;}
.y16{bottom:135.040000pt;}
.y83{bottom:135.386667pt;}
.y26{bottom:137.120000pt;}
.yb4{bottom:137.786667pt;}
.y46{bottom:141.626667pt;}
.yec{bottom:141.946667pt;}
.y7b{bottom:144.986667pt;}
.y25{bottom:149.440000pt;}
.y15{bottom:152.640000pt;}
.y82{bottom:152.986667pt;}
.y45{bottom:159.226667pt;}
.yeb{bottom:159.546667pt;}
.y24{bottom:161.600000pt;}
.y7a{bottom:162.746667pt;}
.y14{bottom:170.240000pt;}
.y81{bottom:170.746667pt;}
.y23{bottom:173.920000pt;}
.yb2{bottom:175.706667pt;}
.y44{bottom:176.986667pt;}
.yea{bottom:177.146667pt;}
.y79{bottom:180.346667pt;}
.y22{bottom:186.240000pt;}
.y13{bottom:187.840000pt;}
.y80{bottom:188.346667pt;}
.y43{bottom:194.586667pt;}
.ye9{bottom:194.746667pt;}
.y78{bottom:197.946667pt;}
.y21{bottom:198.400000pt;}
.yb0{bottom:201.946667pt;}
.y12{bottom:205.440000pt;}
.y7f{bottom:205.946667pt;}
.y20{bottom:211.360000pt;}
.y42{bottom:212.186667pt;}
.ye8{bottom:212.346667pt;}
.y77{bottom:223.546667pt;}
.y11{bottom:224.360000pt;}
.y1f{bottom:226.760000pt;}
.y41{bottom:229.786667pt;}
.ye7{bottom:230.106667pt;}
.y76{bottom:241.146667pt;}
.y40{bottom:247.386667pt;}
.ye6{bottom:247.706667pt;}
.yaf{bottom:254.106667pt;}
.y75{bottom:258.906667pt;}
.y3f{bottom:265.146667pt;}
.ye5{bottom:265.306667pt;}
.yae{bottom:271.706667pt;}
.y74{bottom:276.506667pt;}
.y3e{bottom:282.746667pt;}
.ye4{bottom:282.906667pt;}
.y73{bottom:294.146667pt;}
.yad{bottom:297.346667pt;}
.y3d{bottom:300.386667pt;}
.ye3{bottom:300.546667pt;}
.y72{bottom:311.746667pt;}
.yac{bottom:315.106667pt;}
.y3c{bottom:317.986667pt;}
.ye2{bottom:318.306667pt;}
.y71{bottom:329.346667pt;}
.yab{bottom:332.706667pt;}
.y3b{bottom:335.586667pt;}
.ye1{bottom:335.906667pt;}
.y70{bottom:347.106667pt;}
.yaa{bottom:350.306667pt;}
.y3a{bottom:353.346667pt;}
.ye0{bottom:353.506667pt;}
.y6f{bottom:364.706667pt;}
.ya9{bottom:367.906667pt;}
.y39{bottom:370.946667pt;}
.ydf{bottom:371.106667pt;}
.y6e{bottom:382.306667pt;}
.ya8{bottom:385.506667pt;}
.y38{bottom:388.546667pt;}
.yde{bottom:388.706667pt;}
.y6d{bottom:399.906667pt;}
.ya7{bottom:403.266667pt;}
.y37{bottom:406.146667pt;}
.ydd{bottom:406.466667pt;}
.y6c{bottom:417.506667pt;}
.ya6{bottom:420.866667pt;}
.y36{bottom:423.746667pt;}
.ydc{bottom:424.066667pt;}
.y6b{bottom:435.266667pt;}
.ya5{bottom:438.466667pt;}
.y35{bottom:441.506667pt;}
.ydb{bottom:441.666667pt;}
.y6a{bottom:452.866667pt;}
.ya4{bottom:456.066667pt;}
.y34{bottom:459.106667pt;}
.yda{bottom:459.266667pt;}
.y69{bottom:470.466667pt;}
.ya3{bottom:473.666667pt;}
.y33{bottom:476.706667pt;}
.yd9{bottom:476.866667pt;}
.y68{bottom:488.066667pt;}
.ya2{bottom:491.426667pt;}
.y32{bottom:494.306667pt;}
.yd8{bottom:494.626667pt;}
.y67{bottom:505.666667pt;}
.y31{bottom:511.906667pt;}
.yd7{bottom:512.226667pt;}
.ya1{bottom:517.026667pt;}
.y66{bottom:523.426667pt;}
.y30{bottom:529.693333pt;}
.yd6{bottom:529.853333pt;}
.ya0{bottom:534.653333pt;}
.y65{bottom:541.053333pt;}
.y10{bottom:542.813333pt;}
.yd5{bottom:547.453333pt;}
.y9f{bottom:552.253333pt;}
.y64{bottom:558.653333pt;}
.yd4{bottom:565.053333pt;}
.y9e{bottom:569.853333pt;}
.y63{bottom:576.253333pt;}
.yd3{bottom:582.813333pt;}
.y9d{bottom:587.613333pt;}
.y62{bottom:593.853333pt;}
.yd2{bottom:600.413333pt;}
.y61{bottom:611.613333pt;}
.y9c{bottom:613.213333pt;}
.yd1{bottom:618.013333pt;}
.y60{bottom:629.213333pt;}
.y9b{bottom:630.813333pt;}
.yd0{bottom:635.613333pt;}
.y5f{bottom:646.813333pt;}
.y9a{bottom:648.413333pt;}
.ycf{bottom:653.213333pt;}
.y5e{bottom:664.413333pt;}
.y99{bottom:666.013333pt;}
.yce{bottom:670.973333pt;}
.y5d{bottom:682.013333pt;}
.y98{bottom:683.773333pt;}
.ycd{bottom:688.573333pt;}
.y5c{bottom:699.773333pt;}
.y97{bottom:701.373333pt;}
.ycc{bottom:706.173333pt;}
.y5b{bottom:717.373333pt;}
.y96{bottom:718.973333pt;}
.ycb{bottom:723.773333pt;}
.y5a{bottom:734.973333pt;}
.y95{bottom:736.573333pt;}
.yca{bottom:741.373333pt;}
.y59{bottom:752.573333pt;}
.y94{bottom:754.173333pt;}
.yc9{bottom:759.133333pt;}
.y58{bottom:770.213333pt;}
.yc8{bottom:776.773333pt;}
.y93{bottom:779.813333pt;}
.yf{bottom:787.813333pt;}
.yc7{bottom:794.373333pt;}
.y92{bottom:797.573333pt;}
.ye{bottom:805.413333pt;}
.y57{bottom:805.573333pt;}
.yc6{bottom:811.973333pt;}
.y91{bottom:815.173333pt;}
.y56{bottom:823.173333pt;}
.yd{bottom:823.493333pt;}
.yc5{bottom:829.573333pt;}
.y90{bottom:832.773333pt;}
.y55{bottom:840.773333pt;}
.yc{bottom:842.533333pt;}
.yc4{bottom:847.333333pt;}
.y8f{bottom:850.373333pt;}
.y54{bottom:858.373333pt;}
.yb{bottom:863.333333pt;}
.yc3{bottom:864.933333pt;}
.y8e{bottom:867.973333pt;}
.y53{bottom:875.973333pt;}
.yc2{bottom:882.533333pt;}
.y8d{bottom:885.733333pt;}
.ya{bottom:891.493333pt;}
.y52{bottom:893.733333pt;}
.yc1{bottom:900.133333pt;}
.y8c{bottom:903.333333pt;}
.y51{bottom:911.333333pt;}
.ybf{bottom:914.373333pt;}
.y8{bottom:915.333333pt;}
.y8b{bottom:920.933333pt;}
.y50{bottom:928.933333pt;}
.y1{bottom:929.893333pt;}
.ybd{bottom:938.533333pt;}
.y4f{bottom:946.533333pt;}
.y4e{bottom:964.133333pt;}
.ybb{bottom:970.213333pt;}
.y4d{bottom:981.893333pt;}
.yb9{bottom:999.173333pt;}
.y4c{bottom:999.493333pt;}
.y4b{bottom:1017.120000pt;}
.y4a{bottom:1034.720000pt;}
.y49{bottom:1059.680000pt;}
.h5{height:1.787500pt;}
.h17{height:21.440000pt;}
.h12{height:23.520000pt;}
.h15{height:26.240000pt;}
.h14{height:28.832000pt;}
.h16{height:28.960000pt;}
.he{height:30.254687pt;}
.h13{height:35.200000pt;}
.hb{height:37.090625pt;}
.h9{height:37.479688pt;}
.h10{height:38.672812pt;}
.h18{height:38.828437pt;}
.h7{height:41.112500pt;}
.ha{height:41.543750pt;}
.hf{height:42.780000pt;}
.h4{height:43.355000pt;}
.hd{height:45.156250pt;}
.h11{height:45.280000pt;}
.h3{height:50.895000pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h2{height:144.666667pt;}
.hc{height:239.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:20.320000pt;}
.w8{width:47.360000pt;}
.w9{width:47.552000pt;}
.w10{width:63.680000pt;}
.we{width:63.712000pt;}
.wf{width:65.280000pt;}
.w11{width:69.280000pt;}
.w7{width:72.160000pt;}
.wa{width:105.920000pt;}
.w3{width:131.040000pt;}
.wb{width:151.866667pt;}
.w6{width:191.546667pt;}
.wd{width:258.586667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.560000pt;}
.x9{left:71.999988pt;}
.xb{left:93.152000pt;}
.xa{left:96.031988pt;}
.x12{left:113.472000pt;}
.x4{left:123.840000pt;}
.xc{left:166.106667pt;}
.xd{left:214.106667pt;}
.xe{left:262.306667pt;}
.x8{left:296.706655pt;}
.x5{left:349.346655pt;}
.x13{left:372.866667pt;}
.xf{left:393.986667pt;}
.x14{left:437.213333pt;}
.x10{left:442.173333pt;}
.x15{left:503.133333pt;}
.x11{left:548.893333pt;}
.x7{left:551.613333pt;}
.x16{left:567.613333pt;}
.x3{left:611.493333pt;}
.x17{left:631.973333pt;}
}




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