
    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_6f95a687af0b7e437f8536c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_0b3830be98e8d44d7c24c574.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f59e3b285db7c8060627b378.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925293;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_8c98459c03c792466969cf7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_4e7e4b709d31bb6a682280e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_5acb9fbc374b1f646eb9bb8a.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.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);}
.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);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010641px;}
.ls8{letter-spacing:0.189257px;}
.ls3{letter-spacing:0.189300px;}
.ls2{letter-spacing:0.229200px;}
.ls4{letter-spacing:0.376140px;}
.ls5{letter-spacing:18.740393px;}
.ls7{letter-spacing:29.693317px;}
.ls6{letter-spacing:134.154907px;}
.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;}
}
.ws0{word-spacing:-15.839994px;}
.ws1{word-spacing:-14.939994px;}
.ws4{word-spacing:-13.147195px;}
.ws3{word-spacing:-10.612796px;}
.ws5{word-spacing:-9.719996px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.124344px;}
._2{width:1.086530px;}
._a{width:2.905045px;}
._9{width:4.674097px;}
._7{width:5.706409px;}
._b{width:7.168364px;}
._6{width:8.381597px;}
._f{width:9.923409px;}
._8{width:11.730532px;}
._4{width:13.070308px;}
._3{width:14.212759px;}
._10{width:17.137161px;}
._1f{width:18.141141px;}
._5{width:19.150618px;}
._e{width:21.053352px;}
._18{width:23.057321px;}
._1b{width:24.076856px;}
._d{width:25.397522px;}
._c{width:26.680074px;}
._13{width:28.139589px;}
._12{width:29.494620px;}
._11{width:30.627605px;}
._20{width:32.103411px;}
._15{width:33.938191px;}
._14{width:35.227698px;}
._19{width:36.385664px;}
._1a{width:37.395167px;}
._1c{width:41.076634px;}
._17{width:42.113044px;}
._16{width:43.343254px;}
._23{width:44.774855px;}
._1e{width:45.880958px;}
._1d{width:46.949421px;}
._21{width:62.374066px;}
._24{width:88.606045px;}
._22{width:2462.423015px;}
._0{width:2498.441001px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.879984px;}
.fs1{font-size:48.239981px;}
.fs3{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.320037px;}
.y2{bottom:53.400240px;}
.y1{bottom:57.720277px;}
.y3d{bottom:110.099956px;}
.y6f{bottom:110.100256px;}
.y81{bottom:116.940253px;}
.y96{bottom:126.659949px;}
.y9e{bottom:127.019949px;}
.y3c{bottom:127.379949px;}
.y6e{bottom:127.380249px;}
.y6d{bottom:134.220246px;}
.y3b{bottom:144.659942px;}
.y80{bottom:144.660242px;}
.y92{bottom:145.019942px;}
.y95{bottom:147.719941px;}
.y7f{bottom:151.499939px;}
.y3a{bottom:161.939935px;}
.y9d{bottom:162.119935px;}
.y91{bottom:162.299935px;}
.y9f{bottom:162.659935px;}
.y39{bottom:168.779932px;}
.y94{bottom:168.959932px;}
.y90{bottom:169.139932px;}
.y38{bottom:179.219928px;}
.y8a{bottom:179.939928px;}
.y9c{bottom:180.119928px;}
.y8f{bottom:180.299928px;}
.y7e{bottom:186.059926px;}
.y9b{bottom:186.959925px;}
.y93{bottom:190.019924px;}
.y7d{bottom:196.319921px;}
.y37{bottom:196.499921px;}
.y9a{bottom:197.759921px;}
.y6c{bottom:203.339919px;}
.y99{bottom:204.599918px;}
.y89{bottom:211.079916px;}
.y36{bottom:213.599915px;}
.y7c{bottom:214.319914px;}
.y85{bottom:214.499914px;}
.y98{bottom:215.759914px;}
.y7b{bottom:221.159912px;}
.y35{bottom:230.879908px;}
.y88{bottom:232.139907px;}
.y7a{bottom:232.679907px;}
.y34{bottom:237.719905px;}
.y33{bottom:248.159901px;}
.y79{bottom:253.379899px;}
.y84{bottom:257.879897px;}
.y32{bottom:265.439894px;}
.y6b{bottom:272.279891px;}
.y78{bottom:274.439890px;}
.y31{bottom:282.719887px;}
.y6a{bottom:283.439887px;}
.y77{bottom:295.499882px;}
.y30{bottom:299.819880px;}
.y69{bottom:303.419879px;}
.y2f{bottom:306.659877px;}
.y76{bottom:316.559873px;}
.y2e{bottom:317.819873px;}
.y68{bottom:320.519872px;}
.y67{bottom:327.359869px;}
.y75{bottom:337.799865px;}
.y66{bottom:338.519865px;}
.y2c{bottom:338.879864px;}
.y8d{bottom:342.299863px;}
.y2d{bottom:343.379863px;}
.y74{bottom:358.859856px;}
.y2b{bottom:360.119856px;}
.y87{bottom:363.359855px;}
.y73{bottom:379.919848px;}
.y2a{bottom:381.179848px;}
.y65{bottom:400.979840px;}
.y28{bottom:402.239839px;}
.y29{bottom:406.739837px;}
.y64{bottom:422.219831px;}
.y27{bottom:423.299831px;}
.y83{bottom:426.719829px;}
.y63{bottom:443.279823px;}
.y26{bottom:444.539822px;}
.y72{bottom:447.779821px;}
.y62{bottom:464.339814px;}
.y25{bottom:465.599814px;}
.y61{bottom:485.399806px;}
.y24{bottom:486.659805px;}
.y60{bottom:506.459797px;}
.y23{bottom:507.719797px;}
.y8e{bottom:510.959796px;}
.y5f{bottom:527.699789px;}
.y22{bottom:528.779788px;}
.y5e{bottom:548.759780px;}
.y21{bottom:550.019780px;}
.y5d{bottom:569.819772px;}
.y20{bottom:571.079772px;}
.y5b{bottom:590.879764px;}
.y1f{bottom:592.139763px;}
.y5c{bottom:595.379762px;}
.y5a{bottom:612.119755px;}
.y1e{bottom:613.199755px;}
.y59{bottom:633.179747px;}
.y1d{bottom:634.439746px;}
.y58{bottom:654.239738px;}
.y1c{bottom:655.499738px;}
.y56{bottom:675.299730px;}
.y1b{bottom:676.559729px;}
.y57{bottom:679.799728px;}
.y55{bottom:696.539721px;}
.y19{bottom:697.619721px;}
.y1a{bottom:702.119719px;}
.y54{bottom:717.599713px;}
.y18{bottom:718.859712px;}
.y53{bottom:738.659705px;}
.y17{bottom:739.919704px;}
.y52{bottom:759.719696px;}
.y16{bottom:760.979696px;}
.y51{bottom:780.959688px;}
.y15{bottom:782.039687px;}
.y86{bottom:785.459686px;}
.y50{bottom:802.019679px;}
.y14{bottom:803.279679px;}
.y4f{bottom:823.079671px;}
.y13{bottom:824.339670px;}
.y8c{bottom:827.579669px;}
.y4e{bottom:844.139662px;}
.y12{bottom:845.399662px;}
.y82{bottom:848.639661px;}
.y4c{bottom:865.379654px;}
.y11{bottom:866.459653px;}
.y4d{bottom:869.879652px;}
.y4b{bottom:886.439645px;}
.y10{bottom:887.519645px;}
.y4a{bottom:907.499637px;}
.yf{bottom:908.759636px;}
.y49{bottom:928.559629px;}
.ye{bottom:929.819628px;}
.y97{bottom:933.059627px;}
.y48{bottom:949.619620px;}
.yd{bottom:950.879620px;}
.y47{bottom:970.859612px;}
.yc{bottom:971.939611px;}
.y71{bottom:975.359610px;}
.y46{bottom:991.919603px;}
.yb{bottom:993.179603px;}
.y45{bottom:1012.979595px;}
.ya{bottom:1014.239594px;}
.y8b{bottom:1017.479593px;}
.y44{bottom:1034.039586px;}
.y9{bottom:1035.299586px;}
.y43{bottom:1055.279578px;}
.y8{bottom:1056.359577px;}
.y42{bottom:1076.339569px;}
.y7{bottom:1077.599569px;}
.y40{bottom:1097.399561px;}
.y6{bottom:1099.199560px;}
.y41{bottom:1101.899559px;}
.y3f{bottom:1118.459553px;}
.y5{bottom:1119.899552px;}
.y3e{bottom:1139.699544px;}
.y4{bottom:1140.599544px;}
.y70{bottom:1144.199542px;}
.h2{height:20.520000px;}
.h6{height:34.107174px;}
.h7{height:38.158578px;}
.h9{height:41.974436px;}
.hc{height:42.252171px;}
.ha{height:47.344903px;}
.h4{height:50.906230px;}
.h3{height:51.855448px;}
.hd{height:51.998182px;}
.h8{height:58.651148px;}
.h5{height:62.648412px;}
.h1{height:70.664034px;}
.hb{height:75.093720px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.619949px;}
.xf{left:133.379947px;}
.x25{left:137.339945px;}
.x3c{left:141.120821px;}
.x4{left:143.279943px;}
.x20{left:151.739939px;}
.x3{left:154.619899px;}
.x21{left:164.339934px;}
.x3b{left:168.119719px;}
.x3a{left:181.620472px;}
.x38{left:188.279925px;}
.x39{left:201.599919px;}
.x1a{left:212.219915px;}
.x5{left:214.739728px;}
.x1b{left:218.879912px;}
.xb{left:233.459907px;}
.xc{left:240.119904px;}
.x3d{left:249.659900px;}
.x3e{left:264.959894px;}
.x30{left:295.919882px;}
.x31{left:309.239876px;}
.x24{left:321.839871px;}
.x12{left:333.359867px;}
.x13{left:340.019864px;}
.x8{left:344.879453px;}
.x7{left:350.279458px;}
.x32{left:408.419837px;}
.x2c{left:419.579832px;}
.x33{left:421.739831px;}
.x1c{left:422.819831px;}
.x1d{left:429.479828px;}
.x2d{left:432.899827px;}
.x6{left:446.399375px;}
.x10{left:480.599808px;}
.x11{left:487.259805px;}
.x26{left:508.139797px;}
.x14{left:510.659796px;}
.x9{left:514.259794px;}
.x15{left:517.319793px;}
.xa{left:520.919792px;}
.x22{left:587.159765px;}
.x23{left:599.759760px;}
.x2b{left:627.659749px;}
.x18{left:640.979744px;}
.x19{left:645.479742px;}
.x41{left:650.879740px;}
.x16{left:663.479735px;}
.x29{left:669.599732px;}
.x17{left:676.259729px;}
.xd{left:678.059729px;}
.x1e{left:680.759728px;}
.x2a{left:682.919727px;}
.xe{left:684.719726px;}
.x2e{left:685.799726px;}
.x1f{left:694.079722px;}
.x2f{left:699.119720px;}
.x34{left:702.719719px;}
.x35{left:716.039714px;}
.x3f{left:723.419711px;}
.x40{left:736.739705px;}
.x27{left:745.559702px;}
.x36{left:748.439701px;}
.x28{left:758.879696px;}
.x37{left:761.759695px;}
.x2{left:765.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009459pt;}
.ls8{letter-spacing:0.168228pt;}
.ls3{letter-spacing:0.168267pt;}
.ls2{letter-spacing:0.203733pt;}
.ls4{letter-spacing:0.334347pt;}
.ls5{letter-spacing:16.658127pt;}
.ls7{letter-spacing:26.394059pt;}
.ls6{letter-spacing:119.248806pt;}
.ws0{word-spacing:-14.079994pt;}
.ws1{word-spacing:-13.279995pt;}
.ws4{word-spacing:-11.686395pt;}
.ws3{word-spacing:-9.433596pt;}
.ws5{word-spacing:-8.639997pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-0.999417pt;}
._2{width:0.965805pt;}
._a{width:2.582262pt;}
._9{width:4.154753pt;}
._7{width:5.072363pt;}
._b{width:6.371879pt;}
._6{width:7.450309pt;}
._f{width:8.820808pt;}
._8{width:10.427140pt;}
._4{width:11.618051pt;}
._3{width:12.633564pt;}
._10{width:15.233032pt;}
._1f{width:16.125459pt;}
._5{width:17.022771pt;}
._e{width:18.714090pt;}
._18{width:20.495397pt;}
._1b{width:21.401649pt;}
._d{width:22.575575pt;}
._c{width:23.715621pt;}
._13{width:25.012968pt;}
._12{width:26.217440pt;}
._11{width:27.224538pt;}
._20{width:28.536365pt;}
._15{width:30.167281pt;}
._14{width:31.313509pt;}
._19{width:32.342813pt;}
._1a{width:33.240148pt;}
._1c{width:36.512563pt;}
._17{width:37.433817pt;}
._16{width:38.527337pt;}
._23{width:39.799871pt;}
._1e{width:40.783074pt;}
._1d{width:41.732819pt;}
._21{width:55.443614pt;}
._24{width:78.760928pt;}
._22{width:2188.820458pt;}
._0{width:2220.836445pt;}
.fs2{font-size:34.559986pt;}
.fs1{font-size:42.879983pt;}
.fs3{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.840033pt;}
.y2{bottom:47.466880pt;}
.y1{bottom:51.306913pt;}
.y3d{bottom:97.866628pt;}
.y6f{bottom:97.866894pt;}
.y81{bottom:103.946892pt;}
.y96{bottom:112.586622pt;}
.y9e{bottom:112.906622pt;}
.y3c{bottom:113.226621pt;}
.y6e{bottom:113.226888pt;}
.y6d{bottom:119.306886pt;}
.y3b{bottom:128.586615pt;}
.y80{bottom:128.586882pt;}
.y92{bottom:128.906615pt;}
.y95{bottom:131.306614pt;}
.y7f{bottom:134.666613pt;}
.y3a{bottom:143.946609pt;}
.y9d{bottom:144.106609pt;}
.y91{bottom:144.266609pt;}
.y9f{bottom:144.586609pt;}
.y39{bottom:150.026607pt;}
.y94{bottom:150.186607pt;}
.y90{bottom:150.346607pt;}
.y38{bottom:159.306603pt;}
.y8a{bottom:159.946603pt;}
.y9c{bottom:160.106603pt;}
.y8f{bottom:160.266603pt;}
.y7e{bottom:165.386601pt;}
.y9b{bottom:166.186600pt;}
.y93{bottom:168.906599pt;}
.y7d{bottom:174.506597pt;}
.y37{bottom:174.666597pt;}
.y9a{bottom:175.786596pt;}
.y6c{bottom:180.746594pt;}
.y99{bottom:181.866594pt;}
.y89{bottom:187.626592pt;}
.y36{bottom:189.866591pt;}
.y7c{bottom:190.506590pt;}
.y85{bottom:190.666590pt;}
.y98{bottom:191.786590pt;}
.y7b{bottom:196.586588pt;}
.y35{bottom:205.226585pt;}
.y88{bottom:206.346584pt;}
.y7a{bottom:206.826584pt;}
.y34{bottom:211.306582pt;}
.y33{bottom:220.586578pt;}
.y79{bottom:225.226577pt;}
.y84{bottom:229.226575pt;}
.y32{bottom:235.946572pt;}
.y6b{bottom:242.026570pt;}
.y78{bottom:243.946569pt;}
.y31{bottom:251.306566pt;}
.y6a{bottom:251.946566pt;}
.y77{bottom:262.666562pt;}
.y30{bottom:266.506560pt;}
.y69{bottom:269.706559pt;}
.y2f{bottom:272.586558pt;}
.y76{bottom:281.386554pt;}
.y2e{bottom:282.506554pt;}
.y68{bottom:284.906553pt;}
.y67{bottom:290.986550pt;}
.y75{bottom:300.266547pt;}
.y66{bottom:300.906546pt;}
.y2c{bottom:301.226546pt;}
.y8d{bottom:304.266545pt;}
.y2d{bottom:305.226545pt;}
.y74{bottom:318.986539pt;}
.y2b{bottom:320.106539pt;}
.y87{bottom:322.986537pt;}
.y73{bottom:337.706532pt;}
.y2a{bottom:338.826531pt;}
.y65{bottom:356.426524pt;}
.y28{bottom:357.546524pt;}
.y29{bottom:361.546522pt;}
.y64{bottom:375.306517pt;}
.y27{bottom:376.266516pt;}
.y83{bottom:379.306515pt;}
.y63{bottom:394.026509pt;}
.y26{bottom:395.146509pt;}
.y72{bottom:398.026507pt;}
.y62{bottom:412.746502pt;}
.y25{bottom:413.866501pt;}
.y61{bottom:431.466494pt;}
.y24{bottom:432.586494pt;}
.y60{bottom:450.186487pt;}
.y23{bottom:451.306486pt;}
.y8e{bottom:454.186485pt;}
.y5f{bottom:469.066479pt;}
.y22{bottom:470.026479pt;}
.y5e{bottom:487.786472pt;}
.y21{bottom:488.906471pt;}
.y5d{bottom:506.506464pt;}
.y20{bottom:507.626464pt;}
.y5b{bottom:525.226457pt;}
.y1f{bottom:526.346456pt;}
.y5c{bottom:529.226455pt;}
.y5a{bottom:544.106449pt;}
.y1e{bottom:545.066449pt;}
.y59{bottom:562.826442pt;}
.y1d{bottom:563.946441pt;}
.y58{bottom:581.546434pt;}
.y1c{bottom:582.666434pt;}
.y56{bottom:600.266427pt;}
.y1b{bottom:601.386426pt;}
.y57{bottom:604.266425pt;}
.y55{bottom:619.146419pt;}
.y19{bottom:620.106419pt;}
.y1a{bottom:624.106417pt;}
.y54{bottom:637.866412pt;}
.y18{bottom:638.986411pt;}
.y53{bottom:656.586404pt;}
.y17{bottom:657.706404pt;}
.y52{bottom:675.306397pt;}
.y16{bottom:676.426396pt;}
.y51{bottom:694.186389pt;}
.y15{bottom:695.146389pt;}
.y86{bottom:698.186387pt;}
.y50{bottom:712.906382pt;}
.y14{bottom:714.026381pt;}
.y4f{bottom:731.626374pt;}
.y13{bottom:732.746374pt;}
.y8c{bottom:735.626372pt;}
.y4e{bottom:750.346367pt;}
.y12{bottom:751.466366pt;}
.y82{bottom:754.346365pt;}
.y4c{bottom:769.226359pt;}
.y11{bottom:770.186359pt;}
.y4d{bottom:773.226357pt;}
.y4b{bottom:787.946351pt;}
.y10{bottom:788.906351pt;}
.y4a{bottom:806.666344pt;}
.yf{bottom:807.786344pt;}
.y49{bottom:825.386337pt;}
.ye{bottom:826.506336pt;}
.y97{bottom:829.386335pt;}
.y48{bottom:844.106329pt;}
.yd{bottom:845.226329pt;}
.y47{bottom:862.986321pt;}
.yc{bottom:863.946321pt;}
.y71{bottom:866.986320pt;}
.y46{bottom:881.706314pt;}
.yb{bottom:882.826314pt;}
.y45{bottom:900.426306pt;}
.ya{bottom:901.546306pt;}
.y8b{bottom:904.426305pt;}
.y44{bottom:919.146299pt;}
.y9{bottom:920.266299pt;}
.y43{bottom:938.026291pt;}
.y8{bottom:938.986291pt;}
.y42{bottom:956.746284pt;}
.y7{bottom:957.866284pt;}
.y40{bottom:975.466276pt;}
.y6{bottom:977.066276pt;}
.y41{bottom:979.466275pt;}
.y3f{bottom:994.186269pt;}
.y5{bottom:995.466268pt;}
.y3e{bottom:1013.066261pt;}
.y4{bottom:1013.866261pt;}
.y70{bottom:1017.066260pt;}
.h2{height:18.240000pt;}
.h6{height:30.317488pt;}
.h7{height:33.918736pt;}
.h9{height:37.310610pt;}
.hc{height:37.557485pt;}
.ha{height:42.084358pt;}
.h4{height:45.249982pt;}
.h3{height:46.093732pt;}
.hd{height:46.220607pt;}
.h8{height:52.134354pt;}
.h5{height:55.687478pt;}
.h1{height:62.812475pt;}
.hb{height:66.749973pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.439955pt;}
.xf{left:118.559953pt;}
.x25{left:122.079951pt;}
.x3c{left:125.440730pt;}
.x4{left:127.359949pt;}
.x20{left:134.879946pt;}
.x3{left:137.439910pt;}
.x21{left:146.079942pt;}
.x3b{left:149.439750pt;}
.x3a{left:161.440420pt;}
.x38{left:167.359933pt;}
.x39{left:179.199928pt;}
.x1a{left:188.639925pt;}
.x5{left:190.879758pt;}
.x1b{left:194.559922pt;}
.xb{left:207.519917pt;}
.xc{left:213.439915pt;}
.x3d{left:221.919911pt;}
.x3e{left:235.519906pt;}
.x30{left:263.039895pt;}
.x31{left:274.879890pt;}
.x24{left:286.079886pt;}
.x12{left:296.319881pt;}
.x13{left:302.239879pt;}
.x8{left:306.559514pt;}
.x7{left:311.359518pt;}
.x32{left:363.039855pt;}
.x2c{left:372.959851pt;}
.x33{left:374.879850pt;}
.x1c{left:375.839850pt;}
.x1d{left:381.759847pt;}
.x2d{left:384.799846pt;}
.x6{left:396.799445pt;}
.x10{left:427.199829pt;}
.x11{left:433.119827pt;}
.x26{left:451.679819pt;}
.x14{left:453.919818pt;}
.x9{left:457.119817pt;}
.x15{left:459.839816pt;}
.xa{left:463.039815pt;}
.x22{left:521.919791pt;}
.x23{left:533.119787pt;}
.x2b{left:557.919777pt;}
.x18{left:569.759772pt;}
.x19{left:573.759770pt;}
.x41{left:578.559769pt;}
.x16{left:589.759764pt;}
.x29{left:595.199762pt;}
.x17{left:601.119760pt;}
.xd{left:602.719759pt;}
.x1e{left:605.119758pt;}
.x2a{left:607.039757pt;}
.xe{left:608.639757pt;}
.x2e{left:609.599756pt;}
.x1f{left:616.959753pt;}
.x2f{left:621.439751pt;}
.x34{left:624.639750pt;}
.x35{left:636.479745pt;}
.x3f{left:643.039743pt;}
.x40{left:654.879738pt;}
.x27{left:662.719735pt;}
.x36{left:665.279734pt;}
.x28{left:674.559730pt;}
.x37{left:677.119729pt;}
.x2{left:680.320000pt;}
}




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