
    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_11ded3b3e1b9d1cc8479fc37.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_8ba617fc1ba6aac968780f36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_a4ba2f31885d13a9b1f6c785.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_a47f5f642c3ade154a267f38.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_7af0a5117d45c1f2ff7a7a8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_c0339e506b2c4944969ae581.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_129f9d9e3ae8a439fa016d3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_14d3b2b46054d9637deb229b.woff2')format("woff");}.ff9{font-family:ff9;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: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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:4.320000px;}
.ls5{letter-spacing:18.000000px;}
.lsd{letter-spacing:18.720000px;}
.ls8{letter-spacing:33.120000px;}
.lse{letter-spacing:54.144000px;}
.ls2{letter-spacing:59.309760px;}
.ls4{letter-spacing:61.920000px;}
.ls1{letter-spacing:93.029760px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-1.188000px;}
._0{width:1.068000px;}
._3{width:2.268000px;}
._1{width:3.333600px;}
._2d{width:4.454400px;}
._23{width:5.580000px;}
._1e{width:6.624000px;}
._13{width:7.992000px;}
._24{width:9.864000px;}
._25{width:11.232000px;}
._22{width:12.492000px;}
._5{width:13.776000px;}
._4{width:14.952000px;}
._2b{width:16.008000px;}
._a{width:20.016000px;}
._12{width:21.168000px;}
._e{width:26.640000px;}
._f{width:28.188000px;}
._d{width:30.240000px;}
._2c{width:31.500000px;}
._17{width:32.688000px;}
._11{width:33.696000px;}
._14{width:36.072000px;}
._2a{width:39.816000px;}
._32{width:41.076000px;}
._1a{width:42.192000px;}
._1d{width:43.416000px;}
._b{width:45.504000px;}
._c{width:46.824000px;}
._18{width:48.240000px;}
._16{width:50.976000px;}
._15{width:51.984000px;}
._26{width:53.280000px;}
._30{width:58.104000px;}
._31{width:59.412000px;}
._6{width:61.776000px;}
._7{width:63.180000px;}
._1b{width:90.000000px;}
._8{width:92.232000px;}
._9{width:93.252000px;}
._28{width:97.632000px;}
._29{width:98.640000px;}
._10{width:100.632000px;}
._27{width:111.672000px;}
._2f{width:114.840000px;}
._2e{width:115.848000px;}
._20{width:132.336000px;}
._21{width:133.416000px;}
._1c{width:142.920000px;}
._1f{width:162.000000px;}
._19{width:547.056000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc5{color:transparent;}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.960000px;}
.y32{bottom:5.760000px;}
.y35{bottom:5.940000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y27{bottom:14.220000px;}
.y2b{bottom:15.120000px;}
.y62{bottom:19.080000px;}
.y25{bottom:24.660000px;}
.y5e{bottom:24.705000px;}
.y47{bottom:25.020000px;}
.y31{bottom:26.460000px;}
.y51{bottom:34.920000px;}
.y5c{bottom:35.100000px;}
.y48{bottom:35.460000px;}
.y2a{bottom:35.820000px;}
.y4a{bottom:45.360000px;}
.y57{bottom:45.390000px;}
.y7f{bottom:45.405000px;}
.y46{bottom:45.720000px;}
.y55{bottom:46.080000px;}
.y37{bottom:46.434000px;}
.y30{bottom:47.160000px;}
.y6{bottom:55.440000px;}
.y29{bottom:56.520000px;}
.y3{bottom:57.600000px;}
.y52{bottom:66.060000px;}
.y4e{bottom:66.780000px;}
.y2f{bottom:67.860000px;}
.y77{bottom:78.660000px;}
.y4d{bottom:87.480000px;}
.y5a{bottom:98.100000px;}
.y85{bottom:98.136000px;}
.y44{bottom:98.676000px;}
.y76{bottom:99.360000px;}
.y4c{bottom:108.180000px;}
.y84{bottom:121.896000px;}
.y43{bottom:122.436000px;}
.y23{bottom:127.476000px;}
.y54{bottom:128.880000px;}
.y36{bottom:144.936000px;}
.y83{bottom:145.656000px;}
.y42{bottom:146.196000px;}
.y3a{bottom:166.350000px;}
.y82{bottom:169.590000px;}
.y41{bottom:169.950000px;}
.ya5{bottom:184.710000px;}
.y81{bottom:187.050000px;}
.y60{bottom:187.590000px;}
.y39{bottom:187.770000px;}
.ya4{bottom:208.470000px;}
.y38{bottom:209.190000px;}
.y80{bottom:229.170000px;}
.y59{bottom:229.710000px;}
.ya3{bottom:232.410000px;}
.y92{bottom:245.730000px;}
.y5f{bottom:251.130000px;}
.y2e{bottom:251.310000px;}
.ya2{bottom:256.170000px;}
.y91{bottom:269.490000px;}
.y34{bottom:274.710000px;}
.ya1{bottom:279.930000px;}
.y7e{bottom:291.990000px;}
.y90{bottom:293.430000px;}
.ya0{bottom:303.690000px;}
.y5d{bottom:313.950000px;}
.y33{bottom:316.830000px;}
.y8f{bottom:317.190000px;}
.y9f{bottom:327.450000px;}
.y28{bottom:338.295000px;}
.y8e{bottom:340.995000px;}
.y9e{bottom:351.435000px;}
.y75{bottom:354.855000px;}
.y5b{bottom:356.115000px;}
.y8d{bottom:364.755000px;}
.y9d{bottom:375.195000px;}
.y7d{bottom:376.275000px;}
.y2d{bottom:380.415000px;}
.y7c{bottom:397.695000px;}
.y9c{bottom:398.955000px;}
.y2c{bottom:402.015000px;}
.y7b{bottom:419.295000px;}
.y9b{bottom:422.715000px;}
.y24{bottom:423.435000px;}
.y53{bottom:439.635000px;}
.y7a{bottom:440.715000px;}
.y9a{bottom:446.655000px;}
.y99{bottom:470.415000px;}
.y79{bottom:482.835000px;}
.y22{bottom:483.915000px;}
.y98{bottom:494.175000px;}
.y58{bottom:502.455000px;}
.y21{bottom:507.675000px;}
.y97{bottom:517.935000px;}
.y78{bottom:524.955000px;}
.y20{bottom:531.435000px;}
.y96{bottom:541.875000px;}
.y74{bottom:546.375000px;}
.y1f{bottom:555.195000px;}
.y56{bottom:565.455000px;}
.y95{bottom:565.635000px;}
.y73{bottom:574.995000px;}
.y1e{bottom:579.135000px;}
.y94{bottom:589.395000px;}
.y72{bottom:598.755000px;}
.y1d{bottom:602.895000px;}
.y93{bottom:613.185000px;}
.y71{bottom:622.545000px;}
.y1c{bottom:626.685000px;}
.y4b{bottom:628.305000px;}
.y8c{bottom:637.125000px;}
.y70{bottom:646.305000px;}
.y1b{bottom:650.445000px;}
.y8b{bottom:660.885000px;}
.y6f{bottom:670.245000px;}
.y1a{bottom:674.385000px;}
.y8a{bottom:684.645000px;}
.y6e{bottom:694.005000px;}
.y19{bottom:698.145000px;}
.y89{bottom:708.405000px;}
.y50{bottom:711.825000px;}
.y6d{bottom:717.765000px;}
.y18{bottom:721.905000px;}
.y88{bottom:732.345000px;}
.y6c{bottom:741.525000px;}
.y17{bottom:745.665000px;}
.y87{bottom:756.105000px;}
.y6b{bottom:765.285000px;}
.y16{bottom:769.605000px;}
.y4f{bottom:774.645000px;}
.y86{bottom:779.865000px;}
.y6a{bottom:789.225000px;}
.y15{bottom:793.365000px;}
.y69{bottom:812.985000px;}
.y45{bottom:816.765000px;}
.y14{bottom:817.125000px;}
.y68{bottom:836.745000px;}
.y13{bottom:840.885000px;}
.y67{bottom:860.505000px;}
.y12{bottom:864.645000px;}
.y49{bottom:879.630000px;}
.y66{bottom:884.490000px;}
.y11{bottom:888.630000px;}
.y65{bottom:901.950000px;}
.y10{bottom:912.390000px;}
.yf{bottom:936.150000px;}
.y64{bottom:938.490000px;}
.y40{bottom:959.910000px;}
.ye{bottom:966.750000px;}
.y63{bottom:975.030000px;}
.yd{bottom:983.850000px;}
.y3f{bottom:1007.610000px;}
.y61{bottom:1011.570000px;}
.yc{bottom:1014.450000px;}
.yb{bottom:1031.370000px;}
.ya{bottom:1055.130000px;}
.y3e{bottom:1079.070000px;}
.y9{bottom:1081.410000px;}
.y3d{bottom:1102.830000px;}
.y8{bottom:1113.090000px;}
.y3c{bottom:1126.590000px;}
.y7{bottom:1144.800000px;}
.y3b{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:4.038750px;}
.he{height:20.700000px;}
.h10{height:20.736000px;}
.h11{height:22.680000px;}
.h3{height:27.036000px;}
.ha{height:33.824531px;}
.h1c{height:35.820000px;}
.hc{height:41.400000px;}
.h1b{height:41.436000px;}
.h2{height:46.696289px;}
.h4{height:50.484375px;}
.h1e{height:52.417969px;}
.hb{height:59.343750px;}
.h19{height:61.956000px;}
.h16{height:62.100000px;}
.h14{height:62.136000px;}
.h8{height:62.261719px;}
.h9{height:65.475352px;}
.h5{height:65.884219px;}
.h17{height:82.800000px;}
.h7{height:82.808086px;}
.h13{height:83.556000px;}
.hd{height:84.420000px;}
.hf{height:86.256000px;}
.h12{height:105.660000px;}
.h15{height:187.740000px;}
.h18{height:187.770000px;}
.h1d{height:190.800000px;}
.h1a{height:209.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:88.560000px;}
.w18{width:98.496000px;}
.w4{width:105.516000px;}
.wd{width:114.660000px;}
.w11{width:116.136000px;}
.wc{width:117.756000px;}
.w12{width:126.756000px;}
.w10{width:126.900000px;}
.w17{width:136.836000px;}
.w19{width:136.980000px;}
.w13{width:137.520000px;}
.w8{width:141.336000px;}
.w6{width:169.050000px;}
.wf{width:211.575000px;}
.w9{width:267.735000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.wa{width:322.410000px;}
.w15{width:347.295000px;}
.w16{width:373.935000px;}
.we{width:409.785000px;}
.w14{width:509.655000px;}
.w7{width:552.165000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x1b{left:8.856000px;}
.x14{left:11.016000px;}
.x29{left:13.140000px;}
.x20{left:14.256000px;}
.x2a{left:15.300000px;}
.x25{left:16.380000px;}
.x2b{left:18.900000px;}
.x30{left:20.520000px;}
.x1a{left:21.636000px;}
.x18{left:25.596000px;}
.x36{left:27.000000px;}
.x31{left:30.636000px;}
.x1f{left:31.896000px;}
.x38{left:32.940000px;}
.x2e{left:34.920000px;}
.x2d{left:36.360000px;}
.x44{left:37.620000px;}
.x27{left:39.420000px;}
.x19{left:40.716000px;}
.x1d{left:44.496000px;}
.x2c{left:48.420000px;}
.x22{left:50.625000px;}
.x43{left:52.050000px;}
.x3c{left:54.360000px;}
.x42{left:56.340000px;}
.x3b{left:58.860000px;}
.x15{left:62.670000px;}
.x24{left:64.620000px;}
.x34{left:66.270000px;}
.x2f{left:70.770000px;}
.x1c{left:84.450000px;}
.x3{left:87.660000px;}
.x8{left:95.795987px;}
.x1{left:98.675987px;}
.xd{left:114.155987px;}
.x4b{left:127.835987px;}
.x12{left:138.275987px;}
.xa{left:140.075987px;}
.x11{left:148.895987px;}
.x9{left:157.169987px;}
.x40{left:158.250000px;}
.x3d{left:161.100000px;}
.x17{left:179.145000px;}
.x32{left:181.650000px;}
.x46{left:184.529987px;}
.xb{left:209.009987px;}
.x21{left:230.070000px;}
.xf{left:231.689987px;}
.x48{left:237.449987px;}
.x16{left:257.790000px;}
.x1e{left:264.449987px;}
.x3e{left:266.969987px;}
.x13{left:293.474987px;}
.x10{left:295.814987px;}
.x4{left:297.795000px;}
.x35{left:300.315000px;}
.x49{left:315.254987px;}
.xe{left:331.454987px;}
.x45{left:347.654987px;}
.x47{left:360.254987px;}
.x2{left:379.514987px;}
.x5{left:393.915000px;}
.x37{left:427.935000px;}
.x3f{left:436.035000px;}
.xc{left:446.474987px;}
.x33{left:467.744987px;}
.x4a{left:473.144987px;}
.x23{left:498.525000px;}
.x7{left:500.145000px;}
.x39{left:544.965000px;}
.x41{left:573.585000px;}
.x26{left:587.805000px;}
.x3a{left:672.450000px;}
.x28{left:706.290000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:3.840000pt;}
.ls5{letter-spacing:16.000000pt;}
.lsd{letter-spacing:16.640000pt;}
.ls8{letter-spacing:29.440000pt;}
.lse{letter-spacing:48.128000pt;}
.ls2{letter-spacing:52.719787pt;}
.ls4{letter-spacing:55.040000pt;}
.ls1{letter-spacing:82.693120pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-1.056000pt;}
._0{width:0.949333pt;}
._3{width:2.016000pt;}
._1{width:2.963200pt;}
._2d{width:3.959467pt;}
._23{width:4.960000pt;}
._1e{width:5.888000pt;}
._13{width:7.104000pt;}
._24{width:8.768000pt;}
._25{width:9.984000pt;}
._22{width:11.104000pt;}
._5{width:12.245333pt;}
._4{width:13.290667pt;}
._2b{width:14.229333pt;}
._a{width:17.792000pt;}
._12{width:18.816000pt;}
._e{width:23.680000pt;}
._f{width:25.056000pt;}
._d{width:26.880000pt;}
._2c{width:28.000000pt;}
._17{width:29.056000pt;}
._11{width:29.952000pt;}
._14{width:32.064000pt;}
._2a{width:35.392000pt;}
._32{width:36.512000pt;}
._1a{width:37.504000pt;}
._1d{width:38.592000pt;}
._b{width:40.448000pt;}
._c{width:41.621333pt;}
._18{width:42.880000pt;}
._16{width:45.312000pt;}
._15{width:46.208000pt;}
._26{width:47.360000pt;}
._30{width:51.648000pt;}
._31{width:52.810667pt;}
._6{width:54.912000pt;}
._7{width:56.160000pt;}
._1b{width:80.000000pt;}
._8{width:81.984000pt;}
._9{width:82.890667pt;}
._28{width:86.784000pt;}
._29{width:87.680000pt;}
._10{width:89.450667pt;}
._27{width:99.264000pt;}
._2f{width:102.080000pt;}
._2e{width:102.976000pt;}
._20{width:117.632000pt;}
._21{width:118.592000pt;}
._1c{width:127.040000pt;}
._1f{width:144.000000pt;}
._19{width:486.272000pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.520000pt;}
.y32{bottom:5.120000pt;}
.y35{bottom:5.280000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y27{bottom:12.640000pt;}
.y2b{bottom:13.440000pt;}
.y62{bottom:16.960000pt;}
.y25{bottom:21.920000pt;}
.y5e{bottom:21.960000pt;}
.y47{bottom:22.240000pt;}
.y31{bottom:23.520000pt;}
.y51{bottom:31.040000pt;}
.y5c{bottom:31.200000pt;}
.y48{bottom:31.520000pt;}
.y2a{bottom:31.840000pt;}
.y4a{bottom:40.320000pt;}
.y57{bottom:40.346667pt;}
.y7f{bottom:40.360000pt;}
.y46{bottom:40.640000pt;}
.y55{bottom:40.960000pt;}
.y37{bottom:41.274667pt;}
.y30{bottom:41.920000pt;}
.y6{bottom:49.280000pt;}
.y29{bottom:50.240000pt;}
.y3{bottom:51.200000pt;}
.y52{bottom:58.720000pt;}
.y4e{bottom:59.360000pt;}
.y2f{bottom:60.320000pt;}
.y77{bottom:69.920000pt;}
.y4d{bottom:77.760000pt;}
.y5a{bottom:87.200000pt;}
.y85{bottom:87.232000pt;}
.y44{bottom:87.712000pt;}
.y76{bottom:88.320000pt;}
.y4c{bottom:96.160000pt;}
.y84{bottom:108.352000pt;}
.y43{bottom:108.832000pt;}
.y23{bottom:113.312000pt;}
.y54{bottom:114.560000pt;}
.y36{bottom:128.832000pt;}
.y83{bottom:129.472000pt;}
.y42{bottom:129.952000pt;}
.y3a{bottom:147.866667pt;}
.y82{bottom:150.746667pt;}
.y41{bottom:151.066667pt;}
.ya5{bottom:164.186667pt;}
.y81{bottom:166.266667pt;}
.y60{bottom:166.746667pt;}
.y39{bottom:166.906667pt;}
.ya4{bottom:185.306667pt;}
.y38{bottom:185.946667pt;}
.y80{bottom:203.706667pt;}
.y59{bottom:204.186667pt;}
.ya3{bottom:206.586667pt;}
.y92{bottom:218.426667pt;}
.y5f{bottom:223.226667pt;}
.y2e{bottom:223.386667pt;}
.ya2{bottom:227.706667pt;}
.y91{bottom:239.546667pt;}
.y34{bottom:244.186667pt;}
.ya1{bottom:248.826667pt;}
.y7e{bottom:259.546667pt;}
.y90{bottom:260.826667pt;}
.ya0{bottom:269.946667pt;}
.y5d{bottom:279.066667pt;}
.y33{bottom:281.626667pt;}
.y8f{bottom:281.946667pt;}
.y9f{bottom:291.066667pt;}
.y28{bottom:300.706667pt;}
.y8e{bottom:303.106667pt;}
.y9e{bottom:312.386667pt;}
.y75{bottom:315.426667pt;}
.y5b{bottom:316.546667pt;}
.y8d{bottom:324.226667pt;}
.y9d{bottom:333.506667pt;}
.y7d{bottom:334.466667pt;}
.y2d{bottom:338.146667pt;}
.y7c{bottom:353.506667pt;}
.y9c{bottom:354.626667pt;}
.y2c{bottom:357.346667pt;}
.y7b{bottom:372.706667pt;}
.y9b{bottom:375.746667pt;}
.y24{bottom:376.386667pt;}
.y53{bottom:390.786667pt;}
.y7a{bottom:391.746667pt;}
.y9a{bottom:397.026667pt;}
.y99{bottom:418.146667pt;}
.y79{bottom:429.186667pt;}
.y22{bottom:430.146667pt;}
.y98{bottom:439.266667pt;}
.y58{bottom:446.626667pt;}
.y21{bottom:451.266667pt;}
.y97{bottom:460.386667pt;}
.y78{bottom:466.626667pt;}
.y20{bottom:472.386667pt;}
.y96{bottom:481.666667pt;}
.y74{bottom:485.666667pt;}
.y1f{bottom:493.506667pt;}
.y56{bottom:502.626667pt;}
.y95{bottom:502.786667pt;}
.y73{bottom:511.106667pt;}
.y1e{bottom:514.786667pt;}
.y94{bottom:523.906667pt;}
.y72{bottom:532.226667pt;}
.y1d{bottom:535.906667pt;}
.y93{bottom:545.053333pt;}
.y71{bottom:553.373333pt;}
.y1c{bottom:557.053333pt;}
.y4b{bottom:558.493333pt;}
.y8c{bottom:566.333333pt;}
.y70{bottom:574.493333pt;}
.y1b{bottom:578.173333pt;}
.y8b{bottom:587.453333pt;}
.y6f{bottom:595.773333pt;}
.y1a{bottom:599.453333pt;}
.y8a{bottom:608.573333pt;}
.y6e{bottom:616.893333pt;}
.y19{bottom:620.573333pt;}
.y89{bottom:629.693333pt;}
.y50{bottom:632.733333pt;}
.y6d{bottom:638.013333pt;}
.y18{bottom:641.693333pt;}
.y88{bottom:650.973333pt;}
.y6c{bottom:659.133333pt;}
.y17{bottom:662.813333pt;}
.y87{bottom:672.093333pt;}
.y6b{bottom:680.253333pt;}
.y16{bottom:684.093333pt;}
.y4f{bottom:688.573333pt;}
.y86{bottom:693.213333pt;}
.y6a{bottom:701.533333pt;}
.y15{bottom:705.213333pt;}
.y69{bottom:722.653333pt;}
.y45{bottom:726.013333pt;}
.y14{bottom:726.333333pt;}
.y68{bottom:743.773333pt;}
.y13{bottom:747.453333pt;}
.y67{bottom:764.893333pt;}
.y12{bottom:768.573333pt;}
.y49{bottom:781.893333pt;}
.y66{bottom:786.213333pt;}
.y11{bottom:789.893333pt;}
.y65{bottom:801.733333pt;}
.y10{bottom:811.013333pt;}
.yf{bottom:832.133333pt;}
.y64{bottom:834.213333pt;}
.y40{bottom:853.253333pt;}
.ye{bottom:859.333333pt;}
.y63{bottom:866.693333pt;}
.yd{bottom:874.533333pt;}
.y3f{bottom:895.653333pt;}
.y61{bottom:899.173333pt;}
.yc{bottom:901.733333pt;}
.yb{bottom:916.773333pt;}
.ya{bottom:937.893333pt;}
.y3e{bottom:959.173333pt;}
.y9{bottom:961.253333pt;}
.y3d{bottom:980.293333pt;}
.y8{bottom:989.413333pt;}
.y3c{bottom:1001.413333pt;}
.y7{bottom:1017.600000pt;}
.y3b{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:3.590000pt;}
.he{height:18.400000pt;}
.h10{height:18.432000pt;}
.h11{height:20.160000pt;}
.h3{height:24.032000pt;}
.ha{height:30.066250pt;}
.h1c{height:31.840000pt;}
.hc{height:36.800000pt;}
.h1b{height:36.832000pt;}
.h2{height:41.507812pt;}
.h4{height:44.875000pt;}
.h1e{height:46.593750pt;}
.hb{height:52.750000pt;}
.h19{height:55.072000pt;}
.h16{height:55.200000pt;}
.h14{height:55.232000pt;}
.h8{height:55.343750pt;}
.h9{height:58.200312pt;}
.h5{height:58.563750pt;}
.h17{height:73.600000pt;}
.h7{height:73.607188pt;}
.h13{height:74.272000pt;}
.hd{height:75.040000pt;}
.hf{height:76.672000pt;}
.h12{height:93.920000pt;}
.h15{height:166.880000pt;}
.h18{height:166.906667pt;}
.h1d{height:169.600000pt;}
.h1a{height:185.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:78.720000pt;}
.w18{width:87.552000pt;}
.w4{width:93.792000pt;}
.wd{width:101.920000pt;}
.w11{width:103.232000pt;}
.wc{width:104.672000pt;}
.w12{width:112.672000pt;}
.w10{width:112.800000pt;}
.w17{width:121.632000pt;}
.w19{width:121.760000pt;}
.w13{width:122.240000pt;}
.w8{width:125.632000pt;}
.w6{width:150.266667pt;}
.wf{width:188.066667pt;}
.w9{width:237.986667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.wa{width:286.586667pt;}
.w15{width:308.706667pt;}
.w16{width:332.386667pt;}
.we{width:364.253333pt;}
.w14{width:453.026667pt;}
.w7{width:490.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x1b{left:7.872000pt;}
.x14{left:9.792000pt;}
.x29{left:11.680000pt;}
.x20{left:12.672000pt;}
.x2a{left:13.600000pt;}
.x25{left:14.560000pt;}
.x2b{left:16.800000pt;}
.x30{left:18.240000pt;}
.x1a{left:19.232000pt;}
.x18{left:22.752000pt;}
.x36{left:24.000000pt;}
.x31{left:27.232000pt;}
.x1f{left:28.352000pt;}
.x38{left:29.280000pt;}
.x2e{left:31.040000pt;}
.x2d{left:32.320000pt;}
.x44{left:33.440000pt;}
.x27{left:35.040000pt;}
.x19{left:36.192000pt;}
.x1d{left:39.552000pt;}
.x2c{left:43.040000pt;}
.x22{left:45.000000pt;}
.x43{left:46.266667pt;}
.x3c{left:48.320000pt;}
.x42{left:50.080000pt;}
.x3b{left:52.320000pt;}
.x15{left:55.706667pt;}
.x24{left:57.440000pt;}
.x34{left:58.906667pt;}
.x2f{left:62.906667pt;}
.x1c{left:75.066667pt;}
.x3{left:77.920000pt;}
.x8{left:85.151988pt;}
.x1{left:87.711988pt;}
.xd{left:101.471988pt;}
.x4b{left:113.631988pt;}
.x12{left:122.911988pt;}
.xa{left:124.511988pt;}
.x11{left:132.351988pt;}
.x9{left:139.706655pt;}
.x40{left:140.666667pt;}
.x3d{left:143.200000pt;}
.x17{left:159.240000pt;}
.x32{left:161.466667pt;}
.x46{left:164.026655pt;}
.xb{left:185.786655pt;}
.x21{left:204.506667pt;}
.xf{left:205.946655pt;}
.x48{left:211.066655pt;}
.x16{left:229.146667pt;}
.x1e{left:235.066655pt;}
.x3e{left:237.306655pt;}
.x13{left:260.866655pt;}
.x10{left:262.946655pt;}
.x4{left:264.706667pt;}
.x35{left:266.946667pt;}
.x49{left:280.226655pt;}
.xe{left:294.626655pt;}
.x45{left:309.026655pt;}
.x47{left:320.226655pt;}
.x2{left:337.346655pt;}
.x5{left:350.146667pt;}
.x37{left:380.386667pt;}
.x3f{left:387.586667pt;}
.xc{left:396.866655pt;}
.x33{left:415.773322pt;}
.x4a{left:420.573322pt;}
.x23{left:443.133333pt;}
.x7{left:444.573333pt;}
.x39{left:484.413333pt;}
.x41{left:509.853333pt;}
.x26{left:522.493333pt;}
.x3a{left:597.733333pt;}
.x28{left:627.813333pt;}
}




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