
    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_b805929dd0e57be87e403eda.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3ac4730deeaa66c6f7cad842.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fa7454ae70d339cfbc231a16.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8f5c796a7a73af9db1b80721.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b3d1371f1bfa60d61a150450.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_1471b3493ceaee85ebd57a36.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ef3f48012391ed25fab5b4d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940430;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_91c9ed2ef4fad9dcebd00c28.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_97348ed545a298c84022a5d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_215582deb0c7902bcd68b895.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940430;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc{letter-spacing:-2.880000px;}
.ls11{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.008000px;}
.lsd{letter-spacing:3.221280px;}
.ls10{letter-spacing:33.960000px;}
.ls9{letter-spacing:45.378720px;}
.ls3{letter-spacing:73.728000px;}
.ls4{letter-spacing:91.728000px;}
.ls5{letter-spacing:109.728000px;}
.ls7{letter-spacing:846.156000px;}
.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:-72.216000px;}
.ws4{word-spacing:-30.420000px;}
.wsb{word-spacing:-30.060000px;}
.ws5{word-spacing:-23.940000px;}
.ws7{word-spacing:-21.060000px;}
.wsa{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.712000px;}
.ws8{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.128000px;}
.ws6{word-spacing:-15.120000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-16.350720px;}
._9{margin-left:-14.112000px;}
._7{margin-left:-11.256000px;}
._3{margin-left:-10.152000px;}
._4{margin-left:-9.000000px;}
._d{margin-left:-7.836000px;}
._5{margin-left:-6.372000px;}
._8{margin-left:-4.956000px;}
._6{margin-left:-3.336000px;}
._2{margin-left:-2.268000px;}
._0{margin-left:-1.080000px;}
._1{width:1.236000px;}
._a{width:2.808000px;}
._b{width:846.264000px;}
.fc1{color:rgb(47,84,150);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:22.320000px;}
.ya5{bottom:22.500000px;}
.yad{bottom:22.530000px;}
.ya1{bottom:24.660000px;}
.ya4{bottom:60.300000px;}
.yac{bottom:60.330000px;}
.ya8{bottom:60.480000px;}
.ydc{bottom:60.525000px;}
.ya0{bottom:66.060000px;}
.ya3{bottom:98.280000px;}
.yab{bottom:98.310000px;}
.ya7{bottom:98.460000px;}
.ydb{bottom:98.505000px;}
.yc6{bottom:112.176000px;}
.yd3{bottom:113.976000px;}
.yfb{bottom:114.516000px;}
.yb5{bottom:117.216000px;}
.ybf{bottom:121.716000px;}
.yd4{bottom:126.036000px;}
.y9d{bottom:126.576000px;}
.y4a{bottom:133.776000px;}
.yaa{bottom:136.290000px;}
.ye2{bottom:136.305000px;}
.yda{bottom:136.485000px;}
.y12{bottom:141.336000px;}
.y7b{bottom:142.056000px;}
.y5d{bottom:143.316000px;}
.y73{bottom:145.836000px;}
.yed{bottom:151.050000px;}
.yc5{bottom:153.570000px;}
.yb4{bottom:158.610000px;}
.yd2{bottom:167.430000px;}
.yfa{bottom:167.970000px;}
.ydd{bottom:171.570000px;}
.y49{bottom:175.170000px;}
.y9c{bottom:180.030000px;}
.y7a{bottom:183.450000px;}
.y5c{bottom:184.710000px;}
.y72{bottom:187.230000px;}
.yec{bottom:192.450000px;}
.y11{bottom:194.610000px;}
.yc4{bottom:194.970000px;}
.y62{bottom:196.770000px;}
.yb3{bottom:200.010000px;}
.y107{bottom:201.630000px;}
.yd1{bottom:208.830000px;}
.y3f{bottom:212.430000px;}
.y48{bottom:216.570000px;}
.y9b{bottom:221.430000px;}
.y79{bottom:224.850000px;}
.y71{bottom:228.630000px;}
.yeb{bottom:233.850000px;}
.yc3{bottom:236.370000px;}
.y5b{bottom:238.170000px;}
.ybd{bottom:240.330000px;}
.yb2{bottom:241.410000px;}
.y106{bottom:243.030000px;}
.y10{bottom:248.070000px;}
.y61{bottom:250.230000px;}
.y9a{bottom:262.830000px;}
.y3e{bottom:265.710000px;}
.y47{bottom:270.030000px;}
.yf9{bottom:274.710000px;}
.y112{bottom:276.510000px;}
.yc2{bottom:277.770000px;}
.y70{bottom:281.910000px;}
.y105{bottom:284.430000px;}
.yd9{bottom:286.050000px;}
.y8a{bottom:287.310000px;}
.y78{bottom:288.570000px;}
.y5a{bottom:291.630000px;}
.yb1{bottom:297.030000px;}
.ybc{bottom:299.370000px;}
.yf{bottom:301.530000px;}
.y38{bottom:301.710000px;}
.y99{bottom:304.230000px;}
.ybe{bottom:311.430000px;}
.y111{bottom:317.955000px;}
.y3d{bottom:319.215000px;}
.y46{bottom:323.355000px;}
.y104{bottom:325.875000px;}
.yf8{bottom:328.215000px;}
.y59{bottom:333.075000px;}
.y6f{bottom:335.415000px;}
.yea{bottom:340.635000px;}
.y89{bottom:340.815000px;}
.y37{bottom:343.155000px;}
.y98{bottom:345.675000px;}
.ybb{bottom:352.875000px;}
.ye{bottom:354.855000px;}
.yb0{bottom:355.935000px;}
.y110{bottom:359.355000px;}
.y3c{bottom:360.615000px;}
.y45{bottom:364.755000px;}
.y103{bottom:367.275000px;}
.y77{bottom:368.175000px;}
.yf7{bottom:369.615000px;}
.yc1{bottom:372.675000px;}
.yaf{bottom:373.395000px;}
.y58{bottom:374.475000px;}
.y6e{bottom:376.815000px;}
.ye9{bottom:382.035000px;}
.y36{bottom:384.555000px;}
.y97{bottom:387.075000px;}
.y88{bottom:394.275000px;}
.y10f{bottom:400.755000px;}
.y44{bottom:406.155000px;}
.yd{bottom:408.315000px;}
.y102{bottom:408.675000px;}
.yf6{bottom:411.015000px;}
.y3b{bottom:414.075000px;}
.y57{bottom:415.875000px;}
.y6d{bottom:418.215000px;}
.y76{bottom:419.475000px;}
.ye8{bottom:423.435000px;}
.y26{bottom:424.335000px;}
.y35{bottom:425.955000px;}
.yd0{bottom:427.755000px;}
.y96{bottom:428.475000px;}
.yba{bottom:435.675000px;}
.yd8{bottom:438.735000px;}
.y10e{bottom:442.155000px;}
.y43{bottom:447.555000px;}
.yae{bottom:450.075000px;}
.yf5{bottom:452.415000px;}
.y56{bottom:457.275000px;}
.y75{bottom:457.455000px;}
.y6c{bottom:459.615000px;}
.yc{bottom:461.775000px;}
.ye7{bottom:464.835000px;}
.y34{bottom:467.355000px;}
.y25{bottom:472.755000px;}
.yb9{bottom:477.075000px;}
.y95{bottom:479.595000px;}
.ycf{bottom:481.215000px;}
.y10d{bottom:483.555000px;}
.y42{bottom:488.955000px;}
.y101{bottom:491.475000px;}
.yf4{bottom:493.815000px;}
.y60{bottom:498.675000px;}
.y6b{bottom:501.015000px;}
.y24{bottom:505.875000px;}
.ye6{bottom:506.235000px;}
.y33{bottom:508.755000px;}
.y86{bottom:510.555000px;}
.y55{bottom:512.895000px;}
.yb{bottom:515.055000px;}
.yb8{bottom:518.475000px;}
.yce{bottom:522.615000px;}
.y10c{bottom:524.955000px;}
.y41{bottom:530.355000px;}
.y100{bottom:532.875000px;}
.yf3{bottom:535.215000px;}
.y94{bottom:536.115000px;}
.y23{bottom:538.815000px;}
.y6a{bottom:542.415000px;}
.y32{bottom:550.155000px;}
.y5f{bottom:554.295000px;}
.y85{bottom:564.015000px;}
.ya9{bottom:564.735000px;}
.y10b{bottom:566.355000px;}
.ye5{bottom:569.985000px;}
.y22{bottom:571.785000px;}
.yff{bottom:574.305000px;}
.yf2{bottom:576.645000px;}
.ya{bottom:580.605000px;}
.y69{bottom:583.845000px;}
.y93{bottom:587.265000px;}
.yd7{bottom:591.225000px;}
.y31{bottom:591.585000px;}
.y21{bottom:604.725000px;}
.y84{bottom:605.445000px;}
.y10a{bottom:607.785000px;}
.y5e{bottom:613.185000px;}
.yfe{bottom:615.705000px;}
.yf1{bottom:618.045000px;}
.y54{bottom:625.245000px;}
.y40{bottom:627.405000px;}
.y30{bottom:632.985000px;}
.y92{bottom:637.305000px;}
.y20{bottom:637.665000px;}
.ye4{bottom:638.925000px;}
.y83{bottom:646.845000px;}
.y109{bottom:649.185000px;}
.y9{bottom:654.585000px;}
.yfd{bottom:657.105000px;}
.yf0{bottom:659.445000px;}
.y53{bottom:666.645000px;}
.yd6{bottom:667.905000px;}
.y1f{bottom:670.605000px;}
.y3a{bottom:674.385000px;}
.y68{bottom:678.705000px;}
.y2f{bottom:686.445000px;}
.y82{bottom:688.245000px;}
.y91{bottom:689.325000px;}
.y108{bottom:690.585000px;}
.yfc{bottom:698.505000px;}
.yef{bottom:700.845000px;}
.y1e{bottom:703.545000px;}
.y52{bottom:708.045000px;}
.y8{bottom:716.685000px;}
.ya6{bottom:717.225000px;}
.ye3{bottom:718.665000px;}
.yd5{bottom:719.925000px;}
.y39{bottom:727.845000px;}
.y81{bottom:729.645000px;}
.y67{bottom:731.985000px;}
.ye1{bottom:736.125000px;}
.y1d{bottom:736.485000px;}
.y2e{bottom:739.725000px;}
.y90{bottom:742.785000px;}
.y51{bottom:749.445000px;}
.yee{bottom:764.565000px;}
.y1c{bottom:769.425000px;}
.y80{bottom:771.045000px;}
.y66{bottom:773.385000px;}
.y7{bottom:778.785000px;}
.y2d{bottom:781.125000px;}
.ycd{bottom:782.925000px;}
.y50{bottom:790.845000px;}
.y8f{bottom:796.245000px;}
.y1b{bottom:802.365000px;}
.y7f{bottom:812.445000px;}
.y65{bottom:814.785000px;}
.y2c{bottom:822.570000px;}
.ya2{bottom:831.930000px;}
.y4f{bottom:832.290000px;}
.y1a{bottom:835.350000px;}
.ycc{bottom:836.430000px;}
.y87{bottom:844.170000px;}
.y8e{bottom:849.570000px;}
.y6{bottom:852.990000px;}
.y7e{bottom:853.890000px;}
.y64{bottom:856.230000px;}
.y2b{bottom:863.970000px;}
.y19{bottom:868.290000px;}
.yb7{bottom:873.690000px;}
.ycb{bottom:877.830000px;}
.y4e{bottom:885.570000px;}
.ydf{bottom:888.810000px;}
.y63{bottom:897.630000px;}
.y18{bottom:901.230000px;}
.y8d{bottom:903.030000px;}
.y2a{bottom:905.370000px;}
.y7d{bottom:909.510000px;}
.yb6{bottom:915.090000px;}
.yca{bottom:919.230000px;}
.y74{bottom:926.970000px;}
.y5{bottom:927.150000px;}
.y17{bottom:934.170000px;}
.y4d{bottom:939.030000px;}
.y9f{bottom:946.410000px;}
.y29{bottom:946.770000px;}
.y8c{bottom:956.490000px;}
.yc9{bottom:960.630000px;}
.y16{bottom:967.110000px;}
.y7c{bottom:968.370000px;}
.y4c{bottom:980.430000px;}
.y28{bottom:988.170000px;}
.y15{bottom:1000.050000px;}
.y4{bottom:1001.130000px;}
.yc8{bottom:1002.030000px;}
.yc0{bottom:1002.390000px;}
.yde{bottom:1003.290000px;}
.y8b{bottom:1009.770000px;}
.y4b{bottom:1021.830000px;}
.y14{bottom:1033.170000px;}
.y27{bottom:1051.890000px;}
.y13{bottom:1057.470000px;}
.yc7{bottom:1057.650000px;}
.y3{bottom:1063.230000px;}
.y9e{bottom:1064.490000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h16{height:41.400000px;}
.h10{height:46.251562px;}
.hf{height:46.736719px;}
.h8{height:47.998125px;}
.h9{height:49.992188px;}
.h1{height:50.273438px;}
.hd{height:50.800781px;}
.hb{height:52.171875px;}
.h19{height:52.417969px;}
.ha{height:61.329023px;}
.h3{height:66.863672px;}
.h15{height:67.565039px;}
.h7{height:69.715898px;}
.h4{height:71.613281px;}
.h14{height:75.960000px;}
.h18{height:75.996000px;}
.h2{height:76.201172px;}
.hc{height:82.800000px;}
.h5{height:84.837305px;}
.h6{height:87.538008px;}
.he{height:113.760000px;}
.h13{height:113.940000px;}
.h11{height:113.976000px;}
.h12{height:151.770000px;}
.h17{height:151.950000px;}
.h0{height:1188.000000px;}
.w5{width:232.950000px;}
.w6{width:233.130000px;}
.w2{width:233.310000px;}
.w4{width:233.490000px;}
.w3{width:233.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x2{left:108.035986px;}
.xa{left:126.035986px;}
.x7{left:130.535986px;}
.xd{left:135.035986px;}
.x10{left:138.455986px;}
.x6{left:141.515986px;}
.xb{left:144.035986px;}
.xc{left:162.029986px;}
.x5{left:167.249986px;}
.x4{left:169.949986px;}
.x11{left:189.569986px;}
.x3{left:292.574986px;}
.x14{left:342.075000px;}
.x9{left:356.294986px;}
.x8{left:366.194986px;}
.xe{left:395.714986px;}
.x12{left:459.074986px;}
.x15{left:575.925000px;}
.xf{left:792.149986px;}
.x1{left:801.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.560000pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.896000pt;}
.lsd{letter-spacing:2.863360pt;}
.ls10{letter-spacing:30.186667pt;}
.ls9{letter-spacing:40.336640pt;}
.ls3{letter-spacing:65.536000pt;}
.ls4{letter-spacing:81.536000pt;}
.ls5{letter-spacing:97.536000pt;}
.ls7{letter-spacing:752.138667pt;}
.ws3{word-spacing:-64.192000pt;}
.ws4{word-spacing:-27.040000pt;}
.wsb{word-spacing:-26.720000pt;}
.ws5{word-spacing:-21.280000pt;}
.ws7{word-spacing:-18.720000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.336000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-14.533973pt;}
._9{margin-left:-12.544000pt;}
._7{margin-left:-10.005333pt;}
._3{margin-left:-9.024000pt;}
._4{margin-left:-8.000000pt;}
._d{margin-left:-6.965333pt;}
._5{margin-left:-5.664000pt;}
._8{margin-left:-4.405333pt;}
._6{margin-left:-2.965333pt;}
._2{margin-left:-2.016000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.098667pt;}
._a{width:2.496000pt;}
._b{width:752.234667pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:19.840000pt;}
.ya5{bottom:20.000000pt;}
.yad{bottom:20.026667pt;}
.ya1{bottom:21.920000pt;}
.ya4{bottom:53.600000pt;}
.yac{bottom:53.626667pt;}
.ya8{bottom:53.760000pt;}
.ydc{bottom:53.800000pt;}
.ya0{bottom:58.720000pt;}
.ya3{bottom:87.360000pt;}
.yab{bottom:87.386667pt;}
.ya7{bottom:87.520000pt;}
.ydb{bottom:87.560000pt;}
.yc6{bottom:99.712000pt;}
.yd3{bottom:101.312000pt;}
.yfb{bottom:101.792000pt;}
.yb5{bottom:104.192000pt;}
.ybf{bottom:108.192000pt;}
.yd4{bottom:112.032000pt;}
.y9d{bottom:112.512000pt;}
.y4a{bottom:118.912000pt;}
.yaa{bottom:121.146667pt;}
.ye2{bottom:121.160000pt;}
.yda{bottom:121.320000pt;}
.y12{bottom:125.632000pt;}
.y7b{bottom:126.272000pt;}
.y5d{bottom:127.392000pt;}
.y73{bottom:129.632000pt;}
.yed{bottom:134.266667pt;}
.yc5{bottom:136.506667pt;}
.yb4{bottom:140.986667pt;}
.yd2{bottom:148.826667pt;}
.yfa{bottom:149.306667pt;}
.ydd{bottom:152.506667pt;}
.y49{bottom:155.706667pt;}
.y9c{bottom:160.026667pt;}
.y7a{bottom:163.066667pt;}
.y5c{bottom:164.186667pt;}
.y72{bottom:166.426667pt;}
.yec{bottom:171.066667pt;}
.y11{bottom:172.986667pt;}
.yc4{bottom:173.306667pt;}
.y62{bottom:174.906667pt;}
.yb3{bottom:177.786667pt;}
.y107{bottom:179.226667pt;}
.yd1{bottom:185.626667pt;}
.y3f{bottom:188.826667pt;}
.y48{bottom:192.506667pt;}
.y9b{bottom:196.826667pt;}
.y79{bottom:199.866667pt;}
.y71{bottom:203.226667pt;}
.yeb{bottom:207.866667pt;}
.yc3{bottom:210.106667pt;}
.y5b{bottom:211.706667pt;}
.ybd{bottom:213.626667pt;}
.yb2{bottom:214.586667pt;}
.y106{bottom:216.026667pt;}
.y10{bottom:220.506667pt;}
.y61{bottom:222.426667pt;}
.y9a{bottom:233.626667pt;}
.y3e{bottom:236.186667pt;}
.y47{bottom:240.026667pt;}
.yf9{bottom:244.186667pt;}
.y112{bottom:245.786667pt;}
.yc2{bottom:246.906667pt;}
.y70{bottom:250.586667pt;}
.y105{bottom:252.826667pt;}
.yd9{bottom:254.266667pt;}
.y8a{bottom:255.386667pt;}
.y78{bottom:256.506667pt;}
.y5a{bottom:259.226667pt;}
.yb1{bottom:264.026667pt;}
.ybc{bottom:266.106667pt;}
.yf{bottom:268.026667pt;}
.y38{bottom:268.186667pt;}
.y99{bottom:270.426667pt;}
.ybe{bottom:276.826667pt;}
.y111{bottom:282.626667pt;}
.y3d{bottom:283.746667pt;}
.y46{bottom:287.426667pt;}
.y104{bottom:289.666667pt;}
.yf8{bottom:291.746667pt;}
.y59{bottom:296.066667pt;}
.y6f{bottom:298.146667pt;}
.yea{bottom:302.786667pt;}
.y89{bottom:302.946667pt;}
.y37{bottom:305.026667pt;}
.y98{bottom:307.266667pt;}
.ybb{bottom:313.666667pt;}
.ye{bottom:315.426667pt;}
.yb0{bottom:316.386667pt;}
.y110{bottom:319.426667pt;}
.y3c{bottom:320.546667pt;}
.y45{bottom:324.226667pt;}
.y103{bottom:326.466667pt;}
.y77{bottom:327.266667pt;}
.yf7{bottom:328.546667pt;}
.yc1{bottom:331.266667pt;}
.yaf{bottom:331.906667pt;}
.y58{bottom:332.866667pt;}
.y6e{bottom:334.946667pt;}
.ye9{bottom:339.586667pt;}
.y36{bottom:341.826667pt;}
.y97{bottom:344.066667pt;}
.y88{bottom:350.466667pt;}
.y10f{bottom:356.226667pt;}
.y44{bottom:361.026667pt;}
.yd{bottom:362.946667pt;}
.y102{bottom:363.266667pt;}
.yf6{bottom:365.346667pt;}
.y3b{bottom:368.066667pt;}
.y57{bottom:369.666667pt;}
.y6d{bottom:371.746667pt;}
.y76{bottom:372.866667pt;}
.ye8{bottom:376.386667pt;}
.y26{bottom:377.186667pt;}
.y35{bottom:378.626667pt;}
.yd0{bottom:380.226667pt;}
.y96{bottom:380.866667pt;}
.yba{bottom:387.266667pt;}
.yd8{bottom:389.986667pt;}
.y10e{bottom:393.026667pt;}
.y43{bottom:397.826667pt;}
.yae{bottom:400.066667pt;}
.yf5{bottom:402.146667pt;}
.y56{bottom:406.466667pt;}
.y75{bottom:406.626667pt;}
.y6c{bottom:408.546667pt;}
.yc{bottom:410.466667pt;}
.ye7{bottom:413.186667pt;}
.y34{bottom:415.426667pt;}
.y25{bottom:420.226667pt;}
.yb9{bottom:424.066667pt;}
.y95{bottom:426.306667pt;}
.ycf{bottom:427.746667pt;}
.y10d{bottom:429.826667pt;}
.y42{bottom:434.626667pt;}
.y101{bottom:436.866667pt;}
.yf4{bottom:438.946667pt;}
.y60{bottom:443.266667pt;}
.y6b{bottom:445.346667pt;}
.y24{bottom:449.666667pt;}
.ye6{bottom:449.986667pt;}
.y33{bottom:452.226667pt;}
.y86{bottom:453.826667pt;}
.y55{bottom:455.906667pt;}
.yb{bottom:457.826667pt;}
.yb8{bottom:460.866667pt;}
.yce{bottom:464.546667pt;}
.y10c{bottom:466.626667pt;}
.y41{bottom:471.426667pt;}
.y100{bottom:473.666667pt;}
.yf3{bottom:475.746667pt;}
.y94{bottom:476.546667pt;}
.y23{bottom:478.946667pt;}
.y6a{bottom:482.146667pt;}
.y32{bottom:489.026667pt;}
.y5f{bottom:492.706667pt;}
.y85{bottom:501.346667pt;}
.ya9{bottom:501.986667pt;}
.y10b{bottom:503.426667pt;}
.ye5{bottom:506.653333pt;}
.y22{bottom:508.253333pt;}
.yff{bottom:510.493333pt;}
.yf2{bottom:512.573333pt;}
.ya{bottom:516.093333pt;}
.y69{bottom:518.973333pt;}
.y93{bottom:522.013333pt;}
.yd7{bottom:525.533333pt;}
.y31{bottom:525.853333pt;}
.y21{bottom:537.533333pt;}
.y84{bottom:538.173333pt;}
.y10a{bottom:540.253333pt;}
.y5e{bottom:545.053333pt;}
.yfe{bottom:547.293333pt;}
.yf1{bottom:549.373333pt;}
.y54{bottom:555.773333pt;}
.y40{bottom:557.693333pt;}
.y30{bottom:562.653333pt;}
.y92{bottom:566.493333pt;}
.y20{bottom:566.813333pt;}
.ye4{bottom:567.933333pt;}
.y83{bottom:574.973333pt;}
.y109{bottom:577.053333pt;}
.y9{bottom:581.853333pt;}
.yfd{bottom:584.093333pt;}
.yf0{bottom:586.173333pt;}
.y53{bottom:592.573333pt;}
.yd6{bottom:593.693333pt;}
.y1f{bottom:596.093333pt;}
.y3a{bottom:599.453333pt;}
.y68{bottom:603.293333pt;}
.y2f{bottom:610.173333pt;}
.y82{bottom:611.773333pt;}
.y91{bottom:612.733333pt;}
.y108{bottom:613.853333pt;}
.yfc{bottom:620.893333pt;}
.yef{bottom:622.973333pt;}
.y1e{bottom:625.373333pt;}
.y52{bottom:629.373333pt;}
.y8{bottom:637.053333pt;}
.ya6{bottom:637.533333pt;}
.ye3{bottom:638.813333pt;}
.yd5{bottom:639.933333pt;}
.y39{bottom:646.973333pt;}
.y81{bottom:648.573333pt;}
.y67{bottom:650.653333pt;}
.ye1{bottom:654.333333pt;}
.y1d{bottom:654.653333pt;}
.y2e{bottom:657.533333pt;}
.y90{bottom:660.253333pt;}
.y51{bottom:666.173333pt;}
.yee{bottom:679.613333pt;}
.y1c{bottom:683.933333pt;}
.y80{bottom:685.373333pt;}
.y66{bottom:687.453333pt;}
.y7{bottom:692.253333pt;}
.y2d{bottom:694.333333pt;}
.ycd{bottom:695.933333pt;}
.y50{bottom:702.973333pt;}
.y8f{bottom:707.773333pt;}
.y1b{bottom:713.213333pt;}
.y7f{bottom:722.173333pt;}
.y65{bottom:724.253333pt;}
.y2c{bottom:731.173333pt;}
.ya2{bottom:739.493333pt;}
.y4f{bottom:739.813333pt;}
.y1a{bottom:742.533333pt;}
.ycc{bottom:743.493333pt;}
.y87{bottom:750.373333pt;}
.y8e{bottom:755.173333pt;}
.y6{bottom:758.213333pt;}
.y7e{bottom:759.013333pt;}
.y64{bottom:761.093333pt;}
.y2b{bottom:767.973333pt;}
.y19{bottom:771.813333pt;}
.yb7{bottom:776.613333pt;}
.ycb{bottom:780.293333pt;}
.y4e{bottom:787.173333pt;}
.ydf{bottom:790.053333pt;}
.y63{bottom:797.893333pt;}
.y18{bottom:801.093333pt;}
.y8d{bottom:802.693333pt;}
.y2a{bottom:804.773333pt;}
.y7d{bottom:808.453333pt;}
.yb6{bottom:813.413333pt;}
.yca{bottom:817.093333pt;}
.y74{bottom:823.973333pt;}
.y5{bottom:824.133333pt;}
.y17{bottom:830.373333pt;}
.y4d{bottom:834.693333pt;}
.y9f{bottom:841.253333pt;}
.y29{bottom:841.573333pt;}
.y8c{bottom:850.213333pt;}
.yc9{bottom:853.893333pt;}
.y16{bottom:859.653333pt;}
.y7c{bottom:860.773333pt;}
.y4c{bottom:871.493333pt;}
.y28{bottom:878.373333pt;}
.y15{bottom:888.933333pt;}
.y4{bottom:889.893333pt;}
.yc8{bottom:890.693333pt;}
.yc0{bottom:891.013333pt;}
.yde{bottom:891.813333pt;}
.y8b{bottom:897.573333pt;}
.y4b{bottom:908.293333pt;}
.y14{bottom:918.373333pt;}
.y27{bottom:935.013333pt;}
.y13{bottom:939.973333pt;}
.yc7{bottom:940.133333pt;}
.y3{bottom:945.093333pt;}
.y9e{bottom:946.213333pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h16{height:36.800000pt;}
.h10{height:41.112500pt;}
.hf{height:41.543750pt;}
.h8{height:42.665000pt;}
.h9{height:44.437500pt;}
.h1{height:44.687500pt;}
.hd{height:45.156250pt;}
.hb{height:46.375000pt;}
.h19{height:46.593750pt;}
.ha{height:54.514687pt;}
.h3{height:59.434375pt;}
.h15{height:60.057813pt;}
.h7{height:61.969687pt;}
.h4{height:63.656250pt;}
.h14{height:67.520000pt;}
.h18{height:67.552000pt;}
.h2{height:67.734375pt;}
.hc{height:73.600000pt;}
.h5{height:75.410937pt;}
.h6{height:77.811562pt;}
.he{height:101.120000pt;}
.h13{height:101.280000pt;}
.h11{height:101.312000pt;}
.h12{height:134.906667pt;}
.h17{height:135.066667pt;}
.h0{height:1056.000000pt;}
.w5{width:207.066667pt;}
.w6{width:207.226667pt;}
.w2{width:207.386667pt;}
.w4{width:207.546667pt;}
.w3{width:207.866667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x2{left:96.031988pt;}
.xa{left:112.031988pt;}
.x7{left:116.031988pt;}
.xd{left:120.031988pt;}
.x10{left:123.071988pt;}
.x6{left:125.791988pt;}
.xb{left:128.031988pt;}
.xc{left:144.026655pt;}
.x5{left:148.666655pt;}
.x4{left:151.066655pt;}
.x11{left:168.506655pt;}
.x3{left:260.066655pt;}
.x14{left:304.066667pt;}
.x9{left:316.706655pt;}
.x8{left:325.506655pt;}
.xe{left:351.746655pt;}
.x12{left:408.066655pt;}
.x15{left:511.933333pt;}
.xf{left:704.133321pt;}
.x1{left:712.133321pt;}
}




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