
    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_e726c610d300663b91a9b615.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_51b0281aa11c97389156e28b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_8d00d14b3256b8868631fd88.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f60aa7a97712205420596e18.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994000;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_789e06d278ed5be832b511b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_5c6936c362d0b2df026153c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_59c6e4998b066a5210e6c8b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d7a17c888f58f477e0d8e129.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c61e3e3a24b4848a7c8d30c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7b88e236203c812bcda19a4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.004000;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;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.880166px;}
.ws0{word-spacing:-18.984000px;}
.ws5{word-spacing:-15.757321px;}
.ws4{word-spacing:-14.262627px;}
.ws2{word-spacing:-13.335936px;}
.ws1{word-spacing:0.000000px;}
._e{margin-left:-9.004230px;}
._2{margin-left:-7.353600px;}
._f{margin-left:-5.327873px;}
._3{margin-left:-4.284000px;}
._8{margin-left:-3.128222px;}
._1{margin-left:-1.996800px;}
._7{width:1.328703px;}
._4{width:2.501400px;}
._6{width:3.511284px;}
._b{width:4.569478px;}
._0{width:5.587200px;}
._5{width:6.719385px;}
._d{width:8.331596px;}
._c{width:9.350131px;}
._9{width:68.274342px;}
._a{width:71.852552px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:47.999996px;}
.fs4{font-size:49.523009px;}
.fs8{font-size:57.626775px;}
.fs7{font-size:58.527192px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.033467px;}
.fs1{font-size:84.000000px;}
.fsc{font-size:84.234131px;}
.fs6{font-size:85.539742px;}
.fsa{font-size:90.041834px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:103.548109px;}
.fsb{font-size:121.556476px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.000001px;}
.y1e{bottom:3.000037px;}
.yc{bottom:8.040000px;}
.y94{bottom:19.133894px;}
.y1d{bottom:22.380034px;}
.y53{bottom:34.891212px;}
.y54{bottom:42.082942px;}
.y1f{bottom:42.083005px;}
.y32{bottom:42.083030px;}
.y74{bottom:42.083118px;}
.y93{bottom:47.271967px;}
.y52{bottom:64.154808px;}
.y73{bottom:74.284521px;}
.y92{bottom:76.535563px;}
.ya7{bottom:79.912123px;}
.y31{bottom:84.414211px;}
.y19{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y72{bottom:102.422595px;}
.y91{bottom:104.673636px;}
.y51{bottom:110.301248px;}
.y30{bottom:112.552284px;}
.y18{bottom:113.670000px;}
.y71{bottom:130.560668px;}
.ya6{bottom:131.686178px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.y2f{bottom:140.690357px;}
.y90{bottom:151.945599px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y70{bottom:159.824264px;}
.y2e{bottom:169.953953px;}
.y50{bottom:174.456055px;}
.y8f{bottom:180.083672px;}
.ya5{bottom:183.460232px;}
.y6f{bottom:187.962337px;}
.y2d{bottom:198.092026px;}
.y4f{bottom:202.594128px;}
.ya4{bottom:208.221736px;}
.y8e{bottom:208.221745px;}
.y6e{bottom:216.100410px;}
.y4e{bottom:230.732201px;}
.y8d{bottom:237.485341px;}
.y2c{bottom:245.363989px;}
.y4d{bottom:258.870274px;}
.y6d{bottom:263.372373px;}
.y2b{bottom:273.502062px;}
.y8c{bottom:283.631781px;}
.y4c{bottom:288.133870px;}
.y6c{bottom:292.635969px;}
.y2a{bottom:301.640135px;}
.ya3{bottom:310.644323px;}
.y4b{bottom:316.271943px;}
.y6b{bottom:320.774042px;}
.ya2{bottom:336.531350px;}
.ya{bottom:344.680500px;}
.y8b{bottom:347.786588px;}
.y6a{bottom:348.912115px;}
.ya1{bottom:362.418377px;}
.y4a{bottom:363.543906px;}
.y29{bottom:366.920465px;}
.y8a{bottom:375.924661px;}
.y69{bottom:377.050188px;}
.yd{bottom:386.490000px;}
.y28{bottom:388.305400px;}
.ya0{bottom:388.305404px;}
.y49{bottom:391.681979px;}
.y9{bottom:395.689500px;}
.y68{bottom:406.313784px;}
.y48{bottom:419.820052px;}
.y89{bottom:423.196624px;}
.yb{bottom:434.850000px;}
.y9f{bottom:445.707074px;}
.y8{bottom:446.698500px;}
.y47{bottom:449.083648px;}
.y88{bottom:451.334697px;}
.y67{bottom:453.585747px;}
.y87{bottom:479.472770px;}
.y66{bottom:481.723820px;}
.y11{bottom:488.055000px;}
.y46{bottom:495.230088px;}
.y7{bottom:497.707500px;}
.y86{bottom:508.736366px;}
.y65{bottom:527.870260px;}
.y85{bottom:536.874439px;}
.y12{bottom:538.230000px;}
.y6{bottom:548.716500px;}
.y45{bottom:559.384895px;}
.y84{bottom:584.146402px;}
.y44{bottom:587.522968px;}
.y1a{bottom:589.605000px;}
.y64{bottom:592.025067px;}
.y5{bottom:599.725500px;}
.y83{bottom:612.284475px;}
.y43{bottom:615.661041px;}
.y63{bottom:620.163140px;}
.yaa{bottom:630.292825px;}
.ye{bottom:631.920000px;}
.y9e{bottom:639.297017px;}
.y82{bottom:640.422548px;}
.y42{bottom:643.799114px;}
.y62{bottom:648.301213px;}
.y9d{bottom:664.058521px;}
.y81{bottom:669.686144px;}
.y9c{bottom:689.945548px;}
.y41{bottom:691.071077px;}
.y61{bottom:695.573176px;}
.y40{bottom:720.334673px;}
.y60{bottom:724.836772px;}
.y9b{bottom:747.347218px;}
.y3f{bottom:748.472746px;}
.y80{bottom:748.472749px;}
.y5f{bottom:752.974845px;}
.y3e{bottom:776.610820px;}
.y4{bottom:778.225500px;}
.y5e{bottom:781.112918px;}
.y7f{bottom:783.363960px;}
.ya9{bottom:788.991557px;}
.y3d{bottom:804.748893px;}
.y27{bottom:810.376497px;}
.y13{bottom:815.670000px;}
.y7e{bottom:818.255171px;}
.ya8{bottom:822.757245px;}
.y5d{bottom:828.384881px;}
.y26{bottom:848.644277px;}
.y3c{bottom:852.020856px;}
.y5c{bottom:856.522954px;}
.y25{bottom:873.405781px;}
.y3b{bottom:881.284452px;}
.y5b{bottom:885.786550px;}
.y7d{bottom:892.539684px;}
.y24{bottom:897.041763px;}
.y3{bottom:905.716500px;}
.y3a{bottom:909.422525px;}
.y5a{bottom:913.924624px;}
.y23{bottom:921.803267px;}
.y7c{bottom:921.803280px;}
.y39{bottom:937.560598px;}
.y7b{bottom:949.941353px;}
.y22{bottom:954.443432px;}
.y2{bottom:964.228500px;}
.y7a{bottom:978.079426px;}
.y38{bottom:983.707038px;}
.y21{bottom:984.832551px;}
.y1{bottom:989.716500px;}
.y59{bottom:992.711228px;}
.y9a{bottom:998.338830px;}
.y37{bottom:1009.594065px;}
.y20{bottom:1020.849284px;}
.yad{bottom:1024.225848px;}
.y79{bottom:1025.351389px;}
.y99{bottom:1026.476903px;}
.y58{bottom:1027.602439px;}
.yac{bottom:1043.359738px;}
.y78{bottom:1053.489462px;}
.y98{bottom:1073.748866px;}
.y36{bottom:1073.748872px;}
.y77{bottom:1082.753058px;}
.y97{bottom:1101.886939px;}
.y35{bottom:1101.886945px;}
.y57{bottom:1101.886952px;}
.yab{bottom:1105.263499px;}
.y76{bottom:1110.891131px;}
.y96{bottom:1131.150535px;}
.y34{bottom:1131.150541px;}
.y56{bottom:1131.150548px;}
.y75{bottom:1157.037571px;}
.y95{bottom:1159.288608px;}
.y33{bottom:1159.288614px;}
.y55{bottom:1159.288621px;}
.y1b{bottom:1226.879972px;}
.hc{height:13.499999px;}
.ha{height:13.500001px;}
.h4{height:33.000000px;}
.hb{height:34.945310px;}
.he{height:39.024131px;}
.h11{height:46.119427px;}
.h16{height:53.736967px;}
.h12{height:57.482707px;}
.h18{height:57.824866px;}
.h3{height:58.406250px;}
.h15{height:63.681003px;}
.h10{height:63.812648px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h13{height:68.071627px;}
.hf{height:78.282370px;}
.h17{height:84.513265px;}
.h14{height:90.681131px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.hd{height:1177.296971px;}
.h0{height:1262.835000px;}
.h9{height:1262.879970px;}
.h1{height:1263.000000px;}
.we{width:61.439987px;}
.wb{width:136.499992px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wc{width:755.939948px;}
.wf{width:806.999906px;}
.wd{width:830.999953px;}
.w9{width:892.439940px;}
.wa{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xe{left:5.109353px;}
.x11{left:22.862184px;}
.x10{left:28.138073px;}
.xa{left:39.679684px;}
.xf{left:43.499994px;}
.xc{left:76.289053px;}
.x12{left:81.600412px;}
.x1d{left:111.637805px;}
.x15{left:115.594722px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:136.499992px;}
.x14{left:138.333802px;}
.x19{left:141.868647px;}
.x1e{left:166.348771px;}
.x5{left:174.105000px;}
.x16{left:175.933302px;}
.x18{left:180.839879px;}
.x1c{left:183.284374px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x1b{left:209.101056px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x20{left:254.227491px;}
.x21{left:270.442055px;}
.x1f{left:317.766783px;}
.x17{left:329.039593px;}
.x13{left:337.428261px;}
.x1a{left:355.788354px;}
.xd{left:830.999953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-19.449036pt;}
.ws0{word-spacing:-16.874667pt;}
.ws5{word-spacing:-14.006508pt;}
.ws4{word-spacing:-12.677890pt;}
.ws2{word-spacing:-11.854166pt;}
.ws1{word-spacing:0.000000pt;}
._e{margin-left:-8.003760pt;}
._2{margin-left:-6.536533pt;}
._f{margin-left:-4.735887pt;}
._3{margin-left:-3.808000pt;}
._8{margin-left:-2.780642pt;}
._1{margin-left:-1.774933pt;}
._7{width:1.181069pt;}
._4{width:2.223466pt;}
._6{width:3.121142pt;}
._b{width:4.061758pt;}
._0{width:4.966400pt;}
._5{width:5.972786pt;}
._d{width:7.405863pt;}
._c{width:8.311227pt;}
._9{width:60.688304pt;}
._a{width:63.868935pt;}
.fs3{font-size:42.666663pt;}
.fs4{font-size:44.020452pt;}
.fs8{font-size:51.223800pt;}
.fs7{font-size:52.024171pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.029749pt;}
.fs1{font-size:74.666667pt;}
.fsc{font-size:74.874783pt;}
.fs6{font-size:76.035326pt;}
.fsa{font-size:80.037186pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:92.042764pt;}
.fsb{font-size:108.050201pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.666668pt;}
.y1e{bottom:2.666700pt;}
.yc{bottom:7.146667pt;}
.y94{bottom:17.007906pt;}
.y1d{bottom:19.893363pt;}
.y53{bottom:31.014411pt;}
.y54{bottom:37.407060pt;}
.y1f{bottom:37.407116pt;}
.y32{bottom:37.407138pt;}
.y74{bottom:37.407216pt;}
.y93{bottom:42.019526pt;}
.y52{bottom:57.026496pt;}
.y73{bottom:66.030686pt;}
.y92{bottom:68.031612pt;}
.ya7{bottom:71.032998pt;}
.y31{bottom:75.034854pt;}
.y19{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y72{bottom:91.042306pt;}
.y91{bottom:93.043232pt;}
.y51{bottom:98.045554pt;}
.y30{bottom:100.046474pt;}
.y18{bottom:101.040000pt;}
.y71{bottom:116.053927pt;}
.ya6{bottom:117.054380pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.y2f{bottom:125.058095pt;}
.y90{bottom:135.062755pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y70{bottom:142.066012pt;}
.y2e{bottom:151.070180pt;}
.y50{bottom:155.072049pt;}
.y8f{bottom:160.074375pt;}
.ya5{bottom:163.075762pt;}
.y6f{bottom:167.077633pt;}
.y2d{bottom:176.081801pt;}
.y4f{bottom:180.083669pt;}
.ya4{bottom:185.085988pt;}
.y8e{bottom:185.085996pt;}
.y6e{bottom:192.089253pt;}
.y4e{bottom:205.095290pt;}
.y8d{bottom:211.098081pt;}
.y2c{bottom:218.101324pt;}
.y4d{bottom:230.106910pt;}
.y6d{bottom:234.108776pt;}
.y2b{bottom:243.112944pt;}
.y8c{bottom:252.117139pt;}
.y4c{bottom:256.118996pt;}
.y6c{bottom:260.120861pt;}
.y2a{bottom:268.124565pt;}
.ya3{bottom:276.128287pt;}
.y4b{bottom:281.130616pt;}
.y6b{bottom:285.132482pt;}
.ya2{bottom:299.138978pt;}
.ya{bottom:306.382667pt;}
.y8b{bottom:309.143634pt;}
.y6a{bottom:310.144102pt;}
.ya1{bottom:322.149669pt;}
.y4a{bottom:323.150139pt;}
.y29{bottom:326.151524pt;}
.y8a{bottom:334.155254pt;}
.y69{bottom:335.155723pt;}
.yd{bottom:343.546667pt;}
.y28{bottom:345.160356pt;}
.ya0{bottom:345.160360pt;}
.y49{bottom:348.161759pt;}
.y9{bottom:351.724000pt;}
.y68{bottom:361.167808pt;}
.y48{bottom:373.173380pt;}
.y89{bottom:376.174777pt;}
.yb{bottom:386.533333pt;}
.y9f{bottom:396.184065pt;}
.y8{bottom:397.065333pt;}
.y47{bottom:399.185465pt;}
.y88{bottom:401.186397pt;}
.y67{bottom:403.187331pt;}
.y87{bottom:426.198018pt;}
.y66{bottom:428.198951pt;}
.y11{bottom:433.826667pt;}
.y46{bottom:440.204523pt;}
.y7{bottom:442.406667pt;}
.y86{bottom:452.210103pt;}
.y65{bottom:469.218009pt;}
.y85{bottom:477.221724pt;}
.y12{bottom:478.426667pt;}
.y6{bottom:487.748000pt;}
.y45{bottom:497.231018pt;}
.y84{bottom:519.241246pt;}
.y44{bottom:522.242638pt;}
.y1a{bottom:524.093333pt;}
.y64{bottom:526.244504pt;}
.y5{bottom:533.089333pt;}
.y83{bottom:544.252867pt;}
.y43{bottom:547.254259pt;}
.y63{bottom:551.256125pt;}
.yaa{bottom:560.260289pt;}
.ye{bottom:561.706667pt;}
.y9e{bottom:568.264015pt;}
.y82{bottom:569.264487pt;}
.y42{bottom:572.265880pt;}
.y62{bottom:576.267745pt;}
.y9d{bottom:590.274241pt;}
.y81{bottom:595.276573pt;}
.y9c{bottom:613.284932pt;}
.y41{bottom:614.285402pt;}
.y61{bottom:618.287268pt;}
.y40{bottom:640.297487pt;}
.y60{bottom:644.299353pt;}
.y9b{bottom:664.308638pt;}
.y3f{bottom:665.309108pt;}
.y80{bottom:665.309110pt;}
.y5f{bottom:669.310974pt;}
.y3e{bottom:690.320729pt;}
.y4{bottom:691.756000pt;}
.y5e{bottom:694.322594pt;}
.y7f{bottom:696.323520pt;}
.ya9{bottom:701.325829pt;}
.y3d{bottom:715.332349pt;}
.y27{bottom:720.334664pt;}
.y13{bottom:725.040000pt;}
.y7e{bottom:727.337929pt;}
.ya8{bottom:731.339773pt;}
.y5d{bottom:736.342117pt;}
.y26{bottom:754.350468pt;}
.y3c{bottom:757.351872pt;}
.y5c{bottom:761.353737pt;}
.y25{bottom:776.360694pt;}
.y3b{bottom:783.363957pt;}
.y5b{bottom:787.365823pt;}
.y7d{bottom:793.368608pt;}
.y24{bottom:797.370456pt;}
.y3{bottom:805.081333pt;}
.y3a{bottom:808.375578pt;}
.y5a{bottom:812.377443pt;}
.y23{bottom:819.380682pt;}
.y7c{bottom:819.380693pt;}
.y39{bottom:833.387198pt;}
.y7b{bottom:844.392314pt;}
.y22{bottom:848.394162pt;}
.y2{bottom:857.092000pt;}
.y7a{bottom:869.403934pt;}
.y38{bottom:874.406256pt;}
.y21{bottom:875.406712pt;}
.y1{bottom:879.748000pt;}
.y59{bottom:882.409981pt;}
.y9a{bottom:887.412293pt;}
.y37{bottom:897.416947pt;}
.y20{bottom:907.421586pt;}
.yad{bottom:910.422976pt;}
.y79{bottom:911.423457pt;}
.y99{bottom:912.423914pt;}
.y58{bottom:913.424390pt;}
.yac{bottom:927.430878pt;}
.y78{bottom:936.435077pt;}
.y98{bottom:954.443436pt;}
.y36{bottom:954.443442pt;}
.y77{bottom:962.447163pt;}
.y97{bottom:979.455057pt;}
.y35{bottom:979.455062pt;}
.y57{bottom:979.455069pt;}
.yab{bottom:982.456444pt;}
.y76{bottom:987.458783pt;}
.y96{bottom:1005.467142pt;}
.y34{bottom:1005.467148pt;}
.y56{bottom:1005.467154pt;}
.y75{bottom:1028.477841pt;}
.y95{bottom:1030.478763pt;}
.y33{bottom:1030.478768pt;}
.y55{bottom:1030.478774pt;}
.y1b{bottom:1090.559975pt;}
.hc{height:12.000000pt;}
.ha{height:12.000001pt;}
.h4{height:29.333333pt;}
.hb{height:31.062497pt;}
.he{height:34.688116pt;}
.h11{height:40.995047pt;}
.h16{height:47.766192pt;}
.h12{height:51.095739pt;}
.h18{height:51.399881pt;}
.h3{height:51.916667pt;}
.h15{height:56.605336pt;}
.h10{height:56.722354pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h13{height:60.508112pt;}
.hf{height:69.584329pt;}
.h17{height:75.122903pt;}
.h14{height:80.605450pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.hd{height:1046.486196pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.we{width:54.613321pt;}
.wb{width:121.333326pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wc{width:671.946621pt;}
.wf{width:717.333250pt;}
.wd{width:738.666625pt;}
.w9{width:793.279947pt;}
.wa{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xe{left:4.541647pt;}
.x11{left:20.321942pt;}
.x10{left:25.011621pt;}
.xa{left:35.270830pt;}
.xf{left:38.666661pt;}
.xc{left:67.812492pt;}
.x12{left:72.533700pt;}
.x1d{left:99.233605pt;}
.x15{left:102.750864pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:121.333326pt;}
.x14{left:122.963380pt;}
.x19{left:126.105464pt;}
.x1e{left:147.865574pt;}
.x5{left:154.760000pt;}
.x16{left:156.385158pt;}
.x18{left:160.746559pt;}
.x1c{left:162.919443pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x1b{left:185.867605pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x20{left:225.979992pt;}
.x21{left:240.392938pt;}
.x1f{left:282.459362pt;}
.x17{left:292.479638pt;}
.x13{left:299.936232pt;}
.x1a{left:316.256315pt;}
.xd{left:738.666625pt;}
}




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