
    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_5b56cdc51a15717f7f6f02a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_4d62a2da9252850ac090ec78.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c2fcd8660c6e76ff05d98be1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_c7af32fbae80d92bfe816f59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_8c6c5560256a38072779cb02.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6f73854d208c276fc703cb18.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3a{letter-spacing:-0.342144px;}
.lse{letter-spacing:-0.310464px;}
.ls12{letter-spacing:-0.297792px;}
.ls31{letter-spacing:-0.285120px;}
.ls13{letter-spacing:-0.266112px;}
.ls28{letter-spacing:-0.253440px;}
.ls19{letter-spacing:-0.234432px;}
.ls10{letter-spacing:-0.221760px;}
.ls18{letter-spacing:-0.215424px;}
.lsf{letter-spacing:-0.209088px;}
.ls29{letter-spacing:-0.202752px;}
.lsa{letter-spacing:-0.196416px;}
.ls9{letter-spacing:-0.190080px;}
.ls3b{letter-spacing:-0.183744px;}
.ls2f{letter-spacing:-0.177408px;}
.ls1a{letter-spacing:-0.171072px;}
.lsb{letter-spacing:-0.164736px;}
.ls11{letter-spacing:-0.158400px;}
.ls21{letter-spacing:-0.152064px;}
.ls17{letter-spacing:-0.145728px;}
.ls30{letter-spacing:-0.139392px;}
.ls7{letter-spacing:-0.133056px;}
.ls22{letter-spacing:-0.126720px;}
.ls14{letter-spacing:-0.120384px;}
.ls15{letter-spacing:-0.101376px;}
.ls1b{letter-spacing:-0.095040px;}
.ls16{letter-spacing:-0.063360px;}
.ls1c{letter-spacing:-0.050688px;}
.ls8{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.115344px;}
.ls57{letter-spacing:0.139680px;}
.lsc{letter-spacing:0.242208px;}
.ls5a{letter-spacing:0.286560px;}
.lsd{letter-spacing:0.325728px;}
.ls24{letter-spacing:0.661536px;}
.ls48{letter-spacing:0.702576px;}
.ls4c{letter-spacing:1.128960px;}
.ls6{letter-spacing:1.552320px;}
.ls1f{letter-spacing:1.944000px;}
.ls4e{letter-spacing:1.953504px;}
.ls54{letter-spacing:2.331504px;}
.ls47{letter-spacing:2.463840px;}
.ls4a{letter-spacing:2.505888px;}
.ls40{letter-spacing:2.905920px;}
.ls32{letter-spacing:3.169440px;}
.ls2a{letter-spacing:3.241440px;}
.ls4f{letter-spacing:3.704112px;}
.ls1d{letter-spacing:3.827088px;}
.ls42{letter-spacing:3.839040px;}
.ls53{letter-spacing:3.912048px;}
.ls36{letter-spacing:3.913920px;}
.ls41{letter-spacing:4.270752px;}
.ls2{letter-spacing:4.305600px;}
.ls33{letter-spacing:4.504320px;}
.ls3e{letter-spacing:4.514400px;}
.ls5d{letter-spacing:4.714848px;}
.ls45{letter-spacing:4.811328px;}
.ls5b{letter-spacing:4.908096px;}
.ls51{letter-spacing:5.037120px;}
.ls1e{letter-spacing:5.420880px;}
.ls3d{letter-spacing:5.574672px;}
.ls2b{letter-spacing:6.034608px;}
.ls2c{letter-spacing:6.035040px;}
.ls26{letter-spacing:6.190128px;}
.ls25{letter-spacing:6.406560px;}
.ls5c{letter-spacing:6.862176px;}
.ls44{letter-spacing:6.930720px;}
.ls5{letter-spacing:7.637760px;}
.ls27{letter-spacing:7.683840px;}
.ls39{letter-spacing:7.688160px;}
.ls43{letter-spacing:8.170272px;}
.ls52{letter-spacing:8.261280px;}
.ls34{letter-spacing:8.316000px;}
.ls4{letter-spacing:8.419680px;}
.ls56{letter-spacing:9.048960px;}
.ls46{letter-spacing:9.146160px;}
.ls35{letter-spacing:9.247680px;}
.ls55{letter-spacing:9.913680px;}
.ls37{letter-spacing:10.795392px;}
.ls2d{letter-spacing:11.237760px;}
.ls2e{letter-spacing:11.452320px;}
.ls4d{letter-spacing:12.343680px;}
.ls49{letter-spacing:12.430080px;}
.ls58{letter-spacing:12.633840px;}
.ls3f{letter-spacing:13.065984px;}
.ls59{letter-spacing:14.116320px;}
.ls38{letter-spacing:14.237856px;}
.ls3c{letter-spacing:15.370560px;}
.ls20{letter-spacing:16.405776px;}
.ls50{letter-spacing:17.176320px;}
.ls3{letter-spacing:25.414560px;}
.ls23{letter-spacing:84.508992px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.ws1{word-spacing:-14.319360px;}
.ws9{word-spacing:-14.268672px;}
.ws12{word-spacing:-14.224320px;}
.ws17{word-spacing:-14.217984px;}
.ws5{word-spacing:-14.198976px;}
.wsc{word-spacing:-14.192640px;}
.ws4{word-spacing:-14.186304px;}
.ws13{word-spacing:-14.173632px;}
.wsf{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.ws15{word-spacing:-14.148288px;}
.ws14{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.ws11{word-spacing:-14.122944px;}
.ws16{word-spacing:-14.116608px;}
.ws7{word-spacing:-14.110272px;}
.ws3{word-spacing:-14.097600px;}
.wsd{word-spacing:-14.084928px;}
.wse{word-spacing:-14.065920px;}
.wsa{word-spacing:-14.053248px;}
.ws6{word-spacing:-14.021568px;}
.ws10{word-spacing:-14.008896px;}
.wsb{word-spacing:-0.063360px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-3.484800px;}
._e{margin-left:-2.471040px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._4{width:2.280960px;}
._b{width:3.294720px;}
._5{width:4.561920px;}
._6{width:5.751792px;}
._a{width:6.867360px;}
._8{width:8.173440px;}
._3{width:9.377280px;}
._15{width:10.517760px;}
._7{width:11.531520px;}
._10{width:12.798720px;}
._11{width:15.396480px;}
._12{width:16.574976px;}
._13{width:18.184320px;}
._14{width:19.196928px;}
._9{width:21.035520px;}
._16{width:23.672736px;}
._d{width:25.153920px;}
._c{width:26.674560px;}
._17{width:28.131840px;}
._1d{width:40.993920px;}
._1e{width:53.396352px;}
._1b{width:54.434304px;}
._1a{width:55.566720px;}
._1c{width:68.808960px;}
._22{width:71.660160px;}
._1f{width:81.671040px;}
._20{width:82.684800px;}
._19{width:101.123280px;}
._18{width:102.389760px;}
._23{width:137.998080px;}
._21{width:156.567024px;}
._1{width:2478.560832px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:4.680000px;}
.y92{bottom:4.740000px;}
.y9e{bottom:4.860000px;}
.y98{bottom:4.980000px;}
.ya4{bottom:5.100000px;}
.yad{bottom:5.220000px;}
.y96{bottom:5.280000px;}
.ya2{bottom:5.400000px;}
.y9c{bottom:5.520000px;}
.ya7{bottom:5.640000px;}
.y9a{bottom:5.820000px;}
.y94{bottom:5.940000px;}
.ya0{bottom:6.060000px;}
.y91{bottom:24.180000px;}
.y2{bottom:58.320000px;}
.yb4{bottom:90.360000px;}
.y37{bottom:93.960000px;}
.y6f{bottom:105.480000px;}
.yb3{bottom:109.440000px;}
.y36{bottom:113.400000px;}
.y6e{bottom:124.920000px;}
.yb2{bottom:128.880000px;}
.y35{bottom:132.480000px;}
.y6d{bottom:144.000000px;}
.yb1{bottom:147.960000px;}
.y34{bottom:151.560000px;}
.y6c{bottom:163.440000px;}
.yb0{bottom:167.400000px;}
.y33{bottom:171.000000px;}
.y6b{bottom:182.520000px;}
.yaf{bottom:186.480000px;}
.y32{bottom:190.080000px;}
.y6a{bottom:201.600000px;}
.yae{bottom:205.560000px;}
.y31{bottom:209.520000px;}
.yac{bottom:220.500000px;}
.y69{bottom:221.040000px;}
.y30{bottom:228.600000px;}
.yab{bottom:240.000000px;}
.y68{bottom:240.120000px;}
.y2f{bottom:247.680000px;}
.y67{bottom:259.560000px;}
.ya9{bottom:261.000000px;}
.y2e{bottom:267.120000px;}
.y66{bottom:278.640000px;}
.ya8{bottom:280.500000px;}
.y2d{bottom:286.200000px;}
.y65{bottom:297.720000px;}
.ya6{bottom:300.000000px;}
.y2c{bottom:305.640000px;}
.y64{bottom:317.160000px;}
.ya5{bottom:319.500000px;}
.y2b{bottom:324.720000px;}
.y63{bottom:336.240000px;}
.ya3{bottom:340.500000px;}
.y2a{bottom:343.800000px;}
.y62{bottom:355.680000px;}
.ya1{bottom:360.000000px;}
.y29{bottom:363.240000px;}
.y61{bottom:374.760000px;}
.y9f{bottom:379.500000px;}
.y28{bottom:382.320000px;}
.y60{bottom:394.200000px;}
.y9d{bottom:400.500000px;}
.y27{bottom:401.760000px;}
.y5f{bottom:413.280000px;}
.y9b{bottom:420.000000px;}
.y26{bottom:420.840000px;}
.y5e{bottom:432.360000px;}
.y99{bottom:439.500000px;}
.y25{bottom:440.280000px;}
.y5d{bottom:451.800000px;}
.y24{bottom:459.360000px;}
.y97{bottom:460.500000px;}
.y5c{bottom:470.880000px;}
.y23{bottom:478.440000px;}
.y95{bottom:480.000000px;}
.y5b{bottom:490.320000px;}
.y22{bottom:497.880000px;}
.y93{bottom:499.500000px;}
.y5a{bottom:509.400000px;}
.y21{bottom:516.960000px;}
.y90{bottom:520.500000px;}
.y59{bottom:528.480000px;}
.y20{bottom:536.400000px;}
.y58{bottom:547.920000px;}
.y1f{bottom:555.480000px;}
.y8f{bottom:564.480000px;}
.y57{bottom:567.000000px;}
.y1e{bottom:574.560000px;}
.y8e{bottom:583.920000px;}
.y56{bottom:586.440000px;}
.y1d{bottom:594.000000px;}
.y8d{bottom:603.000000px;}
.y55{bottom:605.520000px;}
.y1c{bottom:613.080000px;}
.y8c{bottom:622.080000px;}
.y54{bottom:624.600000px;}
.y1b{bottom:632.520000px;}
.y8b{bottom:641.520000px;}
.y53{bottom:644.040000px;}
.y1a{bottom:651.600000px;}
.y8a{bottom:660.600000px;}
.y52{bottom:663.120000px;}
.y19{bottom:670.680000px;}
.y89{bottom:680.040000px;}
.y51{bottom:682.560000px;}
.y18{bottom:690.120000px;}
.y88{bottom:699.120000px;}
.y50{bottom:701.640000px;}
.y17{bottom:709.200000px;}
.y87{bottom:718.200000px;}
.y4f{bottom:720.720000px;}
.y16{bottom:728.640000px;}
.y86{bottom:737.640000px;}
.y4e{bottom:740.160000px;}
.y15{bottom:747.720000px;}
.y85{bottom:756.720000px;}
.y4d{bottom:759.240000px;}
.y14{bottom:766.800000px;}
.y84{bottom:776.160000px;}
.y4c{bottom:778.680000px;}
.y13{bottom:786.240000px;}
.y83{bottom:795.240000px;}
.y4b{bottom:797.760000px;}
.y12{bottom:805.320000px;}
.y82{bottom:814.320000px;}
.y4a{bottom:816.840000px;}
.y11{bottom:824.760000px;}
.y81{bottom:833.760000px;}
.y49{bottom:836.280000px;}
.y10{bottom:843.840000px;}
.y80{bottom:852.840000px;}
.y48{bottom:855.360000px;}
.yf{bottom:862.920000px;}
.y7f{bottom:872.280000px;}
.y47{bottom:874.800000px;}
.ye{bottom:882.360000px;}
.y7e{bottom:891.360000px;}
.y46{bottom:893.880000px;}
.yd{bottom:901.440000px;}
.y7d{bottom:910.440000px;}
.y45{bottom:912.960000px;}
.yc{bottom:921.240000px;}
.y7c{bottom:929.880000px;}
.y44{bottom:932.400000px;}
.yb{bottom:941.040000px;}
.y7b{bottom:948.960000px;}
.y43{bottom:951.480000px;}
.ya{bottom:960.120000px;}
.y7a{bottom:968.400000px;}
.y42{bottom:970.920000px;}
.y9{bottom:979.560000px;}
.y79{bottom:987.480000px;}
.y41{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.y78{bottom:1006.920000px;}
.y40{bottom:1009.440000px;}
.y7{bottom:1024.920000px;}
.y77{bottom:1026.000000px;}
.y3f{bottom:1028.520000px;}
.y76{bottom:1045.080000px;}
.y3e{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y75{bottom:1064.520000px;}
.y3d{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y74{bottom:1083.600000px;}
.y3c{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y73{bottom:1103.760000px;}
.y3b{bottom:1105.560000px;}
.y72{bottom:1122.840000px;}
.y3a{bottom:1124.640000px;}
.y71{bottom:1143.000000px;}
.y39{bottom:1143.720000px;}
.y70{bottom:1162.080000px;}
.y38{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h8{height:19.500000px;}
.h7{height:21.000000px;}
.h6{height:39.000000px;}
.h3{height:43.312500px;}
.h5{height:43.900313px;}
.h2{height:52.253438px;}
.h4{height:61.987500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:144.000000px;}
.w3{width:145.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:8.099856px;}
.x1{left:62.009748px;}
.xa{left:84.959856px;}
.x5{left:98.603028px;}
.x4{left:106.184700px;}
.x9{left:124.812000px;}
.x3{left:181.064592px;}
.x6{left:193.241448px;}
.xc{left:229.500000px;}
.xd{left:373.500000px;}
.x2{left:442.885680px;}
.xe{left:519.000000px;}
.x8{left:654.016320px;}
.xf{left:663.000000px;}
.x7{left:671.312160px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3a{letter-spacing:-0.304128pt;}
.lse{letter-spacing:-0.275968pt;}
.ls12{letter-spacing:-0.264704pt;}
.ls31{letter-spacing:-0.253440pt;}
.ls13{letter-spacing:-0.236544pt;}
.ls28{letter-spacing:-0.225280pt;}
.ls19{letter-spacing:-0.208384pt;}
.ls10{letter-spacing:-0.197120pt;}
.ls18{letter-spacing:-0.191488pt;}
.lsf{letter-spacing:-0.185856pt;}
.ls29{letter-spacing:-0.180224pt;}
.lsa{letter-spacing:-0.174592pt;}
.ls9{letter-spacing:-0.168960pt;}
.ls3b{letter-spacing:-0.163328pt;}
.ls2f{letter-spacing:-0.157696pt;}
.ls1a{letter-spacing:-0.152064pt;}
.lsb{letter-spacing:-0.146432pt;}
.ls11{letter-spacing:-0.140800pt;}
.ls21{letter-spacing:-0.135168pt;}
.ls17{letter-spacing:-0.129536pt;}
.ls30{letter-spacing:-0.123904pt;}
.ls7{letter-spacing:-0.118272pt;}
.ls22{letter-spacing:-0.112640pt;}
.ls14{letter-spacing:-0.107008pt;}
.ls15{letter-spacing:-0.090112pt;}
.ls1b{letter-spacing:-0.084480pt;}
.ls16{letter-spacing:-0.056320pt;}
.ls1c{letter-spacing:-0.045056pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.102528pt;}
.ls57{letter-spacing:0.124160pt;}
.lsc{letter-spacing:0.215296pt;}
.ls5a{letter-spacing:0.254720pt;}
.lsd{letter-spacing:0.289536pt;}
.ls24{letter-spacing:0.588032pt;}
.ls48{letter-spacing:0.624512pt;}
.ls4c{letter-spacing:1.003520pt;}
.ls6{letter-spacing:1.379840pt;}
.ls1f{letter-spacing:1.728000pt;}
.ls4e{letter-spacing:1.736448pt;}
.ls54{letter-spacing:2.072448pt;}
.ls47{letter-spacing:2.190080pt;}
.ls4a{letter-spacing:2.227456pt;}
.ls40{letter-spacing:2.583040pt;}
.ls32{letter-spacing:2.817280pt;}
.ls2a{letter-spacing:2.881280pt;}
.ls4f{letter-spacing:3.292544pt;}
.ls1d{letter-spacing:3.401856pt;}
.ls42{letter-spacing:3.412480pt;}
.ls53{letter-spacing:3.477376pt;}
.ls36{letter-spacing:3.479040pt;}
.ls41{letter-spacing:3.796224pt;}
.ls2{letter-spacing:3.827200pt;}
.ls33{letter-spacing:4.003840pt;}
.ls3e{letter-spacing:4.012800pt;}
.ls5d{letter-spacing:4.190976pt;}
.ls45{letter-spacing:4.276736pt;}
.ls5b{letter-spacing:4.362752pt;}
.ls51{letter-spacing:4.477440pt;}
.ls1e{letter-spacing:4.818560pt;}
.ls3d{letter-spacing:4.955264pt;}
.ls2b{letter-spacing:5.364096pt;}
.ls2c{letter-spacing:5.364480pt;}
.ls26{letter-spacing:5.502336pt;}
.ls25{letter-spacing:5.694720pt;}
.ls5c{letter-spacing:6.099712pt;}
.ls44{letter-spacing:6.160640pt;}
.ls5{letter-spacing:6.789120pt;}
.ls27{letter-spacing:6.830080pt;}
.ls39{letter-spacing:6.833920pt;}
.ls43{letter-spacing:7.262464pt;}
.ls52{letter-spacing:7.343360pt;}
.ls34{letter-spacing:7.392000pt;}
.ls4{letter-spacing:7.484160pt;}
.ls56{letter-spacing:8.043520pt;}
.ls46{letter-spacing:8.129920pt;}
.ls35{letter-spacing:8.220160pt;}
.ls55{letter-spacing:8.812160pt;}
.ls37{letter-spacing:9.595904pt;}
.ls2d{letter-spacing:9.989120pt;}
.ls2e{letter-spacing:10.179840pt;}
.ls4d{letter-spacing:10.972160pt;}
.ls49{letter-spacing:11.048960pt;}
.ls58{letter-spacing:11.230080pt;}
.ls3f{letter-spacing:11.614208pt;}
.ls59{letter-spacing:12.547840pt;}
.ls38{letter-spacing:12.655872pt;}
.ls3c{letter-spacing:13.662720pt;}
.ls20{letter-spacing:14.582912pt;}
.ls50{letter-spacing:15.267840pt;}
.ls3{letter-spacing:22.590720pt;}
.ls23{letter-spacing:75.119104pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws1{word-spacing:-12.728320pt;}
.ws9{word-spacing:-12.683264pt;}
.ws12{word-spacing:-12.643840pt;}
.ws17{word-spacing:-12.638208pt;}
.ws5{word-spacing:-12.621312pt;}
.wsc{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.610048pt;}
.ws13{word-spacing:-12.598784pt;}
.wsf{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.ws15{word-spacing:-12.576256pt;}
.ws14{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.ws11{word-spacing:-12.553728pt;}
.ws16{word-spacing:-12.548096pt;}
.ws7{word-spacing:-12.542464pt;}
.ws3{word-spacing:-12.531200pt;}
.wsd{word-spacing:-12.519936pt;}
.wse{word-spacing:-12.503040pt;}
.wsa{word-spacing:-12.491776pt;}
.ws6{word-spacing:-12.463616pt;}
.ws10{word-spacing:-12.452352pt;}
.wsb{word-spacing:-0.056320pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-3.097600pt;}
._e{margin-left:-2.196480pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._4{width:2.027520pt;}
._b{width:2.928640pt;}
._5{width:4.055040pt;}
._6{width:5.112704pt;}
._a{width:6.104320pt;}
._8{width:7.265280pt;}
._3{width:8.335360pt;}
._15{width:9.349120pt;}
._7{width:10.250240pt;}
._10{width:11.376640pt;}
._11{width:13.685760pt;}
._12{width:14.733312pt;}
._13{width:16.163840pt;}
._14{width:17.063936pt;}
._9{width:18.698240pt;}
._16{width:21.042432pt;}
._d{width:22.359040pt;}
._c{width:23.710720pt;}
._17{width:25.006080pt;}
._1d{width:36.439040pt;}
._1e{width:47.463424pt;}
._1b{width:48.386048pt;}
._1a{width:49.392640pt;}
._1c{width:61.163520pt;}
._22{width:63.697920pt;}
._1f{width:72.596480pt;}
._20{width:73.497600pt;}
._19{width:89.887360pt;}
._18{width:91.013120pt;}
._23{width:122.664960pt;}
._21{width:139.170688pt;}
._1{width:2203.165184pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:4.160000pt;}
.y92{bottom:4.213333pt;}
.y9e{bottom:4.320000pt;}
.y98{bottom:4.426667pt;}
.ya4{bottom:4.533333pt;}
.yad{bottom:4.640000pt;}
.y96{bottom:4.693333pt;}
.ya2{bottom:4.800000pt;}
.y9c{bottom:4.906667pt;}
.ya7{bottom:5.013333pt;}
.y9a{bottom:5.173333pt;}
.y94{bottom:5.280000pt;}
.ya0{bottom:5.386667pt;}
.y91{bottom:21.493333pt;}
.y2{bottom:51.840000pt;}
.yb4{bottom:80.320000pt;}
.y37{bottom:83.520000pt;}
.y6f{bottom:93.760000pt;}
.yb3{bottom:97.280000pt;}
.y36{bottom:100.800000pt;}
.y6e{bottom:111.040000pt;}
.yb2{bottom:114.560000pt;}
.y35{bottom:117.760000pt;}
.y6d{bottom:128.000000pt;}
.yb1{bottom:131.520000pt;}
.y34{bottom:134.720000pt;}
.y6c{bottom:145.280000pt;}
.yb0{bottom:148.800000pt;}
.y33{bottom:152.000000pt;}
.y6b{bottom:162.240000pt;}
.yaf{bottom:165.760000pt;}
.y32{bottom:168.960000pt;}
.y6a{bottom:179.200000pt;}
.yae{bottom:182.720000pt;}
.y31{bottom:186.240000pt;}
.yac{bottom:196.000000pt;}
.y69{bottom:196.480000pt;}
.y30{bottom:203.200000pt;}
.yab{bottom:213.333333pt;}
.y68{bottom:213.440000pt;}
.y2f{bottom:220.160000pt;}
.y67{bottom:230.720000pt;}
.ya9{bottom:232.000000pt;}
.y2e{bottom:237.440000pt;}
.y66{bottom:247.680000pt;}
.ya8{bottom:249.333333pt;}
.y2d{bottom:254.400000pt;}
.y65{bottom:264.640000pt;}
.ya6{bottom:266.666667pt;}
.y2c{bottom:271.680000pt;}
.y64{bottom:281.920000pt;}
.ya5{bottom:284.000000pt;}
.y2b{bottom:288.640000pt;}
.y63{bottom:298.880000pt;}
.ya3{bottom:302.666667pt;}
.y2a{bottom:305.600000pt;}
.y62{bottom:316.160000pt;}
.ya1{bottom:320.000000pt;}
.y29{bottom:322.880000pt;}
.y61{bottom:333.120000pt;}
.y9f{bottom:337.333333pt;}
.y28{bottom:339.840000pt;}
.y60{bottom:350.400000pt;}
.y9d{bottom:356.000000pt;}
.y27{bottom:357.120000pt;}
.y5f{bottom:367.360000pt;}
.y9b{bottom:373.333333pt;}
.y26{bottom:374.080000pt;}
.y5e{bottom:384.320000pt;}
.y99{bottom:390.666667pt;}
.y25{bottom:391.360000pt;}
.y5d{bottom:401.600000pt;}
.y24{bottom:408.320000pt;}
.y97{bottom:409.333333pt;}
.y5c{bottom:418.560000pt;}
.y23{bottom:425.280000pt;}
.y95{bottom:426.666667pt;}
.y5b{bottom:435.840000pt;}
.y22{bottom:442.560000pt;}
.y93{bottom:444.000000pt;}
.y5a{bottom:452.800000pt;}
.y21{bottom:459.520000pt;}
.y90{bottom:462.666667pt;}
.y59{bottom:469.760000pt;}
.y20{bottom:476.800000pt;}
.y58{bottom:487.040000pt;}
.y1f{bottom:493.760000pt;}
.y8f{bottom:501.760000pt;}
.y57{bottom:504.000000pt;}
.y1e{bottom:510.720000pt;}
.y8e{bottom:519.040000pt;}
.y56{bottom:521.280000pt;}
.y1d{bottom:528.000000pt;}
.y8d{bottom:536.000000pt;}
.y55{bottom:538.240000pt;}
.y1c{bottom:544.960000pt;}
.y8c{bottom:552.960000pt;}
.y54{bottom:555.200000pt;}
.y1b{bottom:562.240000pt;}
.y8b{bottom:570.240000pt;}
.y53{bottom:572.480000pt;}
.y1a{bottom:579.200000pt;}
.y8a{bottom:587.200000pt;}
.y52{bottom:589.440000pt;}
.y19{bottom:596.160000pt;}
.y89{bottom:604.480000pt;}
.y51{bottom:606.720000pt;}
.y18{bottom:613.440000pt;}
.y88{bottom:621.440000pt;}
.y50{bottom:623.680000pt;}
.y17{bottom:630.400000pt;}
.y87{bottom:638.400000pt;}
.y4f{bottom:640.640000pt;}
.y16{bottom:647.680000pt;}
.y86{bottom:655.680000pt;}
.y4e{bottom:657.920000pt;}
.y15{bottom:664.640000pt;}
.y85{bottom:672.640000pt;}
.y4d{bottom:674.880000pt;}
.y14{bottom:681.600000pt;}
.y84{bottom:689.920000pt;}
.y4c{bottom:692.160000pt;}
.y13{bottom:698.880000pt;}
.y83{bottom:706.880000pt;}
.y4b{bottom:709.120000pt;}
.y12{bottom:715.840000pt;}
.y82{bottom:723.840000pt;}
.y4a{bottom:726.080000pt;}
.y11{bottom:733.120000pt;}
.y81{bottom:741.120000pt;}
.y49{bottom:743.360000pt;}
.y10{bottom:750.080000pt;}
.y80{bottom:758.080000pt;}
.y48{bottom:760.320000pt;}
.yf{bottom:767.040000pt;}
.y7f{bottom:775.360000pt;}
.y47{bottom:777.600000pt;}
.ye{bottom:784.320000pt;}
.y7e{bottom:792.320000pt;}
.y46{bottom:794.560000pt;}
.yd{bottom:801.280000pt;}
.y7d{bottom:809.280000pt;}
.y45{bottom:811.520000pt;}
.yc{bottom:818.880000pt;}
.y7c{bottom:826.560000pt;}
.y44{bottom:828.800000pt;}
.yb{bottom:836.480000pt;}
.y7b{bottom:843.520000pt;}
.y43{bottom:845.760000pt;}
.ya{bottom:853.440000pt;}
.y7a{bottom:860.800000pt;}
.y42{bottom:863.040000pt;}
.y9{bottom:870.720000pt;}
.y79{bottom:877.760000pt;}
.y41{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.y78{bottom:895.040000pt;}
.y40{bottom:897.280000pt;}
.y7{bottom:911.040000pt;}
.y77{bottom:912.000000pt;}
.y3f{bottom:914.240000pt;}
.y76{bottom:928.960000pt;}
.y3e{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y75{bottom:946.240000pt;}
.y3d{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y74{bottom:963.200000pt;}
.y3c{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y73{bottom:981.120000pt;}
.y3b{bottom:982.720000pt;}
.y72{bottom:998.080000pt;}
.y3a{bottom:999.680000pt;}
.y71{bottom:1016.000000pt;}
.y39{bottom:1016.640000pt;}
.y70{bottom:1032.960000pt;}
.y38{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h8{height:17.333333pt;}
.h7{height:18.666667pt;}
.h6{height:34.666667pt;}
.h3{height:38.500000pt;}
.h5{height:39.022500pt;}
.h2{height:46.447500pt;}
.h4{height:55.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:128.000000pt;}
.w3{width:129.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:7.199872pt;}
.x1{left:55.119776pt;}
.xa{left:75.519872pt;}
.x5{left:87.647136pt;}
.x4{left:94.386400pt;}
.x9{left:110.944000pt;}
.x3{left:160.946304pt;}
.x6{left:171.770176pt;}
.xc{left:204.000000pt;}
.xd{left:332.000000pt;}
.x2{left:393.676160pt;}
.xe{left:461.333333pt;}
.x8{left:581.347840pt;}
.xf{left:589.333333pt;}
.x7{left:596.721920pt;}
}




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