
    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_021258fce2e10fffeea875b9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.026855;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_29a8ba847ea8035c4d5d71d0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_1a5e855e5a67e8fd6509ec0b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_e71da1a63a85adb389b4372d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005859;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_25a211e86193b295a7cd6f54.woff')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_91c65e44725fd7dbf9ed3364.woff')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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:90.014065px;}
.ls1{letter-spacing:107.972165px;}
.ls6{letter-spacing:107.986397px;}
.ls3{letter-spacing:107.986470px;}
.ls2{letter-spacing:107.986542px;}
.ls4{letter-spacing:108.000566px;}
.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:-78.732003px;}
.ws7{word-spacing:-64.152004px;}
.ws3{word-spacing:-57.736802px;}
.ws2{word-spacing:-40.824000px;}
.ws6{word-spacing:-34.902001px;}
.ws5{word-spacing:-34.188002px;}
.ws4{word-spacing:-29.916001px;}
.ws8{word-spacing:-23.328001px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-17.814807px;}
._9{margin-left:-13.566151px;}
._4{margin-left:-11.664000px;}
._c{margin-left:-10.560001px;}
._d{margin-left:-9.504001px;}
._b{margin-left:-8.064000px;}
._5{margin-left:-6.156000px;}
._e{margin-left:-5.016000px;}
._2{margin-left:-3.600262px;}
._8{margin-left:-2.592000px;}
._0{margin-left:-1.515900px;}
._3{width:1.326412px;}
._7{width:3.276262px;}
._1{width:4.358212px;}
._f{width:6.689063px;}
._6{width:8.460262px;}
._10{width:81.012306px;}
.fc3{color:rgb(251,176,59);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs13{font-size:84.000000px;}
.fsd{font-size:96.000006px;}
.fs3{font-size:102.000000px;}
.fs9{font-size:108.000003px;}
.fsb{font-size:120.000001px;}
.fs11{font-size:126.000004px;}
.fs10{font-size:132.000007px;}
.fsf{font-size:138.000001px;}
.fs5{font-size:144.000005px;}
.fs2{font-size:146.800490px;}
.fsc{font-size:149.999999px;}
.fs7{font-size:167.999999px;}
.fs1{font-size:189.487491px;}
.fsa{font-size:192.000012px;}
.fse{font-size:225.540021px;}
.fs8{font-size:237.600008px;}
.fs12{font-size:240.000002px;}
.fs6{font-size:264.000014px;}
.fs4{font-size:324.000010px;}
.fs0{font-size:390.000000px;}
.y0{bottom:0.000000px;}
.y13{bottom:15.388221px;}
.y11{bottom:34.025985px;}
.y5{bottom:66.407378px;}
.y4c{bottom:115.643599px;}
.y8b{bottom:120.589032px;}
.y3f{bottom:121.788761px;}
.y5d{bottom:129.406776px;}
.y53{bottom:133.759823px;}
.y7f{bottom:142.368290px;}
.y21{bottom:147.489065px;}
.y3e{bottom:154.908717px;}
.y29{bottom:155.719914px;}
.y4b{bottom:157.043600px;}
.y8a{bottom:158.389033px;}
.ya8{bottom:163.070025px;}
.y5c{bottom:177.016755px;}
.y95{bottom:185.040801px;}
.y52{bottom:185.509825px;}
.y7e{bottom:187.908286px;}
.y3d{bottom:188.028718px;}
.y20{bottom:188.889066px;}
.y89{bottom:196.189057px;}
.y4a{bottom:198.443568px;}
.y6c{bottom:200.056801px;}
.yc{bottom:205.102574px;}
.y28{bottom:213.679905px;}
.ya7{bottom:220.578283px;}
.y4{bottom:229.765290px;}
.y94{bottom:230.580803px;}
.y6b{bottom:232.456791px;}
.y7d{bottom:233.448282px;}
.y51{bottom:237.259827px;}
.y3c{bottom:239.148720px;}
.y49{bottom:239.843558px;}
.y5b{bottom:243.256757px;}
.y1f{bottom:248.289035px;}
.y88{bottom:248.989077px;}
.yb{bottom:250.342576px;}
.y6a{bottom:264.856781px;}
.y27{bottom:271.639895px;}
.y93{bottom:276.120770px;}
.y7c{bottom:278.988283px;}
.y48{bottom:281.243548px;}
.y9d{bottom:284.580726px;}
.y87{bottom:286.789090px;}
.y50{bottom:289.009828px;}
.ya6{bottom:289.514978px;}
.y1e{bottom:289.689025px;}
.y3b{bottom:290.268733px;}
.ya{bottom:295.582574px;}
.y69{bottom:297.256759px;}
.y2f{bottom:307.009829px;}
.y5a{bottom:310.936760px;}
.y92{bottom:321.660749px;}
.y3a{bottom:323.388734px;}
.y86{bottom:324.589091px;}
.y3{bottom:327.156093px;}
.y26{bottom:329.599886px;}
.y68{bottom:329.656760px;}
.y9c{bottom:330.120693px;}
.y47{bottom:340.643539px;}
.y4f{bottom:340.759830px;}
.y9{bottom:346.258763px;}
.ya4{bottom:348.686937px;}
.y1d{bottom:349.089015px;}
.y2e{bottom:358.759831px;}
.y59{bottom:360.616761px;}
.y67{bottom:362.056739px;}
.y85{bottom:362.389103px;}
.y7b{bottom:364.676464px;}
.y91{bottom:367.200728px;}
.ya0{bottom:372.664842px;}
.y39{bottom:374.508735px;}
.y9b{bottom:375.660717px;}
.y2{bottom:378.317720px;}
.y74{bottom:379.669115px;}
.y46{bottom:382.043518px;}
.y25{bottom:387.559876px;}
.y1c{bottom:390.489005px;}
.y4e{bottom:392.509832px;}
.y66{bottom:394.456762px;}
.ya3{bottom:407.186939px;}
.y7a{bottom:410.216466px;}
.y2d{bottom:410.509832px;}
.ya5{bottom:410.593809px;}
.y9a{bottom:421.200719px;}
.y73{bottom:422.869116px;}
.y38{bottom:425.628759px;}
.y65{bottom:426.856763px;}
.y58{bottom:428.296775px;}
.y90{bottom:430.740708px;}
.y1b{bottom:431.888984px;}
.y8{bottom:433.738754px;}
.y84{bottom:437.989117px;}
.y45{bottom:441.443508px;}
.y9f{bottom:443.944822px;}
.y24{bottom:445.519867px;}
.y16{bottom:450.949106px;}
.y79{bottom:455.756456px;}
.y37{bottom:458.748761px;}
.y64{bottom:459.256764px;}
.y2c{bottom:462.259834px;}
.ya2{bottom:465.686941px;}
.y72{bottom:466.069118px;}
.y99{bottom:466.740709px;}
.y1a{bottom:473.288974px;}
.yf{bottom:475.600821px;}
.y83{bottom:475.789118px;}
.y57{bottom:477.976788px;}
.y44{bottom:482.843498px;}
.y63{bottom:491.656765px;}
.y8f{bottom:494.280710px;}
.y78{bottom:501.296458px;}
.y71{bottom:507.109115px;}
.y15{bottom:508.549113px;}
.y36{bottom:509.868773px;}
.y98{bottom:512.280710px;}
.y1{bottom:513.099553px;}
.y82{bottom:513.589126px;}
.y2b{bottom:514.009836px;}
.y9e{bottom:515.224813px;}
.ya1{bottom:521.011245px;}
.y7{bottom:521.218768px;}
.y23{bottom:521.479853px;}
.y62{bottom:524.056766px;}
.y43{bottom:524.243511px;}
.y56{bottom:527.656767px;}
.y4d{bottom:532.009836px;}
.ye{bottom:535.960817px;}
.y8e{bottom:539.820700px;}
.y70{bottom:541.669120px;}
.y77{bottom:546.836448px;}
.y81{bottom:551.389125px;}
.y61{bottom:556.456756px;}
.y97{bottom:557.820706px;}
.y35{bottom:560.988775px;}
.y42{bottom:565.643508px;}
.y55{bottom:577.336768px;}
.y22{bottom:579.439842px;}
.y2a{bottom:583.759838px;}
.y6f{bottom:584.869122px;}
.y8d{bottom:585.360702px;}
.y60{bottom:588.856757px;}
.y80{bottom:589.189125px;}
.y19{bottom:592.088978px;}
.y14{bottom:593.509122px;}
.y34{bottom:594.108776px;}
.y96{bottom:603.360702px;}
.y6{bottom:608.698762px;}
.y76{bottom:610.376450px;}
.yd{bottom:615.877408px;}
.y5f{bottom:621.256765px;}
.y41{bottom:625.043503px;}
.y33{bottom:627.228777px;}
.y18{bottom:633.488975px;}
.y54{bottom:645.016770px;}
.y8c{bottom:648.900704px;}
.y5e{bottom:653.656771px;}
.y75{bottom:655.916451px;}
.y17{bottom:674.888969px;}
.y32{bottom:678.348779px;}
.y31{bottom:698.010131px;}
.y6e{bottom:723.469928px;}
.y6d{bottom:725.220913px;}
.y10{bottom:728.292533px;}
.y12{bottom:730.086129px;}
.y40{bottom:731.063934px;}
.y30{bottom:762.162127px;}
.h1b{height:61.195312px;}
.ha{height:71.982424px;}
.h10{height:73.453130px;}
.h19{height:76.546880px;}
.hb{height:78.679690px;}
.h4{height:81.331055px;}
.h14{height:82.634768px;}
.h17{height:91.792972px;}
.hd{height:91.816407px;}
.h18{height:96.407230px;}
.h16{height:100.998052px;}
.h15{height:104.906253px;}
.h13{height:105.588868px;}
.h12{height:110.179691px;}
.hf{height:114.770507px;}
.h6{height:114.820316px;}
.h3{height:117.053320px;}
.he{height:128.542968px;}
.h8{height:133.957031px;}
.hc{height:139.875009px;}
.h2{height:151.090368px;}
.h11{height:179.837331px;}
.h9{height:189.453522px;}
.h1a{height:191.367189px;}
.h7{height:210.503918px;}
.h5{height:258.345711px;}
.h1{height:310.971680px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2b{left:49.443898px;}
.x1a{left:59.413835px;}
.x19{left:64.263782px;}
.x1{left:70.656143px;}
.x7{left:87.142802px;}
.x2f{left:91.987203px;}
.x2d{left:94.459127px;}
.x23{left:103.605095px;}
.x24{left:105.609002px;}
.x22{left:118.621209px;}
.x2e{left:125.737204px;}
.x1c{left:127.638787px;}
.x20{left:132.894647px;}
.x13{left:136.437991px;}
.x14{left:138.073357px;}
.x10{left:140.450794px;}
.x11{left:149.337754px;}
.x1d{left:181.638789px;}
.x30{left:186.649611px;}
.x15{left:190.437992px;}
.x12{left:194.450795px;}
.x5{left:217.781563px;}
.xc{left:223.653551px;}
.x28{left:229.050035px;}
.xd{left:238.176893px;}
.x31{left:240.649613px;}
.x35{left:255.579938px;}
.x29{left:264.153552px;}
.x4{left:267.635332px;}
.x25{left:298.825885px;}
.x26{left:304.072941px;}
.x34{left:315.562814px;}
.x2{left:381.879935px;}
.x2c{left:407.421627px;}
.x21{left:417.281994px;}
.x17{left:418.964278px;}
.xe{left:474.122591px;}
.x3{left:496.258638px;}
.x6{left:551.906573px;}
.x1e{left:592.716360px;}
.x16{left:622.559619px;}
.x33{left:707.390966px;}
.x27{left:750.024103px;}
.x2a{left:762.785338px;}
.xf{left:806.636512px;}
.x1f{left:827.576048px;}
.x36{left:831.281157px;}
.x32{left:860.638505px;}
.x8{left:953.428339px;}
.x18{left:1059.187478px;}
.xa{left:1075.747703px;}
.x1b{left:1395.363979px;}
.xb{left:1402.206264px;}
.x9{left:1403.991022px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:80.012503pt;}
.ls1{letter-spacing:95.975258pt;}
.ls6{letter-spacing:95.987908pt;}
.ls3{letter-spacing:95.987973pt;}
.ls2{letter-spacing:95.988037pt;}
.ls4{letter-spacing:96.000503pt;}
.ws1{word-spacing:-69.984002pt;}
.ws7{word-spacing:-57.024003pt;}
.ws3{word-spacing:-51.321602pt;}
.ws2{word-spacing:-36.288000pt;}
.ws6{word-spacing:-31.024001pt;}
.ws5{word-spacing:-30.389335pt;}
.ws4{word-spacing:-26.592001pt;}
.ws8{word-spacing:-20.736001pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-15.835384pt;}
._9{margin-left:-12.058801pt;}
._4{margin-left:-10.368000pt;}
._c{margin-left:-9.386667pt;}
._d{margin-left:-8.448000pt;}
._b{margin-left:-7.168000pt;}
._5{margin-left:-5.472000pt;}
._e{margin-left:-4.458667pt;}
._2{margin-left:-3.200233pt;}
._8{margin-left:-2.304000pt;}
._0{margin-left:-1.347467pt;}
._3{width:1.179033pt;}
._7{width:2.912233pt;}
._1{width:3.873966pt;}
._f{width:5.945834pt;}
._6{width:7.520233pt;}
._10{width:72.010938pt;}
.fs13{font-size:74.666666pt;}
.fsd{font-size:85.333339pt;}
.fs3{font-size:90.666667pt;}
.fs9{font-size:96.000003pt;}
.fsb{font-size:106.666667pt;}
.fs11{font-size:112.000004pt;}
.fs10{font-size:117.333340pt;}
.fsf{font-size:122.666668pt;}
.fs5{font-size:128.000004pt;}
.fs2{font-size:130.489324pt;}
.fsc{font-size:133.333332pt;}
.fs7{font-size:149.333333pt;}
.fs1{font-size:168.433325pt;}
.fsa{font-size:170.666677pt;}
.fse{font-size:200.480018pt;}
.fs8{font-size:211.200007pt;}
.fs12{font-size:213.333335pt;}
.fs6{font-size:234.666680pt;}
.fs4{font-size:288.000009pt;}
.fs0{font-size:346.666667pt;}
.y0{bottom:0.000000pt;}
.y13{bottom:13.678418pt;}
.y11{bottom:30.245320pt;}
.y5{bottom:59.028781pt;}
.y4c{bottom:102.794310pt;}
.y8b{bottom:107.190250pt;}
.y3f{bottom:108.256676pt;}
.y5d{bottom:115.028246pt;}
.y53{bottom:118.897621pt;}
.y7f{bottom:126.549591pt;}
.y21{bottom:131.101391pt;}
.y3e{bottom:137.696637pt;}
.y29{bottom:138.417701pt;}
.y4b{bottom:139.594311pt;}
.y8a{bottom:140.790251pt;}
.ya8{bottom:144.951134pt;}
.y5c{bottom:157.348227pt;}
.y95{bottom:164.480712pt;}
.y52{bottom:164.897622pt;}
.y7e{bottom:167.029587pt;}
.y3d{bottom:167.136638pt;}
.y20{bottom:167.901392pt;}
.y89{bottom:174.390273pt;}
.y4a{bottom:176.394283pt;}
.y6c{bottom:177.828268pt;}
.yc{bottom:182.313399pt;}
.y28{bottom:189.937693pt;}
.ya7{bottom:196.069585pt;}
.y4{bottom:204.235813pt;}
.y94{bottom:204.960714pt;}
.y6b{bottom:206.628259pt;}
.y7d{bottom:207.509584pt;}
.y51{bottom:210.897624pt;}
.y3c{bottom:212.576640pt;}
.y49{bottom:213.194274pt;}
.y5b{bottom:216.228229pt;}
.y1f{bottom:220.701364pt;}
.y88{bottom:221.323624pt;}
.yb{bottom:222.526734pt;}
.y6a{bottom:235.428249pt;}
.y27{bottom:241.457685pt;}
.y93{bottom:245.440685pt;}
.y7c{bottom:247.989585pt;}
.y48{bottom:249.994265pt;}
.y9d{bottom:252.960645pt;}
.y87{bottom:254.923635pt;}
.y50{bottom:256.897625pt;}
.ya6{bottom:257.346647pt;}
.y1e{bottom:257.501355pt;}
.y3b{bottom:258.016651pt;}
.ya{bottom:262.740065pt;}
.y69{bottom:264.228230pt;}
.y2f{bottom:272.897626pt;}
.y5a{bottom:276.388231pt;}
.y92{bottom:285.920666pt;}
.y3a{bottom:287.456652pt;}
.y86{bottom:288.523636pt;}
.y3{bottom:290.805416pt;}
.y26{bottom:292.977676pt;}
.y68{bottom:293.028231pt;}
.y9c{bottom:293.440616pt;}
.y47{bottom:302.794257pt;}
.y4f{bottom:302.897627pt;}
.y9{bottom:307.785567pt;}
.ya4{bottom:309.943944pt;}
.y1d{bottom:310.301347pt;}
.y2e{bottom:318.897627pt;}
.y59{bottom:320.548232pt;}
.y67{bottom:321.828212pt;}
.y85{bottom:322.123647pt;}
.y7b{bottom:324.156857pt;}
.y91{bottom:326.400647pt;}
.ya0{bottom:331.257638pt;}
.y39{bottom:332.896654pt;}
.y9b{bottom:333.920638pt;}
.y2{bottom:336.282418pt;}
.y74{bottom:337.483658pt;}
.y46{bottom:339.594238pt;}
.y25{bottom:344.497668pt;}
.y1c{bottom:347.101338pt;}
.y4e{bottom:348.897628pt;}
.y66{bottom:350.628233pt;}
.ya3{bottom:361.943946pt;}
.y7a{bottom:364.636859pt;}
.y2d{bottom:364.897629pt;}
.ya5{bottom:364.972275pt;}
.y9a{bottom:374.400639pt;}
.y73{bottom:375.883659pt;}
.y38{bottom:378.336675pt;}
.y65{bottom:379.428234pt;}
.y58{bottom:380.708244pt;}
.y90{bottom:382.880629pt;}
.y1b{bottom:383.901319pt;}
.y8{bottom:385.545559pt;}
.y84{bottom:389.323659pt;}
.y45{bottom:392.394230pt;}
.y9f{bottom:394.617620pt;}
.y24{bottom:396.017660pt;}
.y16{bottom:400.843650pt;}
.y79{bottom:405.116850pt;}
.y37{bottom:407.776676pt;}
.y64{bottom:408.228235pt;}
.y2c{bottom:410.897630pt;}
.ya2{bottom:413.943947pt;}
.y72{bottom:414.283660pt;}
.y99{bottom:414.880630pt;}
.y1a{bottom:420.701310pt;}
.yf{bottom:422.756285pt;}
.y83{bottom:422.923660pt;}
.y57{bottom:424.868256pt;}
.y44{bottom:429.194221pt;}
.y63{bottom:437.028236pt;}
.y8f{bottom:439.360631pt;}
.y78{bottom:445.596851pt;}
.y71{bottom:450.763657pt;}
.y15{bottom:452.043656pt;}
.y36{bottom:453.216687pt;}
.y98{bottom:455.360632pt;}
.y1{bottom:456.088492pt;}
.y82{bottom:456.523668pt;}
.y2b{bottom:456.897632pt;}
.y9e{bottom:457.977612pt;}
.ya1{bottom:463.121107pt;}
.y7{bottom:463.305572pt;}
.y23{bottom:463.537647pt;}
.y62{bottom:465.828237pt;}
.y43{bottom:465.994232pt;}
.y56{bottom:469.028237pt;}
.y4d{bottom:472.897632pt;}
.ye{bottom:476.409615pt;}
.y8e{bottom:479.840622pt;}
.y70{bottom:481.483662pt;}
.y77{bottom:486.076843pt;}
.y81{bottom:490.123667pt;}
.y61{bottom:494.628228pt;}
.y97{bottom:495.840628pt;}
.y35{bottom:498.656689pt;}
.y42{bottom:502.794229pt;}
.y55{bottom:513.188238pt;}
.y22{bottom:515.057637pt;}
.y2a{bottom:518.897634pt;}
.y6f{bottom:519.883664pt;}
.y8d{bottom:520.320624pt;}
.y60{bottom:523.428229pt;}
.y80{bottom:523.723667pt;}
.y19{bottom:526.301314pt;}
.y14{bottom:527.563664pt;}
.y34{bottom:528.096690pt;}
.y96{bottom:536.320624pt;}
.y6{bottom:541.065566pt;}
.y76{bottom:542.556844pt;}
.yd{bottom:547.446584pt;}
.y5f{bottom:552.228236pt;}
.y41{bottom:555.594225pt;}
.y33{bottom:557.536691pt;}
.y18{bottom:563.101311pt;}
.y54{bottom:573.348240pt;}
.y8c{bottom:576.800625pt;}
.y5e{bottom:581.028241pt;}
.y75{bottom:583.036846pt;}
.y17{bottom:599.901306pt;}
.y32{bottom:602.976692pt;}
.y31{bottom:620.453450pt;}
.y6e{bottom:643.084381pt;}
.y6d{bottom:644.640812pt;}
.y10{bottom:647.371141pt;}
.y12{bottom:648.965448pt;}
.y40{bottom:649.834608pt;}
.y30{bottom:677.477446pt;}
.h1b{height:54.395833pt;}
.ha{height:63.984377pt;}
.h10{height:65.291671pt;}
.h19{height:68.041671pt;}
.hb{height:69.937502pt;}
.h4{height:72.294271pt;}
.h14{height:73.453127pt;}
.h17{height:81.593753pt;}
.hd{height:81.614584pt;}
.h18{height:85.695315pt;}
.h16{height:89.776047pt;}
.h15{height:93.250003pt;}
.h13{height:93.856772pt;}
.h12{height:97.937503pt;}
.hf{height:102.018228pt;}
.h6{height:102.062503pt;}
.h3{height:104.047396pt;}
.he{height:114.260416pt;}
.h8{height:119.072916pt;}
.hc{height:124.333341pt;}
.h2{height:134.302549pt;}
.h11{height:159.855405pt;}
.h9{height:168.403130pt;}
.h1a{height:170.104168pt;}
.h7{height:187.114594pt;}
.h5{height:229.640632pt;}
.h1{height:276.419271pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:43.950131pt;}
.x1a{left:52.812298pt;}
.x19{left:57.123362pt;}
.x1{left:62.805460pt;}
.x7{left:77.460268pt;}
.x2f{left:81.766403pt;}
.x2d{left:83.963669pt;}
.x23{left:92.093418pt;}
.x24{left:93.874668pt;}
.x22{left:105.441074pt;}
.x2e{left:111.766404pt;}
.x1c{left:113.456700pt;}
.x20{left:118.128575pt;}
.x13{left:121.278214pt;}
.x14{left:122.731873pt;}
.x10{left:124.845150pt;}
.x11{left:132.744670pt;}
.x1d{left:161.456701pt;}
.x30{left:165.910765pt;}
.x15{left:169.278215pt;}
.x12{left:172.845152pt;}
.x5{left:193.583611pt;}
.xc{left:198.803156pt;}
.x28{left:203.600032pt;}
.xd{left:211.712794pt;}
.x31{left:213.910767pt;}
.x35{left:227.182167pt;}
.x29{left:234.803158pt;}
.x4{left:237.898073pt;}
.x25{left:265.623008pt;}
.x26{left:270.287059pt;}
.x34{left:280.500279pt;}
.x2{left:339.448831pt;}
.x2c{left:362.152558pt;}
.x21{left:370.917328pt;}
.x17{left:372.412692pt;}
.xe{left:421.442303pt;}
.x3{left:441.118789pt;}
.x6{left:490.583621pt;}
.x1e{left:526.858987pt;}
.x16{left:553.386328pt;}
.x33{left:628.791970pt;}
.x27{left:666.688091pt;}
.x2a{left:678.031412pt;}
.xf{left:717.010233pt;}
.x1f{left:735.623154pt;}
.x36{left:738.916584pt;}
.x32{left:765.012004pt;}
.x8{left:847.491857pt;}
.x18{left:941.499980pt;}
.xa{left:956.220181pt;}
.x1b{left:1240.323537pt;}
.xb{left:1246.405568pt;}
.x9{left:1247.992020pt;}
}




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