
    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_2b814a2877e84c0f7c5694fd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_9d03a83772f0702a06b0c124.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d952380d349d51a203433126.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_818c90f562a216c7e21ef881.woff')format("woff");}.ff4{font-family:ff4;line-height:1.113281;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_9f526640dc343c8bd6225cf3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.072266;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_262d2006b72b3f42d804b57b.woff')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;}
.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);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600600px;}
.v3{vertical-align:33.120000px;}
.ls11{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.004800px;}
.ls15{letter-spacing:0.005400px;}
.ls14{letter-spacing:0.010800px;}
.ls6{letter-spacing:0.014400px;}
.ls8{letter-spacing:0.058320px;}
.ls0{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.240600px;}
.lsd{letter-spacing:0.242064px;}
.lsb{letter-spacing:0.253872px;}
.ls10{letter-spacing:0.283968px;}
.ls4{letter-spacing:0.359136px;}
.lsc{letter-spacing:0.419184px;}
.lsa{letter-spacing:0.478224px;}
.ls3{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.522600px;}
.lse{letter-spacing:0.578592px;}
.ls5{letter-spacing:0.600000px;}
.ls9{letter-spacing:0.702576px;}
.lsf{letter-spacing:0.879696px;}
.ls12{letter-spacing:198.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:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws2{word-spacing:-15.639696px;}
.ws0{word-spacing:-15.238224px;}
.ws1{word-spacing:-15.013872px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-5.349600px;}
._a{margin-left:-3.664800px;}
._8{margin-left:-2.284800px;}
._0{margin-left:-1.207440px;}
._1{width:1.180800px;}
._4{width:3.038400px;}
._7{width:4.075200px;}
._b{width:5.631600px;}
._c{width:6.934800px;}
._10{width:7.941600px;}
._5{width:9.022800px;}
._9{width:10.917600px;}
._16{width:12.268800px;}
._6{width:14.234400px;}
._d{width:15.480000px;}
._12{width:16.701840px;}
._2{width:19.260000px;}
._e{width:21.117600px;}
._15{width:22.331400px;}
._11{width:23.558400px;}
._21{width:25.077600px;}
._14{width:26.344800px;}
._f{width:27.928800px;}
._17{width:29.455200px;}
._18{width:31.543200px;}
._3{width:33.415200px;}
._1f{width:34.610400px;}
._1c{width:36.180000px;}
._1e{width:38.815200px;}
._13{width:42.580800px;}
._19{width:45.367200px;}
._20{width:50.169600px;}
._1d{width:59.112000px;}
._1b{width:108.000000px;}
._1a{width:198.000000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs1{font-size:38.880000px;}
.fs6{font-size:47.520000px;}
.fs2{font-size:59.040000px;}
.fs3{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:17.985900px;}
.yb{bottom:38.502885px;}
.ya{bottom:64.062975px;}
.y9{bottom:74.502885px;}
.yba{bottom:93.942885px;}
.y8{bottom:98.622975px;}
.y65{bottom:102.222885px;}
.y9b{bottom:102.942885px;}
.y9e{bottom:103.662885px;}
.y7{bottom:109.062885px;}
.yb9{bottom:114.822885px;}
.y9d{bottom:120.222885px;}
.y82{bottom:122.742885px;}
.y64{bottom:123.102885px;}
.y9a{bottom:123.822885px;}
.y6{bottom:133.182900px;}
.yb8{bottom:135.342900px;}
.y5{bottom:143.622900px;}
.y63{bottom:143.982900px;}
.y81{bottom:144.342900px;}
.y99{bottom:144.702900px;}
.yb7{bottom:156.222900px;}
.y62{bottom:164.502900px;}
.y80{bottom:165.222900px;}
.y4{bottom:167.742900px;}
.yb6{bottom:177.102900px;}
.y3{bottom:185.022900px;}
.y61{bottom:185.382900px;}
.y7f{bottom:186.102900px;}
.yb5{bottom:197.622900px;}
.yc4{bottom:205.902900px;}
.y60{bottom:206.262900px;}
.y7e{bottom:206.622900px;}
.y98{bottom:206.982900px;}
.y31{bottom:216.702900px;}
.yb4{bottom:218.502900px;}
.yc3{bottom:226.782900px;}
.y5f{bottom:227.142900px;}
.y7d{bottom:227.502900px;}
.y30{bottom:237.582900px;}
.yb3{bottom:239.382900px;}
.y5e{bottom:247.662900px;}
.y7c{bottom:248.382900px;}
.y2f{bottom:258.462900px;}
.yb2{bottom:260.262900px;}
.y5d{bottom:268.542900px;}
.y7b{bottom:268.902900px;}
.y97{bottom:269.262900px;}
.y2e{bottom:278.982900px;}
.yb1{bottom:280.782900px;}
.yc2{bottom:289.062900px;}
.y5c{bottom:289.422900px;}
.y7a{bottom:289.782900px;}
.y96{bottom:290.142900px;}
.y2d{bottom:299.862900px;}
.yb0{bottom:301.662900px;}
.yc1{bottom:309.942900px;}
.y5b{bottom:310.302900px;}
.y79{bottom:310.662900px;}
.y2c{bottom:320.742900px;}
.yaf{bottom:322.542900px;}
.y5a{bottom:330.822900px;}
.y78{bottom:331.542900px;}
.y2b{bottom:341.622900px;}
.yae{bottom:343.422900px;}
.yc0{bottom:350.622900px;}
.y59{bottom:351.702900px;}
.y77{bottom:352.062900px;}
.y95{bottom:352.422900px;}
.y2a{bottom:362.142900px;}
.yad{bottom:363.942900px;}
.ybf{bottom:371.502900px;}
.y58{bottom:372.582900px;}
.y76{bottom:372.942900px;}
.y94{bottom:373.302900px;}
.y29{bottom:383.022900px;}
.yac{bottom:384.822900px;}
.ybe{bottom:392.022900px;}
.y57{bottom:393.102900px;}
.y75{bottom:393.822900px;}
.y28{bottom:403.902900px;}
.yab{bottom:405.702900px;}
.ybd{bottom:412.902900px;}
.y56{bottom:413.982900px;}
.y74{bottom:414.702900px;}
.y27{bottom:424.782900px;}
.yaa{bottom:426.582900px;}
.ybc{bottom:434.142900px;}
.y55{bottom:434.862900px;}
.y73{bottom:435.222900px;}
.y93{bottom:435.582900px;}
.y26{bottom:445.302900px;}
.ya9{bottom:447.102900px;}
.ybb{bottom:455.382900px;}
.y54{bottom:455.742900px;}
.y72{bottom:456.102900px;}
.y92{bottom:456.462900px;}
.y25{bottom:466.182900px;}
.ya8{bottom:467.262900px;}
.y53{bottom:476.262900px;}
.y71{bottom:476.982900px;}
.ya7{bottom:483.822900px;}
.y24{bottom:487.062900px;}
.y52{bottom:497.142900px;}
.y70{bottom:497.862900px;}
.y23{bottom:507.582900px;}
.y51{bottom:518.022900px;}
.y6f{bottom:518.382900px;}
.y91{bottom:518.742900px;}
.y22{bottom:528.462900px;}
.y50{bottom:538.902900px;}
.y6e{bottom:539.262900px;}
.y90{bottom:539.622900px;}
.y21{bottom:549.342900px;}
.y4f{bottom:559.422900px;}
.y6d{bottom:560.142900px;}
.y20{bottom:570.222900px;}
.y4e{bottom:580.302900px;}
.y6c{bottom:581.022900px;}
.y1f{bottom:590.742900px;}
.y4d{bottom:601.182900px;}
.y6b{bottom:601.542900px;}
.y8f{bottom:601.902900px;}
.y1e{bottom:611.622900px;}
.y4c{bottom:622.062900px;}
.y6a{bottom:622.422900px;}
.y8e{bottom:622.782900px;}
.y1d{bottom:632.502900px;}
.y4b{bottom:642.582900px;}
.y69{bottom:643.302900px;}
.y1c{bottom:653.382900px;}
.y4a{bottom:663.462900px;}
.y68{bottom:664.182900px;}
.y1b{bottom:673.902900px;}
.y49{bottom:684.342900px;}
.y67{bottom:684.702900px;}
.y8d{bottom:685.062900px;}
.y1a{bottom:694.782900px;}
.y48{bottom:704.862900px;}
.y66{bottom:705.582900px;}
.y19{bottom:715.662900px;}
.y47{bottom:726.462900px;}
.y18{bottom:736.542900px;}
.y46{bottom:746.982900px;}
.y8c{bottom:747.342900px;}
.y17{bottom:757.062900px;}
.y45{bottom:767.862900px;}
.y8b{bottom:768.222900px;}
.y16{bottom:777.942900px;}
.y44{bottom:788.742900px;}
.y15{bottom:798.822900px;}
.y43{bottom:809.622900px;}
.y14{bottom:819.702900px;}
.y42{bottom:830.142900px;}
.y8a{bottom:830.502900px;}
.y13{bottom:840.222900px;}
.y41{bottom:851.022900px;}
.y89{bottom:851.382900px;}
.y12{bottom:861.822900px;}
.ya6{bottom:871.542900px;}
.y40{bottom:871.902900px;}
.y11{bottom:888.102900px;}
.ya5{bottom:892.422900px;}
.y3f{bottom:892.782900px;}
.y10{bottom:912.942900px;}
.y3e{bottom:913.302900px;}
.y88{bottom:913.662900px;}
.ya4{bottom:933.822900px;}
.y3d{bottom:934.182900px;}
.yf{bottom:934.542900px;}
.ya3{bottom:954.342900px;}
.y3c{bottom:955.062900px;}
.ye{bottom:958.662900px;}
.ya2{bottom:975.582900px;}
.y3b{bottom:975.942900px;}
.yd{bottom:982.782900px;}
.y3a{bottom:996.462900px;}
.y87{bottom:996.822900px;}
.yc{bottom:1007.262900px;}
.ya1{bottom:1016.982900px;}
.y39{bottom:1017.342900px;}
.y86{bottom:1017.702900px;}
.y2{bottom:1026.342900px;}
.ya0{bottom:1037.862900px;}
.y38{bottom:1038.222900px;}
.y9f{bottom:1058.382900px;}
.y37{bottom:1059.102900px;}
.yc6{bottom:1078.542900px;}
.y9c{bottom:1079.262900px;}
.y36{bottom:1079.622900px;}
.y85{bottom:1079.982900px;}
.yc5{bottom:1099.062900px;}
.y84{bottom:1099.782900px;}
.y35{bottom:1100.502900px;}
.y83{bottom:1120.662900px;}
.y34{bottom:1121.382900px;}
.y33{bottom:1153.062900px;}
.y32{bottom:1173.942900px;}
.h4{height:27.014766px;}
.h5{height:41.022422px;}
.h6{height:43.189453px;}
.h3{height:50.027344px;}
.hb{height:61.664063px;}
.h9{height:64.406250px;}
.ha{height:66.138047px;}
.h8{height:67.007813px;}
.h7{height:77.729063px;}
.h2{height:1226.862900px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:856.941600px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:17.985900px;}
.x3{left:110.880000px;}
.xb{left:113.632800px;}
.x6{left:120.286125px;}
.x8{left:134.008800px;}
.x5{left:139.266150px;}
.xf{left:143.370600px;}
.xa{left:163.979850px;}
.x7{left:251.572050px;}
.x9{left:252.797400px;}
.x10{left:291.061950px;}
.xe{left:324.803250px;}
.xc{left:387.035700px;}
.x4{left:429.779850px;}
.x2{left:616.439700px;}
.x11{left:749.880000px;}
.xd{left:785.880000px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200533pt;}
.v3{vertical-align:29.440000pt;}
.ls11{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.004267pt;}
.ls15{letter-spacing:0.004800pt;}
.ls14{letter-spacing:0.009600pt;}
.ls6{letter-spacing:0.012800pt;}
.ls8{letter-spacing:0.051840pt;}
.ls0{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.213867pt;}
.lsd{letter-spacing:0.215168pt;}
.lsb{letter-spacing:0.225664pt;}
.ls10{letter-spacing:0.252416pt;}
.ls4{letter-spacing:0.319232pt;}
.lsc{letter-spacing:0.372608pt;}
.lsa{letter-spacing:0.425088pt;}
.ls3{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.464533pt;}
.lse{letter-spacing:0.514304pt;}
.ls5{letter-spacing:0.533333pt;}
.ls9{letter-spacing:0.624512pt;}
.lsf{letter-spacing:0.781952pt;}
.ls12{letter-spacing:176.000000pt;}
.ws3{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws2{word-spacing:-13.901952pt;}
.ws0{word-spacing:-13.545088pt;}
.ws1{word-spacing:-13.345664pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-4.755200pt;}
._a{margin-left:-3.257600pt;}
._8{margin-left:-2.030933pt;}
._0{margin-left:-1.073280pt;}
._1{width:1.049600pt;}
._4{width:2.700800pt;}
._7{width:3.622400pt;}
._b{width:5.005867pt;}
._c{width:6.164267pt;}
._10{width:7.059200pt;}
._5{width:8.020267pt;}
._9{width:9.704533pt;}
._16{width:10.905600pt;}
._6{width:12.652800pt;}
._d{width:13.760000pt;}
._12{width:14.846080pt;}
._2{width:17.120000pt;}
._e{width:18.771200pt;}
._15{width:19.850133pt;}
._11{width:20.940800pt;}
._21{width:22.291200pt;}
._14{width:23.417600pt;}
._f{width:24.825600pt;}
._17{width:26.182400pt;}
._18{width:28.038400pt;}
._3{width:29.702400pt;}
._1f{width:30.764800pt;}
._1c{width:32.160000pt;}
._1e{width:34.502400pt;}
._13{width:37.849600pt;}
._19{width:40.326400pt;}
._20{width:44.595200pt;}
._1d{width:52.544000pt;}
._1b{width:96.000000pt;}
._1a{width:176.000000pt;}
.fs5{font-size:25.600000pt;}
.fs1{font-size:34.560000pt;}
.fs6{font-size:42.240000pt;}
.fs2{font-size:52.480000pt;}
.fs3{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:15.987467pt;}
.yb{bottom:34.224787pt;}
.ya{bottom:56.944867pt;}
.y9{bottom:66.224787pt;}
.yba{bottom:83.504787pt;}
.y8{bottom:87.664867pt;}
.y65{bottom:90.864787pt;}
.y9b{bottom:91.504787pt;}
.y9e{bottom:92.144787pt;}
.y7{bottom:96.944787pt;}
.yb9{bottom:102.064787pt;}
.y9d{bottom:106.864787pt;}
.y82{bottom:109.104787pt;}
.y64{bottom:109.424787pt;}
.y9a{bottom:110.064787pt;}
.y6{bottom:118.384800pt;}
.yb8{bottom:120.304800pt;}
.y5{bottom:127.664800pt;}
.y63{bottom:127.984800pt;}
.y81{bottom:128.304800pt;}
.y99{bottom:128.624800pt;}
.yb7{bottom:138.864800pt;}
.y62{bottom:146.224800pt;}
.y80{bottom:146.864800pt;}
.y4{bottom:149.104800pt;}
.yb6{bottom:157.424800pt;}
.y3{bottom:164.464800pt;}
.y61{bottom:164.784800pt;}
.y7f{bottom:165.424800pt;}
.yb5{bottom:175.664800pt;}
.yc4{bottom:183.024800pt;}
.y60{bottom:183.344800pt;}
.y7e{bottom:183.664800pt;}
.y98{bottom:183.984800pt;}
.y31{bottom:192.624800pt;}
.yb4{bottom:194.224800pt;}
.yc3{bottom:201.584800pt;}
.y5f{bottom:201.904800pt;}
.y7d{bottom:202.224800pt;}
.y30{bottom:211.184800pt;}
.yb3{bottom:212.784800pt;}
.y5e{bottom:220.144800pt;}
.y7c{bottom:220.784800pt;}
.y2f{bottom:229.744800pt;}
.yb2{bottom:231.344800pt;}
.y5d{bottom:238.704800pt;}
.y7b{bottom:239.024800pt;}
.y97{bottom:239.344800pt;}
.y2e{bottom:247.984800pt;}
.yb1{bottom:249.584800pt;}
.yc2{bottom:256.944800pt;}
.y5c{bottom:257.264800pt;}
.y7a{bottom:257.584800pt;}
.y96{bottom:257.904800pt;}
.y2d{bottom:266.544800pt;}
.yb0{bottom:268.144800pt;}
.yc1{bottom:275.504800pt;}
.y5b{bottom:275.824800pt;}
.y79{bottom:276.144800pt;}
.y2c{bottom:285.104800pt;}
.yaf{bottom:286.704800pt;}
.y5a{bottom:294.064800pt;}
.y78{bottom:294.704800pt;}
.y2b{bottom:303.664800pt;}
.yae{bottom:305.264800pt;}
.yc0{bottom:311.664800pt;}
.y59{bottom:312.624800pt;}
.y77{bottom:312.944800pt;}
.y95{bottom:313.264800pt;}
.y2a{bottom:321.904800pt;}
.yad{bottom:323.504800pt;}
.ybf{bottom:330.224800pt;}
.y58{bottom:331.184800pt;}
.y76{bottom:331.504800pt;}
.y94{bottom:331.824800pt;}
.y29{bottom:340.464800pt;}
.yac{bottom:342.064800pt;}
.ybe{bottom:348.464800pt;}
.y57{bottom:349.424800pt;}
.y75{bottom:350.064800pt;}
.y28{bottom:359.024800pt;}
.yab{bottom:360.624800pt;}
.ybd{bottom:367.024800pt;}
.y56{bottom:367.984800pt;}
.y74{bottom:368.624800pt;}
.y27{bottom:377.584800pt;}
.yaa{bottom:379.184800pt;}
.ybc{bottom:385.904800pt;}
.y55{bottom:386.544800pt;}
.y73{bottom:386.864800pt;}
.y93{bottom:387.184800pt;}
.y26{bottom:395.824800pt;}
.ya9{bottom:397.424800pt;}
.ybb{bottom:404.784800pt;}
.y54{bottom:405.104800pt;}
.y72{bottom:405.424800pt;}
.y92{bottom:405.744800pt;}
.y25{bottom:414.384800pt;}
.ya8{bottom:415.344800pt;}
.y53{bottom:423.344800pt;}
.y71{bottom:423.984800pt;}
.ya7{bottom:430.064800pt;}
.y24{bottom:432.944800pt;}
.y52{bottom:441.904800pt;}
.y70{bottom:442.544800pt;}
.y23{bottom:451.184800pt;}
.y51{bottom:460.464800pt;}
.y6f{bottom:460.784800pt;}
.y91{bottom:461.104800pt;}
.y22{bottom:469.744800pt;}
.y50{bottom:479.024800pt;}
.y6e{bottom:479.344800pt;}
.y90{bottom:479.664800pt;}
.y21{bottom:488.304800pt;}
.y4f{bottom:497.264800pt;}
.y6d{bottom:497.904800pt;}
.y20{bottom:506.864800pt;}
.y4e{bottom:515.824800pt;}
.y6c{bottom:516.464800pt;}
.y1f{bottom:525.104800pt;}
.y4d{bottom:534.384800pt;}
.y6b{bottom:534.704800pt;}
.y8f{bottom:535.024800pt;}
.y1e{bottom:543.664800pt;}
.y4c{bottom:552.944800pt;}
.y6a{bottom:553.264800pt;}
.y8e{bottom:553.584800pt;}
.y1d{bottom:562.224800pt;}
.y4b{bottom:571.184800pt;}
.y69{bottom:571.824800pt;}
.y1c{bottom:580.784800pt;}
.y4a{bottom:589.744800pt;}
.y68{bottom:590.384800pt;}
.y1b{bottom:599.024800pt;}
.y49{bottom:608.304800pt;}
.y67{bottom:608.624800pt;}
.y8d{bottom:608.944800pt;}
.y1a{bottom:617.584800pt;}
.y48{bottom:626.544800pt;}
.y66{bottom:627.184800pt;}
.y19{bottom:636.144800pt;}
.y47{bottom:645.744800pt;}
.y18{bottom:654.704800pt;}
.y46{bottom:663.984800pt;}
.y8c{bottom:664.304800pt;}
.y17{bottom:672.944800pt;}
.y45{bottom:682.544800pt;}
.y8b{bottom:682.864800pt;}
.y16{bottom:691.504800pt;}
.y44{bottom:701.104800pt;}
.y15{bottom:710.064800pt;}
.y43{bottom:719.664800pt;}
.y14{bottom:728.624800pt;}
.y42{bottom:737.904800pt;}
.y8a{bottom:738.224800pt;}
.y13{bottom:746.864800pt;}
.y41{bottom:756.464800pt;}
.y89{bottom:756.784800pt;}
.y12{bottom:766.064800pt;}
.ya6{bottom:774.704800pt;}
.y40{bottom:775.024800pt;}
.y11{bottom:789.424800pt;}
.ya5{bottom:793.264800pt;}
.y3f{bottom:793.584800pt;}
.y10{bottom:811.504800pt;}
.y3e{bottom:811.824800pt;}
.y88{bottom:812.144800pt;}
.ya4{bottom:830.064800pt;}
.y3d{bottom:830.384800pt;}
.yf{bottom:830.704800pt;}
.ya3{bottom:848.304800pt;}
.y3c{bottom:848.944800pt;}
.ye{bottom:852.144800pt;}
.ya2{bottom:867.184800pt;}
.y3b{bottom:867.504800pt;}
.yd{bottom:873.584800pt;}
.y3a{bottom:885.744800pt;}
.y87{bottom:886.064800pt;}
.yc{bottom:895.344800pt;}
.ya1{bottom:903.984800pt;}
.y39{bottom:904.304800pt;}
.y86{bottom:904.624800pt;}
.y2{bottom:912.304800pt;}
.ya0{bottom:922.544800pt;}
.y38{bottom:922.864800pt;}
.y9f{bottom:940.784800pt;}
.y37{bottom:941.424800pt;}
.yc6{bottom:958.704800pt;}
.y9c{bottom:959.344800pt;}
.y36{bottom:959.664800pt;}
.y85{bottom:959.984800pt;}
.yc5{bottom:976.944800pt;}
.y84{bottom:977.584800pt;}
.y35{bottom:978.224800pt;}
.y83{bottom:996.144800pt;}
.y34{bottom:996.784800pt;}
.y33{bottom:1024.944800pt;}
.y32{bottom:1043.504800pt;}
.h4{height:24.013125pt;}
.h5{height:36.464375pt;}
.h6{height:38.390625pt;}
.h3{height:44.468750pt;}
.hb{height:54.812500pt;}
.h9{height:57.250000pt;}
.ha{height:58.789375pt;}
.h8{height:59.562500pt;}
.h7{height:69.092500pt;}
.h2{height:1090.544800pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:761.725867pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:15.987467pt;}
.x3{left:98.560000pt;}
.xb{left:101.006933pt;}
.x6{left:106.921000pt;}
.x8{left:119.118933pt;}
.x5{left:123.792133pt;}
.xf{left:127.440533pt;}
.xa{left:145.759867pt;}
.x7{left:223.619600pt;}
.x9{left:224.708800pt;}
.x10{left:258.721733pt;}
.xe{left:288.714000pt;}
.xc{left:344.031733pt;}
.x4{left:382.026533pt;}
.x2{left:547.946400pt;}
.x11{left:666.560000pt;}
.xd{left:698.560000pt;}
}




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