
    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_5ad3509a65e7bf6c81dd6b4b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6981553da00a9a2cc32a2816.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad2858ee2095d9a6a872c400.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_03fbde3af7b111334a8e6737.woff')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_9a563c3a6e63987b29dd2f0a.woff')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_b5154edf19b86b6ea85d5f19.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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;}
.v1{vertical-align:21.600000px;}
.ls11{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.420000px;}
.ls16{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.120000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.078000px;}
.ls9{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.ls7{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.600000px;}
.ls8{letter-spacing:1.440000px;}
.lse{letter-spacing:1.800000px;}
.lsf{letter-spacing:4.200000px;}
.ls10{letter-spacing:9.000000px;}
.lsd{letter-spacing:10.200000px;}
.ls19{letter-spacing:15.720000px;}
.ls13{letter-spacing:45.720000px;}
.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:-18.384000px;}
.ws5{word-spacing:-16.440000px;}
.ws4{word-spacing:-15.600000px;}
.ws3{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.000000px;}
.wsa{word-spacing:-14.880000px;}
.wsc{word-spacing:-14.760000px;}
.wsd{word-spacing:-14.580000px;}
.ws8{word-spacing:-12.900000px;}
.wsb{word-spacing:-11.136000px;}
.ws9{word-spacing:-9.900000px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-2.106000px;}
._1{margin-left:-1.008000px;}
._0{width:1.122000px;}
._4{width:2.856000px;}
._12{width:3.876000px;}
._8{width:4.884000px;}
._6{width:6.468000px;}
._5{width:7.980000px;}
._a{width:9.720000px;}
._9{width:10.740000px;}
._c{width:11.766000px;}
._b{width:12.780000px;}
._11{width:13.860000px;}
._d{width:16.020000px;}
._13{width:17.238000px;}
._e{width:18.294000px;}
._10{width:21.408000px;}
._f{width:22.680000px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc4{color:transparent;}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.yb4{bottom:11.685000px;}
.y9d{bottom:11.700000px;}
.ya1{bottom:11.715000px;}
.y9a{bottom:11.730000px;}
.y9f{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.yd0{bottom:13.800000px;}
.y3f{bottom:24.045000px;}
.y9c{bottom:37.500000px;}
.yce{bottom:41.400000px;}
.y3e{bottom:41.445000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3d{bottom:58.545000px;}
.yaf{bottom:74.137500px;}
.y3c{bottom:75.945000px;}
.y3{bottom:81.337500px;}
.y3b{bottom:93.045000px;}
.y3a{bottom:110.430000px;}
.ye6{bottom:111.937500px;}
.y33{bottom:119.137500px;}
.y39{bottom:127.545000px;}
.ye5{bottom:129.337500px;}
.y77{bottom:132.337500px;}
.y32{bottom:136.537500px;}
.yae{bottom:144.637500px;}
.y38{bottom:144.930000px;}
.ye4{bottom:146.437500px;}
.y76{bottom:149.737500px;}
.y31{bottom:153.630000px;}
.yad{bottom:162.030000px;}
.y37{bottom:162.045000px;}
.ye3{bottom:163.845000px;}
.y75{bottom:165.030000px;}
.y30{bottom:171.045000px;}
.y74{bottom:175.530000px;}
.yac{bottom:179.175000px;}
.y36{bottom:179.475000px;}
.ye2{bottom:180.975000px;}
.y2f{bottom:188.175000px;}
.y73{bottom:192.975000px;}
.yab{bottom:196.575000px;}
.y35{bottom:197.175000px;}
.ye1{bottom:198.375000px;}
.y2e{bottom:205.575000px;}
.y72{bottom:208.275000px;}
.yaa{bottom:213.675000px;}
.ye0{bottom:215.475000px;}
.y71{bottom:218.775000px;}
.y2d{bottom:222.675000px;}
.ya9{bottom:231.075000px;}
.ydf{bottom:232.875000px;}
.y70{bottom:235.875000px;}
.y2c{bottom:240.075000px;}
.ya8{bottom:248.175000px;}
.yde{bottom:250.575000px;}
.y6f{bottom:253.575000px;}
.y2b{bottom:256.575000px;}
.ydd{bottom:270.075000px;}
.y2a{bottom:270.975000px;}
.y6e{bottom:273.075000px;}
.ya7{bottom:277.275000px;}
.ydc{bottom:284.475000px;}
.y6d{bottom:287.775000px;}
.y29{bottom:288.375000px;}
.ya6{bottom:294.675000px;}
.ydb{bottom:301.875000px;}
.y6c{bottom:304.875000px;}
.y28{bottom:305.475000px;}
.ya5{bottom:312.375000px;}
.yda{bottom:318.975000px;}
.y6b{bottom:322.575000px;}
.y27{bottom:322.875000px;}
.ya4{bottom:332.775000px;}
.yd9{bottom:336.375000px;}
.y26{bottom:339.975000px;}
.y6a{bottom:342.075000px;}
.ya3{bottom:348.120000px;}
.yd8{bottom:353.505000px;}
.y69{bottom:356.820000px;}
.y25{bottom:357.405000px;}
.yd7{bottom:370.905000px;}
.ya2{bottom:373.905000px;}
.y24{bottom:373.920000px;}
.yd6{bottom:388.005000px;}
.y23{bottom:388.320000px;}
.y68{bottom:398.505000px;}
.ya0{bottom:399.705000px;}
.y22{bottom:405.705000px;}
.y21{bottom:422.820000px;}
.y67{bottom:423.120000px;}
.y9e{bottom:425.505000px;}
.yd5{bottom:426.120000px;}
.y20{bottom:440.205000px;}
.y66{bottom:440.820000px;}
.yd4{bottom:441.405000px;}
.y9b{bottom:451.620000px;}
.y1f{bottom:457.320000px;}
.y65{bottom:457.905000px;}
.yd3{bottom:467.205000px;}
.y103{bottom:468.420000px;}
.y1e{bottom:473.820000px;}
.y64{bottom:475.320000px;}
.y102{bottom:485.505000px;}
.y1d{bottom:488.505000px;}
.y63{bottom:492.420000px;}
.yd2{bottom:493.005000px;}
.y101{bottom:502.920000px;}
.y99{bottom:504.720000px;}
.y1c{bottom:505.605000px;}
.y62{bottom:510.120000px;}
.yd1{bottom:518.850000px;}
.y100{bottom:520.050000px;}
.y1b{bottom:523.050000px;}
.y61{bottom:530.550000px;}
.y98{bottom:533.550000px;}
.yff{bottom:537.450000px;}
.y1a{bottom:540.150000px;}
.y97{bottom:544.650000px;}
.ycd{bottom:544.950000px;}
.y60{bottom:547.650000px;}
.yfe{bottom:554.550000px;}
.y19{bottom:557.550000px;}
.y96{bottom:564.150000px;}
.yfd{bottom:571.950000px;}
.y5f{bottom:573.150000px;}
.ycf{bottom:574.350000px;}
.y18{bottom:574.650000px;}
.y95{bottom:578.850000px;}
.yfc{bottom:589.050000px;}
.y17{bottom:592.350000px;}
.y94{bottom:595.950000px;}
.y5e{bottom:599.250000px;}
.ycc{bottom:603.450000px;}
.yfb{bottom:606.450000px;}
.y93{bottom:613.350000px;}
.y16{bottom:613.650000px;}
.ycb{bottom:614.250000px;}
.yfa{bottom:623.550000px;}
.y5d{bottom:625.050000px;}
.y92{bottom:630.450000px;}
.yca{bottom:634.950000px;}
.yf9{bottom:640.950000px;}
.y91{bottom:647.850000px;}
.y5c{bottom:650.850000px;}
.yc9{bottom:655.350000px;}
.yf8{bottom:658.050000px;}
.y90{bottom:664.950000px;}
.yc8{bottom:672.450000px;}
.y34{bottom:675.150000px;}
.yf7{bottom:675.450000px;}
.y5b{bottom:676.650000px;}
.y8f{bottom:682.380000px;}
.yc7{bottom:689.880000px;}
.yf6{bottom:692.595000px;}
.y8e{bottom:699.495000px;}
.y5a{bottom:702.780000px;}
.yc6{bottom:706.995000px;}
.yf5{bottom:709.980000px;}
.y8d{bottom:716.880000px;}
.yc5{bottom:724.395000px;}
.yf4{bottom:727.080000px;}
.y59{bottom:728.580000px;}
.y8c{bottom:734.595000px;}
.yc4{bottom:741.495000px;}
.yf3{bottom:744.495000px;}
.y58{bottom:754.395000px;}
.y8b{bottom:755.280000px;}
.yc3{bottom:758.880000px;}
.yf2{bottom:761.595000px;}
.y57{bottom:769.380000px;}
.y56{bottom:775.380000px;}
.yf1{bottom:778.980000px;}
.yc2{bottom:789.795000px;}
.y55{bottom:792.795000px;}
.yf0{bottom:796.080000px;}
.yc1{bottom:807.195000px;}
.y8a{bottom:809.880000px;}
.y54{bottom:810.495000px;}
.yef{bottom:813.495000px;}
.yc0{bottom:824.295000px;}
.y89{bottom:827.295000px;}
.y53{bottom:829.980000px;}
.yee{bottom:830.580000px;}
.ybf{bottom:841.695000px;}
.y52{bottom:844.380000px;}
.y88{bottom:844.995000px;}
.yed{bottom:847.995000px;}
.ybe{bottom:858.825000px;}
.y51{bottom:861.825000px;}
.y87{bottom:865.125000px;}
.ybd{bottom:876.225000px;}
.y50{bottom:878.925000px;}
.y86{bottom:882.525000px;}
.ybc{bottom:893.325000px;}
.y4f{bottom:896.325000px;}
.y85{bottom:899.625000px;}
.ybb{bottom:911.025000px;}
.y4e{bottom:913.425000px;}
.y84{bottom:914.925000px;}
.yec{bottom:917.025000px;}
.y83{bottom:925.425000px;}
.y15{bottom:925.725000px;}
.y4d{bottom:931.125000px;}
.yba{bottom:931.425000px;}
.yeb{bottom:934.125000px;}
.y82{bottom:942.825000px;}
.y14{bottom:944.025000px;}
.yb9{bottom:946.725000px;}
.y4c{bottom:950.625000px;}
.yea{bottom:951.525000px;}
.y81{bottom:958.125000px;}
.y13{bottom:962.925000px;}
.y4b{bottom:965.325000px;}
.y80{bottom:968.625000px;}
.yb8{bottom:972.525000px;}
.y12{bottom:980.025000px;}
.y4a{bottom:982.425000px;}
.y7f{bottom:986.025000px;}
.y11{bottom:995.925000px;}
.yb7{bottom:998.325000px;}
.y49{bottom:999.825000px;}
.y7e{bottom:1001.325000px;}
.ye9{bottom:1003.125000px;}
.y7d{bottom:1011.825000px;}
.y10{bottom:1016.670000px;}
.y48{bottom:1017.570000px;}
.ye8{bottom:1020.570000px;}
.yb6{bottom:1024.455000px;}
.y7c{bottom:1028.955000px;}
.ye7{bottom:1037.670000px;}
.y47{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y7b{bottom:1044.255000px;}
.yb5{bottom:1050.255000px;}
.y7a{bottom:1055.070000px;}
.y46{bottom:1057.755000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y45{bottom:1072.170000px;}
.yb3{bottom:1077.570000px;}
.ya{bottom:1083.570000px;}
.y44{bottom:1089.570000px;}
.y79{bottom:1089.870000px;}
.y9{bottom:1097.955000px;}
.yb2{bottom:1106.370000px;}
.y43{bottom:1106.670000px;}
.y78{bottom:1109.370000px;}
.y8{bottom:1115.670000px;}
.yb1{bottom:1117.455000px;}
.y42{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yb0{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h14{height:20.947266px;}
.ha{height:21.000000px;}
.hd{height:21.166992px;}
.h1c{height:25.800000px;}
.h16{height:25.837500px;}
.h1a{height:26.100000px;}
.h1e{height:26.137500px;}
.h20{height:27.900000px;}
.he{height:33.515625px;}
.h7{height:33.867188px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hc{height:38.100586px;}
.hb{height:41.894531px;}
.h4{height:42.333984px;}
.h12{height:43.330078px;}
.h21{height:43.681641px;}
.h13{height:44.507812px;}
.h19{height:49.190391px;}
.h15{height:49.250391px;}
.h1b{height:49.310391px;}
.hf{height:49.453125px;}
.h17{height:49.540430px;}
.h1d{height:49.600430px;}
.h6{height:50.800781px;}
.h18{height:51.600000px;}
.h11{height:51.996094px;}
.h1f{height:55.500000px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:213.975000px;}
.h0{height:1263.000000px;}
.w15{width:49.200000px;}
.wb{width:53.100000px;}
.w10{width:53.137500px;}
.wf{width:54.000000px;}
.we{width:65.422500px;}
.w18{width:70.500000px;}
.w16{width:71.737500px;}
.w4{width:72.300000px;}
.w9{width:73.500000px;}
.wa{width:73.537500px;}
.w11{width:80.737500px;}
.w19{width:82.537500px;}
.wd{width:89.700000px;}
.w8{width:100.537500px;}
.w12{width:102.900000px;}
.w3{width:108.000000px;}
.w13{width:114.037500px;}
.wc{width:120.637500px;}
.w17{width:144.937500px;}
.w14{width:153.645000px;}
.w6{width:252.975000px;}
.w5{width:483.450000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.800000px;}
.x2{left:10.799998px;}
.x15{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x14{left:83.137500px;}
.x10{left:84.937487px;}
.x13{left:96.937487px;}
.x26{left:108.037487px;}
.xf{left:116.445000px;}
.xa{left:153.629987px;}
.x1c{left:171.945000px;}
.x18{left:182.775000px;}
.x21{left:196.275000px;}
.x1d{left:237.975000px;}
.xd{left:241.567500px;}
.x19{left:256.875000px;}
.x25{left:267.375000px;}
.x1e{left:292.575000px;}
.x1a{left:331.320000px;}
.x1f{left:346.320000px;}
.x22{left:350.820000px;}
.x7{left:363.419987px;}
.x1b{left:385.320000px;}
.x5{left:388.619987px;}
.x11{left:394.004987px;}
.x23{left:400.620000px;}
.x20{left:427.050000px;}
.x12{left:446.549987px;}
.x24{left:473.250000px;}
.xe{left:561.780000px;}
.x16{left:568.694987px;}
.x9{left:614.879987px;}
.x8{left:648.194987px;}
.x6{left:696.524987px;}
.xb{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.373333pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.069333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls7{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls8{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.600000pt;}
.lsf{letter-spacing:3.733333pt;}
.ls10{letter-spacing:8.000000pt;}
.lsd{letter-spacing:9.066667pt;}
.ls19{letter-spacing:13.973333pt;}
.ls13{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws5{word-spacing:-14.613333pt;}
.ws4{word-spacing:-13.866667pt;}
.ws3{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsa{word-spacing:-13.226667pt;}
.wsc{word-spacing:-13.120000pt;}
.wsd{word-spacing:-12.960000pt;}
.ws8{word-spacing:-11.466667pt;}
.wsb{word-spacing:-9.898667pt;}
.ws9{word-spacing:-8.800000pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-1.872000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.997333pt;}
._4{width:2.538667pt;}
._12{width:3.445333pt;}
._8{width:4.341333pt;}
._6{width:5.749333pt;}
._5{width:7.093333pt;}
._a{width:8.640000pt;}
._9{width:9.546667pt;}
._c{width:10.458667pt;}
._b{width:11.360000pt;}
._11{width:12.320000pt;}
._d{width:14.240000pt;}
._13{width:15.322667pt;}
._e{width:16.261333pt;}
._10{width:19.029333pt;}
._f{width:20.160000pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.yb4{bottom:10.386667pt;}
.y9d{bottom:10.400000pt;}
.ya1{bottom:10.413333pt;}
.y9a{bottom:10.426667pt;}
.y9f{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.yd0{bottom:12.266667pt;}
.y3f{bottom:21.373333pt;}
.y9c{bottom:33.333333pt;}
.yce{bottom:36.800000pt;}
.y3e{bottom:36.840000pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3d{bottom:52.040000pt;}
.yaf{bottom:65.900000pt;}
.y3c{bottom:67.506667pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:82.706667pt;}
.y3a{bottom:98.160000pt;}
.ye6{bottom:99.500000pt;}
.y33{bottom:105.900000pt;}
.y39{bottom:113.373333pt;}
.ye5{bottom:114.966667pt;}
.y77{bottom:117.633333pt;}
.y32{bottom:121.366667pt;}
.yae{bottom:128.566667pt;}
.y38{bottom:128.826667pt;}
.ye4{bottom:130.166667pt;}
.y76{bottom:133.100000pt;}
.y31{bottom:136.560000pt;}
.yad{bottom:144.026667pt;}
.y37{bottom:144.040000pt;}
.ye3{bottom:145.640000pt;}
.y75{bottom:146.693333pt;}
.y30{bottom:152.040000pt;}
.y74{bottom:156.026667pt;}
.yac{bottom:159.266667pt;}
.y36{bottom:159.533333pt;}
.ye2{bottom:160.866667pt;}
.y2f{bottom:167.266667pt;}
.y73{bottom:171.533333pt;}
.yab{bottom:174.733333pt;}
.y35{bottom:175.266667pt;}
.ye1{bottom:176.333333pt;}
.y2e{bottom:182.733333pt;}
.y72{bottom:185.133333pt;}
.yaa{bottom:189.933333pt;}
.ye0{bottom:191.533333pt;}
.y71{bottom:194.466667pt;}
.y2d{bottom:197.933333pt;}
.ya9{bottom:205.400000pt;}
.ydf{bottom:207.000000pt;}
.y70{bottom:209.666667pt;}
.y2c{bottom:213.400000pt;}
.ya8{bottom:220.600000pt;}
.yde{bottom:222.733333pt;}
.y6f{bottom:225.400000pt;}
.y2b{bottom:228.066667pt;}
.ydd{bottom:240.066667pt;}
.y2a{bottom:240.866667pt;}
.y6e{bottom:242.733333pt;}
.ya7{bottom:246.466667pt;}
.ydc{bottom:252.866667pt;}
.y6d{bottom:255.800000pt;}
.y29{bottom:256.333333pt;}
.ya6{bottom:261.933333pt;}
.ydb{bottom:268.333333pt;}
.y6c{bottom:271.000000pt;}
.y28{bottom:271.533333pt;}
.ya5{bottom:277.666667pt;}
.yda{bottom:283.533333pt;}
.y6b{bottom:286.733333pt;}
.y27{bottom:287.000000pt;}
.ya4{bottom:295.800000pt;}
.yd9{bottom:299.000000pt;}
.y26{bottom:302.200000pt;}
.y6a{bottom:304.066667pt;}
.ya3{bottom:309.440000pt;}
.yd8{bottom:314.226667pt;}
.y69{bottom:317.173333pt;}
.y25{bottom:317.693333pt;}
.yd7{bottom:329.693333pt;}
.ya2{bottom:332.360000pt;}
.y24{bottom:332.373333pt;}
.yd6{bottom:344.893333pt;}
.y23{bottom:345.173333pt;}
.y68{bottom:354.226667pt;}
.ya0{bottom:355.293333pt;}
.y22{bottom:360.626667pt;}
.y21{bottom:375.840000pt;}
.y67{bottom:376.106667pt;}
.y9e{bottom:378.226667pt;}
.yd5{bottom:378.773333pt;}
.y20{bottom:391.293333pt;}
.y66{bottom:391.840000pt;}
.yd4{bottom:392.360000pt;}
.y9b{bottom:401.440000pt;}
.y1f{bottom:406.506667pt;}
.y65{bottom:407.026667pt;}
.yd3{bottom:415.293333pt;}
.y103{bottom:416.373333pt;}
.y1e{bottom:421.173333pt;}
.y64{bottom:422.506667pt;}
.y102{bottom:431.560000pt;}
.y1d{bottom:434.226667pt;}
.y63{bottom:437.706667pt;}
.yd2{bottom:438.226667pt;}
.y101{bottom:447.040000pt;}
.y99{bottom:448.640000pt;}
.y1c{bottom:449.426667pt;}
.y62{bottom:453.440000pt;}
.yd1{bottom:461.200000pt;}
.y100{bottom:462.266667pt;}
.y1b{bottom:464.933333pt;}
.y61{bottom:471.600000pt;}
.y98{bottom:474.266667pt;}
.yff{bottom:477.733333pt;}
.y1a{bottom:480.133333pt;}
.y97{bottom:484.133333pt;}
.ycd{bottom:484.400000pt;}
.y60{bottom:486.800000pt;}
.yfe{bottom:492.933333pt;}
.y19{bottom:495.600000pt;}
.y96{bottom:501.466667pt;}
.yfd{bottom:508.400000pt;}
.y5f{bottom:509.466667pt;}
.ycf{bottom:510.533333pt;}
.y18{bottom:510.800000pt;}
.y95{bottom:514.533333pt;}
.yfc{bottom:523.600000pt;}
.y17{bottom:526.533333pt;}
.y94{bottom:529.733333pt;}
.y5e{bottom:532.666667pt;}
.ycc{bottom:536.400000pt;}
.yfb{bottom:539.066667pt;}
.y93{bottom:545.200000pt;}
.y16{bottom:545.466667pt;}
.ycb{bottom:546.000000pt;}
.yfa{bottom:554.266667pt;}
.y5d{bottom:555.600000pt;}
.y92{bottom:560.400000pt;}
.yca{bottom:564.400000pt;}
.yf9{bottom:569.733333pt;}
.y91{bottom:575.866667pt;}
.y5c{bottom:578.533333pt;}
.yc9{bottom:582.533333pt;}
.yf8{bottom:584.933333pt;}
.y90{bottom:591.066667pt;}
.yc8{bottom:597.733333pt;}
.y34{bottom:600.133333pt;}
.yf7{bottom:600.400000pt;}
.y5b{bottom:601.466667pt;}
.y8f{bottom:606.560000pt;}
.yc7{bottom:613.226667pt;}
.yf6{bottom:615.640000pt;}
.y8e{bottom:621.773333pt;}
.y5a{bottom:624.693333pt;}
.yc6{bottom:628.440000pt;}
.yf5{bottom:631.093333pt;}
.y8d{bottom:637.226667pt;}
.yc5{bottom:643.906667pt;}
.yf4{bottom:646.293333pt;}
.y59{bottom:647.626667pt;}
.y8c{bottom:652.973333pt;}
.yc4{bottom:659.106667pt;}
.yf3{bottom:661.773333pt;}
.y58{bottom:670.573333pt;}
.y8b{bottom:671.360000pt;}
.yc3{bottom:674.560000pt;}
.yf2{bottom:676.973333pt;}
.y57{bottom:683.893333pt;}
.y56{bottom:689.226667pt;}
.yf1{bottom:692.426667pt;}
.yc2{bottom:702.040000pt;}
.y55{bottom:704.706667pt;}
.yf0{bottom:707.626667pt;}
.yc1{bottom:717.506667pt;}
.y8a{bottom:719.893333pt;}
.y54{bottom:720.440000pt;}
.yef{bottom:723.106667pt;}
.yc0{bottom:732.706667pt;}
.y89{bottom:735.373333pt;}
.y53{bottom:737.760000pt;}
.yee{bottom:738.293333pt;}
.ybf{bottom:748.173333pt;}
.y52{bottom:750.560000pt;}
.y88{bottom:751.106667pt;}
.yed{bottom:753.773333pt;}
.ybe{bottom:763.400000pt;}
.y51{bottom:766.066667pt;}
.y87{bottom:769.000000pt;}
.ybd{bottom:778.866667pt;}
.y50{bottom:781.266667pt;}
.y86{bottom:784.466667pt;}
.ybc{bottom:794.066667pt;}
.y4f{bottom:796.733333pt;}
.y85{bottom:799.666667pt;}
.ybb{bottom:809.800000pt;}
.y4e{bottom:811.933333pt;}
.y84{bottom:813.266667pt;}
.yec{bottom:815.133333pt;}
.y83{bottom:822.600000pt;}
.y15{bottom:822.866667pt;}
.y4d{bottom:827.666667pt;}
.yba{bottom:827.933333pt;}
.yeb{bottom:830.333333pt;}
.y82{bottom:838.066667pt;}
.y14{bottom:839.133333pt;}
.yb9{bottom:841.533333pt;}
.y4c{bottom:845.000000pt;}
.yea{bottom:845.800000pt;}
.y81{bottom:851.666667pt;}
.y13{bottom:855.933333pt;}
.y4b{bottom:858.066667pt;}
.y80{bottom:861.000000pt;}
.yb8{bottom:864.466667pt;}
.y12{bottom:871.133333pt;}
.y4a{bottom:873.266667pt;}
.y7f{bottom:876.466667pt;}
.y11{bottom:885.266667pt;}
.yb7{bottom:887.400000pt;}
.y49{bottom:888.733333pt;}
.y7e{bottom:890.066667pt;}
.ye9{bottom:891.666667pt;}
.y7d{bottom:899.400000pt;}
.y10{bottom:903.706667pt;}
.y48{bottom:904.506667pt;}
.ye8{bottom:907.173333pt;}
.yb6{bottom:910.626667pt;}
.y7c{bottom:914.626667pt;}
.ye7{bottom:922.373333pt;}
.y47{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y7b{bottom:928.226667pt;}
.yb5{bottom:933.560000pt;}
.y7a{bottom:937.840000pt;}
.y46{bottom:940.226667pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y45{bottom:953.040000pt;}
.yb3{bottom:957.840000pt;}
.ya{bottom:963.173333pt;}
.y44{bottom:968.506667pt;}
.y79{bottom:968.773333pt;}
.y9{bottom:975.960000pt;}
.yb2{bottom:983.440000pt;}
.y43{bottom:983.706667pt;}
.y78{bottom:986.106667pt;}
.y8{bottom:991.706667pt;}
.yb1{bottom:993.293333pt;}
.y42{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yb0{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h14{height:18.619792pt;}
.ha{height:18.666667pt;}
.hd{height:18.815104pt;}
.h1c{height:22.933333pt;}
.h16{height:22.966667pt;}
.h1a{height:23.200000pt;}
.h1e{height:23.233333pt;}
.h20{height:24.800000pt;}
.he{height:29.791667pt;}
.h7{height:30.104167pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hc{height:33.867188pt;}
.hb{height:37.239583pt;}
.h4{height:37.630208pt;}
.h12{height:38.515625pt;}
.h21{height:38.828125pt;}
.h13{height:39.562500pt;}
.h19{height:43.724792pt;}
.h15{height:43.778125pt;}
.h1b{height:43.831458pt;}
.hf{height:43.958333pt;}
.h17{height:44.035937pt;}
.h1d{height:44.089271pt;}
.h6{height:45.156250pt;}
.h18{height:45.866667pt;}
.h11{height:46.218750pt;}
.h1f{height:49.333333pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:190.200000pt;}
.h0{height:1122.666667pt;}
.w15{width:43.733333pt;}
.wb{width:47.200000pt;}
.w10{width:47.233333pt;}
.wf{width:48.000000pt;}
.we{width:58.153333pt;}
.w18{width:62.666667pt;}
.w16{width:63.766667pt;}
.w4{width:64.266667pt;}
.w9{width:65.333333pt;}
.wa{width:65.366667pt;}
.w11{width:71.766667pt;}
.w19{width:73.366667pt;}
.wd{width:79.733333pt;}
.w8{width:89.366667pt;}
.w12{width:91.466667pt;}
.w3{width:96.000000pt;}
.w13{width:101.366667pt;}
.wc{width:107.233333pt;}
.w17{width:128.833333pt;}
.w14{width:136.573333pt;}
.w6{width:224.866667pt;}
.w5{width:429.733333pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.933333pt;}
.x2{left:9.599999pt;}
.x15{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x14{left:73.900000pt;}
.x10{left:75.499988pt;}
.x13{left:86.166655pt;}
.x26{left:96.033322pt;}
.xf{left:103.506667pt;}
.xa{left:136.559988pt;}
.x1c{left:152.840000pt;}
.x18{left:162.466667pt;}
.x21{left:174.466667pt;}
.x1d{left:211.533333pt;}
.xd{left:214.726667pt;}
.x19{left:228.333333pt;}
.x25{left:237.666667pt;}
.x1e{left:260.066667pt;}
.x1a{left:294.506667pt;}
.x1f{left:307.840000pt;}
.x22{left:311.840000pt;}
.x7{left:323.039988pt;}
.x1b{left:342.506667pt;}
.x5{left:345.439988pt;}
.x11{left:350.226655pt;}
.x23{left:356.106667pt;}
.x20{left:379.600000pt;}
.x12{left:396.933322pt;}
.x24{left:420.666667pt;}
.xe{left:499.360000pt;}
.x16{left:505.506655pt;}
.x9{left:546.559988pt;}
.x8{left:576.173322pt;}
.x6{left:619.133322pt;}
.xb{left:722.106655pt;}
}




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