
    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_8d8aa417599585aaf604fb1b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_a14bec994310e435a28484ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.137000;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_bb81b86f9785766bc0993cdd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_08f31adef9bbc8d9c1f8d810.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952637;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_881ee847f70723db94b23f88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984000;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_a6f75865bd7ac171af0486d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.153000;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_ee9ba43ec83f4010f9f9fd3b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000048;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_7ae5211304f723863e0041fe.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ccf6f3e94e32cef35a5e1c2b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_22ffcacb85fa484544a6b620.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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);}
.v5{vertical-align:-19.980000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982600px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:21.978600px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:149.233200px;}
.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;}
}
.ws0{word-spacing:-21.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.000000px;}
.ws8{word-spacing:-13.500000px;}
.ws6{word-spacing:-9.619500px;}
.ws1{word-spacing:-9.427110px;}
.ws7{word-spacing:-8.745000px;}
.ws2{word-spacing:-7.870500px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-2453.400000px;}
._34{margin-left:-9.720000px;}
._17{margin-left:-8.580000px;}
._8{margin-left:-6.483030px;}
._0{margin-left:-4.440000px;}
._9{margin-left:-3.433500px;}
._7{margin-left:-2.376000px;}
._5{margin-left:-1.092000px;}
._2{width:1.764000px;}
._4{width:3.444000px;}
._b{width:5.130000px;}
._a{width:6.318000px;}
._c{width:7.915500px;}
._f{width:9.372000px;}
._6{width:10.668000px;}
._e{width:12.342000px;}
._11{width:13.356000px;}
._12{width:14.664000px;}
._35{width:16.656000px;}
._13{width:17.754000px;}
._d{width:18.810000px;}
._14{width:20.394000px;}
._15{width:21.780000px;}
._16{width:23.166000px;}
._3{width:24.948000px;}
._18{width:26.004000px;}
._19{width:27.060000px;}
._1d{width:28.200000px;}
._1c{width:29.634000px;}
._1b{width:31.350000px;}
._1a{width:32.538000px;}
._21{width:36.420000px;}
._2b{width:40.800000px;}
._23{width:49.380000px;}
._26{width:53.880000px;}
._2f{width:56.283000px;}
._33{width:59.502000px;}
._24{width:71.700000px;}
._31{width:74.089500px;}
._29{width:75.153000px;}
._20{width:82.320000px;}
._2c{width:86.100000px;}
._32{width:94.896000px;}
._28{width:109.800000px;}
._2e{width:111.600000px;}
._30{width:115.860000px;}
._27{width:124.680000px;}
._2d{width:126.480000px;}
._25{width:128.400000px;}
._2a{width:130.500000px;}
._1e{width:150.180000px;}
._1f{width:196.080000px;}
._22{width:212.856000px;}
._1{width:1777.380000px;}
.fc2{color:rgb(239,50,57);}
.fc1{color:rgb(17,21,20);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:61.097250px;}
.y1{bottom:61.097550px;}
.yd9{bottom:61.098000px;}
.y8e{bottom:106.752300px;}
.yac{bottom:106.752450px;}
.y29{bottom:106.752750px;}
.yd8{bottom:124.752450px;}
.y10e{bottom:125.765700px;}
.y8d{bottom:126.552300px;}
.yab{bottom:126.552450px;}
.y28{bottom:126.552750px;}
.yd7{bottom:140.952450px;}
.y10d{bottom:141.965700px;}
.y8c{bottom:146.352300px;}
.yaa{bottom:146.352450px;}
.y27{bottom:146.352750px;}
.yd6{bottom:157.152450px;}
.y10c{bottom:158.165700px;}
.y8b{bottom:166.152300px;}
.ya9{bottom:166.152450px;}
.y26{bottom:166.152750px;}
.yd5{bottom:173.352450px;}
.y10b{bottom:174.365700px;}
.y8a{bottom:185.952300px;}
.ya8{bottom:185.952450px;}
.y25{bottom:185.952750px;}
.yd4{bottom:189.552450px;}
.y10a{bottom:190.565700px;}
.y89{bottom:205.752300px;}
.ya7{bottom:205.752450px;}
.y24{bottom:205.752750px;}
.y109{bottom:206.765700px;}
.yd3{bottom:221.952450px;}
.y108{bottom:222.965700px;}
.y88{bottom:225.552300px;}
.ya6{bottom:225.552450px;}
.y23{bottom:225.552750px;}
.yd2{bottom:238.152450px;}
.y107{bottom:239.165700px;}
.y87{bottom:245.352300px;}
.y22{bottom:245.352750px;}
.yd1{bottom:254.352450px;}
.y106{bottom:255.365700px;}
.ya4{bottom:265.152300px;}
.y86{bottom:265.152450px;}
.y21{bottom:265.152750px;}
.yd0{bottom:270.552450px;}
.y105{bottom:271.565700px;}
.ya3{bottom:284.952300px;}
.y85{bottom:284.952450px;}
.y31{bottom:284.952750px;}
.ycf{bottom:286.752450px;}
.y104{bottom:287.765700px;}
.yce{bottom:302.952450px;}
.y103{bottom:303.965700px;}
.ya2{bottom:304.752300px;}
.y84{bottom:304.752450px;}
.y30{bottom:304.752750px;}
.ycd{bottom:319.152450px;}
.y102{bottom:320.165700px;}
.ya1{bottom:324.552300px;}
.y83{bottom:324.552450px;}
.y2f{bottom:324.552750px;}
.y111{bottom:326.353200px;}
.y2{bottom:332.147550px;}
.ycc{bottom:335.352450px;}
.y101{bottom:336.365700px;}
.ya0{bottom:344.352300px;}
.y82{bottom:344.352450px;}
.y2e{bottom:344.352750px;}
.ycb{bottom:351.552450px;}
.y100{bottom:352.565700px;}
.y9f{bottom:364.152300px;}
.y81{bottom:364.152450px;}
.y2d{bottom:364.152750px;}
.y110{bottom:364.153050px;}
.y20{bottom:365.952750px;}
.yca{bottom:367.752450px;}
.yff{bottom:368.765700px;}
.y9e{bottom:383.952300px;}
.y80{bottom:383.952450px;}
.y1f{bottom:383.952750px;}
.y10f{bottom:383.953050px;}
.yfe{bottom:384.965700px;}
.y61{bottom:396.935400px;}
.yfd{bottom:401.165700px;}
.y9d{bottom:403.752300px;}
.y7f{bottom:403.752450px;}
.y2c{bottom:403.752750px;}
.y60{bottom:414.935400px;}
.yfc{bottom:417.365700px;}
.y1e{bottom:418.152750px;}
.y9c{bottom:423.552300px;}
.y7e{bottom:423.552450px;}
.y2b{bottom:423.552750px;}
.yc9{bottom:428.952450px;}
.y5f{bottom:432.935400px;}
.yfb{bottom:433.565700px;}
.y1d{bottom:434.352750px;}
.y9b{bottom:443.352300px;}
.y7d{bottom:443.352450px;}
.y2a{bottom:443.352750px;}
.yc8{bottom:445.152450px;}
.yfa{bottom:449.765700px;}
.y1c{bottom:450.552750px;}
.y50{bottom:456.368400px;}
.yc7{bottom:461.352450px;}
.y9a{bottom:463.152300px;}
.y7c{bottom:463.152450px;}
.y4c{bottom:463.152750px;}
.yf9{bottom:465.965700px;}
.y1b{bottom:466.752750px;}
.y4f{bottom:474.368400px;}
.yc6{bottom:477.552450px;}
.y35{bottom:480.935400px;}
.yf8{bottom:482.165700px;}
.y99{bottom:482.952300px;}
.y7b{bottom:482.952450px;}
.y1a{bottom:482.952750px;}
.y4e{bottom:492.368400px;}
.yc5{bottom:493.752450px;}
.yf7{bottom:498.365700px;}
.y34{bottom:498.935400px;}
.y19{bottom:499.152750px;}
.ya5{bottom:502.752300px;}
.y7a{bottom:502.752450px;}
.y4b{bottom:502.752750px;}
.yc4{bottom:509.952450px;}
.y4d{bottom:510.368400px;}
.yf6{bottom:514.565700px;}
.y18{bottom:515.352750px;}
.y33{bottom:516.935400px;}
.y98{bottom:522.552300px;}
.y79{bottom:522.552450px;}
.y4a{bottom:522.552750px;}
.yc3{bottom:526.152450px;}
.yf5{bottom:530.765700px;}
.y17{bottom:531.552750px;}
.y32{bottom:534.935400px;}
.y97{bottom:542.352300px;}
.y78{bottom:542.352450px;}
.y49{bottom:542.352750px;}
.yf4{bottom:546.965700px;}
.y16{bottom:547.752750px;}
.yc2{bottom:558.552450px;}
.y96{bottom:562.152300px;}
.y77{bottom:562.152450px;}
.y48{bottom:562.152750px;}
.yf3{bottom:563.165700px;}
.y15{bottom:563.952750px;}
.yc1{bottom:574.752450px;}
.yf2{bottom:579.365700px;}
.y14{bottom:580.152750px;}
.y95{bottom:581.952300px;}
.y76{bottom:581.952450px;}
.y47{bottom:581.952750px;}
.yc0{bottom:590.952450px;}
.yf1{bottom:595.565700px;}
.y13{bottom:596.352750px;}
.y94{bottom:601.752300px;}
.y75{bottom:601.752450px;}
.y46{bottom:601.752750px;}
.ybf{bottom:607.152450px;}
.yf0{bottom:611.765700px;}
.y12{bottom:612.552750px;}
.y93{bottom:621.552300px;}
.y74{bottom:621.552450px;}
.y45{bottom:621.552750px;}
.ybe{bottom:623.352450px;}
.yef{bottom:627.965700px;}
.y11{bottom:628.752750px;}
.y5a{bottom:637.150800px;}
.ybd{bottom:639.552450px;}
.y92{bottom:641.352300px;}
.y73{bottom:641.352450px;}
.y44{bottom:641.352750px;}
.yee{bottom:644.165700px;}
.y10{bottom:644.952750px;}
.ybc{bottom:655.752450px;}
.y59{bottom:657.523500px;}
.yed{bottom:660.365700px;}
.y91{bottom:661.152300px;}
.y72{bottom:661.152450px;}
.yf{bottom:661.152750px;}
.y124{bottom:661.183500px;}
.ybb{bottom:671.952450px;}
.yec{bottom:676.565700px;}
.ye{bottom:677.352750px;}
.y123{bottom:677.383500px;}
.y90{bottom:680.952300px;}
.y71{bottom:680.952450px;}
.y43{bottom:680.952750px;}
.y58{bottom:685.408500px;}
.yba{bottom:688.152450px;}
.yeb{bottom:692.765700px;}
.yd{bottom:693.552750px;}
.y122{bottom:693.583500px;}
.y8f{bottom:700.752300px;}
.y70{bottom:700.752450px;}
.y42{bottom:700.752750px;}
.yb9{bottom:704.352450px;}
.yea{bottom:708.965700px;}
.yc{bottom:709.752750px;}
.y121{bottom:709.783500px;}
.y57{bottom:713.293500px;}
.y6f{bottom:720.552300px;}
.yb8{bottom:720.552450px;}
.y41{bottom:720.552750px;}
.ye9{bottom:725.165700px;}
.yb{bottom:725.952750px;}
.y120{bottom:725.983500px;}
.y6e{bottom:740.352300px;}
.y40{bottom:740.352750px;}
.y56{bottom:741.178500px;}
.ye8{bottom:741.365700px;}
.y11f{bottom:742.183500px;}
.ya{bottom:746.648400px;}
.ye7{bottom:757.565700px;}
.y11e{bottom:758.383500px;}
.y6d{bottom:760.152300px;}
.yb7{bottom:760.152450px;}
.y3f{bottom:760.152750px;}
.y9{bottom:762.848400px;}
.y55{bottom:769.063500px;}
.ye6{bottom:773.765700px;}
.y11d{bottom:774.583500px;}
.y8{bottom:779.048250px;}
.y6c{bottom:779.952300px;}
.yb6{bottom:779.952450px;}
.y3e{bottom:779.952750px;}
.ye5{bottom:789.965700px;}
.y7{bottom:790.752750px;}
.y11c{bottom:790.783500px;}
.y54{bottom:796.944000px;}
.y6b{bottom:799.752300px;}
.yb5{bottom:799.752450px;}
.y3d{bottom:799.752750px;}
.ye4{bottom:806.165700px;}
.y11b{bottom:806.983500px;}
.y6{bottom:811.448250px;}
.y6a{bottom:819.552300px;}
.yb4{bottom:819.552450px;}
.y3c{bottom:819.552750px;}
.ye3{bottom:822.365700px;}
.y11a{bottom:823.183500px;}
.y53{bottom:824.829000px;}
.ye2{bottom:838.565700px;}
.y69{bottom:839.352300px;}
.yb3{bottom:839.352450px;}
.y5{bottom:839.352750px;}
.y119{bottom:839.383500px;}
.y52{bottom:852.714000px;}
.ye1{bottom:854.765700px;}
.y118{bottom:855.583500px;}
.y68{bottom:859.152300px;}
.yb2{bottom:859.152450px;}
.y3b{bottom:859.152750px;}
.y51{bottom:870.714000px;}
.ye0{bottom:870.965700px;}
.y117{bottom:871.783500px;}
.y67{bottom:878.952300px;}
.yb1{bottom:878.952450px;}
.y3a{bottom:878.952750px;}
.y4{bottom:884.880300px;}
.ydf{bottom:887.165700px;}
.y116{bottom:887.983500px;}
.y66{bottom:898.752300px;}
.yb0{bottom:898.752450px;}
.y39{bottom:898.752750px;}
.yde{bottom:903.365700px;}
.y115{bottom:904.183500px;}
.y5e{bottom:904.945800px;}
.y3{bottom:910.080300px;}
.y65{bottom:918.552300px;}
.yaf{bottom:918.552450px;}
.y38{bottom:918.552750px;}
.ydd{bottom:919.565700px;}
.y114{bottom:920.383500px;}
.y5d{bottom:922.945800px;}
.ydc{bottom:935.765700px;}
.y113{bottom:936.583500px;}
.y64{bottom:938.352300px;}
.yae{bottom:938.352450px;}
.y37{bottom:938.352750px;}
.y5c{bottom:940.945800px;}
.ydb{bottom:951.965700px;}
.y63{bottom:958.152300px;}
.yad{bottom:958.152450px;}
.y36{bottom:958.152750px;}
.y5b{bottom:958.945800px;}
.yda{bottom:968.165700px;}
.y112{bottom:968.983500px;}
.h8{height:27.326376px;}
.h7{height:28.889400px;}
.h5{height:28.890000px;}
.h10{height:32.100000px;}
.h9{height:37.599609px;}
.h13{height:38.612571px;}
.hb{height:39.902572px;}
.ha{height:39.903172px;}
.hc{height:43.989258px;}
.h6{height:46.872000px;}
.h14{height:47.193143px;}
.h12{height:47.736000px;}
.h15{height:48.761719px;}
.h2{height:52.080000px;}
.hf{height:52.098000px;}
.he{height:53.040000px;}
.h4{height:55.993152px;}
.hd{height:57.288000px;}
.h11{height:57.288600px;}
.h3{height:58.488281px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:41.668350px;}
.x1{left:43.165350px;}
.x4{left:47.668200px;}
.xb{left:55.257750px;}
.xa{left:66.786450px;}
.x7{left:68.031450px;}
.x17{left:70.425450px;}
.x10{left:74.677350px;}
.xe{left:80.785950px;}
.x11{left:235.012350px;}
.xf{left:259.542300px;}
.x12{left:294.862350px;}
.x13{left:353.737350px;}
.x5{left:357.841050px;}
.xc{left:359.289450px;}
.xd{left:372.053850px;}
.x9{left:384.781950px;}
.x8{left:397.536450px;}
.x18{left:404.216250px;}
.x1a{left:406.150650px;}
.x19{left:416.970750px;}
.x1b{left:422.931150px;}
.x14{left:482.362350px;}
.x2{left:490.885350px;}
.x6{left:529.726200px;}
.x15{left:553.582350px;}
.x16{left:621.082350px;}
@media print{
.v5{vertical-align:-17.760000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984533pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:19.536533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:132.651733pt;}
.ws0{word-spacing:-18.666667pt;}
.ws4{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws6{word-spacing:-8.550667pt;}
.ws1{word-spacing:-8.379653pt;}
.ws7{word-spacing:-7.773333pt;}
.ws2{word-spacing:-6.996000pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-2180.800000pt;}
._34{margin-left:-8.640000pt;}
._17{margin-left:-7.626667pt;}
._8{margin-left:-5.762693pt;}
._0{margin-left:-3.946667pt;}
._9{margin-left:-3.052000pt;}
._7{margin-left:-2.112000pt;}
._5{margin-left:-0.970667pt;}
._2{width:1.568000pt;}
._4{width:3.061333pt;}
._b{width:4.560000pt;}
._a{width:5.616000pt;}
._c{width:7.036000pt;}
._f{width:8.330667pt;}
._6{width:9.482667pt;}
._e{width:10.970667pt;}
._11{width:11.872000pt;}
._12{width:13.034667pt;}
._35{width:14.805333pt;}
._13{width:15.781333pt;}
._d{width:16.720000pt;}
._14{width:18.128000pt;}
._15{width:19.360000pt;}
._16{width:20.592000pt;}
._3{width:22.176000pt;}
._18{width:23.114667pt;}
._19{width:24.053333pt;}
._1d{width:25.066667pt;}
._1c{width:26.341333pt;}
._1b{width:27.866667pt;}
._1a{width:28.922667pt;}
._21{width:32.373333pt;}
._2b{width:36.266667pt;}
._23{width:43.893333pt;}
._26{width:47.893333pt;}
._2f{width:50.029333pt;}
._33{width:52.890667pt;}
._24{width:63.733333pt;}
._31{width:65.857333pt;}
._29{width:66.802667pt;}
._20{width:73.173333pt;}
._2c{width:76.533333pt;}
._32{width:84.352000pt;}
._28{width:97.600000pt;}
._2e{width:99.200000pt;}
._30{width:102.986667pt;}
._27{width:110.826667pt;}
._2d{width:112.426667pt;}
._25{width:114.133333pt;}
._2a{width:116.000000pt;}
._1e{width:133.493333pt;}
._1f{width:174.293333pt;}
._22{width:189.205333pt;}
._1{width:1579.893333pt;}
.fs4{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:54.308667pt;}
.y1{bottom:54.308933pt;}
.yd9{bottom:54.309333pt;}
.y8e{bottom:94.890933pt;}
.yac{bottom:94.891067pt;}
.y29{bottom:94.891333pt;}
.yd8{bottom:110.891067pt;}
.y10e{bottom:111.791733pt;}
.y8d{bottom:112.490933pt;}
.yab{bottom:112.491067pt;}
.y28{bottom:112.491333pt;}
.yd7{bottom:125.291067pt;}
.y10d{bottom:126.191733pt;}
.y8c{bottom:130.090933pt;}
.yaa{bottom:130.091067pt;}
.y27{bottom:130.091333pt;}
.yd6{bottom:139.691067pt;}
.y10c{bottom:140.591733pt;}
.y8b{bottom:147.690933pt;}
.ya9{bottom:147.691067pt;}
.y26{bottom:147.691333pt;}
.yd5{bottom:154.091067pt;}
.y10b{bottom:154.991733pt;}
.y8a{bottom:165.290933pt;}
.ya8{bottom:165.291067pt;}
.y25{bottom:165.291333pt;}
.yd4{bottom:168.491067pt;}
.y10a{bottom:169.391733pt;}
.y89{bottom:182.890933pt;}
.ya7{bottom:182.891067pt;}
.y24{bottom:182.891333pt;}
.y109{bottom:183.791733pt;}
.yd3{bottom:197.291067pt;}
.y108{bottom:198.191733pt;}
.y88{bottom:200.490933pt;}
.ya6{bottom:200.491067pt;}
.y23{bottom:200.491333pt;}
.yd2{bottom:211.691067pt;}
.y107{bottom:212.591733pt;}
.y87{bottom:218.090933pt;}
.y22{bottom:218.091333pt;}
.yd1{bottom:226.091067pt;}
.y106{bottom:226.991733pt;}
.ya4{bottom:235.690933pt;}
.y86{bottom:235.691067pt;}
.y21{bottom:235.691333pt;}
.yd0{bottom:240.491067pt;}
.y105{bottom:241.391733pt;}
.ya3{bottom:253.290933pt;}
.y85{bottom:253.291067pt;}
.y31{bottom:253.291333pt;}
.ycf{bottom:254.891067pt;}
.y104{bottom:255.791733pt;}
.yce{bottom:269.291067pt;}
.y103{bottom:270.191733pt;}
.ya2{bottom:270.890933pt;}
.y84{bottom:270.891067pt;}
.y30{bottom:270.891333pt;}
.ycd{bottom:283.691067pt;}
.y102{bottom:284.591733pt;}
.ya1{bottom:288.490933pt;}
.y83{bottom:288.491067pt;}
.y2f{bottom:288.491333pt;}
.y111{bottom:290.091733pt;}
.y2{bottom:295.242267pt;}
.ycc{bottom:298.091067pt;}
.y101{bottom:298.991733pt;}
.ya0{bottom:306.090933pt;}
.y82{bottom:306.091067pt;}
.y2e{bottom:306.091333pt;}
.ycb{bottom:312.491067pt;}
.y100{bottom:313.391733pt;}
.y9f{bottom:323.690933pt;}
.y81{bottom:323.691067pt;}
.y2d{bottom:323.691333pt;}
.y110{bottom:323.691600pt;}
.y20{bottom:325.291333pt;}
.yca{bottom:326.891067pt;}
.yff{bottom:327.791733pt;}
.y9e{bottom:341.290933pt;}
.y80{bottom:341.291067pt;}
.y1f{bottom:341.291333pt;}
.y10f{bottom:341.291600pt;}
.yfe{bottom:342.191733pt;}
.y61{bottom:352.831467pt;}
.yfd{bottom:356.591733pt;}
.y9d{bottom:358.890933pt;}
.y7f{bottom:358.891067pt;}
.y2c{bottom:358.891333pt;}
.y60{bottom:368.831467pt;}
.yfc{bottom:370.991733pt;}
.y1e{bottom:371.691333pt;}
.y9c{bottom:376.490933pt;}
.y7e{bottom:376.491067pt;}
.y2b{bottom:376.491333pt;}
.yc9{bottom:381.291067pt;}
.y5f{bottom:384.831467pt;}
.yfb{bottom:385.391733pt;}
.y1d{bottom:386.091333pt;}
.y9b{bottom:394.090933pt;}
.y7d{bottom:394.091067pt;}
.y2a{bottom:394.091333pt;}
.yc8{bottom:395.691067pt;}
.yfa{bottom:399.791733pt;}
.y1c{bottom:400.491333pt;}
.y50{bottom:405.660800pt;}
.yc7{bottom:410.091067pt;}
.y9a{bottom:411.690933pt;}
.y7c{bottom:411.691067pt;}
.y4c{bottom:411.691333pt;}
.yf9{bottom:414.191733pt;}
.y1b{bottom:414.891333pt;}
.y4f{bottom:421.660800pt;}
.yc6{bottom:424.491067pt;}
.y35{bottom:427.498133pt;}
.yf8{bottom:428.591733pt;}
.y99{bottom:429.290933pt;}
.y7b{bottom:429.291067pt;}
.y1a{bottom:429.291333pt;}
.y4e{bottom:437.660800pt;}
.yc5{bottom:438.891067pt;}
.yf7{bottom:442.991733pt;}
.y34{bottom:443.498133pt;}
.y19{bottom:443.691333pt;}
.ya5{bottom:446.890933pt;}
.y7a{bottom:446.891067pt;}
.y4b{bottom:446.891333pt;}
.yc4{bottom:453.291067pt;}
.y4d{bottom:453.660800pt;}
.yf6{bottom:457.391733pt;}
.y18{bottom:458.091333pt;}
.y33{bottom:459.498133pt;}
.y98{bottom:464.490933pt;}
.y79{bottom:464.491067pt;}
.y4a{bottom:464.491333pt;}
.yc3{bottom:467.691067pt;}
.yf5{bottom:471.791733pt;}
.y17{bottom:472.491333pt;}
.y32{bottom:475.498133pt;}
.y97{bottom:482.090933pt;}
.y78{bottom:482.091067pt;}
.y49{bottom:482.091333pt;}
.yf4{bottom:486.191733pt;}
.y16{bottom:486.891333pt;}
.yc2{bottom:496.491067pt;}
.y96{bottom:499.690933pt;}
.y77{bottom:499.691067pt;}
.y48{bottom:499.691333pt;}
.yf3{bottom:500.591733pt;}
.y15{bottom:501.291333pt;}
.yc1{bottom:510.891067pt;}
.yf2{bottom:514.991733pt;}
.y14{bottom:515.691333pt;}
.y95{bottom:517.290933pt;}
.y76{bottom:517.291067pt;}
.y47{bottom:517.291333pt;}
.yc0{bottom:525.291067pt;}
.yf1{bottom:529.391733pt;}
.y13{bottom:530.091333pt;}
.y94{bottom:534.890933pt;}
.y75{bottom:534.891067pt;}
.y46{bottom:534.891333pt;}
.ybf{bottom:539.691067pt;}
.yf0{bottom:543.791733pt;}
.y12{bottom:544.491333pt;}
.y93{bottom:552.490933pt;}
.y74{bottom:552.491067pt;}
.y45{bottom:552.491333pt;}
.ybe{bottom:554.091067pt;}
.yef{bottom:558.191733pt;}
.y11{bottom:558.891333pt;}
.y5a{bottom:566.356267pt;}
.ybd{bottom:568.491067pt;}
.y92{bottom:570.090933pt;}
.y73{bottom:570.091067pt;}
.y44{bottom:570.091333pt;}
.yee{bottom:572.591733pt;}
.y10{bottom:573.291333pt;}
.ybc{bottom:582.891067pt;}
.y59{bottom:584.465333pt;}
.yed{bottom:586.991733pt;}
.y91{bottom:587.690933pt;}
.y72{bottom:587.691067pt;}
.yf{bottom:587.691333pt;}
.y124{bottom:587.718667pt;}
.ybb{bottom:597.291067pt;}
.yec{bottom:601.391733pt;}
.ye{bottom:602.091333pt;}
.y123{bottom:602.118667pt;}
.y90{bottom:605.290933pt;}
.y71{bottom:605.291067pt;}
.y43{bottom:605.291333pt;}
.y58{bottom:609.252000pt;}
.yba{bottom:611.691067pt;}
.yeb{bottom:615.791733pt;}
.yd{bottom:616.491333pt;}
.y122{bottom:616.518667pt;}
.y8f{bottom:622.890933pt;}
.y70{bottom:622.891067pt;}
.y42{bottom:622.891333pt;}
.yb9{bottom:626.091067pt;}
.yea{bottom:630.191733pt;}
.yc{bottom:630.891333pt;}
.y121{bottom:630.918667pt;}
.y57{bottom:634.038667pt;}
.y6f{bottom:640.490933pt;}
.yb8{bottom:640.491067pt;}
.y41{bottom:640.491333pt;}
.ye9{bottom:644.591733pt;}
.yb{bottom:645.291333pt;}
.y120{bottom:645.318667pt;}
.y6e{bottom:658.090933pt;}
.y40{bottom:658.091333pt;}
.y56{bottom:658.825333pt;}
.ye8{bottom:658.991733pt;}
.y11f{bottom:659.718667pt;}
.ya{bottom:663.687467pt;}
.ye7{bottom:673.391733pt;}
.y11e{bottom:674.118667pt;}
.y6d{bottom:675.690933pt;}
.yb7{bottom:675.691067pt;}
.y3f{bottom:675.691333pt;}
.y9{bottom:678.087467pt;}
.y55{bottom:683.612000pt;}
.ye6{bottom:687.791733pt;}
.y11d{bottom:688.518667pt;}
.y8{bottom:692.487333pt;}
.y6c{bottom:693.290933pt;}
.yb6{bottom:693.291067pt;}
.y3e{bottom:693.291333pt;}
.ye5{bottom:702.191733pt;}
.y7{bottom:702.891333pt;}
.y11c{bottom:702.918667pt;}
.y54{bottom:708.394667pt;}
.y6b{bottom:710.890933pt;}
.yb5{bottom:710.891067pt;}
.y3d{bottom:710.891333pt;}
.ye4{bottom:716.591733pt;}
.y11b{bottom:717.318667pt;}
.y6{bottom:721.287333pt;}
.y6a{bottom:728.490933pt;}
.yb4{bottom:728.491067pt;}
.y3c{bottom:728.491333pt;}
.ye3{bottom:730.991733pt;}
.y11a{bottom:731.718667pt;}
.y53{bottom:733.181333pt;}
.ye2{bottom:745.391733pt;}
.y69{bottom:746.090933pt;}
.yb3{bottom:746.091067pt;}
.y5{bottom:746.091333pt;}
.y119{bottom:746.118667pt;}
.y52{bottom:757.968000pt;}
.ye1{bottom:759.791733pt;}
.y118{bottom:760.518667pt;}
.y68{bottom:763.690933pt;}
.yb2{bottom:763.691067pt;}
.y3b{bottom:763.691333pt;}
.y51{bottom:773.968000pt;}
.ye0{bottom:774.191733pt;}
.y117{bottom:774.918667pt;}
.y67{bottom:781.290933pt;}
.yb1{bottom:781.291067pt;}
.y3a{bottom:781.291333pt;}
.y4{bottom:786.560267pt;}
.ydf{bottom:788.591733pt;}
.y116{bottom:789.318667pt;}
.y66{bottom:798.890933pt;}
.yb0{bottom:798.891067pt;}
.y39{bottom:798.891333pt;}
.yde{bottom:802.991733pt;}
.y115{bottom:803.718667pt;}
.y5e{bottom:804.396267pt;}
.y3{bottom:808.960267pt;}
.y65{bottom:816.490933pt;}
.yaf{bottom:816.491067pt;}
.y38{bottom:816.491333pt;}
.ydd{bottom:817.391733pt;}
.y114{bottom:818.118667pt;}
.y5d{bottom:820.396267pt;}
.ydc{bottom:831.791733pt;}
.y113{bottom:832.518667pt;}
.y64{bottom:834.090933pt;}
.yae{bottom:834.091067pt;}
.y37{bottom:834.091333pt;}
.y5c{bottom:836.396267pt;}
.ydb{bottom:846.191733pt;}
.y63{bottom:851.690933pt;}
.yad{bottom:851.691067pt;}
.y36{bottom:851.691333pt;}
.y5b{bottom:852.396267pt;}
.yda{bottom:860.591733pt;}
.y112{bottom:861.318667pt;}
.h8{height:24.290112pt;}
.h7{height:25.679467pt;}
.h5{height:25.680000pt;}
.h10{height:28.533333pt;}
.h9{height:33.421875pt;}
.h13{height:34.322286pt;}
.hb{height:35.468953pt;}
.ha{height:35.469486pt;}
.hc{height:39.101562pt;}
.h6{height:41.664000pt;}
.h14{height:41.949460pt;}
.h12{height:42.432000pt;}
.h15{height:43.343750pt;}
.h2{height:46.293333pt;}
.hf{height:46.309333pt;}
.he{height:47.146667pt;}
.h4{height:49.771691pt;}
.hd{height:50.922667pt;}
.h11{height:50.923200pt;}
.h3{height:51.989583pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:37.038533pt;}
.x1{left:38.369200pt;}
.x4{left:42.371733pt;}
.xb{left:49.118000pt;}
.xa{left:59.365733pt;}
.x7{left:60.472400pt;}
.x17{left:62.600400pt;}
.x10{left:66.379867pt;}
.xe{left:71.809733pt;}
.x11{left:208.899867pt;}
.xf{left:230.704267pt;}
.x12{left:262.099867pt;}
.x13{left:314.433200pt;}
.x5{left:318.080933pt;}
.xc{left:319.368400pt;}
.xd{left:330.714533pt;}
.x9{left:342.028400pt;}
.x8{left:353.365733pt;}
.x18{left:359.303333pt;}
.x1a{left:361.022800pt;}
.x19{left:370.640667pt;}
.x1b{left:375.938800pt;}
.x14{left:428.766533pt;}
.x2{left:436.342533pt;}
.x6{left:470.867733pt;}
.x15{left:492.073200pt;}
.x16{left:552.073200pt;}
}




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