
    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_0fe5a7ff680cb17237a78194.woff2')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_012bd7e6cbd8aad8299b140a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9885bba1161e65db277a8511.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_0c1cd9fbf3f6179aaf93d0a3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_35ebc842b85bdbba6387b0f0.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b6c2db70cdd6cf27b8a45b2a.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0ab658cbc728b02459e6d5f0.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_7bda77abe96ea4350590d790.woff2')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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls7{letter-spacing:4.320000px;}
.lsb{letter-spacing:6.480000px;}
.ls9{letter-spacing:9.360000px;}
.ls5{letter-spacing:11.520000px;}
.ls6{letter-spacing:23.040000px;}
.ls3{letter-spacing:28.080000px;}
.lsd{letter-spacing:33.840000px;}
.lsa{letter-spacing:35.280000px;}
.lsc{letter-spacing:53.280000px;}
.lse{letter-spacing:54.144000px;}
.ls2{letter-spacing:59.309760px;}
.ls1{letter-spacing:93.029760px;}
.ls8{letter-spacing:139.104000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.026000px;}
._1{width:1.080000px;}
._4{width:2.736000px;}
._24{width:3.834000px;}
._3{width:4.848000px;}
._2{width:6.096000px;}
._5{width:7.680000px;}
._6{width:9.192000px;}
._1f{width:10.944000px;}
._e{width:11.946000px;}
._8{width:13.176000px;}
._9{width:14.400000px;}
._21{width:15.480000px;}
._7{width:16.488000px;}
._d{width:19.170000px;}
._c{width:20.304000px;}
._1a{width:21.312000px;}
._23{width:22.800000px;}
._22{width:24.066000px;}
._20{width:25.200000px;}
._17{width:26.514000px;}
._b{width:27.720000px;}
._a{width:28.800000px;}
._1d{width:30.240000px;}
._10{width:31.536000px;}
._f{width:33.264000px;}
._25{width:34.512000px;}
._16{width:35.688000px;}
._1b{width:36.720000px;}
._26{width:37.764000px;}
._13{width:38.862000px;}
._12{width:39.978000px;}
._11{width:41.112000px;}
._14{width:42.984000px;}
._15{width:44.064000px;}
._1e{width:45.576000px;}
._1c{width:46.872000px;}
._27{width:53.130000px;}
._28{width:54.402000px;}
._18{width:59.112000px;}
._19{width:60.264000px;}
._29{width:65.736000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,84,150);}
.fs3{font-size:5.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y65{bottom:5.580000px;}
.y6{bottom:10.260000px;}
.y7{bottom:11.340000px;}
.y64{bottom:27.900000px;}
.y6e{bottom:39.060000px;}
.y68{bottom:39.105000px;}
.y72{bottom:50.214000px;}
.y63{bottom:50.220000px;}
.y6b{bottom:50.445000px;}
.y8{bottom:55.440000px;}
.y5{bottom:57.600000px;}
.y6d{bottom:61.380000px;}
.y67{bottom:61.605000px;}
.y73{bottom:72.534000px;}
.y70{bottom:72.540000px;}
.y75{bottom:72.570000px;}
.y77{bottom:72.720000px;}
.y6a{bottom:72.765000px;}
.y6f{bottom:94.860000px;}
.y69{bottom:95.085000px;}
.y71{bottom:100.296000px;}
.y35{bottom:106.416000px;}
.y9d{bottom:109.296000px;}
.y9c{bottom:118.656000px;}
.y34{bottom:130.356000px;}
.y61{bottom:133.056000px;}
.y9b{bottom:142.596000px;}
.y33{bottom:154.110000px;}
.y60{bottom:156.810000px;}
.y9a{bottom:166.350000px;}
.y32{bottom:177.870000px;}
.y5f{bottom:180.570000px;}
.y99{bottom:190.110000px;}
.y6c{bottom:190.470000px;}
.y31{bottom:201.630000px;}
.y5e{bottom:204.510000px;}
.y98{bottom:213.870000px;}
.y30{bottom:225.570000px;}
.y5d{bottom:228.270000px;}
.y97{bottom:237.810000px;}
.y2f{bottom:249.330000px;}
.y5c{bottom:252.030000px;}
.y96{bottom:261.570000px;}
.y2e{bottom:273.090000px;}
.y5b{bottom:275.790000px;}
.y95{bottom:285.330000px;}
.y2d{bottom:296.850000px;}
.y5a{bottom:299.730000px;}
.y66{bottom:302.790000px;}
.y94{bottom:309.090000px;}
.y2c{bottom:320.790000px;}
.y59{bottom:323.490000px;}
.y93{bottom:333.030000px;}
.y2b{bottom:344.595000px;}
.y58{bottom:347.295000px;}
.y92{bottom:356.835000px;}
.y2a{bottom:368.355000px;}
.y57{bottom:371.055000px;}
.y91{bottom:380.595000px;}
.y29{bottom:392.115000px;}
.y56{bottom:394.995000px;}
.y90{bottom:404.355000px;}
.y62{bottom:415.335000px;}
.y28{bottom:416.055000px;}
.y55{bottom:418.755000px;}
.y8f{bottom:428.295000px;}
.y27{bottom:439.815000px;}
.y54{bottom:442.515000px;}
.y8e{bottom:452.055000px;}
.y26{bottom:463.575000px;}
.y53{bottom:466.275000px;}
.y8d{bottom:475.815000px;}
.y25{bottom:487.335000px;}
.y52{bottom:490.215000px;}
.y8c{bottom:499.575000px;}
.y24{bottom:511.095000px;}
.y51{bottom:513.975000px;}
.y8b{bottom:523.335000px;}
.y23{bottom:535.035000px;}
.y50{bottom:537.735000px;}
.y8a{bottom:547.275000px;}
.y22{bottom:558.795000px;}
.y4f{bottom:561.495000px;}
.y89{bottom:571.035000px;}
.y21{bottom:582.555000px;}
.y4e{bottom:585.435000px;}
.y88{bottom:594.795000px;}
.y20{bottom:606.345000px;}
.y4d{bottom:609.225000px;}
.y87{bottom:618.585000px;}
.y1f{bottom:630.285000px;}
.y4c{bottom:632.985000px;}
.y86{bottom:642.525000px;}
.y1e{bottom:654.045000px;}
.y4b{bottom:656.745000px;}
.y85{bottom:666.285000px;}
.y1d{bottom:677.805000px;}
.y4a{bottom:680.685000px;}
.y84{bottom:690.045000px;}
.y1c{bottom:701.565000px;}
.y49{bottom:704.445000px;}
.y83{bottom:713.805000px;}
.y1b{bottom:725.505000px;}
.y48{bottom:728.205000px;}
.y82{bottom:737.745000px;}
.y1a{bottom:749.265000px;}
.y47{bottom:751.965000px;}
.y81{bottom:761.505000px;}
.y19{bottom:773.025000px;}
.y46{bottom:775.725000px;}
.y80{bottom:785.265000px;}
.y18{bottom:796.785000px;}
.y45{bottom:799.665000px;}
.y7f{bottom:809.025000px;}
.y17{bottom:820.725000px;}
.y44{bottom:823.425000px;}
.y7e{bottom:832.965000px;}
.y16{bottom:844.485000px;}
.y43{bottom:847.185000px;}
.y7d{bottom:856.725000px;}
.y15{bottom:868.245000px;}
.y42{bottom:870.990000px;}
.y7c{bottom:880.530000px;}
.y14{bottom:892.050000px;}
.y41{bottom:894.930000px;}
.y7b{bottom:904.290000px;}
.y13{bottom:915.990000px;}
.y40{bottom:918.690000px;}
.y7a{bottom:928.230000px;}
.y12{bottom:939.750000px;}
.y3f{bottom:942.450000px;}
.y79{bottom:951.990000px;}
.y11{bottom:963.510000px;}
.y3e{bottom:966.210000px;}
.y78{bottom:975.750000px;}
.y10{bottom:984.210000px;}
.y3d{bottom:990.150000px;}
.y76{bottom:993.210000px;}
.yf{bottom:1004.910000px;}
.y3c{bottom:1013.910000px;}
.ye{bottom:1025.610000px;}
.y3b{bottom:1037.670000px;}
.yd{bottom:1046.310000px;}
.y3a{bottom:1061.430000px;}
.yc{bottom:1068.270000px;}
.y74{bottom:1083.390000px;}
.y39{bottom:1085.370000px;}
.yb{bottom:1095.990000px;}
.y38{bottom:1109.130000px;}
.ya{bottom:1123.530000px;}
.y37{bottom:1132.890000px;}
.y9{bottom:1151.100000px;}
.y36{bottom:1156.680000px;}
.y4{bottom:1178.640000px;}
.y3{bottom:1195.560000px;}
.y2{bottom:1212.300000px;}
.y1{bottom:1229.040000px;}
.h6{height:4.021875px;}
.h3{height:27.036000px;}
.h2{height:38.100586px;}
.h4{height:50.273438px;}
.h8{height:50.800781px;}
.h11{height:52.417969px;}
.ha{height:58.429688px;}
.h9{height:59.343750px;}
.h5{height:65.884219px;}
.hb{height:66.960000px;}
.h7{height:67.565039px;}
.he{height:89.280000px;}
.hf{height:89.316000px;}
.h10{height:89.460000px;}
.hd{height:111.600000px;}
.hc{height:111.816000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:105.516000px;}
.w7{width:232.770000px;}
.w6{width:232.995000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.560000px;}
.x13{left:60.876000px;}
.x5{left:87.660000px;}
.xa{left:95.795987px;}
.x2{left:101.375987px;}
.xb{left:108.035987px;}
.x16{left:122.795987px;}
.x17{left:127.835987px;}
.xc{left:135.755987px;}
.x1{left:141.515987px;}
.x12{left:148.895987px;}
.xd{left:179.849987px;}
.x3{left:206.489987px;}
.x11{left:295.814987px;}
.x6{left:297.795000px;}
.x14{left:321.735000px;}
.xf{left:326.414987px;}
.xe{left:348.554987px;}
.x7{left:393.915000px;}
.x10{left:405.974987px;}
.x4{left:446.474987px;}
.x9{left:500.145000px;}
.x15{left:555.405000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7{letter-spacing:3.840000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls9{letter-spacing:8.320000pt;}
.ls5{letter-spacing:10.240000pt;}
.ls6{letter-spacing:20.480000pt;}
.ls3{letter-spacing:24.960000pt;}
.lsd{letter-spacing:30.080000pt;}
.lsa{letter-spacing:31.360000pt;}
.lsc{letter-spacing:47.360000pt;}
.lse{letter-spacing:48.128000pt;}
.ls2{letter-spacing:52.719787pt;}
.ls1{letter-spacing:82.693120pt;}
.ls8{letter-spacing:123.648000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.960000pt;}
._4{width:2.432000pt;}
._24{width:3.408000pt;}
._3{width:4.309333pt;}
._2{width:5.418667pt;}
._5{width:6.826667pt;}
._6{width:8.170667pt;}
._1f{width:9.728000pt;}
._e{width:10.618667pt;}
._8{width:11.712000pt;}
._9{width:12.800000pt;}
._21{width:13.760000pt;}
._7{width:14.656000pt;}
._d{width:17.040000pt;}
._c{width:18.048000pt;}
._1a{width:18.944000pt;}
._23{width:20.266667pt;}
._22{width:21.392000pt;}
._20{width:22.400000pt;}
._17{width:23.568000pt;}
._b{width:24.640000pt;}
._a{width:25.600000pt;}
._1d{width:26.880000pt;}
._10{width:28.032000pt;}
._f{width:29.568000pt;}
._25{width:30.677333pt;}
._16{width:31.722667pt;}
._1b{width:32.640000pt;}
._26{width:33.568000pt;}
._13{width:34.544000pt;}
._12{width:35.536000pt;}
._11{width:36.544000pt;}
._14{width:38.208000pt;}
._15{width:39.168000pt;}
._1e{width:40.512000pt;}
._1c{width:41.664000pt;}
._27{width:47.226667pt;}
._28{width:48.357333pt;}
._18{width:52.544000pt;}
._19{width:53.568000pt;}
._29{width:58.432000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:4.960000pt;}
.y6{bottom:9.120000pt;}
.y7{bottom:10.080000pt;}
.y64{bottom:24.800000pt;}
.y6e{bottom:34.720000pt;}
.y68{bottom:34.760000pt;}
.y72{bottom:44.634667pt;}
.y63{bottom:44.640000pt;}
.y6b{bottom:44.840000pt;}
.y8{bottom:49.280000pt;}
.y5{bottom:51.200000pt;}
.y6d{bottom:54.560000pt;}
.y67{bottom:54.760000pt;}
.y73{bottom:64.474667pt;}
.y70{bottom:64.480000pt;}
.y75{bottom:64.506667pt;}
.y77{bottom:64.640000pt;}
.y6a{bottom:64.680000pt;}
.y6f{bottom:84.320000pt;}
.y69{bottom:84.520000pt;}
.y71{bottom:89.152000pt;}
.y35{bottom:94.592000pt;}
.y9d{bottom:97.152000pt;}
.y9c{bottom:105.472000pt;}
.y34{bottom:115.872000pt;}
.y61{bottom:118.272000pt;}
.y9b{bottom:126.752000pt;}
.y33{bottom:136.986667pt;}
.y60{bottom:139.386667pt;}
.y9a{bottom:147.866667pt;}
.y32{bottom:158.106667pt;}
.y5f{bottom:160.506667pt;}
.y99{bottom:168.986667pt;}
.y6c{bottom:169.306667pt;}
.y31{bottom:179.226667pt;}
.y5e{bottom:181.786667pt;}
.y98{bottom:190.106667pt;}
.y30{bottom:200.506667pt;}
.y5d{bottom:202.906667pt;}
.y97{bottom:211.386667pt;}
.y2f{bottom:221.626667pt;}
.y5c{bottom:224.026667pt;}
.y96{bottom:232.506667pt;}
.y2e{bottom:242.746667pt;}
.y5b{bottom:245.146667pt;}
.y95{bottom:253.626667pt;}
.y2d{bottom:263.866667pt;}
.y5a{bottom:266.426667pt;}
.y66{bottom:269.146667pt;}
.y94{bottom:274.746667pt;}
.y2c{bottom:285.146667pt;}
.y59{bottom:287.546667pt;}
.y93{bottom:296.026667pt;}
.y2b{bottom:306.306667pt;}
.y58{bottom:308.706667pt;}
.y92{bottom:317.186667pt;}
.y2a{bottom:327.426667pt;}
.y57{bottom:329.826667pt;}
.y91{bottom:338.306667pt;}
.y29{bottom:348.546667pt;}
.y56{bottom:351.106667pt;}
.y90{bottom:359.426667pt;}
.y62{bottom:369.186667pt;}
.y28{bottom:369.826667pt;}
.y55{bottom:372.226667pt;}
.y8f{bottom:380.706667pt;}
.y27{bottom:390.946667pt;}
.y54{bottom:393.346667pt;}
.y8e{bottom:401.826667pt;}
.y26{bottom:412.066667pt;}
.y53{bottom:414.466667pt;}
.y8d{bottom:422.946667pt;}
.y25{bottom:433.186667pt;}
.y52{bottom:435.746667pt;}
.y8c{bottom:444.066667pt;}
.y24{bottom:454.306667pt;}
.y51{bottom:456.866667pt;}
.y8b{bottom:465.186667pt;}
.y23{bottom:475.586667pt;}
.y50{bottom:477.986667pt;}
.y8a{bottom:486.466667pt;}
.y22{bottom:496.706667pt;}
.y4f{bottom:499.106667pt;}
.y89{bottom:507.586667pt;}
.y21{bottom:517.826667pt;}
.y4e{bottom:520.386667pt;}
.y88{bottom:528.706667pt;}
.y20{bottom:538.973333pt;}
.y4d{bottom:541.533333pt;}
.y87{bottom:549.853333pt;}
.y1f{bottom:560.253333pt;}
.y4c{bottom:562.653333pt;}
.y86{bottom:571.133333pt;}
.y1e{bottom:581.373333pt;}
.y4b{bottom:583.773333pt;}
.y85{bottom:592.253333pt;}
.y1d{bottom:602.493333pt;}
.y4a{bottom:605.053333pt;}
.y84{bottom:613.373333pt;}
.y1c{bottom:623.613333pt;}
.y49{bottom:626.173333pt;}
.y83{bottom:634.493333pt;}
.y1b{bottom:644.893333pt;}
.y48{bottom:647.293333pt;}
.y82{bottom:655.773333pt;}
.y1a{bottom:666.013333pt;}
.y47{bottom:668.413333pt;}
.y81{bottom:676.893333pt;}
.y19{bottom:687.133333pt;}
.y46{bottom:689.533333pt;}
.y80{bottom:698.013333pt;}
.y18{bottom:708.253333pt;}
.y45{bottom:710.813333pt;}
.y7f{bottom:719.133333pt;}
.y17{bottom:729.533333pt;}
.y44{bottom:731.933333pt;}
.y7e{bottom:740.413333pt;}
.y16{bottom:750.653333pt;}
.y43{bottom:753.053333pt;}
.y7d{bottom:761.533333pt;}
.y15{bottom:771.773333pt;}
.y42{bottom:774.213333pt;}
.y7c{bottom:782.693333pt;}
.y14{bottom:792.933333pt;}
.y41{bottom:795.493333pt;}
.y7b{bottom:803.813333pt;}
.y13{bottom:814.213333pt;}
.y40{bottom:816.613333pt;}
.y7a{bottom:825.093333pt;}
.y12{bottom:835.333333pt;}
.y3f{bottom:837.733333pt;}
.y79{bottom:846.213333pt;}
.y11{bottom:856.453333pt;}
.y3e{bottom:858.853333pt;}
.y78{bottom:867.333333pt;}
.y10{bottom:874.853333pt;}
.y3d{bottom:880.133333pt;}
.y76{bottom:882.853333pt;}
.yf{bottom:893.253333pt;}
.y3c{bottom:901.253333pt;}
.ye{bottom:911.653333pt;}
.y3b{bottom:922.373333pt;}
.yd{bottom:930.053333pt;}
.y3a{bottom:943.493333pt;}
.yc{bottom:949.573333pt;}
.y74{bottom:963.013333pt;}
.y39{bottom:964.773333pt;}
.yb{bottom:974.213333pt;}
.y38{bottom:985.893333pt;}
.ya{bottom:998.693333pt;}
.y37{bottom:1007.013333pt;}
.y9{bottom:1023.200000pt;}
.y36{bottom:1028.160000pt;}
.y4{bottom:1047.680000pt;}
.y3{bottom:1062.720000pt;}
.y2{bottom:1077.600000pt;}
.y1{bottom:1092.480000pt;}
.h6{height:3.575000pt;}
.h3{height:24.032000pt;}
.h2{height:33.867188pt;}
.h4{height:44.687500pt;}
.h8{height:45.156250pt;}
.h11{height:46.593750pt;}
.ha{height:51.937500pt;}
.h9{height:52.750000pt;}
.h5{height:58.563750pt;}
.hb{height:59.520000pt;}
.h7{height:60.057813pt;}
.he{height:79.360000pt;}
.hf{height:79.392000pt;}
.h10{height:79.520000pt;}
.hd{height:99.200000pt;}
.hc{height:99.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:93.792000pt;}
.w7{width:206.906667pt;}
.w6{width:207.106667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.720000pt;}
.x13{left:54.112000pt;}
.x5{left:77.920000pt;}
.xa{left:85.151988pt;}
.x2{left:90.111988pt;}
.xb{left:96.031988pt;}
.x16{left:109.151988pt;}
.x17{left:113.631988pt;}
.xc{left:120.671988pt;}
.x1{left:125.791988pt;}
.x12{left:132.351988pt;}
.xd{left:159.866655pt;}
.x3{left:183.546655pt;}
.x11{left:262.946655pt;}
.x6{left:264.706667pt;}
.x14{left:285.986667pt;}
.xf{left:290.146655pt;}
.xe{left:309.826655pt;}
.x7{left:350.146667pt;}
.x10{left:360.866655pt;}
.x4{left:396.866655pt;}
.x9{left:444.573333pt;}
.x15{left:493.693333pt;}
}




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