
    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_7d9c4f8190af0dc1b2fe53a8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_102b037139e0900a003992d4.woff')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_0d3baa8f181d8d2c8fea593b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1076414245cd78820d46ca8c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.008789;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_1a840482061db2dccd1b7211.woff')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_83813bd51d34d1ce89615cad.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5c76b8f9e2a7d91ef9440d52.woff')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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.lsc{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018720px;}
.lsb{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.738000px;}
.lsd{letter-spacing:4.320000px;}
.ls9{letter-spacing:33.960000px;}
.ls10{letter-spacing:64.002720px;}
.ls8{letter-spacing:91.362720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.ws5{word-spacing:-24.678000px;}
.ws3{word-spacing:-24.300000px;}
.ws4{word-spacing:-23.958720px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws9{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.wsa{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-12.060000px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-4.536000px;}
._14{margin-left:-3.528000px;}
._e{margin-left:-2.381040px;}
._0{margin-left:-1.267920px;}
._1{width:1.487280px;}
._4{width:2.912160px;}
._5{width:4.752000px;}
._6{width:5.760000px;}
._d{width:7.380720px;}
._11{width:9.023280px;}
._12{width:10.365360px;}
._b{width:11.592000px;}
._c{width:13.104000px;}
._17{width:14.328000px;}
._7{width:15.552000px;}
._8{width:16.632000px;}
._9{width:19.652640px;}
._a{width:21.027360px;}
._20{width:22.733040px;}
._18{width:23.904000px;}
._19{width:25.488000px;}
._1f{width:27.144000px;}
._1e{width:29.088000px;}
._1a{width:30.456000px;}
._2{width:31.632720px;}
._15{width:34.128000px;}
._16{width:35.136000px;}
._f{width:36.264000px;}
._10{width:37.572720px;}
._1b{width:39.265680px;}
._1c{width:42.480000px;}
._1d{width:43.920000px;}
._3{width:83.380080px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.y9{bottom:7.920000px;}
.y7{bottom:20.160000px;}
.y8{bottom:31.680000px;}
.y6{bottom:58.896000px;}
.y5{bottom:79.956000px;}
.y2d{bottom:124.956000px;}
.y74{bottom:130.716000px;}
.y9d{bottom:131.616000px;}
.y2c{bottom:145.656000px;}
.y51{bottom:149.616000px;}
.y73{bottom:151.410000px;}
.y9c{bottom:152.310000px;}
.y2b{bottom:166.350000px;}
.y72{bottom:172.110000px;}
.y9b{bottom:173.010000px;}
.y2a{bottom:187.050000px;}
.y50{bottom:191.370000px;}
.y71{bottom:192.810000px;}
.y9a{bottom:193.710000px;}
.y29{bottom:207.750000px;}
.y4f{bottom:212.070000px;}
.y70{bottom:213.510000px;}
.y99{bottom:214.410000px;}
.y28{bottom:228.450000px;}
.y4e{bottom:232.770000px;}
.y6f{bottom:234.210000px;}
.y98{bottom:235.110000px;}
.y27{bottom:249.150000px;}
.y4d{bottom:253.470000px;}
.y6e{bottom:254.910000px;}
.y97{bottom:255.810000px;}
.y4c{bottom:274.170000px;}
.y6d{bottom:275.610000px;}
.y96{bottom:276.510000px;}
.y26{bottom:290.910000px;}
.y4b{bottom:294.870000px;}
.y6c{bottom:296.310000px;}
.y95{bottom:297.210000px;}
.y4a{bottom:315.615000px;}
.y6b{bottom:317.055000px;}
.y94{bottom:317.955000px;}
.y25{bottom:332.535000px;}
.y49{bottom:336.315000px;}
.y6a{bottom:337.755000px;}
.y93{bottom:338.655000px;}
.y24{bottom:353.235000px;}
.y48{bottom:357.015000px;}
.y69{bottom:358.455000px;}
.y92{bottom:359.355000px;}
.y47{bottom:377.715000px;}
.y68{bottom:379.155000px;}
.y91{bottom:380.055000px;}
.y23{bottom:385.995000px;}
.y67{bottom:399.855000px;}
.y90{bottom:400.755000px;}
.y22{bottom:406.695000px;}
.y46{bottom:419.475000px;}
.y66{bottom:420.555000px;}
.y8f{bottom:421.455000px;}
.y21{bottom:439.455000px;}
.y65{bottom:441.255000px;}
.y8e{bottom:442.155000px;}
.y20{bottom:460.155000px;}
.y45{bottom:461.055000px;}
.y64{bottom:461.955000px;}
.y8d{bottom:462.855000px;}
.y1f{bottom:480.855000px;}
.y63{bottom:482.655000px;}
.y8c{bottom:483.555000px;}
.y1e{bottom:501.555000px;}
.y44{bottom:502.815000px;}
.y62{bottom:503.355000px;}
.y8b{bottom:504.255000px;}
.y1d{bottom:522.255000px;}
.y43{bottom:523.515000px;}
.y61{bottom:524.055000px;}
.y8a{bottom:524.955000px;}
.y1c{bottom:542.955000px;}
.y60{bottom:544.755000px;}
.y89{bottom:545.655000px;}
.y1b{bottom:563.685000px;}
.y42{bottom:565.305000px;}
.y5f{bottom:565.485000px;}
.y88{bottom:566.385000px;}
.y1a{bottom:584.385000px;}
.y41{bottom:586.005000px;}
.y5e{bottom:586.185000px;}
.y87{bottom:587.085000px;}
.y19{bottom:605.085000px;}
.y40{bottom:606.705000px;}
.y5d{bottom:606.885000px;}
.y86{bottom:607.785000px;}
.y18{bottom:625.785000px;}
.y3f{bottom:627.405000px;}
.y5c{bottom:627.585000px;}
.y85{bottom:628.485000px;}
.y17{bottom:646.485000px;}
.y3e{bottom:647.925000px;}
.y5b{bottom:648.285000px;}
.y84{bottom:649.185000px;}
.y16{bottom:667.185000px;}
.y3d{bottom:668.625000px;}
.y5a{bottom:668.985000px;}
.y83{bottom:669.885000px;}
.y15{bottom:687.885000px;}
.y3c{bottom:689.325000px;}
.y59{bottom:689.685000px;}
.y82{bottom:690.585000px;}
.y3b{bottom:710.025000px;}
.y58{bottom:710.385000px;}
.y81{bottom:711.285000px;}
.y14{bottom:729.465000px;}
.y3a{bottom:730.725000px;}
.y57{bottom:731.085000px;}
.y80{bottom:731.985000px;}
.y56{bottom:751.785000px;}
.y7f{bottom:752.685000px;}
.y13{bottom:771.225000px;}
.y39{bottom:772.485000px;}
.y7e{bottom:773.385000px;}
.y12{bottom:791.925000px;}
.y7d{bottom:794.085000px;}
.y11{bottom:812.670000px;}
.y38{bottom:814.290000px;}
.y7c{bottom:814.830000px;}
.y10{bottom:833.370000px;}
.y37{bottom:834.990000px;}
.y7b{bottom:835.530000px;}
.yf{bottom:854.070000px;}
.y36{bottom:855.690000px;}
.y7a{bottom:856.230000px;}
.ye{bottom:874.770000px;}
.y35{bottom:876.390000px;}
.y79{bottom:876.930000px;}
.yd{bottom:895.470000px;}
.y34{bottom:897.090000px;}
.y78{bottom:897.630000px;}
.y55{bottom:917.790000px;}
.y77{bottom:918.330000px;}
.yc{bottom:938.490000px;}
.y33{bottom:938.670000px;}
.y76{bottom:939.030000px;}
.y54{bottom:959.190000px;}
.y75{bottom:959.730000px;}
.yb{bottom:966.030000px;}
.y32{bottom:980.430000px;}
.y53{bottom:1000.770000px;}
.y31{bottom:1001.130000px;}
.y4{bottom:1013.190000px;}
.y52{bottom:1021.470000px;}
.y30{bottom:1021.830000px;}
.y2f{bottom:1042.530000px;}
.y3{bottom:1055.670000px;}
.y2e{bottom:1063.260000px;}
.y2{bottom:1079.280000px;}
.y1{bottom:1114.380000px;}
.h7{height:49.500000px;}
.h4{height:50.273438px;}
.h2{height:50.800781px;}
.hd{height:52.417969px;}
.h6{height:54.000000px;}
.h9{height:54.316406px;}
.hb{height:57.796523px;}
.h8{height:58.320000px;}
.he{height:59.343750px;}
.h3{height:59.436914px;}
.hc{height:61.043203px;}
.h5{height:65.884219px;}
.ha{height:67.565039px;}
.h1{height:86.255508px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:10.799986px;}
.x7{left:23.219986px;}
.x5{left:108.035986px;}
.xc{left:111.995986px;}
.x15{left:118.835986px;}
.x14{left:122.975986px;}
.x12{left:127.115986px;}
.xe{left:133.955986px;}
.x16{left:135.035986px;}
.xa{left:140.975986px;}
.x13{left:162.029986px;}
.x9{left:169.769986px;}
.x1{left:176.249986px;}
.xb{left:216.029986px;}
.x2{left:282.449986px;}
.x10{left:293.114986px;}
.xd{left:382.574986px;}
.xf{left:388.514986px;}
.x11{left:395.354986px;}
.x8{left:459.074986px;}
.x4{left:801.869986px;}
.x3{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016640pt;}
.lsb{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.656000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls9{letter-spacing:30.186667pt;}
.ls10{letter-spacing:56.891307pt;}
.ls8{letter-spacing:81.211307pt;}
.wsc{word-spacing:-53.120000pt;}
.ws5{word-spacing:-21.936000pt;}
.ws3{word-spacing:-21.600000pt;}
.ws4{word-spacing:-21.296640pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws9{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.wsa{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-10.720000pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-4.032000pt;}
._14{margin-left:-3.136000pt;}
._e{margin-left:-2.116480pt;}
._0{margin-left:-1.127040pt;}
._1{width:1.322027pt;}
._4{width:2.588587pt;}
._5{width:4.224000pt;}
._6{width:5.120000pt;}
._d{width:6.560640pt;}
._11{width:8.020693pt;}
._12{width:9.213653pt;}
._b{width:10.304000pt;}
._c{width:11.648000pt;}
._17{width:12.736000pt;}
._7{width:13.824000pt;}
._8{width:14.784000pt;}
._9{width:17.469013pt;}
._a{width:18.690987pt;}
._20{width:20.207147pt;}
._18{width:21.248000pt;}
._19{width:22.656000pt;}
._1f{width:24.128000pt;}
._1e{width:25.856000pt;}
._1a{width:27.072000pt;}
._2{width:28.117973pt;}
._15{width:30.336000pt;}
._16{width:31.232000pt;}
._f{width:32.234667pt;}
._10{width:33.397973pt;}
._1b{width:34.902827pt;}
._1c{width:37.760000pt;}
._1d{width:39.040000pt;}
._3{width:74.115627pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:7.040000pt;}
.y7{bottom:17.920000pt;}
.y8{bottom:28.160000pt;}
.y6{bottom:52.352000pt;}
.y5{bottom:71.072000pt;}
.y2d{bottom:111.072000pt;}
.y74{bottom:116.192000pt;}
.y9d{bottom:116.992000pt;}
.y2c{bottom:129.472000pt;}
.y51{bottom:132.992000pt;}
.y73{bottom:134.586667pt;}
.y9c{bottom:135.386667pt;}
.y2b{bottom:147.866667pt;}
.y72{bottom:152.986667pt;}
.y9b{bottom:153.786667pt;}
.y2a{bottom:166.266667pt;}
.y50{bottom:170.106667pt;}
.y71{bottom:171.386667pt;}
.y9a{bottom:172.186667pt;}
.y29{bottom:184.666667pt;}
.y4f{bottom:188.506667pt;}
.y70{bottom:189.786667pt;}
.y99{bottom:190.586667pt;}
.y28{bottom:203.066667pt;}
.y4e{bottom:206.906667pt;}
.y6f{bottom:208.186667pt;}
.y98{bottom:208.986667pt;}
.y27{bottom:221.466667pt;}
.y4d{bottom:225.306667pt;}
.y6e{bottom:226.586667pt;}
.y97{bottom:227.386667pt;}
.y4c{bottom:243.706667pt;}
.y6d{bottom:244.986667pt;}
.y96{bottom:245.786667pt;}
.y26{bottom:258.586667pt;}
.y4b{bottom:262.106667pt;}
.y6c{bottom:263.386667pt;}
.y95{bottom:264.186667pt;}
.y4a{bottom:280.546667pt;}
.y6b{bottom:281.826667pt;}
.y94{bottom:282.626667pt;}
.y25{bottom:295.586667pt;}
.y49{bottom:298.946667pt;}
.y6a{bottom:300.226667pt;}
.y93{bottom:301.026667pt;}
.y24{bottom:313.986667pt;}
.y48{bottom:317.346667pt;}
.y69{bottom:318.626667pt;}
.y92{bottom:319.426667pt;}
.y47{bottom:335.746667pt;}
.y68{bottom:337.026667pt;}
.y91{bottom:337.826667pt;}
.y23{bottom:343.106667pt;}
.y67{bottom:355.426667pt;}
.y90{bottom:356.226667pt;}
.y22{bottom:361.506667pt;}
.y46{bottom:372.866667pt;}
.y66{bottom:373.826667pt;}
.y8f{bottom:374.626667pt;}
.y21{bottom:390.626667pt;}
.y65{bottom:392.226667pt;}
.y8e{bottom:393.026667pt;}
.y20{bottom:409.026667pt;}
.y45{bottom:409.826667pt;}
.y64{bottom:410.626667pt;}
.y8d{bottom:411.426667pt;}
.y1f{bottom:427.426667pt;}
.y63{bottom:429.026667pt;}
.y8c{bottom:429.826667pt;}
.y1e{bottom:445.826667pt;}
.y44{bottom:446.946667pt;}
.y62{bottom:447.426667pt;}
.y8b{bottom:448.226667pt;}
.y1d{bottom:464.226667pt;}
.y43{bottom:465.346667pt;}
.y61{bottom:465.826667pt;}
.y8a{bottom:466.626667pt;}
.y1c{bottom:482.626667pt;}
.y60{bottom:484.226667pt;}
.y89{bottom:485.026667pt;}
.y1b{bottom:501.053333pt;}
.y42{bottom:502.493333pt;}
.y5f{bottom:502.653333pt;}
.y88{bottom:503.453333pt;}
.y1a{bottom:519.453333pt;}
.y41{bottom:520.893333pt;}
.y5e{bottom:521.053333pt;}
.y87{bottom:521.853333pt;}
.y19{bottom:537.853333pt;}
.y40{bottom:539.293333pt;}
.y5d{bottom:539.453333pt;}
.y86{bottom:540.253333pt;}
.y18{bottom:556.253333pt;}
.y3f{bottom:557.693333pt;}
.y5c{bottom:557.853333pt;}
.y85{bottom:558.653333pt;}
.y17{bottom:574.653333pt;}
.y3e{bottom:575.933333pt;}
.y5b{bottom:576.253333pt;}
.y84{bottom:577.053333pt;}
.y16{bottom:593.053333pt;}
.y3d{bottom:594.333333pt;}
.y5a{bottom:594.653333pt;}
.y83{bottom:595.453333pt;}
.y15{bottom:611.453333pt;}
.y3c{bottom:612.733333pt;}
.y59{bottom:613.053333pt;}
.y82{bottom:613.853333pt;}
.y3b{bottom:631.133333pt;}
.y58{bottom:631.453333pt;}
.y81{bottom:632.253333pt;}
.y14{bottom:648.413333pt;}
.y3a{bottom:649.533333pt;}
.y57{bottom:649.853333pt;}
.y80{bottom:650.653333pt;}
.y56{bottom:668.253333pt;}
.y7f{bottom:669.053333pt;}
.y13{bottom:685.533333pt;}
.y39{bottom:686.653333pt;}
.y7e{bottom:687.453333pt;}
.y12{bottom:703.933333pt;}
.y7d{bottom:705.853333pt;}
.y11{bottom:722.373333pt;}
.y38{bottom:723.813333pt;}
.y7c{bottom:724.293333pt;}
.y10{bottom:740.773333pt;}
.y37{bottom:742.213333pt;}
.y7b{bottom:742.693333pt;}
.yf{bottom:759.173333pt;}
.y36{bottom:760.613333pt;}
.y7a{bottom:761.093333pt;}
.ye{bottom:777.573333pt;}
.y35{bottom:779.013333pt;}
.y79{bottom:779.493333pt;}
.yd{bottom:795.973333pt;}
.y34{bottom:797.413333pt;}
.y78{bottom:797.893333pt;}
.y55{bottom:815.813333pt;}
.y77{bottom:816.293333pt;}
.yc{bottom:834.213333pt;}
.y33{bottom:834.373333pt;}
.y76{bottom:834.693333pt;}
.y54{bottom:852.613333pt;}
.y75{bottom:853.093333pt;}
.yb{bottom:858.693333pt;}
.y32{bottom:871.493333pt;}
.y53{bottom:889.573333pt;}
.y31{bottom:889.893333pt;}
.y4{bottom:900.613333pt;}
.y52{bottom:907.973333pt;}
.y30{bottom:908.293333pt;}
.y2f{bottom:926.693333pt;}
.y3{bottom:938.373333pt;}
.y2e{bottom:945.120000pt;}
.y2{bottom:959.360000pt;}
.y1{bottom:990.560000pt;}
.h7{height:44.000000pt;}
.h4{height:44.687500pt;}
.h2{height:45.156250pt;}
.hd{height:46.593750pt;}
.h6{height:48.000000pt;}
.h9{height:48.281250pt;}
.hb{height:51.374687pt;}
.h8{height:51.840000pt;}
.he{height:52.750000pt;}
.h3{height:52.832812pt;}
.hc{height:54.260625pt;}
.h5{height:58.563750pt;}
.ha{height:60.057813pt;}
.h1{height:76.671562pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.599988pt;}
.x7{left:20.639988pt;}
.x5{left:96.031988pt;}
.xc{left:99.551988pt;}
.x15{left:105.631988pt;}
.x14{left:109.311988pt;}
.x12{left:112.991988pt;}
.xe{left:119.071988pt;}
.x16{left:120.031988pt;}
.xa{left:125.311988pt;}
.x13{left:144.026655pt;}
.x9{left:150.906655pt;}
.x1{left:156.666655pt;}
.xb{left:192.026655pt;}
.x2{left:251.066655pt;}
.x10{left:260.546655pt;}
.xd{left:340.066655pt;}
.xf{left:345.346655pt;}
.x11{left:351.426655pt;}
.x8{left:408.066655pt;}
.x4{left:712.773321pt;}
.x3{left:720.133321pt;}
}




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