
    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_32a317199af1db2e37c68f85.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_81003948e0fa06a8747dad1a.woff2')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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_56c46ce2355c77ade74c136c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995605;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_45a1eb7e32739cee6e7017c5.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_4e8baf3dc17bdb6031af3a8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_cf5b54b838ee9f69dcdff9c4.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_3db7b963d285233f1583ab68.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:20.880000px;}
.lsc{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:13.140000px;}
.lsa{letter-spacing:21.546720px;}
.ls6{letter-spacing:46.002720px;}
.ls7{letter-spacing:64.002720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.479800px;}
.ws2{word-spacing:-13.500000px;}
.ws7{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._15{margin-left:-8.197440px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._5{width:2.696640px;}
._2{width:3.960960px;}
._6{width:5.682000px;}
._b{width:7.030320px;}
._7{width:8.239200px;}
._a{width:10.039680px;}
._d{width:11.227200px;}
._c{width:12.250800px;}
._f{width:13.625280px;}
._e{width:15.955920px;}
._9{width:17.980080px;}
._8{width:19.063440px;}
._13{width:21.326640px;}
._14{width:22.519440px;}
._10{width:24.015840px;}
._12{width:32.860320px;}
._11{width:33.943680px;}
._4{width:85.656000px;}
._3{width:687.306000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:15.120000px;}
.ye5{bottom:15.300000px;}
.yb{bottom:35.100000px;}
.ya{bottom:50.580000px;}
.y67{bottom:111.276000px;}
.y40{bottom:111.816000px;}
.yd6{bottom:113.616000px;}
.y108{bottom:116.136000px;}
.y97{bottom:119.016000px;}
.y66{bottom:128.556000px;}
.y3f{bottom:129.096000px;}
.yd5{bottom:130.896000px;}
.y107{bottom:133.416000px;}
.yb2{bottom:133.596000px;}
.y96{bottom:136.296000px;}
.y65{bottom:145.656000px;}
.y3e{bottom:146.376000px;}
.yd4{bottom:148.176000px;}
.y106{bottom:150.510000px;}
.yb1{bottom:150.870000px;}
.y95{bottom:153.570000px;}
.y64{bottom:162.930000px;}
.y3d{bottom:163.470000px;}
.yd3{bottom:165.270000px;}
.y105{bottom:167.790000px;}
.yb0{bottom:168.150000px;}
.y94{bottom:170.670000px;}
.y63{bottom:180.210000px;}
.y3c{bottom:180.750000px;}
.yd2{bottom:182.550000px;}
.y104{bottom:185.070000px;}
.yaf{bottom:185.250000px;}
.y93{bottom:187.950000px;}
.y62{bottom:197.490000px;}
.y3b{bottom:198.030000px;}
.yd1{bottom:200.910000px;}
.y103{bottom:202.350000px;}
.yae{bottom:202.530000px;}
.y92{bottom:205.230000px;}
.y61{bottom:214.770000px;}
.y3a{bottom:215.310000px;}
.yd0{bottom:218.190000px;}
.y102{bottom:219.630000px;}
.yad{bottom:219.810000px;}
.y91{bottom:222.510000px;}
.y60{bottom:232.050000px;}
.y39{bottom:232.590000px;}
.ycf{bottom:235.470000px;}
.y101{bottom:236.730000px;}
.yac{bottom:237.090000px;}
.y90{bottom:239.790000px;}
.y5f{bottom:249.150000px;}
.y38{bottom:249.690000px;}
.yce{bottom:252.750000px;}
.y100{bottom:254.010000px;}
.yab{bottom:254.370000px;}
.y8f{bottom:256.890000px;}
.y5e{bottom:266.430000px;}
.y37{bottom:266.970000px;}
.ycd{bottom:269.850000px;}
.yff{bottom:271.290000px;}
.yaa{bottom:271.650000px;}
.y8e{bottom:274.170000px;}
.y5d{bottom:283.710000px;}
.y36{bottom:284.250000px;}
.ycc{bottom:288.210000px;}
.yfe{bottom:288.570000px;}
.ya9{bottom:288.750000px;}
.y8d{bottom:291.450000px;}
.y5c{bottom:300.990000px;}
.y35{bottom:301.530000px;}
.ycb{bottom:305.490000px;}
.yfd{bottom:305.850000px;}
.ya8{bottom:306.030000px;}
.y8c{bottom:308.730000px;}
.y5b{bottom:318.270000px;}
.y34{bottom:318.810000px;}
.yca{bottom:322.770000px;}
.yfc{bottom:323.130000px;}
.ya7{bottom:323.310000px;}
.y8b{bottom:326.010000px;}
.y5a{bottom:335.550000px;}
.y33{bottom:336.090000px;}
.yc9{bottom:340.095000px;}
.yfb{bottom:340.275000px;}
.ya6{bottom:340.635000px;}
.y8a{bottom:343.335000px;}
.y59{bottom:352.695000px;}
.y32{bottom:353.235000px;}
.yc8{bottom:357.375000px;}
.yfa{bottom:357.555000px;}
.ya5{bottom:357.915000px;}
.y89{bottom:360.435000px;}
.y58{bottom:369.975000px;}
.y31{bottom:370.515000px;}
.yc7{bottom:374.475000px;}
.yf9{bottom:374.835000px;}
.ya4{bottom:375.195000px;}
.y88{bottom:377.715000px;}
.y57{bottom:387.255000px;}
.y30{bottom:387.795000px;}
.yc6{bottom:391.755000px;}
.yf8{bottom:392.115000px;}
.ya3{bottom:392.295000px;}
.y87{bottom:394.995000px;}
.y56{bottom:404.535000px;}
.y2f{bottom:405.075000px;}
.yc5{bottom:409.035000px;}
.yf7{bottom:409.395000px;}
.ya2{bottom:409.575000px;}
.y86{bottom:412.275000px;}
.y55{bottom:421.815000px;}
.y2e{bottom:422.355000px;}
.yc4{bottom:426.315000px;}
.yf6{bottom:426.675000px;}
.ya1{bottom:426.855000px;}
.y85{bottom:429.555000px;}
.y54{bottom:439.095000px;}
.y2d{bottom:439.635000px;}
.yc3{bottom:443.595000px;}
.yf5{bottom:443.775000px;}
.ya0{bottom:444.135000px;}
.y84{bottom:446.835000px;}
.y53{bottom:456.195000px;}
.y2c{bottom:456.735000px;}
.yc2{bottom:460.695000px;}
.yf4{bottom:461.055000px;}
.y9f{bottom:461.415000px;}
.y83{bottom:463.935000px;}
.y52{bottom:473.475000px;}
.y2b{bottom:476.715000px;}
.yc1{bottom:477.975000px;}
.yf3{bottom:478.335000px;}
.y9e{bottom:478.515000px;}
.y82{bottom:481.215000px;}
.y51{bottom:490.755000px;}
.y2a{bottom:493.995000px;}
.yc0{bottom:495.255000px;}
.yf2{bottom:495.615000px;}
.y9d{bottom:495.795000px;}
.y81{bottom:498.495000px;}
.y50{bottom:508.035000px;}
.y29{bottom:511.095000px;}
.ybf{bottom:512.535000px;}
.yf1{bottom:512.895000px;}
.y9c{bottom:513.075000px;}
.y80{bottom:515.775000px;}
.y4f{bottom:525.315000px;}
.y28{bottom:528.375000px;}
.ybe{bottom:529.815000px;}
.yf0{bottom:530.175000px;}
.y9b{bottom:530.355000px;}
.y7f{bottom:533.055000px;}
.y4e{bottom:542.415000px;}
.yef{bottom:544.935000px;}
.y27{bottom:545.655000px;}
.ybd{bottom:547.095000px;}
.y9a{bottom:547.635000px;}
.y7e{bottom:550.335000px;}
.y4d{bottom:559.695000px;}
.y26{bottom:562.935000px;}
.ybc{bottom:564.195000px;}
.y99{bottom:564.915000px;}
.y7d{bottom:567.435000px;}
.yee{bottom:574.815000px;}
.y4c{bottom:576.975000px;}
.y98{bottom:578.955000px;}
.y25{bottom:580.215000px;}
.ybb{bottom:581.475000px;}
.y7c{bottom:584.715000px;}
.y4b{bottom:594.255000px;}
.y24{bottom:597.495000px;}
.yba{bottom:598.755000px;}
.y7b{bottom:601.995000px;}
.yed{bottom:604.905000px;}
.y4a{bottom:611.565000px;}
.y23{bottom:614.625000px;}
.yb9{bottom:616.065000px;}
.y7a{bottom:619.305000px;}
.y49{bottom:628.845000px;}
.y22{bottom:631.905000px;}
.yb8{bottom:634.425000px;}
.y79{bottom:636.585000px;}
.yec{bottom:638.025000px;}
.y48{bottom:645.945000px;}
.y21{bottom:649.185000px;}
.yb7{bottom:651.705000px;}
.yeb{bottom:652.785000px;}
.y78{bottom:653.685000px;}
.y47{bottom:660.165000px;}
.y20{bottom:666.465000px;}
.yb6{bottom:668.805000px;}
.y77{bottom:670.965000px;}
.yea{bottom:682.845000px;}
.y1f{bottom:683.745000px;}
.yb5{bottom:687.165000px;}
.y76{bottom:688.245000px;}
.y1e{bottom:701.025000px;}
.yb4{bottom:704.445000px;}
.y75{bottom:705.525000px;}
.ye9{bottom:716.145000px;}
.y1d{bottom:718.125000px;}
.yb3{bottom:721.725000px;}
.y74{bottom:722.805000px;}
.ye7{bottom:730.905000px;}
.y1c{bottom:735.405000px;}
.y73{bottom:740.085000px;}
.y1b{bottom:752.685000px;}
.y72{bottom:757.185000px;}
.ye6{bottom:760.785000px;}
.y1a{bottom:769.965000px;}
.y71{bottom:774.465000px;}
.y19{bottom:787.245000px;}
.ye4{bottom:790.845000px;}
.y70{bottom:791.745000px;}
.y18{bottom:804.345000px;}
.y6f{bottom:809.025000px;}
.y17{bottom:821.625000px;}
.ye3{bottom:824.145000px;}
.y6e{bottom:826.305000px;}
.y16{bottom:839.985000px;}
.ye2{bottom:841.425000px;}
.y6d{bottom:843.585000px;}
.y15{bottom:857.805000px;}
.ye1{bottom:858.525000px;}
.y6c{bottom:860.685000px;}
.ye0{bottom:875.850000px;}
.y14{bottom:876.750000px;}
.y6b{bottom:878.010000px;}
.ydf{bottom:893.130000px;}
.y6a{bottom:895.290000px;}
.y13{bottom:895.650000px;}
.yde{bottom:910.410000px;}
.y69{bottom:912.570000px;}
.y12{bottom:914.730000px;}
.ydd{bottom:927.690000px;}
.y68{bottom:929.850000px;}
.y11{bottom:933.630000px;}
.ydc{bottom:946.050000px;}
.y46{bottom:947.130000px;}
.y10{bottom:952.710000px;}
.ydb{bottom:963.150000px;}
.y45{bottom:964.230000px;}
.yf{bottom:971.250000px;}
.yda{bottom:980.430000px;}
.y44{bottom:981.510000px;}
.ye{bottom:989.070000px;}
.yd9{bottom:997.710000px;}
.y43{bottom:998.790000px;}
.yd{bottom:1009.770000px;}
.yd8{bottom:1014.990000px;}
.y42{bottom:1016.070000px;}
.yc{bottom:1030.470000px;}
.yd7{bottom:1032.270000px;}
.y41{bottom:1033.350000px;}
.y9{bottom:1051.710000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1087.890000px;}
.y6{bottom:1105.890000px;}
.y5{bottom:1122.630000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hc{height:29.160000px;}
.hb{height:29.340000px;}
.hd{height:29.376000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.h9{height:45.024258px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.he{height:48.027656px;}
.hf{height:49.255313px;}
.h4{height:50.800781px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:97.920000px;}
.w10{width:98.100000px;}
.wc{width:98.136000px;}
.w8{width:113.400000px;}
.w7{width:113.436000px;}
.wf{width:113.796000px;}
.w6{width:127.080000px;}
.wd{width:128.736000px;}
.wb{width:152.100000px;}
.wa{width:152.130000px;}
.w4{width:156.240000px;}
.w9{width:182.730000px;}
.w3{width:193.350000px;}
.w5{width:341.175000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x1a{left:100.476000px;}
.x2{left:108.035987px;}
.xf{left:116.135987px;}
.xc{left:121.535987px;}
.x1{left:129.995987px;}
.x18{left:135.035987px;}
.x8{left:144.755987px;}
.x5{left:157.169987px;}
.x13{left:162.029987px;}
.x9{left:208.829987px;}
.x1f{left:228.090000px;}
.x23{left:253.110000px;}
.x1c{left:294.555000px;}
.x28{left:301.574987px;}
.x1e{left:307.334987px;}
.x17{left:312.014987px;}
.xa{left:315.614987px;}
.x10{left:320.834987px;}
.x20{left:342.435000px;}
.x19{left:346.394987px;}
.xe{left:349.994987px;}
.x24{left:351.975000px;}
.x2a{left:362.414987px;}
.x14{left:363.854987px;}
.xb{left:371.054987px;}
.x15{left:384.554987px;}
.x7{left:386.354987px;}
.x2b{left:395.714987px;}
.x12{left:398.954987px;}
.x29{left:400.754987px;}
.x6{left:412.274987px;}
.xd{left:424.154987px;}
.x3{left:446.474987px;}
.x1d{left:451.515000px;}
.x21{left:456.735000px;}
.x25{left:481.425000px;}
.x4{left:518.504987px;}
.x26{left:580.065000px;}
.x22{left:640.365000px;}
.x11{left:690.989987px;}
.x27{left:694.590000px;}
.x16{left:754.889987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:11.680000pt;}
.lsa{letter-spacing:19.152640pt;}
.ls6{letter-spacing:40.891307pt;}
.ls7{letter-spacing:56.891307pt;}
.ws5{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.870933pt;}
.ws2{word-spacing:-12.000000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._15{margin-left:-7.286613pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._5{width:2.397013pt;}
._2{width:3.520853pt;}
._6{width:5.050667pt;}
._b{width:6.249173pt;}
._7{width:7.323733pt;}
._a{width:8.924160pt;}
._d{width:9.979733pt;}
._c{width:10.889600pt;}
._f{width:12.111360pt;}
._e{width:14.183040pt;}
._9{width:15.982293pt;}
._8{width:16.945280pt;}
._13{width:18.957013pt;}
._14{width:20.017280pt;}
._10{width:21.347413pt;}
._12{width:29.209173pt;}
._11{width:30.172160pt;}
._4{width:76.138667pt;}
._3{width:610.938667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:13.440000pt;}
.ye5{bottom:13.600000pt;}
.yb{bottom:31.200000pt;}
.ya{bottom:44.960000pt;}
.y67{bottom:98.912000pt;}
.y40{bottom:99.392000pt;}
.yd6{bottom:100.992000pt;}
.y108{bottom:103.232000pt;}
.y97{bottom:105.792000pt;}
.y66{bottom:114.272000pt;}
.y3f{bottom:114.752000pt;}
.yd5{bottom:116.352000pt;}
.y107{bottom:118.592000pt;}
.yb2{bottom:118.752000pt;}
.y96{bottom:121.152000pt;}
.y65{bottom:129.472000pt;}
.y3e{bottom:130.112000pt;}
.yd4{bottom:131.712000pt;}
.y106{bottom:133.786667pt;}
.yb1{bottom:134.106667pt;}
.y95{bottom:136.506667pt;}
.y64{bottom:144.826667pt;}
.y3d{bottom:145.306667pt;}
.yd3{bottom:146.906667pt;}
.y105{bottom:149.146667pt;}
.yb0{bottom:149.466667pt;}
.y94{bottom:151.706667pt;}
.y63{bottom:160.186667pt;}
.y3c{bottom:160.666667pt;}
.yd2{bottom:162.266667pt;}
.y104{bottom:164.506667pt;}
.yaf{bottom:164.666667pt;}
.y93{bottom:167.066667pt;}
.y62{bottom:175.546667pt;}
.y3b{bottom:176.026667pt;}
.yd1{bottom:178.586667pt;}
.y103{bottom:179.866667pt;}
.yae{bottom:180.026667pt;}
.y92{bottom:182.426667pt;}
.y61{bottom:190.906667pt;}
.y3a{bottom:191.386667pt;}
.yd0{bottom:193.946667pt;}
.y102{bottom:195.226667pt;}
.yad{bottom:195.386667pt;}
.y91{bottom:197.786667pt;}
.y60{bottom:206.266667pt;}
.y39{bottom:206.746667pt;}
.ycf{bottom:209.306667pt;}
.y101{bottom:210.426667pt;}
.yac{bottom:210.746667pt;}
.y90{bottom:213.146667pt;}
.y5f{bottom:221.466667pt;}
.y38{bottom:221.946667pt;}
.yce{bottom:224.666667pt;}
.y100{bottom:225.786667pt;}
.yab{bottom:226.106667pt;}
.y8f{bottom:228.346667pt;}
.y5e{bottom:236.826667pt;}
.y37{bottom:237.306667pt;}
.ycd{bottom:239.866667pt;}
.yff{bottom:241.146667pt;}
.yaa{bottom:241.466667pt;}
.y8e{bottom:243.706667pt;}
.y5d{bottom:252.186667pt;}
.y36{bottom:252.666667pt;}
.ycc{bottom:256.186667pt;}
.yfe{bottom:256.506667pt;}
.ya9{bottom:256.666667pt;}
.y8d{bottom:259.066667pt;}
.y5c{bottom:267.546667pt;}
.y35{bottom:268.026667pt;}
.ycb{bottom:271.546667pt;}
.yfd{bottom:271.866667pt;}
.ya8{bottom:272.026667pt;}
.y8c{bottom:274.426667pt;}
.y5b{bottom:282.906667pt;}
.y34{bottom:283.386667pt;}
.yca{bottom:286.906667pt;}
.yfc{bottom:287.226667pt;}
.ya7{bottom:287.386667pt;}
.y8b{bottom:289.786667pt;}
.y5a{bottom:298.266667pt;}
.y33{bottom:298.746667pt;}
.yc9{bottom:302.306667pt;}
.yfb{bottom:302.466667pt;}
.ya6{bottom:302.786667pt;}
.y8a{bottom:305.186667pt;}
.y59{bottom:313.506667pt;}
.y32{bottom:313.986667pt;}
.yc8{bottom:317.666667pt;}
.yfa{bottom:317.826667pt;}
.ya5{bottom:318.146667pt;}
.y89{bottom:320.386667pt;}
.y58{bottom:328.866667pt;}
.y31{bottom:329.346667pt;}
.yc7{bottom:332.866667pt;}
.yf9{bottom:333.186667pt;}
.ya4{bottom:333.506667pt;}
.y88{bottom:335.746667pt;}
.y57{bottom:344.226667pt;}
.y30{bottom:344.706667pt;}
.yc6{bottom:348.226667pt;}
.yf8{bottom:348.546667pt;}
.ya3{bottom:348.706667pt;}
.y87{bottom:351.106667pt;}
.y56{bottom:359.586667pt;}
.y2f{bottom:360.066667pt;}
.yc5{bottom:363.586667pt;}
.yf7{bottom:363.906667pt;}
.ya2{bottom:364.066667pt;}
.y86{bottom:366.466667pt;}
.y55{bottom:374.946667pt;}
.y2e{bottom:375.426667pt;}
.yc4{bottom:378.946667pt;}
.yf6{bottom:379.266667pt;}
.ya1{bottom:379.426667pt;}
.y85{bottom:381.826667pt;}
.y54{bottom:390.306667pt;}
.y2d{bottom:390.786667pt;}
.yc3{bottom:394.306667pt;}
.yf5{bottom:394.466667pt;}
.ya0{bottom:394.786667pt;}
.y84{bottom:397.186667pt;}
.y53{bottom:405.506667pt;}
.y2c{bottom:405.986667pt;}
.yc2{bottom:409.506667pt;}
.yf4{bottom:409.826667pt;}
.y9f{bottom:410.146667pt;}
.y83{bottom:412.386667pt;}
.y52{bottom:420.866667pt;}
.y2b{bottom:423.746667pt;}
.yc1{bottom:424.866667pt;}
.yf3{bottom:425.186667pt;}
.y9e{bottom:425.346667pt;}
.y82{bottom:427.746667pt;}
.y51{bottom:436.226667pt;}
.y2a{bottom:439.106667pt;}
.yc0{bottom:440.226667pt;}
.yf2{bottom:440.546667pt;}
.y9d{bottom:440.706667pt;}
.y81{bottom:443.106667pt;}
.y50{bottom:451.586667pt;}
.y29{bottom:454.306667pt;}
.ybf{bottom:455.586667pt;}
.yf1{bottom:455.906667pt;}
.y9c{bottom:456.066667pt;}
.y80{bottom:458.466667pt;}
.y4f{bottom:466.946667pt;}
.y28{bottom:469.666667pt;}
.ybe{bottom:470.946667pt;}
.yf0{bottom:471.266667pt;}
.y9b{bottom:471.426667pt;}
.y7f{bottom:473.826667pt;}
.y4e{bottom:482.146667pt;}
.yef{bottom:484.386667pt;}
.y27{bottom:485.026667pt;}
.ybd{bottom:486.306667pt;}
.y9a{bottom:486.786667pt;}
.y7e{bottom:489.186667pt;}
.y4d{bottom:497.506667pt;}
.y26{bottom:500.386667pt;}
.ybc{bottom:501.506667pt;}
.y99{bottom:502.146667pt;}
.y7d{bottom:504.386667pt;}
.yee{bottom:510.946667pt;}
.y4c{bottom:512.866667pt;}
.y98{bottom:514.626667pt;}
.y25{bottom:515.746667pt;}
.ybb{bottom:516.866667pt;}
.y7c{bottom:519.746667pt;}
.y4b{bottom:528.226667pt;}
.y24{bottom:531.106667pt;}
.yba{bottom:532.226667pt;}
.y7b{bottom:535.106667pt;}
.yed{bottom:537.693333pt;}
.y4a{bottom:543.613333pt;}
.y23{bottom:546.333333pt;}
.yb9{bottom:547.613333pt;}
.y7a{bottom:550.493333pt;}
.y49{bottom:558.973333pt;}
.y22{bottom:561.693333pt;}
.yb8{bottom:563.933333pt;}
.y79{bottom:565.853333pt;}
.yec{bottom:567.133333pt;}
.y48{bottom:574.173333pt;}
.y21{bottom:577.053333pt;}
.yb7{bottom:579.293333pt;}
.yeb{bottom:580.253333pt;}
.y78{bottom:581.053333pt;}
.y47{bottom:586.813333pt;}
.y20{bottom:592.413333pt;}
.yb6{bottom:594.493333pt;}
.y77{bottom:596.413333pt;}
.yea{bottom:606.973333pt;}
.y1f{bottom:607.773333pt;}
.yb5{bottom:610.813333pt;}
.y76{bottom:611.773333pt;}
.y1e{bottom:623.133333pt;}
.yb4{bottom:626.173333pt;}
.y75{bottom:627.133333pt;}
.ye9{bottom:636.573333pt;}
.y1d{bottom:638.333333pt;}
.yb3{bottom:641.533333pt;}
.y74{bottom:642.493333pt;}
.ye7{bottom:649.693333pt;}
.y1c{bottom:653.693333pt;}
.y73{bottom:657.853333pt;}
.y1b{bottom:669.053333pt;}
.y72{bottom:673.053333pt;}
.ye6{bottom:676.253333pt;}
.y1a{bottom:684.413333pt;}
.y71{bottom:688.413333pt;}
.y19{bottom:699.773333pt;}
.ye4{bottom:702.973333pt;}
.y70{bottom:703.773333pt;}
.y18{bottom:714.973333pt;}
.y6f{bottom:719.133333pt;}
.y17{bottom:730.333333pt;}
.ye3{bottom:732.573333pt;}
.y6e{bottom:734.493333pt;}
.y16{bottom:746.653333pt;}
.ye2{bottom:747.933333pt;}
.y6d{bottom:749.853333pt;}
.y15{bottom:762.493333pt;}
.ye1{bottom:763.133333pt;}
.y6c{bottom:765.053333pt;}
.ye0{bottom:778.533333pt;}
.y14{bottom:779.333333pt;}
.y6b{bottom:780.453333pt;}
.ydf{bottom:793.893333pt;}
.y6a{bottom:795.813333pt;}
.y13{bottom:796.133333pt;}
.yde{bottom:809.253333pt;}
.y69{bottom:811.173333pt;}
.y12{bottom:813.093333pt;}
.ydd{bottom:824.613333pt;}
.y68{bottom:826.533333pt;}
.y11{bottom:829.893333pt;}
.ydc{bottom:840.933333pt;}
.y46{bottom:841.893333pt;}
.y10{bottom:846.853333pt;}
.ydb{bottom:856.133333pt;}
.y45{bottom:857.093333pt;}
.yf{bottom:863.333333pt;}
.yda{bottom:871.493333pt;}
.y44{bottom:872.453333pt;}
.ye{bottom:879.173333pt;}
.yd9{bottom:886.853333pt;}
.y43{bottom:887.813333pt;}
.yd{bottom:897.573333pt;}
.yd8{bottom:902.213333pt;}
.y42{bottom:903.173333pt;}
.yc{bottom:915.973333pt;}
.yd7{bottom:917.573333pt;}
.y41{bottom:918.533333pt;}
.y9{bottom:934.853333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.013333pt;}
.y6{bottom:983.013333pt;}
.y5{bottom:997.893333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hc{height:25.920000pt;}
.hb{height:26.080000pt;}
.hd{height:26.112000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.h9{height:40.021563pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.he{height:42.691250pt;}
.hf{height:43.782500pt;}
.h4{height:45.156250pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:87.040000pt;}
.w10{width:87.200000pt;}
.wc{width:87.232000pt;}
.w8{width:100.800000pt;}
.w7{width:100.832000pt;}
.wf{width:101.152000pt;}
.w6{width:112.960000pt;}
.wd{width:114.432000pt;}
.wb{width:135.200000pt;}
.wa{width:135.226667pt;}
.w4{width:138.880000pt;}
.w9{width:162.426667pt;}
.w3{width:171.866667pt;}
.w5{width:303.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x1a{left:89.312000pt;}
.x2{left:96.031988pt;}
.xf{left:103.231988pt;}
.xc{left:108.031988pt;}
.x1{left:115.551988pt;}
.x18{left:120.031988pt;}
.x8{left:128.671988pt;}
.x5{left:139.706655pt;}
.x13{left:144.026655pt;}
.x9{left:185.626655pt;}
.x1f{left:202.746667pt;}
.x23{left:224.986667pt;}
.x1c{left:261.826667pt;}
.x28{left:268.066655pt;}
.x1e{left:273.186655pt;}
.x17{left:277.346655pt;}
.xa{left:280.546655pt;}
.x10{left:285.186655pt;}
.x20{left:304.386667pt;}
.x19{left:307.906655pt;}
.xe{left:311.106655pt;}
.x24{left:312.866667pt;}
.x2a{left:322.146655pt;}
.x14{left:323.426655pt;}
.xb{left:329.826655pt;}
.x15{left:341.826655pt;}
.x7{left:343.426655pt;}
.x2b{left:351.746655pt;}
.x12{left:354.626655pt;}
.x29{left:356.226655pt;}
.x6{left:366.466655pt;}
.xd{left:377.026655pt;}
.x3{left:396.866655pt;}
.x1d{left:401.346667pt;}
.x21{left:405.986667pt;}
.x25{left:427.933333pt;}
.x4{left:460.893322pt;}
.x26{left:515.613333pt;}
.x22{left:569.213333pt;}
.x11{left:614.213322pt;}
.x27{left:617.413333pt;}
.x16{left:671.013322pt;}
}




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