
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_38bef4400ae81fa1f8664e4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_255bc80839afe6a68ccfe6a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a4d489d3cd3bf01b616caf38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_3d0bbb03d47f23722cf8f8e5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e5c5992bbe361abf0d4f5cab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_fd29202b37ea91fc19da6c39.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_e029e387df0f36b63c386f5d.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_bb604291953dcc4c7d462fef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.786000px;}
.ls21{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.115800px;}
.lse{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.038160px;}
.ls7{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.064200px;}
.ls13{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.175200px;}
.ls1f{letter-spacing:0.179280px;}
.ls1c{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.190200px;}
.ls1d{letter-spacing:0.234600px;}
.ls16{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.318240px;}
.ls6{letter-spacing:0.479400px;}
.ls19{letter-spacing:0.479520px;}
.ls5{letter-spacing:0.617760px;}
.ls22{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.894240px;}
.lsc{letter-spacing:1.026000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls1e{letter-spacing:12.186720px;}
.ls18{letter-spacing:42.570720px;}
.ls10{letter-spacing:47.466720px;}
.ls17{letter-spacing:59.706720px;}
.lsd{letter-spacing:63.306720px;}
.ls4{letter-spacing:83.466720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsd{word-spacing:-14.165760px;}
.wsa{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.740360px;}
.ws9{word-spacing:-13.569960px;}
.ws5{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.467600px;}
.ws8{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.389960px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-581.644560px;}
._11{margin-left:-5.800800px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._12{margin-left:-2.302800px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._b{width:2.509920px;}
._c{width:3.689760px;}
._f{width:5.022960px;}
._e{width:6.605760px;}
._d{width:7.761600px;}
._a{width:9.273600px;}
._14{width:10.283760px;}
._10{width:11.294640px;}
._13{width:12.505440px;}
._9{width:14.842800px;}
._8{width:15.991920px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y71{bottom:6.840000px;}
.ybd{bottom:7.020000px;}
.y85{bottom:17.820000px;}
.ybc{bottom:28.260000px;}
.yb9{bottom:35.460000px;}
.ybb{bottom:49.500000px;}
.y6{bottom:58.320000px;}
.yba{bottom:70.734000px;}
.yb8{bottom:90.216000px;}
.yb7{bottom:91.476000px;}
.y31{bottom:102.276000px;}
.yac{bottom:103.536000px;}
.y90{bottom:108.756000px;}
.yb6{bottom:112.536000px;}
.y30{bottom:123.336000px;}
.y64{bottom:124.596000px;}
.y8f{bottom:129.816000px;}
.yb5{bottom:133.596000px;}
.y2f{bottom:144.396000px;}
.y63{bottom:145.656000px;}
.y8e{bottom:150.870000px;}
.yb4{bottom:154.650000px;}
.y2e{bottom:165.450000px;}
.y62{bottom:166.710000px;}
.y8d{bottom:171.930000px;}
.yb3{bottom:175.710000px;}
.y2d{bottom:186.510000px;}
.y61{bottom:187.770000px;}
.y8c{bottom:192.990000px;}
.yb2{bottom:196.770000px;}
.y2c{bottom:207.570000px;}
.y60{bottom:208.830000px;}
.y8b{bottom:214.050000px;}
.yb1{bottom:217.830000px;}
.y2b{bottom:228.630000px;}
.y8a{bottom:228.990000px;}
.y5f{bottom:229.890000px;}
.yb0{bottom:238.890000px;}
.y2a{bottom:249.690000px;}
.y5e{bottom:250.950000px;}
.yaf{bottom:259.950000px;}
.y29{bottom:270.750000px;}
.y5d{bottom:272.010000px;}
.y89{bottom:272.730000px;}
.yae{bottom:281.010000px;}
.y28{bottom:291.810000px;}
.y5c{bottom:293.070000px;}
.y88{bottom:294.510000px;}
.yad{bottom:302.070000px;}
.y27{bottom:312.870000px;}
.yab{bottom:314.130000px;}
.y87{bottom:316.290000px;}
.y5b{bottom:323.130000px;}
.y26{bottom:333.975000px;}
.yaa{bottom:335.235000px;}
.y84{bottom:338.115000px;}
.y5a{bottom:344.235000px;}
.y25{bottom:355.035000px;}
.ya9{bottom:356.295000px;}
.y86{bottom:359.895000px;}
.y59{bottom:365.295000px;}
.y24{bottom:376.095000px;}
.ya8{bottom:377.355000px;}
.y58{bottom:386.355000px;}
.y83{bottom:388.695000px;}
.y23{bottom:397.155000px;}
.ya7{bottom:398.415000px;}
.y57{bottom:407.415000px;}
.y82{bottom:409.575000px;}
.y22{bottom:418.215000px;}
.ya6{bottom:419.475000px;}
.y56{bottom:428.475000px;}
.y81{bottom:430.635000px;}
.ya5{bottom:434.415000px;}
.y21{bottom:439.275000px;}
.y55{bottom:449.535000px;}
.y80{bottom:451.695000px;}
.ya4{bottom:456.195000px;}
.y20{bottom:460.335000px;}
.y54{bottom:470.595000px;}
.y7f{bottom:472.755000px;}
.ya3{bottom:477.975000px;}
.y1f{bottom:481.395000px;}
.y53{bottom:491.655000px;}
.y7e{bottom:493.815000px;}
.ya1{bottom:499.755000px;}
.y1e{bottom:502.455000px;}
.y52{bottom:512.715000px;}
.y7d{bottom:514.875000px;}
.ya2{bottom:521.535000px;}
.y1d{bottom:525.495000px;}
.y7c{bottom:529.995000px;}
.y51{bottom:533.775000px;}
.ya0{bottom:550.335000px;}
.y7b{bottom:551.775000px;}
.y50{bottom:554.835000px;}
.y1c{bottom:555.735000px;}
.y9f{bottom:571.395000px;}
.y7a{bottom:573.555000px;}
.y4f{bottom:575.895000px;}
.y1b{bottom:576.795000px;}
.y9e{bottom:592.455000px;}
.y79{bottom:595.365000px;}
.y4e{bottom:596.985000px;}
.y1a{bottom:597.885000px;}
.y9d{bottom:613.545000px;}
.y78{bottom:617.145000px;}
.y4d{bottom:618.045000px;}
.y19{bottom:618.945000px;}
.y9c{bottom:634.605000px;}
.y77{bottom:638.925000px;}
.y4c{bottom:639.105000px;}
.y18{bottom:640.005000px;}
.y9b{bottom:655.485000px;}
.y4b{bottom:659.985000px;}
.y76{bottom:660.705000px;}
.y17{bottom:661.065000px;}
.y9a{bottom:676.545000px;}
.y4a{bottom:681.045000px;}
.y16{bottom:682.125000px;}
.y75{bottom:682.665000px;}
.y99{bottom:697.605000px;}
.y49{bottom:702.105000px;}
.y15{bottom:703.185000px;}
.y74{bottom:704.445000px;}
.y98{bottom:718.665000px;}
.y48{bottom:723.165000px;}
.y14{bottom:724.245000px;}
.y73{bottom:726.225000px;}
.y97{bottom:739.725000px;}
.y47{bottom:744.225000px;}
.y13{bottom:745.305000px;}
.y72{bottom:748.005000px;}
.y96{bottom:760.785000px;}
.y46{bottom:765.285000px;}
.y12{bottom:766.365000px;}
.y70{bottom:769.785000px;}
.y95{bottom:781.845000px;}
.y45{bottom:786.345000px;}
.y11{bottom:787.425000px;}
.y94{bottom:796.965000px;}
.y6f{bottom:798.405000px;}
.y44{bottom:807.405000px;}
.y10{bottom:808.485000px;}
.y93{bottom:818.745000px;}
.y6e{bottom:819.465000px;}
.y43{bottom:828.465000px;}
.yf{bottom:829.545000px;}
.y6d{bottom:840.525000px;}
.y42{bottom:849.525000px;}
.ye{bottom:852.945000px;}
.y6c{bottom:861.585000px;}
.y91{bottom:862.350000px;}
.y41{bottom:870.630000px;}
.yd{bottom:871.710000px;}
.y6b{bottom:882.690000px;}
.y92{bottom:884.130000px;}
.y40{bottom:891.690000px;}
.yc{bottom:899.250000px;}
.y6a{bottom:903.750000px;}
.y3f{bottom:912.750000px;}
.yb{bottom:915.990000px;}
.y69{bottom:924.810000px;}
.y3e{bottom:933.810000px;}
.ya{bottom:939.210000px;}
.y68{bottom:945.870000px;}
.y3d{bottom:954.870000px;}
.y9{bottom:961.530000px;}
.y67{bottom:966.930000px;}
.y3c{bottom:975.930000px;}
.y8{bottom:986.550000px;}
.y66{bottom:987.990000px;}
.y3b{bottom:996.990000px;}
.y65{bottom:1009.050000px;}
.y3a{bottom:1018.050000px;}
.y7{bottom:1020.210000px;}
.y39{bottom:1039.110000px;}
.y38{bottom:1060.170000px;}
.y5{bottom:1060.530000px;}
.y37{bottom:1081.230000px;}
.y4{bottom:1092.750000px;}
.y36{bottom:1102.290000px;}
.y35{bottom:1123.350000px;}
.y3{bottom:1124.790000px;}
.y34{bottom:1144.440000px;}
.y2{bottom:1157.040000px;}
.y33{bottom:1165.500000px;}
.y1{bottom:1191.600000px;}
.y32{bottom:1193.400000px;}
.h10{height:2.864531px;}
.hb{height:21.060000px;}
.hd{height:21.096000px;}
.h7{height:38.671172px;}
.hc{height:42.840000px;}
.h8{height:45.637031px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h5{height:61.189805px;}
.he{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hf{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:106.776000px;}
.wd{width:113.976000px;}
.wc{width:114.156000px;}
.w14{width:114.516000px;}
.w1b{width:115.956000px;}
.w1a{width:116.100000px;}
.w1c{width:116.460000px;}
.wf{width:116.496000px;}
.w12{width:122.220000px;}
.wb{width:123.480000px;}
.w13{width:125.856000px;}
.w19{width:126.036000px;}
.w4{width:127.296000px;}
.w6{width:129.240000px;}
.w16{width:135.216000px;}
.w15{width:135.540000px;}
.w11{width:157.170000px;}
.wa{width:159.150000px;}
.w18{width:162.030000px;}
.we{width:162.360000px;}
.w3{width:163.290000px;}
.w5{width:167.070000px;}
.w7{width:196.410000px;}
.w1d{width:210.810000px;}
.w1e{width:580.965000px;}
.w17{width:639.645000px;}
.w10{width:658.365000px;}
.w9{width:676.005000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:53.999987px;}
.x3{left:62.820000px;}
.x2{left:75.239987px;}
.x9{left:80.999987px;}
.xf{left:108.035987px;}
.xa{left:162.390000px;}
.x10{left:180.030000px;}
.x1a{left:191.370000px;}
.x15{left:198.750000px;}
.x5{left:226.830000px;}
.x1b{left:264.810000px;}
.xb{left:322.275000px;}
.x11{left:338.115000px;}
.x6{left:354.855000px;}
.x16{left:361.515000px;}
.xc{left:446.475000px;}
.x12{left:461.055000px;}
.x17{left:488.265000px;}
.x7{left:522.645000px;}
.xd{left:561.345000px;}
.x13{left:587.625000px;}
.x18{left:605.265000px;}
.x8{left:652.605000px;}
.xe{left:676.050000px;}
.x14{left:702.870000px;}
.x19{left:721.950000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.698667pt;}
.ls21{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.102933pt;}
.lse{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.033920pt;}
.ls7{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.057067pt;}
.ls13{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.155733pt;}
.ls1f{letter-spacing:0.159360pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.169067pt;}
.ls1d{letter-spacing:0.208533pt;}
.ls16{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.282880pt;}
.ls6{letter-spacing:0.426133pt;}
.ls19{letter-spacing:0.426240pt;}
.ls5{letter-spacing:0.549120pt;}
.ls22{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.794880pt;}
.lsc{letter-spacing:0.912000pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls1e{letter-spacing:10.832640pt;}
.ls18{letter-spacing:37.840640pt;}
.ls10{letter-spacing:42.192640pt;}
.ls17{letter-spacing:53.072640pt;}
.lsd{letter-spacing:56.272640pt;}
.ls4{letter-spacing:74.192640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.591787pt;}
.wsa{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.213653pt;}
.ws9{word-spacing:-12.062187pt;}
.ws5{word-spacing:-12.005120pt;}
.wsb{word-spacing:-11.971200pt;}
.ws8{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.902187pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-517.017387pt;}
._11{margin-left:-5.156267pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._12{margin-left:-2.046933pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._b{width:2.231040pt;}
._c{width:3.279787pt;}
._f{width:4.464853pt;}
._e{width:5.871787pt;}
._d{width:6.899200pt;}
._a{width:8.243200pt;}
._14{width:9.141120pt;}
._10{width:10.039680pt;}
._13{width:11.115947pt;}
._9{width:13.193600pt;}
._8{width:14.215040pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:6.080000pt;}
.ybd{bottom:6.240000pt;}
.y85{bottom:15.840000pt;}
.ybc{bottom:25.120000pt;}
.yb9{bottom:31.520000pt;}
.ybb{bottom:44.000000pt;}
.y6{bottom:51.840000pt;}
.yba{bottom:62.874667pt;}
.yb8{bottom:80.192000pt;}
.yb7{bottom:81.312000pt;}
.y31{bottom:90.912000pt;}
.yac{bottom:92.032000pt;}
.y90{bottom:96.672000pt;}
.yb6{bottom:100.032000pt;}
.y30{bottom:109.632000pt;}
.y64{bottom:110.752000pt;}
.y8f{bottom:115.392000pt;}
.yb5{bottom:118.752000pt;}
.y2f{bottom:128.352000pt;}
.y63{bottom:129.472000pt;}
.y8e{bottom:134.106667pt;}
.yb4{bottom:137.466667pt;}
.y2e{bottom:147.066667pt;}
.y62{bottom:148.186667pt;}
.y8d{bottom:152.826667pt;}
.yb3{bottom:156.186667pt;}
.y2d{bottom:165.786667pt;}
.y61{bottom:166.906667pt;}
.y8c{bottom:171.546667pt;}
.yb2{bottom:174.906667pt;}
.y2c{bottom:184.506667pt;}
.y60{bottom:185.626667pt;}
.y8b{bottom:190.266667pt;}
.yb1{bottom:193.626667pt;}
.y2b{bottom:203.226667pt;}
.y8a{bottom:203.546667pt;}
.y5f{bottom:204.346667pt;}
.yb0{bottom:212.346667pt;}
.y2a{bottom:221.946667pt;}
.y5e{bottom:223.066667pt;}
.yaf{bottom:231.066667pt;}
.y29{bottom:240.666667pt;}
.y5d{bottom:241.786667pt;}
.y89{bottom:242.426667pt;}
.yae{bottom:249.786667pt;}
.y28{bottom:259.386667pt;}
.y5c{bottom:260.506667pt;}
.y88{bottom:261.786667pt;}
.yad{bottom:268.506667pt;}
.y27{bottom:278.106667pt;}
.yab{bottom:279.226667pt;}
.y87{bottom:281.146667pt;}
.y5b{bottom:287.226667pt;}
.y26{bottom:296.866667pt;}
.yaa{bottom:297.986667pt;}
.y84{bottom:300.546667pt;}
.y5a{bottom:305.986667pt;}
.y25{bottom:315.586667pt;}
.ya9{bottom:316.706667pt;}
.y86{bottom:319.906667pt;}
.y59{bottom:324.706667pt;}
.y24{bottom:334.306667pt;}
.ya8{bottom:335.426667pt;}
.y58{bottom:343.426667pt;}
.y83{bottom:345.506667pt;}
.y23{bottom:353.026667pt;}
.ya7{bottom:354.146667pt;}
.y57{bottom:362.146667pt;}
.y82{bottom:364.066667pt;}
.y22{bottom:371.746667pt;}
.ya6{bottom:372.866667pt;}
.y56{bottom:380.866667pt;}
.y81{bottom:382.786667pt;}
.ya5{bottom:386.146667pt;}
.y21{bottom:390.466667pt;}
.y55{bottom:399.586667pt;}
.y80{bottom:401.506667pt;}
.ya4{bottom:405.506667pt;}
.y20{bottom:409.186667pt;}
.y54{bottom:418.306667pt;}
.y7f{bottom:420.226667pt;}
.ya3{bottom:424.866667pt;}
.y1f{bottom:427.906667pt;}
.y53{bottom:437.026667pt;}
.y7e{bottom:438.946667pt;}
.ya1{bottom:444.226667pt;}
.y1e{bottom:446.626667pt;}
.y52{bottom:455.746667pt;}
.y7d{bottom:457.666667pt;}
.ya2{bottom:463.586667pt;}
.y1d{bottom:467.106667pt;}
.y7c{bottom:471.106667pt;}
.y51{bottom:474.466667pt;}
.ya0{bottom:489.186667pt;}
.y7b{bottom:490.466667pt;}
.y50{bottom:493.186667pt;}
.y1c{bottom:493.986667pt;}
.y9f{bottom:507.906667pt;}
.y7a{bottom:509.826667pt;}
.y4f{bottom:511.906667pt;}
.y1b{bottom:512.706667pt;}
.y9e{bottom:526.626667pt;}
.y79{bottom:529.213333pt;}
.y4e{bottom:530.653333pt;}
.y1a{bottom:531.453333pt;}
.y9d{bottom:545.373333pt;}
.y78{bottom:548.573333pt;}
.y4d{bottom:549.373333pt;}
.y19{bottom:550.173333pt;}
.y9c{bottom:564.093333pt;}
.y77{bottom:567.933333pt;}
.y4c{bottom:568.093333pt;}
.y18{bottom:568.893333pt;}
.y9b{bottom:582.653333pt;}
.y4b{bottom:586.653333pt;}
.y76{bottom:587.293333pt;}
.y17{bottom:587.613333pt;}
.y9a{bottom:601.373333pt;}
.y4a{bottom:605.373333pt;}
.y16{bottom:606.333333pt;}
.y75{bottom:606.813333pt;}
.y99{bottom:620.093333pt;}
.y49{bottom:624.093333pt;}
.y15{bottom:625.053333pt;}
.y74{bottom:626.173333pt;}
.y98{bottom:638.813333pt;}
.y48{bottom:642.813333pt;}
.y14{bottom:643.773333pt;}
.y73{bottom:645.533333pt;}
.y97{bottom:657.533333pt;}
.y47{bottom:661.533333pt;}
.y13{bottom:662.493333pt;}
.y72{bottom:664.893333pt;}
.y96{bottom:676.253333pt;}
.y46{bottom:680.253333pt;}
.y12{bottom:681.213333pt;}
.y70{bottom:684.253333pt;}
.y95{bottom:694.973333pt;}
.y45{bottom:698.973333pt;}
.y11{bottom:699.933333pt;}
.y94{bottom:708.413333pt;}
.y6f{bottom:709.693333pt;}
.y44{bottom:717.693333pt;}
.y10{bottom:718.653333pt;}
.y93{bottom:727.773333pt;}
.y6e{bottom:728.413333pt;}
.y43{bottom:736.413333pt;}
.yf{bottom:737.373333pt;}
.y6d{bottom:747.133333pt;}
.y42{bottom:755.133333pt;}
.ye{bottom:758.173333pt;}
.y6c{bottom:765.853333pt;}
.y91{bottom:766.533333pt;}
.y41{bottom:773.893333pt;}
.yd{bottom:774.853333pt;}
.y6b{bottom:784.613333pt;}
.y92{bottom:785.893333pt;}
.y40{bottom:792.613333pt;}
.yc{bottom:799.333333pt;}
.y6a{bottom:803.333333pt;}
.y3f{bottom:811.333333pt;}
.yb{bottom:814.213333pt;}
.y69{bottom:822.053333pt;}
.y3e{bottom:830.053333pt;}
.ya{bottom:834.853333pt;}
.y68{bottom:840.773333pt;}
.y3d{bottom:848.773333pt;}
.y9{bottom:854.693333pt;}
.y67{bottom:859.493333pt;}
.y3c{bottom:867.493333pt;}
.y8{bottom:876.933333pt;}
.y66{bottom:878.213333pt;}
.y3b{bottom:886.213333pt;}
.y65{bottom:896.933333pt;}
.y3a{bottom:904.933333pt;}
.y7{bottom:906.853333pt;}
.y39{bottom:923.653333pt;}
.y38{bottom:942.373333pt;}
.y5{bottom:942.693333pt;}
.y37{bottom:961.093333pt;}
.y4{bottom:971.333333pt;}
.y36{bottom:979.813333pt;}
.y35{bottom:998.533333pt;}
.y3{bottom:999.813333pt;}
.y34{bottom:1017.280000pt;}
.y2{bottom:1028.480000pt;}
.y33{bottom:1036.000000pt;}
.y1{bottom:1059.200000pt;}
.y32{bottom:1060.800000pt;}
.h10{height:2.546250pt;}
.hb{height:18.720000pt;}
.hd{height:18.752000pt;}
.h7{height:34.374375pt;}
.hc{height:38.080000pt;}
.h8{height:40.566250pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h5{height:54.390938pt;}
.he{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hf{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:94.912000pt;}
.wd{width:101.312000pt;}
.wc{width:101.472000pt;}
.w14{width:101.792000pt;}
.w1b{width:103.072000pt;}
.w1a{width:103.200000pt;}
.w1c{width:103.520000pt;}
.wf{width:103.552000pt;}
.w12{width:108.640000pt;}
.wb{width:109.760000pt;}
.w13{width:111.872000pt;}
.w19{width:112.032000pt;}
.w4{width:113.152000pt;}
.w6{width:114.880000pt;}
.w16{width:120.192000pt;}
.w15{width:120.480000pt;}
.w11{width:139.706667pt;}
.wa{width:141.466667pt;}
.w18{width:144.026667pt;}
.we{width:144.320000pt;}
.w3{width:145.146667pt;}
.w5{width:148.506667pt;}
.w7{width:174.586667pt;}
.w1d{width:187.386667pt;}
.w1e{width:516.413333pt;}
.w17{width:568.573333pt;}
.w10{width:585.213333pt;}
.w9{width:600.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:47.999988pt;}
.x3{left:55.840000pt;}
.x2{left:66.879988pt;}
.x9{left:71.999988pt;}
.xf{left:96.031988pt;}
.xa{left:144.346667pt;}
.x10{left:160.026667pt;}
.x1a{left:170.106667pt;}
.x15{left:176.666667pt;}
.x5{left:201.626667pt;}
.x1b{left:235.386667pt;}
.xb{left:286.466667pt;}
.x11{left:300.546667pt;}
.x6{left:315.426667pt;}
.x16{left:321.346667pt;}
.xc{left:396.866667pt;}
.x12{left:409.826667pt;}
.x17{left:434.013333pt;}
.x7{left:464.573333pt;}
.xd{left:498.973333pt;}
.x13{left:522.333333pt;}
.x18{left:538.013333pt;}
.x8{left:580.093333pt;}
.xe{left:600.933333pt;}
.x14{left:624.773333pt;}
.x19{left:641.733333pt;}
}




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