
    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_80c021d326e5f377a64b2ae3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_94e02f4502ae54f6b6b65b23.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ce42c5f8dcf28d3d9bde6903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.886719;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_2f6e90b711c157016436a92e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_dd1a7c50e8a1024c8fd2fc34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056641;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_012b4c6a7c3a8c4f60a09819.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_386ed86b80fa56d7e3ef796f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854980;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_1e428117fc250d7041edaa2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.875488;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_f0feecb6107b6931f59b632f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_e92d20c8468b04c72f52e6d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6b156316d54b5ee0e72de1d6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2c194b791b3cb6499d4244fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;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;}
.v1{vertical-align:18.000000px;}
.ls10{letter-spacing:-0.288600px;}
.ls2{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.229200px;}
.lsb{letter-spacing:0.354240px;}
.ls4{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls0{letter-spacing:4.452000px;}
.lse{letter-spacing:21.744000px;}
.lsd{letter-spacing:54.840000px;}
.ls7{letter-spacing:93.594720px;}
.ls5{letter-spacing:100.603200px;}
.ls3{letter-spacing:143.803200px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-36.907200px;}
.ws8{word-spacing:-36.000000px;}
.ws1{word-spacing:-22.984800px;}
.wse{word-spacing:-18.244200px;}
.wsc{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.200000px;}
.ws3{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.696000px;}
.ws4{word-spacing:-15.624000px;}
.ws9{word-spacing:-13.447440px;}
.wsb{word-spacing:-10.612800px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-14.259600px;}
._0{margin-left:-12.749760px;}
._14{margin-left:-11.148000px;}
._13{margin-left:-9.996000px;}
._12{margin-left:-8.362320px;}
._5{margin-left:-7.213680px;}
._4{margin-left:-5.871600px;}
._2{margin-left:-3.690720px;}
._1{margin-left:-2.684160px;}
._8{margin-left:-1.379760px;}
._c{width:1.019760px;}
._15{width:2.664000px;}
._9{width:3.959280px;}
._a{width:5.307120px;}
._b{width:6.950640px;}
._16{width:8.712000px;}
._21{width:10.368000px;}
._20{width:12.240000px;}
._1b{width:13.320000px;}
._1a{width:14.338320px;}
._3{width:15.769440px;}
._1c{width:18.072000px;}
._17{width:19.152000px;}
._d{width:20.448000px;}
._e{width:21.732240px;}
._18{width:22.979760px;}
._6{width:24.492960px;}
._7{width:26.774640px;}
._19{width:28.008000px;}
._23{width:29.520000px;}
._24{width:30.528000px;}
._1d{width:86.353200px;}
._f{width:209.664000px;}
._10{width:211.032000px;}
._1f{width:280.752480px;}
._1e{width:316.728000px;}
._22{width:1998.720000px;}
.fc3{color:rgb(15,71,97);}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.960000px;}
.y21{bottom:5.400000px;}
.y28{bottom:5.445000px;}
.y64{bottom:6.840000px;}
.y61{bottom:7.020000px;}
.y67{bottom:9.945000px;}
.y77{bottom:18.540000px;}
.y80{bottom:18.714000px;}
.y74{bottom:18.720000px;}
.y25{bottom:25.200000px;}
.y63{bottom:26.460000px;}
.y6a{bottom:26.640000px;}
.y7e{bottom:39.600000px;}
.y73{bottom:39.780000px;}
.y24{bottom:46.260000px;}
.y3{bottom:57.780000px;}
.y23{bottom:67.320000px;}
.y97{bottom:113.976000px;}
.y3d{bottom:118.296000px;}
.y5c{bottom:125.496000px;}
.yb8{bottom:129.096000px;}
.y1d{bottom:131.616000px;}
.y7f{bottom:135.396000px;}
.y96{bottom:138.276000px;}
.yd9{bottom:138.636000px;}
.y5b{bottom:149.616000px;}
.y3c{bottom:150.150000px;}
.yb7{bottom:153.390000px;}
.y1c{bottom:155.910000px;}
.yf5{bottom:158.610000px;}
.yd8{bottom:162.930000px;}
.y95{bottom:165.270000px;}
.y7d{bottom:169.230000px;}
.y5a{bottom:173.910000px;}
.yb6{bottom:177.690000px;}
.y3b{bottom:181.830000px;}
.yf4{bottom:182.910000px;}
.yd7{bottom:187.230000px;}
.y1b{bottom:192.270000px;}
.y94{bottom:195.510000px;}
.y59{bottom:198.210000px;}
.yb5{bottom:209.010000px;}
.yd6{bottom:211.350000px;}
.y3a{bottom:213.690000px;}
.yf3{bottom:215.490000px;}
.y1a{bottom:216.390000px;}
.y58{bottom:222.510000px;}
.y7c{bottom:224.130000px;}
.y93{bottom:227.190000px;}
.yd5{bottom:236.730000px;}
.y19{bottom:240.690000px;}
.y39{bottom:245.370000px;}
.yb4{bottom:247.890000px;}
.y92{bottom:251.490000px;}
.yf2{bottom:257.430000px;}
.y7b{bottom:257.790000px;}
.y57{bottom:258.690000px;}
.yd4{bottom:261.030000px;}
.y91{bottom:276.870000px;}
.y18{bottom:277.050000px;}
.y38{bottom:277.230000px;}
.yf1{bottom:278.490000px;}
.yb3{bottom:279.750000px;}
.y56{bottom:282.990000px;}
.yd3{bottom:285.330000px;}
.y7a{bottom:291.630000px;}
.yf0{bottom:300.630000px;}
.y90{bottom:300.990000px;}
.y17{bottom:302.790000px;}
.yb2{bottom:303.870000px;}
.y55{bottom:307.290000px;}
.y37{bottom:308.910000px;}
.yd2{bottom:309.450000px;}
.yef{bottom:322.815000px;}
.y79{bottom:325.515000px;}
.y8f{bottom:326.235000px;}
.y16{bottom:328.215000px;}
.yb1{bottom:329.295000px;}
.yd1{bottom:334.695000px;}
.y54{bottom:338.835000px;}
.y36{bottom:340.815000px;}
.yee{bottom:343.875000px;}
.y8e{bottom:351.615000px;}
.y15{bottom:352.335000px;}
.yb0{bottom:353.595000px;}
.y78{bottom:359.355000px;}
.yd0{bottom:360.075000px;}
.yed{bottom:366.015000px;}
.y35{bottom:372.495000px;}
.y8d{bottom:375.735000px;}
.yaf{bottom:377.715000px;}
.y53{bottom:377.895000px;}
.ycf{bottom:384.195000px;}
.y14{bottom:388.695000px;}
.y76{bottom:393.195000px;}
.y8c{bottom:397.155000px;}
.yec{bottom:398.415000px;}
.y52{bottom:402.195000px;}
.yae{bottom:403.095000px;}
.y34{bottom:408.855000px;}
.yce{bottom:409.575000px;}
.y13{bottom:424.875000px;}
.y51{bottom:426.495000px;}
.y75{bottom:426.855000px;}
.yad{bottom:427.215000px;}
.yeb{bottom:434.415000px;}
.ycd{bottom:434.775000px;}
.y33{bottom:445.035000px;}
.yac{bottom:452.595000px;}
.yea{bottom:455.475000px;}
.ycc{bottom:459.975000px;}
.y72{bottom:460.695000px;}
.y12{bottom:461.235000px;}
.y50{bottom:462.675000px;}
.ye9{bottom:477.615000px;}
.yab{bottom:477.795000px;}
.y32{bottom:481.215000px;}
.ycb{bottom:485.355000px;}
.y4f{bottom:486.975000px;}
.y11{bottom:497.415000px;}
.ye8{bottom:499.755000px;}
.yaa{bottom:503.175000px;}
.yca{bottom:509.655000px;}
.y31{bottom:517.575000px;}
.ye7{bottom:520.815000px;}
.y4e{bottom:523.335000px;}
.ya9{bottom:527.475000px;}
.y10{bottom:533.775000px;}
.y71{bottom:534.855000px;}
.ye6{bottom:546.015000px;}
.ya8{bottom:551.595000px;}
.y30{bottom:553.755000px;}
.y4d{bottom:554.655000px;}
.y70{bottom:558.975000px;}
.yc9{bottom:559.155000px;}
.yf{bottom:569.985000px;}
.ye5{bottom:578.625000px;}
.ya7{bottom:579.885000px;}
.yc8{bottom:583.485000px;}
.y2f{bottom:585.645000px;}
.y4c{bottom:593.925000px;}
.y6f{bottom:595.365000px;}
.ye{bottom:606.345000px;}
.yc7{bottom:615.885000px;}
.ya6{bottom:616.065000px;}
.y2e{bottom:617.325000px;}
.ye4{bottom:617.685000px;}
.y4b{bottom:618.045000px;}
.y6e{bottom:619.665000px;}
.ya5{bottom:641.445000px;}
.y4a{bottom:642.345000px;}
.yd{bottom:642.525000px;}
.ye3{bottom:642.885000px;}
.y2d{bottom:649.185000px;}
.y6d{bottom:651.165000px;}
.yc6{bottom:654.945000px;}
.ya4{bottom:665.745000px;}
.y49{bottom:666.645000px;}
.ye2{bottom:668.265000px;}
.yc{bottom:678.885000px;}
.yc5{bottom:680.325000px;}
.y2c{bottom:680.865000px;}
.y48{bottom:690.945000px;}
.y6c{bottom:692.565000px;}
.yc4{bottom:705.525000px;}
.y2b{bottom:712.725000px;}
.yb{bottom:715.065000px;}
.y47{bottom:715.245000px;}
.ye1{bottom:716.685000px;}
.yc3{bottom:729.825000px;}
.y6b{bottom:734.505000px;}
.ya3{bottom:740.445000px;}
.ye0{bottom:742.065000px;}
.y2a{bottom:749.445000px;}
.y46{bottom:751.425000px;}
.y69{bottom:752.325000px;}
.ya{bottom:752.505000px;}
.yc2{bottom:755.205000px;}
.y8b{bottom:763.305000px;}
.ya2{bottom:765.645000px;}
.ydf{bottom:766.185000px;}
.y45{bottom:775.725000px;}
.yc1{bottom:779.325000px;}
.y8a{bottom:787.605000px;}
.ya1{bottom:791.025000px;}
.yde{bottom:791.385000px;}
.y9{bottom:791.745000px;}
.y68{bottom:792.285000px;}
.y29{bottom:797.685000px;}
.yc0{bottom:804.705000px;}
.y89{bottom:811.905000px;}
.y44{bottom:812.085000px;}
.y66{bottom:812.445000px;}
.y27{bottom:815.505000px;}
.ya0{bottom:816.225000px;}
.ydd{bottom:816.765000px;}
.ybf{bottom:828.870000px;}
.y8{bottom:829.230000px;}
.y65{bottom:835.890000px;}
.y88{bottom:836.070000px;}
.y43{bottom:836.250000px;}
.y22{bottom:838.770000px;}
.ydc{bottom:841.110000px;}
.y9f{bottom:844.530000px;}
.ybe{bottom:861.450000px;}
.y87{bottom:864.330000px;}
.y7{bottom:864.510000px;}
.y42{bottom:872.610000px;}
.ydb{bottom:873.510000px;}
.y9e{bottom:874.590000px;}
.y62{bottom:875.670000px;}
.y41{bottom:896.910000px;}
.y86{bottom:900.690000px;}
.ybd{bottom:902.850000px;}
.y9d{bottom:906.270000px;}
.yda{bottom:912.750000px;}
.y6{bottom:913.830000px;}
.y60{bottom:915.450000px;}
.y20{bottom:923.910000px;}
.y40{bottom:929.490000px;}
.y9c{bottom:931.650000px;}
.y85{bottom:936.870000px;}
.y5f{bottom:942.630000px;}
.ybc{bottom:944.610000px;}
.y9b{bottom:957.030000px;}
.y84{bottom:961.170000px;}
.y5{bottom:962.970000px;}
.y3f{bottom:971.430000px;}
.y5e{bottom:974.490000px;}
.y1f{bottom:975.930000px;}
.ybb{bottom:976.470000px;}
.y9a{bottom:981.150000px;}
.y83{bottom:985.470000px;}
.yba{bottom:1000.770000px;}
.y3e{bottom:1003.290000px;}
.y99{bottom:1009.410000px;}
.y82{bottom:1009.770000px;}
.y5d{bottom:1010.670000px;}
.y4{bottom:1012.290000px;}
.yb9{bottom:1032.090000px;}
.y81{bottom:1033.890000px;}
.y1e{bottom:1034.970000px;}
.y98{bottom:1039.470000px;}
.y2{bottom:1056.030000px;}
.y1{bottom:1073.160000px;}
.hc{height:19.440000px;}
.ha{height:19.620000px;}
.h4{height:22.500000px;}
.h6{height:22.536000px;}
.h11{height:32.940000px;}
.h10{height:33.120000px;}
.h13{height:33.156000px;}
.hb{height:39.060000px;}
.hd{height:39.240000px;}
.h9{height:39.830273px;}
.h14{height:54.000000px;}
.he{height:54.180000px;}
.h12{height:59.439023px;}
.h1{height:60.960938px;}
.hf{height:61.189805px;}
.h3{height:71.324297px;}
.h16{height:71.824219px;}
.h15{height:74.004654px;}
.h5{height:84.420000px;}
.h7{height:98.051133px;}
.h8{height:98.426190px;}
.h2{height:142.038984px;}
.h0{height:1188.000000px;}
.wa{width:43.380000px;}
.w9{width:43.416000px;}
.w8{width:43.560000px;}
.w6{width:95.256000px;}
.w5{width:158.220000px;}
.w2{width:174.780000px;}
.w3{width:174.810000px;}
.w7{width:180.030000px;}
.w4{width:238.710000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:1.800000px;}
.x5{left:7.740000px;}
.x12{left:11.880000px;}
.x18{left:18.000000px;}
.x19{left:21.780000px;}
.x4{left:100.296000px;}
.xd{left:106.236000px;}
.x2{left:108.035986px;}
.x9{left:124.595986px;}
.x1a{left:135.035986px;}
.xa{left:140.975986px;}
.x1b{left:162.029986px;}
.xf{left:265.170000px;}
.x1{left:266.609986px;}
.x6{left:275.790000px;}
.x3{left:322.814986px;}
.xb{left:339.735000px;}
.x10{left:361.155000px;}
.x7{left:451.335000px;}
.x11{left:541.905000px;}
.xc{left:579.165000px;}
.x13{left:586.185000px;}
.x8{left:626.865000px;}
.x14{left:630.645000px;}
.x15{left:674.790000px;}
.x16{left:719.250000px;}
.x17{left:763.530000px;}
.x1c{left:837.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls10{letter-spacing:-0.256533pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.203733pt;}
.lsb{letter-spacing:0.314880pt;}
.ls4{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls0{letter-spacing:3.957333pt;}
.lse{letter-spacing:19.328000pt;}
.lsd{letter-spacing:48.746667pt;}
.ls7{letter-spacing:83.195307pt;}
.ls5{letter-spacing:89.425067pt;}
.ls3{letter-spacing:127.825067pt;}
.ws2{word-spacing:-64.000000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-32.806400pt;}
.ws8{word-spacing:-32.000000pt;}
.ws1{word-spacing:-20.430933pt;}
.wse{word-spacing:-16.217067pt;}
.wsc{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.400000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws6{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.888000pt;}
.ws9{word-spacing:-11.953280pt;}
.wsb{word-spacing:-9.433600pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-12.675200pt;}
._0{margin-left:-11.333120pt;}
._14{margin-left:-9.909333pt;}
._13{margin-left:-8.885333pt;}
._12{margin-left:-7.433173pt;}
._5{margin-left:-6.412160pt;}
._4{margin-left:-5.219200pt;}
._2{margin-left:-3.280640pt;}
._1{margin-left:-2.385920pt;}
._8{margin-left:-1.226453pt;}
._c{width:0.906453pt;}
._15{width:2.368000pt;}
._9{width:3.519360pt;}
._a{width:4.717440pt;}
._b{width:6.178347pt;}
._16{width:7.744000pt;}
._21{width:9.216000pt;}
._20{width:10.880000pt;}
._1b{width:11.840000pt;}
._1a{width:12.745173pt;}
._3{width:14.017280pt;}
._1c{width:16.064000pt;}
._17{width:17.024000pt;}
._d{width:18.176000pt;}
._e{width:19.317547pt;}
._18{width:20.426453pt;}
._6{width:21.771520pt;}
._7{width:23.799680pt;}
._19{width:24.896000pt;}
._23{width:26.240000pt;}
._24{width:27.136000pt;}
._1d{width:76.758400pt;}
._f{width:186.368000pt;}
._10{width:187.584000pt;}
._1f{width:249.557760pt;}
._1e{width:281.536000pt;}
._22{width:1776.640000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.520000pt;}
.y21{bottom:4.800000pt;}
.y28{bottom:4.840000pt;}
.y64{bottom:6.080000pt;}
.y61{bottom:6.240000pt;}
.y67{bottom:8.840000pt;}
.y77{bottom:16.480000pt;}
.y80{bottom:16.634667pt;}
.y74{bottom:16.640000pt;}
.y25{bottom:22.400000pt;}
.y63{bottom:23.520000pt;}
.y6a{bottom:23.680000pt;}
.y7e{bottom:35.200000pt;}
.y73{bottom:35.360000pt;}
.y24{bottom:41.120000pt;}
.y3{bottom:51.360000pt;}
.y23{bottom:59.840000pt;}
.y97{bottom:101.312000pt;}
.y3d{bottom:105.152000pt;}
.y5c{bottom:111.552000pt;}
.yb8{bottom:114.752000pt;}
.y1d{bottom:116.992000pt;}
.y7f{bottom:120.352000pt;}
.y96{bottom:122.912000pt;}
.yd9{bottom:123.232000pt;}
.y5b{bottom:132.992000pt;}
.y3c{bottom:133.466667pt;}
.yb7{bottom:136.346667pt;}
.y1c{bottom:138.586667pt;}
.yf5{bottom:140.986667pt;}
.yd8{bottom:144.826667pt;}
.y95{bottom:146.906667pt;}
.y7d{bottom:150.426667pt;}
.y5a{bottom:154.586667pt;}
.yb6{bottom:157.946667pt;}
.y3b{bottom:161.626667pt;}
.yf4{bottom:162.586667pt;}
.yd7{bottom:166.426667pt;}
.y1b{bottom:170.906667pt;}
.y94{bottom:173.786667pt;}
.y59{bottom:176.186667pt;}
.yb5{bottom:185.786667pt;}
.yd6{bottom:187.866667pt;}
.y3a{bottom:189.946667pt;}
.yf3{bottom:191.546667pt;}
.y1a{bottom:192.346667pt;}
.y58{bottom:197.786667pt;}
.y7c{bottom:199.226667pt;}
.y93{bottom:201.946667pt;}
.yd5{bottom:210.426667pt;}
.y19{bottom:213.946667pt;}
.y39{bottom:218.106667pt;}
.yb4{bottom:220.346667pt;}
.y92{bottom:223.546667pt;}
.yf2{bottom:228.826667pt;}
.y7b{bottom:229.146667pt;}
.y57{bottom:229.946667pt;}
.yd4{bottom:232.026667pt;}
.y91{bottom:246.106667pt;}
.y18{bottom:246.266667pt;}
.y38{bottom:246.426667pt;}
.yf1{bottom:247.546667pt;}
.yb3{bottom:248.666667pt;}
.y56{bottom:251.546667pt;}
.yd3{bottom:253.626667pt;}
.y7a{bottom:259.226667pt;}
.yf0{bottom:267.226667pt;}
.y90{bottom:267.546667pt;}
.y17{bottom:269.146667pt;}
.yb2{bottom:270.106667pt;}
.y55{bottom:273.146667pt;}
.y37{bottom:274.586667pt;}
.yd2{bottom:275.066667pt;}
.yef{bottom:286.946667pt;}
.y79{bottom:289.346667pt;}
.y8f{bottom:289.986667pt;}
.y16{bottom:291.746667pt;}
.yb1{bottom:292.706667pt;}
.yd1{bottom:297.506667pt;}
.y54{bottom:301.186667pt;}
.y36{bottom:302.946667pt;}
.yee{bottom:305.666667pt;}
.y8e{bottom:312.546667pt;}
.y15{bottom:313.186667pt;}
.yb0{bottom:314.306667pt;}
.y78{bottom:319.426667pt;}
.yd0{bottom:320.066667pt;}
.yed{bottom:325.346667pt;}
.y35{bottom:331.106667pt;}
.y8d{bottom:333.986667pt;}
.yaf{bottom:335.746667pt;}
.y53{bottom:335.906667pt;}
.ycf{bottom:341.506667pt;}
.y14{bottom:345.506667pt;}
.y76{bottom:349.506667pt;}
.y8c{bottom:353.026667pt;}
.yec{bottom:354.146667pt;}
.y52{bottom:357.506667pt;}
.yae{bottom:358.306667pt;}
.y34{bottom:363.426667pt;}
.yce{bottom:364.066667pt;}
.y13{bottom:377.666667pt;}
.y51{bottom:379.106667pt;}
.y75{bottom:379.426667pt;}
.yad{bottom:379.746667pt;}
.yeb{bottom:386.146667pt;}
.ycd{bottom:386.466667pt;}
.y33{bottom:395.586667pt;}
.yac{bottom:402.306667pt;}
.yea{bottom:404.866667pt;}
.ycc{bottom:408.866667pt;}
.y72{bottom:409.506667pt;}
.y12{bottom:409.986667pt;}
.y50{bottom:411.266667pt;}
.ye9{bottom:424.546667pt;}
.yab{bottom:424.706667pt;}
.y32{bottom:427.746667pt;}
.ycb{bottom:431.426667pt;}
.y4f{bottom:432.866667pt;}
.y11{bottom:442.146667pt;}
.ye8{bottom:444.226667pt;}
.yaa{bottom:447.266667pt;}
.yca{bottom:453.026667pt;}
.y31{bottom:460.066667pt;}
.ye7{bottom:462.946667pt;}
.y4e{bottom:465.186667pt;}
.ya9{bottom:468.866667pt;}
.y10{bottom:474.466667pt;}
.y71{bottom:475.426667pt;}
.ye6{bottom:485.346667pt;}
.ya8{bottom:490.306667pt;}
.y30{bottom:492.226667pt;}
.y4d{bottom:493.026667pt;}
.y70{bottom:496.866667pt;}
.yc9{bottom:497.026667pt;}
.yf{bottom:506.653333pt;}
.ye5{bottom:514.333333pt;}
.ya7{bottom:515.453333pt;}
.yc8{bottom:518.653333pt;}
.y2f{bottom:520.573333pt;}
.y4c{bottom:527.933333pt;}
.y6f{bottom:529.213333pt;}
.ye{bottom:538.973333pt;}
.yc7{bottom:547.453333pt;}
.ya6{bottom:547.613333pt;}
.y2e{bottom:548.733333pt;}
.ye4{bottom:549.053333pt;}
.y4b{bottom:549.373333pt;}
.y6e{bottom:550.813333pt;}
.ya5{bottom:570.173333pt;}
.y4a{bottom:570.973333pt;}
.yd{bottom:571.133333pt;}
.ye3{bottom:571.453333pt;}
.y2d{bottom:577.053333pt;}
.y6d{bottom:578.813333pt;}
.yc6{bottom:582.173333pt;}
.ya4{bottom:591.773333pt;}
.y49{bottom:592.573333pt;}
.ye2{bottom:594.013333pt;}
.yc{bottom:603.453333pt;}
.yc5{bottom:604.733333pt;}
.y2c{bottom:605.213333pt;}
.y48{bottom:614.173333pt;}
.y6c{bottom:615.613333pt;}
.yc4{bottom:627.133333pt;}
.y2b{bottom:633.533333pt;}
.yb{bottom:635.613333pt;}
.y47{bottom:635.773333pt;}
.ye1{bottom:637.053333pt;}
.yc3{bottom:648.733333pt;}
.y6b{bottom:652.893333pt;}
.ya3{bottom:658.173333pt;}
.ye0{bottom:659.613333pt;}
.y2a{bottom:666.173333pt;}
.y46{bottom:667.933333pt;}
.y69{bottom:668.733333pt;}
.ya{bottom:668.893333pt;}
.yc2{bottom:671.293333pt;}
.y8b{bottom:678.493333pt;}
.ya2{bottom:680.573333pt;}
.ydf{bottom:681.053333pt;}
.y45{bottom:689.533333pt;}
.yc1{bottom:692.733333pt;}
.y8a{bottom:700.093333pt;}
.ya1{bottom:703.133333pt;}
.yde{bottom:703.453333pt;}
.y9{bottom:703.773333pt;}
.y68{bottom:704.253333pt;}
.y29{bottom:709.053333pt;}
.yc0{bottom:715.293333pt;}
.y89{bottom:721.693333pt;}
.y44{bottom:721.853333pt;}
.y66{bottom:722.173333pt;}
.y27{bottom:724.893333pt;}
.ya0{bottom:725.533333pt;}
.ydd{bottom:726.013333pt;}
.ybf{bottom:736.773333pt;}
.y8{bottom:737.093333pt;}
.y65{bottom:743.013333pt;}
.y88{bottom:743.173333pt;}
.y43{bottom:743.333333pt;}
.y22{bottom:745.573333pt;}
.ydc{bottom:747.653333pt;}
.y9f{bottom:750.693333pt;}
.ybe{bottom:765.733333pt;}
.y87{bottom:768.293333pt;}
.y7{bottom:768.453333pt;}
.y42{bottom:775.653333pt;}
.ydb{bottom:776.453333pt;}
.y9e{bottom:777.413333pt;}
.y62{bottom:778.373333pt;}
.y41{bottom:797.253333pt;}
.y86{bottom:800.613333pt;}
.ybd{bottom:802.533333pt;}
.y9d{bottom:805.573333pt;}
.yda{bottom:811.333333pt;}
.y6{bottom:812.293333pt;}
.y60{bottom:813.733333pt;}
.y20{bottom:821.253333pt;}
.y40{bottom:826.213333pt;}
.y9c{bottom:828.133333pt;}
.y85{bottom:832.773333pt;}
.y5f{bottom:837.893333pt;}
.ybc{bottom:839.653333pt;}
.y9b{bottom:850.693333pt;}
.y84{bottom:854.373333pt;}
.y5{bottom:855.973333pt;}
.y3f{bottom:863.493333pt;}
.y5e{bottom:866.213333pt;}
.y1f{bottom:867.493333pt;}
.ybb{bottom:867.973333pt;}
.y9a{bottom:872.133333pt;}
.y83{bottom:875.973333pt;}
.yba{bottom:889.573333pt;}
.y3e{bottom:891.813333pt;}
.y99{bottom:897.253333pt;}
.y82{bottom:897.573333pt;}
.y5d{bottom:898.373333pt;}
.y4{bottom:899.813333pt;}
.yb9{bottom:917.413333pt;}
.y81{bottom:919.013333pt;}
.y1e{bottom:919.973333pt;}
.y98{bottom:923.973333pt;}
.y2{bottom:938.693333pt;}
.y1{bottom:953.920000pt;}
.hc{height:17.280000pt;}
.ha{height:17.440000pt;}
.h4{height:20.000000pt;}
.h6{height:20.032000pt;}
.h11{height:29.280000pt;}
.h10{height:29.440000pt;}
.h13{height:29.472000pt;}
.hb{height:34.720000pt;}
.hd{height:34.880000pt;}
.h9{height:35.404688pt;}
.h14{height:48.000000pt;}
.he{height:48.160000pt;}
.h12{height:52.834688pt;}
.h1{height:54.187500pt;}
.hf{height:54.390938pt;}
.h3{height:63.399375pt;}
.h16{height:63.843750pt;}
.h15{height:65.781915pt;}
.h5{height:75.040000pt;}
.h7{height:87.156562pt;}
.h8{height:87.489947pt;}
.h2{height:126.256875pt;}
.h0{height:1056.000000pt;}
.wa{width:38.560000pt;}
.w9{width:38.592000pt;}
.w8{width:38.720000pt;}
.w6{width:84.672000pt;}
.w5{width:140.640000pt;}
.w2{width:155.360000pt;}
.w3{width:155.386667pt;}
.w7{width:160.026667pt;}
.w4{width:212.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:1.600000pt;}
.x5{left:6.880000pt;}
.x12{left:10.560000pt;}
.x18{left:16.000000pt;}
.x19{left:19.360000pt;}
.x4{left:89.152000pt;}
.xd{left:94.432000pt;}
.x2{left:96.031988pt;}
.x9{left:110.751988pt;}
.x1a{left:120.031988pt;}
.xa{left:125.311988pt;}
.x1b{left:144.026655pt;}
.xf{left:235.706667pt;}
.x1{left:236.986655pt;}
.x6{left:245.146667pt;}
.x3{left:286.946655pt;}
.xb{left:301.986667pt;}
.x10{left:321.026667pt;}
.x7{left:401.186667pt;}
.x11{left:481.693333pt;}
.xc{left:514.813333pt;}
.x13{left:521.053333pt;}
.x8{left:557.213333pt;}
.x14{left:560.573333pt;}
.x15{left:599.813333pt;}
.x16{left:639.333333pt;}
.x17{left:678.693333pt;}
.x1c{left:744.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; }
  