
    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_3dc78548d9ce718753b74c88.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_3b28d06f6bac48959efd8b4d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d3ac8ef57862942bf8641b24.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a2979cb422b997e7a4c6aff3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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;}
.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;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.259800px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls1{letter-spacing:8.640000px;}
.ls4{letter-spacing:46.026720px;}
.ls3{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;}
}
.ws1{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.680200px;}
.ws0{word-spacing:-12.060000px;}
.ws8{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._18{margin-left:-5.112000px;}
._14{margin-left:-4.032000px;}
._15{margin-left:-2.952000px;}
._0{margin-left:-1.457280px;}
._1{width:1.003200px;}
._13{width:2.356800px;}
._5{width:3.367440px;}
._c{width:4.824000px;}
._d{width:5.832000px;}
._12{width:6.840000px;}
._f{width:7.848000px;}
._19{width:9.144000px;}
._2{width:10.150560px;}
._11{width:11.737440px;}
._a{width:13.008000px;}
._b{width:14.280000px;}
._1a{width:15.334080px;}
._16{width:16.396800px;}
._e{width:19.944000px;}
._1c{width:21.676800px;}
._1b{width:23.400000px;}
._10{width:24.552000px;}
._17{width:26.208000px;}
._1f{width:37.656000px;}
._1d{width:41.256000px;}
._1e{width:42.988800px;}
._8{width:58.892400px;}
._7{width:60.328800px;}
._20{width:85.968000px;}
._3{width:90.447600px;}
._4{width:91.596720px;}
._6{width:96.576240px;}
._9{width:126.836400px;}
.fc3{color:transparent;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y85{bottom:3.240000px;}
.y59{bottom:11.880000px;}
.y88{bottom:20.340000px;}
.y84{bottom:20.520000px;}
.y92{bottom:20.550000px;}
.y8a{bottom:20.565000px;}
.y5f{bottom:25.740000px;}
.y58{bottom:37.800000px;}
.y5b{bottom:39.450000px;}
.y6d{bottom:43.380000px;}
.y5e{bottom:51.660000px;}
.y6{bottom:76.176000px;}
.y5d{bottom:77.580000px;}
.y5{bottom:96.876000px;}
.y4{bottom:117.216000px;}
.y3{bottom:136.296000px;}
.y2{bottom:155.190000px;}
.y2e{bottom:175.890000px;}
.y82{bottom:176.430000px;}
.yc2{bottom:178.590000px;}
.y69{bottom:179.850000px;}
.y2d{bottom:196.590000px;}
.y4d{bottom:196.770000px;}
.y9f{bottom:197.490000px;}
.yc1{bottom:205.230000px;}
.y81{bottom:207.570000px;}
.y68{bottom:210.810000px;}
.y2c{bottom:217.290000px;}
.yc0{bottom:225.930000px;}
.y4c{bottom:227.910000px;}
.y9e{bottom:228.630000px;}
.y2b{bottom:237.990000px;}
.y80{bottom:238.530000px;}
.y67{bottom:241.950000px;}
.ybf{bottom:246.630000px;}
.y2a{bottom:258.690000px;}
.y4b{bottom:258.870000px;}
.y9d{bottom:259.590000px;}
.y7f{bottom:269.670000px;}
.y66{bottom:272.910000px;}
.ybe{bottom:273.270000px;}
.y29{bottom:279.390000px;}
.y4a{bottom:290.010000px;}
.y9c{bottom:290.730000px;}
.ybd{bottom:299.910000px;}
.y28{bottom:300.090000px;}
.y7e{bottom:300.630000px;}
.y65{bottom:304.050000px;}
.ybc{bottom:320.610000px;}
.y27{bottom:320.790000px;}
.y49{bottom:320.970000px;}
.y9b{bottom:321.690000px;}
.y7d{bottom:331.770000px;}
.y64{bottom:335.010000px;}
.ybb{bottom:341.355000px;}
.y26{bottom:341.535000px;}
.y48{bottom:352.155000px;}
.y9a{bottom:352.875000px;}
.y25{bottom:362.235000px;}
.y7c{bottom:362.775000px;}
.y63{bottom:366.015000px;}
.yba{bottom:368.175000px;}
.y99{bottom:379.515000px;}
.y24{bottom:382.935000px;}
.y47{bottom:383.115000px;}
.y7b{bottom:393.915000px;}
.yb9{bottom:394.815000px;}
.y62{bottom:397.155000px;}
.y23{bottom:403.635000px;}
.y98{bottom:406.155000px;}
.y46{bottom:414.255000px;}
.yb8{bottom:415.515000px;}
.y97{bottom:423.795000px;}
.y22{bottom:424.335000px;}
.y7a{bottom:424.875000px;}
.y61{bottom:434.235000px;}
.yb7{bottom:442.155000px;}
.y21{bottom:445.035000px;}
.y45{bottom:445.215000px;}
.y60{bottom:451.695000px;}
.y79{bottom:456.015000px;}
.y96{bottom:458.895000px;}
.y20{bottom:465.735000px;}
.yb6{bottom:468.975000px;}
.y44{bottom:476.355000px;}
.y5c{bottom:478.335000px;}
.y1f{bottom:486.255000px;}
.y78{bottom:486.975000px;}
.yb5{bottom:489.675000px;}
.y95{bottom:494.175000px;}
.y1e{bottom:506.955000px;}
.yd9{bottom:507.135000px;}
.y43{bottom:507.315000px;}
.yb4{bottom:516.315000px;}
.y77{bottom:518.115000px;}
.y1d{bottom:527.655000px;}
.y94{bottom:529.455000px;}
.yd8{bottom:533.955000px;}
.y42{bottom:538.455000px;}
.yb3{bottom:542.955000px;}
.y1c{bottom:548.355000px;}
.y76{bottom:549.075000px;}
.yd7{bottom:560.595000px;}
.yb2{bottom:563.655000px;}
.y93{bottom:564.735000px;}
.y1b{bottom:569.055000px;}
.y41{bottom:569.415000px;}
.y5a{bottom:570.675000px;}
.y75{bottom:580.215000px;}
.yd6{bottom:581.295000px;}
.y1a{bottom:589.755000px;}
.yb1{bottom:590.475000px;}
.y91{bottom:600.015000px;}
.y40{bottom:600.555000px;}
.yd5{bottom:601.995000px;}
.y19{bottom:610.485000px;}
.y74{bottom:611.205000px;}
.yb0{bottom:617.145000px;}
.y57{bottom:624.885000px;}
.yd4{bottom:628.665000px;}
.y3f{bottom:631.545000px;}
.y90{bottom:635.325000px;}
.yaf{bottom:637.845000px;}
.y73{bottom:642.345000px;}
.y18{bottom:649.185000px;}
.yd3{bottom:655.485000px;}
.y3e{bottom:662.685000px;}
.y72{bottom:673.305000px;}
.yd2{bottom:676.185000px;}
.yae{bottom:679.605000px;}
.y17{bottom:687.885000px;}
.y8f{bottom:692.385000px;}
.y3d{bottom:693.645000px;}
.yd1{bottom:696.885000px;}
.y56{bottom:697.605000px;}
.yad{bottom:700.305000px;}
.y71{bottom:712.545000px;}
.y8e{bottom:713.085000px;}
.y16{bottom:715.425000px;}
.yac{bottom:721.005000px;}
.yd0{bottom:723.525000px;}
.y3c{bottom:724.605000px;}
.y15{bottom:736.125000px;}
.yab{bottom:741.705000px;}
.y70{bottom:745.125000px;}
.y55{bottom:746.745000px;}
.y14{bottom:749.985000px;}
.ycf{bottom:750.165000px;}
.y8d{bottom:751.785000px;}
.y3b{bottom:755.745000px;}
.y8c{bottom:769.245000px;}
.yce{bottom:770.865000px;}
.y13{bottom:772.305000px;}
.y6f{bottom:773.745000px;}
.y54{bottom:777.705000px;}
.yaa{bottom:783.285000px;}
.y3a{bottom:786.705000px;}
.ycd{bottom:791.565000px;}
.y12{bottom:793.005000px;}
.y6e{bottom:799.665000px;}
.ya9{bottom:803.985000px;}
.y53{bottom:808.845000px;}
.y11{bottom:813.705000px;}
.y6c{bottom:814.425000px;}
.y39{bottom:817.845000px;}
.ycc{bottom:818.205000px;}
.y8b{bottom:821.805000px;}
.ya8{bottom:830.805000px;}
.y10{bottom:834.405000px;}
.y52{bottom:839.805000px;}
.ycb{bottom:845.025000px;}
.yf{bottom:856.545000px;}
.y38{bottom:857.085000px;}
.ya7{bottom:857.985000px;}
.yca{bottom:865.725000px;}
.y6b{bottom:878.550000px;}
.y51{bottom:879.270000px;}
.ye{bottom:884.130000px;}
.yc9{bottom:886.470000px;}
.y37{bottom:889.710000px;}
.ya6{bottom:890.610000px;}
.y89{bottom:892.410000px;}
.yc8{bottom:907.170000px;}
.y36{bottom:910.410000px;}
.yd{bottom:911.670000px;}
.y50{bottom:920.850000px;}
.ya5{bottom:921.750000px;}
.y6a{bottom:925.170000px;}
.y87{bottom:927.690000px;}
.y35{bottom:931.110000px;}
.yc7{bottom:933.810000px;}
.yc{bottom:939.390000px;}
.y34{bottom:951.810000px;}
.ya4{bottom:952.710000px;}
.yc6{bottom:960.450000px;}
.y86{bottom:962.790000px;}
.yb{bottom:966.930000px;}
.y33{bottom:972.510000px;}
.yc5{bottom:981.150000px;}
.y4f{bottom:982.950000px;}
.ya3{bottom:983.850000px;}
.y32{bottom:993.210000px;}
.ya{bottom:994.470000px;}
.y83{bottom:998.070000px;}
.yc4{bottom:1001.850000px;}
.y31{bottom:1013.910000px;}
.ya2{bottom:1014.810000px;}
.y9{bottom:1022.190000px;}
.yc3{bottom:1028.670000px;}
.y30{bottom:1034.610000px;}
.y4e{bottom:1045.050000px;}
.ya1{bottom:1045.950000px;}
.y8{bottom:1049.730000px;}
.y2f{bottom:1055.310000px;}
.ya0{bottom:1073.130000px;}
.y7{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.hf{height:25.920000px;}
.h10{height:31.500000px;}
.h15{height:34.380000px;}
.h17{height:34.416000px;}
.h13{height:34.560000px;}
.h16{height:34.596000px;}
.h8{height:43.246406px;}
.h14{height:49.255313px;}
.ha{height:51.840000px;}
.hb{height:53.077852px;}
.hc{height:53.496000px;}
.hd{height:53.573906px;}
.h12{height:55.735312px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h11{height:63.396000px;}
.h2{height:64.546875px;}
.h7{height:70.606406px;}
.h9{height:74.820586px;}
.h6{height:78.927188px;}
.h5{height:85.052461px;}
.he{height:91.620000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:70.740000px;}
.w11{width:84.780000px;}
.wd{width:87.696000px;}
.wc{width:100.260000px;}
.we{width:100.440000px;}
.w7{width:106.380000px;}
.w5{width:106.416000px;}
.wa{width:119.736000px;}
.w10{width:120.636000px;}
.w6{width:127.656000px;}
.w8{width:138.276000px;}
.w9{width:191.370000px;}
.w3{width:233.490000px;}
.wf{width:276.150000px;}
.wb{width:288.390000px;}
.w4{width:456.915000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:8.130000px;}
.x37{left:10.260000px;}
.x2c{left:11.730000px;}
.x30{left:13.140000px;}
.x32{left:14.220000px;}
.x2a{left:20.880000px;}
.x2f{left:23.400000px;}
.x29{left:25.020000px;}
.x31{left:26.460000px;}
.x2e{left:27.900000px;}
.x35{left:30.960000px;}
.x14{left:33.156000px;}
.xf{left:35.100000px;}
.x1e{left:37.836000px;}
.x1c{left:41.220000px;}
.x1a{left:42.510000px;}
.x18{left:47.880000px;}
.x1f{left:49.170000px;}
.x1d{left:55.116000px;}
.x16{left:58.140000px;}
.x25{left:59.805000px;}
.xe{left:63.174000px;}
.x27{left:70.020000px;}
.x11{left:77.574000px;}
.x21{left:80.460000px;}
.x13{left:84.960000px;}
.x10{left:88.374000px;}
.x20{left:97.785000px;}
.x1{left:106.415987px;}
.xa{left:117.534000px;}
.x8{left:138.815987px;}
.x28{left:144.030000px;}
.x3{left:148.895987px;}
.x4{left:149.975987px;}
.x5{left:151.049987px;}
.x12{left:159.509987px;}
.x6{left:172.289987px;}
.x15{left:191.370000px;}
.xc{left:217.830000px;}
.x24{left:242.490000px;}
.xd{left:249.510000px;}
.x7{left:251.309987px;}
.x22{left:253.829987px;}
.x9{left:299.054987px;}
.x23{left:302.474987px;}
.x17{left:319.035000px;}
.xb{left:339.915000px;}
.x26{left:362.235000px;}
.x34{left:368.355000px;}
.x19{left:425.415000px;}
.x2b{left:462.495000px;}
.x36{left:488.985000px;}
.x2d{left:550.185000px;}
.x1b{left:563.685000px;}
.x38{left:573.765000px;}
.x2{left:786.749987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls1{letter-spacing:7.680000pt;}
.ls4{letter-spacing:40.912640pt;}
.ls3{letter-spacing:57.263360pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.049067pt;}
.ws0{word-spacing:-10.720000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._18{margin-left:-4.544000pt;}
._14{margin-left:-3.584000pt;}
._15{margin-left:-2.624000pt;}
._0{margin-left:-1.295360pt;}
._1{width:0.891733pt;}
._13{width:2.094933pt;}
._5{width:2.993280pt;}
._c{width:4.288000pt;}
._d{width:5.184000pt;}
._12{width:6.080000pt;}
._f{width:6.976000pt;}
._19{width:8.128000pt;}
._2{width:9.022720pt;}
._11{width:10.433280pt;}
._a{width:11.562667pt;}
._b{width:12.693333pt;}
._1a{width:13.630293pt;}
._16{width:14.574933pt;}
._e{width:17.728000pt;}
._1c{width:19.268267pt;}
._1b{width:20.800000pt;}
._10{width:21.824000pt;}
._17{width:23.296000pt;}
._1f{width:33.472000pt;}
._1d{width:36.672000pt;}
._1e{width:38.212267pt;}
._8{width:52.348800pt;}
._7{width:53.625600pt;}
._20{width:76.416000pt;}
._3{width:80.397867pt;}
._4{width:81.419307pt;}
._6{width:85.845547pt;}
._9{width:112.743467pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:2.880000pt;}
.y59{bottom:10.560000pt;}
.y88{bottom:18.080000pt;}
.y84{bottom:18.240000pt;}
.y92{bottom:18.266667pt;}
.y8a{bottom:18.280000pt;}
.y5f{bottom:22.880000pt;}
.y58{bottom:33.600000pt;}
.y5b{bottom:35.066667pt;}
.y6d{bottom:38.560000pt;}
.y5e{bottom:45.920000pt;}
.y6{bottom:67.712000pt;}
.y5d{bottom:68.960000pt;}
.y5{bottom:86.112000pt;}
.y4{bottom:104.192000pt;}
.y3{bottom:121.152000pt;}
.y2{bottom:137.946667pt;}
.y2e{bottom:156.346667pt;}
.y82{bottom:156.826667pt;}
.yc2{bottom:158.746667pt;}
.y69{bottom:159.866667pt;}
.y2d{bottom:174.746667pt;}
.y4d{bottom:174.906667pt;}
.y9f{bottom:175.546667pt;}
.yc1{bottom:182.426667pt;}
.y81{bottom:184.506667pt;}
.y68{bottom:187.386667pt;}
.y2c{bottom:193.146667pt;}
.yc0{bottom:200.826667pt;}
.y4c{bottom:202.586667pt;}
.y9e{bottom:203.226667pt;}
.y2b{bottom:211.546667pt;}
.y80{bottom:212.026667pt;}
.y67{bottom:215.066667pt;}
.ybf{bottom:219.226667pt;}
.y2a{bottom:229.946667pt;}
.y4b{bottom:230.106667pt;}
.y9d{bottom:230.746667pt;}
.y7f{bottom:239.706667pt;}
.y66{bottom:242.586667pt;}
.ybe{bottom:242.906667pt;}
.y29{bottom:248.346667pt;}
.y4a{bottom:257.786667pt;}
.y9c{bottom:258.426667pt;}
.ybd{bottom:266.586667pt;}
.y28{bottom:266.746667pt;}
.y7e{bottom:267.226667pt;}
.y65{bottom:270.266667pt;}
.ybc{bottom:284.986667pt;}
.y27{bottom:285.146667pt;}
.y49{bottom:285.306667pt;}
.y9b{bottom:285.946667pt;}
.y7d{bottom:294.906667pt;}
.y64{bottom:297.786667pt;}
.ybb{bottom:303.426667pt;}
.y26{bottom:303.586667pt;}
.y48{bottom:313.026667pt;}
.y9a{bottom:313.666667pt;}
.y25{bottom:321.986667pt;}
.y7c{bottom:322.466667pt;}
.y63{bottom:325.346667pt;}
.yba{bottom:327.266667pt;}
.y99{bottom:337.346667pt;}
.y24{bottom:340.386667pt;}
.y47{bottom:340.546667pt;}
.y7b{bottom:350.146667pt;}
.yb9{bottom:350.946667pt;}
.y62{bottom:353.026667pt;}
.y23{bottom:358.786667pt;}
.y98{bottom:361.026667pt;}
.y46{bottom:368.226667pt;}
.yb8{bottom:369.346667pt;}
.y97{bottom:376.706667pt;}
.y22{bottom:377.186667pt;}
.y7a{bottom:377.666667pt;}
.y61{bottom:385.986667pt;}
.yb7{bottom:393.026667pt;}
.y21{bottom:395.586667pt;}
.y45{bottom:395.746667pt;}
.y60{bottom:401.506667pt;}
.y79{bottom:405.346667pt;}
.y96{bottom:407.906667pt;}
.y20{bottom:413.986667pt;}
.yb6{bottom:416.866667pt;}
.y44{bottom:423.426667pt;}
.y5c{bottom:425.186667pt;}
.y1f{bottom:432.226667pt;}
.y78{bottom:432.866667pt;}
.yb5{bottom:435.266667pt;}
.y95{bottom:439.266667pt;}
.y1e{bottom:450.626667pt;}
.yd9{bottom:450.786667pt;}
.y43{bottom:450.946667pt;}
.yb4{bottom:458.946667pt;}
.y77{bottom:460.546667pt;}
.y1d{bottom:469.026667pt;}
.y94{bottom:470.626667pt;}
.yd8{bottom:474.626667pt;}
.y42{bottom:478.626667pt;}
.yb3{bottom:482.626667pt;}
.y1c{bottom:487.426667pt;}
.y76{bottom:488.066667pt;}
.yd7{bottom:498.306667pt;}
.yb2{bottom:501.026667pt;}
.y93{bottom:501.986667pt;}
.y1b{bottom:505.826667pt;}
.y41{bottom:506.146667pt;}
.y5a{bottom:507.266667pt;}
.y75{bottom:515.746667pt;}
.yd6{bottom:516.706667pt;}
.y1a{bottom:524.226667pt;}
.yb1{bottom:524.866667pt;}
.y91{bottom:533.346667pt;}
.y40{bottom:533.826667pt;}
.yd5{bottom:535.106667pt;}
.y19{bottom:542.653333pt;}
.y74{bottom:543.293333pt;}
.yb0{bottom:548.573333pt;}
.y57{bottom:555.453333pt;}
.yd4{bottom:558.813333pt;}
.y3f{bottom:561.373333pt;}
.y90{bottom:564.733333pt;}
.yaf{bottom:566.973333pt;}
.y73{bottom:570.973333pt;}
.y18{bottom:577.053333pt;}
.yd3{bottom:582.653333pt;}
.y3e{bottom:589.053333pt;}
.y72{bottom:598.493333pt;}
.yd2{bottom:601.053333pt;}
.yae{bottom:604.093333pt;}
.y17{bottom:611.453333pt;}
.y8f{bottom:615.453333pt;}
.y3d{bottom:616.573333pt;}
.yd1{bottom:619.453333pt;}
.y56{bottom:620.093333pt;}
.yad{bottom:622.493333pt;}
.y71{bottom:633.373333pt;}
.y8e{bottom:633.853333pt;}
.y16{bottom:635.933333pt;}
.yac{bottom:640.893333pt;}
.yd0{bottom:643.133333pt;}
.y3c{bottom:644.093333pt;}
.y15{bottom:654.333333pt;}
.yab{bottom:659.293333pt;}
.y70{bottom:662.333333pt;}
.y55{bottom:663.773333pt;}
.y14{bottom:666.653333pt;}
.ycf{bottom:666.813333pt;}
.y8d{bottom:668.253333pt;}
.y3b{bottom:671.773333pt;}
.y8c{bottom:683.773333pt;}
.yce{bottom:685.213333pt;}
.y13{bottom:686.493333pt;}
.y6f{bottom:687.773333pt;}
.y54{bottom:691.293333pt;}
.yaa{bottom:696.253333pt;}
.y3a{bottom:699.293333pt;}
.ycd{bottom:703.613333pt;}
.y12{bottom:704.893333pt;}
.y6e{bottom:710.813333pt;}
.ya9{bottom:714.653333pt;}
.y53{bottom:718.973333pt;}
.y11{bottom:723.293333pt;}
.y6c{bottom:723.933333pt;}
.y39{bottom:726.973333pt;}
.ycc{bottom:727.293333pt;}
.y8b{bottom:730.493333pt;}
.ya8{bottom:738.493333pt;}
.y10{bottom:741.693333pt;}
.y52{bottom:746.493333pt;}
.ycb{bottom:751.133333pt;}
.yf{bottom:761.373333pt;}
.y38{bottom:761.853333pt;}
.ya7{bottom:762.653333pt;}
.yca{bottom:769.533333pt;}
.y6b{bottom:780.933333pt;}
.y51{bottom:781.573333pt;}
.ye{bottom:785.893333pt;}
.yc9{bottom:787.973333pt;}
.y37{bottom:790.853333pt;}
.ya6{bottom:791.653333pt;}
.y89{bottom:793.253333pt;}
.yc8{bottom:806.373333pt;}
.y36{bottom:809.253333pt;}
.yd{bottom:810.373333pt;}
.y50{bottom:818.533333pt;}
.ya5{bottom:819.333333pt;}
.y6a{bottom:822.373333pt;}
.y87{bottom:824.613333pt;}
.y35{bottom:827.653333pt;}
.yc7{bottom:830.053333pt;}
.yc{bottom:835.013333pt;}
.y34{bottom:846.053333pt;}
.ya4{bottom:846.853333pt;}
.yc6{bottom:853.733333pt;}
.y86{bottom:855.813333pt;}
.yb{bottom:859.493333pt;}
.y33{bottom:864.453333pt;}
.yc5{bottom:872.133333pt;}
.y4f{bottom:873.733333pt;}
.ya3{bottom:874.533333pt;}
.y32{bottom:882.853333pt;}
.ya{bottom:883.973333pt;}
.y83{bottom:887.173333pt;}
.yc4{bottom:890.533333pt;}
.y31{bottom:901.253333pt;}
.ya2{bottom:902.053333pt;}
.y9{bottom:908.613333pt;}
.yc3{bottom:914.373333pt;}
.y30{bottom:919.653333pt;}
.y4e{bottom:928.933333pt;}
.ya1{bottom:929.733333pt;}
.y8{bottom:933.093333pt;}
.y2f{bottom:938.053333pt;}
.ya0{bottom:953.893333pt;}
.y7{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.hf{height:23.040000pt;}
.h10{height:28.000000pt;}
.h15{height:30.560000pt;}
.h17{height:30.592000pt;}
.h13{height:30.720000pt;}
.h16{height:30.752000pt;}
.h8{height:38.441250pt;}
.h14{height:43.782500pt;}
.ha{height:46.080000pt;}
.hb{height:47.180312pt;}
.hc{height:47.552000pt;}
.hd{height:47.621250pt;}
.h12{height:49.542500pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h11{height:56.352000pt;}
.h2{height:57.375000pt;}
.h7{height:62.761250pt;}
.h9{height:66.507188pt;}
.h6{height:70.157500pt;}
.h5{height:75.602187pt;}
.he{height:81.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:62.880000pt;}
.w11{width:75.360000pt;}
.wd{width:77.952000pt;}
.wc{width:89.120000pt;}
.we{width:89.280000pt;}
.w7{width:94.560000pt;}
.w5{width:94.592000pt;}
.wa{width:106.432000pt;}
.w10{width:107.232000pt;}
.w6{width:113.472000pt;}
.w8{width:122.912000pt;}
.w9{width:170.106667pt;}
.w3{width:207.546667pt;}
.wf{width:245.466667pt;}
.wb{width:256.346667pt;}
.w4{width:406.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:7.226667pt;}
.x37{left:9.120000pt;}
.x2c{left:10.426667pt;}
.x30{left:11.680000pt;}
.x32{left:12.640000pt;}
.x2a{left:18.560000pt;}
.x2f{left:20.800000pt;}
.x29{left:22.240000pt;}
.x31{left:23.520000pt;}
.x2e{left:24.800000pt;}
.x35{left:27.520000pt;}
.x14{left:29.472000pt;}
.xf{left:31.200000pt;}
.x1e{left:33.632000pt;}
.x1c{left:36.640000pt;}
.x1a{left:37.786667pt;}
.x18{left:42.560000pt;}
.x1f{left:43.706667pt;}
.x1d{left:48.992000pt;}
.x16{left:51.680000pt;}
.x25{left:53.160000pt;}
.xe{left:56.154667pt;}
.x27{left:62.240000pt;}
.x11{left:68.954667pt;}
.x21{left:71.520000pt;}
.x13{left:75.520000pt;}
.x10{left:78.554667pt;}
.x20{left:86.920000pt;}
.x1{left:94.591988pt;}
.xa{left:104.474667pt;}
.x8{left:123.391988pt;}
.x28{left:128.026667pt;}
.x3{left:132.351988pt;}
.x4{left:133.311988pt;}
.x5{left:134.266655pt;}
.x12{left:141.786655pt;}
.x6{left:153.146655pt;}
.x15{left:170.106667pt;}
.xc{left:193.626667pt;}
.x24{left:215.546667pt;}
.xd{left:221.786667pt;}
.x7{left:223.386655pt;}
.x22{left:225.626655pt;}
.x9{left:265.826655pt;}
.x23{left:268.866655pt;}
.x17{left:283.586667pt;}
.xb{left:302.146667pt;}
.x26{left:321.986667pt;}
.x34{left:327.426667pt;}
.x19{left:378.146667pt;}
.x2b{left:411.106667pt;}
.x36{left:434.653333pt;}
.x2d{left:489.053333pt;}
.x1b{left:501.053333pt;}
.x38{left:510.013333pt;}
.x2{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; }
  