
    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_805416cb209d1fe63d0545f6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8fcce7760bbd9f9467c4341e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_dc94a45d824bfbaeb0f18262.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e7156b5b002b956256b075ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_0896700cdadd9dec4e62d7b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_3062312497fadabb9ddcc512.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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;}
.m4{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.239995px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.332904px;}
.ls1{letter-spacing:0.491685px;}
.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;}
}
.ws1{word-spacing:-36.562879px;}
.ws2{word-spacing:-10.998716px;}
.ws3{word-spacing:-9.521276px;}
.ws4{word-spacing:-6.238078px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-2.895871px;}
._1{margin-left:-1.150948px;}
._0{width:1.027723px;}
._b{width:2.466833px;}
._4{width:3.788256px;}
._3{width:5.026353px;}
._9{width:6.097932px;}
._12{width:7.205913px;}
._8{width:8.268528px;}
._7{width:10.209117px;}
._a{width:11.565423px;}
._13{width:12.629540px;}
._6{width:13.648645px;}
._5{width:14.724455px;}
._f{width:18.395483px;}
._e{width:19.490100px;}
._11{width:21.300484px;}
._10{width:22.316526px;}
._d{width:26.474395px;}
._c{width:27.741572px;}
._14{width:29.576000px;}
._15{width:149.285088px;}
.fc6{color:rgb(165,88,88);}
.fc5{color:rgb(0,0,255);}
.fc7{color:rgb(101,51,101);}
.fc3{color:rgb(11,0,128);}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,153);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.359989px;}
.fs8{font-size:41.759983px;}
.fs1{font-size:48.239981px;}
.fs2{font-size:59.759976px;}
.fs5{font-size:67.958373px;}
.fs0{font-size:71.999971px;}
.fs4{font-size:90.613164px;}
.fs6{font-size:95.759962px;}
.fs7{font-size:131.521147px;}
.fs3{font-size:165.822534px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.700035px;}
.y1{bottom:57.540277px;}
.y2{bottom:60.240240px;}
.y25{bottom:118.739953px;}
.y24{bottom:139.439944px;}
.y23{bottom:160.139936px;}
.y55{bottom:169.499932px;}
.y22{bottom:180.839928px;}
.y54{bottom:190.199924px;}
.y7f{bottom:198.839920px;}
.y21{bottom:201.359919px;}
.y53{bottom:210.899916px;}
.y7e{bottom:218.099913px;}
.y20{bottom:222.059911px;}
.y52{bottom:231.419907px;}
.y7d{bottom:231.779907px;}
.y1f{bottom:242.759903px;}
.ybe{bottom:245.459902px;}
.y7c{bottom:245.639902px;}
.y51{bottom:252.119899px;}
.ybd{bottom:259.139896px;}
.y7b{bottom:259.319896px;}
.y1e{bottom:263.459895px;}
.y50{bottom:272.819891px;}
.ybc{bottom:272.999891px;}
.y7a{bottom:273.179891px;}
.y1d{bottom:283.979886px;}
.ybb{bottom:286.679885px;}
.y79{bottom:286.859885px;}
.y4f{bottom:293.519883px;}
.yba{bottom:300.539880px;}
.y78{bottom:300.719880px;}
.y1c{bottom:304.679878px;}
.y4e{bottom:314.039874px;}
.yb9{bottom:314.219874px;}
.y77{bottom:314.399874px;}
.y1b{bottom:325.379870px;}
.yb8{bottom:328.079869px;}
.y76{bottom:328.259869px;}
.y4d{bottom:334.739866px;}
.yb7{bottom:341.759863px;}
.y75{bottom:341.939863px;}
.y1a{bottom:346.079862px;}
.y4c{bottom:355.439858px;}
.yb6{bottom:355.619858px;}
.y74{bottom:355.799858px;}
.y19{bottom:366.599853px;}
.yb5{bottom:369.299852px;}
.y73{bottom:369.479852px;}
.y4b{bottom:376.139850px;}
.yb4{bottom:383.159847px;}
.y72{bottom:383.339847px;}
.y18{bottom:387.299845px;}
.y4a{bottom:396.659841px;}
.yb3{bottom:396.839841px;}
.y71{bottom:397.019841px;}
.y17{bottom:407.999837px;}
.yb2{bottom:410.699836px;}
.y70{bottom:410.879836px;}
.y49{bottom:417.359833px;}
.yb1{bottom:424.379830px;}
.y6f{bottom:424.559830px;}
.y16{bottom:428.699829px;}
.y48{bottom:438.059825px;}
.yb0{bottom:438.239825px;}
.y6e{bottom:438.419825px;}
.y15{bottom:449.219820px;}
.yaf{bottom:451.919819px;}
.y6d{bottom:452.099819px;}
.y47{bottom:458.759816px;}
.yae{bottom:465.779814px;}
.y6c{bottom:465.959814px;}
.y14{bottom:469.919812px;}
.y46{bottom:479.279808px;}
.yad{bottom:479.459808px;}
.y6b{bottom:479.639808px;}
.y13{bottom:490.619804px;}
.yac{bottom:493.319803px;}
.y6a{bottom:493.499803px;}
.y45{bottom:499.979800px;}
.yab{bottom:506.999797px;}
.y69{bottom:507.179797px;}
.y12{bottom:511.319795px;}
.y44{bottom:520.679792px;}
.yaa{bottom:520.859792px;}
.y68{bottom:521.039792px;}
.y11{bottom:531.119788px;}
.ya9{bottom:534.539786px;}
.y67{bottom:534.719786px;}
.y43{bottom:541.379783px;}
.y10{bottom:548.399781px;}
.y66{bottom:548.579781px;}
.y42{bottom:561.899775px;}
.ya8{bottom:562.079775px;}
.y65{bottom:562.259775px;}
.yf{bottom:565.679774px;}
.ya7{bottom:575.939770px;}
.y64{bottom:576.119770px;}
.y41{bottom:582.599767px;}
.ye{bottom:582.779767px;}
.ya6{bottom:589.619764px;}
.y63{bottom:589.799764px;}
.yd{bottom:596.459761px;}
.y40{bottom:603.299759px;}
.ya5{bottom:603.479759px;}
.y62{bottom:603.659759px;}
.ya4{bottom:617.159753px;}
.y61{bottom:617.339753px;}
.y3f{bottom:623.999750px;}
.ya3{bottom:631.019748px;}
.y60{bottom:631.199748px;}
.y3e{bottom:644.519742px;}
.ya2{bottom:644.699742px;}
.y5f{bottom:644.879742px;}
.ya1{bottom:658.559737px;}
.y5e{bottom:658.739737px;}
.y3d{bottom:665.219734px;}
.ya0{bottom:672.239731px;}
.y5d{bottom:672.419731px;}
.y3c{bottom:685.919726px;}
.y9f{bottom:686.099726px;}
.y5c{bottom:686.279725px;}
.y5b{bottom:699.959720px;}
.y3b{bottom:706.439717px;}
.y9e{bottom:713.639715px;}
.y5a{bottom:713.819714px;}
.y3a{bottom:727.139709px;}
.y59{bottom:727.499709px;}
.yc{bottom:737.579705px;}
.y58{bottom:741.179704px;}
.y39{bottom:747.839701px;}
.y57{bottom:752.159699px;}
.y9d{bottom:755.039698px;}
.yb{bottom:762.059695px;}
.y38{bottom:768.539693px;}
.y9c{bottom:768.719693px;}
.y9b{bottom:782.579687px;}
.ya{bottom:787.799685px;}
.y37{bottom:789.059684px;}
.y9a{bottom:796.259681px;}
.y36{bottom:809.759676px;}
.y99{bottom:810.119676px;}
.y9{bottom:814.799674px;}
.y98{bottom:823.799670px;}
.y35{bottom:830.459668px;}
.y97{bottom:837.659665px;}
.y34{bottom:851.159660px;}
.y96{bottom:851.339659px;}
.y8{bottom:852.419659px;}
.y95{bottom:865.199654px;}
.y33{bottom:871.679651px;}
.y94{bottom:878.879648px;}
.y32{bottom:892.379643px;}
.y93{bottom:892.739643px;}
.y7{bottom:901.919639px;}
.y92{bottom:906.419637px;}
.y31{bottom:913.079635px;}
.y91{bottom:920.279632px;}
.y30{bottom:933.779626px;}
.y90{bottom:933.959626px;}
.y8f{bottom:947.819621px;}
.y2f{bottom:954.299618px;}
.y8e{bottom:961.499615px;}
.y2e{bottom:974.999610px;}
.y8d{bottom:975.359610px;}
.y8c{bottom:989.039604px;}
.y2d{bottom:995.699602px;}
.y8b{bottom:1002.899599px;}
.y8a{bottom:1016.039594px;}
.y2c{bottom:1016.399593px;}
.y89{bottom:1028.099589px;}
.y2b{bottom:1036.919585px;}
.y88{bottom:1040.159584px;}
.y87{bottom:1052.219579px;}
.y2a{bottom:1057.619577px;}
.y86{bottom:1064.279574px;}
.y85{bottom:1076.879569px;}
.y29{bottom:1078.319569px;}
.y84{bottom:1090.559564px;}
.y56{bottom:1094.519562px;}
.y28{bottom:1099.019560px;}
.y83{bottom:1104.419558px;}
.y6{bottom:1108.559557px;}
.y82{bottom:1118.099553px;}
.y27{bottom:1119.539552px;}
.y5{bottom:1125.839550px;}
.y81{bottom:1131.959547px;}
.y26{bottom:1140.239544px;}
.y4{bottom:1142.939543px;}
.y80{bottom:1145.639542px;}
.h2{height:13.680000px;}
.he{height:35.120025px;}
.hd{height:37.661469px;}
.h3{height:43.505490px;}
.hc{height:43.882365px;}
.h5{height:53.894861px;}
.h4{height:54.361736px;}
.h1{height:64.933568px;}
.ha{height:65.496068px;}
.h8{height:70.878459px;}
.h9{height:86.361645px;}
.h7{height:94.506698px;}
.hb{height:137.172447px;}
.h6{height:172.947721px;}
.h0{height:1263.000000px;}
.w2{width:0.180000px;}
.w1{width:5.400000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.379957px;}
.x13{left:108.179957px;}
.xa{left:117.900854px;}
.xf{left:143.639246px;}
.x9{left:153.359939px;}
.x7{left:183.059927px;}
.x5{left:206.639730px;}
.x4{left:213.659915px;}
.x8{left:224.280762px;}
.xc{left:225.899957px;}
.xe{left:250.559514px;}
.x11{left:284.939886px;}
.xb{left:306.719877px;}
.x6{left:446.399931px;}
.x12{left:645.119742px;}
.x10{left:749.339700px;}
.x2{left:781.020000px;}
.xd{left:784.619686px;}
.x3{left:786.420000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.879996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.295914pt;}
.ls1{letter-spacing:0.437054pt;}
.ws1{word-spacing:-32.500337pt;}
.ws2{word-spacing:-9.776636pt;}
.ws3{word-spacing:-8.463357pt;}
.ws4{word-spacing:-5.544958pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-2.574107pt;}
._1{margin-left:-1.023065pt;}
._0{width:0.913531pt;}
._b{width:2.192740pt;}
._4{width:3.367339pt;}
._3{width:4.467869pt;}
._9{width:5.420384pt;}
._12{width:6.405256pt;}
._8{width:7.349803pt;}
._7{width:9.074771pt;}
._a{width:10.280376pt;}
._13{width:11.226258pt;}
._6{width:12.132129pt;}
._5{width:13.088404pt;}
._f{width:16.351541pt;}
._e{width:17.324533pt;}
._11{width:18.933763pt;}
._10{width:19.836912pt;}
._d{width:23.532796pt;}
._c{width:24.659175pt;}
._14{width:26.289778pt;}
._15{width:132.697856pt;}
.fs9{font-size:24.319990pt;}
.fs8{font-size:37.119985pt;}
.fs1{font-size:42.879983pt;}
.fs2{font-size:53.119979pt;}
.fs5{font-size:60.407443pt;}
.fs0{font-size:63.999974pt;}
.fs4{font-size:80.545034pt;}
.fs6{font-size:85.119966pt;}
.fs7{font-size:116.907687pt;}
.fs3{font-size:147.397808pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.400031pt;}
.y1{bottom:51.146913pt;}
.y2{bottom:53.546880pt;}
.y25{bottom:105.546624pt;}
.y24{bottom:123.946617pt;}
.y23{bottom:142.346610pt;}
.y55{bottom:150.666606pt;}
.y22{bottom:160.746602pt;}
.y54{bottom:169.066599pt;}
.y7f{bottom:176.746596pt;}
.y21{bottom:178.986595pt;}
.y53{bottom:187.466592pt;}
.y7e{bottom:193.866589pt;}
.y20{bottom:197.386588pt;}
.y52{bottom:205.706584pt;}
.y7d{bottom:206.026584pt;}
.y1f{bottom:215.786580pt;}
.ybe{bottom:218.186579pt;}
.y7c{bottom:218.346579pt;}
.y51{bottom:224.106577pt;}
.ybd{bottom:230.346575pt;}
.y7b{bottom:230.506574pt;}
.y1e{bottom:234.186573pt;}
.y50{bottom:242.506570pt;}
.ybc{bottom:242.666570pt;}
.y7a{bottom:242.826570pt;}
.y1d{bottom:252.426566pt;}
.ybb{bottom:254.826565pt;}
.y79{bottom:254.986565pt;}
.y4f{bottom:260.906562pt;}
.yba{bottom:267.146560pt;}
.y78{bottom:267.306560pt;}
.y1c{bottom:270.826558pt;}
.y4e{bottom:279.146555pt;}
.yb9{bottom:279.306555pt;}
.y77{bottom:279.466555pt;}
.y1b{bottom:289.226551pt;}
.yb8{bottom:291.626550pt;}
.y76{bottom:291.786550pt;}
.y4d{bottom:297.546548pt;}
.yb7{bottom:303.786545pt;}
.y75{bottom:303.946545pt;}
.y1a{bottom:307.626544pt;}
.y4c{bottom:315.946540pt;}
.yb6{bottom:316.106540pt;}
.y74{bottom:316.266540pt;}
.y19{bottom:325.866536pt;}
.yb5{bottom:328.266535pt;}
.y73{bottom:328.426535pt;}
.y4b{bottom:334.346533pt;}
.yb4{bottom:340.586530pt;}
.y72{bottom:340.746530pt;}
.y18{bottom:344.266529pt;}
.y4a{bottom:352.586526pt;}
.yb3{bottom:352.746526pt;}
.y71{bottom:352.906526pt;}
.y17{bottom:362.666522pt;}
.yb2{bottom:365.066521pt;}
.y70{bottom:365.226521pt;}
.y49{bottom:370.986518pt;}
.yb1{bottom:377.226516pt;}
.y6f{bottom:377.386516pt;}
.y16{bottom:381.066514pt;}
.y48{bottom:389.386511pt;}
.yb0{bottom:389.546511pt;}
.y6e{bottom:389.706511pt;}
.y15{bottom:399.306507pt;}
.yaf{bottom:401.706506pt;}
.y6d{bottom:401.866506pt;}
.y47{bottom:407.786504pt;}
.yae{bottom:414.026501pt;}
.y6c{bottom:414.186501pt;}
.y14{bottom:417.706500pt;}
.y46{bottom:426.026496pt;}
.yad{bottom:426.186496pt;}
.y6b{bottom:426.346496pt;}
.y13{bottom:436.106492pt;}
.yac{bottom:438.506491pt;}
.y6a{bottom:438.666491pt;}
.y45{bottom:444.426489pt;}
.yab{bottom:450.666486pt;}
.y69{bottom:450.826486pt;}
.y12{bottom:454.506485pt;}
.y44{bottom:462.826482pt;}
.yaa{bottom:462.986481pt;}
.y68{bottom:463.146481pt;}
.y11{bottom:472.106478pt;}
.ya9{bottom:475.146477pt;}
.y67{bottom:475.306477pt;}
.y43{bottom:481.226474pt;}
.y10{bottom:487.466472pt;}
.y66{bottom:487.626472pt;}
.y42{bottom:499.466467pt;}
.ya8{bottom:499.626467pt;}
.y65{bottom:499.786467pt;}
.yf{bottom:502.826466pt;}
.ya7{bottom:511.946462pt;}
.y64{bottom:512.106462pt;}
.y41{bottom:517.866460pt;}
.ye{bottom:518.026459pt;}
.ya6{bottom:524.106457pt;}
.y63{bottom:524.266457pt;}
.yd{bottom:530.186455pt;}
.y40{bottom:536.266452pt;}
.ya5{bottom:536.426452pt;}
.y62{bottom:536.586452pt;}
.ya4{bottom:548.586447pt;}
.y61{bottom:548.746447pt;}
.y3f{bottom:554.666445pt;}
.ya3{bottom:560.906442pt;}
.y60{bottom:561.066442pt;}
.y3e{bottom:572.906438pt;}
.ya2{bottom:573.066437pt;}
.y5f{bottom:573.226437pt;}
.ya1{bottom:585.386433pt;}
.y5e{bottom:585.546432pt;}
.y3d{bottom:591.306430pt;}
.ya0{bottom:597.546428pt;}
.y5d{bottom:597.706428pt;}
.y3c{bottom:609.706423pt;}
.y9f{bottom:609.866423pt;}
.y5c{bottom:610.026423pt;}
.y5b{bottom:622.186418pt;}
.y3b{bottom:627.946415pt;}
.y9e{bottom:634.346413pt;}
.y5a{bottom:634.506413pt;}
.y3a{bottom:646.346408pt;}
.y59{bottom:646.666408pt;}
.yc{bottom:655.626404pt;}
.y58{bottom:658.826403pt;}
.y39{bottom:664.746401pt;}
.y57{bottom:668.586399pt;}
.y9d{bottom:671.146398pt;}
.yb{bottom:677.386396pt;}
.y38{bottom:683.146393pt;}
.y9c{bottom:683.306393pt;}
.y9b{bottom:695.626388pt;}
.ya{bottom:700.266387pt;}
.y37{bottom:701.386386pt;}
.y9a{bottom:707.786384pt;}
.y36{bottom:719.786379pt;}
.y99{bottom:720.106379pt;}
.y9{bottom:724.266377pt;}
.y98{bottom:732.266374pt;}
.y35{bottom:738.186371pt;}
.y97{bottom:744.586369pt;}
.y34{bottom:756.586364pt;}
.y96{bottom:756.746364pt;}
.y8{bottom:757.706364pt;}
.y95{bottom:769.066359pt;}
.y33{bottom:774.826357pt;}
.y94{bottom:781.226354pt;}
.y32{bottom:793.226349pt;}
.y93{bottom:793.546349pt;}
.y7{bottom:801.706346pt;}
.y92{bottom:805.706344pt;}
.y31{bottom:811.626342pt;}
.y91{bottom:818.026339pt;}
.y30{bottom:830.026335pt;}
.y90{bottom:830.186335pt;}
.y8f{bottom:842.506330pt;}
.y2f{bottom:848.266327pt;}
.y8e{bottom:854.666325pt;}
.y2e{bottom:866.666320pt;}
.y8d{bottom:866.986320pt;}
.y8c{bottom:879.146315pt;}
.y2d{bottom:885.066313pt;}
.y8b{bottom:891.466310pt;}
.y8a{bottom:903.146305pt;}
.y2c{bottom:903.466305pt;}
.y89{bottom:913.866301pt;}
.y2b{bottom:921.706298pt;}
.y88{bottom:924.586297pt;}
.y87{bottom:935.306293pt;}
.y2a{bottom:940.106291pt;}
.y86{bottom:946.026288pt;}
.y85{bottom:957.226284pt;}
.y29{bottom:958.506283pt;}
.y84{bottom:969.386279pt;}
.y56{bottom:972.906278pt;}
.y28{bottom:976.906276pt;}
.y83{bottom:981.706274pt;}
.y6{bottom:985.386273pt;}
.y82{bottom:993.866269pt;}
.y27{bottom:995.146269pt;}
.y5{bottom:1000.746266pt;}
.y81{bottom:1006.186264pt;}
.y26{bottom:1013.546261pt;}
.y4{bottom:1015.946260pt;}
.y80{bottom:1018.346259pt;}
.h2{height:12.160000pt;}
.he{height:31.217800pt;}
.hd{height:33.476862pt;}
.h3{height:38.671547pt;}
.hc{height:39.006547pt;}
.h5{height:47.906543pt;}
.h4{height:48.321543pt;}
.h1{height:57.718727pt;}
.ha{height:58.218727pt;}
.h8{height:63.003075pt;}
.h9{height:76.765907pt;}
.h7{height:84.005954pt;}
.hb{height:121.931064pt;}
.h6{height:153.731307pt;}
.h0{height:1122.666667pt;}
.w2{width:0.160000pt;}
.w1{width:4.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.559962pt;}
.x13{left:96.159962pt;}
.xa{left:104.800759pt;}
.xf{left:127.679330pt;}
.x9{left:136.319945pt;}
.x7{left:162.719935pt;}
.x5{left:183.679760pt;}
.x4{left:189.919924pt;}
.x8{left:199.360677pt;}
.xc{left:200.799962pt;}
.xe{left:222.719568pt;}
.x11{left:253.279899pt;}
.xb{left:272.639891pt;}
.x6{left:396.799939pt;}
.x12{left:573.439771pt;}
.x10{left:666.079734pt;}
.x2{left:694.240000pt;}
.xd{left:697.439721pt;}
.x3{left:699.040000pt;}
}




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