
    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_e6f0708552efe89a65852fea.woff')format("woff");}.ff1{font-family:ff1;line-height:0.854004;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_06db14a583b8f1881c5f9f7d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.365723;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_5dece88dbeb354a9e8646adb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.365723;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.v2{vertical-align:24.000000px;}
.v1{vertical-align:30.060000px;}
.lsb{letter-spacing:-0.408000px;}
.ls13{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.246000px;}
.lse{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.204000px;}
.ls11{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.177086px;}
.lsf{letter-spacing:-0.168000px;}
.ls5{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.063245px;}
.ls8{letter-spacing:0.168000px;}
.ls1{letter-spacing:0.174000px;}
.ls7{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.379470px;}
.lsa{letter-spacing:0.961323px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-40.464000px;}
.ws7{word-spacing:-21.326187px;}
.wsc{word-spacing:-20.424000px;}
.ws4{word-spacing:-20.232000px;}
.ws5{word-spacing:-20.088000px;}
.wse{word-spacing:-19.992000px;}
.ws3{word-spacing:-18.546000px;}
.ws2{word-spacing:-18.300000px;}
.wsa{word-spacing:-17.771823px;}
.wsd{word-spacing:-11.634000px;}
.wsf{word-spacing:-9.972000px;}
.ws10{word-spacing:-9.912000px;}
.ws11{word-spacing:-9.864000px;}
.ws8{word-spacing:-0.860131px;}
.wsb{word-spacing:-0.505959px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:10.561902px;}
.ws6{word-spacing:12.864017px;}
._1b{margin-left:-19.272000px;}
._24{margin-left:-17.718000px;}
._17{margin-left:-16.524000px;}
._21{margin-left:-13.740000px;}
._1a{margin-left:-11.952000px;}
._4{margin-left:-8.640000px;}
._0{margin-left:-7.344000px;}
._2{margin-left:-6.192000px;}
._3{margin-left:-5.184000px;}
._c{margin-left:-4.068000px;}
._8{margin-left:-2.970000px;}
._1{margin-left:-1.440000px;}
._7{width:1.056000px;}
._6{width:2.706000px;}
._10{width:3.852000px;}
._16{width:5.688000px;}
._1c{width:6.726000px;}
._12{width:7.776000px;}
._a{width:9.834000px;}
._b{width:11.340000px;}
._15{width:14.736000px;}
._14{width:17.760000px;}
._11{width:21.300000px;}
._f{width:25.422000px;}
._e{width:26.640000px;}
._9{width:28.182000px;}
._23{width:32.328000px;}
._22{width:33.336000px;}
._1d{width:34.380000px;}
._1e{width:36.000000px;}
._1f{width:37.080000px;}
._18{width:53.028000px;}
._20{width:62.304000px;}
._13{width:95.178000px;}
._19{width:195.768000px;}
._d{width:843.798000px;}
._5{width:845.484000px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:63.244921px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:123.637500px;}
.y10{bottom:138.337500px;}
.y82{bottom:148.687500px;}
.y5f{bottom:150.930000px;}
.y98{bottom:153.630000px;}
.y3a{bottom:160.095000px;}
.y81{bottom:170.880000px;}
.y5e{bottom:176.745000px;}
.y97{bottom:178.830000px;}
.yf{bottom:180.930000px;}
.y39{bottom:186.030000px;}
.y80{bottom:196.695000px;}
.y96{bottom:200.295000px;}
.y5d{bottom:202.530000px;}
.y38{bottom:211.830000px;}
.y95{bottom:221.880000px;}
.y7f{bottom:222.495000px;}
.y5c{bottom:228.345000px;}
.y37{bottom:237.345000px;}
.ye{bottom:241.380000px;}
.y94{bottom:244.095000px;}
.y7e{bottom:248.445000px;}
.y5b{bottom:254.145000px;}
.y36{bottom:260.895000px;}
.y93{bottom:269.880000px;}
.y7d{bottom:274.245000px;}
.y5a{bottom:280.080000px;}
.y35{bottom:284.595000px;}
.y92{bottom:294.945000px;}
.y7c{bottom:299.295000px;}
.y59{bottom:305.880000px;}
.y34{bottom:308.295000px;}
.yd{bottom:309.195000px;}
.y91{bottom:317.280000px;}
.y7b{bottom:320.880000px;}
.y58{bottom:331.695000px;}
.y33{bottom:331.995000px;}
.y7a{bottom:343.095000px;}
.y32{bottom:355.695000px;}
.y57{bottom:357.495000px;}
.y79{bottom:368.925000px;}
.yc{bottom:376.875000px;}
.y31{bottom:379.425000px;}
.y56{bottom:383.325000px;}
.y78{bottom:394.725000px;}
.y30{bottom:402.975000px;}
.y55{bottom:409.125000px;}
.y77{bottom:420.525000px;}
.y2f{bottom:426.675000px;}
.y54{bottom:430.425000px;}
.yb{bottom:444.675000px;}
.y76{bottom:446.325000px;}
.y2e{bottom:450.375000px;}
.y75{bottom:472.275000px;}
.y2d{bottom:474.075000px;}
.y53{bottom:480.825000px;}
.y2c{bottom:497.775000px;}
.y74{bottom:498.075000px;}
.y52{bottom:508.575000px;}
.ya{bottom:512.325000px;}
.y2b{bottom:521.325000px;}
.y73{bottom:523.875000px;}
.y51{bottom:536.475000px;}
.y2a{bottom:545.025000px;}
.y72{bottom:549.675000px;}
.y50{bottom:564.375000px;}
.y29{bottom:568.725000px;}
.y71{bottom:574.725000px;}
.y90{bottom:575.475000px;}
.y9{bottom:580.125000px;}
.y4f{bottom:592.275000px;}
.y28{bottom:592.425000px;}
.y70{bottom:597.075000px;}
.y8f{bottom:601.275000px;}
.y27{bottom:616.125000px;}
.y4e{bottom:620.025000px;}
.y6f{bottom:622.875000px;}
.y8e{bottom:627.075000px;}
.y26{bottom:639.675000px;}
.y8{bottom:647.925000px;}
.y6e{bottom:648.675000px;}
.y8d{bottom:653.025000px;}
.y4d{bottom:659.925000px;}
.y25{bottom:663.375000px;}
.y6d{bottom:674.475000px;}
.y8c{bottom:678.825000px;}
.y24{bottom:687.075000px;}
.y4c{bottom:687.825000px;}
.y6c{bottom:700.275000px;}
.y8b{bottom:704.625000px;}
.y23{bottom:710.775000px;}
.y7{bottom:715.575000px;}
.y4b{bottom:715.725000px;}
.y6b{bottom:726.075000px;}
.y8a{bottom:730.470000px;}
.y22{bottom:734.520000px;}
.y4a{bottom:743.670000px;}
.y6a{bottom:751.905000px;}
.y89{bottom:756.270000px;}
.y21{bottom:758.070000px;}
.y49{bottom:771.420000px;}
.y69{bottom:777.870000px;}
.y20{bottom:781.770000px;}
.y88{bottom:782.070000px;}
.y6{bottom:783.420000px;}
.y48{bottom:799.320000px;}
.y68{bottom:803.670000px;}
.y1f{bottom:805.455000px;}
.y87{bottom:807.870000px;}
.y47{bottom:825.120000px;}
.y1e{bottom:829.170000px;}
.y67{bottom:829.455000px;}
.y86{bottom:833.070000px;}
.y46{bottom:850.920000px;}
.y5{bottom:851.070000px;}
.y1d{bottom:852.870000px;}
.y66{bottom:855.270000px;}
.y1c{bottom:876.420000px;}
.y45{bottom:876.870000px;}
.y65{bottom:881.070000px;}
.y1b{bottom:900.120000px;}
.y44{bottom:902.670000px;}
.y64{bottom:906.870000px;}
.y4{bottom:918.870000px;}
.y1a{bottom:923.820000px;}
.y43{bottom:928.455000px;}
.y63{bottom:932.820000px;}
.y19{bottom:947.520000px;}
.y42{bottom:954.270000px;}
.y62{bottom:957.870000px;}
.y85{bottom:958.620000px;}
.y18{bottom:971.220000px;}
.y41{bottom:980.070000px;}
.y84{bottom:983.670000px;}
.y3{bottom:986.520000px;}
.y17{bottom:994.770000px;}
.y40{bottom:1005.870000px;}
.y16{bottom:1018.470000px;}
.y3f{bottom:1031.670000px;}
.y15{bottom:1042.170000px;}
.y2{bottom:1054.320000px;}
.y3e{bottom:1057.620000px;}
.y14{bottom:1065.870000px;}
.y3d{bottom:1083.420000px;}
.y13{bottom:1089.570000px;}
.y61{bottom:1108.500000px;}
.y3c{bottom:1109.250000px;}
.y12{bottom:1113.150000px;}
.y1{bottom:1122.450000px;}
.y60{bottom:1131.450000px;}
.y3b{bottom:1135.050000px;}
.y11{bottom:1136.850000px;}
.h9{height:67.968750px;}
.ha{height:71.644637px;}
.h5{height:74.765625px;}
.h6{height:81.562500px;}
.h7{height:85.973564px;}
.h8{height:95.156250px;}
.h2{height:121.710938px;}
.h4{height:135.937500px;}
.h3{height:163.125000px;}
.h1{height:1262.250000px;}
.h0{height:1262.550000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.387487px;}
.x3e{left:136.987487px;}
.x33{left:143.737487px;}
.x3{left:148.987487px;}
.x26{left:150.179987px;}
.x14{left:165.179987px;}
.x34{left:180.629987px;}
.x2e{left:184.829987px;}
.x15{left:190.994987px;}
.x2f{left:194.744987px;}
.x6{left:197.144987px;}
.x16{left:201.779987px;}
.x1e{left:206.444987px;}
.x30{left:209.294987px;}
.x35{left:215.444987px;}
.x31{left:219.194987px;}
.x1f{left:238.544987px;}
.x17{left:239.879987px;}
.x41{left:242.144987px;}
.x36{left:249.029987px;}
.x18{left:250.694987px;}
.x40{left:266.744987px;}
.x12{left:272.744987px;}
.x19{left:280.094987px;}
.x42{left:289.094987px;}
.x1a{left:290.894987px;}
.xa{left:291.944987px;}
.x32{left:295.694987px;}
.x13{left:304.994987px;}
.x5{left:308.144987px;}
.x4{left:317.579987px;}
.xb{left:322.874987px;}
.x1b{left:326.024987px;}
.x7{left:332.624987px;}
.xc{left:333.974987px;}
.x9{left:339.374987px;}
.x22{left:343.574987px;}
.x3f{left:352.274987px;}
.xd{left:379.574987px;}
.x29{left:389.324987px;}
.xe{left:390.824987px;}
.x2a{left:397.424987px;}
.xf{left:425.774987px;}
.x2b{left:433.724987px;}
.x10{left:436.874987px;}
.x8{left:446.624987px;}
.x23{left:450.374987px;}
.x27{left:456.524987px;}
.x37{left:469.574987px;}
.x11{left:478.874987px;}
.x28{left:502.874987px;}
.x1{left:521.024987px;}
.x24{left:525.074987px;}
.x38{left:534.974987px;}
.x39{left:543.119987px;}
.x20{left:555.569987px;}
.x2c{left:564.419987px;}
.x3a{left:590.219987px;}
.x25{left:602.219987px;}
.x2d{left:608.519987px;}
.x21{left:645.419987px;}
.x3b{left:647.204987px;}
.x3c{left:660.254987px;}
.x3d{left:724.154987px;}
.x1c{left:725.219987px;}
.x1d{left:752.219987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.333333pt;}
.v1{vertical-align:26.720000pt;}
.lsb{letter-spacing:-0.362667pt;}
.ls13{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.218667pt;}
.lse{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.181333pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.157410pt;}
.lsf{letter-spacing:-0.149333pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.056218pt;}
.ls8{letter-spacing:0.149333pt;}
.ls1{letter-spacing:0.154667pt;}
.ls7{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.337306pt;}
.lsa{letter-spacing:0.854509pt;}
.ws0{word-spacing:-35.968000pt;}
.ws7{word-spacing:-18.956611pt;}
.wsc{word-spacing:-18.154667pt;}
.ws4{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.856000pt;}
.wse{word-spacing:-17.770667pt;}
.ws3{word-spacing:-16.485333pt;}
.ws2{word-spacing:-16.266667pt;}
.wsa{word-spacing:-15.797176pt;}
.wsd{word-spacing:-10.341333pt;}
.wsf{word-spacing:-8.864000pt;}
.ws10{word-spacing:-8.810667pt;}
.ws11{word-spacing:-8.768000pt;}
.ws8{word-spacing:-0.764561pt;}
.wsb{word-spacing:-0.449742pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:9.388357pt;}
.ws6{word-spacing:11.434682pt;}
._1b{margin-left:-17.130667pt;}
._24{margin-left:-15.749333pt;}
._17{margin-left:-14.688000pt;}
._21{margin-left:-12.213333pt;}
._1a{margin-left:-10.624000pt;}
._4{margin-left:-7.680000pt;}
._0{margin-left:-6.528000pt;}
._2{margin-left:-5.504000pt;}
._3{margin-left:-4.608000pt;}
._c{margin-left:-3.616000pt;}
._8{margin-left:-2.640000pt;}
._1{margin-left:-1.280000pt;}
._7{width:0.938667pt;}
._6{width:2.405333pt;}
._10{width:3.424000pt;}
._16{width:5.056000pt;}
._1c{width:5.978667pt;}
._12{width:6.912000pt;}
._a{width:8.741333pt;}
._b{width:10.080000pt;}
._15{width:13.098667pt;}
._14{width:15.786667pt;}
._11{width:18.933333pt;}
._f{width:22.597333pt;}
._e{width:23.680000pt;}
._9{width:25.050667pt;}
._23{width:28.736000pt;}
._22{width:29.632000pt;}
._1d{width:30.560000pt;}
._1e{width:32.000000pt;}
._1f{width:32.960000pt;}
._18{width:47.136000pt;}
._20{width:55.381333pt;}
._13{width:84.602667pt;}
._19{width:174.016000pt;}
._d{width:750.042667pt;}
._5{width:751.541333pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:56.217707pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:109.900000pt;}
.y10{bottom:122.966667pt;}
.y82{bottom:132.166667pt;}
.y5f{bottom:134.160000pt;}
.y98{bottom:136.560000pt;}
.y3a{bottom:142.306667pt;}
.y81{bottom:151.893333pt;}
.y5e{bottom:157.106667pt;}
.y97{bottom:158.960000pt;}
.yf{bottom:160.826667pt;}
.y39{bottom:165.360000pt;}
.y80{bottom:174.840000pt;}
.y96{bottom:178.040000pt;}
.y5d{bottom:180.026667pt;}
.y38{bottom:188.293333pt;}
.y95{bottom:197.226667pt;}
.y7f{bottom:197.773333pt;}
.y5c{bottom:202.973333pt;}
.y37{bottom:210.973333pt;}
.ye{bottom:214.560000pt;}
.y94{bottom:216.973333pt;}
.y7e{bottom:220.840000pt;}
.y5b{bottom:225.906667pt;}
.y36{bottom:231.906667pt;}
.y93{bottom:239.893333pt;}
.y7d{bottom:243.773333pt;}
.y5a{bottom:248.960000pt;}
.y35{bottom:252.973333pt;}
.y92{bottom:262.173333pt;}
.y7c{bottom:266.040000pt;}
.y59{bottom:271.893333pt;}
.y34{bottom:274.040000pt;}
.yd{bottom:274.840000pt;}
.y91{bottom:282.026667pt;}
.y7b{bottom:285.226667pt;}
.y58{bottom:294.840000pt;}
.y33{bottom:295.106667pt;}
.y7a{bottom:304.973333pt;}
.y32{bottom:316.173333pt;}
.y57{bottom:317.773333pt;}
.y79{bottom:327.933333pt;}
.yc{bottom:335.000000pt;}
.y31{bottom:337.266667pt;}
.y56{bottom:340.733333pt;}
.y78{bottom:350.866667pt;}
.y30{bottom:358.200000pt;}
.y55{bottom:363.666667pt;}
.y77{bottom:373.800000pt;}
.y2f{bottom:379.266667pt;}
.y54{bottom:382.600000pt;}
.yb{bottom:395.266667pt;}
.y76{bottom:396.733333pt;}
.y2e{bottom:400.333333pt;}
.y75{bottom:419.800000pt;}
.y2d{bottom:421.400000pt;}
.y53{bottom:427.400000pt;}
.y2c{bottom:442.466667pt;}
.y74{bottom:442.733333pt;}
.y52{bottom:452.066667pt;}
.ya{bottom:455.400000pt;}
.y2b{bottom:463.400000pt;}
.y73{bottom:465.666667pt;}
.y51{bottom:476.866667pt;}
.y2a{bottom:484.466667pt;}
.y72{bottom:488.600000pt;}
.y50{bottom:501.666667pt;}
.y29{bottom:505.533333pt;}
.y71{bottom:510.866667pt;}
.y90{bottom:511.533333pt;}
.y9{bottom:515.666667pt;}
.y4f{bottom:526.466667pt;}
.y28{bottom:526.600000pt;}
.y70{bottom:530.733333pt;}
.y8f{bottom:534.466667pt;}
.y27{bottom:547.666667pt;}
.y4e{bottom:551.133333pt;}
.y6f{bottom:553.666667pt;}
.y8e{bottom:557.400000pt;}
.y26{bottom:568.600000pt;}
.y8{bottom:575.933333pt;}
.y6e{bottom:576.600000pt;}
.y8d{bottom:580.466667pt;}
.y4d{bottom:586.600000pt;}
.y25{bottom:589.666667pt;}
.y6d{bottom:599.533333pt;}
.y8c{bottom:603.400000pt;}
.y24{bottom:610.733333pt;}
.y4c{bottom:611.400000pt;}
.y6c{bottom:622.466667pt;}
.y8b{bottom:626.333333pt;}
.y23{bottom:631.800000pt;}
.y7{bottom:636.066667pt;}
.y4b{bottom:636.200000pt;}
.y6b{bottom:645.400000pt;}
.y8a{bottom:649.306667pt;}
.y22{bottom:652.906667pt;}
.y4a{bottom:661.040000pt;}
.y6a{bottom:668.360000pt;}
.y89{bottom:672.240000pt;}
.y21{bottom:673.840000pt;}
.y49{bottom:685.706667pt;}
.y69{bottom:691.440000pt;}
.y20{bottom:694.906667pt;}
.y88{bottom:695.173333pt;}
.y6{bottom:696.373333pt;}
.y48{bottom:710.506667pt;}
.y68{bottom:714.373333pt;}
.y1f{bottom:715.960000pt;}
.y87{bottom:718.106667pt;}
.y47{bottom:733.440000pt;}
.y1e{bottom:737.040000pt;}
.y67{bottom:737.293333pt;}
.y86{bottom:740.506667pt;}
.y46{bottom:756.373333pt;}
.y5{bottom:756.506667pt;}
.y1d{bottom:758.106667pt;}
.y66{bottom:760.240000pt;}
.y1c{bottom:779.040000pt;}
.y45{bottom:779.440000pt;}
.y65{bottom:783.173333pt;}
.y1b{bottom:800.106667pt;}
.y44{bottom:802.373333pt;}
.y64{bottom:806.106667pt;}
.y4{bottom:816.773333pt;}
.y1a{bottom:821.173333pt;}
.y43{bottom:825.293333pt;}
.y63{bottom:829.173333pt;}
.y19{bottom:842.240000pt;}
.y42{bottom:848.240000pt;}
.y62{bottom:851.440000pt;}
.y85{bottom:852.106667pt;}
.y18{bottom:863.306667pt;}
.y41{bottom:871.173333pt;}
.y84{bottom:874.373333pt;}
.y3{bottom:876.906667pt;}
.y17{bottom:884.240000pt;}
.y40{bottom:894.106667pt;}
.y16{bottom:905.306667pt;}
.y3f{bottom:917.040000pt;}
.y15{bottom:926.373333pt;}
.y2{bottom:937.173333pt;}
.y3e{bottom:940.106667pt;}
.y14{bottom:947.440000pt;}
.y3d{bottom:963.040000pt;}
.y13{bottom:968.506667pt;}
.y61{bottom:985.333333pt;}
.y3c{bottom:986.000000pt;}
.y12{bottom:989.466667pt;}
.y1{bottom:997.733333pt;}
.y60{bottom:1005.733333pt;}
.y3b{bottom:1008.933333pt;}
.y11{bottom:1010.533333pt;}
.h9{height:60.416667pt;}
.ha{height:63.684122pt;}
.h5{height:66.458333pt;}
.h6{height:72.500000pt;}
.h7{height:76.420946pt;}
.h8{height:84.583333pt;}
.h2{height:108.187500pt;}
.h4{height:120.833333pt;}
.h3{height:145.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.266667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.566655pt;}
.x3e{left:121.766655pt;}
.x33{left:127.766655pt;}
.x3{left:132.433322pt;}
.x26{left:133.493322pt;}
.x14{left:146.826655pt;}
.x34{left:160.559988pt;}
.x2e{left:164.293322pt;}
.x15{left:169.773322pt;}
.x2f{left:173.106655pt;}
.x6{left:175.239988pt;}
.x16{left:179.359988pt;}
.x1e{left:183.506655pt;}
.x30{left:186.039988pt;}
.x35{left:191.506655pt;}
.x31{left:194.839988pt;}
.x1f{left:212.039988pt;}
.x17{left:213.226655pt;}
.x41{left:215.239988pt;}
.x36{left:221.359988pt;}
.x18{left:222.839988pt;}
.x40{left:237.106655pt;}
.x12{left:242.439988pt;}
.x19{left:248.973322pt;}
.x42{left:256.973322pt;}
.x1a{left:258.573322pt;}
.xa{left:259.506655pt;}
.x32{left:262.839988pt;}
.x13{left:271.106655pt;}
.x5{left:273.906655pt;}
.x4{left:282.293322pt;}
.xb{left:286.999988pt;}
.x1b{left:289.799988pt;}
.x7{left:295.666655pt;}
.xc{left:296.866655pt;}
.x9{left:301.666655pt;}
.x22{left:305.399988pt;}
.x3f{left:313.133322pt;}
.xd{left:337.399988pt;}
.x29{left:346.066655pt;}
.xe{left:347.399988pt;}
.x2a{left:353.266655pt;}
.xf{left:378.466655pt;}
.x2b{left:385.533322pt;}
.x10{left:388.333322pt;}
.x8{left:396.999988pt;}
.x23{left:400.333322pt;}
.x27{left:405.799988pt;}
.x37{left:417.399988pt;}
.x11{left:425.666655pt;}
.x28{left:446.999988pt;}
.x1{left:463.133322pt;}
.x24{left:466.733322pt;}
.x38{left:475.533322pt;}
.x39{left:482.773322pt;}
.x20{left:493.839988pt;}
.x2c{left:501.706655pt;}
.x3a{left:524.639988pt;}
.x25{left:535.306655pt;}
.x2d{left:540.906655pt;}
.x21{left:573.706655pt;}
.x3b{left:575.293322pt;}
.x3c{left:586.893322pt;}
.x3d{left:643.693322pt;}
.x1c{left:644.639988pt;}
.x1d{left:668.639988pt;}
}




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