
    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_5e3a2c8cc4c761445f5efb6c.woff')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_b963fe0f1efd5597e512d800.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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_46c6bd231234f032e7aeac66.woff')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_d81633a0e82b9f544aa989ad.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_85328be0ef4527c0ee523128.woff')format("woff");}.ff6{font-family:ff6;line-height:1.208008;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4add9774605636aefc26ad80.woff')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_5f77ea90b3770644f040c3e6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7b3db40cdbbf233107bde542.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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);}
.v1{vertical-align:-12.240000px;}
.v3{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.ls1a{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.053280px;}
.ls18{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.132600px;}
.ls1d{letter-spacing:0.154800px;}
.ls1{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.279600px;}
.ls17{letter-spacing:0.321000px;}
.lsa{letter-spacing:0.323400px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.399600px;}
.ls1b{letter-spacing:0.532800px;}
.ls16{letter-spacing:0.719280px;}
.ls5{letter-spacing:3.780000px;}
.ls14{letter-spacing:12.959280px;}
.lsd{letter-spacing:13.079280px;}
.ls15{letter-spacing:13.679280px;}
.ls1c{letter-spacing:13.799280px;}
.ls3{letter-spacing:16.439760px;}
.lsf{letter-spacing:17.216640px;}
.ls10{letter-spacing:34.513200px;}
.ls1f{letter-spacing:41.682720px;}
.lsb{letter-spacing:64.026720px;}
.ls11{letter-spacing:77.892960px;}
.lse{letter-spacing:120.972960px;}
.ls13{letter-spacing:268.572960px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.wsa{word-spacing:-59.760000px;}
.ws1e{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws0{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.470600px;}
.wsb{word-spacing:-13.468200px;}
.ws19{word-spacing:-13.302000px;}
.ws12{word-spacing:-13.279800px;}
.wse{word-spacing:-13.237200px;}
.ws7{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.ws10{word-spacing:-9.187200px;}
.ws3{word-spacing:-0.200160px;}
.ws15{word-spacing:-0.187920px;}
.ws18{word-spacing:-0.174240px;}
.ws9{word-spacing:0.000000px;}
.ws1b{word-spacing:0.495840px;}
.ws17{word-spacing:0.519840px;}
.ws16{word-spacing:0.532080px;}
.ws1c{word-spacing:0.639840px;}
.ws1a{word-spacing:0.699840px;}
.ws13{word-spacing:4.012560px;}
.wsd{word-spacing:4.069440px;}
.wsf{word-spacing:6.928320px;}
.wsc{word-spacing:11.148480px;}
.ws11{word-spacing:20.500560px;}
.ws14{word-spacing:21.654720px;}
._12{margin-left:-6.867840px;}
._b{margin-left:-3.710400px;}
._9{margin-left:-2.670960px;}
._0{margin-left:-1.080960px;}
._1{width:1.002960px;}
._5{width:2.353920px;}
._2{width:4.269840px;}
._6{width:6.306480px;}
._8{width:7.426800px;}
._a{width:8.555040px;}
._11{width:9.853200px;}
._7{width:10.885680px;}
._e{width:11.892240px;}
._d{width:12.908160px;}
._13{width:14.421360px;}
._c{width:16.327440px;}
._10{width:17.499600px;}
._14{width:19.720800px;}
._f{width:20.796480px;}
._4{width:85.656000px;}
._3{width:687.306000px;}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y91{bottom:3.240000px;}
.y96{bottom:11.874000px;}
.y8f{bottom:11.880000px;}
.y90{bottom:20.340000px;}
.y95{bottom:20.514000px;}
.yb{bottom:35.820000px;}
.ya{bottom:54.540000px;}
.y9{bottom:70.056000px;}
.y6c{bottom:123.516000px;}
.y94{bottom:138.276000px;}
.y6b{bottom:140.796000px;}
.yb9{bottom:147.996000px;}
.y6a{bottom:158.070000px;}
.y3a{bottom:162.390000px;}
.yb8{bottom:165.270000px;}
.y69{bottom:175.350000px;}
.y93{bottom:178.770000px;}
.y39{bottom:179.670000px;}
.yb7{bottom:182.550000px;}
.y68{bottom:192.450000px;}
.y38{bottom:196.950000px;}
.yd7{bottom:199.650000px;}
.yb6{bottom:199.830000px;}
.y92{bottom:201.990000px;}
.y67{bottom:209.730000px;}
.y37{bottom:214.230000px;}
.yd6{bottom:216.930000px;}
.yb5{bottom:217.110000px;}
.y8e{bottom:225.390000px;}
.y66{bottom:227.010000px;}
.y36{bottom:231.510000px;}
.yd5{bottom:234.210000px;}
.yb4{bottom:234.570000px;}
.y65{bottom:244.290000px;}
.y35{bottom:248.610000px;}
.yd4{bottom:251.490000px;}
.yb3{bottom:251.850000px;}
.y64{bottom:261.570000px;}
.y34{bottom:265.890000px;}
.y8d{bottom:267.870000px;}
.yd3{bottom:268.770000px;}
.yb2{bottom:269.310000px;}
.y63{bottom:278.850000px;}
.y33{bottom:283.170000px;}
.y8c{bottom:285.150000px;}
.yd2{bottom:286.050000px;}
.yb1{bottom:286.770000px;}
.y62{bottom:295.950000px;}
.y32{bottom:300.450000px;}
.y8b{bottom:302.430000px;}
.yd1{bottom:303.150000px;}
.yb0{bottom:304.050000px;}
.y61{bottom:313.230000px;}
.y31{bottom:317.775000px;}
.yd0{bottom:320.475000px;}
.y8a{bottom:320.835000px;}
.yaf{bottom:321.195000px;}
.y60{bottom:330.555000px;}
.y30{bottom:335.055000px;}
.ycf{bottom:337.755000px;}
.y89{bottom:338.115000px;}
.yae{bottom:338.475000px;}
.y5f{bottom:347.835000px;}
.y2f{bottom:352.155000px;}
.yce{bottom:355.035000px;}
.y88{bottom:356.475000px;}
.yad{bottom:356.835000px;}
.y5e{bottom:365.115000px;}
.y2e{bottom:369.435000px;}
.ycd{bottom:372.315000px;}
.y87{bottom:373.935000px;}
.yac{bottom:374.115000px;}
.y5d{bottom:382.395000px;}
.y2d{bottom:386.715000px;}
.ycc{bottom:389.415000px;}
.y86{bottom:392.295000px;}
.yab{bottom:392.475000px;}
.y5c{bottom:399.495000px;}
.y2c{bottom:403.995000px;}
.ycb{bottom:406.695000px;}
.yaa{bottom:409.575000px;}
.y85{bottom:410.655000px;}
.y5b{bottom:416.775000px;}
.y2b{bottom:421.275000px;}
.yca{bottom:423.975000px;}
.y84{bottom:427.935000px;}
.y5a{bottom:434.055000px;}
.y2a{bottom:438.375000px;}
.yc9{bottom:441.255000px;}
.ya9{bottom:445.215000px;}
.y83{bottom:446.295000px;}
.y59{bottom:451.335000px;}
.y29{bottom:455.655000px;}
.yc8{bottom:458.535000px;}
.y82{bottom:463.575000px;}
.y58{bottom:468.615000px;}
.y28{bottom:472.935000px;}
.yc7{bottom:475.815000px;}
.ya8{bottom:480.855000px;}
.y81{bottom:481.035000px;}
.y57{bottom:485.895000px;}
.y27{bottom:490.215000px;}
.yc6{bottom:492.915000px;}
.ya7{bottom:498.315000px;}
.y7f{bottom:498.495000px;}
.y80{bottom:499.035000px;}
.y56{bottom:502.995000px;}
.y26{bottom:507.495000px;}
.yc5{bottom:510.195000px;}
.ya6{bottom:515.775000px;}
.y7e{bottom:515.955000px;}
.y55{bottom:520.275000px;}
.y25{bottom:524.775000px;}
.yc4{bottom:527.475000px;}
.y7c{bottom:533.415000px;}
.y7d{bottom:533.955000px;}
.y54{bottom:537.555000px;}
.y24{bottom:541.875000px;}
.yc3{bottom:544.755000px;}
.ya5{bottom:551.055000px;}
.y7a{bottom:552.675000px;}
.y7b{bottom:553.215000px;}
.y53{bottom:554.835000px;}
.y23{bottom:559.155000px;}
.yc2{bottom:562.035000px;}
.ya4{bottom:568.545000px;}
.y79{bottom:571.425000px;}
.y52{bottom:572.145000px;}
.y22{bottom:576.465000px;}
.yc1{bottom:579.345000px;}
.ya3{bottom:586.005000px;}
.y78{bottom:588.885000px;}
.y51{bottom:589.245000px;}
.y21{bottom:593.745000px;}
.yc0{bottom:596.445000px;}
.ya2{bottom:603.285000px;}
.y77{bottom:606.345000px;}
.y50{bottom:606.525000px;}
.y20{bottom:611.025000px;}
.ybf{bottom:613.725000px;}
.ya1{bottom:621.645000px;}
.y4f{bottom:623.805000px;}
.y1f{bottom:630.465000px;}
.ybe{bottom:631.005000px;}
.ya0{bottom:638.925000px;}
.y4e{bottom:641.085000px;}
.y1e{bottom:647.745000px;}
.ybd{bottom:648.285000px;}
.y9f{bottom:657.285000px;}
.y4d{bottom:658.365000px;}
.y76{bottom:659.445000px;}
.y1d{bottom:665.205000px;}
.ybc{bottom:665.565000px;}
.y9e{bottom:674.565000px;}
.y4c{bottom:675.645000px;}
.y75{bottom:676.725000px;}
.y1c{bottom:682.665000px;}
.ybb{bottom:682.845000px;}
.y4b{bottom:692.745000px;}
.y74{bottom:694.905000px;}
.yba{bottom:696.705000px;}
.y1b{bottom:700.305000px;}
.y9d{bottom:710.025000px;}
.y4a{bottom:711.105000px;}
.y73{bottom:712.185000px;}
.y1a{bottom:717.765000px;}
.y49{bottom:728.385000px;}
.y72{bottom:730.545000px;}
.y19{bottom:735.045000px;}
.y9c{bottom:745.665000px;}
.y48{bottom:746.745000px;}
.y71{bottom:747.825000px;}
.y18{bottom:752.145000px;}
.y47{bottom:764.025000px;}
.y70{bottom:765.105000px;}
.y17{bottom:769.425000px;}
.y9b{bottom:781.305000px;}
.y46{bottom:782.205000px;}
.y16{bottom:786.705000px;}
.y9a{bottom:798.405000px;}
.y45{bottom:799.485000px;}
.y15{bottom:803.985000px;}
.y99{bottom:815.685000px;}
.y44{bottom:816.765000px;}
.y14{bottom:821.310000px;}
.y98{bottom:833.010000px;}
.y6f{bottom:834.090000px;}
.y43{bottom:835.170000px;}
.y13{bottom:838.590000px;}
.y97{bottom:851.370000px;}
.y42{bottom:852.450000px;}
.y12{bottom:855.690000px;}
.y6e{bottom:869.730000px;}
.y41{bottom:870.810000px;}
.y11{bottom:875.490000px;}
.y40{bottom:887.910000px;}
.y10{bottom:894.750000px;}
.y6d{bottom:905.190000px;}
.y3f{bottom:906.270000px;}
.yf{bottom:913.650000px;}
.y3e{bottom:923.550000px;}
.ye{bottom:932.550000px;}
.y3d{bottom:940.830000px;}
.yd{bottom:951.810000px;}
.y3c{bottom:958.110000px;}
.yc{bottom:972.510000px;}
.y3b{bottom:975.390000px;}
.y8{bottom:993.030000px;}
.y7{bottom:1011.930000px;}
.y6{bottom:1029.210000px;}
.y5{bottom:1047.030000px;}
.y4{bottom:1063.770000px;}
.y3{bottom:1105.740000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.hc{height:17.280000px;}
.hb{height:34.380000px;}
.hd{height:34.560000px;}
.h6{height:37.705078px;}
.he{height:41.493516px;}
.h1{height:41.726953px;}
.h4{height:42.164648px;}
.h9{height:43.506914px;}
.ha{height:45.024258px;}
.h2{height:46.251562px;}
.h7{height:46.736719px;}
.h3{height:50.800781px;}
.h8{height:53.165391px;}
.h5{height:55.825312px;}
.h0{height:1188.000000px;}
.w6{width:113.580000px;}
.w5{width:114.156000px;}
.w4{width:123.156000px;}
.w2{width:152.280000px;}
.w3{width:177.150000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:1.080000px;}
.x19{left:8.460000px;}
.x1c{left:13.140000px;}
.x1d{left:24.120000px;}
.x18{left:29.025000px;}
.x16{left:48.234000px;}
.x8{left:108.035986px;}
.x15{left:111.456000px;}
.x2{left:120.635986px;}
.xe{left:135.035986px;}
.x1{left:137.735986px;}
.x27{left:162.029986px;}
.xa{left:167.969986px;}
.x5{left:179.489986px;}
.x9{left:215.309986px;}
.x21{left:241.229986px;}
.x17{left:267.510000px;}
.x20{left:282.989986px;}
.xf{left:299.594986px;}
.xd{left:317.054986px;}
.x11{left:339.914986px;}
.x14{left:348.554986px;}
.xb{left:379.514986px;}
.xc{left:391.574986px;}
.x24{left:394.814986px;}
.x13{left:396.074986px;}
.x7{left:398.774986px;}
.x25{left:399.854986px;}
.x26{left:408.674986px;}
.x6{left:424.874986px;}
.x23{left:429.914986px;}
.x1a{left:448.455000px;}
.x3{left:459.074986px;}
.x12{left:463.214986px;}
.x4{left:531.104986px;}
.x10{left:563.144986px;}
.x1b{left:575.385000px;}
.x1e{left:693.150000px;}
.x22{left:754.889986px;}
@media print{
.v1{vertical-align:-10.880000pt;}
.v3{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.047360pt;}
.ls18{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.117867pt;}
.ls1d{letter-spacing:0.137600pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.248533pt;}
.ls17{letter-spacing:0.285333pt;}
.lsa{letter-spacing:0.287467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.355200pt;}
.ls1b{letter-spacing:0.473600pt;}
.ls16{letter-spacing:0.639360pt;}
.ls5{letter-spacing:3.360000pt;}
.ls14{letter-spacing:11.519360pt;}
.lsd{letter-spacing:11.626027pt;}
.ls15{letter-spacing:12.159360pt;}
.ls1c{letter-spacing:12.266027pt;}
.ls3{letter-spacing:14.613120pt;}
.lsf{letter-spacing:15.303680pt;}
.ls10{letter-spacing:30.678400pt;}
.ls1f{letter-spacing:37.051307pt;}
.lsb{letter-spacing:56.912640pt;}
.ls11{letter-spacing:69.238187pt;}
.lse{letter-spacing:107.531520pt;}
.ls13{letter-spacing:238.731520pt;}
.ws1{word-spacing:-64.000000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1e{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws0{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.973867pt;}
.wsb{word-spacing:-11.971733pt;}
.ws19{word-spacing:-11.824000pt;}
.ws12{word-spacing:-11.804267pt;}
.wse{word-spacing:-11.766400pt;}
.ws7{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.ws10{word-spacing:-8.166400pt;}
.ws3{word-spacing:-0.177920pt;}
.ws15{word-spacing:-0.167040pt;}
.ws18{word-spacing:-0.154880pt;}
.ws9{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.440747pt;}
.ws17{word-spacing:0.462080pt;}
.ws16{word-spacing:0.472960pt;}
.ws1c{word-spacing:0.568747pt;}
.ws1a{word-spacing:0.622080pt;}
.ws13{word-spacing:3.566720pt;}
.wsd{word-spacing:3.617280pt;}
.wsf{word-spacing:6.158507pt;}
.wsc{word-spacing:9.909760pt;}
.ws11{word-spacing:18.222720pt;}
.ws14{word-spacing:19.248640pt;}
._12{margin-left:-6.104747pt;}
._b{margin-left:-3.298133pt;}
._9{margin-left:-2.374187pt;}
._0{margin-left:-0.960853pt;}
._1{width:0.891520pt;}
._5{width:2.092373pt;}
._2{width:3.795413pt;}
._6{width:5.605760pt;}
._8{width:6.601600pt;}
._a{width:7.604480pt;}
._11{width:8.758400pt;}
._7{width:9.676160pt;}
._e{width:10.570880pt;}
._d{width:11.473920pt;}
._13{width:12.818987pt;}
._c{width:14.513280pt;}
._10{width:15.555200pt;}
._14{width:17.529600pt;}
._f{width:18.485760pt;}
._4{width:76.138667pt;}
._3{width:610.938667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:2.880000pt;}
.y96{bottom:10.554667pt;}
.y8f{bottom:10.560000pt;}
.y90{bottom:18.080000pt;}
.y95{bottom:18.234667pt;}
.yb{bottom:31.840000pt;}
.ya{bottom:48.480000pt;}
.y9{bottom:62.272000pt;}
.y6c{bottom:109.792000pt;}
.y94{bottom:122.912000pt;}
.y6b{bottom:125.152000pt;}
.yb9{bottom:131.552000pt;}
.y6a{bottom:140.506667pt;}
.y3a{bottom:144.346667pt;}
.yb8{bottom:146.906667pt;}
.y69{bottom:155.866667pt;}
.y93{bottom:158.906667pt;}
.y39{bottom:159.706667pt;}
.yb7{bottom:162.266667pt;}
.y68{bottom:171.066667pt;}
.y38{bottom:175.066667pt;}
.yd7{bottom:177.466667pt;}
.yb6{bottom:177.626667pt;}
.y92{bottom:179.546667pt;}
.y67{bottom:186.426667pt;}
.y37{bottom:190.426667pt;}
.yd6{bottom:192.826667pt;}
.yb5{bottom:192.986667pt;}
.y8e{bottom:200.346667pt;}
.y66{bottom:201.786667pt;}
.y36{bottom:205.786667pt;}
.yd5{bottom:208.186667pt;}
.yb4{bottom:208.506667pt;}
.y65{bottom:217.146667pt;}
.y35{bottom:220.986667pt;}
.yd4{bottom:223.546667pt;}
.yb3{bottom:223.866667pt;}
.y64{bottom:232.506667pt;}
.y34{bottom:236.346667pt;}
.y8d{bottom:238.106667pt;}
.yd3{bottom:238.906667pt;}
.yb2{bottom:239.386667pt;}
.y63{bottom:247.866667pt;}
.y33{bottom:251.706667pt;}
.y8c{bottom:253.466667pt;}
.yd2{bottom:254.266667pt;}
.yb1{bottom:254.906667pt;}
.y62{bottom:263.066667pt;}
.y32{bottom:267.066667pt;}
.y8b{bottom:268.826667pt;}
.yd1{bottom:269.466667pt;}
.yb0{bottom:270.266667pt;}
.y61{bottom:278.426667pt;}
.y31{bottom:282.466667pt;}
.yd0{bottom:284.866667pt;}
.y8a{bottom:285.186667pt;}
.yaf{bottom:285.506667pt;}
.y60{bottom:293.826667pt;}
.y30{bottom:297.826667pt;}
.ycf{bottom:300.226667pt;}
.y89{bottom:300.546667pt;}
.yae{bottom:300.866667pt;}
.y5f{bottom:309.186667pt;}
.y2f{bottom:313.026667pt;}
.yce{bottom:315.586667pt;}
.y88{bottom:316.866667pt;}
.yad{bottom:317.186667pt;}
.y5e{bottom:324.546667pt;}
.y2e{bottom:328.386667pt;}
.ycd{bottom:330.946667pt;}
.y87{bottom:332.386667pt;}
.yac{bottom:332.546667pt;}
.y5d{bottom:339.906667pt;}
.y2d{bottom:343.746667pt;}
.ycc{bottom:346.146667pt;}
.y86{bottom:348.706667pt;}
.yab{bottom:348.866667pt;}
.y5c{bottom:355.106667pt;}
.y2c{bottom:359.106667pt;}
.ycb{bottom:361.506667pt;}
.yaa{bottom:364.066667pt;}
.y85{bottom:365.026667pt;}
.y5b{bottom:370.466667pt;}
.y2b{bottom:374.466667pt;}
.yca{bottom:376.866667pt;}
.y84{bottom:380.386667pt;}
.y5a{bottom:385.826667pt;}
.y2a{bottom:389.666667pt;}
.yc9{bottom:392.226667pt;}
.ya9{bottom:395.746667pt;}
.y83{bottom:396.706667pt;}
.y59{bottom:401.186667pt;}
.y29{bottom:405.026667pt;}
.yc8{bottom:407.586667pt;}
.y82{bottom:412.066667pt;}
.y58{bottom:416.546667pt;}
.y28{bottom:420.386667pt;}
.yc7{bottom:422.946667pt;}
.ya8{bottom:427.426667pt;}
.y81{bottom:427.586667pt;}
.y57{bottom:431.906667pt;}
.y27{bottom:435.746667pt;}
.yc6{bottom:438.146667pt;}
.ya7{bottom:442.946667pt;}
.y7f{bottom:443.106667pt;}
.y80{bottom:443.586667pt;}
.y56{bottom:447.106667pt;}
.y26{bottom:451.106667pt;}
.yc5{bottom:453.506667pt;}
.ya6{bottom:458.466667pt;}
.y7e{bottom:458.626667pt;}
.y55{bottom:462.466667pt;}
.y25{bottom:466.466667pt;}
.yc4{bottom:468.866667pt;}
.y7c{bottom:474.146667pt;}
.y7d{bottom:474.626667pt;}
.y54{bottom:477.826667pt;}
.y24{bottom:481.666667pt;}
.yc3{bottom:484.226667pt;}
.ya5{bottom:489.826667pt;}
.y7a{bottom:491.266667pt;}
.y7b{bottom:491.746667pt;}
.y53{bottom:493.186667pt;}
.y23{bottom:497.026667pt;}
.yc2{bottom:499.586667pt;}
.ya4{bottom:505.373333pt;}
.y79{bottom:507.933333pt;}
.y52{bottom:508.573333pt;}
.y22{bottom:512.413333pt;}
.yc1{bottom:514.973333pt;}
.ya3{bottom:520.893333pt;}
.y78{bottom:523.453333pt;}
.y51{bottom:523.773333pt;}
.y21{bottom:527.773333pt;}
.yc0{bottom:530.173333pt;}
.ya2{bottom:536.253333pt;}
.y77{bottom:538.973333pt;}
.y50{bottom:539.133333pt;}
.y20{bottom:543.133333pt;}
.ybf{bottom:545.533333pt;}
.ya1{bottom:552.573333pt;}
.y4f{bottom:554.493333pt;}
.y1f{bottom:560.413333pt;}
.ybe{bottom:560.893333pt;}
.ya0{bottom:567.933333pt;}
.y4e{bottom:569.853333pt;}
.y1e{bottom:575.773333pt;}
.ybd{bottom:576.253333pt;}
.y9f{bottom:584.253333pt;}
.y4d{bottom:585.213333pt;}
.y76{bottom:586.173333pt;}
.y1d{bottom:591.293333pt;}
.ybc{bottom:591.613333pt;}
.y9e{bottom:599.613333pt;}
.y4c{bottom:600.573333pt;}
.y75{bottom:601.533333pt;}
.y1c{bottom:606.813333pt;}
.ybb{bottom:606.973333pt;}
.y4b{bottom:615.773333pt;}
.y74{bottom:617.693333pt;}
.yba{bottom:619.293333pt;}
.y1b{bottom:622.493333pt;}
.y9d{bottom:631.133333pt;}
.y4a{bottom:632.093333pt;}
.y73{bottom:633.053333pt;}
.y1a{bottom:638.013333pt;}
.y49{bottom:647.453333pt;}
.y72{bottom:649.373333pt;}
.y19{bottom:653.373333pt;}
.y9c{bottom:662.813333pt;}
.y48{bottom:663.773333pt;}
.y71{bottom:664.733333pt;}
.y18{bottom:668.573333pt;}
.y47{bottom:679.133333pt;}
.y70{bottom:680.093333pt;}
.y17{bottom:683.933333pt;}
.y9b{bottom:694.493333pt;}
.y46{bottom:695.293333pt;}
.y16{bottom:699.293333pt;}
.y9a{bottom:709.693333pt;}
.y45{bottom:710.653333pt;}
.y15{bottom:714.653333pt;}
.y99{bottom:725.053333pt;}
.y44{bottom:726.013333pt;}
.y14{bottom:730.053333pt;}
.y98{bottom:740.453333pt;}
.y6f{bottom:741.413333pt;}
.y43{bottom:742.373333pt;}
.y13{bottom:745.413333pt;}
.y97{bottom:756.773333pt;}
.y42{bottom:757.733333pt;}
.y12{bottom:760.613333pt;}
.y6e{bottom:773.093333pt;}
.y41{bottom:774.053333pt;}
.y11{bottom:778.213333pt;}
.y40{bottom:789.253333pt;}
.y10{bottom:795.333333pt;}
.y6d{bottom:804.613333pt;}
.y3f{bottom:805.573333pt;}
.yf{bottom:812.133333pt;}
.y3e{bottom:820.933333pt;}
.ye{bottom:828.933333pt;}
.y3d{bottom:836.293333pt;}
.yd{bottom:846.053333pt;}
.y3c{bottom:851.653333pt;}
.yc{bottom:864.453333pt;}
.y3b{bottom:867.013333pt;}
.y8{bottom:882.693333pt;}
.y7{bottom:899.493333pt;}
.y6{bottom:914.853333pt;}
.y5{bottom:930.693333pt;}
.y4{bottom:945.573333pt;}
.y3{bottom:982.880000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.hc{height:15.360000pt;}
.hb{height:30.560000pt;}
.hd{height:30.720000pt;}
.h6{height:33.515625pt;}
.he{height:36.883125pt;}
.h1{height:37.090625pt;}
.h4{height:37.479688pt;}
.h9{height:38.672812pt;}
.ha{height:40.021563pt;}
.h2{height:41.112500pt;}
.h7{height:41.543750pt;}
.h3{height:45.156250pt;}
.h8{height:47.258125pt;}
.h5{height:49.622500pt;}
.h0{height:1056.000000pt;}
.w6{width:100.960000pt;}
.w5{width:101.472000pt;}
.w4{width:109.472000pt;}
.w2{width:135.360000pt;}
.w3{width:157.466667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:0.960000pt;}
.x19{left:7.520000pt;}
.x1c{left:11.680000pt;}
.x1d{left:21.440000pt;}
.x18{left:25.800000pt;}
.x16{left:42.874667pt;}
.x8{left:96.031988pt;}
.x15{left:99.072000pt;}
.x2{left:107.231988pt;}
.xe{left:120.031988pt;}
.x1{left:122.431988pt;}
.x27{left:144.026655pt;}
.xa{left:149.306655pt;}
.x5{left:159.546655pt;}
.x9{left:191.386655pt;}
.x21{left:214.426655pt;}
.x17{left:237.786667pt;}
.x20{left:251.546655pt;}
.xf{left:266.306655pt;}
.xd{left:281.826655pt;}
.x11{left:302.146655pt;}
.x14{left:309.826655pt;}
.xb{left:337.346655pt;}
.xc{left:348.066655pt;}
.x24{left:350.946655pt;}
.x13{left:352.066655pt;}
.x7{left:354.466655pt;}
.x25{left:355.426655pt;}
.x26{left:363.266655pt;}
.x6{left:377.666655pt;}
.x23{left:382.146655pt;}
.x1a{left:398.626667pt;}
.x3{left:408.066655pt;}
.x12{left:411.746655pt;}
.x4{left:472.093321pt;}
.x10{left:500.573321pt;}
.x1b{left:511.453333pt;}
.x1e{left:616.133333pt;}
.x22{left:671.013321pt;}
}




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