
    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_5b3673974670b9abc656d973.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_0736e535f286469bb9738916.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_f1067fb7736c3fc4739def0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_0cce197ef2f53ac457c5b1a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_f168019bf7136b47e889c3eb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.875000;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_bd8ab873a25b7fa4a674d9c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_cc5d4c1465e1eb6dc39a5778.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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;}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.111228px;}
.ls0{letter-spacing:0.187842px;}
.ls2{letter-spacing:0.209264px;}
.ls5{letter-spacing:0.209280px;}
.ls1{letter-spacing:0.209308px;}
.ls7{letter-spacing:64.047094px;}
.ls6{letter-spacing:64.076494px;}
.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;}
}
.ws5{word-spacing:-35.855986px;}
.ws1{word-spacing:-16.583542px;}
.ws2{word-spacing:-16.583498px;}
.ws3{word-spacing:-16.374233px;}
.ws0{word-spacing:-12.059995px;}
.ws4{word-spacing:0.000000px;}
._11{margin-left:-3.801333px;}
._f{margin-left:-2.453543px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._9{width:2.629707px;}
._a{width:4.296711px;}
._7{width:5.379482px;}
._8{width:6.673944px;}
._5{width:7.802518px;}
._d{width:8.829006px;}
._10{width:10.681441px;}
._b{width:12.224837px;}
._c{width:13.511957px;}
._12{width:16.101702px;}
._e{width:17.343603px;}
._6{width:18.523488px;}
._1{width:100.137638px;}
._3{width:231.194081px;}
._4{width:1036.867572px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fs9{font-size:30.239988px;}
.fsb{font-size:35.999986px;}
.fs5{font-size:38.879984px;}
.fsc{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fsa{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs8{font-size:84.239966px;}
.fs7{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.y72{bottom:132.780247px;}
.yad{bottom:134.939946px;}
.y3e{bottom:139.259944px;}
.y71{bottom:144.119942px;}
.y90{bottom:146.819941px;}
.yac{bottom:153.659939px;}
.y5b{bottom:154.739938px;}
.y3d{bottom:159.779936px;}
.y70{bottom:162.839935px;}
.y8f{bottom:165.359934px;}
.yab{bottom:172.199931px;}
.y5a{bottom:173.459931px;}
.y3c{bottom:178.319929px;}
.y6f{bottom:183.179927px;}
.y8e{bottom:184.079926px;}
.yaa{bottom:190.919924px;}
.y59{bottom:192.179923px;}
.y3b{bottom:198.839920px;}
.y6e{bottom:201.899919px;}
.y8d{bottom:202.619919px;}
.y58{bottom:210.719916px;}
.ya9{bottom:211.259915px;}
.y3a{bottom:219.179912px;}
.y6d{bottom:220.259912px;}
.y8c{bottom:221.339911px;}
.y57{bottom:229.439908px;}
.ya8{bottom:229.979908px;}
.y6c{bottom:236.459905px;}
.y39{bottom:237.899905px;}
.y8b{bottom:240.059904px;}
.y56{bottom:247.979901px;}
.ya7{bottom:248.519901px;}
.y8a{bottom:258.599897px;}
.y38{bottom:260.759896px;}
.y6b{bottom:266.519893px;}
.y55{bottom:266.699893px;}
.ya6{bottom:269.039892px;}
.y89{bottom:279.119888px;}
.y37{bottom:283.619887px;}
.y54{bottom:285.239886px;}
.ya5{bottom:287.579885px;}
.y36{bottom:302.159879px;}
.y6a{bottom:303.779878px;}
.y53{bottom:305.759878px;}
.ya4{bottom:306.299877px;}
.y35{bottom:320.879872px;}
.y69{bottom:322.499871px;}
.y52{bottom:324.299870px;}
.ya3{bottom:324.839870px;}
.y88{bottom:339.419864px;}
.y34{bottom:339.599864px;}
.y68{bottom:341.219864px;}
.y51{bottom:343.019863px;}
.ya2{bottom:343.379863px;}
.y67{bottom:356.879857px;}
.y33{bottom:358.139857px;}
.ya1{bottom:359.579856px;}
.y50{bottom:361.559855px;}
.y66{bottom:365.159854px;}
.ya0{bottom:370.739852px;}
.y87{bottom:376.679849px;}
.y32{bottom:376.859849px;}
.y4f{bottom:380.279848px;}
.y65{bottom:381.899847px;}
.y9f{bottom:386.939845px;}
.y64{bottom:391.979843px;}
.y9e{bottom:394.139842px;}
.y31{bottom:395.399842px;}
.y4e{bottom:398.999840px;}
.y86{bottom:413.939834px;}
.y30{bottom:414.119834px;}
.y4d{bottom:417.539833px;}
.y2f{bottom:432.659827px;}
.y4c{bottom:436.259825px;}
.y85{bottom:437.159825px;}
.y2e{bottom:451.379819px;}
.y84{bottom:455.879818px;}
.y4b{bottom:456.599817px;}
.y2d{bottom:474.419810px;}
.y4a{bottom:476.939809px;}
.y2c{bottom:493.139803px;}
.y49{bottom:497.459801px;}
.y83{bottom:499.439800px;}
.y2b{bottom:511.859795px;}
.y48{bottom:517.799793px;}
.y82{bottom:517.979793px;}
.y2a{bottom:530.399788px;}
.y47{bottom:534.719786px;}
.y81{bottom:536.699785px;}
.y46{bottom:547.499781px;}
.y29{bottom:553.619779px;}
.y80{bottom:555.239778px;}
.y45{bottom:562.799775px;}
.y44{bottom:567.119773px;}
.y28{bottom:572.159771px;}
.y7f{bottom:575.759770px;}
.y27{bottom:592.679763px;}
.y7e{bottom:594.299762px;}
.y26{bottom:611.219756px;}
.y7d{bottom:617.519753px;}
.y25{bottom:634.259746px;}
.y7c{bottom:636.059746px;}
.y24{bottom:652.439739px;}
.y7b{bottom:654.779738px;}
.y23{bottom:671.159732px;}
.y7a{bottom:673.319731px;}
.y22{bottom:690.419724px;}
.y79{bottom:692.039723px;}
.y21{bottom:708.059717px;}
.y78{bottom:710.759716px;}
.y20{bottom:719.219712px;}
.y77{bottom:729.299708px;}
.y1f{bottom:737.939705px;}
.y76{bottom:747.839701px;}
.y1e{bottom:756.659697px;}
.y9d{bottom:765.119694px;}
.y75{bottom:765.839694px;}
.y1d{bottom:775.199690px;}
.y74{bottom:784.199686px;}
.y9c{bottom:785.459686px;}
.y1c{bottom:793.919682px;}
.y73{bottom:798.599681px;}
.y9b{bottom:805.979678px;}
.ybc{bottom:810.299676px;}
.y1b{bottom:812.459675px;}
.ybb{bottom:830.639668px;}
.y9a{bottom:830.819668px;}
.y1a{bottom:831.179668px;}
.y19{bottom:847.199661px;}
.yba{bottom:849.179660px;}
.y99{bottom:849.539660px;}
.y18{bottom:857.099657px;}
.yb9{bottom:869.699652px;}
.y98{bottom:869.879652px;}
.y17{bottom:877.079649px;}
.yb8{bottom:888.239645px;}
.y97{bottom:890.399644px;}
.y16{bottom:900.839640px;}
.yb7{bottom:908.759636px;}
.y96{bottom:908.939636px;}
.y15{bottom:916.319633px;}
.yb6{bottom:927.299629px;}
.y95{bottom:927.659629px;}
.y14{bottom:935.039626px;}
.yb5{bottom:947.819621px;}
.y94{bottom:947.999621px;}
.y13{bottom:952.499619px;}
.y63{bottom:954.299618px;}
.y12{bottom:960.779616px;}
.yb4{bottom:966.359613px;}
.y93{bottom:966.719613px;}
.y62{bottom:974.819610px;}
.y11{bottom:981.839607px;}
.y92{bottom:985.259606px;}
.yb3{bottom:986.879605px;}
.y61{bottom:993.359603px;}
.y43{bottom:1004.879598px;}
.yb2{bottom:1007.219597px;}
.y91{bottom:1010.279596px;}
.y10{bottom:1011.179596px;}
.y60{bottom:1012.079595px;}
.y42{bottom:1025.399590px;}
.yb1{bottom:1025.939590px;}
.y5f{bottom:1030.619588px;}
.yf{bottom:1039.979584px;}
.y41{bottom:1043.939582px;}
.yb0{bottom:1046.279581px;}
.y5e{bottom:1049.339580px;}
.y40{bottom:1064.459574px;}
.yaf{bottom:1066.799573px;}
.ye{bottom:1067.339573px;}
.y5d{bottom:1067.879573px;}
.y3f{bottom:1084.799566px;}
.y5c{bottom:1086.599565px;}
.yae{bottom:1086.959565px;}
.yd{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yc{bottom:1158.059537px;}
.y2{bottom:1163.639535px;}
.yb{bottom:1169.939532px;}
.ya{bottom:1181.999527px;}
.y1{bottom:1196.039522px;}
.h2{height:13.104487px;}
.h5{height:15.836126px;}
.hd{height:17.297923px;}
.he{height:17.321126px;}
.h14{height:22.015538px;}
.hf{height:22.045069px;}
.h12{height:26.208974px;}
.h6{height:28.305692px;}
.h7{height:28.343661px;}
.h13{height:30.443191px;}
.h3{height:35.167134px;}
.h1{height:39.313461px;}
.h11{height:42.777405px;}
.h4{height:43.506897px;}
.hb{height:43.565256px;}
.h10{height:48.224512px;}
.h8{height:52.488260px;}
.hc{height:61.328999px;}
.ha{height:69.715871px;}
.h9{height:69.809386px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x1a{left:112.139955px;}
.x1c{left:135.001207px;}
.xf{left:154.793938px;}
.x4{left:160.019662px;}
.xc{left:168.479820px;}
.xe{left:172.439931px;}
.x18{left:180.360108px;}
.x11{left:186.659925px;}
.x5{left:206.459917px;}
.x1b{left:209.339916px;}
.xd{left:240.839904px;}
.x16{left:257.939897px;}
.xb{left:265.499894px;}
.xa{left:313.559875px;}
.x14{left:345.239862px;}
.x2{left:353.160301px;}
.x1d{left:425.701141px;}
.x6{left:428.399829px;}
.x3{left:446.400357px;}
.x9{left:514.795050px;}
.x8{left:555.299821px;}
.x17{left:615.239754px;}
.x7{left:632.159747px;}
.x12{left:637.559745px;}
.x15{left:719.100271px;}
.x19{left:732.240308px;}
.x13{left:748.258440px;}
.x10{left:780.659688px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.098869pt;}
.ls0{letter-spacing:0.166971pt;}
.ls2{letter-spacing:0.186013pt;}
.ls5{letter-spacing:0.186027pt;}
.ls1{letter-spacing:0.186052pt;}
.ls7{letter-spacing:56.930751pt;}
.ls6{letter-spacing:56.956884pt;}
.ws5{word-spacing:-31.871987pt;}
.ws1{word-spacing:-14.740926pt;}
.ws2{word-spacing:-14.740887pt;}
.ws3{word-spacing:-14.554874pt;}
.ws0{word-spacing:-10.719996pt;}
.ws4{word-spacing:0.000000pt;}
._11{margin-left:-3.378963pt;}
._f{margin-left:-2.180927pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._9{width:2.337517pt;}
._a{width:3.819298pt;}
._7{width:4.781762pt;}
._8{width:5.932395pt;}
._5{width:6.935571pt;}
._d{width:7.848005pt;}
._10{width:9.494614pt;}
._b{width:10.866522pt;}
._c{width:12.010628pt;}
._12{width:14.312624pt;}
._e{width:15.416536pt;}
._6{width:16.465322pt;}
._1{width:89.011234pt;}
._3{width:205.505850pt;}
._4{width:921.660064pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fs9{font-size:26.879989pt;}
.fsb{font-size:31.999987pt;}
.fs5{font-size:34.559986pt;}
.fsc{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fsa{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs8{font-size:74.879970pt;}
.fs7{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.y72{bottom:118.026886pt;}
.yad{bottom:119.946619pt;}
.y3e{bottom:123.786617pt;}
.y71{bottom:128.106615pt;}
.y90{bottom:130.506614pt;}
.yac{bottom:136.586612pt;}
.y5b{bottom:137.546612pt;}
.y3d{bottom:142.026610pt;}
.y70{bottom:144.746609pt;}
.y8f{bottom:146.986608pt;}
.yab{bottom:153.066605pt;}
.y5a{bottom:154.186605pt;}
.y3c{bottom:158.506603pt;}
.y6f{bottom:162.826602pt;}
.y8e{bottom:163.626601pt;}
.yaa{bottom:169.706599pt;}
.y59{bottom:170.826598pt;}
.y3b{bottom:176.746596pt;}
.y6e{bottom:179.466595pt;}
.y8d{bottom:180.106595pt;}
.y58{bottom:187.306592pt;}
.ya9{bottom:187.786592pt;}
.y3a{bottom:194.826589pt;}
.y6d{bottom:195.786588pt;}
.y8c{bottom:196.746588pt;}
.y57{bottom:203.946585pt;}
.ya8{bottom:204.426585pt;}
.y6c{bottom:210.186583pt;}
.y39{bottom:211.466582pt;}
.y8b{bottom:213.386581pt;}
.y56{bottom:220.426578pt;}
.ya7{bottom:220.906578pt;}
.y8a{bottom:229.866575pt;}
.y38{bottom:231.786574pt;}
.y6b{bottom:236.906572pt;}
.y55{bottom:237.066572pt;}
.ya6{bottom:239.146571pt;}
.y89{bottom:248.106567pt;}
.y37{bottom:252.106566pt;}
.y54{bottom:253.546565pt;}
.ya5{bottom:255.626564pt;}
.y36{bottom:268.586559pt;}
.y6a{bottom:270.026559pt;}
.y53{bottom:271.786558pt;}
.ya4{bottom:272.266558pt;}
.y35{bottom:285.226553pt;}
.y69{bottom:286.666552pt;}
.y52{bottom:288.266551pt;}
.ya3{bottom:288.746551pt;}
.y88{bottom:301.706546pt;}
.y34{bottom:301.866546pt;}
.y68{bottom:303.306545pt;}
.y51{bottom:304.906545pt;}
.ya2{bottom:305.226545pt;}
.y67{bottom:317.226540pt;}
.y33{bottom:318.346539pt;}
.ya1{bottom:319.626539pt;}
.y50{bottom:321.386538pt;}
.y66{bottom:324.586537pt;}
.ya0{bottom:329.546535pt;}
.y87{bottom:334.826533pt;}
.y32{bottom:334.986533pt;}
.y4f{bottom:338.026531pt;}
.y65{bottom:339.466531pt;}
.y9f{bottom:343.946529pt;}
.y64{bottom:348.426527pt;}
.y9e{bottom:350.346527pt;}
.y31{bottom:351.466526pt;}
.y4e{bottom:354.666525pt;}
.y86{bottom:367.946519pt;}
.y30{bottom:368.106519pt;}
.y4d{bottom:371.146518pt;}
.y2f{bottom:384.586513pt;}
.y4c{bottom:387.786512pt;}
.y85{bottom:388.586511pt;}
.y2e{bottom:401.226506pt;}
.y84{bottom:405.226505pt;}
.y4b{bottom:405.866504pt;}
.y2d{bottom:421.706498pt;}
.y4a{bottom:423.946497pt;}
.y2c{bottom:438.346491pt;}
.y49{bottom:442.186490pt;}
.y83{bottom:443.946489pt;}
.y2b{bottom:454.986485pt;}
.y48{bottom:460.266483pt;}
.y82{bottom:460.426482pt;}
.y2a{bottom:471.466478pt;}
.y47{bottom:475.306477pt;}
.y81{bottom:477.066476pt;}
.y46{bottom:486.666472pt;}
.y29{bottom:492.106470pt;}
.y80{bottom:493.546469pt;}
.y45{bottom:500.266467pt;}
.y44{bottom:504.106465pt;}
.y28{bottom:508.586463pt;}
.y7f{bottom:511.786462pt;}
.y27{bottom:526.826456pt;}
.y7e{bottom:528.266455pt;}
.y26{bottom:543.306449pt;}
.y7d{bottom:548.906447pt;}
.y25{bottom:563.786441pt;}
.y7c{bottom:565.386441pt;}
.y24{bottom:579.946435pt;}
.y7b{bottom:582.026434pt;}
.y23{bottom:596.586428pt;}
.y7a{bottom:598.506427pt;}
.y22{bottom:613.706421pt;}
.y79{bottom:615.146421pt;}
.y21{bottom:629.386415pt;}
.y78{bottom:631.786414pt;}
.y20{bottom:639.306411pt;}
.y77{bottom:648.266407pt;}
.y1f{bottom:655.946404pt;}
.y76{bottom:664.746401pt;}
.y1e{bottom:672.586398pt;}
.y9d{bottom:680.106395pt;}
.y75{bottom:680.746394pt;}
.y1d{bottom:689.066391pt;}
.y74{bottom:697.066388pt;}
.y9c{bottom:698.186387pt;}
.y1c{bottom:705.706384pt;}
.y73{bottom:709.866383pt;}
.y9b{bottom:716.426380pt;}
.ybc{bottom:720.266379pt;}
.y1b{bottom:722.186378pt;}
.ybb{bottom:738.346371pt;}
.y9a{bottom:738.506371pt;}
.y1a{bottom:738.826371pt;}
.y19{bottom:753.066365pt;}
.yba{bottom:754.826365pt;}
.y99{bottom:755.146365pt;}
.y18{bottom:761.866362pt;}
.yb9{bottom:773.066357pt;}
.y98{bottom:773.226357pt;}
.y17{bottom:779.626355pt;}
.yb8{bottom:789.546351pt;}
.y97{bottom:791.466350pt;}
.y16{bottom:800.746346pt;}
.yb7{bottom:807.786344pt;}
.y96{bottom:807.946343pt;}
.y15{bottom:814.506341pt;}
.yb6{bottom:824.266337pt;}
.y95{bottom:824.586337pt;}
.y14{bottom:831.146334pt;}
.yb5{bottom:842.506330pt;}
.y94{bottom:842.666330pt;}
.y13{bottom:846.666328pt;}
.y63{bottom:848.266327pt;}
.y12{bottom:854.026325pt;}
.yb4{bottom:858.986323pt;}
.y93{bottom:859.306323pt;}
.y62{bottom:866.506320pt;}
.y11{bottom:872.746318pt;}
.y92{bottom:875.786316pt;}
.yb3{bottom:877.226316pt;}
.y61{bottom:882.986313pt;}
.y43{bottom:893.226309pt;}
.yb2{bottom:895.306309pt;}
.y91{bottom:898.026307pt;}
.y10{bottom:898.826307pt;}
.y60{bottom:899.626307pt;}
.y42{bottom:911.466302pt;}
.yb1{bottom:911.946302pt;}
.y5f{bottom:916.106300pt;}
.yf{bottom:924.426297pt;}
.y41{bottom:927.946295pt;}
.yb0{bottom:930.026295pt;}
.y5e{bottom:932.746294pt;}
.y40{bottom:946.186288pt;}
.yaf{bottom:948.266287pt;}
.ye{bottom:948.746287pt;}
.y5d{bottom:949.226287pt;}
.y3f{bottom:964.266281pt;}
.y5c{bottom:965.866280pt;}
.yae{bottom:966.186280pt;}
.yd{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yc{bottom:1029.386255pt;}
.y2{bottom:1034.346253pt;}
.yb{bottom:1039.946251pt;}
.ya{bottom:1050.666246pt;}
.y1{bottom:1063.146241pt;}
.h2{height:11.648433pt;}
.h5{height:14.076557pt;}
.hd{height:15.375931pt;}
.he{height:15.396556pt;}
.h14{height:19.569367pt;}
.hf{height:19.595617pt;}
.h12{height:23.296866pt;}
.h6{height:25.160615pt;}
.h7{height:25.194365pt;}
.h13{height:27.060614pt;}
.h3{height:31.259675pt;}
.h1{height:34.945299pt;}
.h11{height:38.024360pt;}
.h4{height:38.672797pt;}
.hb{height:38.724672pt;}
.h10{height:42.866233pt;}
.h8{height:46.656231pt;}
.hc{height:54.514666pt;}
.ha{height:61.969663pt;}
.h9{height:62.052788pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x1a{left:99.679960pt;}
.x1c{left:120.001073pt;}
.xf{left:137.594612pt;}
.x4{left:142.239699pt;}
.xc{left:149.759840pt;}
.xe{left:153.279939pt;}
.x18{left:160.320096pt;}
.x11{left:165.919934pt;}
.x5{left:183.519927pt;}
.x1b{left:186.079926pt;}
.xd{left:214.079914pt;}
.x16{left:229.279908pt;}
.xb{left:235.999906pt;}
.xa{left:278.719889pt;}
.x14{left:306.879877pt;}
.x2{left:313.920268pt;}
.x1d{left:378.401014pt;}
.x6{left:380.799848pt;}
.x3{left:396.800317pt;}
.x9{left:457.595600pt;}
.x8{left:493.599841pt;}
.x17{left:546.879781pt;}
.x7{left:561.919775pt;}
.x12{left:566.719773pt;}
.x15{left:639.200241pt;}
.x19{left:650.880274pt;}
.x13{left:665.118614pt;}
.x10{left:693.919722pt;}
}




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