
    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_01039a37038285dd77ed35b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c1003a3adc0a1c7372c47dcc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b98e6ed4ebd71e55a4b72f86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_accad57f86401aa11104b6cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_647f4a84a887b68db6094a17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2856cac870883cf363bd7ed9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.540000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:7.380000px;}
.lsa{letter-spacing:11.466720px;}
.ls9{letter-spacing:41.682720px;}
.ls7{letter-spacing:46.002720px;}
.ls8{letter-spacing:64.002720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._10{width:2.367360px;}
._2{width:4.245600px;}
._11{width:5.298000px;}
._19{width:6.443760px;}
._b{width:7.507920px;}
._7{width:8.777040px;}
._13{width:9.800640px;}
._12{width:10.876320px;}
._16{width:12.354960px;}
._a{width:13.916400px;}
._6{width:16.306800px;}
._9{width:17.338080px;}
._15{width:18.435120px;}
._17{width:19.720800px;}
._14{width:21.027840px;}
._18{width:22.194480px;}
._8{width:23.545440px;}
._1a{width:24.666000px;}
._1b{width:26.284320px;}
._d{width:27.489600px;}
._c{width:28.684800px;}
._e{width:36.625200px;}
._f{width:37.648800px;}
._5{width:85.656000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:rgb(17,24,39);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya{bottom:36.720000px;}
.y9{bottom:55.260000px;}
.y40{bottom:116.496000px;}
.y52{bottom:118.836000px;}
.y79{bottom:120.456000px;}
.y51{bottom:132.876000px;}
.y3f{bottom:133.776000px;}
.y78{bottom:137.736000px;}
.y3e{bottom:151.050000px;}
.y77{bottom:155.010000px;}
.y8e{bottom:164.730000px;}
.y3d{bottom:168.330000px;}
.y76{bottom:172.290000px;}
.y8d{bottom:182.010000px;}
.y3c{bottom:185.430000px;}
.y75{bottom:189.570000px;}
.y8c{bottom:200.190000px;}
.y3b{bottom:202.710000px;}
.y74{bottom:206.670000px;}
.y8b{bottom:217.470000px;}
.y3a{bottom:219.990000px;}
.y73{bottom:223.950000px;}
.y8a{bottom:234.750000px;}
.y39{bottom:237.270000px;}
.y72{bottom:241.230000px;}
.y89{bottom:253.110000px;}
.yb8{bottom:254.190000px;}
.y38{bottom:254.550000px;}
.y71{bottom:258.510000px;}
.y88{bottom:270.390000px;}
.yb7{bottom:271.470000px;}
.y37{bottom:271.830000px;}
.y70{bottom:275.790000px;}
.y87{bottom:287.670000px;}
.yb6{bottom:288.750000px;}
.y36{bottom:288.930000px;}
.y6f{bottom:292.890000px;}
.y86{bottom:305.850000px;}
.y35{bottom:306.210000px;}
.y6e{bottom:310.170000px;}
.y85{bottom:323.130000px;}
.y34{bottom:323.490000px;}
.y6d{bottom:327.450000px;}
.y84{bottom:340.455000px;}
.y33{bottom:340.815000px;}
.y6c{bottom:344.775000px;}
.y83{bottom:357.735000px;}
.y32{bottom:358.095000px;}
.y6b{bottom:362.055000px;}
.yb5{bottom:375.015000px;}
.y31{bottom:375.195000px;}
.y82{bottom:376.095000px;}
.y6a{bottom:379.335000px;}
.yb4{bottom:392.115000px;}
.y30{bottom:392.475000px;}
.y81{bottom:393.195000px;}
.y69{bottom:396.435000px;}
.yb3{bottom:409.395000px;}
.y2f{bottom:409.755000px;}
.y80{bottom:410.475000px;}
.y68{bottom:413.715000px;}
.yb2{bottom:426.675000px;}
.y2e{bottom:427.035000px;}
.y7f{bottom:428.835000px;}
.y67{bottom:430.995000px;}
.yb1{bottom:443.955000px;}
.y2d{bottom:444.315000px;}
.y7e{bottom:446.115000px;}
.y66{bottom:448.275000px;}
.yb0{bottom:461.235000px;}
.y2c{bottom:461.595000px;}
.y7d{bottom:463.395000px;}
.y65{bottom:465.555000px;}
.yaf{bottom:478.515000px;}
.y2b{bottom:478.695000px;}
.y7c{bottom:481.755000px;}
.y64{bottom:482.835000px;}
.yae{bottom:495.615000px;}
.y2a{bottom:495.975000px;}
.y7b{bottom:498.855000px;}
.y63{bottom:499.935000px;}
.yad{bottom:512.895000px;}
.y29{bottom:513.255000px;}
.y7a{bottom:516.135000px;}
.y62{bottom:517.215000px;}
.yac{bottom:530.175000px;}
.y28{bottom:530.535000px;}
.y61{bottom:534.495000px;}
.yab{bottom:547.455000px;}
.y27{bottom:547.815000px;}
.y60{bottom:551.775000px;}
.yaa{bottom:564.735000px;}
.y26{bottom:565.095000px;}
.y5f{bottom:569.055000px;}
.ya9{bottom:582.015000px;}
.y25{bottom:582.195000px;}
.y5e{bottom:586.155000px;}
.ya8{bottom:599.115000px;}
.y24{bottom:599.475000px;}
.y5d{bottom:603.435000px;}
.ya7{bottom:616.425000px;}
.y23{bottom:616.785000px;}
.y5c{bottom:620.745000px;}
.ya6{bottom:633.705000px;}
.y22{bottom:634.065000px;}
.y5b{bottom:638.025000px;}
.ya5{bottom:650.985000px;}
.y21{bottom:651.345000px;}
.y5a{bottom:655.305000px;}
.ya4{bottom:668.265000px;}
.y20{bottom:668.625000px;}
.y59{bottom:672.585000px;}
.ya3{bottom:685.545000px;}
.y1f{bottom:685.725000px;}
.y58{bottom:689.685000px;}
.ya2{bottom:702.645000px;}
.y1e{bottom:703.005000px;}
.y57{bottom:706.965000px;}
.ya1{bottom:719.925000px;}
.y1d{bottom:720.285000px;}
.y56{bottom:724.245000px;}
.ya0{bottom:737.205000px;}
.y1c{bottom:737.565000px;}
.y55{bottom:741.525000px;}
.y9f{bottom:754.485000px;}
.y1b{bottom:754.845000px;}
.y54{bottom:758.805000px;}
.y9e{bottom:771.765000px;}
.y1a{bottom:771.945000px;}
.y53{bottom:776.085000px;}
.y9d{bottom:788.865000px;}
.y19{bottom:789.225000px;}
.y50{bottom:793.185000px;}
.y9c{bottom:806.145000px;}
.y18{bottom:806.505000px;}
.y4f{bottom:810.465000px;}
.y9b{bottom:823.425000px;}
.y17{bottom:823.785000px;}
.y4e{bottom:827.745000px;}
.y9a{bottom:840.705000px;}
.y16{bottom:841.065000px;}
.y4d{bottom:845.025000px;}
.y99{bottom:857.985000px;}
.y15{bottom:858.345000px;}
.y4c{bottom:862.305000px;}
.y98{bottom:875.310000px;}
.y14{bottom:878.010000px;}
.y4b{bottom:879.630000px;}
.y97{bottom:893.490000px;}
.y4a{bottom:896.730000px;}
.y13{bottom:897.270000px;}
.y96{bottom:910.770000px;}
.y49{bottom:914.010000px;}
.y12{bottom:916.170000px;}
.y95{bottom:928.050000px;}
.y48{bottom:931.290000px;}
.y11{bottom:935.250000px;}
.y94{bottom:946.410000px;}
.y47{bottom:948.570000px;}
.y10{bottom:954.150000px;}
.y93{bottom:963.690000px;}
.y46{bottom:965.850000px;}
.yf{bottom:973.050000px;}
.y92{bottom:980.790000px;}
.y45{bottom:982.950000px;}
.ye{bottom:992.130000px;}
.y91{bottom:999.150000px;}
.y44{bottom:1000.230000px;}
.yd{bottom:1010.670000px;}
.y90{bottom:1016.430000px;}
.y43{bottom:1017.510000px;}
.yc{bottom:1028.670000px;}
.y8f{bottom:1033.710000px;}
.y42{bottom:1034.790000px;}
.yb{bottom:1049.370000px;}
.y41{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h6{height:39.049805px;}
.h5{height:42.164648px;}
.ha{height:43.156758px;}
.h2{height:43.215117px;}
.hb{height:43.506914px;}
.h9{height:45.549492px;}
.h8{height:46.736719px;}
.h3{height:47.901094px;}
.h4{height:50.800781px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.x2{left:123.155987px;}
.x15{left:135.035987px;}
.x4{left:157.169987px;}
.x17{left:162.029987px;}
.xc{left:186.869987px;}
.x7{left:205.589987px;}
.xf{left:242.309987px;}
.xe{left:317.054987px;}
.xb{left:323.354987px;}
.x13{left:340.454987px;}
.x14{left:342.254987px;}
.x8{left:347.294987px;}
.x16{left:366.014987px;}
.xa{left:371.054987px;}
.xd{left:384.914987px;}
.x10{left:386.534987px;}
.x18{left:389.414987px;}
.x6{left:396.434987px;}
.x11{left:408.134987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
.x12{left:762.089987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:6.560000pt;}
.lsa{letter-spacing:10.192640pt;}
.ls9{letter-spacing:37.051307pt;}
.ls7{letter-spacing:40.891307pt;}
.ls8{letter-spacing:56.891307pt;}
.ws5{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._10{width:2.104320pt;}
._2{width:3.773867pt;}
._11{width:4.709333pt;}
._19{width:5.727787pt;}
._b{width:6.673707pt;}
._7{width:7.801813pt;}
._13{width:8.711680pt;}
._12{width:9.667840pt;}
._16{width:10.982187pt;}
._a{width:12.370133pt;}
._6{width:14.494933pt;}
._9{width:15.411627pt;}
._15{width:16.386773pt;}
._17{width:17.529600pt;}
._14{width:18.691413pt;}
._18{width:19.728427pt;}
._8{width:20.929280pt;}
._1a{width:21.925333pt;}
._1b{width:23.363840pt;}
._d{width:24.435200pt;}
._c{width:25.497600pt;}
._e{width:32.555733pt;}
._f{width:33.465600pt;}
._5{width:76.138667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:32.640000pt;}
.y9{bottom:49.120000pt;}
.y40{bottom:103.552000pt;}
.y52{bottom:105.632000pt;}
.y79{bottom:107.072000pt;}
.y51{bottom:118.112000pt;}
.y3f{bottom:118.912000pt;}
.y78{bottom:122.432000pt;}
.y3e{bottom:134.266667pt;}
.y77{bottom:137.786667pt;}
.y8e{bottom:146.426667pt;}
.y3d{bottom:149.626667pt;}
.y76{bottom:153.146667pt;}
.y8d{bottom:161.786667pt;}
.y3c{bottom:164.826667pt;}
.y75{bottom:168.506667pt;}
.y8c{bottom:177.946667pt;}
.y3b{bottom:180.186667pt;}
.y74{bottom:183.706667pt;}
.y8b{bottom:193.306667pt;}
.y3a{bottom:195.546667pt;}
.y73{bottom:199.066667pt;}
.y8a{bottom:208.666667pt;}
.y39{bottom:210.906667pt;}
.y72{bottom:214.426667pt;}
.y89{bottom:224.986667pt;}
.yb8{bottom:225.946667pt;}
.y38{bottom:226.266667pt;}
.y71{bottom:229.786667pt;}
.y88{bottom:240.346667pt;}
.yb7{bottom:241.306667pt;}
.y37{bottom:241.626667pt;}
.y70{bottom:245.146667pt;}
.y87{bottom:255.706667pt;}
.yb6{bottom:256.666667pt;}
.y36{bottom:256.826667pt;}
.y6f{bottom:260.346667pt;}
.y86{bottom:271.866667pt;}
.y35{bottom:272.186667pt;}
.y6e{bottom:275.706667pt;}
.y85{bottom:287.226667pt;}
.y34{bottom:287.546667pt;}
.y6d{bottom:291.066667pt;}
.y84{bottom:302.626667pt;}
.y33{bottom:302.946667pt;}
.y6c{bottom:306.466667pt;}
.y83{bottom:317.986667pt;}
.y32{bottom:318.306667pt;}
.y6b{bottom:321.826667pt;}
.yb5{bottom:333.346667pt;}
.y31{bottom:333.506667pt;}
.y82{bottom:334.306667pt;}
.y6a{bottom:337.186667pt;}
.yb4{bottom:348.546667pt;}
.y30{bottom:348.866667pt;}
.y81{bottom:349.506667pt;}
.y69{bottom:352.386667pt;}
.yb3{bottom:363.906667pt;}
.y2f{bottom:364.226667pt;}
.y80{bottom:364.866667pt;}
.y68{bottom:367.746667pt;}
.yb2{bottom:379.266667pt;}
.y2e{bottom:379.586667pt;}
.y7f{bottom:381.186667pt;}
.y67{bottom:383.106667pt;}
.yb1{bottom:394.626667pt;}
.y2d{bottom:394.946667pt;}
.y7e{bottom:396.546667pt;}
.y66{bottom:398.466667pt;}
.yb0{bottom:409.986667pt;}
.y2c{bottom:410.306667pt;}
.y7d{bottom:411.906667pt;}
.y65{bottom:413.826667pt;}
.yaf{bottom:425.346667pt;}
.y2b{bottom:425.506667pt;}
.y7c{bottom:428.226667pt;}
.y64{bottom:429.186667pt;}
.yae{bottom:440.546667pt;}
.y2a{bottom:440.866667pt;}
.y7b{bottom:443.426667pt;}
.y63{bottom:444.386667pt;}
.yad{bottom:455.906667pt;}
.y29{bottom:456.226667pt;}
.y7a{bottom:458.786667pt;}
.y62{bottom:459.746667pt;}
.yac{bottom:471.266667pt;}
.y28{bottom:471.586667pt;}
.y61{bottom:475.106667pt;}
.yab{bottom:486.626667pt;}
.y27{bottom:486.946667pt;}
.y60{bottom:490.466667pt;}
.yaa{bottom:501.986667pt;}
.y26{bottom:502.306667pt;}
.y5f{bottom:505.826667pt;}
.ya9{bottom:517.346667pt;}
.y25{bottom:517.506667pt;}
.y5e{bottom:521.026667pt;}
.ya8{bottom:532.546667pt;}
.y24{bottom:532.866667pt;}
.y5d{bottom:536.386667pt;}
.ya7{bottom:547.933333pt;}
.y23{bottom:548.253333pt;}
.y5c{bottom:551.773333pt;}
.ya6{bottom:563.293333pt;}
.y22{bottom:563.613333pt;}
.y5b{bottom:567.133333pt;}
.ya5{bottom:578.653333pt;}
.y21{bottom:578.973333pt;}
.y5a{bottom:582.493333pt;}
.ya4{bottom:594.013333pt;}
.y20{bottom:594.333333pt;}
.y59{bottom:597.853333pt;}
.ya3{bottom:609.373333pt;}
.y1f{bottom:609.533333pt;}
.y58{bottom:613.053333pt;}
.ya2{bottom:624.573333pt;}
.y1e{bottom:624.893333pt;}
.y57{bottom:628.413333pt;}
.ya1{bottom:639.933333pt;}
.y1d{bottom:640.253333pt;}
.y56{bottom:643.773333pt;}
.ya0{bottom:655.293333pt;}
.y1c{bottom:655.613333pt;}
.y55{bottom:659.133333pt;}
.y9f{bottom:670.653333pt;}
.y1b{bottom:670.973333pt;}
.y54{bottom:674.493333pt;}
.y9e{bottom:686.013333pt;}
.y1a{bottom:686.173333pt;}
.y53{bottom:689.853333pt;}
.y9d{bottom:701.213333pt;}
.y19{bottom:701.533333pt;}
.y50{bottom:705.053333pt;}
.y9c{bottom:716.573333pt;}
.y18{bottom:716.893333pt;}
.y4f{bottom:720.413333pt;}
.y9b{bottom:731.933333pt;}
.y17{bottom:732.253333pt;}
.y4e{bottom:735.773333pt;}
.y9a{bottom:747.293333pt;}
.y16{bottom:747.613333pt;}
.y4d{bottom:751.133333pt;}
.y99{bottom:762.653333pt;}
.y15{bottom:762.973333pt;}
.y4c{bottom:766.493333pt;}
.y98{bottom:778.053333pt;}
.y14{bottom:780.453333pt;}
.y4b{bottom:781.893333pt;}
.y97{bottom:794.213333pt;}
.y4a{bottom:797.093333pt;}
.y13{bottom:797.573333pt;}
.y96{bottom:809.573333pt;}
.y49{bottom:812.453333pt;}
.y12{bottom:814.373333pt;}
.y95{bottom:824.933333pt;}
.y48{bottom:827.813333pt;}
.y11{bottom:831.333333pt;}
.y94{bottom:841.253333pt;}
.y47{bottom:843.173333pt;}
.y10{bottom:848.133333pt;}
.y93{bottom:856.613333pt;}
.y46{bottom:858.533333pt;}
.yf{bottom:864.933333pt;}
.y92{bottom:871.813333pt;}
.y45{bottom:873.733333pt;}
.ye{bottom:881.893333pt;}
.y91{bottom:888.133333pt;}
.y44{bottom:889.093333pt;}
.yd{bottom:898.373333pt;}
.y90{bottom:903.493333pt;}
.y43{bottom:904.453333pt;}
.yc{bottom:914.373333pt;}
.y8f{bottom:918.853333pt;}
.y42{bottom:919.813333pt;}
.yb{bottom:932.773333pt;}
.y41{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h6{height:34.710938pt;}
.h5{height:37.479688pt;}
.ha{height:38.361562pt;}
.h2{height:38.413438pt;}
.hb{height:38.672812pt;}
.h9{height:40.488438pt;}
.h8{height:41.543750pt;}
.h3{height:42.578750pt;}
.h4{height:45.156250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.x2{left:109.471988pt;}
.x15{left:120.031988pt;}
.x4{left:139.706655pt;}
.x17{left:144.026655pt;}
.xc{left:166.106655pt;}
.x7{left:182.746655pt;}
.xf{left:215.386655pt;}
.xe{left:281.826655pt;}
.xb{left:287.426655pt;}
.x13{left:302.626655pt;}
.x14{left:304.226655pt;}
.x8{left:308.706655pt;}
.x16{left:325.346655pt;}
.xa{left:329.826655pt;}
.xd{left:342.146655pt;}
.x10{left:343.586655pt;}
.x18{left:346.146655pt;}
.x6{left:352.386655pt;}
.x11{left:362.786655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
.x12{left:677.413322pt;}
}




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