
    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_6092e5eb11a59e9e6d80df6e.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_f908c69127c45f11d9d2c916.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_081b9ec4382996496c0296ec.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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_69dfcecc8652b54f235ccaa9.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_1dba2e937ef63b3f3b654589.woff')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_51dc2572d3ae4ae9a2e27e15.woff')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_de756a313d60308f1f069afc.woff')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_142d4aa97bd793b78181aebc.woff')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_5eabd11fbc42be0819d0ed3d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.879883;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.684000px;}
.ls24{letter-spacing:2.136000px;}
.ls14{letter-spacing:2.880000px;}
.ls7{letter-spacing:3.600000px;}
.ls10{letter-spacing:5.040000px;}
.ls1c{letter-spacing:9.360000px;}
.ls1b{letter-spacing:10.080000px;}
.lsd{letter-spacing:12.960000px;}
.ls1f{letter-spacing:16.536000px;}
.ls1e{letter-spacing:19.440000px;}
.lsf{letter-spacing:20.160000px;}
.ls9{letter-spacing:20.880000px;}
.lse{letter-spacing:22.320000px;}
.ls12{letter-spacing:23.040000px;}
.ls20{letter-spacing:23.736000px;}
.ls19{letter-spacing:25.200000px;}
.ls1a{letter-spacing:25.920000px;}
.ls15{letter-spacing:27.360000px;}
.lsc{letter-spacing:28.080000px;}
.ls23{letter-spacing:33.096000px;}
.ls6{letter-spacing:34.560000px;}
.ls1d{letter-spacing:36.000000px;}
.lsa{letter-spacing:36.720000px;}
.ls11{letter-spacing:38.160000px;}
.ls21{letter-spacing:40.296000px;}
.lsb{letter-spacing:49.680000px;}
.ls26{letter-spacing:54.144000px;}
.ls22{letter-spacing:59.016000px;}
.ls25{letter-spacing:66.240000px;}
.ls17{letter-spacing:67.680000px;}
.ls18{letter-spacing:67.860000px;}
.ls2{letter-spacing:77.309760px;}
.ls3{letter-spacing:85.680000px;}
.ls1{letter-spacing:111.029760px;}
.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:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-1.008000px;}
._0{width:1.068000px;}
._6{width:2.119440px;}
._1{width:3.197520px;}
._8{width:4.370880px;}
._c{width:5.544000px;}
._b{width:6.624000px;}
._42{width:7.632000px;}
._e{width:8.640000px;}
._5{width:9.936000px;}
._a{width:11.856000px;}
._d{width:13.416000px;}
._7{width:14.544000px;}
._26{width:15.552000px;}
._31{width:16.992000px;}
._14{width:19.368000px;}
._13{width:20.808000px;}
._18{width:22.260000px;}
._1a{width:23.460000px;}
._17{width:24.696000px;}
._3d{width:25.704000px;}
._15{width:26.712000px;}
._10{width:27.840000px;}
._12{width:29.376000px;}
._11{width:30.432000px;}
._33{width:31.488000px;}
._1f{width:32.904000px;}
._1c{width:34.128000px;}
._1d{width:35.424000px;}
._25{width:36.576000px;}
._2a{width:37.584000px;}
._16{width:38.808000px;}
._1e{width:40.176000px;}
._35{width:41.256000px;}
._28{width:42.984000px;}
._29{width:44.064000px;}
._34{width:45.384000px;}
._32{width:46.800000px;}
._22{width:48.744000px;}
._21{width:49.968000px;}
._3f{width:50.976000px;}
._30{width:52.200000px;}
._2f{width:53.208000px;}
._23{width:54.432000px;}
._24{width:55.512000px;}
._27{width:57.168000px;}
._36{width:58.608000px;}
._20{width:59.760000px;}
._1b{width:61.128000px;}
._f{width:62.496000px;}
._19{width:64.152000px;}
._40{width:65.412000px;}
._3b{width:66.528000px;}
._3c{width:67.800000px;}
._4{width:69.216000px;}
._3{width:70.392000px;}
._38{width:72.360000px;}
._37{width:73.512000px;}
._41{width:76.968000px;}
._39{width:78.696000px;}
._2c{width:79.920000px;}
._2b{width:81.072000px;}
._9{width:84.384000px;}
._3e{width:97.992000px;}
._2d{width:107.568000px;}
._2e{width:109.152000px;}
._3a{width:225.216000px;}
.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;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.960000px;}
.y73{bottom:4.005000px;}
.y4{bottom:10.260000px;}
.y5{bottom:11.340000px;}
.y59{bottom:14.220000px;}
.y63{bottom:14.400000px;}
.y5f{bottom:24.480000px;}
.y8a{bottom:24.654000px;}
.y5a{bottom:24.660000px;}
.y71{bottom:24.705000px;}
.y5d{bottom:25.020000px;}
.y76{bottom:34.920000px;}
.y6e{bottom:34.965000px;}
.y79{bottom:35.094000px;}
.y65{bottom:35.280000px;}
.y61{bottom:35.460000px;}
.y7a{bottom:45.354000px;}
.y77{bottom:45.360000px;}
.y8d{bottom:45.390000px;}
.y70{bottom:45.405000px;}
.y6{bottom:55.440000px;}
.y6d{bottom:55.665000px;}
.y3{bottom:57.600000px;}
.y6f{bottom:66.105000px;}
.y72{bottom:86.805000px;}
.y57{bottom:99.936000px;}
.y8b{bottom:100.296000px;}
.y3b{bottom:108.756000px;}
.yb7{bottom:110.736000px;}
.y31{bottom:114.696000px;}
.y56{bottom:123.696000px;}
.y3e{bottom:126.756000px;}
.y3a{bottom:132.516000px;}
.yb6{bottom:134.496000px;}
.y30{bottom:138.636000px;}
.y89{bottom:142.416000px;}
.y55{bottom:147.456000px;}
.y3d{bottom:150.510000px;}
.yb5{bottom:158.430000px;}
.y2f{bottom:162.390000px;}
.y39{bottom:165.450000px;}
.y54{bottom:171.390000px;}
.y3c{bottom:174.450000px;}
.yb4{bottom:182.190000px;}
.y2e{bottom:186.150000px;}
.y78{bottom:186.510000px;}
.y53{bottom:195.150000px;}
.y38{bottom:198.210000px;}
.yb3{bottom:205.950000px;}
.y2d{bottom:209.910000px;}
.y88{bottom:216.210000px;}
.y52{bottom:218.910000px;}
.y37{bottom:221.970000px;}
.y75{bottom:228.810000px;}
.yb2{bottom:229.710000px;}
.y2c{bottom:233.850000px;}
.y51{bottom:242.670000px;}
.y36{bottom:245.730000px;}
.yb1{bottom:253.650000px;}
.y50{bottom:266.610000px;}
.y2b{bottom:269.490000px;}
.yb0{bottom:277.410000px;}
.y87{bottom:284.790000px;}
.y4f{bottom:290.370000px;}
.y74{bottom:291.630000px;}
.y2a{bottom:293.430000px;}
.yaf{bottom:301.170000px;}
.y4e{bottom:314.130000px;}
.y29{bottom:317.190000px;}
.yae{bottom:324.930000px;}
.y86{bottom:326.910000px;}
.y6c{bottom:333.750000px;}
.y4d{bottom:337.935000px;}
.y28{bottom:340.995000px;}
.yad{bottom:348.915000px;}
.y4c{bottom:361.875000px;}
.y27{bottom:364.755000px;}
.y85{bottom:370.515000px;}
.yac{bottom:372.675000px;}
.y4b{bottom:385.635000px;}
.y26{bottom:388.695000px;}
.yab{bottom:396.435000px;}
.y84{bottom:400.575000px;}
.y4a{bottom:409.395000px;}
.y25{bottom:412.455000px;}
.yaa{bottom:420.195000px;}
.y83{bottom:427.035000px;}
.y49{bottom:433.155000px;}
.y24{bottom:436.215000px;}
.y6b{bottom:439.455000px;}
.ya9{bottom:444.135000px;}
.y48{bottom:457.095000px;}
.y23{bottom:459.975000px;}
.ya8{bottom:467.895000px;}
.y82{bottom:469.155000px;}
.y6a{bottom:469.515000px;}
.y47{bottom:480.855000px;}
.y22{bottom:483.915000px;}
.ya7{bottom:491.655000px;}
.y69{bottom:493.275000px;}
.y46{bottom:504.615000px;}
.y21{bottom:507.675000px;}
.y81{bottom:511.455000px;}
.ya6{bottom:515.415000px;}
.y67{bottom:519.735000px;}
.y45{bottom:528.375000px;}
.y20{bottom:531.435000px;}
.ya5{bottom:539.355000px;}
.y44{bottom:552.135000px;}
.y80{bottom:555.015000px;}
.y1f{bottom:555.195000px;}
.y68{bottom:562.035000px;}
.ya4{bottom:563.115000px;}
.y43{bottom:576.075000px;}
.y1e{bottom:579.135000px;}
.y7f{bottom:585.075000px;}
.ya3{bottom:586.875000px;}
.y42{bottom:599.835000px;}
.y1d{bottom:602.895000px;}
.y64{bottom:604.185000px;}
.ya2{bottom:610.665000px;}
.y7e{bottom:611.565000px;}
.y41{bottom:623.625000px;}
.y1c{bottom:626.685000px;}
.ya1{bottom:634.425000px;}
.y66{bottom:646.305000px;}
.y40{bottom:647.385000px;}
.y1b{bottom:650.445000px;}
.y7d{bottom:653.685000px;}
.ya0{bottom:658.365000px;}
.y3f{bottom:672.945000px;}
.y1a{bottom:674.385000px;}
.y9f{bottom:682.125000px;}
.y60{bottom:688.425000px;}
.y7c{bottom:695.805000px;}
.y19{bottom:698.145000px;}
.y9e{bottom:705.885000px;}
.y18{bottom:721.905000px;}
.y9d{bottom:729.645000px;}
.y62{bottom:730.545000px;}
.y7b{bottom:739.545000px;}
.y17{bottom:745.665000px;}
.y9c{bottom:753.585000px;}
.y16{bottom:769.605000px;}
.y5c{bottom:772.665000px;}
.y9b{bottom:777.345000px;}
.y15{bottom:793.365000px;}
.y5e{bottom:794.265000px;}
.y9a{bottom:801.105000px;}
.y14{bottom:817.125000px;}
.y99{bottom:824.865000px;}
.y58{bottom:837.825000px;}
.y13{bottom:840.885000px;}
.y98{bottom:848.805000px;}
.y12{bottom:864.645000px;}
.y97{bottom:872.610000px;}
.y11{bottom:888.630000px;}
.y96{bottom:896.370000px;}
.y10{bottom:912.390000px;}
.y95{bottom:920.130000px;}
.yf{bottom:936.150000px;}
.y94{bottom:944.070000px;}
.ye{bottom:959.910000px;}
.y93{bottom:967.830000px;}
.yd{bottom:983.850000px;}
.y92{bottom:991.590000px;}
.yc{bottom:1007.610000px;}
.y91{bottom:1015.350000px;}
.yb{bottom:1031.370000px;}
.y90{bottom:1039.290000px;}
.ya{bottom:1055.130000px;}
.y8f{bottom:1063.050000px;}
.y35{bottom:1079.070000px;}
.y9{bottom:1081.410000px;}
.y8e{bottom:1086.810000px;}
.y34{bottom:1102.830000px;}
.y8c{bottom:1104.270000px;}
.y8{bottom:1113.090000px;}
.y33{bottom:1126.590000px;}
.y7{bottom:1144.800000px;}
.y32{bottom:1150.380000px;}
.y2{bottom:1194.120000px;}
.y1{bottom:1211.940000px;}
.h6{height:5.076563px;}
.hd{height:20.700000px;}
.h3{height:27.036000px;}
.hc{height:41.220000px;}
.hf{height:41.400000px;}
.ha{height:41.436000px;}
.h2{height:46.696289px;}
.h9{height:52.628906px;}
.h12{height:62.100000px;}
.h13{height:62.136000px;}
.h8{height:62.261719px;}
.hb{height:62.820000px;}
.h4{height:63.457031px;}
.h5{height:65.884219px;}
.h7{height:82.808086px;}
.he{height:83.520000px;}
.h10{height:83.700000px;}
.h11{height:103.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:99.756000px;}
.wb{width:101.376000px;}
.w6{width:101.520000px;}
.wa{width:102.996000px;}
.w11{width:104.256000px;}
.w4{width:105.516000px;}
.w17{width:105.696000px;}
.wf{width:109.296000px;}
.w15{width:110.736000px;}
.w12{width:115.056000px;}
.w18{width:116.496000px;}
.w10{width:123.300000px;}
.w16{width:124.740000px;}
.w13{width:132.660000px;}
.we{width:133.380000px;}
.w19{width:134.100000px;}
.w14{width:134.856000px;}
.w8{width:146.160000px;}
.wc{width:147.600000px;}
.w1f{width:226.650000px;}
.w21{width:228.135000px;}
.w1a{width:229.170000px;}
.w1c{width:230.655000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w9{width:374.475000px;}
.wd{width:375.915000px;}
.w20{width:468.435000px;}
.w22{width:469.875000px;}
.w1b{width:476.355000px;}
.w1d{width:477.795000px;}
.w23{width:698.730000px;}
.w1e{width:709.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x2c{left:9.360000px;}
.x2e{left:10.440000px;}
.x17{left:12.600000px;}
.x26{left:13.860000px;}
.x30{left:16.560000px;}
.x18{left:18.000000px;}
.x2b{left:19.080000px;}
.x13{left:20.700000px;}
.x34{left:22.320000px;}
.x21{left:23.400000px;}
.x15{left:25.380000px;}
.x22{left:26.460000px;}
.x1f{left:27.900000px;}
.x20{left:28.980000px;}
.x1e{left:31.500000px;}
.x1d{left:32.580000px;}
.x2d{left:34.200000px;}
.x1c{left:36.180000px;}
.x2f{left:37.800000px;}
.x31{left:39.600000px;}
.x35{left:41.580000px;}
.x1b{left:45.720000px;}
.x23{left:49.680000px;}
.x33{left:57.420000px;}
.x32{left:62.100000px;}
.x3{left:87.660000px;}
.x12{left:88.776000px;}
.x8{left:95.795987px;}
.x1{left:98.675987px;}
.xd{left:110.015987px;}
.x3a{left:127.835987px;}
.x1a{left:134.670000px;}
.x24{left:138.275987px;}
.x39{left:140.580000px;}
.x37{left:144.540000px;}
.x11{left:148.895987px;}
.x9{left:175.169987px;}
.x14{left:192.630000px;}
.x25{left:224.490000px;}
.xa{left:240.329987px;}
.xe{left:287.714987px;}
.x16{left:294.735000px;}
.xf{left:295.814987px;}
.x4{left:297.795000px;}
.xc{left:312.554987px;}
.x38{left:317.595000px;}
.x36{left:320.115000px;}
.x27{left:335.955000px;}
.x2{left:379.514987px;}
.x5{left:393.915000px;}
.x19{left:443.235000px;}
.xb{left:446.474987px;}
.x28{left:461.415000px;}
.x10{left:467.744987px;}
.x7{left:500.145000px;}
.x29{left:567.825000px;}
.x2a{left:685.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.608000pt;}
.ls24{letter-spacing:1.898667pt;}
.ls14{letter-spacing:2.560000pt;}
.ls7{letter-spacing:3.200000pt;}
.ls10{letter-spacing:4.480000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:8.960000pt;}
.lsd{letter-spacing:11.520000pt;}
.ls1f{letter-spacing:14.698667pt;}
.ls1e{letter-spacing:17.280000pt;}
.lsf{letter-spacing:17.920000pt;}
.ls9{letter-spacing:18.560000pt;}
.lse{letter-spacing:19.840000pt;}
.ls12{letter-spacing:20.480000pt;}
.ls20{letter-spacing:21.098667pt;}
.ls19{letter-spacing:22.400000pt;}
.ls1a{letter-spacing:23.040000pt;}
.ls15{letter-spacing:24.320000pt;}
.lsc{letter-spacing:24.960000pt;}
.ls23{letter-spacing:29.418667pt;}
.ls6{letter-spacing:30.720000pt;}
.ls1d{letter-spacing:32.000000pt;}
.lsa{letter-spacing:32.640000pt;}
.ls11{letter-spacing:33.920000pt;}
.ls21{letter-spacing:35.818667pt;}
.lsb{letter-spacing:44.160000pt;}
.ls26{letter-spacing:48.128000pt;}
.ls22{letter-spacing:52.458667pt;}
.ls25{letter-spacing:58.880000pt;}
.ls17{letter-spacing:60.160000pt;}
.ls18{letter-spacing:60.320000pt;}
.ls2{letter-spacing:68.719787pt;}
.ls3{letter-spacing:76.160000pt;}
.ls1{letter-spacing:98.693120pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-0.896000pt;}
._0{width:0.949333pt;}
._6{width:1.883947pt;}
._1{width:2.842240pt;}
._8{width:3.885227pt;}
._c{width:4.928000pt;}
._b{width:5.888000pt;}
._42{width:6.784000pt;}
._e{width:7.680000pt;}
._5{width:8.832000pt;}
._a{width:10.538667pt;}
._d{width:11.925333pt;}
._7{width:12.928000pt;}
._26{width:13.824000pt;}
._31{width:15.104000pt;}
._14{width:17.216000pt;}
._13{width:18.496000pt;}
._18{width:19.786667pt;}
._1a{width:20.853333pt;}
._17{width:21.952000pt;}
._3d{width:22.848000pt;}
._15{width:23.744000pt;}
._10{width:24.746667pt;}
._12{width:26.112000pt;}
._11{width:27.050667pt;}
._33{width:27.989333pt;}
._1f{width:29.248000pt;}
._1c{width:30.336000pt;}
._1d{width:31.488000pt;}
._25{width:32.512000pt;}
._2a{width:33.408000pt;}
._16{width:34.496000pt;}
._1e{width:35.712000pt;}
._35{width:36.672000pt;}
._28{width:38.208000pt;}
._29{width:39.168000pt;}
._34{width:40.341333pt;}
._32{width:41.600000pt;}
._22{width:43.328000pt;}
._21{width:44.416000pt;}
._3f{width:45.312000pt;}
._30{width:46.400000pt;}
._2f{width:47.296000pt;}
._23{width:48.384000pt;}
._24{width:49.344000pt;}
._27{width:50.816000pt;}
._36{width:52.096000pt;}
._20{width:53.120000pt;}
._1b{width:54.336000pt;}
._f{width:55.552000pt;}
._19{width:57.024000pt;}
._40{width:58.144000pt;}
._3b{width:59.136000pt;}
._3c{width:60.266667pt;}
._4{width:61.525333pt;}
._3{width:62.570667pt;}
._38{width:64.320000pt;}
._37{width:65.344000pt;}
._41{width:68.416000pt;}
._39{width:69.952000pt;}
._2c{width:71.040000pt;}
._2b{width:72.064000pt;}
._9{width:75.008000pt;}
._3e{width:87.104000pt;}
._2d{width:95.616000pt;}
._2e{width:97.024000pt;}
._3a{width:200.192000pt;}
.fs3{font-size:5.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:3.520000pt;}
.y73{bottom:3.560000pt;}
.y4{bottom:9.120000pt;}
.y5{bottom:10.080000pt;}
.y59{bottom:12.640000pt;}
.y63{bottom:12.800000pt;}
.y5f{bottom:21.760000pt;}
.y8a{bottom:21.914667pt;}
.y5a{bottom:21.920000pt;}
.y71{bottom:21.960000pt;}
.y5d{bottom:22.240000pt;}
.y76{bottom:31.040000pt;}
.y6e{bottom:31.080000pt;}
.y79{bottom:31.194667pt;}
.y65{bottom:31.360000pt;}
.y61{bottom:31.520000pt;}
.y7a{bottom:40.314667pt;}
.y77{bottom:40.320000pt;}
.y8d{bottom:40.346667pt;}
.y70{bottom:40.360000pt;}
.y6{bottom:49.280000pt;}
.y6d{bottom:49.480000pt;}
.y3{bottom:51.200000pt;}
.y6f{bottom:58.760000pt;}
.y72{bottom:77.160000pt;}
.y57{bottom:88.832000pt;}
.y8b{bottom:89.152000pt;}
.y3b{bottom:96.672000pt;}
.yb7{bottom:98.432000pt;}
.y31{bottom:101.952000pt;}
.y56{bottom:109.952000pt;}
.y3e{bottom:112.672000pt;}
.y3a{bottom:117.792000pt;}
.yb6{bottom:119.552000pt;}
.y30{bottom:123.232000pt;}
.y89{bottom:126.592000pt;}
.y55{bottom:131.072000pt;}
.y3d{bottom:133.786667pt;}
.yb5{bottom:140.826667pt;}
.y2f{bottom:144.346667pt;}
.y39{bottom:147.066667pt;}
.y54{bottom:152.346667pt;}
.y3c{bottom:155.066667pt;}
.yb4{bottom:161.946667pt;}
.y2e{bottom:165.466667pt;}
.y78{bottom:165.786667pt;}
.y53{bottom:173.466667pt;}
.y38{bottom:176.186667pt;}
.yb3{bottom:183.066667pt;}
.y2d{bottom:186.586667pt;}
.y88{bottom:192.186667pt;}
.y52{bottom:194.586667pt;}
.y37{bottom:197.306667pt;}
.y75{bottom:203.386667pt;}
.yb2{bottom:204.186667pt;}
.y2c{bottom:207.866667pt;}
.y51{bottom:215.706667pt;}
.y36{bottom:218.426667pt;}
.yb1{bottom:225.466667pt;}
.y50{bottom:236.986667pt;}
.y2b{bottom:239.546667pt;}
.yb0{bottom:246.586667pt;}
.y87{bottom:253.146667pt;}
.y4f{bottom:258.106667pt;}
.y74{bottom:259.226667pt;}
.y2a{bottom:260.826667pt;}
.yaf{bottom:267.706667pt;}
.y4e{bottom:279.226667pt;}
.y29{bottom:281.946667pt;}
.yae{bottom:288.826667pt;}
.y86{bottom:290.586667pt;}
.y6c{bottom:296.666667pt;}
.y4d{bottom:300.386667pt;}
.y28{bottom:303.106667pt;}
.yad{bottom:310.146667pt;}
.y4c{bottom:321.666667pt;}
.y27{bottom:324.226667pt;}
.y85{bottom:329.346667pt;}
.yac{bottom:331.266667pt;}
.y4b{bottom:342.786667pt;}
.y26{bottom:345.506667pt;}
.yab{bottom:352.386667pt;}
.y84{bottom:356.066667pt;}
.y4a{bottom:363.906667pt;}
.y25{bottom:366.626667pt;}
.yaa{bottom:373.506667pt;}
.y83{bottom:379.586667pt;}
.y49{bottom:385.026667pt;}
.y24{bottom:387.746667pt;}
.y6b{bottom:390.626667pt;}
.ya9{bottom:394.786667pt;}
.y48{bottom:406.306667pt;}
.y23{bottom:408.866667pt;}
.ya8{bottom:415.906667pt;}
.y82{bottom:417.026667pt;}
.y6a{bottom:417.346667pt;}
.y47{bottom:427.426667pt;}
.y22{bottom:430.146667pt;}
.ya7{bottom:437.026667pt;}
.y69{bottom:438.466667pt;}
.y46{bottom:448.546667pt;}
.y21{bottom:451.266667pt;}
.y81{bottom:454.626667pt;}
.ya6{bottom:458.146667pt;}
.y67{bottom:461.986667pt;}
.y45{bottom:469.666667pt;}
.y20{bottom:472.386667pt;}
.ya5{bottom:479.426667pt;}
.y44{bottom:490.786667pt;}
.y80{bottom:493.346667pt;}
.y1f{bottom:493.506667pt;}
.y68{bottom:499.586667pt;}
.ya4{bottom:500.546667pt;}
.y43{bottom:512.066667pt;}
.y1e{bottom:514.786667pt;}
.y7f{bottom:520.066667pt;}
.ya3{bottom:521.666667pt;}
.y42{bottom:533.186667pt;}
.y1d{bottom:535.906667pt;}
.y64{bottom:537.053333pt;}
.ya2{bottom:542.813333pt;}
.y7e{bottom:543.613333pt;}
.y41{bottom:554.333333pt;}
.y1c{bottom:557.053333pt;}
.ya1{bottom:563.933333pt;}
.y66{bottom:574.493333pt;}
.y40{bottom:575.453333pt;}
.y1b{bottom:578.173333pt;}
.y7d{bottom:581.053333pt;}
.ya0{bottom:585.213333pt;}
.y3f{bottom:598.173333pt;}
.y1a{bottom:599.453333pt;}
.y9f{bottom:606.333333pt;}
.y60{bottom:611.933333pt;}
.y7c{bottom:618.493333pt;}
.y19{bottom:620.573333pt;}
.y9e{bottom:627.453333pt;}
.y18{bottom:641.693333pt;}
.y9d{bottom:648.573333pt;}
.y62{bottom:649.373333pt;}
.y7b{bottom:657.373333pt;}
.y17{bottom:662.813333pt;}
.y9c{bottom:669.853333pt;}
.y16{bottom:684.093333pt;}
.y5c{bottom:686.813333pt;}
.y9b{bottom:690.973333pt;}
.y15{bottom:705.213333pt;}
.y5e{bottom:706.013333pt;}
.y9a{bottom:712.093333pt;}
.y14{bottom:726.333333pt;}
.y99{bottom:733.213333pt;}
.y58{bottom:744.733333pt;}
.y13{bottom:747.453333pt;}
.y98{bottom:754.493333pt;}
.y12{bottom:768.573333pt;}
.y97{bottom:775.653333pt;}
.y11{bottom:789.893333pt;}
.y96{bottom:796.773333pt;}
.y10{bottom:811.013333pt;}
.y95{bottom:817.893333pt;}
.yf{bottom:832.133333pt;}
.y94{bottom:839.173333pt;}
.ye{bottom:853.253333pt;}
.y93{bottom:860.293333pt;}
.yd{bottom:874.533333pt;}
.y92{bottom:881.413333pt;}
.yc{bottom:895.653333pt;}
.y91{bottom:902.533333pt;}
.yb{bottom:916.773333pt;}
.y90{bottom:923.813333pt;}
.ya{bottom:937.893333pt;}
.y8f{bottom:944.933333pt;}
.y35{bottom:959.173333pt;}
.y9{bottom:961.253333pt;}
.y8e{bottom:966.053333pt;}
.y34{bottom:980.293333pt;}
.y8c{bottom:981.573333pt;}
.y8{bottom:989.413333pt;}
.y33{bottom:1001.413333pt;}
.y7{bottom:1017.600000pt;}
.y32{bottom:1022.560000pt;}
.y2{bottom:1061.440000pt;}
.y1{bottom:1077.280000pt;}
.h6{height:4.512500pt;}
.hd{height:18.400000pt;}
.h3{height:24.032000pt;}
.hc{height:36.640000pt;}
.hf{height:36.800000pt;}
.ha{height:36.832000pt;}
.h2{height:41.507812pt;}
.h9{height:46.781250pt;}
.h12{height:55.200000pt;}
.h13{height:55.232000pt;}
.h8{height:55.343750pt;}
.hb{height:55.840000pt;}
.h4{height:56.406250pt;}
.h5{height:58.563750pt;}
.h7{height:73.607188pt;}
.he{height:74.240000pt;}
.h10{height:74.400000pt;}
.h11{height:92.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:88.672000pt;}
.wb{width:90.112000pt;}
.w6{width:90.240000pt;}
.wa{width:91.552000pt;}
.w11{width:92.672000pt;}
.w4{width:93.792000pt;}
.w17{width:93.952000pt;}
.wf{width:97.152000pt;}
.w15{width:98.432000pt;}
.w12{width:102.272000pt;}
.w18{width:103.552000pt;}
.w10{width:109.600000pt;}
.w16{width:110.880000pt;}
.w13{width:117.920000pt;}
.we{width:118.560000pt;}
.w19{width:119.200000pt;}
.w14{width:119.872000pt;}
.w8{width:129.920000pt;}
.wc{width:131.200000pt;}
.w1f{width:201.466667pt;}
.w21{width:202.786667pt;}
.w1a{width:203.706667pt;}
.w1c{width:205.026667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w9{width:332.866667pt;}
.wd{width:334.146667pt;}
.w20{width:416.386667pt;}
.w22{width:417.666667pt;}
.w1b{width:423.426667pt;}
.w1d{width:424.706667pt;}
.w23{width:621.093333pt;}
.w1e{width:630.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x2c{left:8.320000pt;}
.x2e{left:9.280000pt;}
.x17{left:11.200000pt;}
.x26{left:12.320000pt;}
.x30{left:14.720000pt;}
.x18{left:16.000000pt;}
.x2b{left:16.960000pt;}
.x13{left:18.400000pt;}
.x34{left:19.840000pt;}
.x21{left:20.800000pt;}
.x15{left:22.560000pt;}
.x22{left:23.520000pt;}
.x1f{left:24.800000pt;}
.x20{left:25.760000pt;}
.x1e{left:28.000000pt;}
.x1d{left:28.960000pt;}
.x2d{left:30.400000pt;}
.x1c{left:32.160000pt;}
.x2f{left:33.600000pt;}
.x31{left:35.200000pt;}
.x35{left:36.960000pt;}
.x1b{left:40.640000pt;}
.x23{left:44.160000pt;}
.x33{left:51.040000pt;}
.x32{left:55.200000pt;}
.x3{left:77.920000pt;}
.x12{left:78.912000pt;}
.x8{left:85.151988pt;}
.x1{left:87.711988pt;}
.xd{left:97.791988pt;}
.x3a{left:113.631988pt;}
.x1a{left:119.706667pt;}
.x24{left:122.911988pt;}
.x39{left:124.960000pt;}
.x37{left:128.480000pt;}
.x11{left:132.351988pt;}
.x9{left:155.706655pt;}
.x14{left:171.226667pt;}
.x25{left:199.546667pt;}
.xa{left:213.626655pt;}
.xe{left:255.746655pt;}
.x16{left:261.986667pt;}
.xf{left:262.946655pt;}
.x4{left:264.706667pt;}
.xc{left:277.826655pt;}
.x38{left:282.306667pt;}
.x36{left:284.546667pt;}
.x27{left:298.626667pt;}
.x2{left:337.346655pt;}
.x5{left:350.146667pt;}
.x19{left:393.986667pt;}
.xb{left:396.866655pt;}
.x28{left:410.146667pt;}
.x10{left:415.773322pt;}
.x7{left:444.573333pt;}
.x29{left:504.733333pt;}
.x2a{left:608.933333pt;}
}




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