
    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_ac1ec2ede53796a4bc5084af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.913086;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_39479458232f480e3d6b4f85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_ab2399b3937b9f24cea92669.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_d90081ef325b1c9fed68622c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_7dacef14ded02aefc063e2c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_bd1acdd293d72ffca4891b12.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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_8460a8101b2868c761e2a027.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913086;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_39479458232f480e3d6b4f85.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919922;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_7dacef14ded02aefc063e2c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_703ed823138cf672317e7538.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922363;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:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.lsa{letter-spacing:-0.300000px;}
.lsb{letter-spacing:-0.240000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010200px;}
.ls2{letter-spacing:0.013200px;}
.lsd{letter-spacing:0.360000px;}
.lse{letter-spacing:0.660000px;}
.ls9{letter-spacing:1.320000px;}
.ls6{letter-spacing:1.680000px;}
.ls4{letter-spacing:2.820000px;}
.ls8{letter-spacing:3.000000px;}
.ls7{letter-spacing:3.060000px;}
.ls5{letter-spacing:3.306600px;}
.lsc{letter-spacing:3.780000px;}
.ls3{letter-spacing:71.839200px;}
.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;}
}
.wsf{word-spacing:-16.980000px;}
.ws10{word-spacing:-16.260000px;}
.ws11{word-spacing:-16.200000px;}
.wse{word-spacing:-14.880000px;}
.ws12{word-spacing:-14.520000px;}
.ws19{word-spacing:-13.560000px;}
.ws1{word-spacing:-13.200000px;}
.wsa{word-spacing:-11.880000px;}
.ws0{word-spacing:-10.560000px;}
.ws4{word-spacing:-7.695600px;}
.ws5{word-spacing:-6.156480px;}
.ws15{word-spacing:-2.820000px;}
.ws1f{word-spacing:-1.980000px;}
.wsb{word-spacing:-1.320000px;}
.ws7{word-spacing:-0.780000px;}
.ws1a{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.300000px;}
.ws2{word-spacing:0.000000px;}
.ws14{word-spacing:0.240000px;}
.ws13{word-spacing:0.300000px;}
.ws8{word-spacing:1.500000px;}
.ws18{word-spacing:1.740000px;}
.ws17{word-spacing:3.000000px;}
.ws1d{word-spacing:5.640000px;}
.ws9{word-spacing:5.760000px;}
.wsd{word-spacing:5.940000px;}
.ws16{word-spacing:6.780000px;}
.ws1e{word-spacing:8.460000px;}
.ws1b{word-spacing:10.500000px;}
.ws1c{word-spacing:12.540000px;}
.wsc{word-spacing:15.060000px;}
.ws3{word-spacing:542.214000px;}
._e{margin-left:-3362.457600px;}
._18{margin-left:-13.200000px;}
._3{margin-left:-6.027600px;}
._9{margin-left:-4.971600px;}
._0{margin-left:-3.302400px;}
._4{margin-left:-2.251200px;}
._2{margin-left:-1.166400px;}
._6{width:1.042800px;}
._5{width:2.606400px;}
._a{width:3.634800px;}
._7{width:5.094000px;}
._8{width:6.852000px;}
._d{width:7.894800px;}
._c{width:9.361200px;}
._b{width:10.404000px;}
._f{width:11.520000px;}
._10{width:14.322000px;}
._15{width:15.422400px;}
._13{width:17.430000px;}
._14{width:18.486000px;}
._17{width:19.550400px;}
._11{width:24.360000px;}
._12{width:25.410000px;}
._16{width:28.314000px;}
._19{width:51.818400px;}
._1a{width:71.820000px;}
._1{width:542.248800px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(166,29,35);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:71.987400px;}
.y78{bottom:103.844400px;}
.yee{bottom:106.820700px;}
.yb4{bottom:107.959050px;}
.y84{bottom:112.677150px;}
.y7c{bottom:113.340450px;}
.yb7{bottom:114.803100px;}
.y70{bottom:116.248050px;}
.y94{bottom:119.055150px;}
.y77{bottom:121.844400px;}
.yed{bottom:124.820700px;}
.y83{bottom:126.477150px;}
.y28{bottom:127.476900px;}
.yb6{bottom:128.603100px;}
.y6f{bottom:130.048050px;}
.y7b{bottom:131.340450px;}
.y93{bottom:136.851150px;}
.y76{bottom:139.844400px;}
.y74{bottom:140.836500px;}
.ycf{bottom:142.820700px;}
.y82{bottom:144.273150px;}
.y9e{bottom:144.624750px;}
.y27{bottom:145.476900px;}
.yb5{bottom:146.399100px;}
.y7a{bottom:149.340450px;}
.y75{bottom:157.844400px;}
.y73{bottom:158.836500px;}
.yec{bottom:160.820700px;}
.y26{bottom:163.476900px;}
.yce{bottom:165.072750px;}
.y79{bottom:167.340450px;}
.y6e{bottom:175.844400px;}
.y4a{bottom:176.836500px;}
.yeb{bottom:178.820700px;}
.y25{bottom:181.476900px;}
.y81{bottom:185.340450px;}
.ycd{bottom:187.324650px;}
.y6d{bottom:193.844400px;}
.y49{bottom:194.836500px;}
.yea{bottom:196.820700px;}
.yac{bottom:198.303750px;}
.y24{bottom:199.476900px;}
.y80{bottom:203.340450px;}
.ycc{bottom:205.324650px;}
.y6c{bottom:211.844400px;}
.y48{bottom:212.836500px;}
.ye9{bottom:214.820700px;}
.yab{bottom:216.303750px;}
.y23{bottom:217.476900px;}
.y7f{bottom:221.340450px;}
.ycb{bottom:227.576550px;}
.y6b{bottom:229.844400px;}
.y47{bottom:230.836500px;}
.yaa{bottom:234.303750px;}
.y92{bottom:235.425450px;}
.y22{bottom:235.476900px;}
.ye8{bottom:237.072750px;}
.y7e{bottom:239.340450px;}
.yca{bottom:245.576550px;}
.y6a{bottom:247.844400px;}
.y72{bottom:248.836500px;}
.ya9{bottom:252.303750px;}
.y91{bottom:253.425450px;}
.y21{bottom:253.476900px;}
.ye7{bottom:255.072750px;}
.y46{bottom:257.340450px;}
.y69{bottom:265.844400px;}
.yc9{bottom:267.828600px;}
.ya8{bottom:270.303750px;}
.y90{bottom:271.425450px;}
.y20{bottom:271.476900px;}
.ye6{bottom:273.072750px;}
.y71{bottom:275.340450px;}
.y68{bottom:283.844400px;}
.yc8{bottom:285.828600px;}
.ya7{bottom:288.303750px;}
.y8f{bottom:289.425450px;}
.y1f{bottom:289.476900px;}
.y7d{bottom:293.340450px;}
.ye5{bottom:295.324650px;}
.y67{bottom:301.844400px;}
.yc7{bottom:303.828600px;}
.ya6{bottom:306.303750px;}
.y8e{bottom:307.425450px;}
.y1e{bottom:307.476900px;}
.y45{bottom:311.340450px;}
.ye4{bottom:313.324650px;}
.y66{bottom:319.844400px;}
.ya5{bottom:324.303750px;}
.y8d{bottom:325.425450px;}
.y1d{bottom:325.476900px;}
.yc6{bottom:326.080500px;}
.y9d{bottom:327.700350px;}
.y44{bottom:329.340450px;}
.ye3{bottom:335.576550px;}
.y65{bottom:337.844400px;}
.ya4{bottom:342.303750px;}
.y8c{bottom:343.425450px;}
.y1c{bottom:343.476900px;}
.y43{bottom:347.340450px;}
.yc5{bottom:348.332550px;}
.ye2{bottom:353.576550px;}
.y64{bottom:355.844400px;}
.ya3{bottom:360.303750px;}
.y8b{bottom:361.425450px;}
.y1b{bottom:361.476900px;}
.y9c{bottom:361.900350px;}
.y42{bottom:365.340450px;}
.yc4{bottom:366.332550px;}
.ye1{bottom:371.576550px;}
.y63{bottom:373.844400px;}
.ya2{bottom:378.303750px;}
.y8a{bottom:379.425450px;}
.y1a{bottom:379.476900px;}
.y9b{bottom:379.900350px;}
.y41{bottom:383.340450px;}
.yff{bottom:384.332550px;}
.yc3{bottom:388.584450px;}
.y62{bottom:391.844400px;}
.ye0{bottom:393.828600px;}
.y89{bottom:397.425450px;}
.y19{bottom:397.476900px;}
.y9a{bottom:397.900350px;}
.y40{bottom:401.340450px;}
.yb3{bottom:401.359200px;}
.yfe{bottom:402.332550px;}
.yc2{bottom:406.584450px;}
.y61{bottom:409.844400px;}
.ydf{bottom:411.828600px;}
.ya1{bottom:414.303750px;}
.y88{bottom:415.425450px;}
.y18{bottom:415.476900px;}
.y99{bottom:415.900350px;}
.y3f{bottom:419.340450px;}
.yfd{bottom:420.332550px;}
.y60{bottom:427.844400px;}
.yc1{bottom:428.836500px;}
.y87{bottom:433.425450px;}
.y17{bottom:433.476900px;}
.yb2{bottom:433.759050px;}
.y98{bottom:433.900350px;}
.yde{bottom:434.080500px;}
.y3e{bottom:437.340450px;}
.yfc{bottom:438.332550px;}
.y5f{bottom:445.844400px;}
.yc0{bottom:446.836500px;}
.y16{bottom:451.476900px;}
.yb1{bottom:451.759050px;}
.y97{bottom:451.900350px;}
.ydd{bottom:452.080500px;}
.y3d{bottom:455.340300px;}
.yfb{bottom:460.584450px;}
.y5e{bottom:463.844400px;}
.ybf{bottom:464.836500px;}
.y86{bottom:469.425450px;}
.y15{bottom:469.476900px;}
.yb0{bottom:469.759050px;}
.y3c{bottom:473.340300px;}
.ydc{bottom:474.332550px;}
.yfa{bottom:478.584450px;}
.y5d{bottom:481.844400px;}
.ybe{bottom:487.088400px;}
.y14{bottom:487.476900px;}
.yaf{bottom:487.759050px;}
.y96{bottom:487.900350px;}
.y3b{bottom:491.340300px;}
.ydb{bottom:492.332550px;}
.yf9{bottom:496.584450px;}
.y5c{bottom:499.844400px;}
.ybd{bottom:505.088400px;}
.y13{bottom:505.476900px;}
.yae{bottom:505.759050px;}
.y3a{bottom:509.340300px;}
.yda{bottom:510.332550px;}
.y5b{bottom:517.844400px;}
.yf8{bottom:518.836500px;}
.ybc{bottom:523.088400px;}
.y12{bottom:523.476900px;}
.y39{bottom:527.340300px;}
.yd9{bottom:532.584450px;}
.y5a{bottom:535.844400px;}
.yf7{bottom:536.836500px;}
.y11{bottom:541.476900px;}
.yad{bottom:541.759050px;}
.y38{bottom:545.340300px;}
.yd8{bottom:550.584450px;}
.y59{bottom:553.844400px;}
.yf6{bottom:554.836500px;}
.y10{bottom:559.476900px;}
.y37{bottom:563.340300px;}
.yd7{bottom:568.584450px;}
.y58{bottom:571.844400px;}
.yf5{bottom:572.836500px;}
.yf{bottom:577.476900px;}
.y36{bottom:581.340300px;}
.y57{bottom:589.844400px;}
.yd6{bottom:590.836500px;}
.yf4{bottom:595.088400px;}
.ye{bottom:595.476900px;}
.y35{bottom:599.340300px;}
.ybb{bottom:603.592350px;}
.y56{bottom:607.844400px;}
.yd5{bottom:608.836500px;}
.yf3{bottom:613.088400px;}
.y34{bottom:617.340300px;}
.yba{bottom:621.592350px;}
.yd{bottom:621.980850px;}
.y55{bottom:625.844400px;}
.yd4{bottom:626.836500px;}
.yf2{bottom:631.088400px;}
.y33{bottom:635.340300px;}
.yb9{bottom:639.592350px;}
.y54{bottom:643.844400px;}
.yd3{bottom:649.088400px;}
.y32{bottom:653.340450px;}
.yb8{bottom:657.592350px;}
.y53{bottom:661.844400px;}
.yd2{bottom:667.088400px;}
.y31{bottom:671.340450px;}
.yc{bottom:675.980850px;}
.y52{bottom:679.844400px;}
.y85{bottom:681.644400px;}
.yd1{bottom:685.088400px;}
.y30{bottom:689.340450px;}
.yb{bottom:692.180850px;}
.y51{bottom:697.844400px;}
.ya0{bottom:701.444250px;}
.y2f{bottom:707.340450px;}
.ya{bottom:708.380850px;}
.y50{bottom:715.844400px;}
.y9f{bottom:717.644400px;}
.y9{bottom:724.580850px;}
.y2e{bottom:725.340450px;}
.yf1{bottom:729.592350px;}
.y4f{bottom:733.844400px;}
.y2d{bottom:743.340450px;}
.y8{bottom:745.032900px;}
.yf0{bottom:747.592350px;}
.y4e{bottom:751.844400px;}
.y2c{bottom:761.340450px;}
.yef{bottom:765.592350px;}
.y4d{bottom:769.844400px;}
.y7{bottom:778.788750px;}
.y2b{bottom:779.340300px;}
.yd0{bottom:783.592350px;}
.y4c{bottom:787.844400px;}
.y2a{bottom:797.340300px;}
.y6{bottom:805.788750px;}
.y4b{bottom:805.844400px;}
.y29{bottom:823.844400px;}
.y95{bottom:825.011100px;}
.y5{bottom:857.860050px;}
.y3{bottom:893.996700px;}
.y2{bottom:935.134500px;}
.y1{bottom:948.634500px;}
.h9{height:25.781625px;}
.h2{height:33.632812px;}
.h3{height:33.656250px;}
.hb{height:41.765625px;}
.h8{height:42.070312px;}
.hc{height:42.246094px;}
.ha{height:42.451172px;}
.h4{height:46.986328px;}
.h5{height:52.207031px;}
.h7{height:62.648438px;}
.h6{height:67.312500px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x5{left:87.165300px;}
.x12{left:93.753450px;}
.xc{left:106.299150px;}
.xe{left:110.551200px;}
.xd{left:119.055150px;}
.x7{left:164.904600px;}
.xb{left:181.951650px;}
.xa{left:185.007000px;}
.x9{left:205.200900px;}
.x8{left:220.773750px;}
.xf{left:234.837750px;}
.x11{left:245.625150px;}
.x15{left:255.545700px;}
.x14{left:262.154100px;}
.x10{left:264.342600px;}
.x6{left:267.738000px;}
.x4{left:281.550000px;}
.x13{left:327.178950px;}
.x3{left:451.342050px;}
.x2{left:532.787400px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.lsa{letter-spacing:-0.266667pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009067pt;}
.ls2{letter-spacing:0.011733pt;}
.lsd{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.586667pt;}
.ls9{letter-spacing:1.173333pt;}
.ls6{letter-spacing:1.493333pt;}
.ls4{letter-spacing:2.506667pt;}
.ls8{letter-spacing:2.666667pt;}
.ls7{letter-spacing:2.720000pt;}
.ls5{letter-spacing:2.939200pt;}
.lsc{letter-spacing:3.360000pt;}
.ls3{letter-spacing:63.857067pt;}
.wsf{word-spacing:-15.093333pt;}
.ws10{word-spacing:-14.453333pt;}
.ws11{word-spacing:-14.400000pt;}
.wse{word-spacing:-13.226667pt;}
.ws12{word-spacing:-12.906667pt;}
.ws19{word-spacing:-12.053333pt;}
.ws1{word-spacing:-11.733333pt;}
.wsa{word-spacing:-10.560000pt;}
.ws0{word-spacing:-9.386667pt;}
.ws4{word-spacing:-6.840533pt;}
.ws5{word-spacing:-5.472427pt;}
.ws15{word-spacing:-2.506667pt;}
.ws1f{word-spacing:-1.760000pt;}
.wsb{word-spacing:-1.173333pt;}
.ws7{word-spacing:-0.693333pt;}
.ws1a{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.266667pt;}
.ws2{word-spacing:0.000000pt;}
.ws14{word-spacing:0.213333pt;}
.ws13{word-spacing:0.266667pt;}
.ws8{word-spacing:1.333333pt;}
.ws18{word-spacing:1.546667pt;}
.ws17{word-spacing:2.666667pt;}
.ws1d{word-spacing:5.013333pt;}
.ws9{word-spacing:5.120000pt;}
.wsd{word-spacing:5.280000pt;}
.ws16{word-spacing:6.026667pt;}
.ws1e{word-spacing:7.520000pt;}
.ws1b{word-spacing:9.333333pt;}
.ws1c{word-spacing:11.146667pt;}
.wsc{word-spacing:13.386667pt;}
.ws3{word-spacing:481.968000pt;}
._e{margin-left:-2988.851200pt;}
._18{margin-left:-11.733333pt;}
._3{margin-left:-5.357867pt;}
._9{margin-left:-4.419200pt;}
._0{margin-left:-2.935467pt;}
._4{margin-left:-2.001067pt;}
._2{margin-left:-1.036800pt;}
._6{width:0.926933pt;}
._5{width:2.316800pt;}
._a{width:3.230933pt;}
._7{width:4.528000pt;}
._8{width:6.090667pt;}
._d{width:7.017600pt;}
._c{width:8.321067pt;}
._b{width:9.248000pt;}
._f{width:10.240000pt;}
._10{width:12.730667pt;}
._15{width:13.708800pt;}
._13{width:15.493333pt;}
._14{width:16.432000pt;}
._17{width:17.378133pt;}
._11{width:21.653333pt;}
._12{width:22.586667pt;}
._16{width:25.168000pt;}
._19{width:46.060800pt;}
._1a{width:63.840000pt;}
._1{width:481.998933pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:63.988800pt;}
.y78{bottom:92.306133pt;}
.yee{bottom:94.951733pt;}
.yb4{bottom:95.963600pt;}
.y84{bottom:100.157467pt;}
.y7c{bottom:100.747067pt;}
.yb7{bottom:102.047200pt;}
.y70{bottom:103.331600pt;}
.y94{bottom:105.826800pt;}
.y77{bottom:108.306133pt;}
.yed{bottom:110.951733pt;}
.y83{bottom:112.424133pt;}
.y28{bottom:113.312800pt;}
.yb6{bottom:114.313867pt;}
.y6f{bottom:115.598267pt;}
.y7b{bottom:116.747067pt;}
.y93{bottom:121.645467pt;}
.y76{bottom:124.306133pt;}
.y74{bottom:125.188000pt;}
.ycf{bottom:126.951733pt;}
.y82{bottom:128.242800pt;}
.y9e{bottom:128.555333pt;}
.y27{bottom:129.312800pt;}
.yb5{bottom:130.132533pt;}
.y7a{bottom:132.747067pt;}
.y75{bottom:140.306133pt;}
.y73{bottom:141.188000pt;}
.yec{bottom:142.951733pt;}
.y26{bottom:145.312800pt;}
.yce{bottom:146.731333pt;}
.y79{bottom:148.747067pt;}
.y6e{bottom:156.306133pt;}
.y4a{bottom:157.188000pt;}
.yeb{bottom:158.951733pt;}
.y25{bottom:161.312800pt;}
.y81{bottom:164.747067pt;}
.ycd{bottom:166.510800pt;}
.y6d{bottom:172.306133pt;}
.y49{bottom:173.188000pt;}
.yea{bottom:174.951733pt;}
.yac{bottom:176.270000pt;}
.y24{bottom:177.312800pt;}
.y80{bottom:180.747067pt;}
.ycc{bottom:182.510800pt;}
.y6c{bottom:188.306133pt;}
.y48{bottom:189.188000pt;}
.ye9{bottom:190.951733pt;}
.yab{bottom:192.270000pt;}
.y23{bottom:193.312800pt;}
.y7f{bottom:196.747067pt;}
.ycb{bottom:202.290267pt;}
.y6b{bottom:204.306133pt;}
.y47{bottom:205.188000pt;}
.yaa{bottom:208.270000pt;}
.y92{bottom:209.267067pt;}
.y22{bottom:209.312800pt;}
.ye8{bottom:210.731333pt;}
.y7e{bottom:212.747067pt;}
.yca{bottom:218.290267pt;}
.y6a{bottom:220.306133pt;}
.y72{bottom:221.188000pt;}
.ya9{bottom:224.270000pt;}
.y91{bottom:225.267067pt;}
.y21{bottom:225.312800pt;}
.ye7{bottom:226.731333pt;}
.y46{bottom:228.747067pt;}
.y69{bottom:236.306133pt;}
.yc9{bottom:238.069867pt;}
.ya8{bottom:240.270000pt;}
.y90{bottom:241.267067pt;}
.y20{bottom:241.312800pt;}
.ye6{bottom:242.731333pt;}
.y71{bottom:244.747067pt;}
.y68{bottom:252.306133pt;}
.yc8{bottom:254.069867pt;}
.ya7{bottom:256.270000pt;}
.y8f{bottom:257.267067pt;}
.y1f{bottom:257.312800pt;}
.y7d{bottom:260.747067pt;}
.ye5{bottom:262.510800pt;}
.y67{bottom:268.306133pt;}
.yc7{bottom:270.069867pt;}
.ya6{bottom:272.270000pt;}
.y8e{bottom:273.267067pt;}
.y1e{bottom:273.312800pt;}
.y45{bottom:276.747067pt;}
.ye4{bottom:278.510800pt;}
.y66{bottom:284.306133pt;}
.ya5{bottom:288.270000pt;}
.y8d{bottom:289.267067pt;}
.y1d{bottom:289.312800pt;}
.yc6{bottom:289.849333pt;}
.y9d{bottom:291.289200pt;}
.y44{bottom:292.747067pt;}
.ye3{bottom:298.290267pt;}
.y65{bottom:300.306133pt;}
.ya4{bottom:304.270000pt;}
.y8c{bottom:305.267067pt;}
.y1c{bottom:305.312800pt;}
.y43{bottom:308.747067pt;}
.yc5{bottom:309.628933pt;}
.ye2{bottom:314.290267pt;}
.y64{bottom:316.306133pt;}
.ya3{bottom:320.270000pt;}
.y8b{bottom:321.267067pt;}
.y1b{bottom:321.312800pt;}
.y9c{bottom:321.689200pt;}
.y42{bottom:324.747067pt;}
.yc4{bottom:325.628933pt;}
.ye1{bottom:330.290267pt;}
.y63{bottom:332.306133pt;}
.ya2{bottom:336.270000pt;}
.y8a{bottom:337.267067pt;}
.y1a{bottom:337.312800pt;}
.y9b{bottom:337.689200pt;}
.y41{bottom:340.747067pt;}
.yff{bottom:341.628933pt;}
.yc3{bottom:345.408400pt;}
.y62{bottom:348.306133pt;}
.ye0{bottom:350.069867pt;}
.y89{bottom:353.267067pt;}
.y19{bottom:353.312800pt;}
.y9a{bottom:353.689200pt;}
.y40{bottom:356.747067pt;}
.yb3{bottom:356.763733pt;}
.yfe{bottom:357.628933pt;}
.yc2{bottom:361.408400pt;}
.y61{bottom:364.306133pt;}
.ydf{bottom:366.069867pt;}
.ya1{bottom:368.270000pt;}
.y88{bottom:369.267067pt;}
.y18{bottom:369.312800pt;}
.y99{bottom:369.689200pt;}
.y3f{bottom:372.747067pt;}
.yfd{bottom:373.628933pt;}
.y60{bottom:380.306133pt;}
.yc1{bottom:381.188000pt;}
.y87{bottom:385.267067pt;}
.y17{bottom:385.312800pt;}
.yb2{bottom:385.563600pt;}
.y98{bottom:385.689200pt;}
.yde{bottom:385.849333pt;}
.y3e{bottom:388.747067pt;}
.yfc{bottom:389.628933pt;}
.y5f{bottom:396.306133pt;}
.yc0{bottom:397.188000pt;}
.y16{bottom:401.312800pt;}
.yb1{bottom:401.563600pt;}
.y97{bottom:401.689200pt;}
.ydd{bottom:401.849333pt;}
.y3d{bottom:404.746933pt;}
.yfb{bottom:409.408400pt;}
.y5e{bottom:412.306133pt;}
.ybf{bottom:413.188000pt;}
.y86{bottom:417.267067pt;}
.y15{bottom:417.312800pt;}
.yb0{bottom:417.563600pt;}
.y3c{bottom:420.746933pt;}
.ydc{bottom:421.628933pt;}
.yfa{bottom:425.408400pt;}
.y5d{bottom:428.306133pt;}
.ybe{bottom:432.967467pt;}
.y14{bottom:433.312800pt;}
.yaf{bottom:433.563600pt;}
.y96{bottom:433.689200pt;}
.y3b{bottom:436.746933pt;}
.ydb{bottom:437.628933pt;}
.yf9{bottom:441.408400pt;}
.y5c{bottom:444.306133pt;}
.ybd{bottom:448.967467pt;}
.y13{bottom:449.312800pt;}
.yae{bottom:449.563600pt;}
.y3a{bottom:452.746933pt;}
.yda{bottom:453.628933pt;}
.y5b{bottom:460.306133pt;}
.yf8{bottom:461.188000pt;}
.ybc{bottom:464.967467pt;}
.y12{bottom:465.312800pt;}
.y39{bottom:468.746933pt;}
.yd9{bottom:473.408400pt;}
.y5a{bottom:476.306133pt;}
.yf7{bottom:477.188000pt;}
.y11{bottom:481.312800pt;}
.yad{bottom:481.563600pt;}
.y38{bottom:484.746933pt;}
.yd8{bottom:489.408400pt;}
.y59{bottom:492.306133pt;}
.yf6{bottom:493.188000pt;}
.y10{bottom:497.312800pt;}
.y37{bottom:500.746933pt;}
.yd7{bottom:505.408400pt;}
.y58{bottom:508.306133pt;}
.yf5{bottom:509.188000pt;}
.yf{bottom:513.312800pt;}
.y36{bottom:516.746933pt;}
.y57{bottom:524.306133pt;}
.yd6{bottom:525.188000pt;}
.yf4{bottom:528.967467pt;}
.ye{bottom:529.312800pt;}
.y35{bottom:532.746933pt;}
.ybb{bottom:536.526533pt;}
.y56{bottom:540.306133pt;}
.yd5{bottom:541.188000pt;}
.yf3{bottom:544.967467pt;}
.y34{bottom:548.746933pt;}
.yba{bottom:552.526533pt;}
.yd{bottom:552.871867pt;}
.y55{bottom:556.306133pt;}
.yd4{bottom:557.188000pt;}
.yf2{bottom:560.967467pt;}
.y33{bottom:564.746933pt;}
.yb9{bottom:568.526533pt;}
.y54{bottom:572.306133pt;}
.yd3{bottom:576.967467pt;}
.y32{bottom:580.747067pt;}
.yb8{bottom:584.526533pt;}
.y53{bottom:588.306133pt;}
.yd2{bottom:592.967467pt;}
.y31{bottom:596.747067pt;}
.yc{bottom:600.871867pt;}
.y52{bottom:604.306133pt;}
.y85{bottom:605.906133pt;}
.yd1{bottom:608.967467pt;}
.y30{bottom:612.747067pt;}
.yb{bottom:615.271867pt;}
.y51{bottom:620.306133pt;}
.ya0{bottom:623.506000pt;}
.y2f{bottom:628.747067pt;}
.ya{bottom:629.671867pt;}
.y50{bottom:636.306133pt;}
.y9f{bottom:637.906133pt;}
.y9{bottom:644.071867pt;}
.y2e{bottom:644.747067pt;}
.yf1{bottom:648.526533pt;}
.y4f{bottom:652.306133pt;}
.y2d{bottom:660.747067pt;}
.y8{bottom:662.251467pt;}
.yf0{bottom:664.526533pt;}
.y4e{bottom:668.306133pt;}
.y2c{bottom:676.747067pt;}
.yef{bottom:680.526533pt;}
.y4d{bottom:684.306133pt;}
.y7{bottom:692.256667pt;}
.y2b{bottom:692.746933pt;}
.yd0{bottom:696.526533pt;}
.y4c{bottom:700.306133pt;}
.y2a{bottom:708.746933pt;}
.y6{bottom:716.256667pt;}
.y4b{bottom:716.306133pt;}
.y29{bottom:732.306133pt;}
.y95{bottom:733.343200pt;}
.y5{bottom:762.542267pt;}
.y3{bottom:794.663733pt;}
.y2{bottom:831.230667pt;}
.y1{bottom:843.230667pt;}
.h9{height:22.917000pt;}
.h2{height:29.895833pt;}
.h3{height:29.916667pt;}
.hb{height:37.125000pt;}
.h8{height:37.395833pt;}
.hc{height:37.552083pt;}
.ha{height:37.734375pt;}
.h4{height:41.765625pt;}
.h5{height:46.406250pt;}
.h7{height:55.687500pt;}
.h6{height:59.833333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x5{left:77.480267pt;}
.x12{left:83.336400pt;}
.xc{left:94.488133pt;}
.xe{left:98.267733pt;}
.xd{left:105.826800pt;}
.x7{left:146.581867pt;}
.xb{left:161.734800pt;}
.xa{left:164.450667pt;}
.x9{left:182.400800pt;}
.x8{left:196.243333pt;}
.xf{left:208.744667pt;}
.x11{left:218.333467pt;}
.x15{left:227.151733pt;}
.x14{left:233.025867pt;}
.x10{left:234.971200pt;}
.x6{left:237.989333pt;}
.x4{left:250.266667pt;}
.x13{left:290.825733pt;}
.x3{left:401.192933pt;}
.x2{left:473.588800pt;}
}




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