
    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_8cd9dbc18d604821dc3e9c64.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_b3541a4c640b2c3b1d9f1911.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_5c142ee1de04d0d3c467042d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_26bcefc2231096eebf3cf295.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5e23d7b57b8e83d5dec3a236.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_45c98d6141c87ed470bfffd0.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_c7e2e595a7150bc6a8e9a691.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_62bd3024dc36767f6b3caca2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1a605b23283243740ce1f7e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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);}
.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);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.ls1b{letter-spacing:-4.320000px;}
.ls1c{letter-spacing:-4.248000px;}
.ls19{letter-spacing:-1.224000px;}
.ls4{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.720000px;}
.ls7{letter-spacing:3.600000px;}
.ls10{letter-spacing:4.320000px;}
.ls9{letter-spacing:7.200000px;}
.lsb{letter-spacing:11.520000px;}
.lsa{letter-spacing:17.280000px;}
.ls17{letter-spacing:18.144000px;}
.ls8{letter-spacing:30.960000px;}
.lsd{letter-spacing:33.120000px;}
.lsc{letter-spacing:33.840000px;}
.ls15{letter-spacing:54.144000px;}
.ls16{letter-spacing:55.584000px;}
.lse{letter-spacing:56.880000px;}
.lsf{letter-spacing:57.000000px;}
.ls1{letter-spacing:82.800000px;}
.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;}
}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.352000px;}
.ws6{word-spacing:-17.280000px;}
.ws8{word-spacing:-13.752000px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._37{margin-left:-7.387920px;}
._36{margin-left:-5.698080px;}
._3{margin-left:-4.644000px;}
._1{margin-left:-3.570000px;}
._0{margin-left:-1.566000px;}
._2{width:1.062000px;}
._5{width:2.482080px;}
._16{width:3.510000px;}
._a{width:4.608000px;}
._9{width:5.616000px;}
._1e{width:7.002000px;}
._11{width:8.328000px;}
._b{width:9.720000px;}
._25{width:10.831920px;}
._22{width:11.880000px;}
._21{width:13.248000px;}
._7{width:14.256000px;}
._6{width:15.672000px;}
._c{width:16.992000px;}
._8{width:19.098000px;}
._1c{width:20.910000px;}
._10{width:22.392000px;}
._24{width:24.336000px;}
._23{width:25.416000px;}
._f{width:26.568000px;}
._14{width:27.768000px;}
._28{width:29.304000px;}
._18{width:31.032000px;}
._2b{width:32.196000px;}
._19{width:33.198000px;}
._38{width:34.467600px;}
._17{width:36.720000px;}
._1f{width:41.040000px;}
._20{width:42.048000px;}
._30{width:43.128000px;}
._2f{width:44.988000px;}
._2c{width:46.080000px;}
._15{width:47.088000px;}
._33{width:48.888000px;}
._32{width:50.040000px;}
._1a{width:51.048000px;}
._1b{width:52.200000px;}
._1d{width:53.712000px;}
._26{width:56.808000px;}
._27{width:57.816000px;}
._31{width:59.058000px;}
._34{width:60.480000px;}
._35{width:61.920000px;}
._2e{width:63.360000px;}
._2d{width:64.512000px;}
._d{width:70.272000px;}
._e{width:71.616000px;}
._29{width:72.720000px;}
._2a{width:73.920000px;}
._12{width:81.504000px;}
._13{width:82.542000px;}
._4{width:1241.976000px;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,102,204);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.536000px;}
.y7{bottom:7.416000px;}
.y9{bottom:26.640000px;}
.y8{bottom:47.700000px;}
.y5{bottom:68.040000px;}
.y35{bottom:97.056000px;}
.y68{bottom:100.116000px;}
.y88{bottom:100.296000px;}
.y61{bottom:113.076000px;}
.y62{bottom:116.676000px;}
.y34{bottom:120.996000px;}
.y67{bottom:123.876000px;}
.y87{bottom:124.056000px;}
.y60{bottom:136.836000px;}
.y33{bottom:144.756000px;}
.y66{bottom:147.636000px;}
.y86{bottom:147.996000px;}
.y5f{bottom:160.590000px;}
.y32{bottom:168.510000px;}
.y65{bottom:171.390000px;}
.y85{bottom:171.750000px;}
.y5e{bottom:184.350000px;}
.y31{bottom:192.270000px;}
.y64{bottom:195.330000px;}
.y84{bottom:195.510000px;}
.y5d{bottom:208.290000px;}
.y63{bottom:214.950000px;}
.y30{bottom:216.210000px;}
.y83{bottom:219.270000px;}
.y5c{bottom:232.050000px;}
.y2f{bottom:239.970000px;}
.y82{bottom:243.210000px;}
.y5b{bottom:255.810000px;}
.y2e{bottom:263.730000px;}
.y81{bottom:266.970000px;}
.y5a{bottom:279.570000px;}
.y2d{bottom:287.490000px;}
.y80{bottom:290.730000px;}
.y59{bottom:303.330000px;}
.y2c{bottom:311.430000px;}
.y7f{bottom:314.490000px;}
.y8a{bottom:318.270000px;}
.y58{bottom:327.270000px;}
.y2b{bottom:335.190000px;}
.y7e{bottom:338.475000px;}
.y89{bottom:342.075000px;}
.y57{bottom:351.075000px;}
.y2a{bottom:358.995000px;}
.y7d{bottom:362.235000px;}
.y56{bottom:374.835000px;}
.y29{bottom:382.755000px;}
.y7c{bottom:385.995000px;}
.y55{bottom:398.595000px;}
.y28{bottom:406.695000px;}
.y7b{bottom:409.755000px;}
.y54{bottom:422.535000px;}
.y27{bottom:430.455000px;}
.y7a{bottom:433.515000px;}
.y53{bottom:446.295000px;}
.y26{bottom:454.215000px;}
.y79{bottom:457.455000px;}
.y52{bottom:470.055000px;}
.y25{bottom:477.975000px;}
.y78{bottom:481.215000px;}
.y51{bottom:493.815000px;}
.y24{bottom:501.735000px;}
.y77{bottom:504.975000px;}
.y50{bottom:517.755000px;}
.y23{bottom:525.675000px;}
.y76{bottom:528.735000px;}
.y4f{bottom:541.515000px;}
.y22{bottom:549.435000px;}
.y75{bottom:552.675000px;}
.y4e{bottom:565.275000px;}
.y21{bottom:573.195000px;}
.y74{bottom:576.435000px;}
.y4d{bottom:589.035000px;}
.y20{bottom:596.955000px;}
.y73{bottom:600.195000px;}
.y4c{bottom:613.005000px;}
.y1f{bottom:620.925000px;}
.y72{bottom:623.985000px;}
.y4b{bottom:636.765000px;}
.y1e{bottom:644.685000px;}
.y71{bottom:647.925000px;}
.y4a{bottom:660.525000px;}
.y1d{bottom:668.445000px;}
.y70{bottom:671.685000px;}
.y49{bottom:684.285000px;}
.y1c{bottom:692.205000px;}
.y6f{bottom:695.445000px;}
.y48{bottom:708.225000px;}
.y1b{bottom:716.145000px;}
.y6e{bottom:719.205000px;}
.y47{bottom:731.985000px;}
.y1a{bottom:739.905000px;}
.y6d{bottom:743.145000px;}
.y46{bottom:755.745000px;}
.y19{bottom:763.665000px;}
.y6c{bottom:766.905000px;}
.y45{bottom:779.505000px;}
.y18{bottom:787.425000px;}
.y6b{bottom:790.665000px;}
.y44{bottom:803.265000px;}
.y17{bottom:811.365000px;}
.y6a{bottom:814.425000px;}
.y43{bottom:827.205000px;}
.y69{bottom:834.225000px;}
.y16{bottom:835.125000px;}
.y42{bottom:850.965000px;}
.y15{bottom:858.885000px;}
.y41{bottom:874.770000px;}
.y14{bottom:882.690000px;}
.y40{bottom:898.530000px;}
.y13{bottom:906.630000px;}
.y3f{bottom:922.470000px;}
.y12{bottom:930.390000px;}
.y3e{bottom:946.230000px;}
.y11{bottom:954.150000px;}
.y3d{bottom:969.990000px;}
.y10{bottom:977.910000px;}
.y3c{bottom:993.750000px;}
.yf{bottom:1001.670000px;}
.y3b{bottom:1017.690000px;}
.ye{bottom:1032.450000px;}
.y3a{bottom:1041.450000px;}
.yd{bottom:1055.310000px;}
.y39{bottom:1065.210000px;}
.yc{bottom:1073.130000px;}
.y38{bottom:1088.970000px;}
.yb{bottom:1099.410000px;}
.y37{bottom:1112.910000px;}
.ya{bottom:1131.090000px;}
.y36{bottom:1136.670000px;}
.y4{bottom:1157.220000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1192.320000px;}
.y1{bottom:1207.800000px;}
.h5{height:24.156000px;}
.ha{height:33.824531px;}
.h9{height:41.715352px;}
.h2{height:46.696289px;}
.h7{height:50.484375px;}
.h3{height:51.677227px;}
.hd{height:51.996094px;}
.h10{height:52.417969px;}
.hc{height:52.628906px;}
.h4{height:54.000000px;}
.h6{height:59.066719px;}
.hb{height:61.184531px;}
.hf{height:61.304531px;}
.he{height:62.261719px;}
.h8{height:82.808086px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:133.596000px;}
.w3{width:287.130000px;}
.w5{width:301.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:53.280000px;}
.x4{left:95.795987px;}
.xd{left:103.175987px;}
.xa{left:111.275987px;}
.xe{left:113.615987px;}
.x1{left:121.715987px;}
.x16{left:127.835987px;}
.x9{left:133.235987px;}
.x14{left:138.275987px;}
.x5{left:143.634000px;}
.x11{left:148.895987px;}
.x2{left:150.149987px;}
.xc{left:185.429987px;}
.x10{left:295.814987px;}
.xf{left:316.874987px;}
.x6{left:383.295000px;}
.x3{left:402.554987px;}
.xb{left:446.474987px;}
.x8{left:517.605000px;}
.x13{left:710.969987px;}
.x15{left:720.689987px;}
.x12{left:734.909987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls1b{letter-spacing:-3.840000pt;}
.ls1c{letter-spacing:-3.776000pt;}
.ls19{letter-spacing:-1.088000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls7{letter-spacing:3.200000pt;}
.ls10{letter-spacing:3.840000pt;}
.ls9{letter-spacing:6.400000pt;}
.lsb{letter-spacing:10.240000pt;}
.lsa{letter-spacing:15.360000pt;}
.ls17{letter-spacing:16.128000pt;}
.ls8{letter-spacing:27.520000pt;}
.lsd{letter-spacing:29.440000pt;}
.lsc{letter-spacing:30.080000pt;}
.ls15{letter-spacing:48.128000pt;}
.ls16{letter-spacing:49.408000pt;}
.lse{letter-spacing:50.560000pt;}
.lsf{letter-spacing:50.666667pt;}
.ls1{letter-spacing:73.600000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.424000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws8{word-spacing:-12.224000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._37{margin-left:-6.567040pt;}
._36{margin-left:-5.064960pt;}
._3{margin-left:-4.128000pt;}
._1{margin-left:-3.173333pt;}
._0{margin-left:-1.392000pt;}
._2{width:0.944000pt;}
._5{width:2.206293pt;}
._16{width:3.120000pt;}
._a{width:4.096000pt;}
._9{width:4.992000pt;}
._1e{width:6.224000pt;}
._11{width:7.402667pt;}
._b{width:8.640000pt;}
._25{width:9.628373pt;}
._22{width:10.560000pt;}
._21{width:11.776000pt;}
._7{width:12.672000pt;}
._6{width:13.930667pt;}
._c{width:15.104000pt;}
._8{width:16.976000pt;}
._1c{width:18.586667pt;}
._10{width:19.904000pt;}
._24{width:21.632000pt;}
._23{width:22.592000pt;}
._f{width:23.616000pt;}
._14{width:24.682667pt;}
._28{width:26.048000pt;}
._18{width:27.584000pt;}
._2b{width:28.618667pt;}
._19{width:29.509333pt;}
._38{width:30.637867pt;}
._17{width:32.640000pt;}
._1f{width:36.480000pt;}
._20{width:37.376000pt;}
._30{width:38.336000pt;}
._2f{width:39.989333pt;}
._2c{width:40.960000pt;}
._15{width:41.856000pt;}
._33{width:43.456000pt;}
._32{width:44.480000pt;}
._1a{width:45.376000pt;}
._1b{width:46.400000pt;}
._1d{width:47.744000pt;}
._26{width:50.496000pt;}
._27{width:51.392000pt;}
._31{width:52.496000pt;}
._34{width:53.760000pt;}
._35{width:55.040000pt;}
._2e{width:56.320000pt;}
._2d{width:57.344000pt;}
._d{width:62.464000pt;}
._e{width:63.658667pt;}
._29{width:64.640000pt;}
._2a{width:65.706667pt;}
._12{width:72.448000pt;}
._13{width:73.370667pt;}
._4{width:1103.978667pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.032000pt;}
.y7{bottom:6.592000pt;}
.y9{bottom:23.680000pt;}
.y8{bottom:42.400000pt;}
.y5{bottom:60.480000pt;}
.y35{bottom:86.272000pt;}
.y68{bottom:88.992000pt;}
.y88{bottom:89.152000pt;}
.y61{bottom:100.512000pt;}
.y62{bottom:103.712000pt;}
.y34{bottom:107.552000pt;}
.y67{bottom:110.112000pt;}
.y87{bottom:110.272000pt;}
.y60{bottom:121.632000pt;}
.y33{bottom:128.672000pt;}
.y66{bottom:131.232000pt;}
.y86{bottom:131.552000pt;}
.y5f{bottom:142.746667pt;}
.y32{bottom:149.786667pt;}
.y65{bottom:152.346667pt;}
.y85{bottom:152.666667pt;}
.y5e{bottom:163.866667pt;}
.y31{bottom:170.906667pt;}
.y64{bottom:173.626667pt;}
.y84{bottom:173.786667pt;}
.y5d{bottom:185.146667pt;}
.y63{bottom:191.066667pt;}
.y30{bottom:192.186667pt;}
.y83{bottom:194.906667pt;}
.y5c{bottom:206.266667pt;}
.y2f{bottom:213.306667pt;}
.y82{bottom:216.186667pt;}
.y5b{bottom:227.386667pt;}
.y2e{bottom:234.426667pt;}
.y81{bottom:237.306667pt;}
.y5a{bottom:248.506667pt;}
.y2d{bottom:255.546667pt;}
.y80{bottom:258.426667pt;}
.y59{bottom:269.626667pt;}
.y2c{bottom:276.826667pt;}
.y7f{bottom:279.546667pt;}
.y8a{bottom:282.906667pt;}
.y58{bottom:290.906667pt;}
.y2b{bottom:297.946667pt;}
.y7e{bottom:300.866667pt;}
.y89{bottom:304.066667pt;}
.y57{bottom:312.066667pt;}
.y2a{bottom:319.106667pt;}
.y7d{bottom:321.986667pt;}
.y56{bottom:333.186667pt;}
.y29{bottom:340.226667pt;}
.y7c{bottom:343.106667pt;}
.y55{bottom:354.306667pt;}
.y28{bottom:361.506667pt;}
.y7b{bottom:364.226667pt;}
.y54{bottom:375.586667pt;}
.y27{bottom:382.626667pt;}
.y7a{bottom:385.346667pt;}
.y53{bottom:396.706667pt;}
.y26{bottom:403.746667pt;}
.y79{bottom:406.626667pt;}
.y52{bottom:417.826667pt;}
.y25{bottom:424.866667pt;}
.y78{bottom:427.746667pt;}
.y51{bottom:438.946667pt;}
.y24{bottom:445.986667pt;}
.y77{bottom:448.866667pt;}
.y50{bottom:460.226667pt;}
.y23{bottom:467.266667pt;}
.y76{bottom:469.986667pt;}
.y4f{bottom:481.346667pt;}
.y22{bottom:488.386667pt;}
.y75{bottom:491.266667pt;}
.y4e{bottom:502.466667pt;}
.y21{bottom:509.506667pt;}
.y74{bottom:512.386667pt;}
.y4d{bottom:523.586667pt;}
.y20{bottom:530.626667pt;}
.y73{bottom:533.506667pt;}
.y4c{bottom:544.893333pt;}
.y1f{bottom:551.933333pt;}
.y72{bottom:554.653333pt;}
.y4b{bottom:566.013333pt;}
.y1e{bottom:573.053333pt;}
.y71{bottom:575.933333pt;}
.y4a{bottom:587.133333pt;}
.y1d{bottom:594.173333pt;}
.y70{bottom:597.053333pt;}
.y49{bottom:608.253333pt;}
.y1c{bottom:615.293333pt;}
.y6f{bottom:618.173333pt;}
.y48{bottom:629.533333pt;}
.y1b{bottom:636.573333pt;}
.y6e{bottom:639.293333pt;}
.y47{bottom:650.653333pt;}
.y1a{bottom:657.693333pt;}
.y6d{bottom:660.573333pt;}
.y46{bottom:671.773333pt;}
.y19{bottom:678.813333pt;}
.y6c{bottom:681.693333pt;}
.y45{bottom:692.893333pt;}
.y18{bottom:699.933333pt;}
.y6b{bottom:702.813333pt;}
.y44{bottom:714.013333pt;}
.y17{bottom:721.213333pt;}
.y6a{bottom:723.933333pt;}
.y43{bottom:735.293333pt;}
.y69{bottom:741.533333pt;}
.y16{bottom:742.333333pt;}
.y42{bottom:756.413333pt;}
.y15{bottom:763.453333pt;}
.y41{bottom:777.573333pt;}
.y14{bottom:784.613333pt;}
.y40{bottom:798.693333pt;}
.y13{bottom:805.893333pt;}
.y3f{bottom:819.973333pt;}
.y12{bottom:827.013333pt;}
.y3e{bottom:841.093333pt;}
.y11{bottom:848.133333pt;}
.y3d{bottom:862.213333pt;}
.y10{bottom:869.253333pt;}
.y3c{bottom:883.333333pt;}
.yf{bottom:890.373333pt;}
.y3b{bottom:904.613333pt;}
.ye{bottom:917.733333pt;}
.y3a{bottom:925.733333pt;}
.yd{bottom:938.053333pt;}
.y39{bottom:946.853333pt;}
.yc{bottom:953.893333pt;}
.y38{bottom:967.973333pt;}
.yb{bottom:977.253333pt;}
.y37{bottom:989.253333pt;}
.ya{bottom:1005.413333pt;}
.y36{bottom:1010.373333pt;}
.y4{bottom:1028.640000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1059.840000pt;}
.y1{bottom:1073.600000pt;}
.h5{height:21.472000pt;}
.ha{height:30.066250pt;}
.h9{height:37.080312pt;}
.h2{height:41.507812pt;}
.h7{height:44.875000pt;}
.h3{height:45.935313pt;}
.hd{height:46.218750pt;}
.h10{height:46.593750pt;}
.hc{height:46.781250pt;}
.h4{height:48.000000pt;}
.h6{height:52.503750pt;}
.hb{height:54.386250pt;}
.hf{height:54.492917pt;}
.he{height:55.343750pt;}
.h8{height:73.607188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:118.752000pt;}
.w3{width:255.226667pt;}
.w5{width:267.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:47.360000pt;}
.x4{left:85.151988pt;}
.xd{left:91.711988pt;}
.xa{left:98.911988pt;}
.xe{left:100.991988pt;}
.x1{left:108.191988pt;}
.x16{left:113.631988pt;}
.x9{left:118.431988pt;}
.x14{left:122.911988pt;}
.x5{left:127.674667pt;}
.x11{left:132.351988pt;}
.x2{left:133.466655pt;}
.xc{left:164.826655pt;}
.x10{left:262.946655pt;}
.xf{left:281.666655pt;}
.x6{left:340.706667pt;}
.x3{left:357.826655pt;}
.xb{left:396.866655pt;}
.x8{left:460.093333pt;}
.x13{left:631.973322pt;}
.x15{left:640.613322pt;}
.x12{left:653.253322pt;}
}




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