
    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_0f69e092957b12f53c7a9293.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_47d6c4b262fcbf273ba671dd.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_8df7a6ffc29b68d9aadc948d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_515768ef996ef102787354d5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_da00100aa1c5837154b8cc03.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5716ff44c6d71adf93e0e9b6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c2dd67e9850cd51886eac74c.woff')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-28.800000px;}
.v3{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.800000px;}
.lsd{letter-spacing:-3.600000px;}
.ls6{letter-spacing:-1.584000px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.180000px;}
.lse{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls4{letter-spacing:1.404000px;}
.lsa{letter-spacing:1.584000px;}
.ls3{letter-spacing:1.800000px;}
.ls2{letter-spacing:1.860000px;}
.ls1{letter-spacing:1.920000px;}
.ls8{letter-spacing:33.984000px;}
.ls7{letter-spacing:37.584000px;}
.lsb{letter-spacing:48.324000px;}
.ls0{letter-spacing:569.400000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws5{word-spacing:-19.584000px;}
.ws4{word-spacing:-18.432000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.416000px;}
.ws6{word-spacing:-14.400000px;}
.ws1{word-spacing:-11.700000px;}
.ws3{word-spacing:0.000000px;}
._26{margin-left:-11.412000px;}
._8{margin-left:-8.858100px;}
._a{margin-left:-7.373250px;}
._9{margin-left:-5.893650px;}
._4{margin-left:-4.752000px;}
._b{margin-left:-3.690150px;}
._2{margin-left:-2.520000px;}
._0{margin-left:-1.224000px;}
._1{width:1.512000px;}
._7{width:2.559450px;}
._3{width:4.008000px;}
._18{width:5.652000px;}
._6{width:6.660000px;}
._c{width:7.884000px;}
._15{width:10.368000px;}
._14{width:11.448000px;}
._16{width:13.824000px;}
._17{width:15.120000px;}
._1c{width:16.992000px;}
._f{width:21.240000px;}
._10{width:22.464000px;}
._d{width:24.624000px;}
._e{width:25.920000px;}
._21{width:28.296000px;}
._1a{width:29.304000px;}
._19{width:31.896000px;}
._1d{width:33.048000px;}
._1e{width:36.120000px;}
._27{width:37.236300px;}
._1f{width:39.059100px;}
._25{width:40.475400px;}
._28{width:41.808000px;}
._12{width:42.858150px;}
._13{width:43.920000px;}
._11{width:46.584000px;}
._1b{width:47.592000px;}
._24{width:49.968000px;}
._23{width:51.336000px;}
._20{width:617.010150px;}
._22{width:620.610150px;}
._5{width:652.848000px;}
.fc6{color:transparent;}
.fc4{color:rgb(37,105,228);}
.fc5{color:rgb(128,128,128);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs1{font-size:28.800000px;}
.fs3{font-size:46.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:97.350000px;}
.y0{bottom:0.000000px;}
.y29{bottom:9.900000px;}
.y2e{bottom:11.700000px;}
.y2c{bottom:17.100000px;}
.y28{bottom:34.200000px;}
.y2b{bottom:41.430000px;}
.y3{bottom:44.100000px;}
.y27{bottom:60.345000px;}
.y2{bottom:63.037500px;}
.y1{bottom:72.937500px;}
.y6c{bottom:131.475000px;}
.y25{bottom:142.275000px;}
.yce{bottom:144.075000px;}
.y131{bottom:145.875000px;}
.y81{bottom:146.775000px;}
.ye6{bottom:148.575000px;}
.y102{bottom:152.220000px;}
.y6b{bottom:154.905000px;}
.y52{bottom:161.205000px;}
.yc8{bottom:163.005000px;}
.y24{bottom:166.620000px;}
.ycd{bottom:167.505000px;}
.y80{bottom:170.205000px;}
.y11e{bottom:174.705000px;}
.y6a{bottom:179.220000px;}
.y101{bottom:183.705000px;}
.y130{bottom:184.620000px;}
.y51{bottom:185.505000px;}
.y23{bottom:190.005000px;}
.ycc{bottom:191.805000px;}
.y7f{bottom:194.505000px;}
.y11d{bottom:198.120000px;}
.yc7{bottom:201.750000px;}
.y69{bottom:202.650000px;}
.y12f{bottom:208.050000px;}
.y50{bottom:208.950000px;}
.ye5{bottom:210.750000px;}
.y100{bottom:212.550000px;}
.y22{bottom:214.350000px;}
.y97{bottom:215.250000px;}
.y7e{bottom:217.950000px;}
.yc6{bottom:226.050000px;}
.y12e{bottom:232.350000px;}
.y4f{bottom:233.250000px;}
.yff{bottom:236.850000px;}
.y21{bottom:237.750000px;}
.y96{bottom:239.550000px;}
.y68{bottom:241.350000px;}
.yc5{bottom:249.450000px;}
.y4e{bottom:256.680000px;}
.y20{bottom:261.195000px;}
.y95{bottom:262.980000px;}
.y7d{bottom:265.695000px;}
.y12d{bottom:271.095000px;}
.ye4{bottom:272.880000px;}
.yc4{bottom:273.780000px;}
.yfe{bottom:275.580000px;}
.y4d{bottom:280.995000px;}
.y11c{bottom:284.595000px;}
.y1f{bottom:285.495000px;}
.y94{bottom:286.380000px;}
.y7c{bottom:289.080000px;}
.y12c{bottom:294.495000px;}
.yc3{bottom:297.180000px;}
.ye3{bottom:303.480000px;}
.y4c{bottom:304.380000px;}
.y1e{bottom:308.925000px;}
.y93{bottom:310.725000px;}
.y7b{bottom:313.425000px;}
.yfd{bottom:314.325000px;}
.y12b{bottom:318.825000px;}
.y11b{bottom:324.225000px;}
.y4b{bottom:327.825000px;}
.y1d{bottom:333.225000px;}
.y92{bottom:334.125000px;}
.ye2{bottom:335.025000px;}
.yc2{bottom:335.925000px;}
.y7a{bottom:336.825000px;}
.yfc{bottom:337.725000px;}
.yb0{bottom:343.125000px;}
.y11a{bottom:347.625000px;}
.y4a{bottom:352.125000px;}
.y1c{bottom:356.625000px;}
.y12a{bottom:357.555000px;}
.y91{bottom:358.470000px;}
.yc1{bottom:360.255000px;}
.y79{bottom:361.155000px;}
.yfb{bottom:362.070000px;}
.ye1{bottom:365.670000px;}
.yaf{bottom:367.455000px;}
.y119{bottom:371.055000px;}
.y49{bottom:375.570000px;}
.y1b{bottom:380.955000px;}
.y90{bottom:381.870000px;}
.yc0{bottom:383.655000px;}
.y78{bottom:384.555000px;}
.yfa{bottom:385.470000px;}
.y89{bottom:390.855000px;}
.ye0{bottom:397.155000px;}
.y67{bottom:399.870000px;}
.y1a{bottom:404.370000px;}
.y129{bottom:405.255000px;}
.y8f{bottom:406.155000px;}
.ybf{bottom:407.955000px;}
.y77{bottom:408.900000px;}
.y118{bottom:410.700000px;}
.y48{bottom:414.300000px;}
.ya2{bottom:423.300000px;}
.yf9{bottom:424.200000px;}
.ydf{bottom:427.800000px;}
.y19{bottom:428.700000px;}
.y8e{bottom:429.600000px;}
.y76{bottom:432.300000px;}
.y117{bottom:434.100000px;}
.y47{bottom:438.600000px;}
.y128{bottom:444.000000px;}
.ybe{bottom:446.700000px;}
.ya1{bottom:447.600000px;}
.yf8{bottom:448.500000px;}
.y18{bottom:452.100000px;}
.ycb{bottom:453.900000px;}
.y75{bottom:456.600000px;}
.y116{bottom:457.500000px;}
.yde{bottom:459.300000px;}
.y46{bottom:462.030000px;}
.y8d{bottom:468.330000px;}
.ybd{bottom:470.130000px;}
.ya0{bottom:471.030000px;}
.yf7{bottom:471.945000px;}
.y17{bottom:475.530000px;}
.yca{bottom:477.330000px;}
.y74{bottom:480.045000px;}
.y127{bottom:482.730000px;}
.y45{bottom:486.330000px;}
.ydd{bottom:489.945000px;}
.y8c{bottom:492.630000px;}
.ybc{bottom:494.445000px;}
.y9f{bottom:495.330000px;}
.yf6{bottom:496.230000px;}
.y115{bottom:497.130000px;}
.y44{bottom:509.730000px;}
.y16{bottom:515.175000px;}
.y8b{bottom:516.075000px;}
.ybb{bottom:517.875000px;}
.y73{bottom:518.775000px;}
.yf5{bottom:519.675000px;}
.y114{bottom:520.575000px;}
.ydc{bottom:521.475000px;}
.y66{bottom:525.075000px;}
.y43{bottom:534.075000px;}
.y8a{bottom:540.375000px;}
.y72{bottom:543.075000px;}
.yf4{bottom:543.975000px;}
.y126{bottom:544.875000px;}
.yae{bottom:548.475000px;}
.y15{bottom:553.875000px;}
.yba{bottom:556.575000px;}
.y42{bottom:557.475000px;}
.y113{bottom:559.275000px;}
.y65{bottom:563.775000px;}
.y9e{bottom:566.505000px;}
.ydb{bottom:567.405000px;}
.y125{bottom:569.205000px;}
.yad{bottom:572.805000px;}
.y41{bottom:581.820000px;}
.y112{bottom:583.620000px;}
.y64{bottom:588.105000px;}
.y9d{bottom:589.905000px;}
.y14{bottom:592.605000px;}
.yb9{bottom:595.320000px;}
.yac{bottom:596.205000px;}
.yda{bottom:598.905000px;}
.y2d{bottom:600.705000px;}
.y40{bottom:605.205000px;}
.y124{bottom:607.905000px;}
.y63{bottom:611.505000px;}
.y9c{bottom:614.220000px;}
.yab{bottom:620.550000px;}
.y111{bottom:622.350000px;}
.y3f{bottom:629.550000px;}
.y13{bottom:631.350000px;}
.yb8{bottom:634.050000px;}
.y62{bottom:634.950000px;}
.y9b{bottom:637.650000px;}
.y88{bottom:643.950000px;}
.yd9{bottom:644.850000px;}
.y110{bottom:645.750000px;}
.y2a{bottom:648.450000px;}
.yf3{bottom:652.050000px;}
.y3e{bottom:652.950000px;}
.y61{bottom:659.250000px;}
.y9a{bottom:661.950000px;}
.y87{bottom:668.280000px;}
.y12{bottom:670.095000px;}
.y123{bottom:670.980000px;}
.yb7{bottom:672.780000px;}
.y3d{bottom:676.380000px;}
.y60{bottom:682.680000px;}
.y99{bottom:685.380000px;}
.yd8{bottom:690.780000px;}
.y86{bottom:691.695000px;}
.y122{bottom:694.380000px;}
.y3c{bottom:700.695000px;}
.y11{bottom:701.580000px;}
.y5f{bottom:706.995000px;}
.y10f{bottom:708.780000px;}
.yb6{bottom:712.380000px;}
.yf2{bottom:714.195000px;}
.y121{bottom:717.780000px;}
.yd7{bottom:721.425000px;}
.y3b{bottom:724.125000px;}
.y5e{bottom:730.425000px;}
.y10e{bottom:732.225000px;}
.y10{bottom:733.125000px;}
.yf1{bottom:744.825000px;}
.y3a{bottom:748.425000px;}
.yb5{bottom:751.125000px;}
.yd6{bottom:752.925000px;}
.y5d{bottom:754.725000px;}
.y10d{bottom:756.525000px;}
.y120{bottom:757.425000px;}
.yf{bottom:763.725000px;}
.y85{bottom:769.125000px;}
.y39{bottom:771.855000px;}
.yf0{bottom:776.355000px;}
.y5c{bottom:778.170000px;}
.yd5{bottom:783.570000px;}
.yb4{bottom:789.855000px;}
.y84{bottom:793.455000px;}
.y10c{bottom:795.255000px;}
.y38{bottom:796.155000px;}
.ye{bottom:801.570000px;}
.y5b{bottom:802.455000px;}
.yef{bottom:806.955000px;}
.yd4{bottom:815.070000px;}
.y83{bottom:816.855000px;}
.y37{bottom:819.570000px;}
.y5a{bottom:825.900000px;}
.yd{bottom:826.800000px;}
.yb3{bottom:828.600000px;}
.y10b{bottom:834.000000px;}
.yee{bottom:838.500000px;}
.y82{bottom:841.200000px;}
.y36{bottom:843.900000px;}
.yd3{bottom:845.700000px;}
.yb2{bottom:849.300000px;}
.yaa{bottom:855.600000px;}
.yc{bottom:856.500000px;}
.y10a{bottom:857.400000px;}
.y59{bottom:864.600000px;}
.y35{bottom:867.300000px;}
.yed{bottom:869.100000px;}
.yb1{bottom:873.600000px;}
.yd2{bottom:877.230000px;}
.ya9{bottom:879.945000px;}
.yb{bottom:881.730000px;}
.y11f{bottom:882.630000px;}
.y58{bottom:888.945000px;}
.y71{bottom:890.730000px;}
.yec{bottom:900.630000px;}
.ya8{bottom:903.330000px;}
.y34{bottom:906.030000px;}
.yd1{bottom:907.830000px;}
.y57{bottom:912.330000px;}
.ya{bottom:913.245000px;}
.y109{bottom:920.445000px;}
.ya7{bottom:927.675000px;}
.y70{bottom:930.375000px;}
.yeb{bottom:931.275000px;}
.y56{bottom:935.775000px;}
.yd0{bottom:939.375000px;}
.y108{bottom:943.875000px;}
.y9{bottom:944.775000px;}
.ya6{bottom:951.075000px;}
.y6f{bottom:953.775000px;}
.y55{bottom:960.075000px;}
.yea{bottom:962.775000px;}
.y107{bottom:968.175000px;}
.y98{bottom:969.075000px;}
.ycf{bottom:969.975000px;}
.ya5{bottom:975.375000px;}
.y8{bottom:978.075000px;}
.y33{bottom:983.505000px;}
.y106{bottom:991.620000px;}
.y6e{bottom:992.505000px;}
.ye9{bottom:993.420000px;}
.ya4{bottom:998.820000px;}
.y32{bottom:1007.820000px;}
.y6d{bottom:1016.820000px;}
.y7{bottom:1017.705000px;}
.ya3{bottom:1022.205000px;}
.ye8{bottom:1024.905000px;}
.y105{bottom:1030.320000px;}
.y54{bottom:1031.250000px;}
.y31{bottom:1046.550000px;}
.y6{bottom:1049.250000px;}
.y104{bottom:1054.650000px;}
.y53{bottom:1055.550000px;}
.y30{bottom:1069.950000px;}
.yc9{bottom:1078.950000px;}
.y5{bottom:1080.750000px;}
.ye7{bottom:1087.080000px;}
.y2f{bottom:1094.280000px;}
.y103{bottom:1112.295000px;}
.y4{bottom:1117.695000px;}
.y26{bottom:1151.025000px;}
.h3{height:23.737500px;}
.hb{height:28.837500px;}
.h8{height:41.064258px;}
.h5{height:50.800781px;}
.hc{height:52.417969px;}
.ha{height:58.537500px;}
.h4{height:59.343750px;}
.h7{height:61.820508px;}
.h2{height:63.175781px;}
.h6{height:68.686890px;}
.h9{height:82.837500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:668.505000px;}
.w4{width:682.905000px;}
.w3{width:772.080000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:59.475000px;}
.x1{left:127.949987px;}
.x3{left:144.149987px;}
.x5{left:153.150000px;}
.x6{left:154.949987px;}
.x7{left:181.979987px;}
.x2{left:468.494987px;}
@media print{
.v2{vertical-align:-25.600000pt;}
.v3{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.600000pt;}
.lsd{letter-spacing:-3.200000pt;}
.ls6{letter-spacing:-1.408000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls4{letter-spacing:1.248000pt;}
.lsa{letter-spacing:1.408000pt;}
.ls3{letter-spacing:1.600000pt;}
.ls2{letter-spacing:1.653333pt;}
.ls1{letter-spacing:1.706667pt;}
.ls8{letter-spacing:30.208000pt;}
.ls7{letter-spacing:33.408000pt;}
.lsb{letter-spacing:42.954667pt;}
.ls0{letter-spacing:506.133333pt;}
.ws7{word-spacing:-64.000000pt;}
.ws5{word-spacing:-17.408000pt;}
.ws4{word-spacing:-16.384000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.592000pt;}
.ws6{word-spacing:-12.800000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws3{word-spacing:0.000000pt;}
._26{margin-left:-10.144000pt;}
._8{margin-left:-7.873867pt;}
._a{margin-left:-6.554000pt;}
._9{margin-left:-5.238800pt;}
._4{margin-left:-4.224000pt;}
._b{margin-left:-3.280133pt;}
._2{margin-left:-2.240000pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.344000pt;}
._7{width:2.275067pt;}
._3{width:3.562667pt;}
._18{width:5.024000pt;}
._6{width:5.920000pt;}
._c{width:7.008000pt;}
._15{width:9.216000pt;}
._14{width:10.176000pt;}
._16{width:12.288000pt;}
._17{width:13.440000pt;}
._1c{width:15.104000pt;}
._f{width:18.880000pt;}
._10{width:19.968000pt;}
._d{width:21.888000pt;}
._e{width:23.040000pt;}
._21{width:25.152000pt;}
._1a{width:26.048000pt;}
._19{width:28.352000pt;}
._1d{width:29.376000pt;}
._1e{width:32.106667pt;}
._27{width:33.098933pt;}
._1f{width:34.719200pt;}
._25{width:35.978133pt;}
._28{width:37.162667pt;}
._12{width:38.096133pt;}
._13{width:39.040000pt;}
._11{width:41.408000pt;}
._1b{width:42.304000pt;}
._24{width:44.416000pt;}
._23{width:45.632000pt;}
._20{width:548.453467pt;}
._22{width:551.653467pt;}
._5{width:580.309333pt;}
.fs1{font-size:25.600000pt;}
.fs3{font-size:41.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:86.533333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:8.800000pt;}
.y2e{bottom:10.400000pt;}
.y2c{bottom:15.200000pt;}
.y28{bottom:30.400000pt;}
.y2b{bottom:36.826667pt;}
.y3{bottom:39.200000pt;}
.y27{bottom:53.640000pt;}
.y2{bottom:56.033333pt;}
.y1{bottom:64.833333pt;}
.y6c{bottom:116.866667pt;}
.y25{bottom:126.466667pt;}
.yce{bottom:128.066667pt;}
.y131{bottom:129.666667pt;}
.y81{bottom:130.466667pt;}
.ye6{bottom:132.066667pt;}
.y102{bottom:135.306667pt;}
.y6b{bottom:137.693333pt;}
.y52{bottom:143.293333pt;}
.yc8{bottom:144.893333pt;}
.y24{bottom:148.106667pt;}
.ycd{bottom:148.893333pt;}
.y80{bottom:151.293333pt;}
.y11e{bottom:155.293333pt;}
.y6a{bottom:159.306667pt;}
.y101{bottom:163.293333pt;}
.y130{bottom:164.106667pt;}
.y51{bottom:164.893333pt;}
.y23{bottom:168.893333pt;}
.ycc{bottom:170.493333pt;}
.y7f{bottom:172.893333pt;}
.y11d{bottom:176.106667pt;}
.yc7{bottom:179.333333pt;}
.y69{bottom:180.133333pt;}
.y12f{bottom:184.933333pt;}
.y50{bottom:185.733333pt;}
.ye5{bottom:187.333333pt;}
.y100{bottom:188.933333pt;}
.y22{bottom:190.533333pt;}
.y97{bottom:191.333333pt;}
.y7e{bottom:193.733333pt;}
.yc6{bottom:200.933333pt;}
.y12e{bottom:206.533333pt;}
.y4f{bottom:207.333333pt;}
.yff{bottom:210.533333pt;}
.y21{bottom:211.333333pt;}
.y96{bottom:212.933333pt;}
.y68{bottom:214.533333pt;}
.yc5{bottom:221.733333pt;}
.y4e{bottom:228.160000pt;}
.y20{bottom:232.173333pt;}
.y95{bottom:233.760000pt;}
.y7d{bottom:236.173333pt;}
.y12d{bottom:240.973333pt;}
.ye4{bottom:242.560000pt;}
.yc4{bottom:243.360000pt;}
.yfe{bottom:244.960000pt;}
.y4d{bottom:249.773333pt;}
.y11c{bottom:252.973333pt;}
.y1f{bottom:253.773333pt;}
.y94{bottom:254.560000pt;}
.y7c{bottom:256.960000pt;}
.y12c{bottom:261.773333pt;}
.yc3{bottom:264.160000pt;}
.ye3{bottom:269.760000pt;}
.y4c{bottom:270.560000pt;}
.y1e{bottom:274.600000pt;}
.y93{bottom:276.200000pt;}
.y7b{bottom:278.600000pt;}
.yfd{bottom:279.400000pt;}
.y12b{bottom:283.400000pt;}
.y11b{bottom:288.200000pt;}
.y4b{bottom:291.400000pt;}
.y1d{bottom:296.200000pt;}
.y92{bottom:297.000000pt;}
.ye2{bottom:297.800000pt;}
.yc2{bottom:298.600000pt;}
.y7a{bottom:299.400000pt;}
.yfc{bottom:300.200000pt;}
.yb0{bottom:305.000000pt;}
.y11a{bottom:309.000000pt;}
.y4a{bottom:313.000000pt;}
.y1c{bottom:317.000000pt;}
.y12a{bottom:317.826667pt;}
.y91{bottom:318.640000pt;}
.yc1{bottom:320.226667pt;}
.y79{bottom:321.026667pt;}
.yfb{bottom:321.840000pt;}
.ye1{bottom:325.040000pt;}
.yaf{bottom:326.626667pt;}
.y119{bottom:329.826667pt;}
.y49{bottom:333.840000pt;}
.y1b{bottom:338.626667pt;}
.y90{bottom:339.440000pt;}
.yc0{bottom:341.026667pt;}
.y78{bottom:341.826667pt;}
.yfa{bottom:342.640000pt;}
.y89{bottom:347.426667pt;}
.ye0{bottom:353.026667pt;}
.y67{bottom:355.440000pt;}
.y1a{bottom:359.440000pt;}
.y129{bottom:360.226667pt;}
.y8f{bottom:361.026667pt;}
.ybf{bottom:362.626667pt;}
.y77{bottom:363.466667pt;}
.y118{bottom:365.066667pt;}
.y48{bottom:368.266667pt;}
.ya2{bottom:376.266667pt;}
.yf9{bottom:377.066667pt;}
.ydf{bottom:380.266667pt;}
.y19{bottom:381.066667pt;}
.y8e{bottom:381.866667pt;}
.y76{bottom:384.266667pt;}
.y117{bottom:385.866667pt;}
.y47{bottom:389.866667pt;}
.y128{bottom:394.666667pt;}
.ybe{bottom:397.066667pt;}
.ya1{bottom:397.866667pt;}
.yf8{bottom:398.666667pt;}
.y18{bottom:401.866667pt;}
.ycb{bottom:403.466667pt;}
.y75{bottom:405.866667pt;}
.y116{bottom:406.666667pt;}
.yde{bottom:408.266667pt;}
.y46{bottom:410.693333pt;}
.y8d{bottom:416.293333pt;}
.ybd{bottom:417.893333pt;}
.ya0{bottom:418.693333pt;}
.yf7{bottom:419.506667pt;}
.y17{bottom:422.693333pt;}
.yca{bottom:424.293333pt;}
.y74{bottom:426.706667pt;}
.y127{bottom:429.093333pt;}
.y45{bottom:432.293333pt;}
.ydd{bottom:435.506667pt;}
.y8c{bottom:437.893333pt;}
.ybc{bottom:439.506667pt;}
.y9f{bottom:440.293333pt;}
.yf6{bottom:441.093333pt;}
.y115{bottom:441.893333pt;}
.y44{bottom:453.093333pt;}
.y16{bottom:457.933333pt;}
.y8b{bottom:458.733333pt;}
.ybb{bottom:460.333333pt;}
.y73{bottom:461.133333pt;}
.yf5{bottom:461.933333pt;}
.y114{bottom:462.733333pt;}
.ydc{bottom:463.533333pt;}
.y66{bottom:466.733333pt;}
.y43{bottom:474.733333pt;}
.y8a{bottom:480.333333pt;}
.y72{bottom:482.733333pt;}
.yf4{bottom:483.533333pt;}
.y126{bottom:484.333333pt;}
.yae{bottom:487.533333pt;}
.y15{bottom:492.333333pt;}
.yba{bottom:494.733333pt;}
.y42{bottom:495.533333pt;}
.y113{bottom:497.133333pt;}
.y65{bottom:501.133333pt;}
.y9e{bottom:503.560000pt;}
.ydb{bottom:504.360000pt;}
.y125{bottom:505.960000pt;}
.yad{bottom:509.160000pt;}
.y41{bottom:517.173333pt;}
.y112{bottom:518.773333pt;}
.y64{bottom:522.760000pt;}
.y9d{bottom:524.360000pt;}
.y14{bottom:526.760000pt;}
.yb9{bottom:529.173333pt;}
.yac{bottom:529.960000pt;}
.yda{bottom:532.360000pt;}
.y2d{bottom:533.960000pt;}
.y40{bottom:537.960000pt;}
.y124{bottom:540.360000pt;}
.y63{bottom:543.560000pt;}
.y9c{bottom:545.973333pt;}
.yab{bottom:551.600000pt;}
.y111{bottom:553.200000pt;}
.y3f{bottom:559.600000pt;}
.y13{bottom:561.200000pt;}
.yb8{bottom:563.600000pt;}
.y62{bottom:564.400000pt;}
.y9b{bottom:566.800000pt;}
.y88{bottom:572.400000pt;}
.yd9{bottom:573.200000pt;}
.y110{bottom:574.000000pt;}
.y2a{bottom:576.400000pt;}
.yf3{bottom:579.600000pt;}
.y3e{bottom:580.400000pt;}
.y61{bottom:586.000000pt;}
.y9a{bottom:588.400000pt;}
.y87{bottom:594.026667pt;}
.y12{bottom:595.640000pt;}
.y123{bottom:596.426667pt;}
.yb7{bottom:598.026667pt;}
.y3d{bottom:601.226667pt;}
.y60{bottom:606.826667pt;}
.y99{bottom:609.226667pt;}
.yd8{bottom:614.026667pt;}
.y86{bottom:614.840000pt;}
.y122{bottom:617.226667pt;}
.y3c{bottom:622.840000pt;}
.y11{bottom:623.626667pt;}
.y5f{bottom:628.440000pt;}
.y10f{bottom:630.026667pt;}
.yb6{bottom:633.226667pt;}
.yf2{bottom:634.840000pt;}
.y121{bottom:638.026667pt;}
.yd7{bottom:641.266667pt;}
.y3b{bottom:643.666667pt;}
.y5e{bottom:649.266667pt;}
.y10e{bottom:650.866667pt;}
.y10{bottom:651.666667pt;}
.yf1{bottom:662.066667pt;}
.y3a{bottom:665.266667pt;}
.yb5{bottom:667.666667pt;}
.yd6{bottom:669.266667pt;}
.y5d{bottom:670.866667pt;}
.y10d{bottom:672.466667pt;}
.y120{bottom:673.266667pt;}
.yf{bottom:678.866667pt;}
.y85{bottom:683.666667pt;}
.y39{bottom:686.093333pt;}
.yf0{bottom:690.093333pt;}
.y5c{bottom:691.706667pt;}
.yd5{bottom:696.506667pt;}
.yb4{bottom:702.093333pt;}
.y84{bottom:705.293333pt;}
.y10c{bottom:706.893333pt;}
.y38{bottom:707.693333pt;}
.ye{bottom:712.506667pt;}
.y5b{bottom:713.293333pt;}
.yef{bottom:717.293333pt;}
.yd4{bottom:724.506667pt;}
.y83{bottom:726.093333pt;}
.y37{bottom:728.506667pt;}
.y5a{bottom:734.133333pt;}
.yd{bottom:734.933333pt;}
.yb3{bottom:736.533333pt;}
.y10b{bottom:741.333333pt;}
.yee{bottom:745.333333pt;}
.y82{bottom:747.733333pt;}
.y36{bottom:750.133333pt;}
.yd3{bottom:751.733333pt;}
.yb2{bottom:754.933333pt;}
.yaa{bottom:760.533333pt;}
.yc{bottom:761.333333pt;}
.y10a{bottom:762.133333pt;}
.y59{bottom:768.533333pt;}
.y35{bottom:770.933333pt;}
.yed{bottom:772.533333pt;}
.yb1{bottom:776.533333pt;}
.yd2{bottom:779.760000pt;}
.ya9{bottom:782.173333pt;}
.yb{bottom:783.760000pt;}
.y11f{bottom:784.560000pt;}
.y58{bottom:790.173333pt;}
.y71{bottom:791.760000pt;}
.yec{bottom:800.560000pt;}
.ya8{bottom:802.960000pt;}
.y34{bottom:805.360000pt;}
.yd1{bottom:806.960000pt;}
.y57{bottom:810.960000pt;}
.ya{bottom:811.773333pt;}
.y109{bottom:818.173333pt;}
.ya7{bottom:824.600000pt;}
.y70{bottom:827.000000pt;}
.yeb{bottom:827.800000pt;}
.y56{bottom:831.800000pt;}
.yd0{bottom:835.000000pt;}
.y108{bottom:839.000000pt;}
.y9{bottom:839.800000pt;}
.ya6{bottom:845.400000pt;}
.y6f{bottom:847.800000pt;}
.y55{bottom:853.400000pt;}
.yea{bottom:855.800000pt;}
.y107{bottom:860.600000pt;}
.y98{bottom:861.400000pt;}
.ycf{bottom:862.200000pt;}
.ya5{bottom:867.000000pt;}
.y8{bottom:869.400000pt;}
.y33{bottom:874.226667pt;}
.y106{bottom:881.440000pt;}
.y6e{bottom:882.226667pt;}
.ye9{bottom:883.040000pt;}
.ya4{bottom:887.840000pt;}
.y32{bottom:895.840000pt;}
.y6d{bottom:903.840000pt;}
.y7{bottom:904.626667pt;}
.ya3{bottom:908.626667pt;}
.ye8{bottom:911.026667pt;}
.y105{bottom:915.840000pt;}
.y54{bottom:916.666667pt;}
.y31{bottom:930.266667pt;}
.y6{bottom:932.666667pt;}
.y104{bottom:937.466667pt;}
.y53{bottom:938.266667pt;}
.y30{bottom:951.066667pt;}
.yc9{bottom:959.066667pt;}
.y5{bottom:960.666667pt;}
.ye7{bottom:966.293333pt;}
.y2f{bottom:972.693333pt;}
.y103{bottom:988.706667pt;}
.y4{bottom:993.506667pt;}
.y26{bottom:1023.133333pt;}
.h3{height:21.100000pt;}
.hb{height:25.633333pt;}
.h8{height:36.501562pt;}
.h5{height:45.156250pt;}
.hc{height:46.593750pt;}
.ha{height:52.033333pt;}
.h4{height:52.750000pt;}
.h7{height:54.951563pt;}
.h2{height:56.156250pt;}
.h6{height:61.055013pt;}
.h9{height:73.633333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:594.226667pt;}
.w4{width:607.026667pt;}
.w3{width:686.293333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:52.866667pt;}
.x1{left:113.733322pt;}
.x3{left:128.133322pt;}
.x5{left:136.133333pt;}
.x6{left:137.733322pt;}
.x7{left:161.759988pt;}
.x2{left:416.439988pt;}
}




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