
    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_f7675647e375f960d66fed5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_d6d66eab9e4acf4d4b9564d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_2543ecfbf92897a3f23281b7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9dc604440b02267be19e4a33.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_babd203643a6f4b557f1e038.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_353831fba9e0aff3988deec1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_5f6fba3c6863f22071c3d821.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916016;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);}
.v1{vertical-align:-88.560000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.864000px;}
.ls3{letter-spacing:2.160000px;}
.ls0{letter-spacing:4.320000px;}
.ls2{letter-spacing:64.421280px;}
.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:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-4.248000px;}
._b{margin-left:-3.222720px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._1b{width:2.630400px;}
._7{width:3.648000px;}
._8{width:4.752000px;}
._18{width:6.482880px;}
._14{width:7.683840px;}
._11{width:8.928000px;}
._10{width:9.936000px;}
._1c{width:10.943040px;}
._c{width:11.952000px;}
._e{width:13.152000px;}
._d{width:14.304000px;}
._15{width:15.408000px;}
._f{width:16.560000px;}
._19{width:19.152000px;}
._1a{width:20.448000px;}
._22{width:21.456000px;}
._16{width:22.608000px;}
._17{width:23.808000px;}
._20{width:25.724160px;}
._1f{width:26.945280px;}
._1d{width:28.656000px;}
._21{width:29.664000px;}
._9{width:30.888000px;}
._24{width:32.797440px;}
._23{width:34.289280px;}
._1e{width:36.780000px;}
._12{width:38.172000px;}
._13{width:39.312000px;}
._5{width:40.793760px;}
._6{width:41.942880px;}
._2{width:57.647520px;}
._3{width:58.700880px;}
._26{width:69.048000px;}
._25{width:70.056000px;}
._28{width:85.392000px;}
._27{width:87.065280px;}
._4{width:897.089280px;}
.fc2{color:rgb(48,113,195);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:82.116000px;}
.y5{bottom:102.816000px;}
.y4{bottom:129.096000px;}
.y3{bottom:148.176000px;}
.y2{bottom:167.250000px;}
.y9a{bottom:194.250000px;}
.y52{bottom:202.890000px;}
.y68{bottom:206.490000px;}
.y2e{bottom:207.390000px;}
.y7b{bottom:211.350000px;}
.yb8{bottom:212.790000px;}
.y99{bottom:214.950000px;}
.y6f{bottom:217.470000px;}
.y2d{bottom:228.090000px;}
.yb7{bottom:233.490000px;}
.y51{bottom:233.850000px;}
.y98{bottom:235.650000px;}
.y67{bottom:237.630000px;}
.y7a{bottom:242.490000px;}
.y6e{bottom:248.430000px;}
.y2c{bottom:248.790000px;}
.yb6{bottom:254.190000px;}
.y50{bottom:264.990000px;}
.y66{bottom:268.590000px;}
.y2b{bottom:269.490000px;}
.y79{bottom:273.450000px;}
.y97{bottom:274.350000px;}
.yb5{bottom:274.890000px;}
.y6d{bottom:279.570000px;}
.y2a{bottom:290.190000px;}
.y96{bottom:295.050000px;}
.yb4{bottom:295.590000px;}
.y4f{bottom:295.950000px;}
.y65{bottom:299.730000px;}
.y78{bottom:304.590000px;}
.y6c{bottom:310.530000px;}
.y29{bottom:310.890000px;}
.y95{bottom:315.750000px;}
.y4e{bottom:327.090000px;}
.y64{bottom:330.690000px;}
.y28{bottom:331.590000px;}
.yb3{bottom:334.290000px;}
.y77{bottom:335.550000px;}
.y6b{bottom:341.715000px;}
.y94{bottom:354.495000px;}
.yb2{bottom:355.035000px;}
.y4d{bottom:358.095000px;}
.y27{bottom:358.455000px;}
.y63{bottom:361.875000px;}
.y76{bottom:366.735000px;}
.yca{bottom:370.335000px;}
.y6a{bottom:372.675000px;}
.y93{bottom:375.195000px;}
.yb1{bottom:375.735000px;}
.y26{bottom:379.155000px;}
.y4c{bottom:389.055000px;}
.yc9{bottom:391.035000px;}
.y62{bottom:392.835000px;}
.y75{bottom:397.695000px;}
.y25{bottom:399.855000px;}
.yc8{bottom:411.735000px;}
.y69{bottom:411.915000px;}
.y92{bottom:413.895000px;}
.yb0{bottom:414.435000px;}
.y4b{bottom:420.195000px;}
.y24{bottom:420.555000px;}
.y61{bottom:423.975000px;}
.y74{bottom:428.835000px;}
.yc7{bottom:432.435000px;}
.y91{bottom:434.595000px;}
.yaf{bottom:435.135000px;}
.y23{bottom:441.255000px;}
.y4a{bottom:451.155000px;}
.y60{bottom:454.935000px;}
.y90{bottom:455.295000px;}
.yae{bottom:455.835000px;}
.y73{bottom:459.795000px;}
.y22{bottom:461.955000px;}
.yc6{bottom:471.135000px;}
.yad{bottom:476.535000px;}
.y49{bottom:482.295000px;}
.y21{bottom:482.655000px;}
.y5f{bottom:486.075000px;}
.y72{bottom:490.935000px;}
.yc5{bottom:491.835000px;}
.y8f{bottom:493.995000px;}
.y20{bottom:503.355000px;}
.yc4{bottom:512.535000px;}
.y48{bottom:513.255000px;}
.y8e{bottom:514.695000px;}
.yac{bottom:515.235000px;}
.y5e{bottom:517.035000px;}
.y1f{bottom:524.055000px;}
.y71{bottom:528.015000px;}
.y8d{bottom:535.395000px;}
.yab{bottom:535.935000px;}
.y47{bottom:544.395000px;}
.y1e{bottom:544.755000px;}
.y5d{bottom:548.175000px;}
.yc3{bottom:551.235000px;}
.y8c{bottom:556.095000px;}
.y1d{bottom:565.455000px;}
.y70{bottom:567.255000px;}
.yc2{bottom:571.935000px;}
.yaa{bottom:574.635000px;}
.y46{bottom:575.355000px;}
.y5c{bottom:579.135000px;}
.y8b{bottom:582.735000px;}
.y1c{bottom:586.155000px;}
.yc1{bottom:592.635000px;}
.ya9{bottom:595.335000px;}
.y45{bottom:602.715000px;}
.y1b{bottom:606.885000px;}
.y8a{bottom:609.945000px;}
.y5b{bottom:610.305000px;}
.yc0{bottom:613.365000px;}
.ya8{bottom:616.065000px;}
.y1a{bottom:627.585000px;}
.y44{bottom:635.325000px;}
.y5a{bottom:641.265000px;}
.y19{bottom:648.285000px;}
.y89{bottom:649.185000px;}
.ybf{bottom:652.065000px;}
.ya7{bottom:654.765000px;}
.y43{bottom:661.965000px;}
.y18{bottom:668.985000px;}
.y59{bottom:672.405000px;}
.ybe{bottom:672.765000px;}
.ya6{bottom:675.465000px;}
.y42{bottom:682.665000px;}
.y17{bottom:689.685000px;}
.y88{bottom:692.205000px;}
.ybd{bottom:693.465000px;}
.y41{bottom:703.365000px;}
.y16{bottom:710.385000px;}
.ya5{bottom:714.165000px;}
.y87{bottom:723.345000px;}
.y40{bottom:724.065000px;}
.y15{bottom:731.085000px;}
.y58{bottom:734.505000px;}
.ya4{bottom:734.865000px;}
.y3f{bottom:744.765000px;}
.y14{bottom:751.605000px;}
.ybc{bottom:752.865000px;}
.y86{bottom:754.305000px;}
.ya3{bottom:755.565000px;}
.y3e{bottom:765.465000px;}
.y13{bottom:772.305000px;}
.ybb{bottom:773.565000px;}
.y85{bottom:785.445000px;}
.y3d{bottom:786.165000px;}
.y12{bottom:793.005000px;}
.ya2{bottom:794.265000px;}
.y57{bottom:796.605000px;}
.y3c{bottom:806.865000px;}
.y11{bottom:813.705000px;}
.ya1{bottom:814.965000px;}
.y84{bottom:816.405000px;}
.y3b{bottom:827.565000px;}
.y10{bottom:834.405000px;}
.ya0{bottom:835.665000px;}
.y83{bottom:847.545000px;}
.y3a{bottom:848.265000px;}
.yba{bottom:853.665000px;}
.yf{bottom:855.105000px;}
.y56{bottom:858.705000px;}
.y39{bottom:868.965000px;}
.y9f{bottom:874.410000px;}
.ye{bottom:875.850000px;}
.y82{bottom:878.550000px;}
.y38{bottom:889.710000px;}
.y9e{bottom:895.110000px;}
.yd{bottom:896.550000px;}
.y81{bottom:909.510000px;}
.y37{bottom:910.410000px;}
.y9d{bottom:915.810000px;}
.yc{bottom:917.250000px;}
.y55{bottom:920.850000px;}
.y36{bottom:931.110000px;}
.yb9{bottom:933.810000px;}
.yb{bottom:939.390000px;}
.y80{bottom:940.650000px;}
.y35{bottom:951.810000px;}
.y9c{bottom:954.510000px;}
.ya{bottom:966.930000px;}
.y7f{bottom:971.610000px;}
.y34{bottom:972.510000px;}
.y9b{bottom:975.210000px;}
.y54{bottom:982.950000px;}
.y33{bottom:993.210000px;}
.y9{bottom:994.470000px;}
.y7e{bottom:1002.750000px;}
.y32{bottom:1013.910000px;}
.y7d{bottom:1033.710000px;}
.y31{bottom:1034.610000px;}
.y8{bottom:1042.890000px;}
.y53{bottom:1045.050000px;}
.y30{bottom:1055.310000px;}
.y7{bottom:1070.430000px;}
.y7c{bottom:1073.130000px;}
.y2f{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h5{height:59.343750px;}
.h3{height:59.383125px;}
.h6{height:63.949219px;}
.h2{height:64.546875px;}
.h7{height:74.820586px;}
.h4{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.415987px;}
.x8{left:148.895987px;}
.x4{left:153.569987px;}
.x9{left:191.549987px;}
.x6{left:245.729987px;}
.x7{left:277.409987px;}
.x5{left:392.294987px;}
.x1{left:467.744987px;}
.x3{left:786.749987px;}
@media print{
.v1{vertical-align:-78.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls0{letter-spacing:3.840000pt;}
.ls2{letter-spacing:57.263360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-3.776000pt;}
._b{margin-left:-2.864640pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._1b{width:2.338133pt;}
._7{width:3.242667pt;}
._8{width:4.224000pt;}
._18{width:5.762560pt;}
._14{width:6.830080pt;}
._11{width:7.936000pt;}
._10{width:8.832000pt;}
._1c{width:9.727147pt;}
._c{width:10.624000pt;}
._e{width:11.690667pt;}
._d{width:12.714667pt;}
._15{width:13.696000pt;}
._f{width:14.720000pt;}
._19{width:17.024000pt;}
._1a{width:18.176000pt;}
._22{width:19.072000pt;}
._16{width:20.096000pt;}
._17{width:21.162667pt;}
._20{width:22.865920pt;}
._1f{width:23.951360pt;}
._1d{width:25.472000pt;}
._21{width:26.368000pt;}
._9{width:27.456000pt;}
._24{width:29.153280pt;}
._23{width:30.479360pt;}
._1e{width:32.693333pt;}
._12{width:33.930667pt;}
._13{width:34.944000pt;}
._5{width:36.261120pt;}
._6{width:37.282560pt;}
._2{width:51.242240pt;}
._3{width:52.178560pt;}
._26{width:61.376000pt;}
._25{width:62.272000pt;}
._28{width:75.904000pt;}
._27{width:77.391360pt;}
._4{width:797.412693pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:72.992000pt;}
.y5{bottom:91.392000pt;}
.y4{bottom:114.752000pt;}
.y3{bottom:131.712000pt;}
.y2{bottom:148.666667pt;}
.y9a{bottom:172.666667pt;}
.y52{bottom:180.346667pt;}
.y68{bottom:183.546667pt;}
.y2e{bottom:184.346667pt;}
.y7b{bottom:187.866667pt;}
.yb8{bottom:189.146667pt;}
.y99{bottom:191.066667pt;}
.y6f{bottom:193.306667pt;}
.y2d{bottom:202.746667pt;}
.yb7{bottom:207.546667pt;}
.y51{bottom:207.866667pt;}
.y98{bottom:209.466667pt;}
.y67{bottom:211.226667pt;}
.y7a{bottom:215.546667pt;}
.y6e{bottom:220.826667pt;}
.y2c{bottom:221.146667pt;}
.yb6{bottom:225.946667pt;}
.y50{bottom:235.546667pt;}
.y66{bottom:238.746667pt;}
.y2b{bottom:239.546667pt;}
.y79{bottom:243.066667pt;}
.y97{bottom:243.866667pt;}
.yb5{bottom:244.346667pt;}
.y6d{bottom:248.506667pt;}
.y2a{bottom:257.946667pt;}
.y96{bottom:262.266667pt;}
.yb4{bottom:262.746667pt;}
.y4f{bottom:263.066667pt;}
.y65{bottom:266.426667pt;}
.y78{bottom:270.746667pt;}
.y6c{bottom:276.026667pt;}
.y29{bottom:276.346667pt;}
.y95{bottom:280.666667pt;}
.y4e{bottom:290.746667pt;}
.y64{bottom:293.946667pt;}
.y28{bottom:294.746667pt;}
.yb3{bottom:297.146667pt;}
.y77{bottom:298.266667pt;}
.y6b{bottom:303.746667pt;}
.y94{bottom:315.106667pt;}
.yb2{bottom:315.586667pt;}
.y4d{bottom:318.306667pt;}
.y27{bottom:318.626667pt;}
.y63{bottom:321.666667pt;}
.y76{bottom:325.986667pt;}
.yca{bottom:329.186667pt;}
.y6a{bottom:331.266667pt;}
.y93{bottom:333.506667pt;}
.yb1{bottom:333.986667pt;}
.y26{bottom:337.026667pt;}
.y4c{bottom:345.826667pt;}
.yc9{bottom:347.586667pt;}
.y62{bottom:349.186667pt;}
.y75{bottom:353.506667pt;}
.y25{bottom:355.426667pt;}
.yc8{bottom:365.986667pt;}
.y69{bottom:366.146667pt;}
.y92{bottom:367.906667pt;}
.yb0{bottom:368.386667pt;}
.y4b{bottom:373.506667pt;}
.y24{bottom:373.826667pt;}
.y61{bottom:376.866667pt;}
.y74{bottom:381.186667pt;}
.yc7{bottom:384.386667pt;}
.y91{bottom:386.306667pt;}
.yaf{bottom:386.786667pt;}
.y23{bottom:392.226667pt;}
.y4a{bottom:401.026667pt;}
.y60{bottom:404.386667pt;}
.y90{bottom:404.706667pt;}
.yae{bottom:405.186667pt;}
.y73{bottom:408.706667pt;}
.y22{bottom:410.626667pt;}
.yc6{bottom:418.786667pt;}
.yad{bottom:423.586667pt;}
.y49{bottom:428.706667pt;}
.y21{bottom:429.026667pt;}
.y5f{bottom:432.066667pt;}
.y72{bottom:436.386667pt;}
.yc5{bottom:437.186667pt;}
.y8f{bottom:439.106667pt;}
.y20{bottom:447.426667pt;}
.yc4{bottom:455.586667pt;}
.y48{bottom:456.226667pt;}
.y8e{bottom:457.506667pt;}
.yac{bottom:457.986667pt;}
.y5e{bottom:459.586667pt;}
.y1f{bottom:465.826667pt;}
.y71{bottom:469.346667pt;}
.y8d{bottom:475.906667pt;}
.yab{bottom:476.386667pt;}
.y47{bottom:483.906667pt;}
.y1e{bottom:484.226667pt;}
.y5d{bottom:487.266667pt;}
.yc3{bottom:489.986667pt;}
.y8c{bottom:494.306667pt;}
.y1d{bottom:502.626667pt;}
.y70{bottom:504.226667pt;}
.yc2{bottom:508.386667pt;}
.yaa{bottom:510.786667pt;}
.y46{bottom:511.426667pt;}
.y5c{bottom:514.786667pt;}
.y8b{bottom:517.986667pt;}
.y1c{bottom:521.026667pt;}
.yc1{bottom:526.786667pt;}
.ya9{bottom:529.186667pt;}
.y45{bottom:535.746667pt;}
.y1b{bottom:539.453333pt;}
.y8a{bottom:542.173333pt;}
.y5b{bottom:542.493333pt;}
.yc0{bottom:545.213333pt;}
.ya8{bottom:547.613333pt;}
.y1a{bottom:557.853333pt;}
.y44{bottom:564.733333pt;}
.y5a{bottom:570.013333pt;}
.y19{bottom:576.253333pt;}
.y89{bottom:577.053333pt;}
.ybf{bottom:579.613333pt;}
.ya7{bottom:582.013333pt;}
.y43{bottom:588.413333pt;}
.y18{bottom:594.653333pt;}
.y59{bottom:597.693333pt;}
.ybe{bottom:598.013333pt;}
.ya6{bottom:600.413333pt;}
.y42{bottom:606.813333pt;}
.y17{bottom:613.053333pt;}
.y88{bottom:615.293333pt;}
.ybd{bottom:616.413333pt;}
.y41{bottom:625.213333pt;}
.y16{bottom:631.453333pt;}
.ya5{bottom:634.813333pt;}
.y87{bottom:642.973333pt;}
.y40{bottom:643.613333pt;}
.y15{bottom:649.853333pt;}
.y58{bottom:652.893333pt;}
.ya4{bottom:653.213333pt;}
.y3f{bottom:662.013333pt;}
.y14{bottom:668.093333pt;}
.ybc{bottom:669.213333pt;}
.y86{bottom:670.493333pt;}
.ya3{bottom:671.613333pt;}
.y3e{bottom:680.413333pt;}
.y13{bottom:686.493333pt;}
.ybb{bottom:687.613333pt;}
.y85{bottom:698.173333pt;}
.y3d{bottom:698.813333pt;}
.y12{bottom:704.893333pt;}
.ya2{bottom:706.013333pt;}
.y57{bottom:708.093333pt;}
.y3c{bottom:717.213333pt;}
.y11{bottom:723.293333pt;}
.ya1{bottom:724.413333pt;}
.y84{bottom:725.693333pt;}
.y3b{bottom:735.613333pt;}
.y10{bottom:741.693333pt;}
.ya0{bottom:742.813333pt;}
.y83{bottom:753.373333pt;}
.y3a{bottom:754.013333pt;}
.yba{bottom:758.813333pt;}
.yf{bottom:760.093333pt;}
.y56{bottom:763.293333pt;}
.y39{bottom:772.413333pt;}
.y9f{bottom:777.253333pt;}
.ye{bottom:778.533333pt;}
.y82{bottom:780.933333pt;}
.y38{bottom:790.853333pt;}
.y9e{bottom:795.653333pt;}
.yd{bottom:796.933333pt;}
.y81{bottom:808.453333pt;}
.y37{bottom:809.253333pt;}
.y9d{bottom:814.053333pt;}
.yc{bottom:815.333333pt;}
.y55{bottom:818.533333pt;}
.y36{bottom:827.653333pt;}
.yb9{bottom:830.053333pt;}
.yb{bottom:835.013333pt;}
.y80{bottom:836.133333pt;}
.y35{bottom:846.053333pt;}
.y9c{bottom:848.453333pt;}
.ya{bottom:859.493333pt;}
.y7f{bottom:863.653333pt;}
.y34{bottom:864.453333pt;}
.y9b{bottom:866.853333pt;}
.y54{bottom:873.733333pt;}
.y33{bottom:882.853333pt;}
.y9{bottom:883.973333pt;}
.y7e{bottom:891.333333pt;}
.y32{bottom:901.253333pt;}
.y7d{bottom:918.853333pt;}
.y31{bottom:919.653333pt;}
.y8{bottom:927.013333pt;}
.y53{bottom:928.933333pt;}
.y30{bottom:938.053333pt;}
.y7{bottom:951.493333pt;}
.y7c{bottom:953.893333pt;}
.y2f{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h5{height:52.750000pt;}
.h3{height:52.785000pt;}
.h6{height:56.843750pt;}
.h2{height:57.375000pt;}
.h7{height:66.507188pt;}
.h4{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x8{left:132.351988pt;}
.x4{left:136.506655pt;}
.x9{left:170.266655pt;}
.x6{left:218.426655pt;}
.x7{left:246.586655pt;}
.x5{left:348.706655pt;}
.x1{left:415.773322pt;}
.x3{left:699.333322pt;}
}




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