
    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_76179e4ff3ebaa4d45e0c784.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_fbe9a94b914694fef065603d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_9e7c81220ad1ef3607dfde71.woff')format("woff");}.ff3{font-family:ff3;line-height:0.911621;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_0c0ad7f104799ad8e68b0373.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_e560f3af8ca513a1fd685e84.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_36e025bdfd1e3521a3ffad10.woff')format("woff");}.ff6{font-family:ff6;line-height:0.891113;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_ffc2ab3081b9038c0f157f4c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_725740c761047a1e64a9b235.woff')format("woff");}.ff8{font-family:ff8;line-height:0.951660;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_ff600b28551b56e98698c8b4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.918945;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_47ba28b7220ce826fb34d08d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.911621;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_7787dd4e21d3553ca6d22c2b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.922852;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_64f1475b22d9c229e98b0cc6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.686523;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_fcd179d9cd62b246c22083e8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.924316;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_1652f6f971aeaa7a3f05bdb5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.922852;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:fff;src:url('chunks/assets/font_5513e7ab57472b6b12528b04.woff')format("woff");}.fff{font-family:fff;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-7.740000px;}
.ls4{letter-spacing:-1.200000px;}
.ls2{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.520000px;}
.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:-20.520000px;}
.ws1{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws18{word-spacing:-6.480000px;}
.ws6{word-spacing:-5.256000px;}
.ws10{word-spacing:-5.100000px;}
.ws13{word-spacing:-3.300000px;}
.ws15{word-spacing:-3.120000px;}
.ws7{word-spacing:-2.520000px;}
.ws2e{word-spacing:-2.160000px;}
.ws36{word-spacing:-1.680000px;}
.wsa{word-spacing:-1.536000px;}
.wse{word-spacing:-1.440000px;}
.ws5{word-spacing:-1.224000px;}
.ws9{word-spacing:-1.152000px;}
.ws8{word-spacing:-1.080000px;}
.ws2f{word-spacing:-1.020000px;}
.ws1f{word-spacing:-0.900000px;}
.ws23{word-spacing:-0.864000px;}
.ws11{word-spacing:-0.780000px;}
.wsd{word-spacing:-0.576000px;}
.ws20{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:0.048000px;}
.ws38{word-spacing:0.096000px;}
.ws25{word-spacing:0.780000px;}
.ws1e{word-spacing:1.500000px;}
.ws45{word-spacing:1.584000px;}
.ws1d{word-spacing:2.580000px;}
.ws27{word-spacing:2.820000px;}
.ws42{word-spacing:2.832000px;}
.ws41{word-spacing:3.504000px;}
.ws14{word-spacing:3.540000px;}
.ws30{word-spacing:4.020000px;}
.ws49{word-spacing:4.128000px;}
.ws17{word-spacing:4.860000px;}
.ws48{word-spacing:4.992000px;}
.ws16{word-spacing:5.040000px;}
.ws21{word-spacing:5.580000px;}
.ws28{word-spacing:5.904000px;}
.ws2b{word-spacing:5.940000px;}
.ws1c{word-spacing:6.060000px;}
.ws46{word-spacing:6.672000px;}
.ws29{word-spacing:7.056000px;}
.ws2c{word-spacing:7.500000px;}
.ws31{word-spacing:7.740000px;}
.ws3c{word-spacing:8.016000px;}
.ws34{word-spacing:8.496000px;}
.ws12{word-spacing:8.580000px;}
.ws2d{word-spacing:10.020000px;}
.ws3a{word-spacing:10.368000px;}
.ws37{word-spacing:10.848000px;}
.ws40{word-spacing:11.040000px;}
.ws22{word-spacing:11.232000px;}
.ws26{word-spacing:11.880000px;}
.ws32{word-spacing:13.200000px;}
.ws24{word-spacing:13.680000px;}
.ws44{word-spacing:14.928000px;}
.ws2a{word-spacing:15.000000px;}
.ws3d{word-spacing:15.984000px;}
.ws1b{word-spacing:16.740000px;}
.ws3b{word-spacing:17.136000px;}
.ws47{word-spacing:17.280000px;}
.ws39{word-spacing:18.864000px;}
.ws19{word-spacing:22.560000px;}
.ws1a{word-spacing:23.520000px;}
.ws0{word-spacing:24.456000px;}
.ws4a{word-spacing:24.768000px;}
.ws4c{word-spacing:24.912000px;}
.wsf{word-spacing:26.520000px;}
.ws3f{word-spacing:27.456000px;}
.ws33{word-spacing:27.480000px;}
.ws4b{word-spacing:27.840000px;}
.ws35{word-spacing:30.096000px;}
.ws43{word-spacing:33.168000px;}
.ws3e{word-spacing:37.920000px;}
._8{margin-left:-6.642000px;}
._5{margin-left:-5.277600px;}
._4{margin-left:-3.931200px;}
._2{margin-left:-2.556000px;}
._3{margin-left:-1.281600px;}
._7{width:1.533600px;}
._c{width:3.086400px;}
._6{width:4.413600px;}
._b{width:5.910000px;}
._a{width:6.984000px;}
._f{width:9.009600px;}
._10{width:10.732800px;}
._9{width:13.992000px;}
._11{width:19.257600px;}
._e{width:26.652000px;}
._d{width:29.982000px;}
._0{width:201.000000px;}
._1{width:471.864000px;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.232200px;}
.y3e{bottom:75.229650px;}
.y2{bottom:75.232200px;}
.y22{bottom:127.603650px;}
.y3c{bottom:127.787700px;}
.y50{bottom:130.338900px;}
.y7e{bottom:130.741350px;}
.y3b{bottom:142.187700px;}
.y4f{bottom:144.738900px;}
.y2d{bottom:150.448650px;}
.y21{bottom:155.548650px;}
.y2c{bottom:173.293650px;}
.y20{bottom:183.493650px;}
.y2b{bottom:196.138650px;}
.y1f{bottom:211.438650px;}
.y2a{bottom:218.983650px;}
.y1e{bottom:239.383650px;}
.y29{bottom:241.828650px;}
.y28{bottom:264.673650px;}
.y1d{bottom:267.328650px;}
.y27{bottom:287.518650px;}
.y1c{bottom:295.273650px;}
.y1b{bottom:323.218650px;}
.y26{bottom:328.363650px;}
.y1a{bottom:351.163650px;}
.y19{bottom:379.108650px;}
.y25{bottom:387.208650px;}
.y18{bottom:407.053650px;}
.y24{bottom:410.053650px;}
.y23{bottom:432.898650px;}
.y17{bottom:434.998650px;}
.y16{bottom:480.943650px;}
.y15{bottom:620.389950px;}
.y14{bottom:652.417950px;}
.y13{bottom:666.925950px;}
.y12{bottom:681.433950px;}
.y11{bottom:713.461950px;}
.y10{bottom:745.489950px;}
.y64{bottom:758.977350px;}
.yf{bottom:759.997950px;}
.y7d{bottom:760.705350px;}
.y63{bottom:773.485350px;}
.ye{bottom:774.505950px;}
.y7c{bottom:775.789350px;}
.y62{bottom:787.993350px;}
.y7b{bottom:790.873350px;}
.y7a{bottom:805.957350px;}
.yd{bottom:806.029950px;}
.y61{bottom:806.749350px;}
.y60{bottom:821.257350px;}
.yc{bottom:824.797950px;}
.y79{bottom:825.289350px;}
.y5f{bottom:835.765350px;}
.y78{bottom:840.373350px;}
.yb{bottom:843.565950px;}
.y5e{bottom:850.273350px;}
.y77{bottom:855.457350px;}
.ya{bottom:858.073950px;}
.y5d{bottom:869.029350px;}
.y76{bottom:870.541350px;}
.y9{bottom:872.581950px;}
.y5c{bottom:883.537350px;}
.y75{bottom:889.873350px;}
.y8{bottom:891.346650px;}
.y5b{bottom:898.045350px;}
.y74{bottom:904.957350px;}
.y5a{bottom:916.801350px;}
.y73{bottom:920.041350px;}
.y59{bottom:931.309350px;}
.y72{bottom:939.373350px;}
.y58{bottom:945.817350px;}
.y7{bottom:952.716150px;}
.y71{bottom:954.457350px;}
.y57{bottom:960.325350px;}
.y4e{bottom:965.214150px;}
.y46{bottom:966.894150px;}
.y70{bottom:969.541350px;}
.y6{bottom:979.824150px;}
.y6f{bottom:984.625350px;}
.y4d{bottom:991.059150px;}
.y45{bottom:991.839150px;}
.y56{bottom:997.095450px;}
.y6e{bottom:1003.957350px;}
.y3a{bottom:1013.010000px;}
.y35{bottom:1016.231250px;}
.y44{bottom:1016.791650px;}
.y4c{bottom:1016.904150px;}
.y6d{bottom:1019.041350px;}
.y34{bottom:1032.215250px;}
.y43{bottom:1033.627650px;}
.y6c{bottom:1038.373350px;}
.y39{bottom:1039.635000px;}
.y4b{bottom:1042.749150px;}
.y33{bottom:1048.199250px;}
.y42{bottom:1050.463650px;}
.y6b{bottom:1053.457350px;}
.y55{bottom:1055.700450px;}
.y38{bottom:1066.260000px;}
.y6a{bottom:1068.541350px;}
.y4a{bottom:1068.594150px;}
.y32{bottom:1072.695000px;}
.y41{bottom:1075.800000px;}
.y54{bottom:1078.305450px;}
.y69{bottom:1083.625350px;}
.y37{bottom:1092.885000px;}
.y49{bottom:1094.439150px;}
.y68{bottom:1098.709350px;}
.y53{bottom:1100.910450px;}
.y40{bottom:1105.245000px;}
.y5{bottom:1108.987050px;}
.y67{bottom:1113.793350px;}
.y36{bottom:1119.510000px;}
.y48{bottom:1120.284150px;}
.y31{bottom:1122.045000px;}
.y52{bottom:1123.515450px;}
.y3f{bottom:1125.690000px;}
.y66{bottom:1133.125350px;}
.y51{bottom:1146.120450px;}
.y47{bottom:1146.129150px;}
.y30{bottom:1146.135000px;}
.y65{bottom:1148.209350px;}
.y4{bottom:1148.215050px;}
.y2f{bottom:1179.681000px;}
.y2e{bottom:1180.747200px;}
.y3d{bottom:1182.019650px;}
.y1{bottom:1204.129800px;}
.h6{height:33.328125px;}
.h3{height:33.351562px;}
.h7{height:35.320312px;}
.h2{height:39.990234px;}
.h8{height:40.664062px;}
.h5{height:41.689453px;}
.h9{height:44.150391px;}
.h4{height:48.796875px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x6{left:95.817000px;}
.x10{left:100.032900px;}
.x9{left:113.539350px;}
.x8{left:127.559100px;}
.x7{left:194.385000px;}
.xd{left:231.109950px;}
.x5{left:266.052900px;}
.xe{left:283.039350px;}
.x11{left:289.200900px;}
.xc{left:330.799950px;}
.x2{left:336.611700px;}
.x4{left:349.404900px;}
.x3{left:397.076700px;}
.xb{left:457.099350px;}
.xa{left:485.599350px;}
.xf{left:793.811400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-6.880000pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.240000pt;}
.ws3{word-spacing:-18.240000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws18{word-spacing:-5.760000pt;}
.ws6{word-spacing:-4.672000pt;}
.ws10{word-spacing:-4.533333pt;}
.ws13{word-spacing:-2.933333pt;}
.ws15{word-spacing:-2.773333pt;}
.ws7{word-spacing:-2.240000pt;}
.ws2e{word-spacing:-1.920000pt;}
.ws36{word-spacing:-1.493333pt;}
.wsa{word-spacing:-1.365333pt;}
.wse{word-spacing:-1.280000pt;}
.ws5{word-spacing:-1.088000pt;}
.ws9{word-spacing:-1.024000pt;}
.ws8{word-spacing:-0.960000pt;}
.ws2f{word-spacing:-0.906667pt;}
.ws1f{word-spacing:-0.800000pt;}
.ws23{word-spacing:-0.768000pt;}
.ws11{word-spacing:-0.693333pt;}
.wsd{word-spacing:-0.512000pt;}
.ws20{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:0.042667pt;}
.ws38{word-spacing:0.085333pt;}
.ws25{word-spacing:0.693333pt;}
.ws1e{word-spacing:1.333333pt;}
.ws45{word-spacing:1.408000pt;}
.ws1d{word-spacing:2.293333pt;}
.ws27{word-spacing:2.506667pt;}
.ws42{word-spacing:2.517333pt;}
.ws41{word-spacing:3.114667pt;}
.ws14{word-spacing:3.146667pt;}
.ws30{word-spacing:3.573333pt;}
.ws49{word-spacing:3.669333pt;}
.ws17{word-spacing:4.320000pt;}
.ws48{word-spacing:4.437333pt;}
.ws16{word-spacing:4.480000pt;}
.ws21{word-spacing:4.960000pt;}
.ws28{word-spacing:5.248000pt;}
.ws2b{word-spacing:5.280000pt;}
.ws1c{word-spacing:5.386667pt;}
.ws46{word-spacing:5.930667pt;}
.ws29{word-spacing:6.272000pt;}
.ws2c{word-spacing:6.666667pt;}
.ws31{word-spacing:6.880000pt;}
.ws3c{word-spacing:7.125333pt;}
.ws34{word-spacing:7.552000pt;}
.ws12{word-spacing:7.626667pt;}
.ws2d{word-spacing:8.906667pt;}
.ws3a{word-spacing:9.216000pt;}
.ws37{word-spacing:9.642667pt;}
.ws40{word-spacing:9.813333pt;}
.ws22{word-spacing:9.984000pt;}
.ws26{word-spacing:10.560000pt;}
.ws32{word-spacing:11.733333pt;}
.ws24{word-spacing:12.160000pt;}
.ws44{word-spacing:13.269333pt;}
.ws2a{word-spacing:13.333333pt;}
.ws3d{word-spacing:14.208000pt;}
.ws1b{word-spacing:14.880000pt;}
.ws3b{word-spacing:15.232000pt;}
.ws47{word-spacing:15.360000pt;}
.ws39{word-spacing:16.768000pt;}
.ws19{word-spacing:20.053333pt;}
.ws1a{word-spacing:20.906667pt;}
.ws0{word-spacing:21.738667pt;}
.ws4a{word-spacing:22.016000pt;}
.ws4c{word-spacing:22.144000pt;}
.wsf{word-spacing:23.573333pt;}
.ws3f{word-spacing:24.405333pt;}
.ws33{word-spacing:24.426667pt;}
.ws4b{word-spacing:24.746667pt;}
.ws35{word-spacing:26.752000pt;}
.ws43{word-spacing:29.482667pt;}
.ws3e{word-spacing:33.706667pt;}
._8{margin-left:-5.904000pt;}
._5{margin-left:-4.691200pt;}
._4{margin-left:-3.494400pt;}
._2{margin-left:-2.272000pt;}
._3{margin-left:-1.139200pt;}
._7{width:1.363200pt;}
._c{width:2.743467pt;}
._6{width:3.923200pt;}
._b{width:5.253333pt;}
._a{width:6.208000pt;}
._f{width:8.008533pt;}
._10{width:9.540267pt;}
._9{width:12.437333pt;}
._11{width:17.117867pt;}
._e{width:23.690667pt;}
._d{width:26.650667pt;}
._0{width:178.666667pt;}
._1{width:419.434667pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.873067pt;}
.y3e{bottom:66.870800pt;}
.y2{bottom:66.873067pt;}
.y22{bottom:113.425467pt;}
.y3c{bottom:113.589067pt;}
.y50{bottom:115.856800pt;}
.y7e{bottom:116.214533pt;}
.y3b{bottom:126.389067pt;}
.y4f{bottom:128.656800pt;}
.y2d{bottom:133.732133pt;}
.y21{bottom:138.265467pt;}
.y2c{bottom:154.038800pt;}
.y20{bottom:163.105467pt;}
.y2b{bottom:174.345467pt;}
.y1f{bottom:187.945467pt;}
.y2a{bottom:194.652133pt;}
.y1e{bottom:212.785467pt;}
.y29{bottom:214.958800pt;}
.y28{bottom:235.265467pt;}
.y1d{bottom:237.625467pt;}
.y27{bottom:255.572133pt;}
.y1c{bottom:262.465467pt;}
.y1b{bottom:287.305467pt;}
.y26{bottom:291.878800pt;}
.y1a{bottom:312.145467pt;}
.y19{bottom:336.985467pt;}
.y25{bottom:344.185467pt;}
.y18{bottom:361.825467pt;}
.y24{bottom:364.492133pt;}
.y23{bottom:384.798800pt;}
.y17{bottom:386.665467pt;}
.y16{bottom:427.505467pt;}
.y15{bottom:551.457733pt;}
.y14{bottom:579.927067pt;}
.y13{bottom:592.823067pt;}
.y12{bottom:605.719067pt;}
.y11{bottom:634.188400pt;}
.y10{bottom:662.657733pt;}
.y64{bottom:674.646533pt;}
.yf{bottom:675.553733pt;}
.y7d{bottom:676.182533pt;}
.y63{bottom:687.542533pt;}
.ye{bottom:688.449733pt;}
.y7c{bottom:689.590533pt;}
.y62{bottom:700.438533pt;}
.y7b{bottom:702.998533pt;}
.y7a{bottom:716.406533pt;}
.yd{bottom:716.471067pt;}
.y61{bottom:717.110533pt;}
.y60{bottom:730.006533pt;}
.yc{bottom:733.153733pt;}
.y79{bottom:733.590533pt;}
.y5f{bottom:742.902533pt;}
.y78{bottom:746.998533pt;}
.yb{bottom:749.836400pt;}
.y5e{bottom:755.798533pt;}
.y77{bottom:760.406533pt;}
.ya{bottom:762.732400pt;}
.y5d{bottom:772.470533pt;}
.y76{bottom:773.814533pt;}
.y9{bottom:775.628400pt;}
.y5c{bottom:785.366533pt;}
.y75{bottom:790.998533pt;}
.y8{bottom:792.308133pt;}
.y5b{bottom:798.262533pt;}
.y74{bottom:804.406533pt;}
.y5a{bottom:814.934533pt;}
.y73{bottom:817.814533pt;}
.y59{bottom:827.830533pt;}
.y72{bottom:834.998533pt;}
.y58{bottom:840.726533pt;}
.y7{bottom:846.858800pt;}
.y71{bottom:848.406533pt;}
.y57{bottom:853.622533pt;}
.y4e{bottom:857.968133pt;}
.y46{bottom:859.461467pt;}
.y70{bottom:861.814533pt;}
.y6{bottom:870.954800pt;}
.y6f{bottom:875.222533pt;}
.y4d{bottom:880.941467pt;}
.y45{bottom:881.634800pt;}
.y56{bottom:886.307067pt;}
.y6e{bottom:892.406533pt;}
.y3a{bottom:900.453333pt;}
.y35{bottom:903.316667pt;}
.y44{bottom:903.814800pt;}
.y4c{bottom:903.914800pt;}
.y6d{bottom:905.814533pt;}
.y34{bottom:917.524667pt;}
.y43{bottom:918.780133pt;}
.y6c{bottom:922.998533pt;}
.y39{bottom:924.120000pt;}
.y4b{bottom:926.888133pt;}
.y33{bottom:931.732667pt;}
.y42{bottom:933.745467pt;}
.y6b{bottom:936.406533pt;}
.y55{bottom:938.400400pt;}
.y38{bottom:947.786667pt;}
.y6a{bottom:949.814533pt;}
.y4a{bottom:949.861467pt;}
.y32{bottom:953.506667pt;}
.y41{bottom:956.266667pt;}
.y54{bottom:958.493733pt;}
.y69{bottom:963.222533pt;}
.y37{bottom:971.453333pt;}
.y49{bottom:972.834800pt;}
.y68{bottom:976.630533pt;}
.y53{bottom:978.587067pt;}
.y40{bottom:982.440000pt;}
.y5{bottom:985.766267pt;}
.y67{bottom:990.038533pt;}
.y36{bottom:995.120000pt;}
.y48{bottom:995.808133pt;}
.y31{bottom:997.373333pt;}
.y52{bottom:998.680400pt;}
.y3f{bottom:1000.613333pt;}
.y66{bottom:1007.222533pt;}
.y51{bottom:1018.773733pt;}
.y47{bottom:1018.781467pt;}
.y30{bottom:1018.786667pt;}
.y65{bottom:1020.630533pt;}
.y4{bottom:1020.635600pt;}
.y2f{bottom:1048.605333pt;}
.y2e{bottom:1049.553067pt;}
.y3d{bottom:1050.684133pt;}
.y1{bottom:1070.337600pt;}
.h6{height:29.625000pt;}
.h3{height:29.645833pt;}
.h7{height:31.395833pt;}
.h2{height:35.546875pt;}
.h8{height:36.145833pt;}
.h5{height:37.057292pt;}
.h9{height:39.244792pt;}
.h4{height:43.375000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x6{left:85.170667pt;}
.x10{left:88.918133pt;}
.x9{left:100.923867pt;}
.x8{left:113.385867pt;}
.x7{left:172.786667pt;}
.xd{left:205.431067pt;}
.x5{left:236.491467pt;}
.xe{left:251.590533pt;}
.x11{left:257.067467pt;}
.xc{left:294.044400pt;}
.x2{left:299.210400pt;}
.x4{left:310.582133pt;}
.x3{left:352.957067pt;}
.xb{left:406.310533pt;}
.xa{left:431.643867pt;}
.xf{left:705.610133pt;}
}




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