
    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_f92faaa15cee08e87f7c37bd.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_dcfb56c3283ffbc04fb3de23.woff')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_8ba14d157f8aa64c7ccc48e5.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_c462f7cf1dde0e13897d6756.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6be2ccedb4de175ab657a200.woff')format("woff");}.ff5{font-family:ff5;line-height:0.738770;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_86aa722187412d385fd7e850.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_74d14ec39685038b3b95315e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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);}
.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;}
.lsb{letter-spacing:-0.774000px;}
.ls9{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.457800px;}
.ls7{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.037440px;}
.ls14{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.306600px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:4.266720px;}
.ls11{letter-spacing:4.986720px;}
.lse{letter-spacing:7.866720px;}
.ls10{letter-spacing:8.586720px;}
.ls13{letter-spacing:11.466720px;}
.ls12{letter-spacing:41.706720px;}
.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:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._3{margin-left:-1459.111680px;}
._6{margin-left:-1452.651480px;}
._5{margin-left:-938.816640px;}
._7{margin-left:-585.889920px;}
._4{margin-left:-8.213760px;}
._16{margin-left:-6.454080px;}
._15{margin-left:-5.320080px;}
._9{margin-left:-3.638880px;}
._a{margin-left:-2.375040px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:2.662320px;}
._f{width:4.312800px;}
._10{width:5.508480px;}
._e{width:7.316640px;}
._d{width:8.589600px;}
._14{width:10.408320px;}
._13{width:11.414160px;}
._17{width:12.467520px;}
._12{width:13.813920px;}
._11{width:16.035840px;}
._1a{width:17.102160px;}
._8{width:20.588400px;}
._b{width:22.855680px;}
._19{width:24.921360px;}
._18{width:26.115120px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:5.760000px;}
.y3b{bottom:5.940000px;}
.y46{bottom:8.820000px;}
.y38{bottom:27.000000px;}
.y6{bottom:60.120000px;}
.y34{bottom:89.100000px;}
.yc0{bottom:94.500000px;}
.ya2{bottom:105.480000px;}
.y33{bottom:109.080000px;}
.ybf{bottom:114.480000px;}
.y6e{bottom:115.380000px;}
.ya1{bottom:125.280000px;}
.y32{bottom:128.880000px;}
.ybe{bottom:134.280000px;}
.y6d{bottom:135.360000px;}
.ya0{bottom:145.080000px;}
.y31{bottom:148.680000px;}
.ybd{bottom:154.080000px;}
.y6c{bottom:155.160000px;}
.y9f{bottom:164.880000px;}
.y30{bottom:168.480000px;}
.ybc{bottom:173.880000px;}
.y6b{bottom:174.960000px;}
.y9e{bottom:184.680000px;}
.y2f{bottom:188.280000px;}
.ybb{bottom:193.680000px;}
.y6a{bottom:194.760000px;}
.y9d{bottom:204.660000px;}
.y2e{bottom:208.260000px;}
.yba{bottom:213.690000px;}
.y69{bottom:214.590000px;}
.y9c{bottom:224.490000px;}
.y2d{bottom:228.090000px;}
.yb9{bottom:233.490000px;}
.y68{bottom:234.570000px;}
.y9b{bottom:244.290000px;}
.y2c{bottom:247.890000px;}
.yb8{bottom:253.290000px;}
.y67{bottom:254.370000px;}
.y9a{bottom:264.090000px;}
.y2b{bottom:267.690000px;}
.yb7{bottom:273.090000px;}
.y66{bottom:274.170000px;}
.y99{bottom:283.890000px;}
.y2a{bottom:287.490000px;}
.yb6{bottom:292.890000px;}
.y65{bottom:293.970000px;}
.y98{bottom:303.870000px;}
.y29{bottom:307.470000px;}
.yb5{bottom:312.870000px;}
.y64{bottom:313.770000px;}
.yb4{bottom:323.670000px;}
.y28{bottom:327.270000px;}
.y97{bottom:332.670000px;}
.y63{bottom:333.750000px;}
.yb3{bottom:343.470000px;}
.y27{bottom:347.070000px;}
.y96{bottom:352.470000px;}
.y62{bottom:353.550000px;}
.yb2{bottom:363.270000px;}
.y26{bottom:366.870000px;}
.y95{bottom:372.270000px;}
.y61{bottom:373.350000px;}
.yb1{bottom:383.070000px;}
.y25{bottom:386.670000px;}
.y94{bottom:392.070000px;}
.y60{bottom:393.150000px;}
.yb0{bottom:403.050000px;}
.y24{bottom:406.650000px;}
.y93{bottom:412.050000px;}
.y5f{bottom:412.950000px;}
.yaf{bottom:422.850000px;}
.y23{bottom:426.450000px;}
.y92{bottom:431.850000px;}
.y5e{bottom:432.930000px;}
.yae{bottom:442.650000px;}
.y22{bottom:446.295000px;}
.y91{bottom:451.695000px;}
.y5d{bottom:452.775000px;}
.yad{bottom:462.495000px;}
.y21{bottom:466.095000px;}
.y90{bottom:471.495000px;}
.y5c{bottom:472.575000px;}
.yac{bottom:482.295000px;}
.y20{bottom:485.895000px;}
.y8f{bottom:491.295000px;}
.y5b{bottom:492.375000px;}
.yab{bottom:502.275000px;}
.y1f{bottom:505.875000px;}
.y8e{bottom:511.275000px;}
.y5a{bottom:512.175000px;}
.yaa{bottom:522.075000px;}
.y1e{bottom:525.675000px;}
.y8d{bottom:531.075000px;}
.y59{bottom:532.155000px;}
.ya9{bottom:541.875000px;}
.y1d{bottom:545.475000px;}
.y8c{bottom:550.875000px;}
.y58{bottom:551.955000px;}
.ya8{bottom:561.675000px;}
.y1c{bottom:565.275000px;}
.y8b{bottom:570.675000px;}
.y57{bottom:571.755000px;}
.ya7{bottom:581.475000px;}
.y1b{bottom:585.075000px;}
.y8a{bottom:590.475000px;}
.y56{bottom:591.555000px;}
.ya6{bottom:601.455000px;}
.y1a{bottom:605.055000px;}
.y89{bottom:610.455000px;}
.y55{bottom:611.355000px;}
.ya5{bottom:621.255000px;}
.y19{bottom:627.015000px;}
.y88{bottom:630.255000px;}
.y54{bottom:631.335000px;}
.ya4{bottom:641.055000px;}
.y87{bottom:650.055000px;}
.y53{bottom:651.135000px;}
.y18{bottom:655.815000px;}
.ya3{bottom:660.855000px;}
.y86{bottom:669.855000px;}
.y52{bottom:670.935000px;}
.y17{bottom:675.795000px;}
.y85{bottom:689.685000px;}
.y51{bottom:690.765000px;}
.y16{bottom:695.625000px;}
.y84{bottom:709.665000px;}
.y50{bottom:710.565000px;}
.y15{bottom:715.425000px;}
.y83{bottom:729.465000px;}
.y4f{bottom:730.545000px;}
.y14{bottom:735.225000px;}
.y82{bottom:749.265000px;}
.y4e{bottom:750.345000px;}
.y13{bottom:755.025000px;}
.y81{bottom:769.065000px;}
.y4d{bottom:770.145000px;}
.y12{bottom:775.005000px;}
.y80{bottom:788.865000px;}
.y4c{bottom:789.945000px;}
.y11{bottom:794.805000px;}
.y7f{bottom:808.845000px;}
.y4b{bottom:809.745000px;}
.y10{bottom:814.605000px;}
.y7e{bottom:828.645000px;}
.y4a{bottom:829.725000px;}
.yf{bottom:834.405000px;}
.y7d{bottom:848.445000px;}
.y49{bottom:849.525000px;}
.ye{bottom:854.205000px;}
.y7c{bottom:868.245000px;}
.y48{bottom:869.325000px;}
.yd{bottom:874.005000px;}
.y7b{bottom:888.045000px;}
.y47{bottom:889.125000px;}
.yc{bottom:896.145000px;}
.y45{bottom:903.705000px;}
.y7a{bottom:908.025000px;}
.yb{bottom:916.125000px;}
.y44{bottom:927.870000px;}
.ya{bottom:936.510000px;}
.y79{bottom:947.670000px;}
.y43{bottom:948.930000px;}
.y9{bottom:957.750000px;}
.y78{bottom:967.470000px;}
.y42{bottom:969.990000px;}
.y8{bottom:981.150000px;}
.y77{bottom:987.270000px;}
.y41{bottom:991.230000px;}
.y76{bottom:1007.250000px;}
.y40{bottom:1012.290000px;}
.y7{bottom:1013.010000px;}
.y75{bottom:1027.050000px;}
.y3f{bottom:1033.350000px;}
.y74{bottom:1046.850000px;}
.y5{bottom:1051.350000px;}
.y3e{bottom:1054.410000px;}
.y73{bottom:1066.650000px;}
.y3d{bottom:1075.650000px;}
.y4{bottom:1082.130000px;}
.y72{bottom:1086.450000px;}
.y3c{bottom:1096.710000px;}
.y71{bottom:1106.430000px;}
.y3{bottom:1112.910000px;}
.y37{bottom:1117.770000px;}
.y70{bottom:1126.230000px;}
.y39{bottom:1139.010000px;}
.y2{bottom:1143.870000px;}
.y6f{bottom:1146.030000px;}
.y36{bottom:1165.860000px;}
.y1{bottom:1177.740000px;}
.y35{bottom:1193.400000px;}
.he{height:19.800000px;}
.hc{height:19.836000px;}
.hd{height:19.980000px;}
.hf{height:22.896000px;}
.hb{height:41.076000px;}
.h8{height:41.726953px;}
.h6{height:42.164648px;}
.h10{height:43.506914px;}
.h9{height:43.681992px;}
.h5{height:46.251562px;}
.h7{height:46.736719px;}
.h4{height:58.819922px;}
.h3{height:59.436914px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:34.020000px;}
.w9{width:34.200000px;}
.w8{width:60.480000px;}
.w7{width:87.336000px;}
.w6{width:94.140000px;}
.w4{width:198.435000px;}
.wa{width:198.615000px;}
.w5{width:242.670000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:54.179987px;}
.xb{left:70.559987px;}
.x2{left:74.519987px;}
.x9{left:75.599987px;}
.xa{left:80.315987px;}
.xc{left:108.035987px;}
.x3{left:209.190000px;}
.x5{left:243.570000px;}
.x6{left:442.365000px;}
.x7{left:536.865000px;}
.x8{left:624.570000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.406933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.033280pt;}
.ls14{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.272533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:3.792640pt;}
.ls11{letter-spacing:4.432640pt;}
.lse{letter-spacing:6.992640pt;}
.ls10{letter-spacing:7.632640pt;}
.ls13{letter-spacing:10.192640pt;}
.ls12{letter-spacing:37.072640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._3{margin-left:-1296.988160pt;}
._6{margin-left:-1291.245760pt;}
._5{margin-left:-834.503680pt;}
._7{margin-left:-520.791040pt;}
._4{margin-left:-7.301120pt;}
._16{margin-left:-5.736960pt;}
._15{margin-left:-4.728960pt;}
._9{margin-left:-3.234560pt;}
._a{margin-left:-2.111147pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.366507pt;}
._f{width:3.833600pt;}
._10{width:4.896427pt;}
._e{width:6.503680pt;}
._d{width:7.635200pt;}
._14{width:9.251840pt;}
._13{width:10.145920pt;}
._17{width:11.082240pt;}
._12{width:12.279040pt;}
._11{width:14.254080pt;}
._1a{width:15.201920pt;}
._8{width:18.300800pt;}
._b{width:20.316160pt;}
._19{width:22.152320pt;}
._18{width:23.213440pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:5.120000pt;}
.y3b{bottom:5.280000pt;}
.y46{bottom:7.840000pt;}
.y38{bottom:24.000000pt;}
.y6{bottom:53.440000pt;}
.y34{bottom:79.200000pt;}
.yc0{bottom:84.000000pt;}
.ya2{bottom:93.760000pt;}
.y33{bottom:96.960000pt;}
.ybf{bottom:101.760000pt;}
.y6e{bottom:102.560000pt;}
.ya1{bottom:111.360000pt;}
.y32{bottom:114.560000pt;}
.ybe{bottom:119.360000pt;}
.y6d{bottom:120.320000pt;}
.ya0{bottom:128.960000pt;}
.y31{bottom:132.160000pt;}
.ybd{bottom:136.960000pt;}
.y6c{bottom:137.920000pt;}
.y9f{bottom:146.560000pt;}
.y30{bottom:149.760000pt;}
.ybc{bottom:154.560000pt;}
.y6b{bottom:155.520000pt;}
.y9e{bottom:164.160000pt;}
.y2f{bottom:167.360000pt;}
.ybb{bottom:172.160000pt;}
.y6a{bottom:173.120000pt;}
.y9d{bottom:181.920000pt;}
.y2e{bottom:185.120000pt;}
.yba{bottom:189.946667pt;}
.y69{bottom:190.746667pt;}
.y9c{bottom:199.546667pt;}
.y2d{bottom:202.746667pt;}
.yb9{bottom:207.546667pt;}
.y68{bottom:208.506667pt;}
.y9b{bottom:217.146667pt;}
.y2c{bottom:220.346667pt;}
.yb8{bottom:225.146667pt;}
.y67{bottom:226.106667pt;}
.y9a{bottom:234.746667pt;}
.y2b{bottom:237.946667pt;}
.yb7{bottom:242.746667pt;}
.y66{bottom:243.706667pt;}
.y99{bottom:252.346667pt;}
.y2a{bottom:255.546667pt;}
.yb6{bottom:260.346667pt;}
.y65{bottom:261.306667pt;}
.y98{bottom:270.106667pt;}
.y29{bottom:273.306667pt;}
.yb5{bottom:278.106667pt;}
.y64{bottom:278.906667pt;}
.yb4{bottom:287.706667pt;}
.y28{bottom:290.906667pt;}
.y97{bottom:295.706667pt;}
.y63{bottom:296.666667pt;}
.yb3{bottom:305.306667pt;}
.y27{bottom:308.506667pt;}
.y96{bottom:313.306667pt;}
.y62{bottom:314.266667pt;}
.yb2{bottom:322.906667pt;}
.y26{bottom:326.106667pt;}
.y95{bottom:330.906667pt;}
.y61{bottom:331.866667pt;}
.yb1{bottom:340.506667pt;}
.y25{bottom:343.706667pt;}
.y94{bottom:348.506667pt;}
.y60{bottom:349.466667pt;}
.yb0{bottom:358.266667pt;}
.y24{bottom:361.466667pt;}
.y93{bottom:366.266667pt;}
.y5f{bottom:367.066667pt;}
.yaf{bottom:375.866667pt;}
.y23{bottom:379.066667pt;}
.y92{bottom:383.866667pt;}
.y5e{bottom:384.826667pt;}
.yae{bottom:393.466667pt;}
.y22{bottom:396.706667pt;}
.y91{bottom:401.506667pt;}
.y5d{bottom:402.466667pt;}
.yad{bottom:411.106667pt;}
.y21{bottom:414.306667pt;}
.y90{bottom:419.106667pt;}
.y5c{bottom:420.066667pt;}
.yac{bottom:428.706667pt;}
.y20{bottom:431.906667pt;}
.y8f{bottom:436.706667pt;}
.y5b{bottom:437.666667pt;}
.yab{bottom:446.466667pt;}
.y1f{bottom:449.666667pt;}
.y8e{bottom:454.466667pt;}
.y5a{bottom:455.266667pt;}
.yaa{bottom:464.066667pt;}
.y1e{bottom:467.266667pt;}
.y8d{bottom:472.066667pt;}
.y59{bottom:473.026667pt;}
.ya9{bottom:481.666667pt;}
.y1d{bottom:484.866667pt;}
.y8c{bottom:489.666667pt;}
.y58{bottom:490.626667pt;}
.ya8{bottom:499.266667pt;}
.y1c{bottom:502.466667pt;}
.y8b{bottom:507.266667pt;}
.y57{bottom:508.226667pt;}
.ya7{bottom:516.866667pt;}
.y1b{bottom:520.066667pt;}
.y8a{bottom:524.866667pt;}
.y56{bottom:525.826667pt;}
.ya6{bottom:534.626667pt;}
.y1a{bottom:537.826667pt;}
.y89{bottom:542.626667pt;}
.y55{bottom:543.426667pt;}
.ya5{bottom:552.226667pt;}
.y19{bottom:557.346667pt;}
.y88{bottom:560.226667pt;}
.y54{bottom:561.186667pt;}
.ya4{bottom:569.826667pt;}
.y87{bottom:577.826667pt;}
.y53{bottom:578.786667pt;}
.y18{bottom:582.946667pt;}
.ya3{bottom:587.426667pt;}
.y86{bottom:595.426667pt;}
.y52{bottom:596.386667pt;}
.y17{bottom:600.706667pt;}
.y85{bottom:613.053333pt;}
.y51{bottom:614.013333pt;}
.y16{bottom:618.333333pt;}
.y84{bottom:630.813333pt;}
.y50{bottom:631.613333pt;}
.y15{bottom:635.933333pt;}
.y83{bottom:648.413333pt;}
.y4f{bottom:649.373333pt;}
.y14{bottom:653.533333pt;}
.y82{bottom:666.013333pt;}
.y4e{bottom:666.973333pt;}
.y13{bottom:671.133333pt;}
.y81{bottom:683.613333pt;}
.y4d{bottom:684.573333pt;}
.y12{bottom:688.893333pt;}
.y80{bottom:701.213333pt;}
.y4c{bottom:702.173333pt;}
.y11{bottom:706.493333pt;}
.y7f{bottom:718.973333pt;}
.y4b{bottom:719.773333pt;}
.y10{bottom:724.093333pt;}
.y7e{bottom:736.573333pt;}
.y4a{bottom:737.533333pt;}
.yf{bottom:741.693333pt;}
.y7d{bottom:754.173333pt;}
.y49{bottom:755.133333pt;}
.ye{bottom:759.293333pt;}
.y7c{bottom:771.773333pt;}
.y48{bottom:772.733333pt;}
.yd{bottom:776.893333pt;}
.y7b{bottom:789.373333pt;}
.y47{bottom:790.333333pt;}
.yc{bottom:796.573333pt;}
.y45{bottom:803.293333pt;}
.y7a{bottom:807.133333pt;}
.yb{bottom:814.333333pt;}
.y44{bottom:824.773333pt;}
.ya{bottom:832.453333pt;}
.y79{bottom:842.373333pt;}
.y43{bottom:843.493333pt;}
.y9{bottom:851.333333pt;}
.y78{bottom:859.973333pt;}
.y42{bottom:862.213333pt;}
.y8{bottom:872.133333pt;}
.y77{bottom:877.573333pt;}
.y41{bottom:881.093333pt;}
.y76{bottom:895.333333pt;}
.y40{bottom:899.813333pt;}
.y7{bottom:900.453333pt;}
.y75{bottom:912.933333pt;}
.y3f{bottom:918.533333pt;}
.y74{bottom:930.533333pt;}
.y5{bottom:934.533333pt;}
.y3e{bottom:937.253333pt;}
.y73{bottom:948.133333pt;}
.y3d{bottom:956.133333pt;}
.y4{bottom:961.893333pt;}
.y72{bottom:965.733333pt;}
.y3c{bottom:974.853333pt;}
.y71{bottom:983.493333pt;}
.y3{bottom:989.253333pt;}
.y37{bottom:993.573333pt;}
.y70{bottom:1001.093333pt;}
.y39{bottom:1012.453333pt;}
.y2{bottom:1016.773333pt;}
.y6f{bottom:1018.693333pt;}
.y36{bottom:1036.320000pt;}
.y1{bottom:1046.880000pt;}
.y35{bottom:1060.800000pt;}
.he{height:17.600000pt;}
.hc{height:17.632000pt;}
.hd{height:17.760000pt;}
.hf{height:20.352000pt;}
.hb{height:36.512000pt;}
.h8{height:37.090625pt;}
.h6{height:37.479688pt;}
.h10{height:38.672812pt;}
.h9{height:38.828437pt;}
.h5{height:41.112500pt;}
.h7{height:41.543750pt;}
.h4{height:52.284375pt;}
.h3{height:52.832812pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:30.240000pt;}
.w9{width:30.400000pt;}
.w8{width:53.760000pt;}
.w7{width:77.632000pt;}
.w6{width:83.680000pt;}
.w4{width:176.386667pt;}
.wa{width:176.546667pt;}
.w5{width:215.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:48.159988pt;}
.xb{left:62.719988pt;}
.x2{left:66.239988pt;}
.x9{left:67.199988pt;}
.xa{left:71.391988pt;}
.xc{left:96.031988pt;}
.x3{left:185.946667pt;}
.x5{left:216.506667pt;}
.x6{left:393.213333pt;}
.x7{left:477.213333pt;}
.x8{left:555.173333pt;}
}




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