
    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_69eec828daf91d3f5ef4406b.woff')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_b8c4c65d585738fec12899e2.woff')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_7eca271d06ca2d8af1918c66.woff')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_c35e004fcce8d8d938eb8b9d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.114746;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_133f3e6063d715b879496e83.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_37ec33c2e0d78f13096749ab.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5c984eafc24e9f05ef9a9dc1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_d52bb79ccd76dee782b306c5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f0e38dd671cd5a974bb83436.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064453;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_cf9f6d16430008c58f469fb1.woff')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);}
.v1{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.144000px;}
.lse{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.576000px;}
.lsb{letter-spacing:5.040000px;}
.lsa{letter-spacing:5.220000px;}
.ls8{letter-spacing:11.520000px;}
.ls7{letter-spacing:14.400000px;}
.ls5{letter-spacing:23.160000px;}
.ls9{letter-spacing:51.840000px;}
.ls12{letter-spacing:55.584000px;}
.ls2{letter-spacing:77.309760px;}
.ls1{letter-spacing:111.029760px;}
.ls3{letter-spacing:147.780000px;}
.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;}
}
.ws6{word-spacing:-18.576000px;}
.ws4{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.280000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.627920px;}
._12{width:1.743840px;}
._f{width:3.371760px;}
._10{width:4.819200px;}
._3{width:6.228480px;}
._2{width:7.607520px;}
._1a{width:8.742960px;}
._11{width:9.764640px;}
._8{width:10.780560px;}
._7{width:11.855520px;}
._1e{width:13.347120px;}
._5{width:14.531760px;}
._6{width:15.539760px;}
._1d{width:16.774560px;}
._4{width:19.095840px;}
._26{width:20.851920px;}
._24{width:21.907440px;}
._19{width:23.155920px;}
._2d{width:24.266160px;}
._27{width:25.444080px;}
._14{width:26.699760px;}
._9{width:28.023840px;}
._13{width:29.923920px;}
._18{width:31.764000px;}
._17{width:32.807520px;}
._2e{width:34.323120px;}
._25{width:35.395920px;}
._e{width:37.615680px;}
._b{width:38.723760px;}
._c{width:39.775680px;}
._1c{width:40.808160px;}
._d{width:41.935680px;}
._15{width:47.191680px;}
._21{width:48.211920px;}
._16{width:49.263840px;}
._a{width:51.279840px;}
._20{width:52.488000px;}
._2a{width:54.835920px;}
._1f{width:55.979760px;}
._2b{width:59.819760px;}
._23{width:60.827760px;}
._22{width:62.471520px;}
._2f{width:63.791040px;}
._28{width:65.280000px;}
._29{width:67.375680px;}
._1b{width:68.847840px;}
._30{width:84.947760px;}
._31{width:85.971600px;}
._1{width:147.047520px;}
._2c{width:171.120000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:7.020000px;}
.y82{bottom:7.050000px;}
.y75{bottom:7.200000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y74{bottom:12.060000px;}
.y48{bottom:18.900000px;}
.y71{bottom:19.080000px;}
.y46{bottom:30.780000px;}
.y77{bottom:30.825000px;}
.y4d{bottom:30.960000px;}
.y6e{bottom:32.040000px;}
.y47{bottom:42.660000px;}
.y70{bottom:42.840000px;}
.y6b{bottom:43.920000px;}
.y49{bottom:54.540000px;}
.y4e{bottom:54.720000px;}
.y6{bottom:55.440000px;}
.y68{bottom:55.800000px;}
.y3{bottom:57.600000px;}
.y6f{bottom:66.600000px;}
.y69{bottom:67.680000px;}
.y72{bottom:78.480000px;}
.y67{bottom:79.560000px;}
.y33{bottom:89.316000px;}
.y6a{bottom:91.620000px;}
.y32{bottom:96.156000px;}
.yb1{bottom:102.996000px;}
.y6d{bottom:103.500000px;}
.y31{bottom:110.016000px;}
.y64{bottom:116.856000px;}
.yb0{bottom:126.756000px;}
.y63{bottom:130.716000px;}
.y94{bottom:135.936000px;}
.yaf{bottom:150.510000px;}
.y62{bottom:151.410000px;}
.y93{bottom:151.590000px;}
.y30{bottom:166.350000px;}
.y61{bottom:172.110000px;}
.yae{bottom:174.450000px;}
.y60{bottom:178.950000px;}
.y2f{bottom:190.290000px;}
.y5f{bottom:192.810000px;}
.yad{bottom:198.210000px;}
.y2d{bottom:214.050000px;}
.y2e{bottom:220.890000px;}
.yac{bottom:221.970000px;}
.y91{bottom:228.990000px;}
.y92{bottom:235.830000px;}
.y2c{bottom:237.810000px;}
.yab{bottom:245.730000px;}
.y90{bottom:252.930000px;}
.y5e{bottom:254.910000px;}
.y2b{bottom:261.570000px;}
.yaa{bottom:269.490000px;}
.y8f{bottom:276.690000px;}
.y5d{bottom:278.670000px;}
.y2a{bottom:285.510000px;}
.ya9{bottom:293.430000px;}
.y8e{bottom:300.450000px;}
.y5c{bottom:302.610000px;}
.y29{bottom:309.270000px;}
.ya8{bottom:317.190000px;}
.y8d{bottom:324.210000px;}
.y5a{bottom:326.370000px;}
.y28{bottom:333.030000px;}
.y5b{bottom:333.210000px;}
.ya7{bottom:340.995000px;}
.y8c{bottom:348.195000px;}
.y59{bottom:350.175000px;}
.y27{bottom:356.835000px;}
.ya6{bottom:364.755000px;}
.y8b{bottom:371.955000px;}
.y58{bottom:373.935000px;}
.y26{bottom:380.775000px;}
.ya5{bottom:388.695000px;}
.y8a{bottom:395.715000px;}
.y57{bottom:397.875000px;}
.y25{bottom:404.535000px;}
.ya4{bottom:412.455000px;}
.y89{bottom:419.475000px;}
.y56{bottom:421.635000px;}
.y24{bottom:428.295000px;}
.ya3{bottom:436.215000px;}
.y88{bottom:443.415000px;}
.y55{bottom:445.395000px;}
.y23{bottom:452.055000px;}
.ya2{bottom:459.975000px;}
.y54{bottom:469.155000px;}
.y22{bottom:475.995000px;}
.y87{bottom:476.175000px;}
.ya1{bottom:483.915000px;}
.y53{bottom:493.095000px;}
.y21{bottom:499.755000px;}
.y86{bottom:499.935000px;}
.ya0{bottom:507.675000px;}
.y52{bottom:516.855000px;}
.y20{bottom:523.515000px;}
.y85{bottom:526.755000px;}
.y9f{bottom:531.435000px;}
.y51{bottom:540.615000px;}
.y1f{bottom:547.275000px;}
.y84{bottom:551.775000px;}
.y9e{bottom:555.195000px;}
.y50{bottom:564.375000px;}
.y1e{bottom:571.215000px;}
.y83{bottom:576.615000px;}
.y9d{bottom:579.135000px;}
.y4f{bottom:591.375000px;}
.y1d{bottom:594.975000px;}
.y81{bottom:601.635000px;}
.y9c{bottom:602.895000px;}
.y4c{bottom:616.245000px;}
.y1c{bottom:618.765000px;}
.y80{bottom:626.505000px;}
.y9b{bottom:626.685000px;}
.y1b{bottom:642.525000px;}
.y9a{bottom:650.445000px;}
.y7f{bottom:651.525000px;}
.y1a{bottom:666.285000px;}
.y99{bottom:674.385000px;}
.y7e{bottom:676.365000px;}
.y4b{bottom:688.785000px;}
.y19{bottom:690.225000px;}
.y98{bottom:698.145000px;}
.y7d{bottom:701.385000px;}
.y45{bottom:713.805000px;}
.y18{bottom:713.985000px;}
.y97{bottom:721.905000px;}
.y7c{bottom:726.225000px;}
.y17{bottom:737.745000px;}
.y96{bottom:745.665000px;}
.y7b{bottom:751.245000px;}
.y16{bottom:761.505000px;}
.y95{bottom:769.605000px;}
.y7a{bottom:776.085000px;}
.y15{bottom:785.445000px;}
.y44{bottom:793.365000px;}
.y79{bottom:801.105000px;}
.y14{bottom:809.205000px;}
.y43{bottom:817.125000px;}
.y78{bottom:825.945000px;}
.y13{bottom:832.965000px;}
.y42{bottom:840.885000px;}
.y76{bottom:850.965000px;}
.y12{bottom:856.725000px;}
.y41{bottom:864.645000px;}
.y11{bottom:880.710000px;}
.y40{bottom:888.630000px;}
.y73{bottom:899.610000px;}
.y10{bottom:904.470000px;}
.y3f{bottom:912.390000px;}
.y66{bottom:925.710000px;}
.yf{bottom:928.230000px;}
.y3e{bottom:936.150000px;}
.ye{bottom:951.990000px;}
.y3d{bottom:959.910000px;}
.yd{bottom:975.930000px;}
.y3c{bottom:983.850000px;}
.yc{bottom:999.690000px;}
.y3b{bottom:1007.610000px;}
.y6c{bottom:1023.270000px;}
.yb{bottom:1023.450000px;}
.y3a{bottom:1031.370000px;}
.ya{bottom:1049.550000px;}
.y39{bottom:1055.130000px;}
.y38{bottom:1079.070000px;}
.y9{bottom:1081.410000px;}
.y65{bottom:1085.910000px;}
.y37{bottom:1102.830000px;}
.y8{bottom:1113.090000px;}
.y35{bottom:1126.590000px;}
.y36{bottom:1133.430000px;}
.y7{bottom:1144.800000px;}
.y34{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:5.076563px;}
.hc{height:23.760000px;}
.he{height:23.796000px;}
.h12{height:23.940000px;}
.h3{height:27.036000px;}
.h14{height:38.671172px;}
.ha{height:42.516211px;}
.h2{height:46.696289px;}
.h10{height:47.520000px;}
.h13{height:47.556000px;}
.h9{height:61.101562px;}
.h8{height:62.261719px;}
.h4{height:63.457031px;}
.h5{height:65.884219px;}
.hb{height:71.280000px;}
.hd{height:71.460000px;}
.h7{height:82.808086px;}
.h11{height:95.220000px;}
.hf{height:145.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:34.020000px;}
.w7{width:38.340000px;}
.w14{width:55.800000px;}
.w15{width:55.836000px;}
.w13{width:71.820000px;}
.w16{width:75.960000px;}
.wb{width:84.060000px;}
.wc{width:84.096000px;}
.wd{width:93.780000px;}
.w9{width:94.680000px;}
.w10{width:95.796000px;}
.w12{width:102.456000px;}
.w4{width:104.076000px;}
.wa{width:104.976000px;}
.wf{width:137.700000px;}
.w8{width:196.230000px;}
.w11{width:244.830000px;}
.w5{width:300.810000px;}
.w3{width:300.855000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:4.500000px;}
.x19{left:5.580000px;}
.x6{left:7.560000px;}
.x40{left:9.360000px;}
.x22{left:10.800000px;}
.x33{left:11.880000px;}
.x1e{left:13.320000px;}
.x39{left:15.660000px;}
.x20{left:17.100000px;}
.x42{left:19.080000px;}
.x1d{left:21.420000px;}
.x3a{left:22.500000px;}
.x3c{left:23.580000px;}
.x21{left:24.840000px;}
.x24{left:26.820000px;}
.x27{left:28.980000px;}
.x1b{left:30.594000px;}
.x28{left:31.680000px;}
.x2b{left:33.120000px;}
.x41{left:34.605000px;}
.x2e{left:35.820000px;}
.x2c{left:37.980000px;}
.x43{left:39.105000px;}
.x2d{left:41.580000px;}
.x2a{left:43.740000px;}
.x37{left:75.060000px;}
.x3{left:87.660000px;}
.x18{left:91.836000px;}
.x8{left:95.795987px;}
.x48{left:100.655987px;}
.x15{left:101.915987px;}
.x44{left:105.695987px;}
.xb{left:121.535987px;}
.x34{left:126.396000px;}
.x4a{left:127.835987px;}
.x1a{left:130.536000px;}
.x49{left:138.275987px;}
.x11{left:148.895987px;}
.x1{left:151.229987px;}
.x31{left:159.689987px;}
.x45{left:169.949987px;}
.xa{left:211.349987px;}
.xf{left:240.149987px;}
.x9{left:241.949987px;}
.x46{left:248.789973px;}
.x47{left:254.909987px;}
.x35{left:264.630000px;}
.xc{left:270.389987px;}
.x16{left:276.689987px;}
.x4{left:293.295000px;}
.xe{left:303.374987px;}
.x14{left:311.834987px;}
.x2{left:316.694987px;}
.x1c{left:327.315000px;}
.x36{left:360.975000px;}
.x5{left:389.415000px;}
.x3d{left:417.315000px;}
.x1f{left:422.535000px;}
.xd{left:441.254987px;}
.x10{left:462.494987px;}
.x3e{left:473.505000px;}
.x7{left:494.205000px;}
.x23{left:528.045000px;}
.x3f{left:529.845000px;}
.x38{left:606.345000px;}
.x25{left:612.645000px;}
.x12{left:632.624973px;}
.x13{left:638.744987px;}
.x32{left:690.089973px;}
.x26{left:697.110000px;}
.x3b{left:709.350000px;}
.x2f{left:738.869973px;}
.x30{left:744.989987px;}
.x17{left:786.929987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.512000pt;}
.lsb{letter-spacing:4.480000pt;}
.lsa{letter-spacing:4.640000pt;}
.ls8{letter-spacing:10.240000pt;}
.ls7{letter-spacing:12.800000pt;}
.ls5{letter-spacing:20.586667pt;}
.ls9{letter-spacing:46.080000pt;}
.ls12{letter-spacing:49.408000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls1{letter-spacing:98.693120pt;}
.ls3{letter-spacing:131.360000pt;}
.ws6{word-spacing:-16.512000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.360000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.447040pt;}
._12{width:1.550080pt;}
._f{width:2.997120pt;}
._10{width:4.283733pt;}
._3{width:5.536427pt;}
._2{width:6.762240pt;}
._1a{width:7.771520pt;}
._11{width:8.679680pt;}
._8{width:9.582720pt;}
._7{width:10.538240pt;}
._1e{width:11.864107pt;}
._5{width:12.917120pt;}
._6{width:13.813120pt;}
._1d{width:14.910720pt;}
._4{width:16.974080pt;}
._26{width:18.535040pt;}
._24{width:19.473280pt;}
._19{width:20.583040pt;}
._2d{width:21.569920pt;}
._27{width:22.616960pt;}
._14{width:23.733120pt;}
._9{width:24.910080pt;}
._13{width:26.599040pt;}
._18{width:28.234667pt;}
._17{width:29.162240pt;}
._2e{width:30.509440pt;}
._25{width:31.463040pt;}
._e{width:33.436160pt;}
._b{width:34.421120pt;}
._c{width:35.356160pt;}
._1c{width:36.273920pt;}
._d{width:37.276160pt;}
._15{width:41.948160pt;}
._21{width:42.855040pt;}
._16{width:43.790080pt;}
._a{width:45.582080pt;}
._20{width:46.656000pt;}
._2a{width:48.743040pt;}
._1f{width:49.759787pt;}
._2b{width:53.173120pt;}
._23{width:54.069120pt;}
._22{width:55.530240pt;}
._2f{width:56.703147pt;}
._28{width:58.026667pt;}
._29{width:59.889493pt;}
._1b{width:61.198080pt;}
._30{width:75.509120pt;}
._31{width:76.419200pt;}
._1{width:130.708907pt;}
._2c{width:152.106667pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:6.240000pt;}
.y82{bottom:6.266667pt;}
.y75{bottom:6.400000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y74{bottom:10.720000pt;}
.y48{bottom:16.800000pt;}
.y71{bottom:16.960000pt;}
.y46{bottom:27.360000pt;}
.y77{bottom:27.400000pt;}
.y4d{bottom:27.520000pt;}
.y6e{bottom:28.480000pt;}
.y47{bottom:37.920000pt;}
.y70{bottom:38.080000pt;}
.y6b{bottom:39.040000pt;}
.y49{bottom:48.480000pt;}
.y4e{bottom:48.640000pt;}
.y6{bottom:49.280000pt;}
.y68{bottom:49.600000pt;}
.y3{bottom:51.200000pt;}
.y6f{bottom:59.200000pt;}
.y69{bottom:60.160000pt;}
.y72{bottom:69.760000pt;}
.y67{bottom:70.720000pt;}
.y33{bottom:79.392000pt;}
.y6a{bottom:81.440000pt;}
.y32{bottom:85.472000pt;}
.yb1{bottom:91.552000pt;}
.y6d{bottom:92.000000pt;}
.y31{bottom:97.792000pt;}
.y64{bottom:103.872000pt;}
.yb0{bottom:112.672000pt;}
.y63{bottom:116.192000pt;}
.y94{bottom:120.832000pt;}
.yaf{bottom:133.786667pt;}
.y62{bottom:134.586667pt;}
.y93{bottom:134.746667pt;}
.y30{bottom:147.866667pt;}
.y61{bottom:152.986667pt;}
.yae{bottom:155.066667pt;}
.y60{bottom:159.066667pt;}
.y2f{bottom:169.146667pt;}
.y5f{bottom:171.386667pt;}
.yad{bottom:176.186667pt;}
.y2d{bottom:190.266667pt;}
.y2e{bottom:196.346667pt;}
.yac{bottom:197.306667pt;}
.y91{bottom:203.546667pt;}
.y92{bottom:209.626667pt;}
.y2c{bottom:211.386667pt;}
.yab{bottom:218.426667pt;}
.y90{bottom:224.826667pt;}
.y5e{bottom:226.586667pt;}
.y2b{bottom:232.506667pt;}
.yaa{bottom:239.546667pt;}
.y8f{bottom:245.946667pt;}
.y5d{bottom:247.706667pt;}
.y2a{bottom:253.786667pt;}
.ya9{bottom:260.826667pt;}
.y8e{bottom:267.066667pt;}
.y5c{bottom:268.986667pt;}
.y29{bottom:274.906667pt;}
.ya8{bottom:281.946667pt;}
.y8d{bottom:288.186667pt;}
.y5a{bottom:290.106667pt;}
.y28{bottom:296.026667pt;}
.y5b{bottom:296.186667pt;}
.ya7{bottom:303.106667pt;}
.y8c{bottom:309.506667pt;}
.y59{bottom:311.266667pt;}
.y27{bottom:317.186667pt;}
.ya6{bottom:324.226667pt;}
.y8b{bottom:330.626667pt;}
.y58{bottom:332.386667pt;}
.y26{bottom:338.466667pt;}
.ya5{bottom:345.506667pt;}
.y8a{bottom:351.746667pt;}
.y57{bottom:353.666667pt;}
.y25{bottom:359.586667pt;}
.ya4{bottom:366.626667pt;}
.y89{bottom:372.866667pt;}
.y56{bottom:374.786667pt;}
.y24{bottom:380.706667pt;}
.ya3{bottom:387.746667pt;}
.y88{bottom:394.146667pt;}
.y55{bottom:395.906667pt;}
.y23{bottom:401.826667pt;}
.ya2{bottom:408.866667pt;}
.y54{bottom:417.026667pt;}
.y22{bottom:423.106667pt;}
.y87{bottom:423.266667pt;}
.ya1{bottom:430.146667pt;}
.y53{bottom:438.306667pt;}
.y21{bottom:444.226667pt;}
.y86{bottom:444.386667pt;}
.ya0{bottom:451.266667pt;}
.y52{bottom:459.426667pt;}
.y20{bottom:465.346667pt;}
.y85{bottom:468.226667pt;}
.y9f{bottom:472.386667pt;}
.y51{bottom:480.546667pt;}
.y1f{bottom:486.466667pt;}
.y84{bottom:490.466667pt;}
.y9e{bottom:493.506667pt;}
.y50{bottom:501.666667pt;}
.y1e{bottom:507.746667pt;}
.y83{bottom:512.546667pt;}
.y9d{bottom:514.786667pt;}
.y4f{bottom:525.666667pt;}
.y1d{bottom:528.866667pt;}
.y81{bottom:534.786667pt;}
.y9c{bottom:535.906667pt;}
.y4c{bottom:547.773333pt;}
.y1c{bottom:550.013333pt;}
.y80{bottom:556.893333pt;}
.y9b{bottom:557.053333pt;}
.y1b{bottom:571.133333pt;}
.y9a{bottom:578.173333pt;}
.y7f{bottom:579.133333pt;}
.y1a{bottom:592.253333pt;}
.y99{bottom:599.453333pt;}
.y7e{bottom:601.213333pt;}
.y4b{bottom:612.253333pt;}
.y19{bottom:613.533333pt;}
.y98{bottom:620.573333pt;}
.y7d{bottom:623.453333pt;}
.y45{bottom:634.493333pt;}
.y18{bottom:634.653333pt;}
.y97{bottom:641.693333pt;}
.y7c{bottom:645.533333pt;}
.y17{bottom:655.773333pt;}
.y96{bottom:662.813333pt;}
.y7b{bottom:667.773333pt;}
.y16{bottom:676.893333pt;}
.y95{bottom:684.093333pt;}
.y7a{bottom:689.853333pt;}
.y15{bottom:698.173333pt;}
.y44{bottom:705.213333pt;}
.y79{bottom:712.093333pt;}
.y14{bottom:719.293333pt;}
.y43{bottom:726.333333pt;}
.y78{bottom:734.173333pt;}
.y13{bottom:740.413333pt;}
.y42{bottom:747.453333pt;}
.y76{bottom:756.413333pt;}
.y12{bottom:761.533333pt;}
.y41{bottom:768.573333pt;}
.y11{bottom:782.853333pt;}
.y40{bottom:789.893333pt;}
.y73{bottom:799.653333pt;}
.y10{bottom:803.973333pt;}
.y3f{bottom:811.013333pt;}
.y66{bottom:822.853333pt;}
.yf{bottom:825.093333pt;}
.y3e{bottom:832.133333pt;}
.ye{bottom:846.213333pt;}
.y3d{bottom:853.253333pt;}
.yd{bottom:867.493333pt;}
.y3c{bottom:874.533333pt;}
.yc{bottom:888.613333pt;}
.y3b{bottom:895.653333pt;}
.y6c{bottom:909.573333pt;}
.yb{bottom:909.733333pt;}
.y3a{bottom:916.773333pt;}
.ya{bottom:932.933333pt;}
.y39{bottom:937.893333pt;}
.y38{bottom:959.173333pt;}
.y9{bottom:961.253333pt;}
.y65{bottom:965.253333pt;}
.y37{bottom:980.293333pt;}
.y8{bottom:989.413333pt;}
.y35{bottom:1001.413333pt;}
.y36{bottom:1007.493333pt;}
.y7{bottom:1017.600000pt;}
.y34{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:4.512500pt;}
.hc{height:21.120000pt;}
.he{height:21.152000pt;}
.h12{height:21.280000pt;}
.h3{height:24.032000pt;}
.h14{height:34.374375pt;}
.ha{height:37.792187pt;}
.h2{height:41.507812pt;}
.h10{height:42.240000pt;}
.h13{height:42.272000pt;}
.h9{height:54.312500pt;}
.h8{height:55.343750pt;}
.h4{height:56.406250pt;}
.h5{height:58.563750pt;}
.hb{height:63.360000pt;}
.hd{height:63.520000pt;}
.h7{height:73.607188pt;}
.h11{height:84.640000pt;}
.hf{height:128.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:30.240000pt;}
.w7{width:34.080000pt;}
.w14{width:49.600000pt;}
.w15{width:49.632000pt;}
.w13{width:63.840000pt;}
.w16{width:67.520000pt;}
.wb{width:74.720000pt;}
.wc{width:74.752000pt;}
.wd{width:83.360000pt;}
.w9{width:84.160000pt;}
.w10{width:85.152000pt;}
.w12{width:91.072000pt;}
.w4{width:92.512000pt;}
.wa{width:93.312000pt;}
.wf{width:122.400000pt;}
.w8{width:174.426667pt;}
.w11{width:217.626667pt;}
.w5{width:267.386667pt;}
.w3{width:267.426667pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:4.000000pt;}
.x19{left:4.960000pt;}
.x6{left:6.720000pt;}
.x40{left:8.320000pt;}
.x22{left:9.600000pt;}
.x33{left:10.560000pt;}
.x1e{left:11.840000pt;}
.x39{left:13.920000pt;}
.x20{left:15.200000pt;}
.x42{left:16.960000pt;}
.x1d{left:19.040000pt;}
.x3a{left:20.000000pt;}
.x3c{left:20.960000pt;}
.x21{left:22.080000pt;}
.x24{left:23.840000pt;}
.x27{left:25.760000pt;}
.x1b{left:27.194667pt;}
.x28{left:28.160000pt;}
.x2b{left:29.440000pt;}
.x41{left:30.760000pt;}
.x2e{left:31.840000pt;}
.x2c{left:33.760000pt;}
.x43{left:34.760000pt;}
.x2d{left:36.960000pt;}
.x2a{left:38.880000pt;}
.x37{left:66.720000pt;}
.x3{left:77.920000pt;}
.x18{left:81.632000pt;}
.x8{left:85.151988pt;}
.x48{left:89.471988pt;}
.x15{left:90.591988pt;}
.x44{left:93.951988pt;}
.xb{left:108.031988pt;}
.x34{left:112.352000pt;}
.x4a{left:113.631988pt;}
.x1a{left:116.032000pt;}
.x49{left:122.911988pt;}
.x11{left:132.351988pt;}
.x1{left:134.426655pt;}
.x31{left:141.946655pt;}
.x45{left:151.066655pt;}
.xa{left:187.866655pt;}
.xf{left:213.466655pt;}
.x9{left:215.066655pt;}
.x46{left:221.146643pt;}
.x47{left:226.586655pt;}
.x35{left:235.226667pt;}
.xc{left:240.346655pt;}
.x16{left:245.946655pt;}
.x4{left:260.706667pt;}
.xe{left:269.666655pt;}
.x14{left:277.186655pt;}
.x2{left:281.506655pt;}
.x1c{left:290.946667pt;}
.x36{left:320.866667pt;}
.x5{left:346.146667pt;}
.x3d{left:370.946667pt;}
.x1f{left:375.586667pt;}
.xd{left:392.226655pt;}
.x10{left:411.106655pt;}
.x3e{left:420.893333pt;}
.x7{left:439.293333pt;}
.x23{left:469.373333pt;}
.x3f{left:470.973333pt;}
.x38{left:538.973333pt;}
.x25{left:544.573333pt;}
.x12{left:562.333310pt;}
.x13{left:567.773322pt;}
.x32{left:613.413310pt;}
.x26{left:619.653333pt;}
.x3b{left:630.533333pt;}
.x2f{left:656.773310pt;}
.x30{left:662.213322pt;}
.x17{left:699.493322pt;}
}




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