
    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_a7ca9fba2eacd32a68db49bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_3aeb11f978c034ddb9922541.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_61f41cd3714550ed89146c52.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954102;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_6167bc28e04026de444a7f28.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_f0cf0620af968cc49e3e1005.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_9b046116ed120e43a697ba5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_332e0c246215bd3c8985db37.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_613df6f8a75abf20af5584da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_cd903d1f1e097cf85052e8f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;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_afc9dd85d0aa82e1b7cd8c27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.816406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_700163e3a8ddc972a3b1d348.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972656;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:ffc;src:url('chunks/assets/font_08f44d12a2231d7b5e8b3a60.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.999993px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.036035px;}
.ls3{letter-spacing:0.174199px;}
.ls0{letter-spacing:0.215860px;}
.ls2{letter-spacing:0.216000px;}
.lsc{letter-spacing:10.871996px;}
.ls7{letter-spacing:11.933995px;}
.ls8{letter-spacing:20.230552px;}
.ls9{letter-spacing:23.574951px;}
.lsa{letter-spacing:24.294950px;}
.ls5{letter-spacing:24.893990px;}
.ls6{letter-spacing:27.174949px;}
.lsd{letter-spacing:34.631986px;}
.lsb{letter-spacing:38.694945px;}
.lse{letter-spacing:45.431982px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-35.999986px;}
.ws5{word-spacing:-28.977828px;}
.ws3{word-spacing:-23.078151px;}
.ws12{word-spacing:-21.396951px;}
.ws13{word-spacing:-21.059992px;}
.ws7{word-spacing:-19.038232px;}
.wsf{word-spacing:-18.287993px;}
.ws1{word-spacing:-17.999993px;}
.ws4{word-spacing:-17.351993px;}
.ws9{word-spacing:-16.487993px;}
.ws0{word-spacing:-16.487853px;}
.ws8{word-spacing:-16.271993px;}
.wse{word-spacing:-14.402154px;}
.wsa{word-spacing:-12.203995px;}
.wsd{word-spacing:-9.717116px;}
.ws11{word-spacing:-1.762422px;}
.ws10{word-spacing:-1.727773px;}
.ws6{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.386708px;}
.ws14{word-spacing:0.743750px;}
._b{margin-left:-7.184877px;}
._9{margin-left:-5.759998px;}
._8{margin-left:-4.751998px;}
._5{margin-left:-3.743999px;}
._2{margin-left:-2.150512px;}
._3{margin-left:-1.057763px;}
._1{width:1.812920px;}
._7{width:3.704417px;}
._4{width:9.841588px;}
._a{width:13.751040px;}
._0{width:14.966761px;}
._6{width:38.138708px;}
.fc3{color:transparent;}
.fc2{color:rgb(99,37,35);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.319984px;}
.fs3{font-size:48.239981px;}
.fs5{font-size:53.999978px;}
.fs7{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs1{font-size:95.759962px;}
.fs6{font-size:107.999957px;}
.fs4{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y2{bottom:37.739985px;}
.yfb{bottom:191.639923px;}
.yd{bottom:199.019920px;}
.yce{bottom:211.259915px;}
.y23{bottom:214.859914px;}
.yb8{bottom:218.099913px;}
.ye4{bottom:221.339911px;}
.yc{bottom:224.219910px;}
.ycd{bottom:229.259908px;}
.y5c{bottom:229.439908px;}
.y92{bottom:233.219907px;}
.yad{bottom:235.559906px;}
.ye3{bottom:242.939903px;}
.y17{bottom:244.739902px;}
.y9f{bottom:248.339901px;}
.y91{bottom:254.819898px;}
.ye2{bottom:264.539894px;}
.ycc{bottom:265.259894px;}
.y22{bottom:267.419893px;}
.y7e{bottom:269.399892px;}
.y9e{bottom:269.939892px;}
.y5b{bottom:273.179891px;}
.y71{bottom:274.799890px;}
.y90{bottom:276.419889px;}
.ycb{bottom:283.259887px;}
.ye1{bottom:286.139886px;}
.y16{bottom:287.939885px;}
.y70{bottom:290.999884px;}
.y9d{bottom:291.539883px;}
.y5a{bottom:294.779882px;}
.y6f{bottom:307.199877px;}
.y7d{bottom:311.159876px;}
.y59{bottom:316.379873px;}
.y8f{bottom:319.619872px;}
.yac{bottom:321.959871px;}
.y6e{bottom:323.399871px;}
.ye0{bottom:329.339868px;}
.y15{bottom:331.139868px;}
.y9c{bottom:334.739866px;}
.yca{bottom:337.259865px;}
.y58{bottom:337.979865px;}
.y44{bottom:339.419864px;}
.y6d{bottom:339.599864px;}
.y8e{bottom:341.219864px;}
.yab{bottom:343.559863px;}
.yf1{bottom:345.719862px;}
.y7c{bottom:347.159861px;}
.ydf{bottom:350.939860px;}
.y2f{bottom:354.719858px;}
.yc9{bottom:355.259858px;}
.y6c{bottom:355.799858px;}
.y9b{bottom:356.339857px;}
.y57{bottom:359.579856px;}
.y43{bottom:361.019856px;}
.y8d{bottom:362.819855px;}
.y6b{bottom:371.999851px;}
.yde{bottom:372.539851px;}
.y14{bottom:374.339850px;}
.y9a{bottom:377.939849px;}
.y56{bottom:381.179848px;}
.y7b{bottom:383.159847px;}
.y8c{bottom:384.419846px;}
.yaa{bottom:386.759845px;}
.y6a{bottom:388.199845px;}
.yf0{bottom:388.919844px;}
.y2e{bottom:397.379841px;}
.y7a{bottom:401.159840px;}
.y55{bottom:402.779839px;}
.yc8{bottom:403.139839px;}
.y69{bottom:404.399838px;}
.ya9{bottom:408.359837px;}
.yf{bottom:411.239836px;}
.y3a{bottom:415.379834px;}
.ydd{bottom:415.739834px;}
.y13{bottom:417.539833px;}
.y2d{bottom:418.979832px;}
.y68{bottom:420.599832px;}
.y99{bottom:421.139832px;}
.y54{bottom:424.379830px;}
.y8b{bottom:427.619829px;}
.yef{bottom:432.119827px;}
.yb2{bottom:434.999826px;}
.y67{bottom:436.799825px;}
.y2c{bottom:440.579824px;}
.y98{bottom:442.739823px;}
.y8a{bottom:449.219820px;}
.ya8{bottom:452.279819px;}
.yee{bottom:453.719819px;}
.y79{bottom:455.159818px;}
.ydc{bottom:458.939816px;}
.y12{bottom:460.739816px;}
.y32{bottom:462.719815px;}
.yb1{bottom:463.799814px;}
.y97{bottom:464.339814px;}
.y39{bottom:465.779814px;}
.yc7{bottom:475.139810px;}
.y66{bottom:475.319810px;}
.ya7{bottom:477.479809px;}
.y53{bottom:478.919808px;}
.ydb{bottom:480.539808px;}
.y31{bottom:480.899808px;}
.y11{bottom:482.339807px;}
.y96{bottom:485.939806px;}
.y38{bottom:490.979804px;}
.y78{bottom:491.159804px;}
.y65{bottom:491.519803px;}
.yb0{bottom:492.599803px;}
.y89{bottom:492.959803px;}
.yed{bottom:496.919801px;}
.y42{bottom:499.259800px;}
.yda{bottom:502.139799px;}
.ya6{bottom:502.679799px;}
.y95{bottom:507.539797px;}
.y64{bottom:507.719797px;}
.yc6{bottom:511.139796px;}
.y33{bottom:512.579795px;}
.y88{bottom:514.019794px;}
.y52{bottom:514.559794px;}
.y37{bottom:516.179794px;}
.y41{bottom:520.859792px;}
.yaf{bottom:521.399791px;}
.yfa{bottom:523.019791px;}
.y87{bottom:535.619786px;}
.yc5{bottom:547.139781px;}
.yb{bottom:708.959716px;}
.y63{bottom:713.099715px;}
.y76{bottom:721.019712px;}
.y74{bottom:726.599709px;}
.yd9{bottom:727.139709px;}
.yc4{bottom:728.039709px;}
.y2b{bottom:731.819707px;}
.y51{bottom:736.859705px;}
.yc3{bottom:744.239702px;}
.ya{bottom:752.159699px;}
.yd8{bottom:752.339699px;}
.y2a{bottom:753.419699px;}
.y75{bottom:757.199697px;}
.y73{bottom:762.779695px;}
.y9{bottom:773.759690px;}
.y29{bottom:775.019690px;}
.y50{bottom:780.059688px;}
.y28{bottom:796.619681px;}
.y72{bottom:797.699681px;}
.y4f{bottom:801.659679px;}
.y40{bottom:803.279679px;}
.y62{bottom:807.059677px;}
.y21{bottom:812.819675px;}
.y8{bottom:813.359675px;}
.yd7{bottom:814.799674px;}
.y27{bottom:818.219673px;}
.yc2{bottom:820.199672px;}
.yec{bottom:827.039669px;}
.y3f{bottom:828.479669px;}
.yf9{bottom:839.639664px;}
.yc1{bottom:841.799663px;}
.y4e{bottom:844.859662px;}
.yeb{bottom:845.039662px;}
.y30{bottom:854.399658px;}
.y20{bottom:856.019658px;}
.yd6{bottom:857.999657px;}
.y26{bottom:861.059656px;}
.yc0{bottom:863.399655px;}
.yf8{bottom:864.839654px;}
.y4d{bottom:866.459653px;}
.y7{bottom:867.359653px;}
.y86{bottom:872.579651px;}
.y1f{bottom:877.619649px;}
.y3e{bottom:878.879648px;}
.yd5{bottom:879.599648px;}
.yea{bottom:881.039648px;}
.y4c{bottom:888.059645px;}
.y6{bottom:888.959644px;}
.yf7{bottom:889.499644px;}
.y85{bottom:894.179642px;}
.y1e{bottom:899.219640px;}
.yd4{bottom:901.199640px;}
.ybf{bottom:906.599637px;}
.y4b{bottom:909.659636px;}
.yf6{bottom:914.699634px;}
.y84{bottom:915.779634px;}
.ye9{bottom:917.039633px;}
.y1d{bottom:920.819632px;}
.y61{bottom:920.999632px;}
.ybe{bottom:928.199629px;}
.y5{bottom:932.159627px;}
.y10{bottom:937.019625px;}
.y83{bottom:937.379625px;}
.yb7{bottom:941.339623px;}
.y1c{bottom:942.419623px;}
.yd3{bottom:944.399622px;}
.ybd{bottom:949.799620px;}
.ye{bottom:951.419619px;}
.ye8{bottom:953.039619px;}
.y3d{bottom:954.299618px;}
.y60{bottom:956.999617px;}
.y4a{bottom:957.719617px;}
.y82{bottom:958.979616px;}
.ya5{bottom:960.239616px;}
.y1b{bottom:964.019614px;}
.yf5{bottom:965.639614px;}
.yd2{bottom:965.999614px;}
.yb6{bottom:970.139612px;}
.ye7{bottom:971.039612px;}
.ybc{bottom:971.399611px;}
.y25{bottom:973.199611px;}
.ya4{bottom:978.239609px;}
.y49{bottom:979.319608px;}
.y81{bottom:980.399608px;}
.y3c{bottom:983.099607px;}
.y4{bottom:984.179606px;}
.y1a{bottom:985.619606px;}
.yd1{bottom:987.599605px;}
.yf4{bottom:990.839604px;}
.y36{bottom:991.559603px;}
.y5f{bottom:992.639603px;}
.ybb{bottom:992.999603px;}
.ya3{bottom:996.239602px;}
.yb5{bottom:998.939600px;}
.y48{bottom:1000.919600px;}
.y80{bottom:1002.179599px;}
.y24{bottom:1005.599598px;}
.ye6{bottom:1007.039597px;}
.y19{bottom:1007.219597px;}
.y3{bottom:1012.979595px;}
.yf3{bottom:1015.499594px;}
.y35{bottom:1016.759593px;}
.yae{bottom:1021.439591px;}
.y47{bottom:1022.519591px;}
.ye5{bottom:1025.039590px;}
.y5e{bottom:1027.199589px;}
.yb4{bottom:1027.739589px;}
.yd0{bottom:1030.799588px;}
.ya2{bottom:1032.239587px;}
.y94{bottom:1033.319587px;}
.yba{bottom:1036.199586px;}
.y34{bottom:1041.959583px;}
.y46{bottom:1044.119582px;}
.y3b{bottom:1045.019582px;}
.y7f{bottom:1045.379582px;}
.ya1{bottom:1050.239580px;}
.y18{bottom:1050.419580px;}
.ycf{bottom:1052.399579px;}
.y93{bottom:1054.919578px;}
.yb3{bottom:1056.539577px;}
.yb9{bottom:1057.799577px;}
.y45{bottom:1065.719574px;}
.yf2{bottom:1066.619573px;}
.y5d{bottom:1067.519573px;}
.y77{bottom:1067.879573px;}
.ya0{bottom:1068.239573px;}
.y1{bottom:1213.499515px;}
.hb{height:34.625377px;}
.h6{height:36.486196px;}
.ha{height:38.759750px;}
.h15{height:40.842757px;}
.h12{height:42.894123px;}
.h16{height:43.185920px;}
.h17{height:43.614123px;}
.h13{height:45.199318px;}
.h3{height:47.988262px;}
.h19{height:48.495918px;}
.h11{height:49.218730px;}
.h4{height:50.132792px;}
.h1{height:51.679667px;}
.h8{height:54.457009px;}
.h10{height:57.585914px;}
.h18{height:57.656227px;}
.hd{height:60.465210px;}
.h5{height:63.714701px;}
.h2{height:63.824389px;}
.he{height:65.460911px;}
.hc{height:68.733957px;}
.h14{height:69.201535px;}
.h7{height:72.427823px;}
.hf{height:81.685514px;}
.h1a{height:84.898091px;}
.h9{height:90.943206px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x29{left:192.059923px;}
.x32{left:197.819921px;}
.x15{left:200.339920px;}
.x6{left:202.859919px;}
.x1b{left:204.839918px;}
.x34{left:207.179917px;}
.x2b{left:208.619917px;}
.x8{left:209.699916px;}
.x2a{left:213.299915px;}
.x18{left:214.739914px;}
.x12{left:216.899913px;}
.x30{left:219.059912px;}
.x37{left:220.319912px;}
.x2e{left:221.387911px;}
.x33{left:222.659911px;}
.x2d{left:223.907910px;}
.x1d{left:226.439909px;}
.x36{left:227.519909px;}
.x5{left:229.319908px;}
.x1c{left:231.839907px;}
.x9{left:235.439906px;}
.x14{left:236.519905px;}
.xb{left:240.299904px;}
.x11{left:244.979902px;}
.x16{left:250.739900px;}
.xa{left:255.599898px;}
.x22{left:256.859897px;}
.x19{left:259.019896px;}
.x20{left:264.779894px;}
.x28{left:265.859894px;}
.xc{left:267.299893px;}
.x35{left:269.819892px;}
.xe{left:276.119890px;}
.x13{left:278.459889px;}
.x1f{left:280.979888px;}
.x31{left:288.179885px;}
.x1a{left:299.339880px;}
.x4{left:307.248177px;}
.x2f{left:320.399872px;}
.x2c{left:326.699869px;}
.x3{left:331.379867px;}
.xd{left:341.099864px;}
.xf{left:353.699859px;}
.x38{left:392.939843px;}
.x21{left:411.839835px;}
.x23{left:447.839821px;}
.x26{left:454.679818px;}
.x27{left:456.299817px;}
.x24{left:457.739817px;}
.x17{left:499.139800px;}
.x7{left:504.899798px;}
.x10{left:544.499782px;}
.x25{left:553.679779px;}
.x1{left:775.799690px;}
.x1e{left:835.739666px;}
.x2{left:844.919662px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.999994pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.032031pt;}
.ls3{letter-spacing:0.154844pt;}
.ls0{letter-spacing:0.191875pt;}
.ls2{letter-spacing:0.192000pt;}
.lsc{letter-spacing:9.663996pt;}
.ls7{letter-spacing:10.607996pt;}
.ls8{letter-spacing:17.982713pt;}
.ls9{letter-spacing:20.955512pt;}
.lsa{letter-spacing:21.595511pt;}
.ls5{letter-spacing:22.127991pt;}
.ls6{letter-spacing:24.155510pt;}
.lsd{letter-spacing:30.783988pt;}
.lsb{letter-spacing:34.395506pt;}
.lse{letter-spacing:40.383984pt;}
.wsb{word-spacing:-31.999987pt;}
.ws5{word-spacing:-25.758070pt;}
.ws3{word-spacing:-20.513912pt;}
.ws12{word-spacing:-19.019512pt;}
.ws13{word-spacing:-18.719993pt;}
.ws7{word-spacing:-16.922873pt;}
.wsf{word-spacing:-16.255993pt;}
.ws1{word-spacing:-15.999994pt;}
.ws4{word-spacing:-15.423994pt;}
.ws9{word-spacing:-14.655994pt;}
.ws0{word-spacing:-14.655869pt;}
.ws8{word-spacing:-14.463994pt;}
.wse{word-spacing:-12.801915pt;}
.wsa{word-spacing:-10.847996pt;}
.wsd{word-spacing:-8.637437pt;}
.ws11{word-spacing:-1.566597pt;}
.ws10{word-spacing:-1.535798pt;}
.ws6{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.343740pt;}
.ws14{word-spacing:0.661111pt;}
._b{margin-left:-6.386558pt;}
._9{margin-left:-5.119998pt;}
._8{margin-left:-4.223998pt;}
._5{margin-left:-3.327999pt;}
._2{margin-left:-1.911566pt;}
._3{margin-left:-0.940233pt;}
._1{width:1.611484pt;}
._7{width:3.292815pt;}
._4{width:8.748078pt;}
._a{width:12.223147pt;}
._0{width:13.303788pt;}
._6{width:33.901073pt;}
.fs8{font-size:35.839986pt;}
.fs3{font-size:42.879983pt;}
.fs5{font-size:47.999981pt;}
.fs7{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs1{font-size:85.119966pt;}
.fs6{font-size:95.999962pt;}
.fs4{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.546653pt;}
.yfb{bottom:170.346599pt;}
.yd{bottom:176.906596pt;}
.yce{bottom:187.786592pt;}
.y23{bottom:190.986590pt;}
.yb8{bottom:193.866589pt;}
.ye4{bottom:196.746588pt;}
.yc{bottom:199.306587pt;}
.ycd{bottom:203.786585pt;}
.y5c{bottom:203.946585pt;}
.y92{bottom:207.306584pt;}
.yad{bottom:209.386583pt;}
.ye3{bottom:215.946580pt;}
.y17{bottom:217.546580pt;}
.y9f{bottom:220.746578pt;}
.y91{bottom:226.506576pt;}
.ye2{bottom:235.146573pt;}
.ycc{bottom:235.786572pt;}
.y22{bottom:237.706572pt;}
.y7e{bottom:239.466571pt;}
.y9e{bottom:239.946571pt;}
.y5b{bottom:242.826570pt;}
.y71{bottom:244.266569pt;}
.y90{bottom:245.706568pt;}
.ycb{bottom:251.786566pt;}
.ye1{bottom:254.346565pt;}
.y16{bottom:255.946564pt;}
.y70{bottom:258.666563pt;}
.y9d{bottom:259.146563pt;}
.y5a{bottom:262.026562pt;}
.y6f{bottom:273.066557pt;}
.y7d{bottom:276.586556pt;}
.y59{bottom:281.226554pt;}
.y8f{bottom:284.106553pt;}
.yac{bottom:286.186552pt;}
.y6e{bottom:287.466552pt;}
.ye0{bottom:292.746550pt;}
.y15{bottom:294.346549pt;}
.y9c{bottom:297.546548pt;}
.yca{bottom:299.786547pt;}
.y58{bottom:300.426546pt;}
.y44{bottom:301.706546pt;}
.y6d{bottom:301.866546pt;}
.y8e{bottom:303.306545pt;}
.yab{bottom:305.386545pt;}
.yf1{bottom:307.306544pt;}
.y7c{bottom:308.586543pt;}
.ydf{bottom:311.946542pt;}
.y2f{bottom:315.306541pt;}
.yc9{bottom:315.786540pt;}
.y6c{bottom:316.266540pt;}
.y9b{bottom:316.746540pt;}
.y57{bottom:319.626539pt;}
.y43{bottom:320.906538pt;}
.y8d{bottom:322.506538pt;}
.y6b{bottom:330.666534pt;}
.yde{bottom:331.146534pt;}
.y14{bottom:332.746534pt;}
.y9a{bottom:335.946532pt;}
.y56{bottom:338.826531pt;}
.y7b{bottom:340.586530pt;}
.y8c{bottom:341.706530pt;}
.yaa{bottom:343.786529pt;}
.y6a{bottom:345.066529pt;}
.yf0{bottom:345.706528pt;}
.y2e{bottom:353.226525pt;}
.y7a{bottom:356.586524pt;}
.y55{bottom:358.026523pt;}
.yc8{bottom:358.346523pt;}
.y69{bottom:359.466523pt;}
.ya9{bottom:362.986521pt;}
.yf{bottom:365.546520pt;}
.y3a{bottom:369.226519pt;}
.ydd{bottom:369.546519pt;}
.y13{bottom:371.146518pt;}
.y2d{bottom:372.426518pt;}
.y68{bottom:373.866517pt;}
.y99{bottom:374.346517pt;}
.y54{bottom:377.226516pt;}
.y8b{bottom:380.106515pt;}
.yef{bottom:384.106513pt;}
.yb2{bottom:386.666512pt;}
.y67{bottom:388.266511pt;}
.y2c{bottom:391.626510pt;}
.y98{bottom:393.546509pt;}
.y8a{bottom:399.306507pt;}
.ya8{bottom:402.026506pt;}
.yee{bottom:403.306505pt;}
.y79{bottom:404.586505pt;}
.ydc{bottom:407.946503pt;}
.y12{bottom:409.546503pt;}
.y32{bottom:411.306502pt;}
.yb1{bottom:412.266502pt;}
.y97{bottom:412.746502pt;}
.y39{bottom:414.026501pt;}
.yc7{bottom:422.346498pt;}
.y66{bottom:422.506498pt;}
.ya7{bottom:424.426497pt;}
.y53{bottom:425.706496pt;}
.ydb{bottom:427.146496pt;}
.y31{bottom:427.466496pt;}
.y11{bottom:428.746495pt;}
.y96{bottom:431.946494pt;}
.y38{bottom:436.426492pt;}
.y78{bottom:436.586492pt;}
.y65{bottom:436.906492pt;}
.yb0{bottom:437.866492pt;}
.y89{bottom:438.186491pt;}
.yed{bottom:441.706490pt;}
.y42{bottom:443.786489pt;}
.yda{bottom:446.346488pt;}
.ya6{bottom:446.826488pt;}
.y95{bottom:451.146486pt;}
.y64{bottom:451.306486pt;}
.yc6{bottom:454.346485pt;}
.y33{bottom:455.626484pt;}
.y88{bottom:456.906484pt;}
.y52{bottom:457.386484pt;}
.y37{bottom:458.826483pt;}
.y41{bottom:462.986481pt;}
.yaf{bottom:463.466481pt;}
.yfa{bottom:464.906481pt;}
.y87{bottom:476.106476pt;}
.yc5{bottom:486.346472pt;}
.yb{bottom:630.186415pt;}
.y63{bottom:633.866413pt;}
.y76{bottom:640.906410pt;}
.y74{bottom:645.866408pt;}
.yd9{bottom:646.346408pt;}
.yc4{bottom:647.146408pt;}
.y2b{bottom:650.506406pt;}
.y51{bottom:654.986405pt;}
.yc3{bottom:661.546402pt;}
.ya{bottom:668.586399pt;}
.yd8{bottom:668.746399pt;}
.y2a{bottom:669.706399pt;}
.y75{bottom:673.066397pt;}
.y73{bottom:678.026395pt;}
.y9{bottom:687.786392pt;}
.y29{bottom:688.906391pt;}
.y50{bottom:693.386389pt;}
.y28{bottom:708.106383pt;}
.y72{bottom:709.066383pt;}
.y4f{bottom:712.586382pt;}
.y40{bottom:714.026381pt;}
.y62{bottom:717.386380pt;}
.y21{bottom:722.506378pt;}
.y8{bottom:722.986377pt;}
.yd7{bottom:724.266377pt;}
.y27{bottom:727.306376pt;}
.yc2{bottom:729.066375pt;}
.yec{bottom:735.146373pt;}
.y3f{bottom:736.426372pt;}
.yf9{bottom:746.346368pt;}
.yc1{bottom:748.266367pt;}
.y4e{bottom:750.986366pt;}
.yeb{bottom:751.146366pt;}
.y30{bottom:759.466363pt;}
.y20{bottom:760.906362pt;}
.yd6{bottom:762.666362pt;}
.y26{bottom:765.386361pt;}
.yc0{bottom:767.466360pt;}
.yf8{bottom:768.746359pt;}
.y4d{bottom:770.186359pt;}
.y7{bottom:770.986358pt;}
.y86{bottom:775.626356pt;}
.y1f{bottom:780.106355pt;}
.y3e{bottom:781.226354pt;}
.yd5{bottom:781.866354pt;}
.yea{bottom:783.146353pt;}
.y4c{bottom:789.386351pt;}
.y6{bottom:790.186351pt;}
.yf7{bottom:790.666350pt;}
.y85{bottom:794.826349pt;}
.y1e{bottom:799.306347pt;}
.yd4{bottom:801.066346pt;}
.ybf{bottom:805.866344pt;}
.y4b{bottom:808.586343pt;}
.yf6{bottom:813.066341pt;}
.y84{bottom:814.026341pt;}
.ye9{bottom:815.146341pt;}
.y1d{bottom:818.506339pt;}
.y61{bottom:818.666339pt;}
.ybe{bottom:825.066337pt;}
.y5{bottom:828.586335pt;}
.y10{bottom:832.906334pt;}
.y83{bottom:833.226333pt;}
.yb7{bottom:836.746332pt;}
.y1c{bottom:837.706332pt;}
.yd3{bottom:839.466331pt;}
.ybd{bottom:844.266329pt;}
.ye{bottom:845.706328pt;}
.ye8{bottom:847.146328pt;}
.y3d{bottom:848.266327pt;}
.y60{bottom:850.666326pt;}
.y4a{bottom:851.306326pt;}
.y82{bottom:852.426326pt;}
.ya5{bottom:853.546325pt;}
.y1b{bottom:856.906324pt;}
.yf5{bottom:858.346323pt;}
.yd2{bottom:858.666323pt;}
.yb6{bottom:862.346322pt;}
.ye7{bottom:863.146321pt;}
.ybc{bottom:863.466321pt;}
.y25{bottom:865.066321pt;}
.ya4{bottom:869.546319pt;}
.y49{bottom:870.506318pt;}
.y81{bottom:871.466318pt;}
.y3c{bottom:873.866317pt;}
.y4{bottom:874.826317pt;}
.y1a{bottom:876.106316pt;}
.yd1{bottom:877.866316pt;}
.yf4{bottom:880.746314pt;}
.y36{bottom:881.386314pt;}
.y5f{bottom:882.346314pt;}
.ybb{bottom:882.666314pt;}
.ya3{bottom:885.546312pt;}
.yb5{bottom:887.946311pt;}
.y48{bottom:889.706311pt;}
.y80{bottom:890.826310pt;}
.y24{bottom:893.866309pt;}
.ye6{bottom:895.146309pt;}
.y19{bottom:895.306309pt;}
.y3{bottom:900.426306pt;}
.yf3{bottom:902.666306pt;}
.y35{bottom:903.786305pt;}
.yae{bottom:907.946303pt;}
.y47{bottom:908.906303pt;}
.ye5{bottom:911.146302pt;}
.y5e{bottom:913.066301pt;}
.yb4{bottom:913.546301pt;}
.yd0{bottom:916.266300pt;}
.ya2{bottom:917.546300pt;}
.y94{bottom:918.506299pt;}
.yba{bottom:921.066298pt;}
.y34{bottom:926.186296pt;}
.y46{bottom:928.106295pt;}
.y3b{bottom:928.906295pt;}
.y7f{bottom:929.226295pt;}
.ya1{bottom:933.546293pt;}
.y18{bottom:933.706293pt;}
.ycf{bottom:935.466292pt;}
.y93{bottom:937.706292pt;}
.yb3{bottom:939.146291pt;}
.yb9{bottom:940.266291pt;}
.y45{bottom:947.306288pt;}
.yf2{bottom:948.106287pt;}
.y5d{bottom:948.906287pt;}
.y77{bottom:949.226287pt;}
.ya0{bottom:949.546287pt;}
.y1{bottom:1078.666235pt;}
.hb{height:30.778113pt;}
.h6{height:32.432175pt;}
.ha{height:34.453111pt;}
.h15{height:36.304673pt;}
.h12{height:38.128110pt;}
.h16{height:38.387485pt;}
.h17{height:38.768109pt;}
.h13{height:40.177171pt;}
.h3{height:42.656233pt;}
.h19{height:43.107483pt;}
.h11{height:43.749982pt;}
.h4{height:44.562482pt;}
.h1{height:45.937482pt;}
.h8{height:48.406231pt;}
.h10{height:51.187480pt;}
.h18{height:51.249979pt;}
.hd{height:53.746854pt;}
.h5{height:56.635290pt;}
.h2{height:56.732790pt;}
.he{height:58.187477pt;}
.hc{height:61.096851pt;}
.h14{height:61.512475pt;}
.h7{height:64.380287pt;}
.hf{height:72.609346pt;}
.h1a{height:75.464970pt;}
.h9{height:80.838405pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x29{left:170.719932pt;}
.x32{left:175.839930pt;}
.x15{left:178.079929pt;}
.x6{left:180.319928pt;}
.x1b{left:182.079927pt;}
.x34{left:184.159926pt;}
.x2b{left:185.439926pt;}
.x8{left:186.399925pt;}
.x2a{left:189.599924pt;}
.x18{left:190.879924pt;}
.x12{left:192.799923pt;}
.x30{left:194.719922pt;}
.x37{left:195.839922pt;}
.x2e{left:196.789255pt;}
.x33{left:197.919921pt;}
.x2d{left:199.029254pt;}
.x1d{left:201.279919pt;}
.x36{left:202.239919pt;}
.x5{left:203.839918pt;}
.x1c{left:206.079918pt;}
.x9{left:209.279916pt;}
.x14{left:210.239916pt;}
.xb{left:213.599915pt;}
.x11{left:217.759913pt;}
.x16{left:222.879911pt;}
.xa{left:227.199909pt;}
.x22{left:228.319909pt;}
.x19{left:230.239908pt;}
.x20{left:235.359906pt;}
.x28{left:236.319905pt;}
.xc{left:237.599905pt;}
.x35{left:239.839904pt;}
.xe{left:245.439902pt;}
.x13{left:247.519901pt;}
.x1f{left:249.759900pt;}
.x31{left:256.159898pt;}
.x1a{left:266.079894pt;}
.x4{left:273.109491pt;}
.x2f{left:284.799886pt;}
.x2c{left:290.399884pt;}
.x3{left:294.559882pt;}
.xd{left:303.199879pt;}
.xf{left:314.399874pt;}
.x38{left:349.279860pt;}
.x21{left:366.079854pt;}
.x23{left:398.079841pt;}
.x26{left:404.159838pt;}
.x27{left:405.599838pt;}
.x24{left:406.879837pt;}
.x17{left:443.679823pt;}
.x7{left:448.799820pt;}
.x10{left:483.999806pt;}
.x25{left:492.159803pt;}
.x1{left:689.599724pt;}
.x1e{left:742.879703pt;}
.x2{left:751.039700pt;}
}




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