
    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_b9ea626c86e41b8359bbdbe4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_b676e4cc697679f0c060e7b1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_bd96a887d54a922a6045f9ad.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5f77ea90b3770644f040c3e6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.747559;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_f52b624f433fc1d79d35d2ae.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_5d123772bb4c8abe91c34807.woff')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_aad96923b7f904cb7bcc117d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_52d949b7771097afce86eedf.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.lse{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.033840px;}
.ls9{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.540000px;}
.ls17{letter-spacing:11.466720px;}
.ls11{letter-spacing:38.082720px;}
.ls15{letter-spacing:41.682720px;}
.ls8{letter-spacing:46.002720px;}
.ls3{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.002720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.865400px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.ws7{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.166000px;}
.ws0{word-spacing:-13.500000px;}
.ws5{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-4.166880px;}
._7{margin-left:-3.141120px;}
._1{margin-left:-1.569840px;}
._0{width:1.109280px;}
._6{width:2.493360px;}
._2{width:4.225920px;}
._5{width:6.215040px;}
._11{width:7.290720px;}
._10{width:8.306640px;}
._a{width:9.570240px;}
._9{width:10.936080px;}
._b{width:12.429120px;}
._c{width:13.591680px;}
._13{width:16.791840px;}
._24{width:18.066720px;}
._23{width:19.422000px;}
._2b{width:20.464080px;}
._e{width:22.393200px;}
._d{width:23.545440px;}
._f{width:24.618960px;}
._18{width:25.696800px;}
._1b{width:27.429840px;}
._12{width:32.688720px;}
._22{width:47.057280px;}
._1a{width:54.258960px;}
._15{width:55.878720px;}
._1e{width:57.070800px;}
._14{width:60.477120px;}
._28{width:62.241120px;}
._16{width:63.864000px;}
._17{width:75.454080px;}
._26{width:77.508720px;}
._25{width:93.823200px;}
._21{width:111.777360px;}
._29{width:115.157520px;}
._20{width:117.906480px;}
._1c{width:125.794800px;}
._4{width:136.056000px;}
._19{width:142.587360px;}
._2a{width:171.630720px;}
._27{width:236.231280px;}
._1f{width:241.456560px;}
._1d{width:348.367200px;}
._3{width:636.906000px;}
.fc4{color:rgb(15,71,97);}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y70{bottom:3.240000px;}
.y96{bottom:3.270000px;}
.yb3{bottom:8.460000px;}
.yb5{bottom:8.640000px;}
.y77{bottom:20.340000px;}
.y95{bottom:20.370000px;}
.y7b{bottom:20.514000px;}
.y6f{bottom:20.520000px;}
.y74{bottom:20.565000px;}
.yc{bottom:37.260000px;}
.yb{bottom:57.060000px;}
.ya{bottom:72.576000px;}
.y6d{bottom:116.856000px;}
.y7c{bottom:118.116000px;}
.yb0{bottom:120.456000px;}
.yc8{bottom:125.676000px;}
.yc7{bottom:127.836000px;}
.y3b{bottom:129.816000px;}
.y6c{bottom:130.716000px;}
.y7a{bottom:132.876000px;}
.y8f{bottom:136.476000px;}
.yaf{bottom:137.556000px;}
.yad{bottom:137.736000px;}
.y6b{bottom:142.956000px;}
.yc6{bottom:145.116000px;}
.y3a{bottom:147.096000px;}
.y8e{bottom:153.750000px;}
.yac{bottom:154.830000px;}
.y6a{bottom:160.230000px;}
.yc5{bottom:162.390000px;}
.y39{bottom:164.190000px;}
.y79{bottom:168.150000px;}
.y8d{bottom:170.850000px;}
.yab{bottom:172.110000px;}
.y69{bottom:177.330000px;}
.yc4{bottom:179.670000px;}
.y38{bottom:181.470000px;}
.yae{bottom:186.150000px;}
.y8c{bottom:188.130000px;}
.yaa{bottom:189.390000px;}
.y68{bottom:194.610000px;}
.yc3{bottom:196.950000px;}
.y37{bottom:198.750000px;}
.y78{bottom:203.430000px;}
.y8b{bottom:205.410000px;}
.ya9{bottom:206.670000px;}
.y67{bottom:211.890000px;}
.yc2{bottom:214.050000px;}
.y36{bottom:216.030000px;}
.y8a{bottom:223.770000px;}
.ya8{bottom:223.950000px;}
.y66{bottom:229.170000px;}
.yc1{bottom:231.330000px;}
.y35{bottom:233.310000px;}
.y76{bottom:238.710000px;}
.y89{bottom:241.050000px;}
.y65{bottom:246.450000px;}
.yc0{bottom:248.610000px;}
.y34{bottom:250.590000px;}
.ya7{bottom:258.330000px;}
.y88{bottom:259.410000px;}
.y64{bottom:263.550000px;}
.ybf{bottom:265.890000px;}
.y33{bottom:267.690000px;}
.y75{bottom:273.810000px;}
.ya6{bottom:275.610000px;}
.y87{bottom:276.510000px;}
.y63{bottom:280.830000px;}
.ybe{bottom:283.170000px;}
.y32{bottom:287.310000px;}
.ya5{bottom:292.890000px;}
.y86{bottom:293.790000px;}
.y62{bottom:298.110000px;}
.ybd{bottom:300.450000px;}
.y31{bottom:304.590000px;}
.y73{bottom:309.090000px;}
.ya4{bottom:310.170000px;}
.y85{bottom:312.150000px;}
.y61{bottom:315.390000px;}
.ybc{bottom:317.595000px;}
.y30{bottom:321.735000px;}
.ya3{bottom:327.495000px;}
.y84{bottom:329.475000px;}
.y60{bottom:332.715000px;}
.ybb{bottom:334.875000px;}
.y2f{bottom:339.015000px;}
.y72{bottom:344.415000px;}
.ya2{bottom:344.595000px;}
.y83{bottom:346.755000px;}
.y5f{bottom:349.995000px;}
.yba{bottom:352.155000px;}
.y2e{bottom:356.295000px;}
.ya1{bottom:361.875000px;}
.y82{bottom:363.855000px;}
.yb9{bottom:366.915000px;}
.y5e{bottom:367.095000px;}
.y2d{bottom:373.575000px;}
.ya0{bottom:379.155000px;}
.y71{bottom:379.695000px;}
.y81{bottom:381.135000px;}
.y5d{bottom:384.375000px;}
.y2c{bottom:390.855000px;}
.y9f{bottom:396.435000px;}
.y80{bottom:399.495000px;}
.y5c{bottom:401.655000px;}
.yb8{bottom:402.195000px;}
.y2b{bottom:408.135000px;}
.y9e{bottom:413.715000px;}
.y6e{bottom:414.975000px;}
.y7f{bottom:416.775000px;}
.y5b{bottom:418.935000px;}
.y2a{bottom:425.235000px;}
.yb7{bottom:425.415000px;}
.y9d{bottom:430.995000px;}
.y7e{bottom:435.135000px;}
.y5a{bottom:436.215000px;}
.y29{bottom:442.515000px;}
.y9c{bottom:448.095000px;}
.yb6{bottom:448.635000px;}
.y7d{bottom:452.415000px;}
.y59{bottom:453.495000px;}
.y28{bottom:459.795000px;}
.y9b{bottom:465.375000px;}
.y58{bottom:470.595000px;}
.yb4{bottom:471.855000px;}
.y27{bottom:477.075000px;}
.y9a{bottom:482.655000px;}
.y57{bottom:487.875000px;}
.y26{bottom:494.355000px;}
.yb2{bottom:495.255000px;}
.y99{bottom:499.935000px;}
.y56{bottom:505.155000px;}
.y25{bottom:511.455000px;}
.y98{bottom:517.215000px;}
.yb1{bottom:518.475000px;}
.y55{bottom:522.435000px;}
.y24{bottom:528.735000px;}
.y97{bottom:531.975000px;}
.y54{bottom:539.715000px;}
.y23{bottom:546.015000px;}
.y53{bottom:556.995000px;}
.y22{bottom:563.295000px;}
.y94{bottom:567.255000px;}
.y52{bottom:574.125000px;}
.y21{bottom:580.605000px;}
.y51{bottom:591.405000px;}
.y20{bottom:597.885000px;}
.y93{bottom:602.385000px;}
.y50{bottom:608.685000px;}
.y1f{bottom:614.985000px;}
.y4f{bottom:625.965000px;}
.y1e{bottom:632.265000px;}
.y92{bottom:637.665000px;}
.y4e{bottom:643.245000px;}
.y1d{bottom:649.545000px;}
.y4d{bottom:660.345000px;}
.y1c{bottom:666.825000px;}
.y91{bottom:672.945000px;}
.y4c{bottom:677.625000px;}
.y1b{bottom:686.265000px;}
.y4b{bottom:694.905000px;}
.y1a{bottom:703.905000px;}
.y90{bottom:708.225000px;}
.y4a{bottom:712.185000px;}
.y19{bottom:722.985000px;}
.y49{bottom:729.465000px;}
.y18{bottom:741.885000px;}
.y48{bottom:746.745000px;}
.y17{bottom:760.965000px;}
.y47{bottom:763.845000px;}
.y16{bottom:779.865000px;}
.y46{bottom:781.125000px;}
.y45{bottom:798.405000px;}
.y15{bottom:798.765000px;}
.y44{bottom:815.685000px;}
.y14{bottom:817.845000px;}
.y43{bottom:833.010000px;}
.y13{bottom:836.790000px;}
.y42{bottom:850.290000px;}
.y12{bottom:855.870000px;}
.y41{bottom:867.390000px;}
.y11{bottom:874.770000px;}
.y40{bottom:884.670000px;}
.y10{bottom:893.850000px;}
.y3f{bottom:901.950000px;}
.yf{bottom:912.390000px;}
.y3e{bottom:919.230000px;}
.ye{bottom:930.210000px;}
.y3d{bottom:936.510000px;}
.yd{bottom:950.910000px;}
.y3c{bottom:953.610000px;}
.y9{bottom:972.690000px;}
.y8{bottom:992.850000px;}
.y7{bottom:1010.130000px;}
.y6{bottom:1028.130000px;}
.y5{bottom:1044.870000px;}
.y4{bottom:1087.200000px;}
.y3{bottom:1107.180000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h11{height:22.500000px;}
.hc{height:34.380000px;}
.hf{height:34.416000px;}
.hd{height:34.560000px;}
.he{height:34.596000px;}
.h6{height:38.759766px;}
.ha{height:41.493516px;}
.h4{height:42.164648px;}
.h1{height:42.894141px;}
.h9{height:43.506914px;}
.h10{height:44.265586px;}
.h7{height:46.736719px;}
.h8{height:47.545312px;}
.hb{height:48.496641px;}
.h3{height:50.800781px;}
.h2{height:51.679688px;}
.h5{height:60.855469px;}
.h0{height:1188.000000px;}
.w8{width:73.800000px;}
.wa{width:81.180000px;}
.w9{width:96.336000px;}
.w2{width:109.260000px;}
.wb{width:128.700000px;}
.w3{width:137.196000px;}
.w6{width:164.880000px;}
.w5{width:207.030000px;}
.w4{width:245.730000px;}
.wc{width:246.675000px;}
.w7{width:282.315000px;}
.wd{width:324.570000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x8{left:108.035986px;}
.x9{left:111.455986px;}
.x24{left:114.335986px;}
.x26{left:118.115986px;}
.x2{left:122.435986px;}
.xa{left:130.355986px;}
.x13{left:135.035986px;}
.x1{left:138.635986px;}
.x14{left:162.029986px;}
.x5{left:169.769986px;}
.x17{left:186.509986px;}
.xd{left:214.409986px;}
.x1a{left:218.730000px;}
.x18{left:222.509986px;}
.x28{left:238.170000px;}
.xf{left:245.729986px;}
.x1e{left:268.949986px;}
.x1f{left:274.350000px;}
.x27{left:296.354986px;}
.x10{left:346.574986px;}
.x11{left:347.654986px;}
.xc{left:353.774986px;}
.x1b{left:356.655000px;}
.xe{left:364.934986px;}
.x15{left:376.634986px;}
.xb{left:378.974986px;}
.x1d{left:396.974986px;}
.x7{left:398.774986px;}
.x2b{left:408.134986px;}
.x12{left:410.474986px;}
.x2a{left:413.174986px;}
.x6{left:424.874986px;}
.x23{left:429.014986px;}
.x25{left:430.634986px;}
.x3{left:459.074986px;}
.x29{left:485.565000px;}
.x4{left:531.104986px;}
.x20{left:557.385000px;}
.x1c{left:603.105000px;}
.x21{left:631.905000px;}
.x22{left:728.970000px;}
.x16{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.030080pt;}
.ls9{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls17{letter-spacing:10.192640pt;}
.ls11{letter-spacing:33.851307pt;}
.ls15{letter-spacing:37.051307pt;}
.ls8{letter-spacing:40.891307pt;}
.ls3{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.891307pt;}
.wsd{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.991467pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.592000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-3.703893pt;}
._7{margin-left:-2.792107pt;}
._1{margin-left:-1.395413pt;}
._0{width:0.986027pt;}
._6{width:2.216320pt;}
._2{width:3.756373pt;}
._5{width:5.524480pt;}
._11{width:6.480640pt;}
._10{width:7.383680pt;}
._a{width:8.506880pt;}
._9{width:9.720960pt;}
._b{width:11.048107pt;}
._c{width:12.081493pt;}
._13{width:14.926080pt;}
._24{width:16.059307pt;}
._23{width:17.264000pt;}
._2b{width:18.190293pt;}
._e{width:19.905067pt;}
._d{width:20.929280pt;}
._f{width:21.883520pt;}
._18{width:22.841600pt;}
._1b{width:24.382080pt;}
._12{width:29.056640pt;}
._22{width:41.828693pt;}
._1a{width:48.230187pt;}
._15{width:49.669973pt;}
._1e{width:50.729600pt;}
._14{width:53.757440pt;}
._28{width:55.325440pt;}
._16{width:56.768000pt;}
._17{width:67.070293pt;}
._26{width:68.896640pt;}
._25{width:83.398400pt;}
._21{width:99.357653pt;}
._29{width:102.362240pt;}
._20{width:104.805760pt;}
._1c{width:111.817600pt;}
._4{width:120.938667pt;}
._19{width:126.744320pt;}
._2a{width:152.560640pt;}
._27{width:209.983360pt;}
._1f{width:214.628053pt;}
._1d{width:309.659733pt;}
._3{width:566.138667pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.880000pt;}
.y96{bottom:2.906667pt;}
.yb3{bottom:7.520000pt;}
.yb5{bottom:7.680000pt;}
.y77{bottom:18.080000pt;}
.y95{bottom:18.106667pt;}
.y7b{bottom:18.234667pt;}
.y6f{bottom:18.240000pt;}
.y74{bottom:18.280000pt;}
.yc{bottom:33.120000pt;}
.yb{bottom:50.720000pt;}
.ya{bottom:64.512000pt;}
.y6d{bottom:103.872000pt;}
.y7c{bottom:104.992000pt;}
.yb0{bottom:107.072000pt;}
.yc8{bottom:111.712000pt;}
.yc7{bottom:113.632000pt;}
.y3b{bottom:115.392000pt;}
.y6c{bottom:116.192000pt;}
.y7a{bottom:118.112000pt;}
.y8f{bottom:121.312000pt;}
.yaf{bottom:122.272000pt;}
.yad{bottom:122.432000pt;}
.y6b{bottom:127.072000pt;}
.yc6{bottom:128.992000pt;}
.y3a{bottom:130.752000pt;}
.y8e{bottom:136.666667pt;}
.yac{bottom:137.626667pt;}
.y6a{bottom:142.426667pt;}
.yc5{bottom:144.346667pt;}
.y39{bottom:145.946667pt;}
.y79{bottom:149.466667pt;}
.y8d{bottom:151.866667pt;}
.yab{bottom:152.986667pt;}
.y69{bottom:157.626667pt;}
.yc4{bottom:159.706667pt;}
.y38{bottom:161.306667pt;}
.yae{bottom:165.466667pt;}
.y8c{bottom:167.226667pt;}
.yaa{bottom:168.346667pt;}
.y68{bottom:172.986667pt;}
.yc3{bottom:175.066667pt;}
.y37{bottom:176.666667pt;}
.y78{bottom:180.826667pt;}
.y8b{bottom:182.586667pt;}
.ya9{bottom:183.706667pt;}
.y67{bottom:188.346667pt;}
.yc2{bottom:190.266667pt;}
.y36{bottom:192.026667pt;}
.y8a{bottom:198.906667pt;}
.ya8{bottom:199.066667pt;}
.y66{bottom:203.706667pt;}
.yc1{bottom:205.626667pt;}
.y35{bottom:207.386667pt;}
.y76{bottom:212.186667pt;}
.y89{bottom:214.266667pt;}
.y65{bottom:219.066667pt;}
.yc0{bottom:220.986667pt;}
.y34{bottom:222.746667pt;}
.ya7{bottom:229.626667pt;}
.y88{bottom:230.586667pt;}
.y64{bottom:234.266667pt;}
.ybf{bottom:236.346667pt;}
.y33{bottom:237.946667pt;}
.y75{bottom:243.386667pt;}
.ya6{bottom:244.986667pt;}
.y87{bottom:245.786667pt;}
.y63{bottom:249.626667pt;}
.ybe{bottom:251.706667pt;}
.y32{bottom:255.386667pt;}
.ya5{bottom:260.346667pt;}
.y86{bottom:261.146667pt;}
.y62{bottom:264.986667pt;}
.ybd{bottom:267.066667pt;}
.y31{bottom:270.746667pt;}
.y73{bottom:274.746667pt;}
.ya4{bottom:275.706667pt;}
.y85{bottom:277.466667pt;}
.y61{bottom:280.346667pt;}
.ybc{bottom:282.306667pt;}
.y30{bottom:285.986667pt;}
.ya3{bottom:291.106667pt;}
.y84{bottom:292.866667pt;}
.y60{bottom:295.746667pt;}
.ybb{bottom:297.666667pt;}
.y2f{bottom:301.346667pt;}
.y72{bottom:306.146667pt;}
.ya2{bottom:306.306667pt;}
.y83{bottom:308.226667pt;}
.y5f{bottom:311.106667pt;}
.yba{bottom:313.026667pt;}
.y2e{bottom:316.706667pt;}
.ya1{bottom:321.666667pt;}
.y82{bottom:323.426667pt;}
.yb9{bottom:326.146667pt;}
.y5e{bottom:326.306667pt;}
.y2d{bottom:332.066667pt;}
.ya0{bottom:337.026667pt;}
.y71{bottom:337.506667pt;}
.y81{bottom:338.786667pt;}
.y5d{bottom:341.666667pt;}
.y2c{bottom:347.426667pt;}
.y9f{bottom:352.386667pt;}
.y80{bottom:355.106667pt;}
.y5c{bottom:357.026667pt;}
.yb8{bottom:357.506667pt;}
.y2b{bottom:362.786667pt;}
.y9e{bottom:367.746667pt;}
.y6e{bottom:368.866667pt;}
.y7f{bottom:370.466667pt;}
.y5b{bottom:372.386667pt;}
.y2a{bottom:377.986667pt;}
.yb7{bottom:378.146667pt;}
.y9d{bottom:383.106667pt;}
.y7e{bottom:386.786667pt;}
.y5a{bottom:387.746667pt;}
.y29{bottom:393.346667pt;}
.y9c{bottom:398.306667pt;}
.yb6{bottom:398.786667pt;}
.y7d{bottom:402.146667pt;}
.y59{bottom:403.106667pt;}
.y28{bottom:408.706667pt;}
.y9b{bottom:413.666667pt;}
.y58{bottom:418.306667pt;}
.yb4{bottom:419.426667pt;}
.y27{bottom:424.066667pt;}
.y9a{bottom:429.026667pt;}
.y57{bottom:433.666667pt;}
.y26{bottom:439.426667pt;}
.yb2{bottom:440.226667pt;}
.y99{bottom:444.386667pt;}
.y56{bottom:449.026667pt;}
.y25{bottom:454.626667pt;}
.y98{bottom:459.746667pt;}
.yb1{bottom:460.866667pt;}
.y55{bottom:464.386667pt;}
.y24{bottom:469.986667pt;}
.y97{bottom:472.866667pt;}
.y54{bottom:479.746667pt;}
.y23{bottom:485.346667pt;}
.y53{bottom:495.106667pt;}
.y22{bottom:500.706667pt;}
.y94{bottom:504.226667pt;}
.y52{bottom:510.333333pt;}
.y21{bottom:516.093333pt;}
.y51{bottom:525.693333pt;}
.y20{bottom:531.453333pt;}
.y93{bottom:535.453333pt;}
.y50{bottom:541.053333pt;}
.y1f{bottom:546.653333pt;}
.y4f{bottom:556.413333pt;}
.y1e{bottom:562.013333pt;}
.y92{bottom:566.813333pt;}
.y4e{bottom:571.773333pt;}
.y1d{bottom:577.373333pt;}
.y4d{bottom:586.973333pt;}
.y1c{bottom:592.733333pt;}
.y91{bottom:598.173333pt;}
.y4c{bottom:602.333333pt;}
.y1b{bottom:610.013333pt;}
.y4b{bottom:617.693333pt;}
.y1a{bottom:625.693333pt;}
.y90{bottom:629.533333pt;}
.y4a{bottom:633.053333pt;}
.y19{bottom:642.653333pt;}
.y49{bottom:648.413333pt;}
.y18{bottom:659.453333pt;}
.y48{bottom:663.773333pt;}
.y17{bottom:676.413333pt;}
.y47{bottom:678.973333pt;}
.y16{bottom:693.213333pt;}
.y46{bottom:694.333333pt;}
.y45{bottom:709.693333pt;}
.y15{bottom:710.013333pt;}
.y44{bottom:725.053333pt;}
.y14{bottom:726.973333pt;}
.y43{bottom:740.453333pt;}
.y13{bottom:743.813333pt;}
.y42{bottom:755.813333pt;}
.y12{bottom:760.773333pt;}
.y41{bottom:771.013333pt;}
.y11{bottom:777.573333pt;}
.y40{bottom:786.373333pt;}
.y10{bottom:794.533333pt;}
.y3f{bottom:801.733333pt;}
.yf{bottom:811.013333pt;}
.y3e{bottom:817.093333pt;}
.ye{bottom:826.853333pt;}
.y3d{bottom:832.453333pt;}
.yd{bottom:845.253333pt;}
.y3c{bottom:847.653333pt;}
.y9{bottom:864.613333pt;}
.y8{bottom:882.533333pt;}
.y7{bottom:897.893333pt;}
.y6{bottom:913.893333pt;}
.y5{bottom:928.773333pt;}
.y4{bottom:966.400000pt;}
.y3{bottom:984.160000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h11{height:20.000000pt;}
.hc{height:30.560000pt;}
.hf{height:30.592000pt;}
.hd{height:30.720000pt;}
.he{height:30.752000pt;}
.h6{height:34.453125pt;}
.ha{height:36.883125pt;}
.h4{height:37.479688pt;}
.h1{height:38.128125pt;}
.h9{height:38.672812pt;}
.h10{height:39.347188pt;}
.h7{height:41.543750pt;}
.h8{height:42.262500pt;}
.hb{height:43.108125pt;}
.h3{height:45.156250pt;}
.h2{height:45.937500pt;}
.h5{height:54.093750pt;}
.h0{height:1056.000000pt;}
.w8{width:65.600000pt;}
.wa{width:72.160000pt;}
.w9{width:85.632000pt;}
.w2{width:97.120000pt;}
.wb{width:114.400000pt;}
.w3{width:121.952000pt;}
.w6{width:146.560000pt;}
.w5{width:184.026667pt;}
.w4{width:218.426667pt;}
.wc{width:219.266667pt;}
.w7{width:250.946667pt;}
.wd{width:288.506667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x8{left:96.031988pt;}
.x9{left:99.071988pt;}
.x24{left:101.631988pt;}
.x26{left:104.991988pt;}
.x2{left:108.831988pt;}
.xa{left:115.871988pt;}
.x13{left:120.031988pt;}
.x1{left:123.231988pt;}
.x14{left:144.026655pt;}
.x5{left:150.906655pt;}
.x17{left:165.786655pt;}
.xd{left:190.586655pt;}
.x1a{left:194.426667pt;}
.x18{left:197.786655pt;}
.x28{left:211.706667pt;}
.xf{left:218.426655pt;}
.x1e{left:239.066655pt;}
.x1f{left:243.866667pt;}
.x27{left:263.426655pt;}
.x10{left:308.066655pt;}
.x11{left:309.026655pt;}
.xc{left:314.466655pt;}
.x1b{left:317.026667pt;}
.xe{left:324.386655pt;}
.x15{left:334.786655pt;}
.xb{left:336.866655pt;}
.x1d{left:352.866655pt;}
.x7{left:354.466655pt;}
.x2b{left:362.786655pt;}
.x12{left:364.866655pt;}
.x2a{left:367.266655pt;}
.x6{left:377.666655pt;}
.x23{left:381.346655pt;}
.x25{left:382.786655pt;}
.x3{left:408.066655pt;}
.x29{left:431.613333pt;}
.x4{left:472.093321pt;}
.x20{left:495.453333pt;}
.x1c{left:536.093333pt;}
.x21{left:561.693333pt;}
.x22{left:647.973333pt;}
.x16{left:720.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; }
  