
    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_ae9c7816aa566f5d81c056ac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6c74192b9ce6ff283f6e3f31.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0245c6992357401f8c30c33c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e76dcb6ccebb1702ec6b61e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84f236a3ea55d69fb81bc25c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d298744313f75669d9a94994.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_6dcf78b6febec593e517756e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4bbf3031f95f288133b74846.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5dad460e72789a5ad4f05cf4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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:ffa;src:url('chunks/assets/font_15c2813c4e1521ea0b1fdb00.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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:ffb;src:url('chunks/assets/font_d0eb47e30ecb2b0a9ef20649.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d57aec0cddd50ea2d2a2fad3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c4b762a2b0f44fd6521ebb15.woff2')format("woff");}.ffd{font-family:ffd;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;}
.ls1{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.ls5{letter-spacing:143.976000px;}
.lsc{letter-spacing:165.744000px;}
.ls7{letter-spacing:172.776000px;}
.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;}
}
.ws3{word-spacing:-63.360000px;}
.ws0{word-spacing:-55.296000px;}
.ws5{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.576000px;}
.ws7{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.613280px;}
.ws2{word-spacing:-15.840000px;}
.ws6{word-spacing:0.000000px;}
._27{margin-left:-13.992000px;}
._39{margin-left:-9.554880px;}
._5{margin-left:-8.375760px;}
._14{margin-left:-7.224000px;}
._0{margin-left:-6.094080px;}
._7{margin-left:-4.920000px;}
._6{margin-left:-3.724800px;}
._2{margin-left:-2.406720px;}
._1{margin-left:-1.245120px;}
._3{width:1.152000px;}
._9{width:2.304000px;}
._a{width:3.384000px;}
._b{width:4.629120px;}
._f{width:6.449760px;}
._e{width:7.509120px;}
._1c{width:8.525760px;}
._10{width:9.576000px;}
._11{width:10.872000px;}
._15{width:12.072000px;}
._16{width:13.872000px;}
._1b{width:15.192000px;}
._8{width:16.632000px;}
._4{width:18.000000px;}
._12{width:19.272000px;}
._13{width:20.376000px;}
._1a{width:21.768000px;}
._19{width:22.824000px;}
._c{width:24.840000px;}
._d{width:26.712000px;}
._1d{width:28.152000px;}
._18{width:29.160000px;}
._17{width:30.456000px;}
._2a{width:41.760000px;}
._1e{width:42.984000px;}
._1f{width:44.064000px;}
._29{width:45.144000px;}
._28{width:46.860000px;}
._2d{width:57.914880px;}
._23{width:60.501120px;}
._2b{width:63.000000px;}
._2c{width:64.044000px;}
._22{width:66.768000px;}
._24{width:67.926720px;}
._21{width:69.261120px;}
._3f{width:71.136000px;}
._20{width:75.408000px;}
._2e{width:76.536000px;}
._2f{width:77.796000px;}
._38{width:83.376000px;}
._25{width:84.528000px;}
._37{width:87.048000px;}
._40{width:91.008000px;}
._34{width:92.592000px;}
._36{width:93.663840px;}
._35{width:94.896000px;}
._31{width:109.800000px;}
._30{width:112.104000px;}
._33{width:122.118720px;}
._32{width:123.432000px;}
._3e{width:133.128000px;}
._3c{width:135.072000px;}
._3d{width:136.080000px;}
._26{width:141.912000px;}
._3a{width:235.980000px;}
._3b{width:238.176000px;}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y93{bottom:4.140000px;}
.y97{bottom:4.500000px;}
.y92{bottom:24.840000px;}
.y9a{bottom:24.885000px;}
.y96{bottom:25.200000px;}
.y9c{bottom:25.245000px;}
.y91{bottom:45.540000px;}
.y99{bottom:45.585000px;}
.y95{bottom:45.900000px;}
.y9b{bottom:45.945000px;}
.y5{bottom:58.716000px;}
.y4{bottom:79.416000px;}
.y3{bottom:97.956000px;}
.y88{bottom:128.376000px;}
.y5c{bottom:128.556000px;}
.y27{bottom:130.356000px;}
.y75{bottom:140.256000px;}
.yf1{bottom:140.436000px;}
.ye6{bottom:140.616000px;}
.yb7{bottom:146.376000px;}
.yb2{bottom:150.690000px;}
.y5b{bottom:152.310000px;}
.y26{bottom:154.290000px;}
.yc6{bottom:157.710000px;}
.ydb{bottom:162.930000px;}
.y74{bottom:164.190000px;}
.ye5{bottom:164.370000px;}
.y4c{bottom:164.550000px;}
.y5a{bottom:176.250000px;}
.y25{bottom:178.230000px;}
.yc5{bottom:181.650000px;}
.yb1{bottom:186.510000px;}
.yda{bottom:186.870000px;}
.y4b{bottom:188.310000px;}
.y8e{bottom:200.190000px;}
.y73{bottom:200.370000px;}
.y24{bottom:202.170000px;}
.yb0{bottom:210.450000px;}
.yd9{bottom:210.990000px;}
.y4a{bottom:212.250000px;}
.y59{bottom:212.430000px;}
.yc4{bottom:217.830000px;}
.y72{bottom:224.310000px;}
.yed{bottom:224.490000px;}
.y23{bottom:226.290000px;}
.yaf{bottom:234.390000px;}
.yd8{bottom:234.930000px;}
.y49{bottom:236.190000px;}
.yf6{bottom:236.370000px;}
.yc3{bottom:241.590000px;}
.y71{bottom:248.250000px;}
.y22{bottom:250.230000px;}
.yae{bottom:258.330000px;}
.yd7{bottom:258.870000px;}
.y87{bottom:260.130000px;}
.y48{bottom:260.310000px;}
.yec{bottom:260.490000px;}
.y70{bottom:272.190000px;}
.y58{bottom:272.370000px;}
.yc2{bottom:277.410000px;}
.yad{bottom:282.270000px;}
.yd6{bottom:282.810000px;}
.y47{bottom:284.250000px;}
.y21{bottom:286.050000px;}
.y57{bottom:296.130000px;}
.y86{bottom:296.310000px;}
.yd5{bottom:306.750000px;}
.y46{bottom:308.190000px;}
.yac{bottom:318.495000px;}
.y6f{bottom:320.115000px;}
.y56{bottom:320.295000px;}
.ye4{bottom:320.475000px;}
.y20{bottom:323.175000px;}
.yc1{bottom:330.735000px;}
.y85{bottom:331.995000px;}
.y45{bottom:332.175000px;}
.yab{bottom:342.255000px;}
.yd4{bottom:342.975000px;}
.ye3{bottom:344.235000px;}
.yc0{bottom:352.155000px;}
.y44{bottom:356.115000px;}
.y55{bottom:356.295000px;}
.y1f{bottom:362.415000px;}
.yaa{bottom:366.195000px;}
.ye2{bottom:368.175000px;}
.y84{bottom:368.355000px;}
.yd3{bottom:378.975000px;}
.y6e{bottom:380.055000px;}
.y43{bottom:380.235000px;}
.y1e{bottom:386.175000px;}
.ya9{bottom:390.315000px;}
.y83{bottom:392.115000px;}
.ybf{bottom:394.275000px;}
.yd2{bottom:402.735000px;}
.y42{bottom:404.175000px;}
.y1d{bottom:410.115000px;}
.ya8{bottom:414.255000px;}
.y6d{bottom:415.875000px;}
.y82{bottom:416.055000px;}
.yd1{bottom:426.855000px;}
.y8d{bottom:428.115000px;}
.y1c{bottom:434.055000px;}
.ybe{bottom:436.395000px;}
.ya7{bottom:438.195000px;}
.ye1{bottom:440.175000px;}
.y41{bottom:440.355000px;}
.yd0{bottom:450.795000px;}
.yeb{bottom:452.055000px;}
.y6c{bottom:452.235000px;}
.y1b{bottom:457.995000px;}
.y40{bottom:464.115000px;}
.y8c{bottom:464.295000px;}
.ya6{bottom:474.375000px;}
.ycf{bottom:474.735000px;}
.y6b{bottom:475.995000px;}
.yf5{bottom:476.175000px;}
.ybd{bottom:478.515000px;}
.y1a{bottom:482.115000px;}
.y3f{bottom:488.055000px;}
.y81{bottom:488.235000px;}
.ya5{bottom:498.135000px;}
.yce{bottom:498.675000px;}
.y6a{bottom:500.115000px;}
.y19{bottom:506.055000px;}
.y3e{bottom:511.995000px;}
.ya4{bottom:522.075000px;}
.ybc{bottom:522.255000px;}
.ycd{bottom:522.615000px;}
.y69{bottom:524.055000px;}
.ye0{bottom:524.235000px;}
.y18{bottom:529.995000px;}
.y80{bottom:535.935000px;}
.y3d{bottom:536.115000px;}
.ya3{bottom:546.195000px;}
.ycc{bottom:546.735000px;}
.y68{bottom:547.995000px;}
.yf9{bottom:548.175000px;}
.y17{bottom:553.935000px;}
.y8b{bottom:559.875000px;}
.y3c{bottom:560.055000px;}
.ya2{bottom:570.165000px;}
.y67{bottom:571.965000px;}
.y7f{bottom:572.145000px;}
.y16{bottom:577.905000px;}
.ycb{bottom:582.405000px;}
.y3b{bottom:584.025000px;}
.ybb{bottom:584.205000px;}
.ya1{bottom:594.105000px;}
.y66{bottom:595.905000px;}
.yf4{bottom:596.085000px;}
.y15{bottom:602.025000px;}
.yb6{bottom:607.785000px;}
.y3a{bottom:607.965000px;}
.yca{bottom:618.765000px;}
.yf0{bottom:620.025000px;}
.y14{bottom:625.965000px;}
.ya0{bottom:630.285000px;}
.yba{bottom:631.545000px;}
.y39{bottom:631.905000px;}
.y65{bottom:632.085000px;}
.yc9{bottom:642.705000px;}
.yef{bottom:643.965000px;}
.y54{bottom:644.145000px;}
.y13{bottom:649.905000px;}
.y9f{bottom:654.045000px;}
.y7e{bottom:655.845000px;}
.y38{bottom:656.025000px;}
.yc8{bottom:666.645000px;}
.y53{bottom:667.905000px;}
.y64{bottom:668.085000px;}
.y12{bottom:673.845000px;}
.y37{bottom:679.965000px;}
.yea{bottom:680.145000px;}
.y9e{bottom:689.865000px;}
.y52{bottom:691.845000px;}
.y7d{bottom:692.025000px;}
.y11{bottom:697.785000px;}
.ydf{bottom:703.905000px;}
.y8a{bottom:704.085000px;}
.y63{bottom:715.785000px;}
.y51{bottom:715.965000px;}
.y36{bottom:716.145000px;}
.y10{bottom:721.905000px;}
.yde{bottom:727.845000px;}
.y35{bottom:739.905000px;}
.y89{bottom:740.085000px;}
.y9d{bottom:743.145000px;}
.yf{bottom:745.845000px;}
.ydd{bottom:751.785000px;}
.y7c{bottom:751.965000px;}
.y34{bottom:763.845000px;}
.ye{bottom:769.785000px;}
.y7b{bottom:775.725000px;}
.yf8{bottom:775.905000px;}
.y33{bottom:787.785000px;}
.yd{bottom:793.725000px;}
.yee{bottom:799.665000px;}
.yb5{bottom:799.845000px;}
.yb9{bottom:800.025000px;}
.y98{bottom:805.965000px;}
.y32{bottom:811.770000px;}
.y7a{bottom:811.950000px;}
.yc{bottom:817.710000px;}
.yb4{bottom:823.830000px;}
.y79{bottom:835.710000px;}
.y31{bottom:835.890000px;}
.ydc{bottom:836.070000px;}
.y62{bottom:847.590000px;}
.yb3{bottom:847.770000px;}
.yb{bottom:852.810000px;}
.y30{bottom:859.830000px;}
.ye9{bottom:860.010000px;}
.y94{bottom:868.830000px;}
.y78{bottom:871.530000px;}
.yb8{bottom:871.710000px;}
.y2f{bottom:883.770000px;}
.y61{bottom:883.950000px;}
.ya{bottom:885.750000px;}
.yf7{bottom:895.830000px;}
.y50{bottom:896.010000px;}
.y2e{bottom:907.710000px;}
.y77{bottom:907.890000px;}
.y9{bottom:918.510000px;}
.y4f{bottom:919.770000px;}
.y2d{bottom:931.650000px;}
.y90{bottom:933.270000px;}
.y4e{bottom:943.710000px;}
.yf2{bottom:943.890000px;}
.y60{bottom:955.770000px;}
.y4d{bottom:967.650000px;}
.y2c{bottom:967.830000px;}
.y8{bottom:968.550000px;}
.y5f{bottom:979.710000px;}
.y2b{bottom:991.590000px;}
.yc7{bottom:1003.470000px;}
.y5e{bottom:1003.650000px;}
.y7{bottom:1012.110000px;}
.y2a{bottom:1015.710000px;}
.y76{bottom:1015.890000px;}
.ye8{bottom:1027.590000px;}
.y29{bottom:1039.650000px;}
.y5d{bottom:1039.830000px;}
.y6{bottom:1052.070000px;}
.y8f{bottom:1063.260000px;}
.ye7{bottom:1063.440000px;}
.y28{bottom:1063.620000px;}
.yf3{bottom:1063.800000px;}
.y2{bottom:1085.940000px;}
.y1{bottom:1118.700000px;}
.h13{height:20.685000px;}
.h12{height:41.385000px;}
.h11{height:41.430000px;}
.ha{height:50.273438px;}
.h9{height:50.800781px;}
.hd{height:59.343750px;}
.he{height:62.085000px;}
.h10{height:62.100000px;}
.hf{height:62.122500px;}
.h6{height:62.184375px;}
.h8{height:63.855000px;}
.h7{height:65.958750px;}
.hb{height:70.664062px;}
.h1{height:71.613281px;}
.h2{height:73.722656px;}
.h14{height:74.004654px;}
.hc{height:74.953125px;}
.h5{height:82.676953px;}
.h3{height:84.837305px;}
.h4{height:125.171719px;}
.h0{height:1188.000000px;}
.w8{width:99.756000px;}
.w2{width:102.441000px;}
.w3{width:107.460000px;}
.w1{width:112.845000px;}
.w7{width:130.701000px;}
.w5{width:133.041000px;}
.w4{width:138.456000px;}
.w6{width:150.471000px;}
.w9{width:156.225000px;}
.wa{width:160.575000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:7.725000px;}
.x2{left:108.036000px;}
.x14{left:135.036000px;}
.x3{left:138.456000px;}
.x1{left:141.156000px;}
.x9{left:160.425000px;}
.x15{left:162.030000px;}
.x6{left:173.730000px;}
.xf{left:259.965000px;}
.xb{left:274.005000px;}
.x4{left:331.095000px;}
.x7{left:343.155000px;}
.x5{left:372.495000px;}
.xc{left:377.175000px;}
.x10{left:391.395000px;}
.x13{left:402.555000px;}
.x8{left:459.075000px;}
.xd{left:485.535000px;}
.x11{left:491.880000px;}
.xe{left:624.720000px;}
.x12{left:648.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls5{letter-spacing:127.978667pt;}
.lsc{letter-spacing:147.328000pt;}
.ls7{letter-spacing:153.578667pt;}
.ws3{word-spacing:-56.320000pt;}
.ws0{word-spacing:-49.152000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.767360pt;}
.ws2{word-spacing:-14.080000pt;}
.ws6{word-spacing:0.000000pt;}
._27{margin-left:-12.437333pt;}
._39{margin-left:-8.493227pt;}
._5{margin-left:-7.445120pt;}
._14{margin-left:-6.421333pt;}
._0{margin-left:-5.416960pt;}
._7{margin-left:-4.373333pt;}
._6{margin-left:-3.310933pt;}
._2{margin-left:-2.139307pt;}
._1{margin-left:-1.106773pt;}
._3{width:1.024000pt;}
._9{width:2.048000pt;}
._a{width:3.008000pt;}
._b{width:4.114773pt;}
._f{width:5.733120pt;}
._e{width:6.674773pt;}
._1c{width:7.578453pt;}
._10{width:8.512000pt;}
._11{width:9.664000pt;}
._15{width:10.730667pt;}
._16{width:12.330667pt;}
._1b{width:13.504000pt;}
._8{width:14.784000pt;}
._4{width:16.000000pt;}
._12{width:17.130667pt;}
._13{width:18.112000pt;}
._1a{width:19.349333pt;}
._19{width:20.288000pt;}
._c{width:22.080000pt;}
._d{width:23.744000pt;}
._1d{width:25.024000pt;}
._18{width:25.920000pt;}
._17{width:27.072000pt;}
._2a{width:37.120000pt;}
._1e{width:38.208000pt;}
._1f{width:39.168000pt;}
._29{width:40.128000pt;}
._28{width:41.653333pt;}
._2d{width:51.479893pt;}
._23{width:53.778773pt;}
._2b{width:56.000000pt;}
._2c{width:56.928000pt;}
._22{width:59.349333pt;}
._24{width:60.379307pt;}
._21{width:61.565440pt;}
._3f{width:63.232000pt;}
._20{width:67.029333pt;}
._2e{width:68.032000pt;}
._2f{width:69.152000pt;}
._38{width:74.112000pt;}
._25{width:75.136000pt;}
._37{width:77.376000pt;}
._40{width:80.896000pt;}
._34{width:82.304000pt;}
._36{width:83.256747pt;}
._35{width:84.352000pt;}
._31{width:97.600000pt;}
._30{width:99.648000pt;}
._33{width:108.549973pt;}
._32{width:109.717333pt;}
._3e{width:118.336000pt;}
._3c{width:120.064000pt;}
._3d{width:120.960000pt;}
._26{width:126.144000pt;}
._3a{width:209.760000pt;}
._3b{width:211.712000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:3.680000pt;}
.y97{bottom:4.000000pt;}
.y92{bottom:22.080000pt;}
.y9a{bottom:22.120000pt;}
.y96{bottom:22.400000pt;}
.y9c{bottom:22.440000pt;}
.y91{bottom:40.480000pt;}
.y99{bottom:40.520000pt;}
.y95{bottom:40.800000pt;}
.y9b{bottom:40.840000pt;}
.y5{bottom:52.192000pt;}
.y4{bottom:70.592000pt;}
.y3{bottom:87.072000pt;}
.y88{bottom:114.112000pt;}
.y5c{bottom:114.272000pt;}
.y27{bottom:115.872000pt;}
.y75{bottom:124.672000pt;}
.yf1{bottom:124.832000pt;}
.ye6{bottom:124.992000pt;}
.yb7{bottom:130.112000pt;}
.yb2{bottom:133.946667pt;}
.y5b{bottom:135.386667pt;}
.y26{bottom:137.146667pt;}
.yc6{bottom:140.186667pt;}
.ydb{bottom:144.826667pt;}
.y74{bottom:145.946667pt;}
.ye5{bottom:146.106667pt;}
.y4c{bottom:146.266667pt;}
.y5a{bottom:156.666667pt;}
.y25{bottom:158.426667pt;}
.yc5{bottom:161.466667pt;}
.yb1{bottom:165.786667pt;}
.yda{bottom:166.106667pt;}
.y4b{bottom:167.386667pt;}
.y8e{bottom:177.946667pt;}
.y73{bottom:178.106667pt;}
.y24{bottom:179.706667pt;}
.yb0{bottom:187.066667pt;}
.yd9{bottom:187.546667pt;}
.y4a{bottom:188.666667pt;}
.y59{bottom:188.826667pt;}
.yc4{bottom:193.626667pt;}
.y72{bottom:199.386667pt;}
.yed{bottom:199.546667pt;}
.y23{bottom:201.146667pt;}
.yaf{bottom:208.346667pt;}
.yd8{bottom:208.826667pt;}
.y49{bottom:209.946667pt;}
.yf6{bottom:210.106667pt;}
.yc3{bottom:214.746667pt;}
.y71{bottom:220.666667pt;}
.y22{bottom:222.426667pt;}
.yae{bottom:229.626667pt;}
.yd7{bottom:230.106667pt;}
.y87{bottom:231.226667pt;}
.y48{bottom:231.386667pt;}
.yec{bottom:231.546667pt;}
.y70{bottom:241.946667pt;}
.y58{bottom:242.106667pt;}
.yc2{bottom:246.586667pt;}
.yad{bottom:250.906667pt;}
.yd6{bottom:251.386667pt;}
.y47{bottom:252.666667pt;}
.y21{bottom:254.266667pt;}
.y57{bottom:263.226667pt;}
.y86{bottom:263.386667pt;}
.yd5{bottom:272.666667pt;}
.y46{bottom:273.946667pt;}
.yac{bottom:283.106667pt;}
.y6f{bottom:284.546667pt;}
.y56{bottom:284.706667pt;}
.ye4{bottom:284.866667pt;}
.y20{bottom:287.266667pt;}
.yc1{bottom:293.986667pt;}
.y85{bottom:295.106667pt;}
.y45{bottom:295.266667pt;}
.yab{bottom:304.226667pt;}
.yd4{bottom:304.866667pt;}
.ye3{bottom:305.986667pt;}
.yc0{bottom:313.026667pt;}
.y44{bottom:316.546667pt;}
.y55{bottom:316.706667pt;}
.y1f{bottom:322.146667pt;}
.yaa{bottom:325.506667pt;}
.ye2{bottom:327.266667pt;}
.y84{bottom:327.426667pt;}
.yd3{bottom:336.866667pt;}
.y6e{bottom:337.826667pt;}
.y43{bottom:337.986667pt;}
.y1e{bottom:343.266667pt;}
.ya9{bottom:346.946667pt;}
.y83{bottom:348.546667pt;}
.ybf{bottom:350.466667pt;}
.yd2{bottom:357.986667pt;}
.y42{bottom:359.266667pt;}
.y1d{bottom:364.546667pt;}
.ya8{bottom:368.226667pt;}
.y6d{bottom:369.666667pt;}
.y82{bottom:369.826667pt;}
.yd1{bottom:379.426667pt;}
.y8d{bottom:380.546667pt;}
.y1c{bottom:385.826667pt;}
.ybe{bottom:387.906667pt;}
.ya7{bottom:389.506667pt;}
.ye1{bottom:391.266667pt;}
.y41{bottom:391.426667pt;}
.yd0{bottom:400.706667pt;}
.yeb{bottom:401.826667pt;}
.y6c{bottom:401.986667pt;}
.y1b{bottom:407.106667pt;}
.y40{bottom:412.546667pt;}
.y8c{bottom:412.706667pt;}
.ya6{bottom:421.666667pt;}
.ycf{bottom:421.986667pt;}
.y6b{bottom:423.106667pt;}
.yf5{bottom:423.266667pt;}
.ybd{bottom:425.346667pt;}
.y1a{bottom:428.546667pt;}
.y3f{bottom:433.826667pt;}
.y81{bottom:433.986667pt;}
.ya5{bottom:442.786667pt;}
.yce{bottom:443.266667pt;}
.y6a{bottom:444.546667pt;}
.y19{bottom:449.826667pt;}
.y3e{bottom:455.106667pt;}
.ya4{bottom:464.066667pt;}
.ybc{bottom:464.226667pt;}
.ycd{bottom:464.546667pt;}
.y69{bottom:465.826667pt;}
.ye0{bottom:465.986667pt;}
.y18{bottom:471.106667pt;}
.y80{bottom:476.386667pt;}
.y3d{bottom:476.546667pt;}
.ya3{bottom:485.506667pt;}
.ycc{bottom:485.986667pt;}
.y68{bottom:487.106667pt;}
.yf9{bottom:487.266667pt;}
.y17{bottom:492.386667pt;}
.y8b{bottom:497.666667pt;}
.y3c{bottom:497.826667pt;}
.ya2{bottom:506.813333pt;}
.y67{bottom:508.413333pt;}
.y7f{bottom:508.573333pt;}
.y16{bottom:513.693333pt;}
.ycb{bottom:517.693333pt;}
.y3b{bottom:519.133333pt;}
.ybb{bottom:519.293333pt;}
.ya1{bottom:528.093333pt;}
.y66{bottom:529.693333pt;}
.yf4{bottom:529.853333pt;}
.y15{bottom:535.133333pt;}
.yb6{bottom:540.253333pt;}
.y3a{bottom:540.413333pt;}
.yca{bottom:550.013333pt;}
.yf0{bottom:551.133333pt;}
.y14{bottom:556.413333pt;}
.ya0{bottom:560.253333pt;}
.yba{bottom:561.373333pt;}
.y39{bottom:561.693333pt;}
.y65{bottom:561.853333pt;}
.yc9{bottom:571.293333pt;}
.yef{bottom:572.413333pt;}
.y54{bottom:572.573333pt;}
.y13{bottom:577.693333pt;}
.y9f{bottom:581.373333pt;}
.y7e{bottom:582.973333pt;}
.y38{bottom:583.133333pt;}
.yc8{bottom:592.573333pt;}
.y53{bottom:593.693333pt;}
.y64{bottom:593.853333pt;}
.y12{bottom:598.973333pt;}
.y37{bottom:604.413333pt;}
.yea{bottom:604.573333pt;}
.y9e{bottom:613.213333pt;}
.y52{bottom:614.973333pt;}
.y7d{bottom:615.133333pt;}
.y11{bottom:620.253333pt;}
.ydf{bottom:625.693333pt;}
.y8a{bottom:625.853333pt;}
.y63{bottom:636.253333pt;}
.y51{bottom:636.413333pt;}
.y36{bottom:636.573333pt;}
.y10{bottom:641.693333pt;}
.yde{bottom:646.973333pt;}
.y35{bottom:657.693333pt;}
.y89{bottom:657.853333pt;}
.y9d{bottom:660.573333pt;}
.yf{bottom:662.973333pt;}
.ydd{bottom:668.253333pt;}
.y7c{bottom:668.413333pt;}
.y34{bottom:678.973333pt;}
.ye{bottom:684.253333pt;}
.y7b{bottom:689.533333pt;}
.yf8{bottom:689.693333pt;}
.y33{bottom:700.253333pt;}
.yd{bottom:705.533333pt;}
.yee{bottom:710.813333pt;}
.yb5{bottom:710.973333pt;}
.yb9{bottom:711.133333pt;}
.y98{bottom:716.413333pt;}
.y32{bottom:721.573333pt;}
.y7a{bottom:721.733333pt;}
.yc{bottom:726.853333pt;}
.yb4{bottom:732.293333pt;}
.y79{bottom:742.853333pt;}
.y31{bottom:743.013333pt;}
.ydc{bottom:743.173333pt;}
.y62{bottom:753.413333pt;}
.yb3{bottom:753.573333pt;}
.yb{bottom:758.053333pt;}
.y30{bottom:764.293333pt;}
.ye9{bottom:764.453333pt;}
.y94{bottom:772.293333pt;}
.y78{bottom:774.693333pt;}
.yb8{bottom:774.853333pt;}
.y2f{bottom:785.573333pt;}
.y61{bottom:785.733333pt;}
.ya{bottom:787.333333pt;}
.yf7{bottom:796.293333pt;}
.y50{bottom:796.453333pt;}
.y2e{bottom:806.853333pt;}
.y77{bottom:807.013333pt;}
.y9{bottom:816.453333pt;}
.y4f{bottom:817.573333pt;}
.y2d{bottom:828.133333pt;}
.y90{bottom:829.573333pt;}
.y4e{bottom:838.853333pt;}
.yf2{bottom:839.013333pt;}
.y60{bottom:849.573333pt;}
.y4d{bottom:860.133333pt;}
.y2c{bottom:860.293333pt;}
.y8{bottom:860.933333pt;}
.y5f{bottom:870.853333pt;}
.y2b{bottom:881.413333pt;}
.yc7{bottom:891.973333pt;}
.y5e{bottom:892.133333pt;}
.y7{bottom:899.653333pt;}
.y2a{bottom:902.853333pt;}
.y76{bottom:903.013333pt;}
.ye8{bottom:913.413333pt;}
.y29{bottom:924.133333pt;}
.y5d{bottom:924.293333pt;}
.y6{bottom:935.173333pt;}
.y8f{bottom:945.120000pt;}
.ye7{bottom:945.280000pt;}
.y28{bottom:945.440000pt;}
.yf3{bottom:945.600000pt;}
.y2{bottom:965.280000pt;}
.y1{bottom:994.400000pt;}
.h13{height:18.386667pt;}
.h12{height:36.786667pt;}
.h11{height:36.826667pt;}
.ha{height:44.687500pt;}
.h9{height:45.156250pt;}
.hd{height:52.750000pt;}
.he{height:55.186667pt;}
.h10{height:55.200000pt;}
.hf{height:55.220000pt;}
.h6{height:55.275000pt;}
.h8{height:56.760000pt;}
.h7{height:58.630000pt;}
.hb{height:62.812500pt;}
.h1{height:63.656250pt;}
.h2{height:65.531250pt;}
.h14{height:65.781915pt;}
.hc{height:66.625000pt;}
.h5{height:73.490625pt;}
.h3{height:75.410937pt;}
.h4{height:111.263750pt;}
.h0{height:1056.000000pt;}
.w8{width:88.672000pt;}
.w2{width:91.058667pt;}
.w3{width:95.520000pt;}
.w1{width:100.306667pt;}
.w7{width:116.178667pt;}
.w5{width:118.258667pt;}
.w4{width:123.072000pt;}
.w6{width:133.752000pt;}
.w9{width:138.866667pt;}
.wa{width:142.733333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.866667pt;}
.x2{left:96.032000pt;}
.x14{left:120.032000pt;}
.x3{left:123.072000pt;}
.x1{left:125.472000pt;}
.x9{left:142.600000pt;}
.x15{left:144.026667pt;}
.x6{left:154.426667pt;}
.xf{left:231.080000pt;}
.xb{left:243.560000pt;}
.x4{left:294.306667pt;}
.x7{left:305.026667pt;}
.x5{left:331.106667pt;}
.xc{left:335.266667pt;}
.x10{left:347.906667pt;}
.x13{left:357.826667pt;}
.x8{left:408.066667pt;}
.xd{left:431.586667pt;}
.x11{left:437.226667pt;}
.xe{left:555.306667pt;}
.x12{left:576.746667pt;}
}




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