
    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_8fa1a331ff4b4e0d92e7943f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974609;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_e26e8d84c19535c8f7212e70.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_612d612054db933748cc207f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_d1c8723bd1de9136b77bc9cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.950000;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_91cc77dfb887104d38d01e52.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4a5c662b72c4c555fd02691.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904000;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_144ced145a3312b513c81845.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_777e65c62454f74ab9917975.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_ee4a6a987bda11d946bcf4a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.890000;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;}
.m5{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);}
.m1{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);}
.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);}
.m2{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);}
.m4{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);}
.m3{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;}
.v1{vertical-align:27.359989px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010620px;}
.ls2{letter-spacing:0.021238px;}
.ls3{letter-spacing:0.021282px;}
.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;}
}
.ws3{word-spacing:-17.999993px;}
.ws0{word-spacing:-17.614073px;}
.ws1{word-spacing:-15.011994px;}
.ws4{word-spacing:-14.399994px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-10.098548px;}
._b{margin-left:-8.996514px;}
._9{margin-left:-7.312988px;}
._4{margin-left:-6.240248px;}
._5{margin-left:-4.551948px;}
._2{margin-left:-3.392105px;}
._0{margin-left:-1.568491px;}
._1{width:1.329147px;}
._3{width:2.472317px;}
._6{width:3.767168px;}
._c{width:5.019647px;}
._f{width:6.379074px;}
._e{width:7.605709px;}
._d{width:9.551895px;}
._10{width:10.610402px;}
._12{width:12.504558px;}
._15{width:13.779102px;}
._13{width:16.447330px;}
._11{width:22.269402px;}
._18{width:1454.171418px;}
._1a{width:1457.771417px;}
._19{width:1464.257414px;}
._17{width:1478.663409px;}
._a{width:1480.823408px;}
._14{width:1482.263407px;}
._16{width:1483.709407px;}
._8{width:1488.029405px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:53.999978px;}
.fs7{font-size:57.599977px;}
.fs2{font-size:63.359975px;}
.fs6{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs1{font-size:89.999964px;}
.fs0{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y38{bottom:75.900270px;}
.yb{bottom:118.740253px;}
.yb7{bottom:120.539952px;}
.y37{bottom:122.699951px;}
.yd9{bottom:128.999948px;}
.ycc{bottom:133.679947px;}
.ya{bottom:134.220246px;}
.yc1{bottom:135.839946px;}
.yb6{bottom:141.239944px;}
.yd3{bottom:144.299942px;}
.y9{bottom:149.700240px;}
.y36{bottom:152.399939px;}
.yd8{bottom:158.699937px;}
.y9c{bottom:160.499936px;}
.yb5{bottom:161.939935px;}
.ycb{bottom:163.379935px;}
.y9f{bottom:165.359934px;}
.yc0{bottom:165.539934px;}
.yf7{bottom:171.839931px;}
.yd2{bottom:173.999930px;}
.y9b{bottom:181.199928px;}
.y35{bottom:182.099927px;}
.yb4{bottom:182.639927px;}
.yd7{bottom:188.399925px;}
.yca{bottom:193.079923px;}
.ybf{bottom:195.239922px;}
.y7b{bottom:197.039921px;}
.yf6{bottom:201.539919px;}
.y9a{bottom:201.899919px;}
.y34{bottom:202.799919px;}
.yb3{bottom:212.339915px;}
.yd6{bottom:218.099913px;}
.yf5{bottom:222.239911px;}
.yc9{bottom:222.779911px;}
.y33{bottom:223.499911px;}
.ybe{bottom:224.939910px;}
.y7a{bottom:226.739909px;}
.yb2{bottom:242.039903px;}
.y32{bottom:244.199902px;}
.yd5{bottom:247.799901px;}
.yf4{bottom:251.939899px;}
.y99{bottom:252.299899px;}
.yc8{bottom:252.479899px;}
.ybd{bottom:254.639898px;}
.y79{bottom:256.439897px;}
.yb1{bottom:262.739895px;}
.y31{bottom:264.899894px;}
.yf3{bottom:272.639891px;}
.y98{bottom:272.999891px;}
.y78{bottom:277.139889px;}
.yd4{bottom:277.499889px;}
.yc7{bottom:282.179887px;}
.yb0{bottom:283.439887px;}
.ybc{bottom:284.339886px;}
.y97{bottom:293.699883px;}
.y30{bottom:294.599882px;}
.y77{bottom:297.839881px;}
.yf2{bottom:302.339879px;}
.yaf{bottom:304.139878px;}
.yba{bottom:306.839877px;}
.ybb{bottom:314.039874px;}
.y96{bottom:314.399874px;}
.y5c{bottom:318.539873px;}
.y2f{bottom:324.299870px;}
.yae{bottom:324.839870px;}
.yf1{bottom:332.039867px;}
.y95{bottom:335.099866px;}
.yb9{bottom:336.539865px;}
.y76{bottom:339.239864px;}
.y2e{bottom:344.999862px;}
.yad{bottom:345.539862px;}
.y5b{bottom:348.239861px;}
.y94{bottom:355.799858px;}
.y75{bottom:359.939856px;}
.yf0{bottom:361.739855px;}
.y2d{bottom:365.699854px;}
.yac{bottom:366.239854px;}
.y5a{bottom:368.939852px;}
.y93{bottom:376.499849px;}
.y74{bottom:380.639848px;}
.yef{bottom:382.439847px;}
.y2c{bottom:386.399845px;}
.yab{bottom:386.939845px;}
.y59{bottom:389.639844px;}
.y92{bottom:400.619840px;}
.y73{bottom:401.339839px;}
.y2b{bottom:407.099837px;}
.y58{bottom:410.339836px;}
.yee{bottom:412.139835px;}
.yaa{bottom:416.639833px;}
.y72{bottom:422.039831px;}
.y91{bottom:424.739830px;}
.y2a{bottom:427.799829px;}
.y57{bottom:431.039828px;}
.yed{bottom:432.839827px;}
.y6{bottom:435.899826px;}
.y90{bottom:445.439822px;}
.ya9{bottom:446.339821px;}
.y29{bottom:448.499821px;}
.y56{bottom:451.739819px;}
.y5{bottom:453.899818px;}
.yec{bottom:462.539815px;}
.y8f{bottom:466.139814px;}
.ya8{bottom:467.039813px;}
.y28{bottom:469.199812px;}
.y4{bottom:471.899811px;}
.y55{bottom:472.439811px;}
.y71{bottom:481.439807px;}
.ya7{bottom:487.739805px;}
.y27{bottom:489.899804px;}
.yeb{bottom:492.239803px;}
.y54{bottom:493.139803px;}
.y8e{bottom:495.839802px;}
.ya6{bottom:508.439797px;}
.y26{bottom:510.599796px;}
.y70{bottom:511.139796px;}
.yea{bottom:521.939791px;}
.y53{bottom:522.839791px;}
.y8d{bottom:525.539790px;}
.ya5{bottom:529.139788px;}
.y25{bottom:531.299787px;}
.y6f{bottom:531.839787px;}
.y8c{bottom:546.239782px;}
.ya4{bottom:549.839780px;}
.ye9{bottom:551.639779px;}
.y24{bottom:551.999779px;}
.y52{bottom:552.539779px;}
.y8b{bottom:566.939773px;}
.yb8{bottom:570.539772px;}
.ye8{bottom:572.339771px;}
.y23{bottom:572.699771px;}
.y6e{bottom:573.239771px;}
.ya3{bottom:579.539768px;}
.y51{bottom:582.239767px;}
.y8a{bottom:587.639765px;}
.y22{bottom:593.399763px;}
.ye7{bottom:602.039759px;}
.y50{bottom:602.939759px;}
.y89{bottom:608.339757px;}
.ya2{bottom:609.239756px;}
.y21{bottom:614.099754px;}
.ye6{bottom:622.739751px;}
.y4f{bottom:623.639751px;}
.y88{bottom:629.039748px;}
.y6d{bottom:632.639747px;}
.y20{bottom:634.799746px;}
.ya1{bottom:638.939744px;}
.y4e{bottom:644.339742px;}
.y9e{bottom:647.939741px;}
.ye5{bottom:652.439739px;}
.y6c{bottom:653.339739px;}
.y1f{bottom:655.499738px;}
.y87{bottom:658.739737px;}
.y4d{bottom:665.039734px;}
.ya0{bottom:668.639733px;}
.y6b{bottom:674.039730px;}
.ye4{bottom:682.139727px;}
.y1e{bottom:685.199726px;}
.y4c{bottom:685.739726px;}
.y86{bottom:688.439725px;}
.y6a{bottom:694.739722px;}
.y9d{bottom:698.339721px;}
.ye3{bottom:702.839719px;}
.y4b{bottom:706.439717px;}
.y85{bottom:709.139716px;}
.y1d{bottom:714.899714px;}
.y69{bottom:715.439714px;}
.yd1{bottom:724.439710px;}
.y84{bottom:729.839708px;}
.ye2{bottom:732.539707px;}
.y1c{bottom:735.599706px;}
.y4a{bottom:736.139706px;}
.ye1{bottom:753.239699px;}
.yd0{bottom:754.139698px;}
.y1b{bottom:756.299697px;}
.y83{bottom:759.539696px;}
.y49{bottom:765.839694px;}
.y3{bottom:767.639693px;}
.y1a{bottom:776.999689px;}
.ye0{bottom:782.939687px;}
.ycf{bottom:783.839686px;}
.y68{bottom:786.539685px;}
.y82{bottom:789.239684px;}
.y2{bottom:794.639682px;}
.y48{bottom:795.539682px;}
.y19{bottom:797.699681px;}
.yce{bottom:804.539678px;}
.y67{bottom:807.239677px;}
.ydf{bottom:812.639675px;}
.y47{bottom:816.239674px;}
.y18{bottom:818.399673px;}
.y81{bottom:818.939672px;}
.ycd{bottom:825.239670px;}
.y66{bottom:827.939669px;}
.y1{bottom:830.999668px;}
.y46{bottom:836.939665px;}
.y17{bottom:839.099664px;}
.yde{bottom:842.339663px;}
.yc6{bottom:845.939662px;}
.y65{bottom:848.639661px;}
.y45{bottom:857.639657px;}
.yc5{bottom:866.639653px;}
.y16{bottom:868.799652px;}
.y64{bottom:869.339652px;}
.ydd{bottom:872.039651px;}
.y44{bottom:878.339649px;}
.yc4{bottom:887.339645px;}
.y63{bottom:890.039644px;}
.y15{bottom:898.499641px;}
.y43{bottom:899.039640px;}
.ydc{bottom:901.739639px;}
.yc3{bottom:908.039637px;}
.y80{bottom:910.739636px;}
.y8{bottom:911.639635px;}
.y42{bottom:919.739632px;}
.ydb{bottom:922.439631px;}
.y14{bottom:928.199629px;}
.yc2{bottom:928.739629px;}
.y7f{bottom:931.439627px;}
.y41{bottom:940.439624px;}
.yda{bottom:943.139623px;}
.y62{bottom:949.439620px;}
.y7e{bottom:952.139619px;}
.y13{bottom:957.899617px;}
.y40{bottom:961.139616px;}
.y61{bottom:970.139612px;}
.y7d{bottom:972.839611px;}
.y3f{bottom:981.839607px;}
.y12{bottom:987.599605px;}
.y60{bottom:990.839604px;}
.y7c{bottom:993.539603px;}
.y3e{bottom:1002.539599px;}
.y5f{bottom:1011.539595px;}
.y11{bottom:1017.119593px;}
.y3d{bottom:1023.239591px;}
.y5e{bottom:1032.239587px;}
.y3c{bottom:1043.939582px;}
.y10{bottom:1045.019582px;}
.y5d{bottom:1052.939579px;}
.yf{bottom:1073.279571px;}
.y3b{bottom:1073.639571px;}
.ye{bottom:1102.979559px;}
.y3a{bottom:1103.339559px;}
.yd{bottom:1123.679551px;}
.y39{bottom:1133.039547px;}
.y7{bottom:1149.419540px;}
.yc{bottom:1174.079530px;}
.h6{height:39.527984px;}
.h7{height:40.816390px;}
.hb{height:45.241902px;}
.h3{height:46.949741px;}
.ha{height:49.535980px;}
.h9{height:49.823980px;}
.h8{height:50.327980px;}
.h4{height:62.421815px;}
.h5{height:63.673568px;}
.hc{height:66.988773px;}
.h2{height:68.027317px;}
.h1{height:72.568096px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:106.373357px;}
.x4{left:107.639957px;}
.x1{left:123.108251px;}
.x3{left:137.689534px;}
.xb{left:170.279859px;}
.x2{left:210.769416px;}
.x5{left:320.939872px;}
.x8{left:322.739871px;}
.x9{left:327.239869px;}
.x6{left:369.529532px;}
.xa{left:383.579847px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.319990pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009440pt;}
.ls2{letter-spacing:0.018878pt;}
.ls3{letter-spacing:0.018917pt;}
.ws3{word-spacing:-15.999994pt;}
.ws0{word-spacing:-15.656954pt;}
.ws1{word-spacing:-13.343995pt;}
.ws4{word-spacing:-12.799995pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-8.976487pt;}
._b{margin-left:-7.996901pt;}
._9{margin-left:-6.500434pt;}
._4{margin-left:-5.546887pt;}
._5{margin-left:-4.046176pt;}
._2{margin-left:-3.015205pt;}
._0{margin-left:-1.394214pt;}
._1{width:1.181464pt;}
._3{width:2.197615pt;}
._6{width:3.348593pt;}
._c{width:4.461908pt;}
._f{width:5.670288pt;}
._e{width:6.760631pt;}
._d{width:8.490573pt;}
._10{width:9.431469pt;}
._12{width:11.115163pt;}
._15{width:12.248090pt;}
._13{width:14.619849pt;}
._11{width:19.795024pt;}
._18{width:1292.596816pt;}
._1a{width:1295.796815pt;}
._19{width:1301.562146pt;}
._17{width:1314.367474pt;}
._a{width:1316.287473pt;}
._14{width:1317.567473pt;}
._16{width:1318.852806pt;}
._8{width:1322.692804pt;}
.fs4{font-size:47.999981pt;}
.fs7{font-size:51.199980pt;}
.fs2{font-size:56.319977pt;}
.fs6{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs1{font-size:79.999968pt;}
.fs0{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:67.466906pt;}
.yb{bottom:105.546891pt;}
.yb7{bottom:107.146624pt;}
.y37{bottom:109.066623pt;}
.yd9{bottom:114.666621pt;}
.ycc{bottom:118.826619pt;}
.ya{bottom:119.306886pt;}
.yc1{bottom:120.746618pt;}
.yb6{bottom:125.546616pt;}
.yd3{bottom:128.266615pt;}
.y9{bottom:133.066880pt;}
.y36{bottom:135.466612pt;}
.yd8{bottom:141.066610pt;}
.y9c{bottom:142.666610pt;}
.yb5{bottom:143.946609pt;}
.ycb{bottom:145.226609pt;}
.y9f{bottom:146.986608pt;}
.yc0{bottom:147.146608pt;}
.yf7{bottom:152.746606pt;}
.yd2{bottom:154.666605pt;}
.y9b{bottom:161.066602pt;}
.y35{bottom:161.866602pt;}
.yb4{bottom:162.346602pt;}
.yd7{bottom:167.466600pt;}
.yca{bottom:171.626598pt;}
.ybf{bottom:173.546597pt;}
.y7b{bottom:175.146597pt;}
.yf6{bottom:179.146595pt;}
.y9a{bottom:179.466595pt;}
.y34{bottom:180.266595pt;}
.yb3{bottom:188.746591pt;}
.yd6{bottom:193.866589pt;}
.yf5{bottom:197.546588pt;}
.yc9{bottom:198.026587pt;}
.y33{bottom:198.666587pt;}
.ybe{bottom:199.946587pt;}
.y7a{bottom:201.546586pt;}
.yb2{bottom:215.146581pt;}
.y32{bottom:217.066580pt;}
.yd5{bottom:220.266579pt;}
.yf4{bottom:223.946577pt;}
.y99{bottom:224.266577pt;}
.yc8{bottom:224.426577pt;}
.ybd{bottom:226.346576pt;}
.y79{bottom:227.946575pt;}
.yb1{bottom:233.546573pt;}
.y31{bottom:235.466572pt;}
.yf3{bottom:242.346570pt;}
.y98{bottom:242.666570pt;}
.y78{bottom:246.346568pt;}
.yd4{bottom:246.666568pt;}
.yc7{bottom:250.826566pt;}
.yb0{bottom:251.946566pt;}
.ybc{bottom:252.746566pt;}
.y97{bottom:261.066562pt;}
.y30{bottom:261.866562pt;}
.y77{bottom:264.746561pt;}
.yf2{bottom:268.746559pt;}
.yaf{bottom:270.346559pt;}
.yba{bottom:272.746558pt;}
.ybb{bottom:279.146555pt;}
.y96{bottom:279.466555pt;}
.y5c{bottom:283.146553pt;}
.y2f{bottom:288.266551pt;}
.yae{bottom:288.746551pt;}
.yf1{bottom:295.146549pt;}
.y95{bottom:297.866548pt;}
.yb9{bottom:299.146547pt;}
.y76{bottom:301.546546pt;}
.y2e{bottom:306.666544pt;}
.yad{bottom:307.146544pt;}
.y5b{bottom:309.546543pt;}
.y94{bottom:316.266540pt;}
.y75{bottom:319.946539pt;}
.yf0{bottom:321.546538pt;}
.y2d{bottom:325.066537pt;}
.yac{bottom:325.546536pt;}
.y5a{bottom:327.946535pt;}
.y93{bottom:334.666533pt;}
.y74{bottom:338.346531pt;}
.yef{bottom:339.946531pt;}
.y2c{bottom:343.466529pt;}
.yab{bottom:343.946529pt;}
.y59{bottom:346.346528pt;}
.y92{bottom:356.106524pt;}
.y73{bottom:356.746524pt;}
.y2b{bottom:361.866522pt;}
.y58{bottom:364.746521pt;}
.yee{bottom:366.346520pt;}
.yaa{bottom:370.346519pt;}
.y72{bottom:375.146517pt;}
.y91{bottom:377.546516pt;}
.y2a{bottom:380.266515pt;}
.y57{bottom:383.146513pt;}
.yed{bottom:384.746513pt;}
.y6{bottom:387.466512pt;}
.y90{bottom:395.946508pt;}
.ya9{bottom:396.746508pt;}
.y29{bottom:398.666507pt;}
.y56{bottom:401.546506pt;}
.y5{bottom:403.466505pt;}
.yec{bottom:411.146502pt;}
.y8f{bottom:414.346501pt;}
.ya8{bottom:415.146501pt;}
.y28{bottom:417.066500pt;}
.y4{bottom:419.466499pt;}
.y55{bottom:419.946499pt;}
.y71{bottom:427.946495pt;}
.ya7{bottom:433.546493pt;}
.y27{bottom:435.466492pt;}
.yeb{bottom:437.546492pt;}
.y54{bottom:438.346491pt;}
.y8e{bottom:440.746490pt;}
.ya6{bottom:451.946486pt;}
.y26{bottom:453.866485pt;}
.y70{bottom:454.346485pt;}
.yea{bottom:463.946481pt;}
.y53{bottom:464.746481pt;}
.y8d{bottom:467.146480pt;}
.ya5{bottom:470.346479pt;}
.y25{bottom:472.266478pt;}
.y6f{bottom:472.746478pt;}
.y8c{bottom:485.546472pt;}
.ya4{bottom:488.746471pt;}
.ye9{bottom:490.346471pt;}
.y24{bottom:490.666470pt;}
.y52{bottom:491.146470pt;}
.y8b{bottom:503.946465pt;}
.yb8{bottom:507.146464pt;}
.ye8{bottom:508.746463pt;}
.y23{bottom:509.066463pt;}
.y6e{bottom:509.546463pt;}
.ya3{bottom:515.146461pt;}
.y51{bottom:517.546460pt;}
.y8a{bottom:522.346458pt;}
.y22{bottom:527.466456pt;}
.ye7{bottom:535.146453pt;}
.y50{bottom:535.946452pt;}
.y89{bottom:540.746450pt;}
.ya2{bottom:541.546450pt;}
.y21{bottom:545.866448pt;}
.ye6{bottom:553.546445pt;}
.y4f{bottom:554.346445pt;}
.y88{bottom:559.146443pt;}
.y6d{bottom:562.346442pt;}
.y20{bottom:564.266441pt;}
.ya1{bottom:567.946439pt;}
.y4e{bottom:572.746438pt;}
.y9e{bottom:575.946436pt;}
.ye5{bottom:579.946435pt;}
.y6c{bottom:580.746434pt;}
.y1f{bottom:582.666434pt;}
.y87{bottom:585.546432pt;}
.y4d{bottom:591.146430pt;}
.ya0{bottom:594.346429pt;}
.y6b{bottom:599.146427pt;}
.ye4{bottom:606.346424pt;}
.y1e{bottom:609.066423pt;}
.y4c{bottom:609.546423pt;}
.y86{bottom:611.946422pt;}
.y6a{bottom:617.546420pt;}
.y9d{bottom:620.746418pt;}
.ye3{bottom:624.746417pt;}
.y4b{bottom:627.946415pt;}
.y85{bottom:630.346415pt;}
.y1d{bottom:635.466412pt;}
.y69{bottom:635.946412pt;}
.yd1{bottom:643.946409pt;}
.y84{bottom:648.746407pt;}
.ye2{bottom:651.146406pt;}
.y1c{bottom:653.866405pt;}
.y4a{bottom:654.346405pt;}
.ye1{bottom:669.546399pt;}
.yd0{bottom:670.346399pt;}
.y1b{bottom:672.266398pt;}
.y83{bottom:675.146397pt;}
.y49{bottom:680.746394pt;}
.y3{bottom:682.346394pt;}
.y1a{bottom:690.666390pt;}
.ye0{bottom:695.946388pt;}
.ycf{bottom:696.746388pt;}
.y68{bottom:699.146387pt;}
.y82{bottom:701.546386pt;}
.y2{bottom:706.346384pt;}
.y48{bottom:707.146384pt;}
.y19{bottom:709.066383pt;}
.yce{bottom:715.146381pt;}
.y67{bottom:717.546380pt;}
.ydf{bottom:722.346378pt;}
.y47{bottom:725.546376pt;}
.y18{bottom:727.466376pt;}
.y81{bottom:727.946375pt;}
.ycd{bottom:733.546373pt;}
.y66{bottom:735.946372pt;}
.y1{bottom:738.666371pt;}
.y46{bottom:743.946369pt;}
.y17{bottom:745.866368pt;}
.yde{bottom:748.746367pt;}
.yc6{bottom:751.946366pt;}
.y65{bottom:754.346365pt;}
.y45{bottom:762.346362pt;}
.yc5{bottom:770.346359pt;}
.y16{bottom:772.266358pt;}
.y64{bottom:772.746358pt;}
.ydd{bottom:775.146357pt;}
.y44{bottom:780.746354pt;}
.yc4{bottom:788.746351pt;}
.y63{bottom:791.146350pt;}
.y15{bottom:798.666347pt;}
.y43{bottom:799.146347pt;}
.ydc{bottom:801.546346pt;}
.yc3{bottom:807.146344pt;}
.y80{bottom:809.546343pt;}
.y8{bottom:810.346343pt;}
.y42{bottom:817.546340pt;}
.ydb{bottom:819.946339pt;}
.y14{bottom:825.066337pt;}
.yc2{bottom:825.546336pt;}
.y7f{bottom:827.946335pt;}
.y41{bottom:835.946332pt;}
.yda{bottom:838.346331pt;}
.y62{bottom:843.946329pt;}
.y7e{bottom:846.346328pt;}
.y13{bottom:851.466326pt;}
.y40{bottom:854.346325pt;}
.y61{bottom:862.346322pt;}
.y7d{bottom:864.746321pt;}
.y3f{bottom:872.746318pt;}
.y12{bottom:877.866316pt;}
.y60{bottom:880.746314pt;}
.y7c{bottom:883.146313pt;}
.y3e{bottom:891.146310pt;}
.y5f{bottom:899.146307pt;}
.y11{bottom:904.106305pt;}
.y3d{bottom:909.546303pt;}
.y5e{bottom:917.546300pt;}
.y3c{bottom:927.946295pt;}
.y10{bottom:928.906295pt;}
.y5d{bottom:935.946292pt;}
.yf{bottom:954.026285pt;}
.y3b{bottom:954.346285pt;}
.ye{bottom:980.426274pt;}
.y3a{bottom:980.746274pt;}
.yd{bottom:998.826267pt;}
.y39{bottom:1007.146264pt;}
.y7{bottom:1021.706258pt;}
.yc{bottom:1043.626249pt;}
.h6{height:35.135986pt;}
.h7{height:36.281235pt;}
.hb{height:40.215024pt;}
.h3{height:41.733103pt;}
.ha{height:44.031982pt;}
.h9{height:44.287982pt;}
.h8{height:44.735982pt;}
.h4{height:55.486058pt;}
.h5{height:56.598727pt;}
.hc{height:59.545576pt;}
.h2{height:60.468726pt;}
.h1{height:64.504974pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:94.554096pt;}
.x4{left:95.679962pt;}
.x1{left:109.429556pt;}
.x3{left:122.390697pt;}
.xb{left:151.359874pt;}
.x2{left:187.350592pt;}
.x5{left:285.279886pt;}
.x8{left:286.879885pt;}
.x9{left:290.879884pt;}
.x6{left:328.470695pt;}
.xa{left:340.959864pt;}
}




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