
    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_888f216c8795ff2b69cb0e5e.woff2')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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_17f08e4478ef0f69a07c87cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_dcd47cef452e2fd75c7b1432.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fb95f847194d0bbbbe904054.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_46d59324f2666b31ef47d22c.woff2')format("woff");}.ff6{font-family:ff6;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: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;}
.m1{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.ls7{letter-spacing:-0.228000px;}
.lsf{letter-spacing:-0.058320px;}
.ls9{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.031680px;}
.ls2{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.198000px;}
.lse{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.433440px;}
.ls14{letter-spacing:0.479520px;}
.ls17{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.900000px;}
.ls13{letter-spacing:97.866720px;}
.ls12{letter-spacing:128.826720px;}
.lsd{letter-spacing:328.494240px;}
.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;}
}
.ws9{word-spacing:-16.488000px;}
.wsb{word-spacing:-14.165760px;}
.wsa{word-spacing:-13.862760px;}
.ws1{word-spacing:-13.692360px;}
.ws0{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.ws2{word-spacing:-13.277760px;}
.ws6{word-spacing:-12.564000px;}
.ws5{word-spacing:-12.402000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.186000px;}
.ws7{word-spacing:0.000000px;}
._15{margin-left:-3.575520px;}
._6{margin-left:-2.400480px;}
._1{margin-left:-1.010880px;}
._2{width:1.015920px;}
._d{width:2.644800px;}
._7{width:3.884400px;}
._8{width:4.957680px;}
._a{width:6.155280px;}
._9{width:7.290720px;}
._11{width:8.964000px;}
._5{width:10.159200px;}
._4{width:11.234880px;}
._19{width:12.250800px;}
._b{width:14.999760px;}
._12{width:16.194960px;}
._14{width:17.330400px;}
._c{width:18.943920px;}
._2a{width:20.318400px;}
._e{width:21.334320px;}
._13{width:22.888080px;}
._3d{width:23.904000px;}
._1d{width:24.930000px;}
._10{width:25.990560px;}
._f{width:27.011520px;}
._26{width:28.728000px;}
._18{width:29.934720px;}
._17{width:30.955680px;}
._22{width:32.628960px;}
._16{width:34.601040px;}
._1f{width:36.334080px;}
._2f{width:37.529280px;}
._3a{width:38.545200px;}
._34{width:40.098960px;}
._33{width:41.413680px;}
._30{width:42.608880px;}
._1e{width:44.043120px;}
._41{width:45.213120px;}
._39{width:46.604160px;}
._1a{width:48.345840px;}
._40{width:50.019120px;}
._20{width:51.931440px;}
._21{width:52.947360px;}
._1b{width:53.963280px;}
._35{width:55.935360px;}
._58{width:57.011040px;}
._2b{width:58.026960px;}
._32{width:59.700240px;}
._38{width:61.612560px;}
._37{width:62.748000px;}
._3b{width:64.002960px;}
._3e{width:65.138400px;}
._2e{width:66.214080px;}
._45{width:67.978080px;}
._44{width:69.290640px;}
._3{width:72.201360px;}
._3c{width:74.580480px;}
._31{width:75.954960px;}
._2d{width:77.448960px;}
._2c{width:78.763680px;}
._52{width:81.512640px;}
._36{width:82.946880px;}
._4d{width:86.652000px;}
._4f{width:88.179120px;}
._65{width:90.416880px;}
._4a{width:91.612080px;}
._43{width:96.273360px;}
._48{width:99.918720px;}
._49{width:101.054160px;}
._3f{width:103.086000px;}
._4c{width:108.876240px;}
._25{width:113.832000px;}
._24{width:115.058880px;}
._60{width:120.416400px;}
._5f{width:121.492080px;}
._1c{width:123.942240px;}
._55{width:129.858480px;}
._50{width:137.328480px;}
._56{width:141.631200px;}
._57{width:142.647120px;}
._4b{width:146.348640px;}
._59{width:154.778400px;}
._23{width:158.004000px;}
._53{width:159.439680px;}
._5d{width:177.367680px;}
._54{width:187.706160px;}
._42{width:202.885200px;}
._61{width:209.279520px;}
._5b{width:235.095840px;}
._63{width:240.713280px;}
._62{width:241.908480px;}
._66{width:276.390000px;}
._4e{width:283.740480px;}
._47{width:316.548720px;}
._5e{width:336.741120px;}
._64{width:345.134640px;}
._51{width:462.124080px;}
._5a{width:530.967600px;}
._5c{width:609.910560px;}
._46{width:641.463840px;}
._27{width:850.395120px;}
._29{width:1059.923040px;}
._28{width:1417.176000px;}
._0{width:1431.065760px;}
.fc6{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.209413px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y5a{bottom:-1124.100000px;}
.y0{bottom:0.000000px;}
.y58{bottom:0.000092px;}
.y5f{bottom:3.060000px;}
.yd{bottom:3.960000px;}
.y57{bottom:20.700000px;}
.y28{bottom:22.365000px;}
.y56{bottom:38.520000px;}
.y27{bottom:40.725000px;}
.y55{bottom:56.340000px;}
.y3{bottom:56.520000px;}
.y5d{bottom:57.060000px;}
.y26{bottom:58.905000px;}
.y5e{bottom:71.820000px;}
.y54{bottom:73.980000px;}
.y25{bottom:77.265000px;}
.y39{bottom:88.560000px;}
.y53{bottom:91.800000px;}
.y24{bottom:95.625000px;}
.y38{bottom:106.920000px;}
.y52{bottom:109.620000px;}
.y23{bottom:113.985000px;}
.y37{bottom:125.100000px;}
.yc2{bottom:126.360000px;}
.y51{bottom:127.440000px;}
.y22{bottom:132.165000px;}
.yf5{bottom:133.020000px;}
.y97{bottom:133.920000px;}
.y36{bottom:143.460000px;}
.y50{bottom:145.260000px;}
.yc1{bottom:146.160000px;}
.y21{bottom:150.525000px;}
.y96{bottom:152.130000px;}
.yf4{bottom:152.850000px;}
.y35{bottom:161.850000px;}
.y4f{bottom:162.900000px;}
.yc0{bottom:165.990000px;}
.y20{bottom:168.885000px;}
.y95{bottom:170.490000px;}
.yf3{bottom:172.650000px;}
.y34{bottom:180.210000px;}
.y4e{bottom:180.720000px;}
.ybf{bottom:185.790000px;}
.y1f{bottom:187.245000px;}
.y94{bottom:188.850000px;}
.yf2{bottom:192.450000px;}
.y33{bottom:198.390000px;}
.y4d{bottom:198.540000px;}
.ybe{bottom:205.410000px;}
.y1e{bottom:205.425000px;}
.y93{bottom:207.030000px;}
.yf1{bottom:212.250000px;}
.y32{bottom:216.750000px;}
.y1d{bottom:223.785000px;}
.y4c{bottom:225.180000px;}
.ybd{bottom:225.210000px;}
.y92{bottom:225.390000px;}
.yf0{bottom:231.870000px;}
.y31{bottom:235.110000px;}
.y1c{bottom:242.145000px;}
.y91{bottom:243.750000px;}
.ybc{bottom:245.010000px;}
.yef{bottom:251.670000px;}
.y30{bottom:253.290000px;}
.y1b{bottom:260.355000px;}
.y90{bottom:262.110000px;}
.ybb{bottom:264.810000px;}
.yee{bottom:271.470000px;}
.y2f{bottom:271.650000px;}
.y1a{bottom:278.715000px;}
.y8f{bottom:280.290000px;}
.yba{bottom:284.430000px;}
.y2e{bottom:290.010000px;}
.yed{bottom:291.270000px;}
.y4b{bottom:296.310000px;}
.y19{bottom:297.075000px;}
.y8e{bottom:298.650000px;}
.yb9{bottom:304.230000px;}
.y2d{bottom:308.370000px;}
.yec{bottom:310.890000px;}
.y18{bottom:315.435000px;}
.y8d{bottom:317.010000px;}
.yb8{bottom:324.030000px;}
.y4a{bottom:326.190000px;}
.y2c{bottom:326.550000px;}
.yeb{bottom:330.690000px;}
.y17{bottom:333.615000px;}
.y8c{bottom:335.370000px;}
.yb7{bottom:343.830000px;}
.y2b{bottom:344.910000px;}
.yea{bottom:350.490000px;}
.y16{bottom:351.975000px;}
.y8b{bottom:353.550000px;}
.y49{bottom:355.890000px;}
.y2a{bottom:363.270000px;}
.yb6{bottom:363.630000px;}
.ye9{bottom:370.290000px;}
.y15{bottom:370.335000px;}
.y8a{bottom:371.910000px;}
.y48{bottom:372.270000px;}
.y29{bottom:381.630000px;}
.yb5{bottom:383.250000px;}
.y14{bottom:388.515000px;}
.y47{bottom:388.830000px;}
.ye8{bottom:390.090000px;}
.y89{bottom:390.270000px;}
.y59{bottom:392.049900px;}
.ye{bottom:395.850000px;}
.y3a{bottom:401.115000px;}
.yb4{bottom:403.095000px;}
.y46{bottom:405.210000px;}
.y13{bottom:406.875000px;}
.y88{bottom:408.495000px;}
.ye7{bottom:409.755000px;}
.y45{bottom:421.770000px;}
.yb3{bottom:422.895000px;}
.y12{bottom:425.235000px;}
.y87{bottom:426.855000px;}
.ye6{bottom:429.555000px;}
.y44{bottom:438.150000px;}
.yb2{bottom:442.695000px;}
.y11{bottom:443.595000px;}
.y86{bottom:445.215000px;}
.ye5{bottom:449.355000px;}
.y10{bottom:461.775000px;}
.yb1{bottom:462.315000px;}
.y43{bottom:463.530000px;}
.y85{bottom:463.575000px;}
.ye4{bottom:469.155000px;}
.yf{bottom:480.135000px;}
.y84{bottom:481.755000px;}
.yb0{bottom:482.115000px;}
.ye3{bottom:488.775000px;}
.y42{bottom:493.590000px;}
.y83{bottom:500.115000px;}
.yaf{bottom:501.915000px;}
.ye2{bottom:508.575000px;}
.y82{bottom:518.475000px;}
.yae{bottom:521.715000px;}
.y41{bottom:523.335000px;}
.ye1{bottom:528.375000px;}
.y81{bottom:536.655000px;}
.y40{bottom:540.975000px;}
.yad{bottom:541.515000px;}
.ye0{bottom:548.175000px;}
.y80{bottom:555.015000px;}
.y3f{bottom:558.795000px;}
.yac{bottom:561.135000px;}
.ydf{bottom:567.975000px;}
.y7f{bottom:573.375000px;}
.y3e{bottom:576.615000px;}
.yab{bottom:580.935000px;}
.yde{bottom:587.595000px;}
.y7e{bottom:591.735000px;}
.y3d{bottom:594.435000px;}
.yaa{bottom:600.735000px;}
.ydd{bottom:607.395000px;}
.y7d{bottom:609.915000px;}
.y3c{bottom:612.075000px;}
.ya9{bottom:620.535000px;}
.ydc{bottom:627.195000px;}
.y7c{bottom:628.275000px;}
.y3b{bottom:637.995000px;}
.ya8{bottom:640.155000px;}
.y7b{bottom:646.635000px;}
.ydb{bottom:646.995000px;}
.ya7{bottom:659.985000px;}
.y7a{bottom:665.025000px;}
.yda{bottom:666.645000px;}
.ya6{bottom:679.785000px;}
.y79{bottom:683.205000px;}
.yd9{bottom:686.445000px;}
.ya5{bottom:699.585000px;}
.y78{bottom:701.565000px;}
.yd8{bottom:706.245000px;}
.ya4{bottom:719.385000px;}
.y77{bottom:719.925000px;}
.yd7{bottom:726.045000px;}
.y76{bottom:738.105000px;}
.ya3{bottom:739.005000px;}
.yd6{bottom:745.845000px;}
.y75{bottom:756.465000px;}
.ya2{bottom:758.805000px;}
.yd5{bottom:765.465000px;}
.y74{bottom:774.825000px;}
.ya1{bottom:778.605000px;}
.yd4{bottom:785.265000px;}
.y73{bottom:793.185000px;}
.ya0{bottom:798.405000px;}
.yd3{bottom:805.065000px;}
.y72{bottom:811.365000px;}
.y9f{bottom:818.025000px;}
.yd2{bottom:824.865000px;}
.y71{bottom:829.725000px;}
.y9e{bottom:837.825000px;}
.yd1{bottom:844.485000px;}
.y70{bottom:848.085000px;}
.y9d{bottom:857.625000px;}
.yd0{bottom:864.285000px;}
.y6f{bottom:866.445000px;}
.y9c{bottom:877.425000px;}
.ycf{bottom:884.085000px;}
.y6e{bottom:884.625000px;}
.yc{bottom:890.385000px;}
.y9b{bottom:897.225000px;}
.y6d{bottom:903.030000px;}
.yce{bottom:903.930000px;}
.yb{bottom:913.290000px;}
.y9a{bottom:916.890000px;}
.y6c{bottom:921.390000px;}
.ycd{bottom:923.730000px;}
.ya{bottom:932.730000px;}
.y99{bottom:936.690000px;}
.y6b{bottom:939.570000px;}
.ycc{bottom:943.350000px;}
.y9{bottom:951.270000px;}
.y98{bottom:956.490000px;}
.y6a{bottom:957.930000px;}
.ycb{bottom:963.150000px;}
.y8{bottom:973.230000px;}
.y69{bottom:976.290000px;}
.yca{bottom:982.950000px;}
.y7{bottom:991.410000px;}
.y68{bottom:994.650000px;}
.yc9{bottom:1002.750000px;}
.y6{bottom:1011.390000px;}
.y67{bottom:1012.830000px;}
.yc8{bottom:1022.370000px;}
.y66{bottom:1031.190000px;}
.y5{bottom:1037.130000px;}
.yc7{bottom:1042.170000px;}
.y65{bottom:1049.550000px;}
.y4{bottom:1061.610000px;}
.yc6{bottom:1061.970000px;}
.y64{bottom:1067.910000px;}
.yc5{bottom:1081.770000px;}
.y2{bottom:1082.310000px;}
.y63{bottom:1086.090000px;}
.yc4{bottom:1101.570000px;}
.y1{bottom:1102.110000px;}
.y62{bottom:1104.450000px;}
.yc3{bottom:1121.190000px;}
.y61{bottom:1122.810000px;}
.y60{bottom:1140.990000px;}
.y5c{bottom:1159.020000px;}
.y5b{bottom:1175.940000px;}
.h7{height:18.396000px;}
.hf{height:20.160000px;}
.h3{height:47.415937px;}
.hc{height:47.980898px;}
.hb{height:53.709961px;}
.ha{height:55.291992px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.he{height:65.853796px;}
.h2{height:65.884219px;}
.h10{height:73.722656px;}
.h4{height:86.255508px;}
.hd{height:407.882586px;}
.h8{height:494.535000px;}
.h9{height:652.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:49.500000px;}
.w4{width:216.750000px;}
.w5{width:254.694110px;}
.w3{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x6{left:10.800000px;}
.x1{left:84.995987px;}
.xa{left:145.655987px;}
.x7{left:202.005000px;}
.x9{left:265.575000px;}
.x4{left:473.144987px;}
.x5{left:586.545000px;}
.x8{left:597.314959px;}
.xb{left:756.330000px;}
.x2{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.202667pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.028160pt;}
.ls2{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.385280pt;}
.ls14{letter-spacing:0.426240pt;}
.ls17{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.800000pt;}
.ls13{letter-spacing:86.992640pt;}
.ls12{letter-spacing:114.512640pt;}
.lsd{letter-spacing:291.994880pt;}
.ws9{word-spacing:-14.656000pt;}
.wsb{word-spacing:-12.591787pt;}
.wsa{word-spacing:-12.322453pt;}
.ws1{word-spacing:-12.170987pt;}
.ws0{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.ws2{word-spacing:-11.802453pt;}
.ws6{word-spacing:-11.168000pt;}
.ws5{word-spacing:-11.024000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.832000pt;}
.ws7{word-spacing:0.000000pt;}
._15{margin-left:-3.178240pt;}
._6{margin-left:-2.133760pt;}
._1{margin-left:-0.898560pt;}
._2{width:0.903040pt;}
._d{width:2.350933pt;}
._7{width:3.452800pt;}
._8{width:4.406827pt;}
._a{width:5.471360pt;}
._9{width:6.480640pt;}
._11{width:7.968000pt;}
._5{width:9.030400pt;}
._4{width:9.986560pt;}
._19{width:10.889600pt;}
._b{width:13.333120pt;}
._12{width:14.395520pt;}
._14{width:15.404800pt;}
._c{width:16.839040pt;}
._2a{width:18.060800pt;}
._e{width:18.963840pt;}
._13{width:20.344960pt;}
._3d{width:21.248000pt;}
._1d{width:22.160000pt;}
._10{width:23.102720pt;}
._f{width:24.010240pt;}
._26{width:25.536000pt;}
._18{width:26.608640pt;}
._17{width:27.516160pt;}
._22{width:29.003520pt;}
._16{width:30.756480pt;}
._1f{width:32.296960pt;}
._2f{width:33.359360pt;}
._3a{width:34.262400pt;}
._34{width:35.643520pt;}
._33{width:36.812160pt;}
._30{width:37.874560pt;}
._1e{width:39.149440pt;}
._41{width:40.189440pt;}
._39{width:41.425920pt;}
._1a{width:42.974080pt;}
._40{width:44.461440pt;}
._20{width:46.161280pt;}
._21{width:47.064320pt;}
._1b{width:47.967360pt;}
._35{width:49.720320pt;}
._58{width:50.676480pt;}
._2b{width:51.579520pt;}
._32{width:53.066880pt;}
._38{width:54.766720pt;}
._37{width:55.776000pt;}
._3b{width:56.891520pt;}
._3e{width:57.900800pt;}
._2e{width:58.856960pt;}
._45{width:60.424960pt;}
._44{width:61.591680pt;}
._3{width:64.178987pt;}
._3c{width:66.293760pt;}
._31{width:67.515520pt;}
._2d{width:68.843520pt;}
._2c{width:70.012160pt;}
._52{width:72.455680pt;}
._36{width:73.730560pt;}
._4d{width:77.024000pt;}
._4f{width:78.381440pt;}
._65{width:80.370560pt;}
._4a{width:81.432960pt;}
._43{width:85.576320pt;}
._48{width:88.816640pt;}
._49{width:89.825920pt;}
._3f{width:91.632000pt;}
._4c{width:96.778880pt;}
._25{width:101.184000pt;}
._24{width:102.274560pt;}
._60{width:107.036800pt;}
._5f{width:107.992960pt;}
._1c{width:110.170880pt;}
._55{width:115.429760pt;}
._50{width:122.069760pt;}
._56{width:125.894400pt;}
._57{width:126.797440pt;}
._4b{width:130.087680pt;}
._59{width:137.580800pt;}
._23{width:140.448000pt;}
._53{width:141.724160pt;}
._5d{width:157.660160pt;}
._54{width:166.849920pt;}
._42{width:180.342400pt;}
._61{width:186.026240pt;}
._5b{width:208.974080pt;}
._63{width:213.967360pt;}
._62{width:215.029760pt;}
._66{width:245.680000pt;}
._4e{width:252.213760pt;}
._47{width:281.376640pt;}
._5e{width:299.325440pt;}
._64{width:306.786347pt;}
._51{width:410.776960pt;}
._5a{width:471.971200pt;}
._5c{width:542.142720pt;}
._46{width:570.190080pt;}
._27{width:755.906773pt;}
._29{width:942.153813pt;}
._28{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.852812pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y5a{bottom:-999.200000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:0.000081pt;}
.y5f{bottom:2.720000pt;}
.yd{bottom:3.520000pt;}
.y57{bottom:18.400000pt;}
.y28{bottom:19.880000pt;}
.y56{bottom:34.240000pt;}
.y27{bottom:36.200000pt;}
.y55{bottom:50.080000pt;}
.y3{bottom:50.240000pt;}
.y5d{bottom:50.720000pt;}
.y26{bottom:52.360000pt;}
.y5e{bottom:63.840000pt;}
.y54{bottom:65.760000pt;}
.y25{bottom:68.680000pt;}
.y39{bottom:78.720000pt;}
.y53{bottom:81.600000pt;}
.y24{bottom:85.000000pt;}
.y38{bottom:95.040000pt;}
.y52{bottom:97.440000pt;}
.y23{bottom:101.320000pt;}
.y37{bottom:111.200000pt;}
.yc2{bottom:112.320000pt;}
.y51{bottom:113.280000pt;}
.y22{bottom:117.480000pt;}
.yf5{bottom:118.240000pt;}
.y97{bottom:119.040000pt;}
.y36{bottom:127.520000pt;}
.y50{bottom:129.120000pt;}
.yc1{bottom:129.920000pt;}
.y21{bottom:133.800000pt;}
.y96{bottom:135.226667pt;}
.yf4{bottom:135.866667pt;}
.y35{bottom:143.866667pt;}
.y4f{bottom:144.800000pt;}
.yc0{bottom:147.546667pt;}
.y20{bottom:150.120000pt;}
.y95{bottom:151.546667pt;}
.yf3{bottom:153.466667pt;}
.y34{bottom:160.186667pt;}
.y4e{bottom:160.640000pt;}
.ybf{bottom:165.146667pt;}
.y1f{bottom:166.440000pt;}
.y94{bottom:167.866667pt;}
.yf2{bottom:171.066667pt;}
.y33{bottom:176.346667pt;}
.y4d{bottom:176.480000pt;}
.ybe{bottom:182.586667pt;}
.y1e{bottom:182.600000pt;}
.y93{bottom:184.026667pt;}
.yf1{bottom:188.666667pt;}
.y32{bottom:192.666667pt;}
.y1d{bottom:198.920000pt;}
.y4c{bottom:200.160000pt;}
.ybd{bottom:200.186667pt;}
.y92{bottom:200.346667pt;}
.yf0{bottom:206.106667pt;}
.y31{bottom:208.986667pt;}
.y1c{bottom:215.240000pt;}
.y91{bottom:216.666667pt;}
.ybc{bottom:217.786667pt;}
.yef{bottom:223.706667pt;}
.y30{bottom:225.146667pt;}
.y1b{bottom:231.426667pt;}
.y90{bottom:232.986667pt;}
.ybb{bottom:235.386667pt;}
.yee{bottom:241.306667pt;}
.y2f{bottom:241.466667pt;}
.y1a{bottom:247.746667pt;}
.y8f{bottom:249.146667pt;}
.yba{bottom:252.826667pt;}
.y2e{bottom:257.786667pt;}
.yed{bottom:258.906667pt;}
.y4b{bottom:263.386667pt;}
.y19{bottom:264.066667pt;}
.y8e{bottom:265.466667pt;}
.yb9{bottom:270.426667pt;}
.y2d{bottom:274.106667pt;}
.yec{bottom:276.346667pt;}
.y18{bottom:280.386667pt;}
.y8d{bottom:281.786667pt;}
.yb8{bottom:288.026667pt;}
.y4a{bottom:289.946667pt;}
.y2c{bottom:290.266667pt;}
.yeb{bottom:293.946667pt;}
.y17{bottom:296.546667pt;}
.y8c{bottom:298.106667pt;}
.yb7{bottom:305.626667pt;}
.y2b{bottom:306.586667pt;}
.yea{bottom:311.546667pt;}
.y16{bottom:312.866667pt;}
.y8b{bottom:314.266667pt;}
.y49{bottom:316.346667pt;}
.y2a{bottom:322.906667pt;}
.yb6{bottom:323.226667pt;}
.ye9{bottom:329.146667pt;}
.y15{bottom:329.186667pt;}
.y8a{bottom:330.586667pt;}
.y48{bottom:330.906667pt;}
.y29{bottom:339.226667pt;}
.yb5{bottom:340.666667pt;}
.y14{bottom:345.346667pt;}
.y47{bottom:345.626667pt;}
.ye8{bottom:346.746667pt;}
.y89{bottom:346.906667pt;}
.y59{bottom:348.488800pt;}
.ye{bottom:351.866667pt;}
.y3a{bottom:356.546667pt;}
.yb4{bottom:358.306667pt;}
.y46{bottom:360.186667pt;}
.y13{bottom:361.666667pt;}
.y88{bottom:363.106667pt;}
.ye7{bottom:364.226667pt;}
.y45{bottom:374.906667pt;}
.yb3{bottom:375.906667pt;}
.y12{bottom:377.986667pt;}
.y87{bottom:379.426667pt;}
.ye6{bottom:381.826667pt;}
.y44{bottom:389.466667pt;}
.yb2{bottom:393.506667pt;}
.y11{bottom:394.306667pt;}
.y86{bottom:395.746667pt;}
.ye5{bottom:399.426667pt;}
.y10{bottom:410.466667pt;}
.yb1{bottom:410.946667pt;}
.y43{bottom:412.026667pt;}
.y85{bottom:412.066667pt;}
.ye4{bottom:417.026667pt;}
.yf{bottom:426.786667pt;}
.y84{bottom:428.226667pt;}
.yb0{bottom:428.546667pt;}
.ye3{bottom:434.466667pt;}
.y42{bottom:438.746667pt;}
.y83{bottom:444.546667pt;}
.yaf{bottom:446.146667pt;}
.ye2{bottom:452.066667pt;}
.y82{bottom:460.866667pt;}
.yae{bottom:463.746667pt;}
.y41{bottom:465.186667pt;}
.ye1{bottom:469.666667pt;}
.y81{bottom:477.026667pt;}
.y40{bottom:480.866667pt;}
.yad{bottom:481.346667pt;}
.ye0{bottom:487.266667pt;}
.y80{bottom:493.346667pt;}
.y3f{bottom:496.706667pt;}
.yac{bottom:498.786667pt;}
.ydf{bottom:504.866667pt;}
.y7f{bottom:509.666667pt;}
.y3e{bottom:512.546667pt;}
.yab{bottom:516.386667pt;}
.yde{bottom:522.306667pt;}
.y7e{bottom:525.986667pt;}
.y3d{bottom:528.386667pt;}
.yaa{bottom:533.986667pt;}
.ydd{bottom:539.906667pt;}
.y7d{bottom:542.146667pt;}
.y3c{bottom:544.066667pt;}
.ya9{bottom:551.586667pt;}
.ydc{bottom:557.506667pt;}
.y7c{bottom:558.466667pt;}
.y3b{bottom:567.106667pt;}
.ya8{bottom:569.026667pt;}
.y7b{bottom:574.786667pt;}
.ydb{bottom:575.106667pt;}
.ya7{bottom:586.653333pt;}
.y7a{bottom:591.133333pt;}
.yda{bottom:592.573333pt;}
.ya6{bottom:604.253333pt;}
.y79{bottom:607.293333pt;}
.yd9{bottom:610.173333pt;}
.ya5{bottom:621.853333pt;}
.y78{bottom:623.613333pt;}
.yd8{bottom:627.773333pt;}
.ya4{bottom:639.453333pt;}
.y77{bottom:639.933333pt;}
.yd7{bottom:645.373333pt;}
.y76{bottom:656.093333pt;}
.ya3{bottom:656.893333pt;}
.yd6{bottom:662.973333pt;}
.y75{bottom:672.413333pt;}
.ya2{bottom:674.493333pt;}
.yd5{bottom:680.413333pt;}
.y74{bottom:688.733333pt;}
.ya1{bottom:692.093333pt;}
.yd4{bottom:698.013333pt;}
.y73{bottom:705.053333pt;}
.ya0{bottom:709.693333pt;}
.yd3{bottom:715.613333pt;}
.y72{bottom:721.213333pt;}
.y9f{bottom:727.133333pt;}
.yd2{bottom:733.213333pt;}
.y71{bottom:737.533333pt;}
.y9e{bottom:744.733333pt;}
.yd1{bottom:750.653333pt;}
.y70{bottom:753.853333pt;}
.y9d{bottom:762.333333pt;}
.yd0{bottom:768.253333pt;}
.y6f{bottom:770.173333pt;}
.y9c{bottom:779.933333pt;}
.ycf{bottom:785.853333pt;}
.y6e{bottom:786.333333pt;}
.yc{bottom:791.453333pt;}
.y9b{bottom:797.533333pt;}
.y6d{bottom:802.693333pt;}
.yce{bottom:803.493333pt;}
.yb{bottom:811.813333pt;}
.y9a{bottom:815.013333pt;}
.y6c{bottom:819.013333pt;}
.ycd{bottom:821.093333pt;}
.ya{bottom:829.093333pt;}
.y99{bottom:832.613333pt;}
.y6b{bottom:835.173333pt;}
.ycc{bottom:838.533333pt;}
.y9{bottom:845.573333pt;}
.y98{bottom:850.213333pt;}
.y6a{bottom:851.493333pt;}
.ycb{bottom:856.133333pt;}
.y8{bottom:865.093333pt;}
.y69{bottom:867.813333pt;}
.yca{bottom:873.733333pt;}
.y7{bottom:881.253333pt;}
.y68{bottom:884.133333pt;}
.yc9{bottom:891.333333pt;}
.y6{bottom:899.013333pt;}
.y67{bottom:900.293333pt;}
.yc8{bottom:908.773333pt;}
.y66{bottom:916.613333pt;}
.y5{bottom:921.893333pt;}
.yc7{bottom:926.373333pt;}
.y65{bottom:932.933333pt;}
.y4{bottom:943.653333pt;}
.yc6{bottom:943.973333pt;}
.y64{bottom:949.253333pt;}
.yc5{bottom:961.573333pt;}
.y2{bottom:962.053333pt;}
.y63{bottom:965.413333pt;}
.yc4{bottom:979.173333pt;}
.y1{bottom:979.653333pt;}
.y62{bottom:981.733333pt;}
.yc3{bottom:996.613333pt;}
.y61{bottom:998.053333pt;}
.y60{bottom:1014.213333pt;}
.y5c{bottom:1030.240000pt;}
.y5b{bottom:1045.280000pt;}
.h7{height:16.352000pt;}
.hf{height:17.920000pt;}
.h3{height:42.147500pt;}
.hc{height:42.649687pt;}
.hb{height:47.742188pt;}
.ha{height:49.148438pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.he{height:58.536708pt;}
.h2{height:58.563750pt;}
.h10{height:65.531250pt;}
.h4{height:76.671562pt;}
.hd{height:362.562299pt;}
.h8{height:439.586667pt;}
.h9{height:579.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:44.000000pt;}
.w4{width:192.666667pt;}
.w5{width:226.394764pt;}
.w3{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1{left:75.551988pt;}
.xa{left:129.471988pt;}
.x7{left:179.560000pt;}
.x9{left:236.066667pt;}
.x4{left:420.573322pt;}
.x5{left:521.373333pt;}
.x8{left:530.946630pt;}
.xb{left:672.293333pt;}
.x2{left:718.239988pt;}
}




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