
    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_5503b3bb8fd86ca05295823a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_d264e9ff629315f92c43ce99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_1e128d67c3b4dc1df3546c09.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_0cce197ef2f53ac457c5b1a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_bd8ab873a25b7fa4a674d9c9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_7e0ea9ba1fbb3bf47c370b85.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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;}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{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);}
.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);}
.m2{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);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187842px;}
.ls2{letter-spacing:64.076494px;}
.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;}
}
.ws2{word-spacing:-35.855986px;}
.ws0{word-spacing:-12.059995px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-3.711527px;}
._13{margin-left:-2.613138px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._f{width:2.192893px;}
._14{width:3.526724px;}
._7{width:4.960137px;}
._5{width:6.830606px;}
._15{width:8.025739px;}
._16{width:9.243375px;}
._18{width:10.382923px;}
._6{width:12.005875px;}
._1a{width:13.287452px;}
._e{width:16.603282px;}
._17{width:17.634423px;}
._9{width:18.836844px;}
._8{width:20.156783px;}
._c{width:21.268963px;}
._d{width:22.439894px;}
._a{width:24.483186px;}
._b{width:25.497483px;}
._12{width:32.813847px;}
._11{width:33.901756px;}
._1{width:100.137644px;}
._10{width:211.638515px;}
._3{width:231.194081px;}
._4{width:1036.867572px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fs7{font-size:30.239988px;}
.fs5{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs6{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.058928px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.y76{bottom:136.559945px;}
.yb5{bottom:149.159940px;}
.y43{bottom:150.419940px;}
.ycd{bottom:150.779940px;}
.y8d{bottom:152.219939px;}
.y75{bottom:155.279938px;}
.yb4{bottom:167.879933px;}
.y42{bottom:168.959932px;}
.ycc{bottom:169.319932px;}
.y8c{bottom:170.939932px;}
.y74{bottom:176.879929px;}
.yb3{bottom:186.599925px;}
.y41{bottom:187.679925px;}
.ycb{bottom:188.579925px;}
.y8b{bottom:192.539923px;}
.y73{bottom:195.599922px;}
.yb2{bottom:205.139918px;}
.y40{bottom:206.219918px;}
.yca{bottom:207.839917px;}
.y8a{bottom:211.079916px;}
.y72{bottom:214.139914px;}
.yb1{bottom:223.859910px;}
.y3f{bottom:224.939910px;}
.yc9{bottom:227.279909px;}
.y89{bottom:229.799908px;}
.y71{bottom:232.859907px;}
.yb0{bottom:242.399903px;}
.y3e{bottom:246.539901px;}
.y88{bottom:248.519901px;}
.y70{bottom:251.399899px;}
.yaf{bottom:263.999894px;}
.y3d{bottom:265.259894px;}
.yc8{bottom:265.979894px;}
.y87{bottom:267.059893px;}
.y6f{bottom:272.999891px;}
.yae{bottom:282.719887px;}
.y3c{bottom:283.799886px;}
.yc7{bottom:284.519886px;}
.y86{bottom:288.659885px;}
.y6e{bottom:291.719883px;}
.yad{bottom:301.439879px;}
.y3b{bottom:302.519879px;}
.yc6{bottom:303.779878px;}
.y85{bottom:307.379877px;}
.y6d{bottom:310.439876px;}
.yac{bottom:319.979872px;}
.y3a{bottom:321.059872px;}
.yc5{bottom:323.219871px;}
.y84{bottom:325.919870px;}
.y6c{bottom:328.979868px;}
.y39{bottom:339.779864px;}
.yab{bottom:341.579863px;}
.yc4{bottom:342.479863px;}
.y83{bottom:344.639862px;}
.y6b{bottom:347.699861px;}
.y38{bottom:358.319857px;}
.yaa{bottom:360.299856px;}
.yc3{bottom:361.019856px;}
.y82{bottom:363.359855px;}
.y6a{bottom:366.239854px;}
.y37{bottom:377.039849px;}
.ya9{bottom:378.839848px;}
.yc2{bottom:380.459848px;}
.y81{bottom:384.959846px;}
.y69{bottom:387.839845px;}
.y36{bottom:395.579842px;}
.ya8{bottom:397.559841px;}
.yc1{bottom:398.999840px;}
.y80{bottom:403.499839px;}
.y68{bottom:406.559837px;}
.y35{bottom:414.299834px;}
.ya7{bottom:416.279833px;}
.yc0{bottom:418.439833px;}
.y7f{bottom:422.219831px;}
.y67{bottom:425.279830px;}
.y34{bottom:433.019827px;}
.ya6{bottom:434.819826px;}
.ybf{bottom:437.699825px;}
.y66{bottom:443.819822px;}
.ya5{bottom:453.539819px;}
.y33{bottom:454.619818px;}
.ybe{bottom:456.779817px;}
.y65{bottom:462.539815px;}
.ya4{bottom:472.079811px;}
.y32{bottom:473.159811px;}
.ybd{bottom:475.139810px;}
.y64{bottom:481.079808px;}
.ya3{bottom:490.799804px;}
.y31{bottom:491.879803px;}
.ybc{bottom:493.679803px;}
.y63{bottom:499.799800px;}
.y30{bottom:510.419796px;}
.ya2{bottom:512.399795px;}
.y62{bottom:518.339793px;}
.y2f{bottom:529.139788px;}
.ya1{bottom:531.119788px;}
.y61{bottom:537.059785px;}
.y2e{bottom:547.859781px;}
.ya0{bottom:549.659780px;}
.y7e{bottom:555.599778px;}
.y60{bottom:558.659777px;}
.y2d{bottom:563.519775px;}
.y9f{bottom:568.379773px;}
.y2c{bottom:569.099772px;}
.ybb{bottom:571.259771px;}
.y7d{bottom:574.319770px;}
.y2b{bottom:576.479769px;}
.y5f{bottom:577.379769px;}
.y2a{bottom:588.179765px;}
.y9e{bottom:589.979764px;}
.y5e{bottom:595.919762px;}
.y29{bottom:598.079761px;}
.y9d{bottom:608.519757px;}
.y28{bottom:614.459754px;}
.y5d{bottom:614.639754px;}
.y27{bottom:625.799750px;}
.y9c{bottom:627.239749px;}
.y5c{bottom:633.179747px;}
.y26{bottom:644.519742px;}
.y9b{bottom:645.959742px;}
.y5b{bottom:651.899739px;}
.y25{bottom:663.059735px;}
.y9a{bottom:664.499734px;}
.y5a{bottom:670.439732px;}
.y24{bottom:681.779727px;}
.y99{bottom:683.219727px;}
.y59{bottom:689.159724px;}
.y23{bottom:700.319720px;}
.y98{bottom:701.759719px;}
.y58{bottom:707.879717px;}
.y22{bottom:719.039712px;}
.y97{bottom:720.479712px;}
.yba{bottom:723.359711px;}
.y57{bottom:726.419709px;}
.y21{bottom:737.579705px;}
.y96{bottom:739.019704px;}
.yb9{bottom:742.079703px;}
.y56{bottom:745.139702px;}
.y20{bottom:756.299697px;}
.y95{bottom:760.799696px;}
.y55{bottom:763.679695px;}
.y1f{bottom:774.839690px;}
.y94{bottom:779.339688px;}
.y54{bottom:782.399687px;}
.y1e{bottom:793.559683px;}
.y93{bottom:798.059681px;}
.y53{bottom:800.939680px;}
.y1d{bottom:812.279675px;}
.y92{bottom:816.599673px;}
.y52{bottom:819.659672px;}
.y1c{bottom:830.819668px;}
.y91{bottom:835.319666px;}
.y51{bottom:838.199665px;}
.y7c{bottom:841.259663px;}
.y1b{bottom:849.539660px;}
.yb8{bottom:853.859658px;}
.y50{bottom:856.919657px;}
.y7b{bottom:859.979656px;}
.y1a{bottom:865.559654px;}
.yb7{bottom:872.579651px;}
.y19{bottom:875.459650px;}
.y4f{bottom:875.639650px;}
.y7a{bottom:878.519649px;}
.yb6{bottom:891.119644px;}
.y18{bottom:892.919643px;}
.y90{bottom:894.179642px;}
.y4e{bottom:897.239641px;}
.y17{bottom:907.859637px;}
.y8f{bottom:912.899635px;}
.y4d{bottom:915.779634px;}
.y16{bottom:923.519631px;}
.y8e{bottom:931.439627px;}
.y4c{bottom:934.499626px;}
.y15{bottom:942.059623px;}
.y4b{bottom:953.039619px;}
.y14{bottom:960.779616px;}
.y4a{bottom:971.759611px;}
.y13{bottom:979.139608px;}
.y49{bottom:990.479604px;}
.y12{bottom:997.499601px;}
.y48{bottom:1009.019596px;}
.y79{bottom:1012.079595px;}
.y11{bottom:1018.379593px;}
.y47{bottom:1027.739589px;}
.y78{bottom:1030.619588px;}
.y46{bottom:1046.279581px;}
.y10{bottom:1047.179581px;}
.y77{bottom:1049.339580px;}
.y45{bottom:1067.879573px;}
.yf{bottom:1073.099571px;}
.y44{bottom:1086.599565px;}
.ye{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yd{bottom:1154.999538px;}
.y2{bottom:1163.639535px;}
.yc{bottom:1167.599533px;}
.ya{bottom:1177.680600px;}
.y1{bottom:1196.039522px;}
.h7{height:12.960000px;}
.h2{height:13.104487px;}
.h6{height:15.836126px;}
.he{height:17.297923px;}
.hf{height:22.045069px;}
.h8{height:30.402410px;}
.h9{height:30.443191px;}
.h3{height:35.049361px;}
.hd{height:35.120025px;}
.h4{height:35.167134px;}
.h1{height:39.313461px;}
.ha{height:39.366195px;}
.hc{height:43.419358px;}
.h5{height:43.506897px;}
.h10{height:43.565256px;}
.hb{height:69.575597px;}
.h0{height:1263.000000px;}
.w2{width:6.660000px;}
.w1{width:120.960000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x13{left:134.998809px;}
.x12{left:154.793938px;}
.x4{left:160.019662px;}
.xe{left:185.579900px;}
.x5{left:206.459917px;}
.x10{left:257.760587px;}
.xd{left:306.539877px;}
.xc{left:313.559875px;}
.x11{left:317.160070px;}
.x2{left:353.160301px;}
.xf{left:363.060651px;}
.x14{left:427.139807px;}
.x6{left:428.399829px;}
.x3{left:446.400357px;}
.x9{left:552.959779px;}
.x7{left:656.280000px;}
.xa{left:661.314658px;}
.xb{left:774.539690px;}
.x8{left:777.240000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166971pt;}
.ls2{letter-spacing:56.956884pt;}
.ws2{word-spacing:-31.871987pt;}
.ws0{word-spacing:-10.719996pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-3.299135pt;}
._13{margin-left:-2.322789pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._f{width:1.949239pt;}
._14{width:3.134865pt;}
._7{width:4.409011pt;}
._5{width:6.071650pt;}
._15{width:7.133991pt;}
._16{width:8.216334pt;}
._18{width:9.229265pt;}
._6{width:10.671889pt;}
._1a{width:11.811068pt;}
._e{width:14.758473pt;}
._17{width:15.675043pt;}
._9{width:16.743861pt;}
._8{width:17.917140pt;}
._c{width:18.905744pt;}
._d{width:19.946573pt;}
._a{width:21.762832pt;}
._b{width:22.664429pt;}
._12{width:29.167864pt;}
._11{width:30.134894pt;}
._1{width:89.011239pt;}
._10{width:188.123125pt;}
._3{width:205.505850pt;}
._4{width:921.660064pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fs7{font-size:26.879989pt;}
.fs5{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs6{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.719047pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.y76{bottom:121.386618pt;}
.yb5{bottom:132.586614pt;}
.y43{bottom:133.706613pt;}
.ycd{bottom:134.026613pt;}
.y8d{bottom:135.306613pt;}
.y75{bottom:138.026611pt;}
.yb4{bottom:149.226607pt;}
.y42{bottom:150.186607pt;}
.ycc{bottom:150.506606pt;}
.y8c{bottom:151.946606pt;}
.y74{bottom:157.226604pt;}
.yb3{bottom:165.866600pt;}
.y41{bottom:166.826600pt;}
.ycb{bottom:167.626600pt;}
.y8b{bottom:171.146598pt;}
.y73{bottom:173.866597pt;}
.yb2{bottom:182.346594pt;}
.y40{bottom:183.306593pt;}
.yca{bottom:184.746593pt;}
.y8a{bottom:187.626592pt;}
.y72{bottom:190.346591pt;}
.yb1{bottom:198.986587pt;}
.y3f{bottom:199.946587pt;}
.yc9{bottom:202.026586pt;}
.y89{bottom:204.266585pt;}
.y71{bottom:206.986584pt;}
.yb0{bottom:215.466580pt;}
.y3e{bottom:219.146579pt;}
.y88{bottom:220.906578pt;}
.y70{bottom:223.466577pt;}
.yaf{bottom:234.666573pt;}
.y3d{bottom:235.786572pt;}
.yc8{bottom:236.426572pt;}
.y87{bottom:237.386572pt;}
.y6f{bottom:242.666570pt;}
.yae{bottom:251.306566pt;}
.y3c{bottom:252.266566pt;}
.yc7{bottom:252.906566pt;}
.y86{bottom:256.586564pt;}
.y6e{bottom:259.306563pt;}
.yad{bottom:267.946559pt;}
.y3b{bottom:268.906559pt;}
.yc6{bottom:270.026559pt;}
.y85{bottom:273.226557pt;}
.y6d{bottom:275.946556pt;}
.yac{bottom:284.426553pt;}
.y3a{bottom:285.386553pt;}
.yc5{bottom:287.306552pt;}
.y84{bottom:289.706551pt;}
.y6c{bottom:292.426550pt;}
.y39{bottom:302.026546pt;}
.yab{bottom:303.626545pt;}
.yc4{bottom:304.426545pt;}
.y83{bottom:306.346544pt;}
.y6b{bottom:309.066543pt;}
.y38{bottom:318.506539pt;}
.yaa{bottom:320.266539pt;}
.yc3{bottom:320.906538pt;}
.y82{bottom:322.986537pt;}
.y6a{bottom:325.546536pt;}
.y37{bottom:335.146533pt;}
.ya9{bottom:336.746532pt;}
.yc2{bottom:338.186531pt;}
.y81{bottom:342.186530pt;}
.y69{bottom:344.746529pt;}
.y36{bottom:351.626526pt;}
.ya8{bottom:353.386525pt;}
.yc1{bottom:354.666525pt;}
.y80{bottom:358.666523pt;}
.y68{bottom:361.386522pt;}
.y35{bottom:368.266519pt;}
.ya7{bottom:370.026519pt;}
.yc0{bottom:371.946518pt;}
.y7f{bottom:375.306517pt;}
.y67{bottom:378.026515pt;}
.y34{bottom:384.906513pt;}
.ya6{bottom:386.506512pt;}
.ybf{bottom:389.066511pt;}
.y66{bottom:394.506509pt;}
.ya5{bottom:403.146505pt;}
.y33{bottom:404.106505pt;}
.ybe{bottom:406.026504pt;}
.y65{bottom:411.146502pt;}
.ya4{bottom:419.626499pt;}
.y32{bottom:420.586498pt;}
.ybd{bottom:422.346498pt;}
.y64{bottom:427.626496pt;}
.ya3{bottom:436.266492pt;}
.y31{bottom:437.226492pt;}
.ybc{bottom:438.826491pt;}
.y63{bottom:444.266489pt;}
.y30{bottom:453.706485pt;}
.ya2{bottom:455.466484pt;}
.y62{bottom:460.746482pt;}
.y2f{bottom:470.346479pt;}
.ya1{bottom:472.106478pt;}
.y61{bottom:477.386476pt;}
.y2e{bottom:486.986472pt;}
.ya0{bottom:488.586471pt;}
.y7e{bottom:493.866469pt;}
.y60{bottom:496.586468pt;}
.y2d{bottom:500.906466pt;}
.y9f{bottom:505.226465pt;}
.y2c{bottom:505.866464pt;}
.ybb{bottom:507.786464pt;}
.y7d{bottom:510.506462pt;}
.y2b{bottom:512.426462pt;}
.y5f{bottom:513.226461pt;}
.y2a{bottom:522.826458pt;}
.y9e{bottom:524.426457pt;}
.y5e{bottom:529.706455pt;}
.y29{bottom:531.626454pt;}
.y9d{bottom:540.906450pt;}
.y28{bottom:546.186448pt;}
.y5d{bottom:546.346448pt;}
.y27{bottom:556.266444pt;}
.y9c{bottom:557.546444pt;}
.y5c{bottom:562.826442pt;}
.y26{bottom:572.906438pt;}
.y9b{bottom:574.186437pt;}
.y5b{bottom:579.466435pt;}
.y25{bottom:589.386431pt;}
.y9a{bottom:590.666430pt;}
.y5a{bottom:595.946428pt;}
.y24{bottom:606.026424pt;}
.y99{bottom:607.306424pt;}
.y59{bottom:612.586422pt;}
.y23{bottom:622.506418pt;}
.y98{bottom:623.786417pt;}
.y58{bottom:629.226415pt;}
.y22{bottom:639.146411pt;}
.y97{bottom:640.426410pt;}
.yba{bottom:642.986409pt;}
.y57{bottom:645.706408pt;}
.y21{bottom:655.626404pt;}
.y96{bottom:656.906404pt;}
.yb9{bottom:659.626403pt;}
.y56{bottom:662.346402pt;}
.y20{bottom:672.266398pt;}
.y95{bottom:676.266396pt;}
.y55{bottom:678.826395pt;}
.y1f{bottom:688.746391pt;}
.y94{bottom:692.746390pt;}
.y54{bottom:695.466388pt;}
.y1e{bottom:705.386385pt;}
.y93{bottom:709.386383pt;}
.y53{bottom:711.946382pt;}
.y1d{bottom:722.026378pt;}
.y92{bottom:725.866376pt;}
.y52{bottom:728.586375pt;}
.y1c{bottom:738.506371pt;}
.y91{bottom:742.506370pt;}
.y51{bottom:745.066369pt;}
.y7c{bottom:747.786368pt;}
.y1b{bottom:755.146365pt;}
.yb8{bottom:758.986363pt;}
.y50{bottom:761.706362pt;}
.y7b{bottom:764.426361pt;}
.y1a{bottom:769.386359pt;}
.yb7{bottom:775.626356pt;}
.y19{bottom:778.186355pt;}
.y4f{bottom:778.346355pt;}
.y7a{bottom:780.906354pt;}
.yb6{bottom:792.106350pt;}
.y18{bottom:793.706349pt;}
.y90{bottom:794.826349pt;}
.y4e{bottom:797.546348pt;}
.y17{bottom:806.986344pt;}
.y8f{bottom:811.466342pt;}
.y4d{bottom:814.026341pt;}
.y16{bottom:820.906338pt;}
.y8e{bottom:827.946335pt;}
.y4c{bottom:830.666334pt;}
.y15{bottom:837.386332pt;}
.y4b{bottom:847.146328pt;}
.y14{bottom:854.026325pt;}
.y4a{bottom:863.786321pt;}
.y13{bottom:870.346319pt;}
.y49{bottom:880.426314pt;}
.y12{bottom:886.666312pt;}
.y48{bottom:896.906308pt;}
.y79{bottom:899.626307pt;}
.y11{bottom:905.226305pt;}
.y47{bottom:913.546301pt;}
.y78{bottom:916.106300pt;}
.y46{bottom:930.026295pt;}
.y10{bottom:930.826294pt;}
.y77{bottom:932.746294pt;}
.y45{bottom:949.226287pt;}
.yf{bottom:953.866285pt;}
.y44{bottom:965.866280pt;}
.ye{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yd{bottom:1026.666256pt;}
.y2{bottom:1034.346253pt;}
.yc{bottom:1037.866252pt;}
.ya{bottom:1046.827200pt;}
.y1{bottom:1063.146241pt;}
.h7{height:11.520000pt;}
.h2{height:11.648433pt;}
.h6{height:14.076557pt;}
.he{height:15.375931pt;}
.hf{height:19.595617pt;}
.h8{height:27.024364pt;}
.h9{height:27.060614pt;}
.h3{height:31.154988pt;}
.hd{height:31.217800pt;}
.h4{height:31.259675pt;}
.h1{height:34.945299pt;}
.ha{height:34.992174pt;}
.hc{height:38.594985pt;}
.h5{height:38.672797pt;}
.h10{height:38.724672pt;}
.hb{height:61.844975pt;}
.h0{height:1122.666667pt;}
.w2{width:5.920000pt;}
.w1{width:107.520000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x13{left:119.998941pt;}
.x12{left:137.594612pt;}
.x4{left:142.239699pt;}
.xe{left:164.959911pt;}
.x5{left:183.519927pt;}
.x10{left:229.120522pt;}
.xd{left:272.479891pt;}
.xc{left:278.719889pt;}
.x11{left:281.920062pt;}
.x2{left:313.920268pt;}
.xf{left:322.720579pt;}
.x14{left:379.679828pt;}
.x6{left:380.799848pt;}
.x3{left:396.800317pt;}
.x9{left:491.519803pt;}
.x7{left:583.360000pt;}
.xa{left:587.835252pt;}
.xb{left:688.479725pt;}
.x8{left:690.880000pt;}
}




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