
    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_967b48ccb88d8940c1aedcd6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_6e1e142c86fc8855d2976756.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_444e0261f719d0cd204b546d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_db1e77afcb95afe0b281ea59.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_48c9fa5173844f3b4b39225c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_98d025c31b15d120d7876686.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e206a853db61639b6b10accb.woff2')format("woff");}.ff7{font-family:ff7;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:-69.120000px;}
.v5{vertical-align:-65.520000px;}
.v8{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v4{vertical-align:-18.000000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v3{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.126000px;}
.lsb{letter-spacing:-0.027360px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.702000px;}
.ls14{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.738000px;}
.ls17{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.936000px;}
.lse{letter-spacing:1.080000px;}
.ls1f{letter-spacing:2.988000px;}
.ls4{letter-spacing:3.780000px;}
.ls5{letter-spacing:8.820000px;}
.ls1e{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.ls13{letter-spacing:69.840000px;}
.ls1d{letter-spacing:90.900000px;}
.ls0{letter-spacing:154.980000px;}
.ls8{letter-spacing:1165.440000px;}
.ls19{letter-spacing:1210.800000px;}
.ls7{letter-spacing:1226.640000px;}
.ls1c{letter-spacing:1357.680000px;}
.ls1a{letter-spacing:1413.120000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.436000px;}
.ws11{word-spacing:-14.364000px;}
.wsb{word-spacing:-14.238000px;}
.ws5{word-spacing:-14.220000px;}
.wsf{word-spacing:-14.202000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws9{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.626000px;}
.wsc{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wse{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-2.442960px;}
._0{margin-left:-1.188000px;}
._2{width:1.524240px;}
._7{width:2.592000px;}
._6{width:4.037520px;}
._a{width:5.393040px;}
._9{width:6.486960px;}
._4{width:7.992000px;}
._5{width:9.143760px;}
._8{width:14.508000px;}
._d{width:733.841760px;}
._b{width:1041.420000px;}
._c{width:1167.288000px;}
._3{width:1574.520000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:2.880000px;}
.y4a{bottom:3.240000px;}
.y48{bottom:3.420000px;}
.y8d{bottom:18.765000px;}
.y75{bottom:18.900000px;}
.y65{bottom:18.945000px;}
.y8c{bottom:34.245000px;}
.y74{bottom:34.380000px;}
.y64{bottom:34.425000px;}
.y8b{bottom:49.725000px;}
.y73{bottom:49.860000px;}
.y63{bottom:49.905000px;}
.y2{bottom:57.960000px;}
.y8a{bottom:65.385000px;}
.y72{bottom:65.520000px;}
.y62{bottom:65.565000px;}
.y1{bottom:76.860000px;}
.y89{bottom:80.865000px;}
.y71{bottom:81.000000px;}
.y61{bottom:81.045000px;}
.y88{bottom:96.345000px;}
.y70{bottom:96.480000px;}
.y60{bottom:96.525000px;}
.y39{bottom:101.340000px;}
.y7f{bottom:102.600000px;}
.y5f{bottom:112.005000px;}
.y38{bottom:117.000000px;}
.y81{bottom:123.660000px;}
.y37{bottom:132.480000px;}
.y80{bottom:144.936000px;}
.y36{bottom:147.996000px;}
.y35{bottom:163.470000px;}
.y9e{bottom:165.990000px;}
.y6f{bottom:166.170000px;}
.y34{bottom:179.130000px;}
.y9d{bottom:182.010000px;}
.y7e{bottom:187.410000px;}
.y9c{bottom:194.250000px;}
.y33{bottom:194.610000px;}
.y7d{bottom:208.650000px;}
.y32{bottom:210.270000px;}
.y7c{bottom:229.890000px;}
.y31{bottom:241.410000px;}
.y7b{bottom:251.130000px;}
.y30{bottom:256.890000px;}
.y7a{bottom:272.370000px;}
.y2f{bottom:272.550000px;}
.y2e{bottom:288.030000px;}
.y79{bottom:293.610000px;}
.y2d{bottom:303.510000px;}
.y78{bottom:314.850000px;}
.y2c{bottom:318.990000px;}
.yc2{bottom:330.690000px;}
.y2b{bottom:334.650000px;}
.y77{bottom:336.090000px;}
.yc1{bottom:346.170000px;}
.y2a{bottom:350.130000px;}
.y76{bottom:357.330000px;}
.yc0{bottom:361.830000px;}
.y29{bottom:365.790000px;}
.ybf{bottom:377.310000px;}
.y5e{bottom:378.390000px;}
.y28{bottom:380.910000px;}
.ybe{bottom:392.835000px;}
.y6e{bottom:399.675000px;}
.y9b{bottom:405.435000px;}
.ybd{bottom:408.315000px;}
.y27{bottom:411.915000px;}
.y6d{bottom:420.915000px;}
.ybc{bottom:423.975000px;}
.y26{bottom:432.255000px;}
.y9a{bottom:433.335000px;}
.ybb{bottom:439.455000px;}
.y6c{bottom:442.155000px;}
.y25{bottom:445.035000px;}
.yba{bottom:454.935000px;}
.y6b{bottom:463.395000px;}
.yb9{bottom:470.415000px;}
.y24{bottom:476.895000px;}
.y6a{bottom:484.635000px;}
.yb8{bottom:485.895000px;}
.y23{bottom:495.075000px;}
.y69{bottom:505.875000px;}
.y22{bottom:510.555000px;}
.yb7{bottom:517.035000px;}
.y21{bottom:526.035000px;}
.y68{bottom:527.115000px;}
.y20{bottom:541.695000px;}
.y67{bottom:548.355000px;}
.y1f{bottom:557.175000px;}
.yb6{bottom:563.835000px;}
.y66{bottom:569.595000px;}
.y1e{bottom:572.655000px;}
.yb5{bottom:579.135000px;}
.y1d{bottom:588.135000px;}
.y5d{bottom:590.835000px;}
.y1c{bottom:603.795000px;}
.yb4{bottom:610.635000px;}
.y5c{bottom:615.315000px;}
.y1b{bottom:619.275000px;}
.yb3{bottom:626.295000px;}
.y99{bottom:634.395000px;}
.y1a{bottom:634.755000px;}
.yb2{bottom:641.805000px;}
.y5b{bottom:647.205000px;}
.y98{bottom:650.265000px;}
.y19{bottom:650.445000px;}
.yb1{bottom:657.285000px;}
.y97{bottom:662.685000px;}
.y5a{bottom:665.385000px;}
.y18{bottom:672.585000px;}
.y59{bottom:680.865000px;}
.yb0{bottom:688.245000px;}
.y58{bottom:696.525000px;}
.y17{bottom:703.725000px;}
.yaf{bottom:704.085000px;}
.y57{bottom:712.005000px;}
.y16{bottom:719.385000px;}
.yae{bottom:719.745000px;}
.y56{bottom:727.485000px;}
.y15{bottom:734.865000px;}
.yad{bottom:735.045000px;}
.y55{bottom:742.965000px;}
.y54{bottom:758.625000px;}
.yac{bottom:766.545000px;}
.y14{bottom:769.425000px;}
.y53{bottom:774.105000px;}
.yab{bottom:782.205000px;}
.y13{bottom:789.585000px;}
.yaa{bottom:797.325000px;}
.y52{bottom:805.065000px;}
.y51{bottom:820.725000px;}
.y12{bottom:826.485000px;}
.ya9{bottom:828.825000px;}
.y11{bottom:834.945000px;}
.y50{bottom:836.205000px;}
.ya8{bottom:844.485000px;}
.y4f{bottom:851.685000px;}
.ya7{bottom:859.965000px;}
.y10{bottom:860.505000px;}
.y96{bottom:861.585000px;}
.y4e{bottom:867.165000px;}
.y87{bottom:874.725000px;}
.ya6{bottom:875.445000px;}
.y4d{bottom:883.545000px;}
.ya5{bottom:891.105000px;}
.y95{bottom:895.830000px;}
.y4c{bottom:899.250000px;}
.yf{bottom:899.610000px;}
.ya4{bottom:906.270000px;}
.y94{bottom:917.070000px;}
.ya3{bottom:921.930000px;}
.y4b{bottom:922.470000px;}
.ye{bottom:923.910000px;}
.ya2{bottom:937.590000px;}
.y93{bottom:938.310000px;}
.y49{bottom:945.690000px;}
.ya1{bottom:953.070000px;}
.y92{bottom:959.550000px;}
.yd{bottom:966.210000px;}
.y47{bottom:968.910000px;}
.ya0{bottom:969.090000px;}
.y91{bottom:980.790000px;}
.y9f{bottom:981.510000px;}
.y45{bottom:992.310000px;}
.yc{bottom:1000.590000px;}
.y90{bottom:1002.030000px;}
.y44{bottom:1018.770000px;}
.y8f{bottom:1023.270000px;}
.y9{bottom:1034.070000px;}
.yb{bottom:1039.290000px;}
.y8e{bottom:1044.510000px;}
.y43{bottom:1049.910000px;}
.y8{bottom:1057.290000px;}
.y42{bottom:1065.390000px;}
.y86{bottom:1065.750000px;}
.ya{bottom:1071.330000px;}
.y41{bottom:1081.050000px;}
.y7{bottom:1086.630000px;}
.y85{bottom:1086.990000px;}
.y40{bottom:1096.530000px;}
.y6{bottom:1105.710000px;}
.y84{bottom:1108.230000px;}
.y3f{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y3e{bottom:1127.670000px;}
.y83{bottom:1129.470000px;}
.y4{bottom:1140.270000px;}
.y3d{bottom:1142.970000px;}
.y82{bottom:1150.560000px;}
.y3{bottom:1158.300000px;}
.y3c{bottom:1158.660000px;}
.y3b{bottom:1175.220000px;}
.y3a{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h14{height:20.340000px;}
.h1a{height:20.376000px;}
.h16{height:20.520000px;}
.h17{height:20.556000px;}
.h13{height:22.500000px;}
.hc{height:35.314453px;}
.h11{height:38.158594px;}
.h12{height:47.344922px;}
.h7{height:48.616875px;}
.hd{height:52.971680px;}
.h10{height:52.998047px;}
.he{height:54.421875px;}
.h1c{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.hf{height:62.153438px;}
.h19{height:62.856000px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h1b{height:190.290000px;}
.h18{height:211.500000px;}
.h15{height:211.530000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:71.280000px;}
.w5{width:71.640000px;}
.w4{width:71.676000px;}
.w6{width:72.540000px;}
.w8{width:72.900000px;}
.w7{width:72.936000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x17{left:10.260000px;}
.x1f{left:12.240000px;}
.x25{left:14.760000px;}
.x15{left:18.360000px;}
.x1b{left:21.420000px;}
.x21{left:22.680000px;}
.x1a{left:23.940000px;}
.x1c{left:25.560000px;}
.x19{left:27.360000px;}
.x2{left:30.059987px;}
.x29{left:33.120000px;}
.x28{left:36.180000px;}
.x8{left:53.099987px;}
.xe{left:69.839987px;}
.x9{left:73.439987px;}
.x2f{left:79.199987px;}
.xa{left:81.575987px;}
.x1e{left:111.816000px;}
.x20{left:184.710000px;}
.xb{left:213.509987px;}
.x5{left:244.109987px;}
.x3{left:252.209987px;}
.x22{left:258.195000px;}
.x13{left:276.374987px;}
.x1d{left:288.254987px;}
.x4{left:290.594987px;}
.xc{left:294.194987px;}
.x2b{left:299.234987px;}
.x23{left:331.455000px;}
.x14{left:333.615000px;}
.x2e{left:350.174987px;}
.x11{left:351.254987px;}
.x2d{left:395.534987px;}
.xf{left:400.394987px;}
.x16{left:405.255000px;}
.x1{left:422.714987px;}
.x10{left:428.864987px;}
.xd{left:437.144987px;}
.x12{left:441.284987px;}
.x18{left:477.285000px;}
.x6{left:478.904987px;}
.x7{left:506.444987px;}
.x24{left:551.265000px;}
.x2c{left:618.989987px;}
.x2a{left:622.409987px;}
.x26{left:624.570000px;}
.x27{left:697.830000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v5{vertical-align:-58.240000pt;}
.v8{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v4{vertical-align:-16.000000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v3{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.112000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.624000pt;}
.ls14{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.656000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.832000pt;}
.lse{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:2.656000pt;}
.ls4{letter-spacing:3.360000pt;}
.ls5{letter-spacing:7.840000pt;}
.ls1e{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls13{letter-spacing:62.080000pt;}
.ls1d{letter-spacing:80.800000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls8{letter-spacing:1035.946667pt;}
.ls19{letter-spacing:1076.266667pt;}
.ls7{letter-spacing:1090.346667pt;}
.ls1c{letter-spacing:1206.826667pt;}
.ls1a{letter-spacing:1256.106667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.832000pt;}
.ws11{word-spacing:-12.768000pt;}
.wsb{word-spacing:-12.656000pt;}
.ws5{word-spacing:-12.640000pt;}
.wsf{word-spacing:-12.624000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws9{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.112000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-2.171520pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.354880pt;}
._7{width:2.304000pt;}
._6{width:3.588907pt;}
._a{width:4.793813pt;}
._9{width:5.766187pt;}
._4{width:7.104000pt;}
._5{width:8.127787pt;}
._8{width:12.896000pt;}
._d{width:652.303787pt;}
._b{width:925.706667pt;}
._c{width:1037.589333pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.560000pt;}
.y4a{bottom:2.880000pt;}
.y48{bottom:3.040000pt;}
.y8d{bottom:16.680000pt;}
.y75{bottom:16.800000pt;}
.y65{bottom:16.840000pt;}
.y8c{bottom:30.440000pt;}
.y74{bottom:30.560000pt;}
.y64{bottom:30.600000pt;}
.y8b{bottom:44.200000pt;}
.y73{bottom:44.320000pt;}
.y63{bottom:44.360000pt;}
.y2{bottom:51.520000pt;}
.y8a{bottom:58.120000pt;}
.y72{bottom:58.240000pt;}
.y62{bottom:58.280000pt;}
.y1{bottom:68.320000pt;}
.y89{bottom:71.880000pt;}
.y71{bottom:72.000000pt;}
.y61{bottom:72.040000pt;}
.y88{bottom:85.640000pt;}
.y70{bottom:85.760000pt;}
.y60{bottom:85.800000pt;}
.y39{bottom:90.080000pt;}
.y7f{bottom:91.200000pt;}
.y5f{bottom:99.560000pt;}
.y38{bottom:104.000000pt;}
.y81{bottom:109.920000pt;}
.y37{bottom:117.760000pt;}
.y80{bottom:128.832000pt;}
.y36{bottom:131.552000pt;}
.y35{bottom:145.306667pt;}
.y9e{bottom:147.546667pt;}
.y6f{bottom:147.706667pt;}
.y34{bottom:159.226667pt;}
.y9d{bottom:161.786667pt;}
.y7e{bottom:166.586667pt;}
.y9c{bottom:172.666667pt;}
.y33{bottom:172.986667pt;}
.y7d{bottom:185.466667pt;}
.y32{bottom:186.906667pt;}
.y7c{bottom:204.346667pt;}
.y31{bottom:214.586667pt;}
.y7b{bottom:223.226667pt;}
.y30{bottom:228.346667pt;}
.y7a{bottom:242.106667pt;}
.y2f{bottom:242.266667pt;}
.y2e{bottom:256.026667pt;}
.y79{bottom:260.986667pt;}
.y2d{bottom:269.786667pt;}
.y78{bottom:279.866667pt;}
.y2c{bottom:283.546667pt;}
.yc2{bottom:293.946667pt;}
.y2b{bottom:297.466667pt;}
.y77{bottom:298.746667pt;}
.yc1{bottom:307.706667pt;}
.y2a{bottom:311.226667pt;}
.y76{bottom:317.626667pt;}
.yc0{bottom:321.626667pt;}
.y29{bottom:325.146667pt;}
.ybf{bottom:335.386667pt;}
.y5e{bottom:336.346667pt;}
.y28{bottom:338.586667pt;}
.ybe{bottom:349.186667pt;}
.y6e{bottom:355.266667pt;}
.y9b{bottom:360.386667pt;}
.ybd{bottom:362.946667pt;}
.y27{bottom:366.146667pt;}
.y6d{bottom:374.146667pt;}
.ybc{bottom:376.866667pt;}
.y26{bottom:384.226667pt;}
.y9a{bottom:385.186667pt;}
.ybb{bottom:390.626667pt;}
.y6c{bottom:393.026667pt;}
.y25{bottom:395.586667pt;}
.yba{bottom:404.386667pt;}
.y6b{bottom:411.906667pt;}
.yb9{bottom:418.146667pt;}
.y24{bottom:423.906667pt;}
.y6a{bottom:430.786667pt;}
.yb8{bottom:431.906667pt;}
.y23{bottom:440.066667pt;}
.y69{bottom:449.666667pt;}
.y22{bottom:453.826667pt;}
.yb7{bottom:459.586667pt;}
.y21{bottom:467.586667pt;}
.y68{bottom:468.546667pt;}
.y20{bottom:481.506667pt;}
.y67{bottom:487.426667pt;}
.y1f{bottom:495.266667pt;}
.yb6{bottom:501.186667pt;}
.y66{bottom:506.306667pt;}
.y1e{bottom:509.026667pt;}
.yb5{bottom:514.786667pt;}
.y1d{bottom:522.786667pt;}
.y5d{bottom:525.186667pt;}
.y1c{bottom:536.706667pt;}
.yb4{bottom:542.786667pt;}
.y5c{bottom:546.946667pt;}
.y1b{bottom:550.466667pt;}
.yb3{bottom:556.706667pt;}
.y99{bottom:563.906667pt;}
.y1a{bottom:564.226667pt;}
.yb2{bottom:570.493333pt;}
.y5b{bottom:575.293333pt;}
.y98{bottom:578.013333pt;}
.y19{bottom:578.173333pt;}
.yb1{bottom:584.253333pt;}
.y97{bottom:589.053333pt;}
.y5a{bottom:591.453333pt;}
.y18{bottom:597.853333pt;}
.y59{bottom:605.213333pt;}
.yb0{bottom:611.773333pt;}
.y58{bottom:619.133333pt;}
.y17{bottom:625.533333pt;}
.yaf{bottom:625.853333pt;}
.y57{bottom:632.893333pt;}
.y16{bottom:639.453333pt;}
.yae{bottom:639.773333pt;}
.y56{bottom:646.653333pt;}
.y15{bottom:653.213333pt;}
.yad{bottom:653.373333pt;}
.y55{bottom:660.413333pt;}
.y54{bottom:674.333333pt;}
.yac{bottom:681.373333pt;}
.y14{bottom:683.933333pt;}
.y53{bottom:688.093333pt;}
.yab{bottom:695.293333pt;}
.y13{bottom:701.853333pt;}
.yaa{bottom:708.733333pt;}
.y52{bottom:715.613333pt;}
.y51{bottom:729.533333pt;}
.y12{bottom:734.653333pt;}
.ya9{bottom:736.733333pt;}
.y11{bottom:742.173333pt;}
.y50{bottom:743.293333pt;}
.ya8{bottom:750.653333pt;}
.y4f{bottom:757.053333pt;}
.ya7{bottom:764.413333pt;}
.y10{bottom:764.893333pt;}
.y96{bottom:765.853333pt;}
.y4e{bottom:770.813333pt;}
.y87{bottom:777.533333pt;}
.ya6{bottom:778.173333pt;}
.y4d{bottom:785.373333pt;}
.ya5{bottom:792.093333pt;}
.y95{bottom:796.293333pt;}
.y4c{bottom:799.333333pt;}
.yf{bottom:799.653333pt;}
.ya4{bottom:805.573333pt;}
.y94{bottom:815.173333pt;}
.ya3{bottom:819.493333pt;}
.y4b{bottom:819.973333pt;}
.ye{bottom:821.253333pt;}
.ya2{bottom:833.413333pt;}
.y93{bottom:834.053333pt;}
.y49{bottom:840.613333pt;}
.ya1{bottom:847.173333pt;}
.y92{bottom:852.933333pt;}
.yd{bottom:858.853333pt;}
.y47{bottom:861.253333pt;}
.ya0{bottom:861.413333pt;}
.y91{bottom:871.813333pt;}
.y9f{bottom:872.453333pt;}
.y45{bottom:882.053333pt;}
.yc{bottom:889.413333pt;}
.y90{bottom:890.693333pt;}
.y44{bottom:905.573333pt;}
.y8f{bottom:909.573333pt;}
.y9{bottom:919.173333pt;}
.yb{bottom:923.813333pt;}
.y8e{bottom:928.453333pt;}
.y43{bottom:933.253333pt;}
.y8{bottom:939.813333pt;}
.y42{bottom:947.013333pt;}
.y86{bottom:947.333333pt;}
.ya{bottom:952.293333pt;}
.y41{bottom:960.933333pt;}
.y7{bottom:965.893333pt;}
.y85{bottom:966.213333pt;}
.y40{bottom:974.693333pt;}
.y6{bottom:982.853333pt;}
.y84{bottom:985.093333pt;}
.y3f{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y3e{bottom:1002.373333pt;}
.y83{bottom:1003.973333pt;}
.y4{bottom:1013.573333pt;}
.y3d{bottom:1015.973333pt;}
.y82{bottom:1022.720000pt;}
.y3{bottom:1029.600000pt;}
.y3c{bottom:1029.920000pt;}
.y3b{bottom:1044.640000pt;}
.y3a{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h14{height:18.080000pt;}
.h1a{height:18.112000pt;}
.h16{height:18.240000pt;}
.h17{height:18.272000pt;}
.h13{height:20.000000pt;}
.hc{height:31.390625pt;}
.h11{height:33.918750pt;}
.h12{height:42.084375pt;}
.h7{height:43.215000pt;}
.hd{height:47.085938pt;}
.h10{height:47.109375pt;}
.he{height:48.375000pt;}
.h1c{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.hf{height:55.247500pt;}
.h19{height:55.872000pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h1b{height:169.146667pt;}
.h18{height:188.000000pt;}
.h15{height:188.026667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:63.360000pt;}
.w5{width:63.680000pt;}
.w4{width:63.712000pt;}
.w6{width:64.480000pt;}
.w8{width:64.800000pt;}
.w7{width:64.832000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x17{left:9.120000pt;}
.x1f{left:10.880000pt;}
.x25{left:13.120000pt;}
.x15{left:16.320000pt;}
.x1b{left:19.040000pt;}
.x21{left:20.160000pt;}
.x1a{left:21.280000pt;}
.x1c{left:22.720000pt;}
.x19{left:24.320000pt;}
.x2{left:26.719988pt;}
.x29{left:29.440000pt;}
.x28{left:32.160000pt;}
.x8{left:47.199988pt;}
.xe{left:62.079988pt;}
.x9{left:65.279988pt;}
.x2f{left:70.399988pt;}
.xa{left:72.511988pt;}
.x1e{left:99.392000pt;}
.x20{left:164.186667pt;}
.xb{left:189.786655pt;}
.x5{left:216.986655pt;}
.x3{left:224.186655pt;}
.x22{left:229.506667pt;}
.x13{left:245.666655pt;}
.x1d{left:256.226655pt;}
.x4{left:258.306655pt;}
.xc{left:261.506655pt;}
.x2b{left:265.986655pt;}
.x23{left:294.626667pt;}
.x14{left:296.546667pt;}
.x2e{left:311.266655pt;}
.x11{left:312.226655pt;}
.x2d{left:351.586655pt;}
.xf{left:355.906655pt;}
.x16{left:360.226667pt;}
.x1{left:375.746655pt;}
.x10{left:381.213321pt;}
.xd{left:388.573321pt;}
.x12{left:392.253321pt;}
.x18{left:424.253333pt;}
.x6{left:425.693321pt;}
.x7{left:450.173321pt;}
.x24{left:490.013333pt;}
.x2c{left:550.213321pt;}
.x2a{left:553.253321pt;}
.x26{left:555.173333pt;}
.x27{left:620.293333pt;}
}




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