
    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_96108aea422b4b39a301a511.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1431d6942367ae4b3e64bfd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1eaf9d40b6cae5df331f2089.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_d82c00267d25fab9708e52a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_6ba89eb0dbd1f1159dcf8fcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_0e34673a6a367719e14397da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_d3067a81888e8f055f137839.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;}
.m1{transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.m3{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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-1.134000px;}
.ls28{letter-spacing:-1.080000px;}
.ls26{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.666000px;}
.ls8{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.566400px;}
.ls27{letter-spacing:-0.513600px;}
.lsb{letter-spacing:-0.485400px;}
.ls1a{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls20{letter-spacing:-0.063000px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.153600px;}
.ls19{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.265200px;}
.ls3{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.380400px;}
.ls14{letter-spacing:0.460200px;}
.ls17{letter-spacing:0.513600px;}
.ls1c{letter-spacing:0.612000px;}
.lsc{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.738000px;}
.ls1d{letter-spacing:0.828000px;}
.ls23{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.800000px;}
.ls1b{letter-spacing:6.660000px;}
.ls1f{letter-spacing:7.380000px;}
.lsd{letter-spacing:12.420000px;}
.lse{letter-spacing:13.860000px;}
.ls22{letter-spacing:14.490720px;}
.lsf{letter-spacing:14.580000px;}
.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:-24.678000px;}
.ws16{word-spacing:-16.740000px;}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.020000px;}
.ws15{word-spacing:-15.768000px;}
.wse{word-spacing:-15.606000px;}
.ws1d{word-spacing:-15.552000px;}
.ws12{word-spacing:-15.453600px;}
.ws10{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.384000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.235440px;}
.wsd{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.146400px;}
.ws1c{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.680200px;}
.ws14{word-spacing:-14.580000px;}
.ws1a{word-spacing:-14.426400px;}
.ws18{word-spacing:-14.373600px;}
.wsc{word-spacing:-14.274000px;}
.ws19{word-spacing:-14.112000px;}
.ws1b{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.806000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-2539.120320px;}
._3{margin-left:-1450.271520px;}
._5{margin-left:-1444.384320px;}
._4{margin-left:-997.192800px;}
._6{margin-left:-577.600560px;}
._21{margin-left:-16.569360px;}
._1f{margin-left:-11.340000px;}
._7{margin-left:-8.036160px;}
._8{margin-left:-4.364400px;}
._c{margin-left:-2.909040px;}
._1{margin-left:-1.627920px;}
._0{width:1.244880px;}
._10{width:3.036240px;}
._15{width:4.063680px;}
._e{width:5.146320px;}
._d{width:6.591120px;}
._f{width:7.828560px;}
._9{width:9.230880px;}
._a{width:10.260000px;}
._b{width:11.322960px;}
._17{width:12.650880px;}
._11{width:13.669920px;}
._18{width:16.254960px;}
._13{width:17.771280px;}
._12{width:18.853200px;}
._14{width:20.047680px;}
._19{width:21.333120px;}
._16{width:22.335360px;}
._1a{width:23.423760px;}
._1b{width:25.577280px;}
._1e{width:27.299280px;}
._1c{width:28.555920px;}
._1d{width:40.905600px;}
._20{width:48.226320px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:7.380000px;}
.ya3{bottom:27.180000px;}
.ya0{bottom:31.320000px;}
.ya2{bottom:47.160000px;}
.y6{bottom:61.056000px;}
.ya1{bottom:66.954000px;}
.y6b{bottom:88.416000px;}
.y9f{bottom:90.036000px;}
.y33{bottom:97.416000px;}
.y9c{bottom:99.216000px;}
.y6a{bottom:108.216000px;}
.y32{bottom:117.216000px;}
.y9b{bottom:119.016000px;}
.y69{bottom:128.016000px;}
.y31{bottom:137.016000px;}
.y9a{bottom:138.996000px;}
.y68{bottom:147.996000px;}
.y30{bottom:156.810000px;}
.y99{bottom:158.790000px;}
.y67{bottom:167.790000px;}
.y2f{bottom:176.610000px;}
.y98{bottom:178.590000px;}
.y66{bottom:187.590000px;}
.y2e{bottom:196.410000px;}
.y97{bottom:198.390000px;}
.y65{bottom:207.390000px;}
.y2d{bottom:216.390000px;}
.y96{bottom:218.190000px;}
.y64{bottom:227.190000px;}
.y2c{bottom:236.190000px;}
.y95{bottom:238.170000px;}
.y63{bottom:247.170000px;}
.y2b{bottom:255.990000px;}
.y94{bottom:257.970000px;}
.y62{bottom:266.970000px;}
.y2a{bottom:275.790000px;}
.y93{bottom:277.770000px;}
.y61{bottom:286.770000px;}
.y29{bottom:295.590000px;}
.y92{bottom:297.570000px;}
.y70{bottom:306.210000px;}
.y60{bottom:306.570000px;}
.y28{bottom:315.570000px;}
.y91{bottom:317.370000px;}
.y6f{bottom:326.010000px;}
.y5f{bottom:326.370000px;}
.y27{bottom:335.415000px;}
.y90{bottom:337.395000px;}
.y5e{bottom:346.395000px;}
.y26{bottom:355.215000px;}
.y8f{bottom:357.195000px;}
.y5d{bottom:366.195000px;}
.y25{bottom:375.015000px;}
.y8e{bottom:376.995000px;}
.y5c{bottom:385.995000px;}
.y24{bottom:394.815000px;}
.y8d{bottom:396.795000px;}
.y5b{bottom:405.795000px;}
.y23{bottom:414.795000px;}
.y8c{bottom:416.595000px;}
.y5a{bottom:425.595000px;}
.y22{bottom:434.595000px;}
.y8b{bottom:436.575000px;}
.y9d{bottom:445.215000px;}
.y59{bottom:445.575000px;}
.y21{bottom:454.395000px;}
.y8a{bottom:456.375000px;}
.y58{bottom:465.375000px;}
.y20{bottom:473.835000px;}
.y89{bottom:476.175000px;}
.y57{bottom:485.175000px;}
.y1f{bottom:493.995000px;}
.y88{bottom:495.975000px;}
.y56{bottom:504.975000px;}
.y87{bottom:515.775000px;}
.y1e{bottom:516.135000px;}
.y55{bottom:524.775000px;}
.y86{bottom:535.755000px;}
.y54{bottom:544.755000px;}
.y1d{bottom:544.935000px;}
.y85{bottom:555.555000px;}
.y53{bottom:564.555000px;}
.y1c{bottom:564.915000px;}
.y84{bottom:575.355000px;}
.y52{bottom:584.355000px;}
.y1b{bottom:584.715000px;}
.y83{bottom:595.185000px;}
.y51{bottom:604.185000px;}
.y1a{bottom:604.545000px;}
.y82{bottom:614.985000px;}
.y6e{bottom:623.625000px;}
.y50{bottom:623.985000px;}
.y19{bottom:624.345000px;}
.y81{bottom:634.965000px;}
.y6d{bottom:643.605000px;}
.y4f{bottom:643.965000px;}
.y18{bottom:644.145000px;}
.y80{bottom:654.765000px;}
.y4e{bottom:663.765000px;}
.y17{bottom:664.125000px;}
.y7f{bottom:674.565000px;}
.y4d{bottom:683.565000px;}
.y16{bottom:683.925000px;}
.y7e{bottom:694.365000px;}
.y4c{bottom:703.365000px;}
.y15{bottom:703.725000px;}
.y7d{bottom:714.165000px;}
.y4b{bottom:723.165000px;}
.y14{bottom:723.525000px;}
.y7c{bottom:734.145000px;}
.y4a{bottom:743.145000px;}
.y13{bottom:743.325000px;}
.y7b{bottom:753.945000px;}
.y6c{bottom:762.585000px;}
.y49{bottom:762.945000px;}
.y12{bottom:763.305000px;}
.y7a{bottom:773.745000px;}
.y48{bottom:782.745000px;}
.y11{bottom:783.105000px;}
.y79{bottom:793.545000px;}
.y47{bottom:802.545000px;}
.y10{bottom:802.905000px;}
.y78{bottom:813.345000px;}
.y46{bottom:822.345000px;}
.yf{bottom:822.705000px;}
.y77{bottom:833.325000px;}
.y45{bottom:842.325000px;}
.ye{bottom:842.505000px;}
.y76{bottom:853.125000px;}
.y44{bottom:862.170000px;}
.yd{bottom:864.690000px;}
.y75{bottom:872.970000px;}
.y43{bottom:881.970000px;}
.yc{bottom:889.710000px;}
.y74{bottom:892.770000px;}
.y42{bottom:901.770000px;}
.yb{bottom:904.650000px;}
.y73{bottom:912.210000px;}
.y41{bottom:921.570000px;}
.ya{bottom:925.890000px;}
.y72{bottom:932.190000px;}
.y40{bottom:941.550000px;}
.y9{bottom:949.290000px;}
.y71{bottom:951.990000px;}
.y3f{bottom:961.350000px;}
.y8{bottom:980.970000px;}
.y3e{bottom:981.150000px;}
.y3d{bottom:1000.950000px;}
.y7{bottom:1012.830000px;}
.y3c{bottom:1020.750000px;}
.y3b{bottom:1040.730000px;}
.y5{bottom:1051.710000px;}
.y3a{bottom:1060.530000px;}
.y39{bottom:1080.330000px;}
.y4{bottom:1082.490000px;}
.y38{bottom:1100.130000px;}
.y3{bottom:1113.270000px;}
.y37{bottom:1119.930000px;}
.y9e{bottom:1139.580000px;}
.y36{bottom:1139.940000px;}
.y2{bottom:1143.900000px;}
.y35{bottom:1170.180000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.400000px;}
.hc{height:2.826563px;}
.h6{height:38.158594px;}
.h7{height:58.651172px;}
.h5{height:60.226875px;}
.ha{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.hb{height:80.640000px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:212.250000px;}
.w4{width:584.925000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.xa{left:45.900000px;}
.x2{left:52.919987px;}
.x1{left:54.179987px;}
.x3{left:61.379987px;}
.x6{left:66.599987px;}
.x9{left:71.279987px;}
.x7{left:72.899987px;}
.x4{left:74.339987px;}
.x8{left:94.535987px;}
.x5{left:96.515987px;}
.xb{left:191.370000px;}
.xc{left:258.150000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-1.008000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls26{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.503467pt;}
.ls27{letter-spacing:-0.456533pt;}
.lsb{letter-spacing:-0.431467pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls20{letter-spacing:-0.056000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.136533pt;}
.ls19{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.235733pt;}
.ls3{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.338133pt;}
.ls14{letter-spacing:0.409067pt;}
.ls17{letter-spacing:0.456533pt;}
.ls1c{letter-spacing:0.544000pt;}
.lsc{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.656000pt;}
.ls1d{letter-spacing:0.736000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.600000pt;}
.ls1b{letter-spacing:5.920000pt;}
.ls1f{letter-spacing:6.560000pt;}
.lsd{letter-spacing:11.040000pt;}
.lse{letter-spacing:12.320000pt;}
.ls22{letter-spacing:12.880640pt;}
.lsf{letter-spacing:12.960000pt;}
.ws2{word-spacing:-21.936000pt;}
.ws16{word-spacing:-14.880000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.240000pt;}
.ws15{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.872000pt;}
.ws1d{word-spacing:-13.824000pt;}
.ws12{word-spacing:-13.736533pt;}
.ws10{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.674667pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.542613pt;}
.wsd{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.463467pt;}
.ws1c{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.049067pt;}
.ws14{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.823467pt;}
.ws18{word-spacing:-12.776533pt;}
.wsc{word-spacing:-12.688000pt;}
.ws19{word-spacing:-12.544000pt;}
.ws1b{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.272000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-2256.995840pt;}
._3{margin-left:-1289.130240pt;}
._5{margin-left:-1283.897173pt;}
._4{margin-left:-886.393600pt;}
._6{margin-left:-513.422720pt;}
._21{margin-left:-14.728320pt;}
._1f{margin-left:-10.080000pt;}
._7{margin-left:-7.143253pt;}
._8{margin-left:-3.879467pt;}
._c{margin-left:-2.585813pt;}
._1{margin-left:-1.447040pt;}
._0{width:1.106560pt;}
._10{width:2.698880pt;}
._15{width:3.612160pt;}
._e{width:4.574507pt;}
._d{width:5.858773pt;}
._f{width:6.958720pt;}
._9{width:8.205227pt;}
._a{width:9.120000pt;}
._b{width:10.064853pt;}
._17{width:11.245227pt;}
._11{width:12.151040pt;}
._18{width:14.448853pt;}
._13{width:15.796693pt;}
._12{width:16.758400pt;}
._14{width:17.820160pt;}
._19{width:18.962773pt;}
._16{width:19.853653pt;}
._1a{width:20.821120pt;}
._1b{width:22.735360pt;}
._1e{width:24.266027pt;}
._1c{width:25.383040pt;}
._1d{width:36.360533pt;}
._20{width:42.867840pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:6.560000pt;}
.ya3{bottom:24.160000pt;}
.ya0{bottom:27.840000pt;}
.ya2{bottom:41.920000pt;}
.y6{bottom:54.272000pt;}
.ya1{bottom:59.514667pt;}
.y6b{bottom:78.592000pt;}
.y9f{bottom:80.032000pt;}
.y33{bottom:86.592000pt;}
.y9c{bottom:88.192000pt;}
.y6a{bottom:96.192000pt;}
.y32{bottom:104.192000pt;}
.y9b{bottom:105.792000pt;}
.y69{bottom:113.792000pt;}
.y31{bottom:121.792000pt;}
.y9a{bottom:123.552000pt;}
.y68{bottom:131.552000pt;}
.y30{bottom:139.386667pt;}
.y99{bottom:141.146667pt;}
.y67{bottom:149.146667pt;}
.y2f{bottom:156.986667pt;}
.y98{bottom:158.746667pt;}
.y66{bottom:166.746667pt;}
.y2e{bottom:174.586667pt;}
.y97{bottom:176.346667pt;}
.y65{bottom:184.346667pt;}
.y2d{bottom:192.346667pt;}
.y96{bottom:193.946667pt;}
.y64{bottom:201.946667pt;}
.y2c{bottom:209.946667pt;}
.y95{bottom:211.706667pt;}
.y63{bottom:219.706667pt;}
.y2b{bottom:227.546667pt;}
.y94{bottom:229.306667pt;}
.y62{bottom:237.306667pt;}
.y2a{bottom:245.146667pt;}
.y93{bottom:246.906667pt;}
.y61{bottom:254.906667pt;}
.y29{bottom:262.746667pt;}
.y92{bottom:264.506667pt;}
.y70{bottom:272.186667pt;}
.y60{bottom:272.506667pt;}
.y28{bottom:280.506667pt;}
.y91{bottom:282.106667pt;}
.y6f{bottom:289.786667pt;}
.y5f{bottom:290.106667pt;}
.y27{bottom:298.146667pt;}
.y90{bottom:299.906667pt;}
.y5e{bottom:307.906667pt;}
.y26{bottom:315.746667pt;}
.y8f{bottom:317.506667pt;}
.y5d{bottom:325.506667pt;}
.y25{bottom:333.346667pt;}
.y8e{bottom:335.106667pt;}
.y5c{bottom:343.106667pt;}
.y24{bottom:350.946667pt;}
.y8d{bottom:352.706667pt;}
.y5b{bottom:360.706667pt;}
.y23{bottom:368.706667pt;}
.y8c{bottom:370.306667pt;}
.y5a{bottom:378.306667pt;}
.y22{bottom:386.306667pt;}
.y8b{bottom:388.066667pt;}
.y9d{bottom:395.746667pt;}
.y59{bottom:396.066667pt;}
.y21{bottom:403.906667pt;}
.y8a{bottom:405.666667pt;}
.y58{bottom:413.666667pt;}
.y20{bottom:421.186667pt;}
.y89{bottom:423.266667pt;}
.y57{bottom:431.266667pt;}
.y1f{bottom:439.106667pt;}
.y88{bottom:440.866667pt;}
.y56{bottom:448.866667pt;}
.y87{bottom:458.466667pt;}
.y1e{bottom:458.786667pt;}
.y55{bottom:466.466667pt;}
.y86{bottom:476.226667pt;}
.y54{bottom:484.226667pt;}
.y1d{bottom:484.386667pt;}
.y85{bottom:493.826667pt;}
.y53{bottom:501.826667pt;}
.y1c{bottom:502.146667pt;}
.y84{bottom:511.426667pt;}
.y52{bottom:519.426667pt;}
.y1b{bottom:519.746667pt;}
.y83{bottom:529.053333pt;}
.y51{bottom:537.053333pt;}
.y1a{bottom:537.373333pt;}
.y82{bottom:546.653333pt;}
.y6e{bottom:554.333333pt;}
.y50{bottom:554.653333pt;}
.y19{bottom:554.973333pt;}
.y81{bottom:564.413333pt;}
.y6d{bottom:572.093333pt;}
.y4f{bottom:572.413333pt;}
.y18{bottom:572.573333pt;}
.y80{bottom:582.013333pt;}
.y4e{bottom:590.013333pt;}
.y17{bottom:590.333333pt;}
.y7f{bottom:599.613333pt;}
.y4d{bottom:607.613333pt;}
.y16{bottom:607.933333pt;}
.y7e{bottom:617.213333pt;}
.y4c{bottom:625.213333pt;}
.y15{bottom:625.533333pt;}
.y7d{bottom:634.813333pt;}
.y4b{bottom:642.813333pt;}
.y14{bottom:643.133333pt;}
.y7c{bottom:652.573333pt;}
.y4a{bottom:660.573333pt;}
.y13{bottom:660.733333pt;}
.y7b{bottom:670.173333pt;}
.y6c{bottom:677.853333pt;}
.y49{bottom:678.173333pt;}
.y12{bottom:678.493333pt;}
.y7a{bottom:687.773333pt;}
.y48{bottom:695.773333pt;}
.y11{bottom:696.093333pt;}
.y79{bottom:705.373333pt;}
.y47{bottom:713.373333pt;}
.y10{bottom:713.693333pt;}
.y78{bottom:722.973333pt;}
.y46{bottom:730.973333pt;}
.yf{bottom:731.293333pt;}
.y77{bottom:740.733333pt;}
.y45{bottom:748.733333pt;}
.ye{bottom:748.893333pt;}
.y76{bottom:758.333333pt;}
.y44{bottom:766.373333pt;}
.yd{bottom:768.613333pt;}
.y75{bottom:775.973333pt;}
.y43{bottom:783.973333pt;}
.yc{bottom:790.853333pt;}
.y74{bottom:793.573333pt;}
.y42{bottom:801.573333pt;}
.yb{bottom:804.133333pt;}
.y73{bottom:810.853333pt;}
.y41{bottom:819.173333pt;}
.ya{bottom:823.013333pt;}
.y72{bottom:828.613333pt;}
.y40{bottom:836.933333pt;}
.y9{bottom:843.813333pt;}
.y71{bottom:846.213333pt;}
.y3f{bottom:854.533333pt;}
.y8{bottom:871.973333pt;}
.y3e{bottom:872.133333pt;}
.y3d{bottom:889.733333pt;}
.y7{bottom:900.293333pt;}
.y3c{bottom:907.333333pt;}
.y3b{bottom:925.093333pt;}
.y5{bottom:934.853333pt;}
.y3a{bottom:942.693333pt;}
.y39{bottom:960.293333pt;}
.y4{bottom:962.213333pt;}
.y38{bottom:977.893333pt;}
.y3{bottom:989.573333pt;}
.y37{bottom:995.493333pt;}
.y9e{bottom:1012.960000pt;}
.y36{bottom:1013.280000pt;}
.y2{bottom:1016.800000pt;}
.y35{bottom:1040.160000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.800000pt;}
.hc{height:2.512500pt;}
.h6{height:33.918750pt;}
.h7{height:52.134375pt;}
.h5{height:53.535000pt;}
.ha{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.hb{height:71.680000pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:188.666667pt;}
.w4{width:519.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.xa{left:40.800000pt;}
.x2{left:47.039988pt;}
.x1{left:48.159988pt;}
.x3{left:54.559988pt;}
.x6{left:59.199988pt;}
.x9{left:63.359988pt;}
.x7{left:64.799988pt;}
.x4{left:66.079988pt;}
.x8{left:84.031988pt;}
.x5{left:85.791988pt;}
.xb{left:170.106667pt;}
.xc{left:229.466667pt;}
}




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