
    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_39c54b1f76c9a8f35e1ea6fd.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_76c1193294ae792aa1061415.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_b113e6a491fcfa3944bde389.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_174d5682d5bc42722dd3fe29.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_6d06796ac3f12b679ce44bf2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.786133;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1ebbc75ecdae88507c8a434f.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.840000px;}
.ls4{letter-spacing:0.864000px;}
.lsd{letter-spacing:1.440000px;}
.lsf{letter-spacing:2.160000px;}
.lsb{letter-spacing:4.320000px;}
.lsc{letter-spacing:5.040000px;}
.ls15{letter-spacing:5.760000px;}
.ls11{letter-spacing:7.200000px;}
.ls10{letter-spacing:7.920000px;}
.ls12{letter-spacing:8.100000px;}
.ls16{letter-spacing:8.820000px;}
.ls0{letter-spacing:10.080000px;}
.ls17{letter-spacing:12.960000px;}
.lse{letter-spacing:18.900000px;}
.ls5{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;}
}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-5.189280px;}
._e{margin-left:-4.130880px;}
._9{margin-left:-2.893920px;}
._0{margin-left:-1.457280px;}
._1{width:1.125600px;}
._4{width:2.478000px;}
._11{width:3.930000px;}
._12{width:4.956000px;}
._15{width:5.963280px;}
._7{width:7.560000px;}
._8{width:8.594400px;}
._a{width:10.224000px;}
._1a{width:11.448000px;}
._18{width:12.456000px;}
._c{width:13.656000px;}
._b{width:14.736000px;}
._16{width:16.411680px;}
._1f{width:19.368000px;}
._1d{width:21.456000px;}
._1e{width:23.328000px;}
._19{width:24.456000px;}
._28{width:25.632000px;}
._3{width:27.004320px;}
._d{width:28.017120px;}
._6{width:29.111040px;}
._f{width:31.224000px;}
._1c{width:32.536320px;}
._1b{width:33.569280px;}
._2{width:35.335440px;}
._13{width:36.792000px;}
._14{width:38.320560px;}
._25{width:39.782880px;}
._32{width:40.883520px;}
._33{width:42.157440px;}
._2d{width:46.909440px;}
._2c{width:48.041280px;}
._26{width:51.768000px;}
._2e{width:55.872000px;}
._2f{width:56.906400px;}
._38{width:61.920000px;}
._37{width:63.072000px;}
._30{width:71.928000px;}
._31{width:73.025280px;}
._20{width:75.168000px;}
._21{width:76.228800px;}
._35{width:85.248000px;}
._36{width:86.328000px;}
._5{width:107.945040px;}
._22{width:133.128000px;}
._23{width:134.470080px;}
._2a{width:135.889920px;}
._17{width:137.244000px;}
._24{width:159.120000px;}
._27{width:232.488000px;}
._2b{width:289.296000px;}
._29{width:467.220000px;}
._34{width:736.272000px;}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(238,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;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y69{bottom:166.170000px;}
.y2f{bottom:173.010000px;}
.y7e{bottom:175.530000px;}
.y4d{bottom:176.430000px;}
.y86{bottom:186.330000px;}
.yc9{bottom:188.670000px;}
.y9b{bottom:192.270000px;}
.y2e{bottom:193.710000px;}
.y68{bottom:197.310000px;}
.y7d{bottom:206.490000px;}
.y4c{bottom:207.390000px;}
.yba{bottom:212.610000px;}
.y2d{bottom:214.410000px;}
.y9a{bottom:216.210000px;}
.y85{bottom:217.470000px;}
.y67{bottom:228.270000px;}
.y2c{bottom:235.110000px;}
.yb9{bottom:236.730000px;}
.y7c{bottom:237.630000px;}
.y4b{bottom:238.530000px;}
.y99{bottom:240.150000px;}
.y84{bottom:248.430000px;}
.y2b{bottom:255.810000px;}
.y66{bottom:259.410000px;}
.yb8{bottom:260.670000px;}
.y7b{bottom:268.590000px;}
.y4a{bottom:269.490000px;}
.yc8{bottom:272.550000px;}
.y98{bottom:276.150000px;}
.y2a{bottom:276.510000px;}
.y83{bottom:279.570000px;}
.yb7{bottom:284.610000px;}
.y65{bottom:290.370000px;}
.yc2{bottom:296.670000px;}
.y29{bottom:297.210000px;}
.y7a{bottom:299.730000px;}
.y97{bottom:300.090000px;}
.y49{bottom:300.630000px;}
.y82{bottom:310.530000px;}
.y28{bottom:317.910000px;}
.yb6{bottom:320.610000px;}
.y64{bottom:321.510000px;}
.y96{bottom:324.030000px;}
.y79{bottom:330.690000px;}
.y48{bottom:331.590000px;}
.y27{bottom:338.655000px;}
.y81{bottom:341.715000px;}
.yb5{bottom:344.595000px;}
.y95{bottom:348.195000px;}
.y63{bottom:352.515000px;}
.yc7{bottom:356.655000px;}
.y26{bottom:359.355000px;}
.y78{bottom:361.875000px;}
.y47{bottom:362.775000px;}
.yb4{bottom:368.535000px;}
.y94{bottom:372.135000px;}
.y80{bottom:372.675000px;}
.y25{bottom:380.055000px;}
.yc6{bottom:380.595000px;}
.y62{bottom:383.655000px;}
.y77{bottom:392.835000px;}
.y46{bottom:393.735000px;}
.y24{bottom:400.755000px;}
.yb3{bottom:404.535000px;}
.y93{bottom:408.135000px;}
.y7f{bottom:411.915000px;}
.y23{bottom:421.455000px;}
.y61{bottom:422.895000px;}
.y76{bottom:423.975000px;}
.y45{bottom:424.875000px;}
.yb2{bottom:428.475000px;}
.y92{bottom:432.075000px;}
.y22{bottom:442.155000px;}
.yb1{bottom:452.415000px;}
.y75{bottom:454.935000px;}
.y44{bottom:455.835000px;}
.y91{bottom:456.015000px;}
.y21{bottom:462.855000px;}
.y60{bottom:465.915000px;}
.yb0{bottom:476.535000px;}
.y90{bottom:479.955000px;}
.y20{bottom:483.555000px;}
.y74{bottom:486.075000px;}
.y43{bottom:486.975000px;}
.yc5{bottom:488.415000px;}
.y5f{bottom:496.875000px;}
.yc1{bottom:500.475000px;}
.y1f{bottom:504.255000px;}
.yaf{bottom:512.535000px;}
.y8f{bottom:515.955000px;}
.y73{bottom:517.035000px;}
.y42{bottom:517.935000px;}
.y1e{bottom:524.955000px;}
.y5e{bottom:528.015000px;}
.yae{bottom:536.475000px;}
.y8e{bottom:539.895000px;}
.y1d{bottom:545.655000px;}
.y72{bottom:548.175000px;}
.y41{bottom:549.075000px;}
.y5d{bottom:558.975000px;}
.yad{bottom:560.415000px;}
.y8d{bottom:563.835000px;}
.y1c{bottom:566.355000px;}
.y71{bottom:579.135000px;}
.y40{bottom:580.035000px;}
.yc0{bottom:584.355000px;}
.y1b{bottom:587.055000px;}
.y8c{bottom:587.955000px;}
.y5c{bottom:590.115000px;}
.yac{bottom:596.415000px;}
.y1a{bottom:607.785000px;}
.ybf{bottom:608.325000px;}
.y70{bottom:610.305000px;}
.y3f{bottom:611.205000px;}
.yab{bottom:620.385000px;}
.y5b{bottom:621.105000px;}
.y8b{bottom:623.985000px;}
.y19{bottom:628.485000px;}
.y6f{bottom:641.265000px;}
.y3e{bottom:642.165000px;}
.yaa{bottom:644.325000px;}
.y8a{bottom:647.925000px;}
.y18{bottom:649.185000px;}
.y5a{bottom:652.245000px;}
.ya9{bottom:668.265000px;}
.y17{bottom:669.885000px;}
.y89{bottom:671.865000px;}
.y6e{bottom:672.405000px;}
.y3d{bottom:673.305000px;}
.y59{bottom:683.205000px;}
.y16{bottom:690.585000px;}
.ybe{bottom:692.385000px;}
.y88{bottom:695.805000px;}
.y6d{bottom:703.365000px;}
.y3c{bottom:704.265000px;}
.y15{bottom:711.285000px;}
.y58{bottom:714.345000px;}
.ya8{bottom:728.205000px;}
.y14{bottom:731.985000px;}
.y87{bottom:732.885000px;}
.y6c{bottom:734.505000px;}
.y3b{bottom:735.405000px;}
.y57{bottom:745.305000px;}
.ya7{bottom:752.325000px;}
.y13{bottom:752.505000px;}
.y6b{bottom:765.465000px;}
.y3a{bottom:766.365000px;}
.y12{bottom:773.205000px;}
.ya6{bottom:776.265000px;}
.y56{bottom:784.545000px;}
.y11{bottom:793.905000px;}
.y6a{bottom:796.605000px;}
.y39{bottom:797.505000px;}
.ybd{bottom:800.205000px;}
.ya5{bottom:812.265000px;}
.y10{bottom:814.605000px;}
.ybc{bottom:824.145000px;}
.y55{bottom:827.565000px;}
.y38{bottom:828.465000px;}
.yf{bottom:835.305000px;}
.ya4{bottom:836.205000px;}
.ye{bottom:856.005000px;}
.y54{bottom:858.705000px;}
.y37{bottom:859.605000px;}
.ya3{bottom:860.145000px;}
.yd{bottom:878.190000px;}
.ya2{bottom:884.130000px;}
.y53{bottom:889.710000px;}
.y36{bottom:890.610000px;}
.yc4{bottom:896.190000px;}
.yc{bottom:905.730000px;}
.ybb{bottom:908.070000px;}
.ya1{bottom:920.130000px;}
.y52{bottom:920.850000px;}
.y35{bottom:921.750000px;}
.yb{bottom:933.270000px;}
.ya0{bottom:944.070000px;}
.y51{bottom:951.810000px;}
.y34{bottom:952.710000px;}
.ya{bottom:960.990000px;}
.y9f{bottom:968.190000px;}
.y50{bottom:982.950000px;}
.y33{bottom:983.850000px;}
.y9e{bottom:992.130000px;}
.y9{bottom:994.290000px;}
.yc3{bottom:1004.010000px;}
.y4f{bottom:1013.910000px;}
.y32{bottom:1014.810000px;}
.y8{bottom:1022.190000px;}
.y9d{bottom:1028.130000px;}
.y4e{bottom:1045.050000px;}
.y31{bottom:1045.950000px;}
.y7{bottom:1049.730000px;}
.y9c{bottom:1052.070000px;}
.y30{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h7{height:59.343750px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h8{height:74.820586px;}
.h6{height:78.927188px;}
.h4{height:85.052461px;}
.h5{height:85.847344px;}
.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;}
.x4{left:148.895987px;}
.x9{left:159.509987px;}
.x6{left:165.089987px;}
.x7{left:241.229987px;}
.x5{left:297.794987px;}
.x1{left:467.744987px;}
.x8{left:691.529987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.746667pt;}
.ls4{letter-spacing:0.768000pt;}
.lsd{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.920000pt;}
.lsb{letter-spacing:3.840000pt;}
.lsc{letter-spacing:4.480000pt;}
.ls15{letter-spacing:5.120000pt;}
.ls11{letter-spacing:6.400000pt;}
.ls10{letter-spacing:7.040000pt;}
.ls12{letter-spacing:7.200000pt;}
.ls16{letter-spacing:7.840000pt;}
.ls0{letter-spacing:8.960000pt;}
.ls17{letter-spacing:11.520000pt;}
.lse{letter-spacing:16.800000pt;}
.ls5{letter-spacing:57.263360pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-4.612693pt;}
._e{margin-left:-3.671893pt;}
._9{margin-left:-2.572373pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.000533pt;}
._4{width:2.202667pt;}
._11{width:3.493333pt;}
._12{width:4.405333pt;}
._15{width:5.300693pt;}
._7{width:6.720000pt;}
._8{width:7.639467pt;}
._a{width:9.088000pt;}
._1a{width:10.176000pt;}
._18{width:11.072000pt;}
._c{width:12.138667pt;}
._b{width:13.098667pt;}
._16{width:14.588160pt;}
._1f{width:17.216000pt;}
._1d{width:19.072000pt;}
._1e{width:20.736000pt;}
._19{width:21.738667pt;}
._28{width:22.784000pt;}
._3{width:24.003840pt;}
._d{width:24.904107pt;}
._6{width:25.876480pt;}
._f{width:27.754667pt;}
._1c{width:28.921173pt;}
._1b{width:29.839360pt;}
._2{width:31.409280pt;}
._13{width:32.704000pt;}
._14{width:34.062720pt;}
._25{width:35.362560pt;}
._32{width:36.340907pt;}
._33{width:37.473280pt;}
._2d{width:41.697280pt;}
._2c{width:42.703360pt;}
._26{width:46.016000pt;}
._2e{width:49.664000pt;}
._2f{width:50.583467pt;}
._38{width:55.040000pt;}
._37{width:56.064000pt;}
._30{width:63.936000pt;}
._31{width:64.911360pt;}
._20{width:66.816000pt;}
._21{width:67.758933pt;}
._35{width:75.776000pt;}
._36{width:76.736000pt;}
._5{width:95.951147pt;}
._22{width:118.336000pt;}
._23{width:119.528960pt;}
._2a{width:120.791040pt;}
._17{width:121.994667pt;}
._24{width:141.440000pt;}
._27{width:206.656000pt;}
._2b{width:257.152000pt;}
._29{width:415.306667pt;}
._34{width:654.464000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y69{bottom:147.706667pt;}
.y2f{bottom:153.786667pt;}
.y7e{bottom:156.026667pt;}
.y4d{bottom:156.826667pt;}
.y86{bottom:165.626667pt;}
.yc9{bottom:167.706667pt;}
.y9b{bottom:170.906667pt;}
.y2e{bottom:172.186667pt;}
.y68{bottom:175.386667pt;}
.y7d{bottom:183.546667pt;}
.y4c{bottom:184.346667pt;}
.yba{bottom:188.986667pt;}
.y2d{bottom:190.586667pt;}
.y9a{bottom:192.186667pt;}
.y85{bottom:193.306667pt;}
.y67{bottom:202.906667pt;}
.y2c{bottom:208.986667pt;}
.yb9{bottom:210.426667pt;}
.y7c{bottom:211.226667pt;}
.y4b{bottom:212.026667pt;}
.y99{bottom:213.466667pt;}
.y84{bottom:220.826667pt;}
.y2b{bottom:227.386667pt;}
.y66{bottom:230.586667pt;}
.yb8{bottom:231.706667pt;}
.y7b{bottom:238.746667pt;}
.y4a{bottom:239.546667pt;}
.yc8{bottom:242.266667pt;}
.y98{bottom:245.466667pt;}
.y2a{bottom:245.786667pt;}
.y83{bottom:248.506667pt;}
.yb7{bottom:252.986667pt;}
.y65{bottom:258.106667pt;}
.yc2{bottom:263.706667pt;}
.y29{bottom:264.186667pt;}
.y7a{bottom:266.426667pt;}
.y97{bottom:266.746667pt;}
.y49{bottom:267.226667pt;}
.y82{bottom:276.026667pt;}
.y28{bottom:282.586667pt;}
.yb6{bottom:284.986667pt;}
.y64{bottom:285.786667pt;}
.y96{bottom:288.026667pt;}
.y79{bottom:293.946667pt;}
.y48{bottom:294.746667pt;}
.y27{bottom:301.026667pt;}
.y81{bottom:303.746667pt;}
.yb5{bottom:306.306667pt;}
.y95{bottom:309.506667pt;}
.y63{bottom:313.346667pt;}
.yc7{bottom:317.026667pt;}
.y26{bottom:319.426667pt;}
.y78{bottom:321.666667pt;}
.y47{bottom:322.466667pt;}
.yb4{bottom:327.586667pt;}
.y94{bottom:330.786667pt;}
.y80{bottom:331.266667pt;}
.y25{bottom:337.826667pt;}
.yc6{bottom:338.306667pt;}
.y62{bottom:341.026667pt;}
.y77{bottom:349.186667pt;}
.y46{bottom:349.986667pt;}
.y24{bottom:356.226667pt;}
.yb3{bottom:359.586667pt;}
.y93{bottom:362.786667pt;}
.y7f{bottom:366.146667pt;}
.y23{bottom:374.626667pt;}
.y61{bottom:375.906667pt;}
.y76{bottom:376.866667pt;}
.y45{bottom:377.666667pt;}
.yb2{bottom:380.866667pt;}
.y92{bottom:384.066667pt;}
.y22{bottom:393.026667pt;}
.yb1{bottom:402.146667pt;}
.y75{bottom:404.386667pt;}
.y44{bottom:405.186667pt;}
.y91{bottom:405.346667pt;}
.y21{bottom:411.426667pt;}
.y60{bottom:414.146667pt;}
.yb0{bottom:423.586667pt;}
.y90{bottom:426.626667pt;}
.y20{bottom:429.826667pt;}
.y74{bottom:432.066667pt;}
.y43{bottom:432.866667pt;}
.yc5{bottom:434.146667pt;}
.y5f{bottom:441.666667pt;}
.yc1{bottom:444.866667pt;}
.y1f{bottom:448.226667pt;}
.yaf{bottom:455.586667pt;}
.y8f{bottom:458.626667pt;}
.y73{bottom:459.586667pt;}
.y42{bottom:460.386667pt;}
.y1e{bottom:466.626667pt;}
.y5e{bottom:469.346667pt;}
.yae{bottom:476.866667pt;}
.y8e{bottom:479.906667pt;}
.y1d{bottom:485.026667pt;}
.y72{bottom:487.266667pt;}
.y41{bottom:488.066667pt;}
.y5d{bottom:496.866667pt;}
.yad{bottom:498.146667pt;}
.y8d{bottom:501.186667pt;}
.y1c{bottom:503.426667pt;}
.y71{bottom:514.786667pt;}
.y40{bottom:515.586667pt;}
.yc0{bottom:519.426667pt;}
.y1b{bottom:521.826667pt;}
.y8c{bottom:522.626667pt;}
.y5c{bottom:524.546667pt;}
.yac{bottom:530.146667pt;}
.y1a{bottom:540.253333pt;}
.ybf{bottom:540.733333pt;}
.y70{bottom:542.493333pt;}
.y3f{bottom:543.293333pt;}
.yab{bottom:551.453333pt;}
.y5b{bottom:552.093333pt;}
.y8b{bottom:554.653333pt;}
.y19{bottom:558.653333pt;}
.y6f{bottom:570.013333pt;}
.y3e{bottom:570.813333pt;}
.yaa{bottom:572.733333pt;}
.y8a{bottom:575.933333pt;}
.y18{bottom:577.053333pt;}
.y5a{bottom:579.773333pt;}
.ya9{bottom:594.013333pt;}
.y17{bottom:595.453333pt;}
.y89{bottom:597.213333pt;}
.y6e{bottom:597.693333pt;}
.y3d{bottom:598.493333pt;}
.y59{bottom:607.293333pt;}
.y16{bottom:613.853333pt;}
.ybe{bottom:615.453333pt;}
.y88{bottom:618.493333pt;}
.y6d{bottom:625.213333pt;}
.y3c{bottom:626.013333pt;}
.y15{bottom:632.253333pt;}
.y58{bottom:634.973333pt;}
.ya8{bottom:647.293333pt;}
.y14{bottom:650.653333pt;}
.y87{bottom:651.453333pt;}
.y6c{bottom:652.893333pt;}
.y3b{bottom:653.693333pt;}
.y57{bottom:662.493333pt;}
.ya7{bottom:668.733333pt;}
.y13{bottom:668.893333pt;}
.y6b{bottom:680.413333pt;}
.y3a{bottom:681.213333pt;}
.y12{bottom:687.293333pt;}
.ya6{bottom:690.013333pt;}
.y56{bottom:697.373333pt;}
.y11{bottom:705.693333pt;}
.y6a{bottom:708.093333pt;}
.y39{bottom:708.893333pt;}
.ybd{bottom:711.293333pt;}
.ya5{bottom:722.013333pt;}
.y10{bottom:724.093333pt;}
.ybc{bottom:732.573333pt;}
.y55{bottom:735.613333pt;}
.y38{bottom:736.413333pt;}
.yf{bottom:742.493333pt;}
.ya4{bottom:743.293333pt;}
.ye{bottom:760.893333pt;}
.y54{bottom:763.293333pt;}
.y37{bottom:764.093333pt;}
.ya3{bottom:764.573333pt;}
.yd{bottom:780.613333pt;}
.ya2{bottom:785.893333pt;}
.y53{bottom:790.853333pt;}
.y36{bottom:791.653333pt;}
.yc4{bottom:796.613333pt;}
.yc{bottom:805.093333pt;}
.ybb{bottom:807.173333pt;}
.ya1{bottom:817.893333pt;}
.y52{bottom:818.533333pt;}
.y35{bottom:819.333333pt;}
.yb{bottom:829.573333pt;}
.ya0{bottom:839.173333pt;}
.y51{bottom:846.053333pt;}
.y34{bottom:846.853333pt;}
.ya{bottom:854.213333pt;}
.y9f{bottom:860.613333pt;}
.y50{bottom:873.733333pt;}
.y33{bottom:874.533333pt;}
.y9e{bottom:881.893333pt;}
.y9{bottom:883.813333pt;}
.yc3{bottom:892.453333pt;}
.y4f{bottom:901.253333pt;}
.y32{bottom:902.053333pt;}
.y8{bottom:908.613333pt;}
.y9d{bottom:913.893333pt;}
.y4e{bottom:928.933333pt;}
.y31{bottom:929.733333pt;}
.y7{bottom:933.093333pt;}
.y9c{bottom:935.173333pt;}
.y30{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:52.750000pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h8{height:66.507188pt;}
.h6{height:70.157500pt;}
.h4{height:75.602187pt;}
.h5{height:76.308750pt;}
.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;}
.x4{left:132.351988pt;}
.x9{left:141.786655pt;}
.x6{left:146.746655pt;}
.x7{left:214.426655pt;}
.x5{left:264.706655pt;}
.x1{left:415.773322pt;}
.x8{left:614.693322pt;}
.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; }
  