
    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_fd3e5ec773eb313f6af07ca2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_71d11e9e763b47cb9bbb3922.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;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_51de50fc02ded4f4fa8ac5c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_1d4abdfbfea68e9da58b8ec0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.000000;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_142e3782df3e3f963200424a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960938;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_098f788de5f2079f9e897428.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896484;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_c816f7f917565e5e685ba5ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960938;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;}
.m4{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);}
.m9{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);}
.m5{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);}
.m6{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);}
.m0{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1{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);}
.m8{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;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010620px;}
.ls3{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.019875px;}
.ls7{letter-spacing:0.021238px;}
.ls4{letter-spacing:0.021282px;}
.ls0{letter-spacing:0.096738px;}
.ls6{letter-spacing:0.155880px;}
.lsa{letter-spacing:5.053618px;}
.ls8{letter-spacing:10.816976px;}
.ls5{letter-spacing:13.698715px;}
.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;}
}
.ws4{word-spacing:-42.324463px;}
.ws2{word-spacing:-41.856721px;}
.ws7{word-spacing:-18.021275px;}
.ws8{word-spacing:-18.021231px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.579869px;}
.ws1{word-spacing:-15.839994px;}
.ws6{word-spacing:-14.939994px;}
.ws5{word-spacing:0.000000px;}
._27{margin-left:-34.569850px;}
._34{margin-left:-11.063951px;}
._26{margin-left:-9.054015px;}
._8{margin-left:-7.460082px;}
._14{margin-left:-5.508154px;}
._2{margin-left:-3.999407px;}
._d{margin-left:-2.258970px;}
._1{margin-left:-1.207112px;}
._0{width:1.091010px;}
._5{width:2.341994px;}
._7{width:3.583392px;}
._e{width:5.293662px;}
._17{width:6.299027px;}
._13{width:7.315150px;}
._12{width:8.575661px;}
._9{width:9.821519px;}
._4{width:11.002807px;}
._3{width:12.194153px;}
._15{width:13.950113px;}
._10{width:15.159643px;}
._f{width:16.368970px;}
._b{width:19.462096px;}
._a{width:20.644257px;}
._6{width:22.155546px;}
._1d{width:23.805981px;}
._18{width:24.921543px;}
._1e{width:26.201045px;}
._19{width:27.625481px;}
._16{width:28.680963px;}
._11{width:31.278482px;}
._1a{width:32.305739px;}
._1b{width:33.757138px;}
._25{width:35.169144px;}
._1c{width:38.438543px;}
._c{width:39.702656px;}
._2d{width:47.020241px;}
._36{width:48.446406px;}
._35{width:49.512169px;}
._2e{width:50.540550px;}
._1f{width:51.851997px;}
._31{width:56.286684px;}
._2b{width:61.246776px;}
._2a{width:62.287186px;}
._22{width:76.267433px;}
._30{width:83.589147px;}
._37{width:98.059964px;}
._2f{width:101.233931px;}
._2c{width:123.049837px;}
._23{width:124.697510px;}
._29{width:141.132358px;}
._28{width:142.545051px;}
._20{width:219.071500px;}
._24{width:249.944281px;}
._32{width:297.740761px;}
._33{width:298.991696px;}
._21{width:438.172012px;}
.fc4{color:transparent;}
.fc3{color:rgb(27,27,26);}
.fc2{color:rgb(179,179,179);}
.fc1{color:rgb(153,153,153);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.559986px;}
.fs6{font-size:41.759983px;}
.fs5{font-size:45.359982px;}
.fsa{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsc{font-size:59.759976px;}
.fs4{font-size:63.359975px;}
.fs7{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.fs1{font-size:84.239966px;}
.fs0{font-size:95.759962px;}
.fs8{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.yd2{bottom:3.959284px;}
.y24{bottom:56.820277px;}
.y23{bottom:74.460270px;}
.y22{bottom:87.240265px;}
.ybf{bottom:114.599954px;}
.yae{bottom:114.600254px;}
.yc1{bottom:117.119953px;}
.y82{bottom:125.579950px;}
.yd4{bottom:125.580250px;}
.y55{bottom:127.559949px;}
.y21{bottom:128.999948px;}
.ybe{bottom:132.059947px;}
.yad{bottom:132.060247px;}
.yd0{bottom:136.019946px;}
.yc0{bottom:137.819945px;}
.y81{bottom:146.279941px;}
.yd3{bottom:146.280241px;}
.y54{bottom:148.259941px;}
.ybd{bottom:149.339940px;}
.yac{bottom:149.340240px;}
.y20{bottom:149.699940px;}
.yab{bottom:155.279938px;}
.ycf{bottom:156.719937px;}
.ybc{bottom:166.619933px;}
.y80{bottom:166.979933px;}
.y53{bottom:168.959932px;}
.y1f{bottom:170.399932px;}
.ybb{bottom:172.559931px;}
.yaa{bottom:177.419929px;}
.yba{bottom:183.899926px;}
.y7f{bottom:187.679925px;}
.y52{bottom:189.659924px;}
.y1e{bottom:191.099924px;}
.ya9{bottom:198.119921px;}
.yb9{bottom:201.359919px;}
.yce{bottom:207.299917px;}
.y7e{bottom:208.379917px;}
.y51{bottom:210.359916px;}
.y1d{bottom:211.799915px;}
.yc3{bottom:215.399914px;}
.yb8{bottom:218.639913px;}
.ya8{bottom:218.819912px;}
.yb7{bottom:224.579910px;}
.y7d{bottom:229.079908px;}
.y50{bottom:231.059908px;}
.y1c{bottom:232.499907px;}
.ycd{bottom:235.919906px;}
.ya7{bottom:239.519904px;}
.y7c{bottom:249.779900px;}
.ya4{bottom:251.759899px;}
.y1b{bottom:253.199899px;}
.ycc{bottom:259.139896px;}
.y4f{bottom:260.219896px;}
.y7b{bottom:270.479892px;}
.ya3{bottom:272.459891px;}
.y1a{bottom:273.899890px;}
.y83{bottom:280.919888px;}
.yd1{bottom:287.220600px;}
.y7a{bottom:291.179884px;}
.ya2{bottom:293.159883px;}
.y19{bottom:294.599882px;}
.y4e{bottom:301.619879px;}
.ycb{bottom:303.419879px;}
.y79{bottom:311.879875px;}
.ya1{bottom:313.859874px;}
.y4d{bottom:322.319871px;}
.yca{bottom:324.119870px;}
.y78{bottom:332.579867px;}
.ya0{bottom:334.559866px;}
.y18{bottom:335.999866px;}
.yc2{bottom:339.599864px;}
.y4c{bottom:343.019863px;}
.yc9{bottom:344.819862px;}
.y77{bottom:353.279859px;}
.y9f{bottom:355.259858px;}
.y17{bottom:356.699857px;}
.y4b{bottom:363.719855px;}
.yc8{bottom:365.519854px;}
.y76{bottom:373.979850px;}
.y9e{bottom:375.959850px;}
.y4a{bottom:384.419846px;}
.yc7{bottom:386.219846px;}
.y75{bottom:394.679842px;}
.y9d{bottom:396.659841px;}
.y16{bottom:398.099841px;}
.y49{bottom:405.119838px;}
.yc6{bottom:406.919837px;}
.y74{bottom:415.379834px;}
.y9c{bottom:417.359833px;}
.y15{bottom:418.799832px;}
.y48{bottom:425.819830px;}
.y73{bottom:436.079826px;}
.y9b{bottom:438.059825px;}
.y14{bottom:439.499824px;}
.y47{bottom:446.519821px;}
.y72{bottom:456.779817px;}
.y9a{bottom:458.759816px;}
.y13{bottom:460.199816px;}
.y46{bottom:467.219813px;}
.y71{bottom:477.479809px;}
.y99{bottom:479.459808px;}
.y12{bottom:480.899808px;}
.y45{bottom:487.919805px;}
.y70{bottom:498.179801px;}
.y98{bottom:500.159800px;}
.y11{bottom:501.599799px;}
.ya6{bottom:505.199798px;}
.y44{bottom:508.619797px;}
.y6f{bottom:518.879792px;}
.y97{bottom:520.859792px;}
.y10{bottom:522.299791px;}
.y43{bottom:529.319788px;}
.y6e{bottom:539.579784px;}
.y96{bottom:541.559783px;}
.yf{bottom:542.999783px;}
.y42{bottom:550.019780px;}
.y6d{bottom:560.279776px;}
.y95{bottom:562.259775px;}
.ye{bottom:563.699775px;}
.y41{bottom:570.719772px;}
.y6c{bottom:580.979768px;}
.y94{bottom:582.959767px;}
.yd{bottom:584.399766px;}
.y40{bottom:591.419763px;}
.y6b{bottom:601.679759px;}
.y93{bottom:603.659759px;}
.yc{bottom:605.099758px;}
.y3f{bottom:612.119755px;}
.y6a{bottom:622.379751px;}
.y92{bottom:624.359750px;}
.y3e{bottom:632.819747px;}
.y69{bottom:643.079743px;}
.y91{bottom:645.059742px;}
.y3d{bottom:653.519739px;}
.y68{bottom:663.779734px;}
.yb{bottom:664.139734px;}
.y90{bottom:665.759734px;}
.y3c{bottom:674.219730px;}
.ya{bottom:682.319727px;}
.y67{bottom:684.479726px;}
.y8f{bottom:686.459725px;}
.y3b{bottom:694.919722px;}
.y9{bottom:700.499720px;}
.y66{bottom:705.179718px;}
.y8e{bottom:707.159717px;}
.y3a{bottom:715.619714px;}
.y65{bottom:725.879710px;}
.y8d{bottom:727.859709px;}
.y8{bottom:735.959706px;}
.y39{bottom:736.319705px;}
.yb6{bottom:743.159703px;}
.y64{bottom:746.579701px;}
.y8c{bottom:748.559701px;}
.y7{bottom:753.959698px;}
.y38{bottom:757.019697px;}
.y63{bottom:767.279693px;}
.y8b{bottom:769.259692px;}
.y37{bottom:777.719689px;}
.y62{bottom:787.979685px;}
.y8a{bottom:789.959684px;}
.y36{bottom:798.419681px;}
.y61{bottom:808.679677px;}
.y89{bottom:810.659676px;}
.y6{bottom:811.559675px;}
.y35{bottom:819.119672px;}
.y60{bottom:829.379668px;}
.y88{bottom:831.359667px;}
.y5{bottom:832.259667px;}
.yc5{bottom:836.399665px;}
.y34{bottom:839.819664px;}
.ydd{bottom:849.899660px;}
.y5f{bottom:850.079660px;}
.y87{bottom:852.059659px;}
.y4{bottom:852.959659px;}
.y33{bottom:860.519656px;}
.yb5{bottom:867.359653px;}
.ydc{bottom:868.799652px;}
.y5e{bottom:870.779652px;}
.y86{bottom:872.759651px;}
.y3{bottom:873.839650px;}
.y32{bottom:881.219648px;}
.ydb{bottom:887.699645px;}
.y5d{bottom:891.479643px;}
.y31{bottom:901.919639px;}
.yda{bottom:906.779637px;}
.y5c{bottom:912.179635px;}
.yc4{bottom:919.199632px;}
.y30{bottom:922.619631px;}
.yd9{bottom:925.679630px;}
.y5b{bottom:932.879627px;}
.y2{bottom:941.519623px;}
.y2f{bottom:943.319623px;}
.yd8{bottom:944.759622px;}
.y5a{bottom:953.579619px;}
.yd7{bottom:963.659615px;}
.y2e{bottom:964.019614px;}
.y59{bottom:974.279610px;}
.yd6{bottom:982.559607px;}
.y85{bottom:984.719606px;}
.y1{bottom:993.899602px;}
.y2d{bottom:994.979602px;}
.y84{bottom:1005.419598px;}
.y58{bottom:1015.679594px;}
.yb4{bottom:1026.119590px;}
.yd5{bottom:1029.539588px;}
.y57{bottom:1036.379585px;}
.yb3{bottom:1046.819581px;}
.y2c{bottom:1057.079577px;}
.ya5{bottom:1064.099574px;}
.yb2{bottom:1067.519573px;}
.y2b{bottom:1077.779569px;}
.y27{bottom:1080.299568px;}
.y28{bottom:1081.019568px;}
.yb1{bottom:1088.219565px;}
.y26{bottom:1097.399561px;}
.y56{bottom:1098.479561px;}
.yb0{bottom:1108.919556px;}
.y2a{bottom:1119.179552px;}
.y25{bottom:1120.259552px;}
.yaf{bottom:1129.619548px;}
.y29{bottom:1139.879544px;}
.h13{height:20.160000px;}
.h10{height:23.777270px;}
.hf{height:28.730869px;}
.h9{height:31.319987px;}
.h8{height:34.462955px;}
.he{height:36.651079px;}
.hd{height:41.027327px;}
.h11{height:41.114864px;}
.h6{height:43.591663px;}
.h5{height:45.175662px;}
.ha{height:45.573102px;}
.h14{height:47.229101px;}
.h12{height:49.175980px;}
.h4{height:49.535980px;}
.hc{height:50.326855px;}
.h7{height:51.335979px;}
.h3{height:55.442858px;}
.h2{height:57.535897px;}
.h1{height:68.276853px;}
.hb{height:91.354182px;}
.h0{height:1263.000000px;}
.w1{width:0.360000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x19{left:126.540951px;}
.x1{left:127.799949px;}
.x10{left:132.119947px;}
.xb{left:134.639946px;}
.x1a{left:150.300415px;}
.x5{left:163.799982px;}
.x2{left:178.559929px;}
.x6{left:212.759212px;}
.x9{left:223.739911px;}
.xa{left:228.959908px;}
.xc{left:236.699905px;}
.xd{left:241.919903px;}
.xe{left:296.639881px;}
.xf{left:301.859879px;}
.x13{left:316.259873px;}
.x14{left:321.479871px;}
.x1c{left:428.579829px;}
.x3{left:434.339826px;}
.x4{left:511.199796px;}
.x11{left:527.579789px;}
.x12{left:532.799787px;}
.x17{left:556.739777px;}
.x18{left:562.139775px;}
.x7{left:571.139772px;}
.x8{left:573.659771px;}
.x15{left:730.979708px;}
.x16{left:736.199706px;}
.x1b{left:762.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.009440pt;}
.ls3{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.017667pt;}
.ls7{letter-spacing:0.018878pt;}
.ls4{letter-spacing:0.018917pt;}
.ls0{letter-spacing:0.085989pt;}
.ls6{letter-spacing:0.138560pt;}
.lsa{letter-spacing:4.492105pt;}
.ls8{letter-spacing:9.615089pt;}
.ls5{letter-spacing:12.176635pt;}
.ws4{word-spacing:-37.621745pt;}
.ws2{word-spacing:-37.205974pt;}
.ws7{word-spacing:-16.018911pt;}
.ws8{word-spacing:-16.018872pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.737661pt;}
.ws1{word-spacing:-14.079994pt;}
.ws6{word-spacing:-13.279995pt;}
.ws5{word-spacing:0.000000pt;}
._27{margin-left:-30.728756pt;}
._34{margin-left:-9.834623pt;}
._26{margin-left:-8.048014pt;}
._8{margin-left:-6.631184pt;}
._14{margin-left:-4.896137pt;}
._2{margin-left:-3.555029pt;}
._d{margin-left:-2.007974pt;}
._1{margin-left:-1.072988pt;}
._0{width:0.969787pt;}
._5{width:2.081773pt;}
._7{width:3.185238pt;}
._e{width:4.705477pt;}
._17{width:5.599135pt;}
._13{width:6.502356pt;}
._12{width:7.622810pt;}
._9{width:8.730239pt;}
._4{width:9.780273pt;}
._3{width:10.839247pt;}
._15{width:12.400100pt;}
._10{width:13.475238pt;}
._f{width:14.550196pt;}
._b{width:17.299641pt;}
._a{width:18.350450pt;}
._6{width:19.693819pt;}
._1d{width:21.160872pt;}
._18{width:22.152482pt;}
._1e{width:23.289818pt;}
._19{width:24.555983pt;}
._16{width:25.494189pt;}
._11{width:27.803095pt;}
._1a{width:28.716213pt;}
._1b{width:30.006344pt;}
._25{width:31.261461pt;}
._1c{width:34.167593pt;}
._c{width:35.291249pt;}
._2d{width:41.795770pt;}
._36{width:43.063472pt;}
._35{width:44.010817pt;}
._2e{width:44.924933pt;}
._1f{width:46.090664pt;}
._31{width:50.032608pt;}
._2b{width:54.441578pt;}
._2a{width:55.366388pt;}
._22{width:67.793274pt;}
._30{width:74.301464pt;}
._37{width:87.164413pt;}
._2f{width:89.985717pt;}
._2c{width:109.377633pt;}
._23{width:110.842231pt;}
._29{width:125.450985pt;}
._28{width:126.706712pt;}
._20{width:194.730223pt;}
._24{width:222.172694pt;}
._32{width:264.658454pt;}
._33{width:265.770396pt;}
._21{width:389.486233pt;}
.fsb{font-size:30.719988pt;}
.fs6{font-size:37.119985pt;}
.fs5{font-size:40.319984pt;}
.fsa{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsc{font-size:53.119979pt;}
.fs4{font-size:56.319977pt;}
.fs7{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.fs1{font-size:74.879970pt;}
.fs0{font-size:85.119966pt;}
.fs8{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:3.519363pt;}
.y24{bottom:50.506913pt;}
.y23{bottom:66.186907pt;}
.y22{bottom:77.546902pt;}
.ybf{bottom:101.866626pt;}
.yae{bottom:101.866893pt;}
.yc1{bottom:104.106625pt;}
.y82{bottom:111.626622pt;}
.yd4{bottom:111.626889pt;}
.y55{bottom:113.386621pt;}
.y21{bottom:114.666621pt;}
.ybe{bottom:117.386620pt;}
.yad{bottom:117.386886pt;}
.yd0{bottom:120.906618pt;}
.yc0{bottom:122.506618pt;}
.y81{bottom:130.026615pt;}
.yd3{bottom:130.026881pt;}
.y54{bottom:131.786614pt;}
.ybd{bottom:132.746614pt;}
.yac{bottom:132.746880pt;}
.y20{bottom:133.066613pt;}
.yab{bottom:138.026611pt;}
.ycf{bottom:139.306611pt;}
.ybc{bottom:148.106607pt;}
.y80{bottom:148.426607pt;}
.y53{bottom:150.186607pt;}
.y1f{bottom:151.466606pt;}
.ybb{bottom:153.386605pt;}
.yaa{bottom:157.706604pt;}
.yba{bottom:163.466601pt;}
.y7f{bottom:166.826600pt;}
.y52{bottom:168.586599pt;}
.y1e{bottom:169.866599pt;}
.ya9{bottom:176.106596pt;}
.yb9{bottom:178.986595pt;}
.yce{bottom:184.266593pt;}
.y7e{bottom:185.226593pt;}
.y51{bottom:186.986592pt;}
.y1d{bottom:188.266591pt;}
.yc3{bottom:191.466590pt;}
.yb8{bottom:194.346589pt;}
.ya8{bottom:194.506589pt;}
.yb7{bottom:199.626587pt;}
.y7d{bottom:203.626585pt;}
.y50{bottom:205.386585pt;}
.y1c{bottom:206.666584pt;}
.ycd{bottom:209.706583pt;}
.ya7{bottom:212.906582pt;}
.y7c{bottom:222.026578pt;}
.ya4{bottom:223.786577pt;}
.y1b{bottom:225.066577pt;}
.ycc{bottom:230.346575pt;}
.y4f{bottom:231.306574pt;}
.y7b{bottom:240.426570pt;}
.ya3{bottom:242.186570pt;}
.y1a{bottom:243.466569pt;}
.y83{bottom:249.706567pt;}
.yd1{bottom:255.307200pt;}
.y7a{bottom:258.826563pt;}
.ya2{bottom:260.586562pt;}
.y19{bottom:261.866562pt;}
.y4e{bottom:268.106559pt;}
.ycb{bottom:269.706559pt;}
.y79{bottom:277.226556pt;}
.ya1{bottom:278.986555pt;}
.y4d{bottom:286.506552pt;}
.yca{bottom:288.106551pt;}
.y78{bottom:295.626548pt;}
.ya0{bottom:297.386548pt;}
.y18{bottom:298.666547pt;}
.yc2{bottom:301.866546pt;}
.y4c{bottom:304.906545pt;}
.yc9{bottom:306.506544pt;}
.y77{bottom:314.026541pt;}
.y9f{bottom:315.786540pt;}
.y17{bottom:317.066540pt;}
.y4b{bottom:323.306537pt;}
.yc8{bottom:324.906537pt;}
.y76{bottom:332.426534pt;}
.y9e{bottom:334.186533pt;}
.y4a{bottom:341.706530pt;}
.yc7{bottom:343.306529pt;}
.y75{bottom:350.826526pt;}
.y9d{bottom:352.586526pt;}
.y16{bottom:353.866525pt;}
.y49{bottom:360.106523pt;}
.yc6{bottom:361.706522pt;}
.y74{bottom:369.226519pt;}
.y9c{bottom:370.986518pt;}
.y15{bottom:372.266518pt;}
.y48{bottom:378.506515pt;}
.y73{bottom:387.626512pt;}
.y9b{bottom:389.386511pt;}
.y14{bottom:390.666510pt;}
.y47{bottom:396.906508pt;}
.y72{bottom:406.026504pt;}
.y9a{bottom:407.786504pt;}
.y13{bottom:409.066503pt;}
.y46{bottom:415.306501pt;}
.y71{bottom:424.426497pt;}
.y99{bottom:426.186496pt;}
.y12{bottom:427.466496pt;}
.y45{bottom:433.706493pt;}
.y70{bottom:442.826490pt;}
.y98{bottom:444.586489pt;}
.y11{bottom:445.866488pt;}
.ya6{bottom:449.066487pt;}
.y44{bottom:452.106486pt;}
.y6f{bottom:461.226482pt;}
.y97{bottom:462.986481pt;}
.y10{bottom:464.266481pt;}
.y43{bottom:470.506478pt;}
.y6e{bottom:479.626475pt;}
.y96{bottom:481.386474pt;}
.yf{bottom:482.666474pt;}
.y42{bottom:488.906471pt;}
.y6d{bottom:498.026467pt;}
.y95{bottom:499.786467pt;}
.ye{bottom:501.066466pt;}
.y41{bottom:507.306464pt;}
.y6c{bottom:516.426460pt;}
.y94{bottom:518.186459pt;}
.yd{bottom:519.466459pt;}
.y40{bottom:525.706456pt;}
.y6b{bottom:534.826453pt;}
.y93{bottom:536.586452pt;}
.yc{bottom:537.866452pt;}
.y3f{bottom:544.106449pt;}
.y6a{bottom:553.226445pt;}
.y92{bottom:554.986445pt;}
.y3e{bottom:562.506442pt;}
.y69{bottom:571.626438pt;}
.y91{bottom:573.386437pt;}
.y3d{bottom:580.906434pt;}
.y68{bottom:590.026431pt;}
.yb{bottom:590.346431pt;}
.y90{bottom:591.786430pt;}
.y3c{bottom:599.306427pt;}
.ya{bottom:606.506424pt;}
.y67{bottom:608.426423pt;}
.y8f{bottom:610.186423pt;}
.y3b{bottom:617.706420pt;}
.y9{bottom:622.666418pt;}
.y66{bottom:626.826416pt;}
.y8e{bottom:628.586415pt;}
.y3a{bottom:636.106412pt;}
.y65{bottom:645.226409pt;}
.y8d{bottom:646.986408pt;}
.y8{bottom:654.186405pt;}
.y39{bottom:654.506405pt;}
.yb6{bottom:660.586402pt;}
.y64{bottom:663.626401pt;}
.y8c{bottom:665.386401pt;}
.y7{bottom:670.186399pt;}
.y38{bottom:672.906398pt;}
.y63{bottom:682.026394pt;}
.y8b{bottom:683.786393pt;}
.y37{bottom:691.306390pt;}
.y62{bottom:700.426386pt;}
.y8a{bottom:702.186386pt;}
.y36{bottom:709.706383pt;}
.y61{bottom:718.826379pt;}
.y89{bottom:720.586378pt;}
.y6{bottom:721.386378pt;}
.y35{bottom:728.106375pt;}
.y60{bottom:737.226372pt;}
.y88{bottom:738.986371pt;}
.y5{bottom:739.786371pt;}
.yc5{bottom:743.466369pt;}
.y34{bottom:746.506368pt;}
.ydd{bottom:755.466364pt;}
.y5f{bottom:755.626364pt;}
.y87{bottom:757.386364pt;}
.y4{bottom:758.186363pt;}
.y33{bottom:764.906361pt;}
.yb5{bottom:770.986358pt;}
.ydc{bottom:772.266358pt;}
.y5e{bottom:774.026357pt;}
.y86{bottom:775.786356pt;}
.y3{bottom:776.746356pt;}
.y32{bottom:783.306353pt;}
.ydb{bottom:789.066351pt;}
.y5d{bottom:792.426350pt;}
.y31{bottom:801.706346pt;}
.yda{bottom:806.026344pt;}
.y5c{bottom:810.826342pt;}
.yc4{bottom:817.066340pt;}
.y30{bottom:820.106339pt;}
.yd9{bottom:822.826338pt;}
.y5b{bottom:829.226335pt;}
.y2{bottom:836.906332pt;}
.y2f{bottom:838.506331pt;}
.yd8{bottom:839.786331pt;}
.y5a{bottom:847.626328pt;}
.yd7{bottom:856.586324pt;}
.y2e{bottom:856.906324pt;}
.y59{bottom:866.026320pt;}
.yd6{bottom:873.386317pt;}
.y85{bottom:875.306317pt;}
.y1{bottom:883.466313pt;}
.y2d{bottom:884.426313pt;}
.y84{bottom:893.706309pt;}
.y58{bottom:902.826306pt;}
.yb4{bottom:912.106302pt;}
.yd5{bottom:915.146301pt;}
.y57{bottom:921.226298pt;}
.yb3{bottom:930.506294pt;}
.y2c{bottom:939.626291pt;}
.ya5{bottom:945.866288pt;}
.yb2{bottom:948.906287pt;}
.y2b{bottom:958.026283pt;}
.y27{bottom:960.266283pt;}
.y28{bottom:960.906282pt;}
.yb1{bottom:967.306280pt;}
.y26{bottom:975.466276pt;}
.y56{bottom:976.426276pt;}
.yb0{bottom:985.706272pt;}
.y2a{bottom:994.826269pt;}
.y25{bottom:995.786268pt;}
.yaf{bottom:1004.106265pt;}
.y29{bottom:1013.226261pt;}
.h13{height:17.920000pt;}
.h10{height:21.135352pt;}
.hf{height:25.538550pt;}
.h9{height:27.839989pt;}
.h8{height:30.633738pt;}
.he{height:32.578737pt;}
.hd{height:36.468735pt;}
.h11{height:36.546545pt;}
.h6{height:38.748145pt;}
.h5{height:40.156144pt;}
.ha{height:40.509424pt;}
.h14{height:41.981423pt;}
.h12{height:43.711983pt;}
.h4{height:44.031982pt;}
.hc{height:44.734982pt;}
.h7{height:45.631982pt;}
.h3{height:49.282540pt;}
.h2{height:51.143020pt;}
.h1{height:60.690536pt;}
.hb{height:81.203718pt;}
.h0{height:1122.666667pt;}
.w1{width:0.320000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x19{left:112.480845pt;}
.x1{left:113.599955pt;}
.x10{left:117.439953pt;}
.xb{left:119.679952pt;}
.x1a{left:133.600369pt;}
.x5{left:145.599984pt;}
.x2{left:158.719937pt;}
.x6{left:189.119299pt;}
.x9{left:198.879920pt;}
.xa{left:203.519919pt;}
.xc{left:210.399916pt;}
.xd{left:215.039914pt;}
.xe{left:263.679895pt;}
.xf{left:268.319893pt;}
.x13{left:281.119888pt;}
.x14{left:285.759886pt;}
.x1c{left:380.959848pt;}
.x3{left:386.079846pt;}
.x4{left:454.399818pt;}
.x11{left:468.959812pt;}
.x12{left:473.599811pt;}
.x17{left:494.879802pt;}
.x18{left:499.679800pt;}
.x7{left:507.679797pt;}
.x8{left:509.919796pt;}
.x15{left:649.759740pt;}
.x16{left:654.399738pt;}
.x1b{left:677.600000pt;}
}




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