
    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_9f814a8c1239f25b1420ed4c.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_f0c729628f188aba68761ade.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_01cbcaa604a09198aae30d10.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_b9a59ec2f596fb1d3ac810f5.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_da337e6f94979405d36dae49.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_025ab72255b1a4befede3551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4b7e6cc2420c6acf87b0b531.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_231ccdfe8fbfab9165ea8c19.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.413400px;}
.ls11{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.153600px;}
.ls3{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.013320px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.104040px;}
.ls16{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.350400px;}
.lsd{letter-spacing:0.378600px;}
.lsa{letter-spacing:0.383040px;}
.ls8{letter-spacing:0.454680px;}
.ls5{letter-spacing:0.454800px;}
.ls6{letter-spacing:0.540000px;}
.ls14{letter-spacing:24.228000px;}
.ls15{letter-spacing:25.668000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.030000px;}
.ws4{word-spacing:-15.016680px;}
.ws3{word-spacing:-14.976720px;}
.wsa{word-spacing:-14.876400px;}
.wsb{word-spacing:-14.616600px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.wsc{word-spacing:-12.780000px;}
.ws7{word-spacing:-12.510000px;}
.ws9{word-spacing:-12.348600px;}
.ws8{word-spacing:-11.970000px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-4.806960px;}
._8{margin-left:-3.778920px;}
._4{margin-left:-2.487840px;}
._1{margin-left:-1.082160px;}
._0{width:1.357320px;}
._2{width:3.126000px;}
._3{width:4.380000px;}
._5{width:5.583600px;}
._b{width:7.575120px;}
._c{width:26.838000px;}
._7{width:601.422000px;}
._6{width:724.260000px;}
._9{width:727.140000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y3{bottom:73.349908px;}
.y47{bottom:94.499908px;}
.y5f{bottom:94.769908px;}
.y2a{bottom:107.099908px;}
.y5e{bottom:110.699908px;}
.ya9{bottom:110.969908px;}
.y46{bottom:114.389908px;}
.y86{bottom:118.169908px;}
.y5d{bottom:126.539908px;}
.y29{bottom:126.989908px;}
.ya8{bottom:133.289908px;}
.y45{bottom:134.189908px;}
.y85{bottom:137.969908px;}
.y5c{bottom:142.379908px;}
.y28{bottom:146.789908px;}
.ya7{bottom:151.109908px;}
.y44{bottom:153.989908px;}
.y84{bottom:157.859908px;}
.y5b{bottom:158.309908px;}
.ya6{bottom:173.519908px;}
.y43{bottom:173.879908px;}
.y5a{bottom:174.149908px;}
.y27{bottom:175.589908px;}
.y83{bottom:177.659908px;}
.y59{bottom:189.989908px;}
.ya5{bottom:191.339908px;}
.y42{bottom:193.679908px;}
.y82{bottom:197.549908px;}
.y58{bottom:205.919908px;}
.ya4{bottom:209.159908px;}
.y26{bottom:213.479908px;}
.y81{bottom:217.349908px;}
.y57{bottom:221.759908px;}
.ya3{bottom:227.069908px;}
.y41{bottom:230.489908px;}
.y25{bottom:233.279908px;}
.y80{bottom:237.149908px;}
.y56{bottom:237.599908px;}
.y40{bottom:246.329908px;}
.ya2{bottom:249.389908px;}
.y24{bottom:253.169908px;}
.y55{bottom:253.439908px;}
.y7f{bottom:257.039908px;}
.y3f{bottom:262.169908px;}
.ya1{bottom:267.209908px;}
.y54{bottom:269.369908px;}
.y23{bottom:272.969908px;}
.y7e{bottom:276.839908px;}
.y3e{bottom:278.099908px;}
.y53{bottom:285.209908px;}
.ya0{bottom:289.619908px;}
.y22{bottom:292.769908px;}
.y3d{bottom:293.939908px;}
.y7d{bottom:296.729908px;}
.y52{bottom:301.049908px;}
.y3c{bottom:309.779908px;}
.y9f{bottom:311.939908px;}
.y21{bottom:312.659908px;}
.y7c{bottom:316.529908px;}
.y51{bottom:324.359908px;}
.y3b{bottom:325.619908px;}
.y9e{bottom:329.849908px;}
.y20{bottom:332.459908px;}
.y7b{bottom:336.359908px;}
.y3a{bottom:341.579908px;}
.y9d{bottom:352.199908px;}
.y1f{bottom:352.379908px;}
.y7a{bottom:356.249908px;}
.y39{bottom:357.419908px;}
.y9c{bottom:370.019908px;}
.y1e{bottom:372.179908px;}
.y38{bottom:373.259908px;}
.y79{bottom:376.049908px;}
.y9b{bottom:387.929908px;}
.y37{bottom:389.189908px;}
.y1d{bottom:391.979908px;}
.y78{bottom:395.939908px;}
.y36{bottom:405.029908px;}
.y9a{bottom:410.249908px;}
.y1c{bottom:411.869908px;}
.y77{bottom:415.739908px;}
.y35{bottom:420.869908px;}
.y99{bottom:428.069908px;}
.y1b{bottom:431.669908px;}
.y76{bottom:435.539908px;}
.y34{bottom:436.799908px;}
.y98{bottom:450.479908px;}
.y1a{bottom:451.469908px;}
.y33{bottom:452.639908px;}
.y75{bottom:455.429908px;}
.y97{bottom:468.299908px;}
.y19{bottom:471.359908px;}
.y74{bottom:475.229908px;}
.y32{bottom:475.949908px;}
.y96{bottom:490.619908px;}
.y18{bottom:491.159908px;}
.y73{bottom:495.119908px;}
.y95{bottom:508.529908px;}
.y72{bottom:514.919908px;}
.y17{bottom:520.049908px;}
.y94{bottom:530.849908px;}
.y71{bottom:534.719908px;}
.y93{bottom:553.169908px;}
.y70{bottom:554.609908px;}
.y16{bottom:557.309908px;}
.y92{bottom:571.079908px;}
.y6f{bottom:574.409908px;}
.y15{bottom:584.129908px;}
.y91{bottom:588.899908px;}
.y6e{bottom:594.299908px;}
.y14{bottom:602.039908px;}
.y90{bottom:611.309908px;}
.y6d{bottom:614.099908px;}
.y13{bottom:619.859908px;}
.y8f{bottom:633.659908px;}
.y6c{bottom:633.929908px;}
.y12{bottom:637.709908px;}
.y8e{bottom:651.479908px;}
.y6b{bottom:653.819908px;}
.y11{bottom:655.619908px;}
.y50{bottom:660.929908px;}
.y8d{bottom:669.389908px;}
.y10{bottom:673.439908px;}
.y6a{bottom:673.619908px;}
.y4f{bottom:680.819908px;}
.yf{bottom:691.349908px;}
.y8c{bottom:691.709908px;}
.y69{bottom:693.509908px;}
.y4e{bottom:700.619908px;}
.ye{bottom:709.169908px;}
.y8b{bottom:709.529908px;}
.y68{bottom:713.309908px;}
.y4d{bottom:720.509908px;}
.yd{bottom:726.989908px;}
.y8a{bottom:727.439908px;}
.y67{bottom:733.109908px;}
.y4c{bottom:740.309908px;}
.yc{bottom:744.899908px;}
.y66{bottom:752.999908px;}
.y89{bottom:754.799908px;}
.y4b{bottom:760.109908px;}
.yb{bottom:762.719908px;}
.y65{bottom:772.799908px;}
.y4a{bottom:779.999908px;}
.y64{bottom:792.689908px;}
.ya{bottom:799.079908px;}
.y49{bottom:799.799908px;}
.y63{bottom:812.489908px;}
.y9{bottom:818.969908px;}
.y48{bottom:819.689908px;}
.y62{bottom:832.289908px;}
.y8{bottom:838.769908px;}
.y31{bottom:839.489908px;}
.y61{bottom:852.179908px;}
.y7{bottom:858.659908px;}
.y30{bottom:859.289908px;}
.y88{bottom:871.979908px;}
.y2f{bottom:879.179908px;}
.y60{bottom:880.979908px;}
.y6{bottom:897.089908px;}
.y2e{bottom:898.979908px;}
.y87{bottom:900.869908px;}
.y2d{bottom:918.869908px;}
.y5{bottom:937.529908px;}
.y2c{bottom:938.699908px;}
.y2b{bottom:958.499908px;}
.y4{bottom:961.289908px;}
.y2{bottom:999.539908px;}
.hb{height:48.254063px;}
.h3{height:52.998047px;}
.h9{height:54.421875px;}
.hc{height:56.320312px;}
.h7{height:58.975137px;}
.h8{height:59.004492px;}
.ha{height:60.589687px;}
.h4{height:65.526152px;}
.h6{height:66.394687px;}
.h5{height:72.562500px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x2{left:76.589989px;}
.x15{left:78.569989px;}
.x1d{left:80.279989px;}
.xc{left:82.889989px;}
.xf{left:83.969989px;}
.x1c{left:85.859989px;}
.xe{left:87.029989px;}
.x11{left:88.649989px;}
.x1a{left:90.989989px;}
.x14{left:93.329989px;}
.x1{left:94.499989px;}
.x17{left:96.569989px;}
.x12{left:97.739989px;}
.x16{left:104.339989px;}
.x1b{left:108.479989px;}
.xb{left:110.639989px;}
.x10{left:111.899989px;}
.x9{left:119.909989px;}
.x1f{left:130.619989px;}
.x13{left:134.399989px;}
.x6{left:139.079989px;}
.x3{left:156.899989px;}
.x4{left:159.149989px;}
.x8{left:174.269989px;}
.x1e{left:246.449989px;}
.x5{left:249.779989px;}
.x18{left:274.619989px;}
.x7{left:301.079989px;}
.xa{left:335.399989px;}
.x19{left:648.989989px;}
.xd{left:664.199989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.367467pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.136533pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.011840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.092480pt;}
.ls16{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.311467pt;}
.lsd{letter-spacing:0.336533pt;}
.lsa{letter-spacing:0.340480pt;}
.ls8{letter-spacing:0.404160pt;}
.ls5{letter-spacing:0.404267pt;}
.ls6{letter-spacing:0.480000pt;}
.ls14{letter-spacing:21.536000pt;}
.ls15{letter-spacing:22.816000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.360000pt;}
.ws4{word-spacing:-13.348160pt;}
.ws3{word-spacing:-13.312640pt;}
.wsa{word-spacing:-13.223467pt;}
.wsb{word-spacing:-12.992533pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.360000pt;}
.ws7{word-spacing:-11.120000pt;}
.ws9{word-spacing:-10.976533pt;}
.ws8{word-spacing:-10.640000pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-4.272853pt;}
._8{margin-left:-3.359040pt;}
._4{margin-left:-2.211413pt;}
._1{margin-left:-0.961920pt;}
._0{width:1.206507pt;}
._2{width:2.778667pt;}
._3{width:3.893333pt;}
._5{width:4.963200pt;}
._b{width:6.733440pt;}
._c{width:23.856000pt;}
._7{width:534.597333pt;}
._6{width:643.786667pt;}
._9{width:646.346667pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y3{bottom:65.199919pt;}
.y47{bottom:83.999919pt;}
.y5f{bottom:84.239919pt;}
.y2a{bottom:95.199919pt;}
.y5e{bottom:98.399919pt;}
.ya9{bottom:98.639919pt;}
.y46{bottom:101.679919pt;}
.y86{bottom:105.039919pt;}
.y5d{bottom:112.479919pt;}
.y29{bottom:112.879919pt;}
.ya8{bottom:118.479919pt;}
.y45{bottom:119.279919pt;}
.y85{bottom:122.639919pt;}
.y5c{bottom:126.559919pt;}
.y28{bottom:130.479919pt;}
.ya7{bottom:134.319919pt;}
.y44{bottom:136.879919pt;}
.y84{bottom:140.319919pt;}
.y5b{bottom:140.719919pt;}
.ya6{bottom:154.239919pt;}
.y43{bottom:154.559919pt;}
.y5a{bottom:154.799919pt;}
.y27{bottom:156.079919pt;}
.y83{bottom:157.919919pt;}
.y59{bottom:168.879919pt;}
.ya5{bottom:170.079919pt;}
.y42{bottom:172.159919pt;}
.y82{bottom:175.599919pt;}
.y58{bottom:183.039919pt;}
.ya4{bottom:185.919919pt;}
.y26{bottom:189.759919pt;}
.y81{bottom:193.199919pt;}
.y57{bottom:197.119919pt;}
.ya3{bottom:201.839919pt;}
.y41{bottom:204.879919pt;}
.y25{bottom:207.359919pt;}
.y80{bottom:210.799919pt;}
.y56{bottom:211.199919pt;}
.y40{bottom:218.959919pt;}
.ya2{bottom:221.679919pt;}
.y24{bottom:225.039919pt;}
.y55{bottom:225.279919pt;}
.y7f{bottom:228.479919pt;}
.y3f{bottom:233.039919pt;}
.ya1{bottom:237.519919pt;}
.y54{bottom:239.439919pt;}
.y23{bottom:242.639919pt;}
.y7e{bottom:246.079919pt;}
.y3e{bottom:247.199919pt;}
.y53{bottom:253.519919pt;}
.ya0{bottom:257.439919pt;}
.y22{bottom:260.239919pt;}
.y3d{bottom:261.279919pt;}
.y7d{bottom:263.759919pt;}
.y52{bottom:267.599919pt;}
.y3c{bottom:275.359919pt;}
.y9f{bottom:277.279919pt;}
.y21{bottom:277.919919pt;}
.y7c{bottom:281.359919pt;}
.y51{bottom:288.319919pt;}
.y3b{bottom:289.439919pt;}
.y9e{bottom:293.199919pt;}
.y20{bottom:295.519919pt;}
.y7b{bottom:298.986585pt;}
.y3a{bottom:303.626585pt;}
.y9d{bottom:313.066585pt;}
.y1f{bottom:313.226585pt;}
.y7a{bottom:316.666585pt;}
.y39{bottom:317.706585pt;}
.y9c{bottom:328.906585pt;}
.y1e{bottom:330.826585pt;}
.y38{bottom:331.786585pt;}
.y79{bottom:334.266585pt;}
.y9b{bottom:344.826585pt;}
.y37{bottom:345.946585pt;}
.y1d{bottom:348.426585pt;}
.y78{bottom:351.946585pt;}
.y36{bottom:360.026585pt;}
.y9a{bottom:364.666585pt;}
.y1c{bottom:366.106585pt;}
.y77{bottom:369.546585pt;}
.y35{bottom:374.106585pt;}
.y99{bottom:380.506585pt;}
.y1b{bottom:383.706585pt;}
.y76{bottom:387.146585pt;}
.y34{bottom:388.266585pt;}
.y98{bottom:400.426585pt;}
.y1a{bottom:401.306585pt;}
.y33{bottom:402.346585pt;}
.y75{bottom:404.826585pt;}
.y97{bottom:416.266585pt;}
.y19{bottom:418.986585pt;}
.y74{bottom:422.426585pt;}
.y32{bottom:423.066585pt;}
.y96{bottom:436.106585pt;}
.y18{bottom:436.586585pt;}
.y73{bottom:440.106585pt;}
.y95{bottom:452.026585pt;}
.y72{bottom:457.706585pt;}
.y17{bottom:462.266585pt;}
.y94{bottom:471.866585pt;}
.y71{bottom:475.306585pt;}
.y93{bottom:491.706585pt;}
.y70{bottom:492.986585pt;}
.y16{bottom:495.386585pt;}
.y92{bottom:507.626585pt;}
.y6f{bottom:510.586585pt;}
.y15{bottom:519.226585pt;}
.y91{bottom:523.466585pt;}
.y6e{bottom:528.266585pt;}
.y14{bottom:535.146585pt;}
.y90{bottom:543.386585pt;}
.y6d{bottom:545.866585pt;}
.y13{bottom:550.986585pt;}
.y8f{bottom:563.253252pt;}
.y6c{bottom:563.493252pt;}
.y12{bottom:566.853252pt;}
.y8e{bottom:579.093252pt;}
.y6b{bottom:581.173252pt;}
.y11{bottom:582.773252pt;}
.y50{bottom:587.493252pt;}
.y8d{bottom:595.013252pt;}
.y10{bottom:598.613252pt;}
.y6a{bottom:598.773252pt;}
.y4f{bottom:605.173252pt;}
.yf{bottom:614.533252pt;}
.y8c{bottom:614.853252pt;}
.y69{bottom:616.453252pt;}
.y4e{bottom:622.773252pt;}
.ye{bottom:630.373252pt;}
.y8b{bottom:630.693252pt;}
.y68{bottom:634.053252pt;}
.y4d{bottom:640.453252pt;}
.yd{bottom:646.213252pt;}
.y8a{bottom:646.613252pt;}
.y67{bottom:651.653252pt;}
.y4c{bottom:658.053252pt;}
.yc{bottom:662.133252pt;}
.y66{bottom:669.333252pt;}
.y89{bottom:670.933252pt;}
.y4b{bottom:675.653252pt;}
.yb{bottom:677.973252pt;}
.y65{bottom:686.933252pt;}
.y4a{bottom:693.333252pt;}
.y64{bottom:704.613252pt;}
.ya{bottom:710.293252pt;}
.y49{bottom:710.933252pt;}
.y63{bottom:722.213252pt;}
.y9{bottom:727.973252pt;}
.y48{bottom:728.613252pt;}
.y62{bottom:739.813252pt;}
.y8{bottom:745.573252pt;}
.y31{bottom:746.213252pt;}
.y61{bottom:757.493252pt;}
.y7{bottom:763.253252pt;}
.y30{bottom:763.813252pt;}
.y88{bottom:775.093252pt;}
.y2f{bottom:781.493252pt;}
.y60{bottom:783.093252pt;}
.y6{bottom:797.413252pt;}
.y2e{bottom:799.093252pt;}
.y87{bottom:800.773252pt;}
.y2d{bottom:816.773252pt;}
.y5{bottom:833.359919pt;}
.y2c{bottom:834.399919pt;}
.y2b{bottom:851.999919pt;}
.y4{bottom:854.479919pt;}
.y2{bottom:888.479919pt;}
.hb{height:42.892500pt;}
.h3{height:47.109375pt;}
.h9{height:48.375000pt;}
.hc{height:50.062500pt;}
.h7{height:52.422344pt;}
.h8{height:52.448437pt;}
.ha{height:53.857500pt;}
.h4{height:58.245469pt;}
.h6{height:59.017500pt;}
.h5{height:64.500000pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x2{left:68.079990pt;}
.x15{left:69.839990pt;}
.x1d{left:71.359990pt;}
.xc{left:73.679990pt;}
.xf{left:74.639990pt;}
.x1c{left:76.319990pt;}
.xe{left:77.359990pt;}
.x11{left:78.799990pt;}
.x1a{left:80.879990pt;}
.x14{left:82.959990pt;}
.x1{left:83.999990pt;}
.x17{left:85.839990pt;}
.x12{left:86.879990pt;}
.x16{left:92.746657pt;}
.x1b{left:96.426657pt;}
.xb{left:98.346657pt;}
.x10{left:99.466657pt;}
.x9{left:106.586657pt;}
.x1f{left:116.106657pt;}
.x13{left:119.466657pt;}
.x6{left:123.626657pt;}
.x3{left:139.466657pt;}
.x4{left:141.466657pt;}
.x8{left:154.906657pt;}
.x1e{left:219.066657pt;}
.x5{left:222.026657pt;}
.x18{left:244.106657pt;}
.x7{left:267.626657pt;}
.xa{left:298.133323pt;}
.x19{left:576.879990pt;}
.xd{left:590.399990pt;}
}




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