
    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_22b5f06e44f89317d5f57cbf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_75efeb402b2ab861a1964f29.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.180000;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_d7701205bb0e593bf097c883.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_9be86dea627ea028e6dc59a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_7ec3aac09cfe39ed73aadbf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912500;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_73e8778a46842d73fdfb65f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.913000;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_7a2e66021d3ac05a25fcf8b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.820801;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_32cfd926041a60c9f8778eaf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900391;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_25e99cb850fa38e4d7f4b562.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.051758;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_e17c55c7e49afe9e94486c9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.936400px;}
.ls11{letter-spacing:-8.352000px;}
.lsd{letter-spacing:-6.984000px;}
.ls12{letter-spacing:-6.436800px;}
.lsf{letter-spacing:-1.553112px;}
.ls10{letter-spacing:-1.164834px;}
.ls1{letter-spacing:-0.960000px;}
.ls4{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.210000px;}
.lsb{letter-spacing:0.360000px;}
.ls2{letter-spacing:1.800000px;}
.ls3{letter-spacing:1.872000px;}
.ls9{letter-spacing:7.920000px;}
.lsa{letter-spacing:7.992000px;}
.ls7{letter-spacing:14.400000px;}
.ls8{letter-spacing:14.472000px;}
.ls6{letter-spacing:40.500000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-120.000000px;}
.ws1{word-spacing:-119.040000px;}
.ws13{word-spacing:-72.360000px;}
.ws2{word-spacing:-72.000000px;}
.ws10{word-spacing:-71.640000px;}
.ws5{word-spacing:-71.352000px;}
.ws12{word-spacing:-60.120000px;}
.wse{word-spacing:-60.000000px;}
.wsd{word-spacing:-59.904000px;}
.ws18{word-spacing:-58.032000px;}
.ws11{word-spacing:-57.600000px;}
.wsa{word-spacing:-54.000000px;}
.ws17{word-spacing:-49.020000px;}
.wsc{word-spacing:-48.240000px;}
.ws7{word-spacing:-18.000000px;}
.wsf{word-spacing:-15.000000px;}
.ws9{word-spacing:-13.500000px;}
.ws6{word-spacing:-10.494000px;}
.ws14{word-spacing:-8.940888px;}
.wsb{word-spacing:-8.745000px;}
.ws8{word-spacing:-7.870500px;}
.ws15{word-spacing:-6.705666px;}
.ws4{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.ws19{word-spacing:6.292800px;}
.ws16{word-spacing:8.208000px;}
._18{margin-left:-9.854400px;}
._16{margin-left:-8.352000px;}
._1{margin-left:-6.960000px;}
._5{margin-left:-5.150400px;}
._10{margin-left:-3.456000px;}
._2{margin-left:-2.448000px;}
._0{margin-left:-1.224000px;}
._a{width:1.584000px;}
._d{width:3.110400px;}
._8{width:4.132800px;}
._6{width:5.472000px;}
._7{width:6.912000px;}
._3{width:8.784000px;}
._11{width:9.969600px;}
._f{width:11.138400px;}
._b{width:12.384000px;}
._c{width:13.932000px;}
._13{width:15.552000px;}
._e{width:16.848000px;}
._19{width:19.058400px;}
._4{width:20.131200px;}
._12{width:22.053600px;}
._9{width:23.112000px;}
._17{width:24.998400px;}
._14{width:37.530000px;}
._15{width:40.500000px;}
.fc2{color:rgb(128,130,133);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs4{font-size:41.976000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:127.558950px;}
.y6b{bottom:127.559100px;}
.yf{bottom:130.602600px;}
.yb9{bottom:132.054450px;}
.y9f{bottom:132.054600px;}
.y41{bottom:134.035200px;}
.y8c{bottom:148.254450px;}
.y6a{bottom:148.254600px;}
.yfd{bottom:148.254750px;}
.ye{bottom:153.102600px;}
.y40{bottom:156.535200px;}
.y69{bottom:159.959100px;}
.y8b{bottom:164.454450px;}
.y125{bottom:164.454600px;}
.yfc{bottom:164.455050px;}
.yd{bottom:175.602600px;}
.y3f{bottom:179.035200px;}
.y8a{bottom:180.654450px;}
.y68{bottom:180.654600px;}
.yfb{bottom:180.655050px;}
.y124{bottom:182.454600px;}
.yfa{bottom:192.359850px;}
.yd0{bottom:194.271450px;}
.yd4{bottom:196.854450px;}
.yc{bottom:198.102600px;}
.y123{bottom:198.654600px;}
.y3e{bottom:201.535200px;}
.y9e{bottom:201.535350px;}
.yf9{bottom:214.855200px;}
.yb8{bottom:216.523350px;}
.ycf{bottom:216.771450px;}
.yb{bottom:220.602600px;}
.y3d{bottom:224.035200px;}
.y9d{bottom:224.035350px;}
.yb7{bottom:239.023350px;}
.y67{bottom:239.271450px;}
.ya{bottom:243.102600px;}
.y3c{bottom:246.535200px;}
.y9c{bottom:246.535350px;}
.y89{bottom:252.523350px;}
.yb6{bottom:261.523350px;}
.y66{bottom:261.771450px;}
.yce{bottom:261.781350px;}
.y9{bottom:265.602600px;}
.y122{bottom:265.835700px;}
.y3b{bottom:269.035200px;}
.y9b{bottom:269.035350px;}
.y88{bottom:275.023350px;}
.yf8{bottom:280.267500px;}
.yb5{bottom:284.023350px;}
.y65{bottom:284.271450px;}
.ycd{bottom:284.281350px;}
.y8{bottom:288.102600px;}
.y121{bottom:288.335700px;}
.y3a{bottom:291.535200px;}
.y9a{bottom:291.535350px;}
.y87{bottom:297.523350px;}
.yf7{bottom:299.767500px;}
.yb4{bottom:306.523350px;}
.y64{bottom:306.781350px;}
.y7{bottom:310.602600px;}
.y120{bottom:310.835700px;}
.y39{bottom:314.035200px;}
.y99{bottom:314.035350px;}
.yf6{bottom:319.267500px;}
.y86{bottom:320.023350px;}
.yb3{bottom:329.023350px;}
.y63{bottom:329.281350px;}
.y6{bottom:333.102600px;}
.y11f{bottom:333.335700px;}
.y38{bottom:336.535200px;}
.y98{bottom:336.535350px;}
.yf5{bottom:338.767500px;}
.y85{bottom:342.523350px;}
.yb2{bottom:351.523350px;}
.y62{bottom:351.781350px;}
.y11e{bottom:355.835700px;}
.yf4{bottom:358.267500px;}
.y37{bottom:359.035200px;}
.y97{bottom:359.035350px;}
.y84{bottom:365.023350px;}
.yb1{bottom:374.023350px;}
.y61{bottom:374.281350px;}
.y11d{bottom:378.335700px;}
.y36{bottom:381.535200px;}
.y96{bottom:381.535350px;}
.y83{bottom:387.523350px;}
.yf3{bottom:390.523350px;}
.yb0{bottom:396.523350px;}
.y60{bottom:396.781350px;}
.y11c{bottom:400.835700px;}
.y35{bottom:404.035200px;}
.y95{bottom:404.035350px;}
.y82{bottom:410.023350px;}
.yf2{bottom:413.023350px;}
.yaf{bottom:419.023350px;}
.y5f{bottom:419.281350px;}
.y34{bottom:426.535200px;}
.y94{bottom:426.535350px;}
.y81{bottom:432.523350px;}
.yf1{bottom:435.523350px;}
.y11b{bottom:436.091700px;}
.yae{bottom:441.523350px;}
.y5e{bottom:441.781350px;}
.y33{bottom:449.035200px;}
.y93{bottom:449.035350px;}
.y80{bottom:455.023350px;}
.y11a{bottom:455.591700px;}
.yf0{bottom:458.023350px;}
.yad{bottom:464.023350px;}
.y5d{bottom:464.281350px;}
.y32{bottom:471.535200px;}
.y92{bottom:471.535350px;}
.y119{bottom:475.091700px;}
.y7f{bottom:477.523350px;}
.yef{bottom:480.523350px;}
.yac{bottom:486.523350px;}
.y5c{bottom:486.781350px;}
.y31{bottom:494.035200px;}
.y91{bottom:494.035350px;}
.y118{bottom:494.591700px;}
.y7e{bottom:500.023350px;}
.yee{bottom:503.023350px;}
.yab{bottom:509.023350px;}
.y5b{bottom:509.281350px;}
.y30{bottom:516.535200px;}
.y90{bottom:516.535350px;}
.y7d{bottom:522.523350px;}
.yed{bottom:525.523350px;}
.y117{bottom:526.847550px;}
.yaa{bottom:531.523350px;}
.ycc{bottom:531.781350px;}
.y2f{bottom:539.035200px;}
.y8f{bottom:539.035350px;}
.y5a{bottom:540.277350px;}
.y7c{bottom:545.023350px;}
.yec{bottom:548.023350px;}
.y116{bottom:549.347550px;}
.ya9{bottom:554.023350px;}
.ycb{bottom:554.281350px;}
.y2e{bottom:561.535200px;}
.y8e{bottom:561.535350px;}
.y7b{bottom:567.523350px;}
.yeb{bottom:570.523350px;}
.y115{bottom:571.847550px;}
.ya8{bottom:576.523350px;}
.yca{bottom:576.781350px;}
.y2d{bottom:584.035200px;}
.y59{bottom:584.035350px;}
.y7a{bottom:590.023350px;}
.yea{bottom:593.023350px;}
.y114{bottom:594.347550px;}
.ya7{bottom:599.023350px;}
.yc9{bottom:599.281350px;}
.y2c{bottom:606.535200px;}
.y58{bottom:606.535350px;}
.y79{bottom:612.523350px;}
.ye9{bottom:615.523350px;}
.y113{bottom:616.847550px;}
.ya6{bottom:621.523350px;}
.yc8{bottom:621.781350px;}
.y2b{bottom:629.035200px;}
.y57{bottom:629.035350px;}
.y78{bottom:635.023350px;}
.ye8{bottom:638.023350px;}
.y112{bottom:639.347550px;}
.yc7{bottom:644.281350px;}
.yd3{bottom:647.779350px;}
.y2a{bottom:651.535200px;}
.y56{bottom:651.535350px;}
.ya5{bottom:656.779350px;}
.y77{bottom:657.523350px;}
.ye7{bottom:660.523350px;}
.y111{bottom:661.847550px;}
.yc6{bottom:666.781350px;}
.yd2{bottom:667.279350px;}
.y29{bottom:674.035200px;}
.y55{bottom:674.035350px;}
.ya4{bottom:676.279350px;}
.y76{bottom:680.023350px;}
.ye6{bottom:683.023350px;}
.y110{bottom:684.347550px;}
.yd1{bottom:686.779350px;}
.yc5{bottom:689.281350px;}
.ya3{bottom:695.779350px;}
.y28{bottom:696.535200px;}
.y54{bottom:696.535350px;}
.y75{bottom:702.523350px;}
.ye5{bottom:705.523350px;}
.y10f{bottom:706.847550px;}
.yc4{bottom:711.781350px;}
.ya2{bottom:715.279350px;}
.y27{bottom:719.035200px;}
.y53{bottom:719.035350px;}
.y74{bottom:725.023350px;}
.ye4{bottom:728.023350px;}
.yc3{bottom:734.281350px;}
.ya1{bottom:734.779350px;}
.y26{bottom:741.535200px;}
.y52{bottom:741.535350px;}
.y10e{bottom:742.103550px;}
.y73{bottom:747.523350px;}
.ye3{bottom:750.523350px;}
.ya0{bottom:754.279350px;}
.yc2{bottom:756.781350px;}
.y10d{bottom:761.603550px;}
.y25{bottom:764.035200px;}
.y51{bottom:764.035350px;}
.y72{bottom:770.023350px;}
.ye2{bottom:773.023350px;}
.yc1{bottom:779.281350px;}
.y10c{bottom:781.103550px;}
.y24{bottom:786.535200px;}
.y50{bottom:786.535350px;}
.y71{bottom:792.523350px;}
.ye1{bottom:795.523350px;}
.y10b{bottom:800.603550px;}
.yc0{bottom:801.781350px;}
.y23{bottom:809.035200px;}
.y4f{bottom:809.035350px;}
.y70{bottom:815.023350px;}
.ye0{bottom:818.023350px;}
.y10a{bottom:820.103550px;}
.ybf{bottom:824.281350px;}
.y22{bottom:831.535200px;}
.y4e{bottom:831.535350px;}
.y6f{bottom:837.523350px;}
.y109{bottom:839.603550px;}
.ydf{bottom:840.523350px;}
.ybe{bottom:846.781350px;}
.y21{bottom:854.035200px;}
.y4d{bottom:854.035350px;}
.yde{bottom:863.023350px;}
.y5{bottom:863.358600px;}
.ybd{bottom:869.281350px;}
.y108{bottom:871.859400px;}
.y6e{bottom:872.779350px;}
.y20{bottom:876.535200px;}
.y4c{bottom:876.535350px;}
.ydd{bottom:885.523350px;}
.ybc{bottom:891.781350px;}
.y6d{bottom:892.279350px;}
.y4{bottom:893.358600px;}
.y107{bottom:894.359400px;}
.y1f{bottom:899.035200px;}
.y4b{bottom:899.035350px;}
.ydc{bottom:908.023350px;}
.y6c{bottom:911.779350px;}
.ybb{bottom:914.281350px;}
.y106{bottom:916.859400px;}
.y1e{bottom:921.535200px;}
.y4a{bottom:921.535350px;}
.y3{bottom:923.358600px;}
.ydb{bottom:930.523350px;}
.y105{bottom:939.359400px;}
.y1d{bottom:944.035200px;}
.y49{bottom:944.035350px;}
.yba{bottom:945.277350px;}
.yda{bottom:953.023350px;}
.y2{bottom:953.358600px;}
.y104{bottom:961.859400px;}
.y1c{bottom:966.535200px;}
.y48{bottom:966.535350px;}
.yd9{bottom:975.523350px;}
.y103{bottom:984.359400px;}
.y1b{bottom:989.035200px;}
.y47{bottom:989.035350px;}
.y102{bottom:1006.859400px;}
.yd8{bottom:1010.779350px;}
.y1a{bottom:1011.535200px;}
.y46{bottom:1011.535350px;}
.y1{bottom:1018.614600px;}
.y101{bottom:1029.359400px;}
.yd7{bottom:1030.279350px;}
.y19{bottom:1034.035200px;}
.y45{bottom:1034.035350px;}
.yd6{bottom:1049.779350px;}
.y18{bottom:1056.535200px;}
.y44{bottom:1056.535350px;}
.y100{bottom:1064.615250px;}
.yd5{bottom:1069.279350px;}
.y17{bottom:1079.035200px;}
.y43{bottom:1079.035350px;}
.yff{bottom:1084.115250px;}
.y16{bottom:1101.535200px;}
.y42{bottom:1101.535350px;}
.yfe{bottom:1103.615250px;}
.y14{bottom:1116.352350px;}
.y13{bottom:1136.152350px;}
.y12{bottom:1155.952350px;}
.y15{bottom:1166.275950px;}
.y11{bottom:1175.752350px;}
.y10{bottom:1195.552350px;}
.he{height:29.399236px;}
.h8{height:29.399836px;}
.hc{height:29.531672px;}
.hb{height:34.664484px;}
.hd{height:34.665084px;}
.h9{height:47.381836px;}
.h5{height:48.015000px;}
.h7{height:49.289062px;}
.ha{height:52.646484px;}
.h4{height:63.175781px;}
.h2{height:69.984000px;}
.h6{height:111.164062px;}
.h3{height:116.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.559100px;}
.x2{left:147.316200px;}
.xd{left:148.818900px;}
.x4{left:180.286200px;}
.xc{left:217.098450px;}
.x3{left:227.536200px;}
.x5{left:316.996200px;}
.x1{left:371.631900px;}
.x7{left:485.675850px;}
.x8{left:611.455350px;}
.xb{left:641.567850px;}
.x9{left:649.916850px;}
.xa{left:688.774350px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.276800pt;}
.ls11{letter-spacing:-7.424000pt;}
.lsd{letter-spacing:-6.208000pt;}
.ls12{letter-spacing:-5.721600pt;}
.lsf{letter-spacing:-1.380544pt;}
.ls10{letter-spacing:-1.035408pt;}
.ls1{letter-spacing:-0.853333pt;}
.ls4{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.186667pt;}
.lsb{letter-spacing:0.320000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls3{letter-spacing:1.664000pt;}
.ls9{letter-spacing:7.040000pt;}
.lsa{letter-spacing:7.104000pt;}
.ls7{letter-spacing:12.800000pt;}
.ls8{letter-spacing:12.864000pt;}
.ls6{letter-spacing:36.000000pt;}
.ws0{word-spacing:-106.666667pt;}
.ws1{word-spacing:-105.813333pt;}
.ws13{word-spacing:-64.320000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws10{word-spacing:-63.680000pt;}
.ws5{word-spacing:-63.424000pt;}
.ws12{word-spacing:-53.440000pt;}
.wse{word-spacing:-53.333333pt;}
.wsd{word-spacing:-53.248000pt;}
.ws18{word-spacing:-51.584000pt;}
.ws11{word-spacing:-51.200000pt;}
.wsa{word-spacing:-48.000000pt;}
.ws17{word-spacing:-43.573333pt;}
.wsc{word-spacing:-42.880000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsf{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.000000pt;}
.ws6{word-spacing:-9.328000pt;}
.ws14{word-spacing:-7.947456pt;}
.wsb{word-spacing:-7.773333pt;}
.ws8{word-spacing:-6.996000pt;}
.ws15{word-spacing:-5.960592pt;}
.ws4{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.ws19{word-spacing:5.593600pt;}
.ws16{word-spacing:7.296000pt;}
._18{margin-left:-8.759467pt;}
._16{margin-left:-7.424000pt;}
._1{margin-left:-6.186667pt;}
._5{margin-left:-4.578133pt;}
._10{margin-left:-3.072000pt;}
._2{margin-left:-2.176000pt;}
._0{margin-left:-1.088000pt;}
._a{width:1.408000pt;}
._d{width:2.764800pt;}
._8{width:3.673600pt;}
._6{width:4.864000pt;}
._7{width:6.144000pt;}
._3{width:7.808000pt;}
._11{width:8.861867pt;}
._f{width:9.900800pt;}
._b{width:11.008000pt;}
._c{width:12.384000pt;}
._13{width:13.824000pt;}
._e{width:14.976000pt;}
._19{width:16.940800pt;}
._4{width:17.894400pt;}
._12{width:19.603200pt;}
._9{width:20.544000pt;}
._17{width:22.220800pt;}
._14{width:33.360000pt;}
._15{width:36.000000pt;}
.fs5{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs4{font-size:37.312000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:113.385733pt;}
.y6b{bottom:113.385867pt;}
.yf{bottom:116.091200pt;}
.yb9{bottom:117.381733pt;}
.y9f{bottom:117.381867pt;}
.y41{bottom:119.142400pt;}
.y8c{bottom:131.781733pt;}
.y6a{bottom:131.781867pt;}
.yfd{bottom:131.782000pt;}
.ye{bottom:136.091200pt;}
.y40{bottom:139.142400pt;}
.y69{bottom:142.185867pt;}
.y8b{bottom:146.181733pt;}
.y125{bottom:146.181867pt;}
.yfc{bottom:146.182267pt;}
.yd{bottom:156.091200pt;}
.y3f{bottom:159.142400pt;}
.y8a{bottom:160.581733pt;}
.y68{bottom:160.581867pt;}
.yfb{bottom:160.582267pt;}
.y124{bottom:162.181867pt;}
.yfa{bottom:170.986533pt;}
.yd0{bottom:172.685733pt;}
.yd4{bottom:174.981733pt;}
.yc{bottom:176.091200pt;}
.y123{bottom:176.581867pt;}
.y3e{bottom:179.142400pt;}
.y9e{bottom:179.142533pt;}
.yf9{bottom:190.982400pt;}
.yb8{bottom:192.465200pt;}
.ycf{bottom:192.685733pt;}
.yb{bottom:196.091200pt;}
.y3d{bottom:199.142400pt;}
.y9d{bottom:199.142533pt;}
.yb7{bottom:212.465200pt;}
.y67{bottom:212.685733pt;}
.ya{bottom:216.091200pt;}
.y3c{bottom:219.142400pt;}
.y9c{bottom:219.142533pt;}
.y89{bottom:224.465200pt;}
.yb6{bottom:232.465200pt;}
.y66{bottom:232.685733pt;}
.yce{bottom:232.694533pt;}
.y9{bottom:236.091200pt;}
.y122{bottom:236.298400pt;}
.y3b{bottom:239.142400pt;}
.y9b{bottom:239.142533pt;}
.y88{bottom:244.465200pt;}
.yf8{bottom:249.126667pt;}
.yb5{bottom:252.465200pt;}
.y65{bottom:252.685733pt;}
.ycd{bottom:252.694533pt;}
.y8{bottom:256.091200pt;}
.y121{bottom:256.298400pt;}
.y3a{bottom:259.142400pt;}
.y9a{bottom:259.142533pt;}
.y87{bottom:264.465200pt;}
.yf7{bottom:266.460000pt;}
.yb4{bottom:272.465200pt;}
.y64{bottom:272.694533pt;}
.y7{bottom:276.091200pt;}
.y120{bottom:276.298400pt;}
.y39{bottom:279.142400pt;}
.y99{bottom:279.142533pt;}
.yf6{bottom:283.793333pt;}
.y86{bottom:284.465200pt;}
.yb3{bottom:292.465200pt;}
.y63{bottom:292.694533pt;}
.y6{bottom:296.091200pt;}
.y11f{bottom:296.298400pt;}
.y38{bottom:299.142400pt;}
.y98{bottom:299.142533pt;}
.yf5{bottom:301.126667pt;}
.y85{bottom:304.465200pt;}
.yb2{bottom:312.465200pt;}
.y62{bottom:312.694533pt;}
.y11e{bottom:316.298400pt;}
.yf4{bottom:318.460000pt;}
.y37{bottom:319.142400pt;}
.y97{bottom:319.142533pt;}
.y84{bottom:324.465200pt;}
.yb1{bottom:332.465200pt;}
.y61{bottom:332.694533pt;}
.y11d{bottom:336.298400pt;}
.y36{bottom:339.142400pt;}
.y96{bottom:339.142533pt;}
.y83{bottom:344.465200pt;}
.yf3{bottom:347.131867pt;}
.yb0{bottom:352.465200pt;}
.y60{bottom:352.694533pt;}
.y11c{bottom:356.298400pt;}
.y35{bottom:359.142400pt;}
.y95{bottom:359.142533pt;}
.y82{bottom:364.465200pt;}
.yf2{bottom:367.131867pt;}
.yaf{bottom:372.465200pt;}
.y5f{bottom:372.694533pt;}
.y34{bottom:379.142400pt;}
.y94{bottom:379.142533pt;}
.y81{bottom:384.465200pt;}
.yf1{bottom:387.131867pt;}
.y11b{bottom:387.637067pt;}
.yae{bottom:392.465200pt;}
.y5e{bottom:392.694533pt;}
.y33{bottom:399.142400pt;}
.y93{bottom:399.142533pt;}
.y80{bottom:404.465200pt;}
.y11a{bottom:404.970400pt;}
.yf0{bottom:407.131867pt;}
.yad{bottom:412.465200pt;}
.y5d{bottom:412.694533pt;}
.y32{bottom:419.142400pt;}
.y92{bottom:419.142533pt;}
.y119{bottom:422.303733pt;}
.y7f{bottom:424.465200pt;}
.yef{bottom:427.131867pt;}
.yac{bottom:432.465200pt;}
.y5c{bottom:432.694533pt;}
.y31{bottom:439.142400pt;}
.y91{bottom:439.142533pt;}
.y118{bottom:439.637067pt;}
.y7e{bottom:444.465200pt;}
.yee{bottom:447.131867pt;}
.yab{bottom:452.465200pt;}
.y5b{bottom:452.694533pt;}
.y30{bottom:459.142400pt;}
.y90{bottom:459.142533pt;}
.y7d{bottom:464.465200pt;}
.yed{bottom:467.131867pt;}
.y117{bottom:468.308933pt;}
.yaa{bottom:472.465200pt;}
.ycc{bottom:472.694533pt;}
.y2f{bottom:479.142400pt;}
.y8f{bottom:479.142533pt;}
.y5a{bottom:480.246533pt;}
.y7c{bottom:484.465200pt;}
.yec{bottom:487.131867pt;}
.y116{bottom:488.308933pt;}
.ya9{bottom:492.465200pt;}
.ycb{bottom:492.694533pt;}
.y2e{bottom:499.142400pt;}
.y8e{bottom:499.142533pt;}
.y7b{bottom:504.465200pt;}
.yeb{bottom:507.131867pt;}
.y115{bottom:508.308933pt;}
.ya8{bottom:512.465200pt;}
.yca{bottom:512.694533pt;}
.y2d{bottom:519.142400pt;}
.y59{bottom:519.142533pt;}
.y7a{bottom:524.465200pt;}
.yea{bottom:527.131867pt;}
.y114{bottom:528.308933pt;}
.ya7{bottom:532.465200pt;}
.yc9{bottom:532.694533pt;}
.y2c{bottom:539.142400pt;}
.y58{bottom:539.142533pt;}
.y79{bottom:544.465200pt;}
.ye9{bottom:547.131867pt;}
.y113{bottom:548.308933pt;}
.ya6{bottom:552.465200pt;}
.yc8{bottom:552.694533pt;}
.y2b{bottom:559.142400pt;}
.y57{bottom:559.142533pt;}
.y78{bottom:564.465200pt;}
.ye8{bottom:567.131867pt;}
.y112{bottom:568.308933pt;}
.yc7{bottom:572.694533pt;}
.yd3{bottom:575.803867pt;}
.y2a{bottom:579.142400pt;}
.y56{bottom:579.142533pt;}
.ya5{bottom:583.803867pt;}
.y77{bottom:584.465200pt;}
.ye7{bottom:587.131867pt;}
.y111{bottom:588.308933pt;}
.yc6{bottom:592.694533pt;}
.yd2{bottom:593.137200pt;}
.y29{bottom:599.142400pt;}
.y55{bottom:599.142533pt;}
.ya4{bottom:601.137200pt;}
.y76{bottom:604.465200pt;}
.ye6{bottom:607.131867pt;}
.y110{bottom:608.308933pt;}
.yd1{bottom:610.470533pt;}
.yc5{bottom:612.694533pt;}
.ya3{bottom:618.470533pt;}
.y28{bottom:619.142400pt;}
.y54{bottom:619.142533pt;}
.y75{bottom:624.465200pt;}
.ye5{bottom:627.131867pt;}
.y10f{bottom:628.308933pt;}
.yc4{bottom:632.694533pt;}
.ya2{bottom:635.803867pt;}
.y27{bottom:639.142400pt;}
.y53{bottom:639.142533pt;}
.y74{bottom:644.465200pt;}
.ye4{bottom:647.131867pt;}
.yc3{bottom:652.694533pt;}
.ya1{bottom:653.137200pt;}
.y26{bottom:659.142400pt;}
.y52{bottom:659.142533pt;}
.y10e{bottom:659.647600pt;}
.y73{bottom:664.465200pt;}
.ye3{bottom:667.131867pt;}
.ya0{bottom:670.470533pt;}
.yc2{bottom:672.694533pt;}
.y10d{bottom:676.980933pt;}
.y25{bottom:679.142400pt;}
.y51{bottom:679.142533pt;}
.y72{bottom:684.465200pt;}
.ye2{bottom:687.131867pt;}
.yc1{bottom:692.694533pt;}
.y10c{bottom:694.314267pt;}
.y24{bottom:699.142400pt;}
.y50{bottom:699.142533pt;}
.y71{bottom:704.465200pt;}
.ye1{bottom:707.131867pt;}
.y10b{bottom:711.647600pt;}
.yc0{bottom:712.694533pt;}
.y23{bottom:719.142400pt;}
.y4f{bottom:719.142533pt;}
.y70{bottom:724.465200pt;}
.ye0{bottom:727.131867pt;}
.y10a{bottom:728.980933pt;}
.ybf{bottom:732.694533pt;}
.y22{bottom:739.142400pt;}
.y4e{bottom:739.142533pt;}
.y6f{bottom:744.465200pt;}
.y109{bottom:746.314267pt;}
.ydf{bottom:747.131867pt;}
.ybe{bottom:752.694533pt;}
.y21{bottom:759.142400pt;}
.y4d{bottom:759.142533pt;}
.yde{bottom:767.131867pt;}
.y5{bottom:767.429867pt;}
.ybd{bottom:772.694533pt;}
.y108{bottom:774.986133pt;}
.y6e{bottom:775.803867pt;}
.y20{bottom:779.142400pt;}
.y4c{bottom:779.142533pt;}
.ydd{bottom:787.131867pt;}
.ybc{bottom:792.694533pt;}
.y6d{bottom:793.137200pt;}
.y4{bottom:794.096533pt;}
.y107{bottom:794.986133pt;}
.y1f{bottom:799.142400pt;}
.y4b{bottom:799.142533pt;}
.ydc{bottom:807.131867pt;}
.y6c{bottom:810.470533pt;}
.ybb{bottom:812.694533pt;}
.y106{bottom:814.986133pt;}
.y1e{bottom:819.142400pt;}
.y4a{bottom:819.142533pt;}
.y3{bottom:820.763200pt;}
.ydb{bottom:827.131867pt;}
.y105{bottom:834.986133pt;}
.y1d{bottom:839.142400pt;}
.y49{bottom:839.142533pt;}
.yba{bottom:840.246533pt;}
.yda{bottom:847.131867pt;}
.y2{bottom:847.429867pt;}
.y104{bottom:854.986133pt;}
.y1c{bottom:859.142400pt;}
.y48{bottom:859.142533pt;}
.yd9{bottom:867.131867pt;}
.y103{bottom:874.986133pt;}
.y1b{bottom:879.142400pt;}
.y47{bottom:879.142533pt;}
.y102{bottom:894.986133pt;}
.yd8{bottom:898.470533pt;}
.y1a{bottom:899.142400pt;}
.y46{bottom:899.142533pt;}
.y1{bottom:905.435200pt;}
.y101{bottom:914.986133pt;}
.yd7{bottom:915.803867pt;}
.y19{bottom:919.142400pt;}
.y45{bottom:919.142533pt;}
.yd6{bottom:933.137200pt;}
.y18{bottom:939.142400pt;}
.y44{bottom:939.142533pt;}
.y100{bottom:946.324667pt;}
.yd5{bottom:950.470533pt;}
.y17{bottom:959.142400pt;}
.y43{bottom:959.142533pt;}
.yff{bottom:963.658000pt;}
.y16{bottom:979.142400pt;}
.y42{bottom:979.142533pt;}
.yfe{bottom:980.991333pt;}
.y14{bottom:992.313200pt;}
.y13{bottom:1009.913200pt;}
.y12{bottom:1027.513200pt;}
.y15{bottom:1036.689733pt;}
.y11{bottom:1045.113200pt;}
.y10{bottom:1062.713200pt;}
.he{height:26.132654pt;}
.h8{height:26.133188pt;}
.hc{height:26.250375pt;}
.hb{height:30.812875pt;}
.hd{height:30.813408pt;}
.h9{height:42.117188pt;}
.h5{height:42.680000pt;}
.h7{height:43.812500pt;}
.ha{height:46.796875pt;}
.h4{height:56.156250pt;}
.h2{height:62.208000pt;}
.h6{height:98.812500pt;}
.h3{height:103.680000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.385867pt;}
.x2{left:130.947733pt;}
.xd{left:132.283467pt;}
.x4{left:160.254400pt;}
.xc{left:192.976400pt;}
.x3{left:202.254400pt;}
.x5{left:281.774400pt;}
.x1{left:330.339467pt;}
.x7{left:431.711867pt;}
.x8{left:543.515867pt;}
.xb{left:570.282533pt;}
.x9{left:577.703867pt;}
.xa{left:612.243867pt;}
}




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