
    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_8cef3861a01a37cd12d9cd91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_1b9c236a408515da74fea5fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_791959ced0e1c3629111bbb0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_426b06ef4d2b389c37633214.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_255954322979b73de2b80696.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_6260516b4c6ba6c9cd583723.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_185aec4fae9fe84e10560274.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2344bccd054760a89cd06a24.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_81828a435605292b90fe302f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.320000px;}
.lsa{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.384000px;}
.ls5{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.420000px;}
.lse{letter-spacing:0.487350px;}
.ls11{letter-spacing:0.525000px;}
.lsd{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.750000px;}
.lsb{letter-spacing:17.940000px;}
.ls14{letter-spacing:18.384000px;}
.ls12{letter-spacing:33.984000px;}
.ls13{letter-spacing:54.384000px;}
.ls1{letter-spacing:141.984000px;}
.lsc{letter-spacing:192.420000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.000000px;}
.ws4{word-spacing:-18.096000px;}
.ws11{word-spacing:-18.037500px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.616000px;}
.wsa{word-spacing:-15.937500px;}
.ws9{word-spacing:-15.900000px;}
.ws0{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.460000px;}
.wsb{word-spacing:-14.040000px;}
.wsc{word-spacing:-14.024850px;}
.ws5{word-spacing:-13.560000px;}
.wse{word-spacing:-13.537500px;}
.wsd{word-spacing:-13.500000px;}
.ws6{word-spacing:0.000000px;}
.ws8{word-spacing:163.620000px;}
.ws12{word-spacing:192.828000px;}
.ws10{word-spacing:281.100000px;}
.wsf{word-spacing:478.716000px;}
._3{margin-left:-10.440000px;}
._4{margin-left:-8.448000px;}
._1e{margin-left:-7.278000px;}
._d{margin-left:-5.688000px;}
._5{margin-left:-4.320000px;}
._2{margin-left:-2.640000px;}
._1{margin-left:-1.200000px;}
._0{width:1.380000px;}
._6{width:3.198000px;}
._16{width:4.860000px;}
._29{width:6.096000px;}
._1f{width:7.344000px;}
._2b{width:8.412000px;}
._20{width:10.050000px;}
._27{width:11.160000px;}
._f{width:12.288000px;}
._10{width:14.160000px;}
._11{width:15.324000px;}
._a{width:16.632000px;}
._c{width:19.458000px;}
._e{width:20.988000px;}
._b{width:22.080000px;}
._25{width:23.982000px;}
._2e{width:25.596000px;}
._12{width:26.736000px;}
._1d{width:27.810000px;}
._19{width:29.208000px;}
._1a{width:30.312000px;}
._1b{width:31.926000px;}
._7{width:33.540000px;}
._35{width:34.776000px;}
._2a{width:36.408000px;}
._8{width:38.088000px;}
._9{width:39.240000px;}
._15{width:41.076000px;}
._22{width:42.420000px;}
._21{width:43.488000px;}
._28{width:44.574000px;}
._26{width:46.848000px;}
._34{width:51.132000px;}
._33{width:53.064000px;}
._23{width:55.152000px;}
._32{width:56.544000px;}
._1c{width:61.680000px;}
._2c{width:65.160000px;}
._2d{width:66.330000px;}
._18{width:73.440000px;}
._17{width:74.784000px;}
._24{width:81.072000px;}
._13{width:82.080000px;}
._14{width:83.376000px;}
._2f{width:96.132000px;}
._30{width:98.154000px;}
._31{width:595.572000px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:39.600000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:54.150000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:63.600000px;}
.fs7{font-size:63.750000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:72.150000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:12.300000px;}
.y5c{bottom:12.555000px;}
.y77{bottom:17.325000px;}
.y7c{bottom:28.770000px;}
.ya5{bottom:33.075000px;}
.y9a{bottom:48.930000px;}
.ycc{bottom:58.305000px;}
.y5d{bottom:60.075000px;}
.yca{bottom:68.670000px;}
.y6{bottom:69.337500px;}
.y9b{bottom:70.680000px;}
.y7d{bottom:72.855000px;}
.ycb{bottom:79.020000px;}
.y9c{bottom:92.430000px;}
.y5a{bottom:92.437500px;}
.y33{bottom:92.737500px;}
.y59{bottom:97.837500px;}
.y72{bottom:109.537500px;}
.y32{bottom:110.737500px;}
.y40{bottom:111.037500px;}
.y9d{bottom:114.225000px;}
.y71{bottom:114.937500px;}
.y31{bottom:116.137500px;}
.y7e{bottom:116.955000px;}
.y75{bottom:122.055000px;}
.y5e{bottom:125.505000px;}
.y70{bottom:128.137500px;}
.y30{bottom:129.037500px;}
.y79{bottom:133.500000px;}
.y43{bottom:134.437500px;}
.y9e{bottom:135.975000px;}
.y7b{bottom:145.875000px;}
.y3f{bottom:146.137500px;}
.y42{bottom:147.337500px;}
.ybf{bottom:150.630000px;}
.y3e{bottom:151.530000px;}
.y9f{bottom:157.770000px;}
.y7f{bottom:161.070000px;}
.y6f{bottom:163.245000px;}
.y3d{bottom:163.830000px;}
.y2f{bottom:168.975000px;}
.yc1{bottom:172.500000px;}
.y74{bottom:174.270000px;}
.y97{bottom:174.480000px;}
.ybe{bottom:174.675000px;}
.ya0{bottom:179.520000px;}
.y3c{bottom:182.175000px;}
.y6e{bottom:186.975000px;}
.y3b{bottom:187.575000px;}
.y5f{bottom:190.950000px;}
.y2e{bottom:192.675000px;}
.y95{bottom:195.375000px;}
.y98{bottom:196.275000px;}
.yc2{bottom:197.175000px;}
.ybd{bottom:198.375000px;}
.y3a{bottom:200.475000px;}
.ya1{bottom:201.300000px;}
.yc9{bottom:201.750000px;}
.y80{bottom:205.125000px;}
.y76{bottom:209.850000px;}
.y6c{bottom:210.975000px;}
.y2c{bottom:216.675000px;}
.y6d{bottom:217.875000px;}
.y39{bottom:218.475000px;}
.y94{bottom:219.075000px;}
.yc3{bottom:221.850000px;}
.ybc{bottom:222.075000px;}
.y99{bottom:222.375000px;}
.yc8{bottom:222.450000px;}
.ya2{bottom:223.050000px;}
.y2d{bottom:223.575000px;}
.y38{bottom:223.875000px;}
.y6b{bottom:230.775000px;}
.y78{bottom:232.800000px;}
.y37{bottom:236.775000px;}
.y2b{bottom:240.375000px;}
.y93{bottom:243.075000px;}
.ya3{bottom:244.830000px;}
.ybb{bottom:246.075000px;}
.yc4{bottom:246.525000px;}
.y81{bottom:249.225000px;}
.y60{bottom:256.380000px;}
.y2a{bottom:264.375000px;}
.ya4{bottom:266.580000px;}
.y92{bottom:266.775000px;}
.yba{bottom:269.775000px;}
.yc5{bottom:271.200000px;}
.y7a{bottom:282.525000px;}
.y29{bottom:288.075000px;}
.y91{bottom:290.475000px;}
.y82{bottom:293.325000px;}
.yb9{bottom:293.475000px;}
.yc6{bottom:295.875000px;}
.yc7{bottom:311.580000px;}
.y28{bottom:311.775000px;}
.y90{bottom:314.475000px;}
.yb8{bottom:317.475000px;}
.y58{bottom:329.175000px;}
.y27{bottom:335.775000px;}
.y83{bottom:337.425000px;}
.y8f{bottom:338.220000px;}
.yb7{bottom:341.220000px;}
.y57{bottom:352.905000px;}
.y26{bottom:359.505000px;}
.y8e{bottom:361.920000px;}
.yb6{bottom:364.905000px;}
.ycd{bottom:365.220000px;}
.y56{bottom:376.905000px;}
.y25{bottom:383.205000px;}
.y8d{bottom:385.920000px;}
.yb5{bottom:388.920000px;}
.y55{bottom:400.620000px;}
.y24{bottom:407.205000px;}
.y8c{bottom:409.620000px;}
.yb4{bottom:412.620000px;}
.y54{bottom:424.620000px;}
.y23{bottom:430.920000px;}
.y8b{bottom:433.620000px;}
.yb3{bottom:436.320000px;}
.y53{bottom:448.320000px;}
.y22{bottom:454.620000px;}
.y8a{bottom:457.320000px;}
.yb2{bottom:460.320000px;}
.y52{bottom:472.005000px;}
.y21{bottom:478.620000px;}
.y89{bottom:481.005000px;}
.yb1{bottom:484.005000px;}
.y51{bottom:496.005000px;}
.y20{bottom:502.305000px;}
.y87{bottom:505.005000px;}
.yb0{bottom:507.750000px;}
.y88{bottom:511.950000px;}
.y50{bottom:519.750000px;}
.y1f{bottom:526.050000px;}
.y86{bottom:528.750000px;}
.yaf{bottom:531.750000px;}
.y4f{bottom:543.450000px;}
.y85{bottom:548.550000px;}
.y1e{bottom:550.050000px;}
.y96{bottom:550.800000px;}
.yae{bottom:555.450000px;}
.y36{bottom:556.950000px;}
.y4e{bottom:567.450000px;}
.y1d{bottom:573.750000px;}
.yad{bottom:579.150000px;}
.y4d{bottom:591.150000px;}
.y1c{bottom:597.450000px;}
.y6a{bottom:597.750000px;}
.yac{bottom:603.150000px;}
.y4c{bottom:614.850000px;}
.y1b{bottom:621.450000px;}
.y69{bottom:621.750000px;}
.yab{bottom:626.850000px;}
.y4b{bottom:638.850000px;}
.y1a{bottom:645.150000px;}
.y68{bottom:645.450000px;}
.yaa{bottom:650.550000px;}
.y4a{bottom:662.550000px;}
.y19{bottom:668.850000px;}
.y67{bottom:669.150000px;}
.ya8{bottom:674.550000px;}
.ya9{bottom:681.495000px;}
.y49{bottom:686.280000px;}
.y18{bottom:692.880000px;}
.y66{bottom:693.195000px;}
.ya7{bottom:698.280000px;}
.y48{bottom:710.280000px;}
.y17{bottom:716.580000px;}
.y65{bottom:716.880000px;}
.ya6{bottom:718.380000px;}
.yc0{bottom:719.400000px;}
.y47{bottom:733.995000px;}
.y16{bottom:740.280000px;}
.y64{bottom:740.595000px;}
.y45{bottom:757.695000px;}
.y15{bottom:764.280000px;}
.y46{bottom:764.595000px;}
.y35{bottom:771.195000px;}
.y44{bottom:777.495000px;}
.y5b{bottom:779.700000px;}
.y14{bottom:787.995000px;}
.y62{bottom:788.295000px;}
.y63{bottom:795.195000px;}
.y61{bottom:808.380000px;}
.y73{bottom:810.300000px;}
.y13{bottom:811.695000px;}
.y12{bottom:835.695000px;}
.y11{bottom:859.425000px;}
.y10{bottom:883.125000px;}
.y34{bottom:890.025000px;}
.yf{bottom:907.125000px;}
.ye{bottom:930.825000px;}
.yd{bottom:954.525000px;}
.yc{bottom:978.525000px;}
.yb{bottom:1002.225000px;}
.ya{bottom:1025.955000px;}
.y9{bottom:1049.955000px;}
.y8{bottom:1073.655000px;}
.y7{bottom:1097.655000px;}
.y41{bottom:1104.570000px;}
.y5{bottom:1130.355000px;}
.y4{bottom:1162.155000px;}
.y3{bottom:1191.600000px;}
.y2{bottom:1220.700000px;}
.y1{bottom:1238.100000px;}
.h19{height:37.863281px;}
.hc{height:38.865234px;}
.hb{height:47.109375px;}
.h10{height:48.375000px;}
.h8{height:50.484375px;}
.h1e{height:50.589551px;}
.h2{height:51.884766px;}
.h12{height:52.998047px;}
.h18{height:53.145264px;}
.h13{height:54.997852px;}
.h14{height:55.127563px;}
.hd{height:58.886719px;}
.h16{height:58.898438px;}
.hf{height:59.343750px;}
.he{height:59.677734px;}
.h3{height:60.468750px;}
.h6{height:62.261719px;}
.h9{height:70.664062px;}
.h1d{height:70.811279px;}
.h7{height:72.562500px;}
.h1b{height:74.004654px;}
.ha{height:74.953125px;}
.h5{height:82.441406px;}
.h4{height:84.656250px;}
.h1a{height:301.800000px;}
.h15{height:304.200000px;}
.h11{height:310.800000px;}
.h17{height:358.200000px;}
.h1c{height:395.100000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:574.200000px;}
.w6{width:628.200000px;}
.w7{width:674.100000px;}
.w8{width:698.700000px;}
.w5{width:699.600000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:9.255000px;}
.x3b{left:10.725000px;}
.x31{left:16.612500px;}
.x3c{left:32.325000px;}
.x20{left:58.545000px;}
.x44{left:66.000000px;}
.x22{left:74.670000px;}
.x3{left:84.937487px;}
.x34{left:87.637487px;}
.x10{left:90.037487px;}
.x27{left:92.437487px;}
.x3e{left:95.137487px;}
.x17{left:96.337487px;}
.x6{left:113.137487px;}
.x32{left:123.450000px;}
.x43{left:127.425000px;}
.x2e{left:129.720000px;}
.x2d{left:131.400000px;}
.x1f{left:140.295000px;}
.x45{left:150.405000px;}
.x1e{left:158.400000px;}
.x11{left:187.574973px;}
.x12{left:193.574987px;}
.x38{left:199.500000px;}
.x1b{left:207.974987px;}
.xb{left:217.274987px;}
.xd{left:240.074973px;}
.xe{left:246.074987px;}
.x7{left:257.474987px;}
.x35{left:265.574987px;}
.x40{left:267.450000px;}
.x2b{left:292.455000px;}
.x2c{left:294.945000px;}
.xf{left:301.019987px;}
.x9{left:313.904987px;}
.x2f{left:316.500000px;}
.x3f{left:322.800000px;}
.x46{left:328.619987px;}
.xa{left:344.504987px;}
.x4{left:350.819987px;}
.x39{left:370.425000px;}
.x13{left:378.119973px;}
.x14{left:384.119987px;}
.x18{left:386.519973px;}
.x2a{left:387.795000px;}
.x19{left:392.519987px;}
.x5{left:425.549987px;}
.x8{left:446.249987px;}
.x2{left:457.049987px;}
.x41{left:471.825000px;}
.x30{left:503.325000px;}
.x1{left:510.449987px;}
.x42{left:519.825000px;}
.x3a{left:541.350000px;}
.x3d{left:614.594973px;}
.x36{left:620.879973px;}
.x37{left:626.879987px;}
.x15{left:666.524973px;}
.x16{left:672.524987px;}
.x1c{left:678.824973px;}
.x1d{left:684.824987px;}
.x24{left:693.224973px;}
.x25{left:699.224987px;}
.x1a{left:734.324987px;}
.x33{left:760.124987px;}
.x26{left:761.324987px;}
.x28{left:794.069973px;}
.x23{left:796.154987px;}
.x29{left:800.069987px;}
.xc{left:807.869987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-1.173333pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.341333pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.433200pt;}
.ls11{letter-spacing:0.466667pt;}
.lsd{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.666667pt;}
.lsb{letter-spacing:15.946667pt;}
.ls14{letter-spacing:16.341333pt;}
.ls12{letter-spacing:30.208000pt;}
.ls13{letter-spacing:48.341333pt;}
.ls1{letter-spacing:126.208000pt;}
.lsc{letter-spacing:171.040000pt;}
.ws1{word-spacing:-18.666667pt;}
.ws4{word-spacing:-16.085333pt;}
.ws11{word-spacing:-16.033333pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.658667pt;}
.wsa{word-spacing:-14.166667pt;}
.ws9{word-spacing:-14.133333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws7{word-spacing:-12.853333pt;}
.wsb{word-spacing:-12.480000pt;}
.wsc{word-spacing:-12.466533pt;}
.ws5{word-spacing:-12.053333pt;}
.wse{word-spacing:-12.033333pt;}
.wsd{word-spacing:-12.000000pt;}
.ws6{word-spacing:0.000000pt;}
.ws8{word-spacing:145.440000pt;}
.ws12{word-spacing:171.402667pt;}
.ws10{word-spacing:249.866667pt;}
.wsf{word-spacing:425.525333pt;}
._3{margin-left:-9.280000pt;}
._4{margin-left:-7.509333pt;}
._1e{margin-left:-6.469333pt;}
._d{margin-left:-5.056000pt;}
._5{margin-left:-3.840000pt;}
._2{margin-left:-2.346667pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.226667pt;}
._6{width:2.842667pt;}
._16{width:4.320000pt;}
._29{width:5.418667pt;}
._1f{width:6.528000pt;}
._2b{width:7.477333pt;}
._20{width:8.933333pt;}
._27{width:9.920000pt;}
._f{width:10.922667pt;}
._10{width:12.586667pt;}
._11{width:13.621333pt;}
._a{width:14.784000pt;}
._c{width:17.296000pt;}
._e{width:18.656000pt;}
._b{width:19.626667pt;}
._25{width:21.317333pt;}
._2e{width:22.752000pt;}
._12{width:23.765333pt;}
._1d{width:24.720000pt;}
._19{width:25.962667pt;}
._1a{width:26.944000pt;}
._1b{width:28.378667pt;}
._7{width:29.813333pt;}
._35{width:30.912000pt;}
._2a{width:32.362667pt;}
._8{width:33.856000pt;}
._9{width:34.880000pt;}
._15{width:36.512000pt;}
._22{width:37.706667pt;}
._21{width:38.656000pt;}
._28{width:39.621333pt;}
._26{width:41.642667pt;}
._34{width:45.450667pt;}
._33{width:47.168000pt;}
._23{width:49.024000pt;}
._32{width:50.261333pt;}
._1c{width:54.826667pt;}
._2c{width:57.920000pt;}
._2d{width:58.960000pt;}
._18{width:65.280000pt;}
._17{width:66.474667pt;}
._24{width:72.064000pt;}
._13{width:72.960000pt;}
._14{width:74.112000pt;}
._2f{width:85.450667pt;}
._30{width:87.248000pt;}
._31{width:529.397333pt;}
.fs4{font-size:35.200000pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:48.133333pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:56.533333pt;}
.fs7{font-size:56.666667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:64.133333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:10.933333pt;}
.y5c{bottom:11.160000pt;}
.y77{bottom:15.400000pt;}
.y7c{bottom:25.573333pt;}
.ya5{bottom:29.400000pt;}
.y9a{bottom:43.493333pt;}
.ycc{bottom:51.826667pt;}
.y5d{bottom:53.400000pt;}
.yca{bottom:61.040000pt;}
.y6{bottom:61.633333pt;}
.y9b{bottom:62.826667pt;}
.y7d{bottom:64.760000pt;}
.ycb{bottom:70.240000pt;}
.y9c{bottom:82.160000pt;}
.y5a{bottom:82.166667pt;}
.y33{bottom:82.433333pt;}
.y59{bottom:86.966667pt;}
.y72{bottom:97.366667pt;}
.y32{bottom:98.433333pt;}
.y40{bottom:98.700000pt;}
.y9d{bottom:101.533333pt;}
.y71{bottom:102.166667pt;}
.y31{bottom:103.233333pt;}
.y7e{bottom:103.960000pt;}
.y75{bottom:108.493333pt;}
.y5e{bottom:111.560000pt;}
.y70{bottom:113.900000pt;}
.y30{bottom:114.700000pt;}
.y79{bottom:118.666667pt;}
.y43{bottom:119.500000pt;}
.y9e{bottom:120.866667pt;}
.y7b{bottom:129.666667pt;}
.y3f{bottom:129.900000pt;}
.y42{bottom:130.966667pt;}
.ybf{bottom:133.893333pt;}
.y3e{bottom:134.693333pt;}
.y9f{bottom:140.240000pt;}
.y7f{bottom:143.173333pt;}
.y6f{bottom:145.106667pt;}
.y3d{bottom:145.626667pt;}
.y2f{bottom:150.200000pt;}
.yc1{bottom:153.333333pt;}
.y74{bottom:154.906667pt;}
.y97{bottom:155.093333pt;}
.ybe{bottom:155.266667pt;}
.ya0{bottom:159.573333pt;}
.y3c{bottom:161.933333pt;}
.y6e{bottom:166.200000pt;}
.y3b{bottom:166.733333pt;}
.y5f{bottom:169.733333pt;}
.y2e{bottom:171.266667pt;}
.y95{bottom:173.666667pt;}
.y98{bottom:174.466667pt;}
.yc2{bottom:175.266667pt;}
.ybd{bottom:176.333333pt;}
.y3a{bottom:178.200000pt;}
.ya1{bottom:178.933333pt;}
.yc9{bottom:179.333333pt;}
.y80{bottom:182.333333pt;}
.y76{bottom:186.533333pt;}
.y6c{bottom:187.533333pt;}
.y2c{bottom:192.600000pt;}
.y6d{bottom:193.666667pt;}
.y39{bottom:194.200000pt;}
.y94{bottom:194.733333pt;}
.yc3{bottom:197.200000pt;}
.ybc{bottom:197.400000pt;}
.y99{bottom:197.666667pt;}
.yc8{bottom:197.733333pt;}
.ya2{bottom:198.266667pt;}
.y2d{bottom:198.733333pt;}
.y38{bottom:199.000000pt;}
.y6b{bottom:205.133333pt;}
.y78{bottom:206.933333pt;}
.y37{bottom:210.466667pt;}
.y2b{bottom:213.666667pt;}
.y93{bottom:216.066667pt;}
.ya3{bottom:217.626667pt;}
.ybb{bottom:218.733333pt;}
.yc4{bottom:219.133333pt;}
.y81{bottom:221.533333pt;}
.y60{bottom:227.893333pt;}
.y2a{bottom:235.000000pt;}
.ya4{bottom:236.960000pt;}
.y92{bottom:237.133333pt;}
.yba{bottom:239.800000pt;}
.yc5{bottom:241.066667pt;}
.y7a{bottom:251.133333pt;}
.y29{bottom:256.066667pt;}
.y91{bottom:258.200000pt;}
.y82{bottom:260.733333pt;}
.yb9{bottom:260.866667pt;}
.yc6{bottom:263.000000pt;}
.yc7{bottom:276.960000pt;}
.y28{bottom:277.133333pt;}
.y90{bottom:279.533333pt;}
.yb8{bottom:282.200000pt;}
.y58{bottom:292.600000pt;}
.y27{bottom:298.466667pt;}
.y83{bottom:299.933333pt;}
.y8f{bottom:300.640000pt;}
.yb7{bottom:303.306667pt;}
.y57{bottom:313.693333pt;}
.y26{bottom:319.560000pt;}
.y8e{bottom:321.706667pt;}
.yb6{bottom:324.360000pt;}
.ycd{bottom:324.640000pt;}
.y56{bottom:335.026667pt;}
.y25{bottom:340.626667pt;}
.y8d{bottom:343.040000pt;}
.yb5{bottom:345.706667pt;}
.y55{bottom:356.106667pt;}
.y24{bottom:361.960000pt;}
.y8c{bottom:364.106667pt;}
.yb4{bottom:366.773333pt;}
.y54{bottom:377.440000pt;}
.y23{bottom:383.040000pt;}
.y8b{bottom:385.440000pt;}
.yb3{bottom:387.840000pt;}
.y53{bottom:398.506667pt;}
.y22{bottom:404.106667pt;}
.y8a{bottom:406.506667pt;}
.yb2{bottom:409.173333pt;}
.y52{bottom:419.560000pt;}
.y21{bottom:425.440000pt;}
.y89{bottom:427.560000pt;}
.yb1{bottom:430.226667pt;}
.y51{bottom:440.893333pt;}
.y20{bottom:446.493333pt;}
.y87{bottom:448.893333pt;}
.yb0{bottom:451.333333pt;}
.y88{bottom:455.066667pt;}
.y50{bottom:462.000000pt;}
.y1f{bottom:467.600000pt;}
.y86{bottom:470.000000pt;}
.yaf{bottom:472.666667pt;}
.y4f{bottom:483.066667pt;}
.y85{bottom:487.600000pt;}
.y1e{bottom:488.933333pt;}
.y96{bottom:489.600000pt;}
.yae{bottom:493.733333pt;}
.y36{bottom:495.066667pt;}
.y4e{bottom:504.400000pt;}
.y1d{bottom:510.000000pt;}
.yad{bottom:514.800000pt;}
.y4d{bottom:525.466667pt;}
.y1c{bottom:531.066667pt;}
.y6a{bottom:531.333333pt;}
.yac{bottom:536.133333pt;}
.y4c{bottom:546.533333pt;}
.y1b{bottom:552.400000pt;}
.y69{bottom:552.666667pt;}
.yab{bottom:557.200000pt;}
.y4b{bottom:567.866667pt;}
.y1a{bottom:573.466667pt;}
.y68{bottom:573.733333pt;}
.yaa{bottom:578.266667pt;}
.y4a{bottom:588.933333pt;}
.y19{bottom:594.533333pt;}
.y67{bottom:594.800000pt;}
.ya8{bottom:599.600000pt;}
.ya9{bottom:605.773333pt;}
.y49{bottom:610.026667pt;}
.y18{bottom:615.893333pt;}
.y66{bottom:616.173333pt;}
.ya7{bottom:620.693333pt;}
.y48{bottom:631.360000pt;}
.y17{bottom:636.960000pt;}
.y65{bottom:637.226667pt;}
.ya6{bottom:638.560000pt;}
.yc0{bottom:639.466667pt;}
.y47{bottom:652.440000pt;}
.y16{bottom:658.026667pt;}
.y64{bottom:658.306667pt;}
.y45{bottom:673.506667pt;}
.y15{bottom:679.360000pt;}
.y46{bottom:679.640000pt;}
.y35{bottom:685.506667pt;}
.y44{bottom:691.106667pt;}
.y5b{bottom:693.066667pt;}
.y14{bottom:700.440000pt;}
.y62{bottom:700.706667pt;}
.y63{bottom:706.840000pt;}
.y61{bottom:718.560000pt;}
.y73{bottom:720.266667pt;}
.y13{bottom:721.506667pt;}
.y12{bottom:742.840000pt;}
.y11{bottom:763.933333pt;}
.y10{bottom:785.000000pt;}
.y34{bottom:791.133333pt;}
.yf{bottom:806.333333pt;}
.ye{bottom:827.400000pt;}
.yd{bottom:848.466667pt;}
.yc{bottom:869.800000pt;}
.yb{bottom:890.866667pt;}
.ya{bottom:911.960000pt;}
.y9{bottom:933.293333pt;}
.y8{bottom:954.360000pt;}
.y7{bottom:975.693333pt;}
.y41{bottom:981.840000pt;}
.y5{bottom:1004.760000pt;}
.y4{bottom:1033.026667pt;}
.y3{bottom:1059.200000pt;}
.y2{bottom:1085.066667pt;}
.y1{bottom:1100.533333pt;}
.h19{height:33.656250pt;}
.hc{height:34.546875pt;}
.hb{height:41.875000pt;}
.h10{height:43.000000pt;}
.h8{height:44.875000pt;}
.h1e{height:44.968490pt;}
.h2{height:46.119792pt;}
.h12{height:47.109375pt;}
.h18{height:47.240234pt;}
.h13{height:48.886979pt;}
.h14{height:49.002279pt;}
.hd{height:52.343750pt;}
.h16{height:52.354167pt;}
.hf{height:52.750000pt;}
.he{height:53.046875pt;}
.h3{height:53.750000pt;}
.h6{height:55.343750pt;}
.h9{height:62.812500pt;}
.h1d{height:62.943359pt;}
.h7{height:64.500000pt;}
.h1b{height:65.781915pt;}
.ha{height:66.625000pt;}
.h5{height:73.281250pt;}
.h4{height:75.250000pt;}
.h1a{height:268.266667pt;}
.h15{height:270.400000pt;}
.h11{height:276.266667pt;}
.h17{height:318.400000pt;}
.h1c{height:351.200000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:510.400000pt;}
.w6{width:558.400000pt;}
.w7{width:599.200000pt;}
.w8{width:621.066667pt;}
.w5{width:621.866667pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:8.226667pt;}
.x3b{left:9.533333pt;}
.x31{left:14.766667pt;}
.x3c{left:28.733333pt;}
.x20{left:52.040000pt;}
.x44{left:58.666667pt;}
.x22{left:66.373333pt;}
.x3{left:75.499988pt;}
.x34{left:77.899988pt;}
.x10{left:80.033322pt;}
.x27{left:82.166655pt;}
.x3e{left:84.566655pt;}
.x17{left:85.633322pt;}
.x6{left:100.566655pt;}
.x32{left:109.733333pt;}
.x43{left:113.266667pt;}
.x2e{left:115.306667pt;}
.x2d{left:116.800000pt;}
.x1f{left:124.706667pt;}
.x45{left:133.693333pt;}
.x1e{left:140.800000pt;}
.x11{left:166.733310pt;}
.x12{left:172.066655pt;}
.x38{left:177.333333pt;}
.x1b{left:184.866655pt;}
.xb{left:193.133322pt;}
.xd{left:213.399976pt;}
.xe{left:218.733322pt;}
.x7{left:228.866655pt;}
.x35{left:236.066655pt;}
.x40{left:237.733333pt;}
.x2b{left:259.960000pt;}
.x2c{left:262.173333pt;}
.xf{left:267.573322pt;}
.x9{left:279.026655pt;}
.x2f{left:281.333333pt;}
.x3f{left:286.933333pt;}
.x46{left:292.106655pt;}
.xa{left:306.226655pt;}
.x4{left:311.839988pt;}
.x39{left:329.266667pt;}
.x13{left:336.106643pt;}
.x14{left:341.439988pt;}
.x18{left:343.573310pt;}
.x2a{left:344.706667pt;}
.x19{left:348.906655pt;}
.x5{left:378.266655pt;}
.x8{left:396.666655pt;}
.x2{left:406.266655pt;}
.x41{left:419.400000pt;}
.x30{left:447.400000pt;}
.x1{left:453.733322pt;}
.x42{left:462.066667pt;}
.x3a{left:481.200000pt;}
.x3d{left:546.306643pt;}
.x36{left:551.893310pt;}
.x37{left:557.226655pt;}
.x15{left:592.466643pt;}
.x16{left:597.799988pt;}
.x1c{left:603.399976pt;}
.x1d{left:608.733322pt;}
.x24{left:616.199976pt;}
.x25{left:621.533322pt;}
.x1a{left:652.733322pt;}
.x33{left:675.666655pt;}
.x26{left:676.733322pt;}
.x28{left:705.839976pt;}
.x23{left:707.693322pt;}
.x29{left:711.173322pt;}
.xc{left:718.106655pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  