
    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_20944743f9e710232896f7f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_d5992f40e36fea005a3022ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_a6416bb6aa78b33cd2b7bfac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086000;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_f0baeb2fae17c1b82a027230.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.085000;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_a8f5a853fdfd0f6b4bc6a551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_a8f5a853fdfd0f6b4bc6a551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.191000;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_20944743f9e710232896f7f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_a6416bb6aa78b33cd2b7bfac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.086000;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_f0baeb2fae17c1b82a027230.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.085000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237631,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237631,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237728,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.839186px;}
.ls8{letter-spacing:-0.599418px;}
.ls6{letter-spacing:-0.569447px;}
.lsa{letter-spacing:-0.568964px;}
.ls9{letter-spacing:-0.419593px;}
.lsb{letter-spacing:-0.419236px;}
.lsc{letter-spacing:-0.095825px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.047913px;}
.ls3{letter-spacing:0.191651px;}
.ls2{letter-spacing:0.359346px;}
.ls1{letter-spacing:0.479127px;}
.ls0{letter-spacing:0.479535px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._12{margin-left:-14.841921px;}
._f{margin-left:-5.694473px;}
._c{margin-left:-3.836277px;}
._8{margin-left:-2.392878px;}
._6{margin-left:-1.126906px;}
._0{width:1.280058px;}
._4{width:2.397673px;}
._5{width:4.052067px;}
._2{width:5.754415px;}
._7{width:6.953252px;}
._1{width:8.104135px;}
._9{width:9.207064px;}
._3{width:10.549761px;}
._e{width:11.604737px;}
._a{width:12.995387px;}
._11{width:15.413895px;}
._d{width:16.495990px;}
._13{width:17.977227px;}
._14{width:19.620267px;}
._b{width:20.715894px;}
._10{width:22.405572px;}
.fc2{color:transparent;}
.fc1{color:rgb(109,110,113);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:41.923648px;}
.fs4{font-size:41.959277px;}
.fs9{font-size:47.912741px;}
.fs2{font-size:47.953459px;}
.fs6{font-size:50.950550px;}
.fs7{font-size:51.158835px;}
.fs1{font-size:51.202312px;}
.fs8{font-size:53.901833px;}
.fs0{font-size:53.947642px;}
.fsa{font-size:56.896380px;}
.fs3{font-size:56.944733px;}
.fs5{font-size:59.941824px;}
.y66{bottom:-732.655327px;}
.yd9{bottom:-701.139374px;}
.y9f{bottom:-701.136380px;}
.y9e{bottom:-687.613009px;}
.yd8{bottom:-687.592047px;}
.y9d{bottom:-674.089623px;}
.yd7{bottom:-674.044704px;}
.y9c{bottom:-660.566266px;}
.yd6{bottom:-660.497392px;}
.yd5{bottom:-646.950049px;}
.y9b{bottom:-638.556950px;}
.yd4{bottom:-633.402737px;}
.yd3{bottom:-619.855409px;}
.y9a{bottom:-618.038319px;}
.yd2{bottom:-606.339076px;}
.y99{bottom:-602.278022px;}
.yd1{bottom:-592.791748px;}
.yd0{bottom:-579.244421px;}
.ycf{bottom:-565.697093px;}
.y98{bottom:-563.755729px;}
.yce{bottom:-552.149766px;}
.y97{bottom:-550.232358px;}
.ycd{bottom:-538.602438px;}
.y96{bottom:-536.733692px;}
.ycc{bottom:-525.055111px;}
.y95{bottom:-523.210321px;}
.ycb{bottom:-511.507783px;}
.y94{bottom:-509.686949px;}
.yca{bottom:-497.960456px;}
.y93{bottom:-496.163578px;}
.yc9{bottom:-484.413128px;}
.y92{bottom:-482.640207px;}
.yc8{bottom:-470.865801px;}
.y91{bottom:-469.116836px;}
.yc7{bottom:-457.318473px;}
.y90{bottom:-455.593465px;}
.yc6{bottom:-443.771146px;}
.y8f{bottom:-442.070094px;}
.yc5{bottom:-430.223819px;}
.y8e{bottom:-428.546723px;}
.yc4{bottom:-416.676491px;}
.y8d{bottom:-415.023352px;}
.yc3{bottom:-403.129164px;}
.y8c{bottom:-401.517349px;}
.yc2{bottom:-389.581836px;}
.y8b{bottom:-387.993978px;}
.yc1{bottom:-376.034509px;}
.y8a{bottom:-374.470607px;}
.yc0{bottom:-362.488978px;}
.y89{bottom:-360.947236px;}
.y88{bottom:-347.423865px;}
.y87{bottom:-333.900494px;}
.ybf{bottom:-331.971107px;}
.y86{bottom:-320.377123px;}
.ybe{bottom:-319.918059px;}
.y85{bottom:-306.873515px;}
.ybd{bottom:-299.381161px;}
.y84{bottom:-293.350144px;}
.ybc{bottom:-283.586875px;}
.y83{bottom:-279.826773px;}
.ybb{bottom:-267.798130px;}
.y82{bottom:-266.303402px;}
.y81{bottom:-252.780031px;}
.yba{bottom:-252.006690px;}
.y80{bottom:-239.256660px;}
.y7f{bottom:-225.733289px;}
.yb9{bottom:-212.685452px;}
.y7e{bottom:-212.209918px;}
.yb8{bottom:-199.138124px;}
.y7d{bottom:-198.694033px;}
.yb7{bottom:-185.601278px;}
.y7c{bottom:-185.170662px;}
.yb6{bottom:-172.053950px;}
.y7b{bottom:-171.647291px;}
.yb5{bottom:-158.506623px;}
.y7a{bottom:-158.138743px;}
.yb4{bottom:-144.959295px;}
.y79{bottom:-144.615372px;}
.yb3{bottom:-131.411968px;}
.y78{bottom:-131.092001px;}
.yb2{bottom:-117.864640px;}
.y77{bottom:-117.568630px;}
.yb1{bottom:-104.344863px;}
.y76{bottom:-104.045258px;}
.yb0{bottom:-90.797535px;}
.y75{bottom:-90.521887px;}
.yaf{bottom:-77.250208px;}
.y74{bottom:-68.512421px;}
.yae{bottom:-63.702880px;}
.yad{bottom:-50.155553px;}
.y73{bottom:-48.000378px;}
.yac{bottom:-36.608226px;}
.y72{bottom:-32.227055px;}
.yab{bottom:-23.060898px;}
.y2{bottom:-18.168756px;}
.y71{bottom:-16.466757px;}
.yaa{bottom:-9.513571px;}
.y0{bottom:0.000000px;}
.ya9{bottom:4.033757px;}
.y64{bottom:13.365139px;}
.y52{bottom:13.402154px;}
.ya8{bottom:17.581084px;}
.y70{bottom:17.791601px;}
.y63{bottom:26.876027px;}
.y51{bottom:27.272692px;}
.ya7{bottom:31.128412px;}
.y6f{bottom:31.314972px;}
.y62{bottom:40.386914px;}
.y50{bottom:41.143230px;}
.ya6{bottom:44.675739px;}
.y6e{bottom:44.838343px;}
.y61{bottom:53.897801px;}
.y4f{bottom:55.013768px;}
.ya5{bottom:58.223067px;}
.y6d{bottom:58.361714px;}
.y60{bottom:67.408673px;}
.y4e{bottom:68.884306px;}
.ya4{bottom:71.770394px;}
.y6c{bottom:71.885085px;}
.y5f{bottom:80.919575px;}
.y4d{bottom:82.781668px;}
.ya3{bottom:85.317722px;}
.y6b{bottom:85.408456px;}
.y5e{bottom:94.430462px;}
.y4c{bottom:96.652206px;}
.ya2{bottom:98.865049px;}
.y6a{bottom:98.931827px;}
.y5d{bottom:107.941349px;}
.y4b{bottom:110.522744px;}
.ya1{bottom:112.407286px;}
.y69{bottom:112.455199px;}
.y5c{bottom:121.452236px;}
.y4a{bottom:124.393282px;}
.ya0{bottom:125.954613px;}
.y68{bottom:125.978570px;}
.y5b{bottom:134.963124px;}
.y49{bottom:138.263820px;}
.y67{bottom:139.501941px;}
.y5a{bottom:148.474011px;}
.y48{bottom:152.134358px;}
.y1{bottom:156.000000px;}
.y59{bottom:161.984898px;}
.y47{bottom:166.009392px;}
.y65{bottom:173.138182px;}
.y58{bottom:175.490540px;}
.y46{bottom:188.379980px;}
.y57{bottom:189.001427px;}
.y56{bottom:202.512314px;}
.y45{bottom:209.252173px;}
.y55{bottom:216.041484px;}
.y44{bottom:225.368282px;}
.y54{bottom:229.552371px;}
.y43{bottom:241.497877px;}
.y53{bottom:243.063258px;}
.y42{bottom:282.283343px;}
.y41{bottom:296.524022px;}
.y40{bottom:310.764701px;}
.y3f{bottom:325.005380px;}
.y3e{bottom:339.246059px;}
.y3d{bottom:353.468755px;}
.y3c{bottom:367.709434px;}
.y3b{bottom:381.950113px;}
.y3a{bottom:396.190791px;}
.y39{bottom:410.426975px;}
.y38{bottom:433.158713px;}
.y37{bottom:453.642782px;}
.y36{bottom:470.126784px;}
.y1d{bottom:517.556951px;}
.y35{bottom:520.752449px;}
.y1c{bottom:531.043861px;}
.y34{bottom:534.239360px;}
.y1b{bottom:544.530771px;}
.y33{bottom:547.726270px;}
.y1a{bottom:558.017682px;}
.y32{bottom:561.213180px;}
.y19{bottom:571.504592px;}
.y31{bottom:574.700091px;}
.y18{bottom:584.991503px;}
.y30{bottom:588.187001px;}
.y17{bottom:598.478413px;}
.y2f{bottom:601.673912px;}
.y16{bottom:611.965323px;}
.y2e{bottom:615.160822px;}
.y15{bottom:625.452234px;}
.y2d{bottom:628.647732px;}
.y14{bottom:638.939144px;}
.y2c{bottom:642.134643px;}
.y13{bottom:652.426055px;}
.y2b{bottom:655.621553px;}
.y12{bottom:665.912965px;}
.y2a{bottom:669.108464px;}
.y11{bottom:679.399875px;}
.y29{bottom:682.595374px;}
.y10{bottom:692.886786px;}
.y28{bottom:696.082284px;}
.yf{bottom:706.373696px;}
.y27{bottom:709.569195px;}
.ye{bottom:719.860607px;}
.y26{bottom:723.056105px;}
.yd{bottom:733.347517px;}
.y25{bottom:736.543016px;}
.yc{bottom:746.834427px;}
.y24{bottom:750.029926px;}
.yb{bottom:760.321338px;}
.y23{bottom:763.516836px;}
.ya{bottom:773.808248px;}
.y22{bottom:785.499451px;}
.y9{bottom:787.295159px;}
.y8{bottom:800.782069px;}
.y21{bottom:805.983521px;}
.y7{bottom:814.268979px;}
.y20{bottom:821.721996px;}
.y6{bottom:827.755890px;}
.y1f{bottom:837.452978px;}
.y5{bottom:841.242800px;}
.y1e{bottom:853.187707px;}
.y4{bottom:854.729711px;}
.y3{bottom:888.394687px;}
.h3{height:37.531295px;}
.h11{height:38.066673px;}
.h6{height:38.099023px;}
.he{height:38.863222px;}
.h2{height:38.896250px;}
.hf{height:42.833990px;}
.h18{height:42.847765px;}
.h13{height:42.853754px;}
.h17{height:42.863337px;}
.h1a{height:42.868727px;}
.h4{height:42.870393px;}
.h12{height:42.883700px;}
.hb{height:42.884779px;}
.h15{height:42.893282px;}
.h14{height:42.903464px;}
.h16{height:42.923228px;}
.h19{height:42.937602px;}
.h1b{height:42.951376px;}
.h8{height:45.549792px;}
.h9{height:45.603740px;}
.hd{height:46.452222px;}
.h10{height:51.377431px;}
.h5{height:51.421094px;}
.ha{height:51.448068px;}
.h7{height:54.127467px;}
.hc{height:155.999989px;}
.h1{height:260.999850px;}
.h0{height:1080.000000px;}
.w2{width:316.500000px;}
.w1{width:628.499850px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.x3{left:26.792828px;}
.x2{left:27.855432px;}
.xf{left:28.967965px;}
.xe{left:35.293211px;}
.x17{left:37.313432px;}
.x10{left:38.819132px;}
.x13{left:48.043711px;}
.x1a{left:50.936390px;}
.xd{left:56.544095px;}
.x1b{left:57.736928px;}
.xa{left:76.948584px;}
.x18{left:80.690798px;}
.x14{left:87.750000px;}
.x1{left:90.000000px;}
.x1c{left:95.568699px;}
.x12{left:114.294914px;}
.x19{left:126.088813px;}
.x1d{left:127.728100px;}
.x11{left:137.491231px;}
.xb{left:154.464560px;}
.xc{left:232.645207px;}
.x15{left:284.910817px;}
.x8{left:323.431215px;}
.x1e{left:325.447877px;}
.x23{left:331.083019px;}
.x22{left:332.100642px;}
.x20{left:333.810369px;}
.x5{left:335.676877px;}
.x4{left:337.436239px;}
.x9{left:343.927466px;}
.x24{left:346.689368px;}
.x6{left:349.032824px;}
.x1f{left:352.475281px;}
.x7{left:381.176937px;}
.x21{left:419.122684px;}
.x16{left:587.407982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.745943pt;}
.ls8{letter-spacing:-0.532816pt;}
.ls6{letter-spacing:-0.506175pt;}
.lsa{letter-spacing:-0.505746pt;}
.ls9{letter-spacing:-0.372971pt;}
.lsb{letter-spacing:-0.372655pt;}
.lsc{letter-spacing:-0.085178pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.042589pt;}
.ls3{letter-spacing:0.170356pt;}
.ls2{letter-spacing:0.319418pt;}
.ls1{letter-spacing:0.425891pt;}
.ls0{letter-spacing:0.426253pt;}
.ws0{word-spacing:0.000000pt;}
._12{margin-left:-13.192819pt;}
._f{margin-left:-5.061754pt;}
._c{margin-left:-3.410024pt;}
._8{margin-left:-2.127002pt;}
._6{margin-left:-1.001694pt;}
._0{width:1.137829pt;}
._4{width:2.131265pt;}
._5{width:3.601838pt;}
._2{width:5.115036pt;}
._7{width:6.180668pt;}
._1{width:7.203675pt;}
._9{width:8.184057pt;}
._3{width:9.377565pt;}
._e{width:10.315322pt;}
._a{width:11.551456pt;}
._11{width:13.701240pt;}
._d{width:14.663102pt;}
._13{width:15.979757pt;}
._14{width:17.440238pt;}
._b{width:18.414128pt;}
._10{width:19.916064pt;}
.fsb{font-size:37.265465pt;}
.fs4{font-size:37.297135pt;}
.fs9{font-size:42.589103pt;}
.fs2{font-size:42.625297pt;}
.fs6{font-size:45.289378pt;}
.fs7{font-size:45.474520pt;}
.fs1{font-size:45.513166pt;}
.fs8{font-size:47.912741pt;}
.fs0{font-size:47.953459pt;}
.fsa{font-size:50.574560pt;}
.fs3{font-size:50.617540pt;}
.fs5{font-size:53.281621pt;}
.y66{bottom:-651.249180pt;}
.yd9{bottom:-623.234999pt;}
.y9f{bottom:-623.232337pt;}
.y9e{bottom:-611.211563pt;}
.yd8{bottom:-611.192930pt;}
.y9d{bottom:-599.190776pt;}
.yd7{bottom:-599.150848pt;}
.y9c{bottom:-587.170015pt;}
.yd6{bottom:-587.108793pt;}
.yd5{bottom:-575.066711pt;}
.y9b{bottom:-567.606178pt;}
.yd4{bottom:-563.024655pt;}
.yd3{bottom:-550.982586pt;}
.y9a{bottom:-549.367394pt;}
.yd2{bottom:-538.968067pt;}
.y99{bottom:-535.358241pt;}
.yd1{bottom:-526.925998pt;}
.yd0{bottom:-514.883929pt;}
.ycf{bottom:-502.841861pt;}
.y98{bottom:-501.116203pt;}
.yce{bottom:-490.799792pt;}
.y97{bottom:-489.095429pt;}
.ycd{bottom:-478.757723pt;}
.y96{bottom:-477.096615pt;}
.ycc{bottom:-466.715654pt;}
.y95{bottom:-465.075840pt;}
.ycb{bottom:-454.673585pt;}
.y94{bottom:-453.055066pt;}
.yca{bottom:-442.631516pt;}
.y93{bottom:-441.034292pt;}
.yc9{bottom:-430.589447pt;}
.y92{bottom:-429.013518pt;}
.yc8{bottom:-418.547379pt;}
.y91{bottom:-416.992743pt;}
.yc7{bottom:-406.505310pt;}
.y90{bottom:-404.971969pt;}
.yc6{bottom:-394.463241pt;}
.y8f{bottom:-392.951195pt;}
.yc5{bottom:-382.421172pt;}
.y8e{bottom:-380.930420pt;}
.yc4{bottom:-370.379103pt;}
.y8d{bottom:-368.909646pt;}
.yc3{bottom:-358.337034pt;}
.y8c{bottom:-356.904310pt;}
.yc2{bottom:-346.294965pt;}
.y8b{bottom:-344.883536pt;}
.yc1{bottom:-334.252897pt;}
.y8a{bottom:-332.862762pt;}
.yc0{bottom:-322.212425pt;}
.y89{bottom:-320.841987pt;}
.y88{bottom:-308.821213pt;}
.y87{bottom:-296.800439pt;}
.ybf{bottom:-295.085429pt;}
.y86{bottom:-284.779664pt;}
.ybe{bottom:-284.371608pt;}
.y85{bottom:-272.776458pt;}
.ybd{bottom:-266.116587pt;}
.y84{bottom:-260.755684pt;}
.ybc{bottom:-252.077223pt;}
.y83{bottom:-248.734910pt;}
.ybb{bottom:-238.042782pt;}
.y82{bottom:-236.714135pt;}
.y81{bottom:-224.693361pt;}
.yba{bottom:-224.005946pt;}
.y80{bottom:-212.672587pt;}
.y7f{bottom:-200.651812pt;}
.yb9{bottom:-189.053735pt;}
.y7e{bottom:-188.631038pt;}
.yb8{bottom:-177.011666pt;}
.y7d{bottom:-176.616918pt;}
.yb7{bottom:-164.978914pt;}
.y7c{bottom:-164.596144pt;}
.yb6{bottom:-152.936845pt;}
.y7b{bottom:-152.575370pt;}
.yb5{bottom:-140.894776pt;}
.y7a{bottom:-140.567771pt;}
.yb4{bottom:-128.852707pt;}
.y79{bottom:-128.546997pt;}
.yb3{bottom:-116.810638pt;}
.y78{bottom:-116.526223pt;}
.yb2{bottom:-104.768569pt;}
.y77{bottom:-104.505448pt;}
.yb1{bottom:-92.750989pt;}
.y76{bottom:-92.484674pt;}
.yb0{bottom:-80.708920pt;}
.y75{bottom:-80.463900pt;}
.yaf{bottom:-68.666851pt;}
.y74{bottom:-60.899930pt;}
.yae{bottom:-56.624783pt;}
.yad{bottom:-44.582714pt;}
.y73{bottom:-42.667003pt;}
.yac{bottom:-32.540645pt;}
.y72{bottom:-28.646271pt;}
.yab{bottom:-20.498576pt;}
.y2{bottom:-16.150005pt;}
.y71{bottom:-14.637118pt;}
.yaa{bottom:-8.456507pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:3.585562pt;}
.y64{bottom:11.880124pt;}
.y52{bottom:11.913025pt;}
.ya8{bottom:15.627631pt;}
.y70{bottom:15.814756pt;}
.y63{bottom:23.889801pt;}
.y51{bottom:24.242393pt;}
.ya7{bottom:27.669699pt;}
.y6f{bottom:27.835531pt;}
.y62{bottom:35.899479pt;}
.y50{bottom:36.571760pt;}
.ya6{bottom:39.711768pt;}
.y6e{bottom:39.856305pt;}
.y61{bottom:47.909156pt;}
.y4f{bottom:48.901127pt;}
.ya5{bottom:51.753837pt;}
.y6d{bottom:51.877079pt;}
.y60{bottom:59.918820pt;}
.y4e{bottom:61.230494pt;}
.ya4{bottom:63.795906pt;}
.y6c{bottom:63.897854pt;}
.y5f{bottom:71.928511pt;}
.y4d{bottom:73.583705pt;}
.ya3{bottom:75.837975pt;}
.y6b{bottom:75.918628pt;}
.y5e{bottom:83.938189pt;}
.y4c{bottom:85.913072pt;}
.ya2{bottom:87.880044pt;}
.y6a{bottom:87.939402pt;}
.y5d{bottom:95.947866pt;}
.y4b{bottom:98.242439pt;}
.ya1{bottom:99.917587pt;}
.y69{bottom:99.960177pt;}
.y5c{bottom:107.957544pt;}
.y4a{bottom:110.571806pt;}
.ya0{bottom:111.959656pt;}
.y68{bottom:111.980951pt;}
.y5b{bottom:119.967221pt;}
.y49{bottom:122.901173pt;}
.y67{bottom:124.001725pt;}
.y5a{bottom:131.976898pt;}
.y48{bottom:135.230541pt;}
.y1{bottom:138.666667pt;}
.y59{bottom:143.986576pt;}
.y47{bottom:147.563904pt;}
.y65{bottom:153.900606pt;}
.y58{bottom:155.991591pt;}
.y46{bottom:167.448871pt;}
.y57{bottom:168.001269pt;}
.y56{bottom:180.010946pt;}
.y45{bottom:186.001932pt;}
.y55{bottom:192.036874pt;}
.y44{bottom:200.327362pt;}
.y54{bottom:204.046552pt;}
.y43{bottom:214.664780pt;}
.y53{bottom:216.056229pt;}
.y42{bottom:250.918527pt;}
.y41{bottom:263.576909pt;}
.y40{bottom:276.235290pt;}
.y3f{bottom:288.893671pt;}
.y3e{bottom:301.552052pt;}
.y3d{bottom:314.194449pt;}
.y3c{bottom:326.852830pt;}
.y3b{bottom:339.511211pt;}
.y3a{bottom:352.169592pt;}
.y39{bottom:364.823977pt;}
.y38{bottom:385.029967pt;}
.y37{bottom:403.238028pt;}
.y36{bottom:417.890474pt;}
.y1d{bottom:460.050623pt;}
.y35{bottom:462.891066pt;}
.y1c{bottom:472.038988pt;}
.y34{bottom:474.879431pt;}
.y1b{bottom:484.027352pt;}
.y33{bottom:486.867796pt;}
.y1a{bottom:496.015717pt;}
.y32{bottom:498.856160pt;}
.y19{bottom:508.004082pt;}
.y31{bottom:510.844525pt;}
.y18{bottom:519.992447pt;}
.y30{bottom:522.832890pt;}
.y17{bottom:531.980812pt;}
.y2f{bottom:534.821255pt;}
.y16{bottom:543.969176pt;}
.y2e{bottom:546.809620pt;}
.y15{bottom:555.957541pt;}
.y2d{bottom:558.797984pt;}
.y14{bottom:567.945906pt;}
.y2c{bottom:570.786349pt;}
.y13{bottom:579.934271pt;}
.y2b{bottom:582.774714pt;}
.y12{bottom:591.922636pt;}
.y2a{bottom:594.763079pt;}
.y11{bottom:603.911000pt;}
.y29{bottom:606.751444pt;}
.y10{bottom:615.899365pt;}
.y28{bottom:618.739808pt;}
.yf{bottom:627.887730pt;}
.y27{bottom:630.728173pt;}
.ye{bottom:639.876095pt;}
.y26{bottom:642.716538pt;}
.yd{bottom:651.864460pt;}
.y25{bottom:654.704903pt;}
.yc{bottom:663.852824pt;}
.y24{bottom:666.693268pt;}
.yb{bottom:675.841189pt;}
.y23{bottom:678.681632pt;}
.ya{bottom:687.829554pt;}
.y22{bottom:698.221735pt;}
.y9{bottom:699.817919pt;}
.y8{bottom:711.806284pt;}
.y21{bottom:716.429796pt;}
.y7{bottom:723.794648pt;}
.y20{bottom:730.419552pt;}
.y6{bottom:735.783013pt;}
.y1f{bottom:744.402647pt;}
.y5{bottom:747.771378pt;}
.y1e{bottom:758.389073pt;}
.y4{bottom:759.759743pt;}
.y3{bottom:789.684167pt;}
.h3{height:33.361151pt;}
.h11{height:33.837042pt;}
.h6{height:33.865799pt;}
.he{height:34.545086pt;}
.h2{height:34.574444pt;}
.hf{height:38.074658pt;}
.h18{height:38.086902pt;}
.h13{height:38.092226pt;}
.h17{height:38.100744pt;}
.h1a{height:38.105535pt;}
.h4{height:38.107016pt;}
.h12{height:38.118844pt;}
.hb{height:38.119803pt;}
.h15{height:38.127362pt;}
.h14{height:38.136412pt;}
.h16{height:38.153980pt;}
.h19{height:38.166757pt;}
.h1b{height:38.179001pt;}
.h8{height:40.488704pt;}
.h9{height:40.536658pt;}
.hd{height:41.290864pt;}
.h10{height:45.668827pt;}
.h5{height:45.707639pt;}
.ha{height:45.731616pt;}
.h7{height:48.113304pt;}
.hc{height:138.666657pt;}
.h1{height:231.999867pt;}
.h0{height:960.000000pt;}
.w2{width:281.333333pt;}
.w1{width:558.666533pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.x3{left:23.815847pt;}
.x2{left:24.760384pt;}
.xf{left:25.749302pt;}
.xe{left:31.371743pt;}
.x17{left:33.167495pt;}
.x10{left:34.505895pt;}
.x13{left:42.705521pt;}
.x1a{left:45.276791pt;}
.xd{left:50.261418pt;}
.x1b{left:51.321714pt;}
.xa{left:68.398741pt;}
.x18{left:71.725154pt;}
.x14{left:78.000000pt;}
.x1{left:80.000000pt;}
.x1c{left:84.949955pt;}
.x12{left:101.595479pt;}
.x19{left:112.078945pt;}
.x1d{left:113.536089pt;}
.x11{left:122.214428pt;}
.xb{left:137.301831pt;}
.xc{left:206.795740pt;}
.x15{left:253.254060pt;}
.x8{left:287.494414pt;}
.x1e{left:289.287001pt;}
.x23{left:294.296017pt;}
.x22{left:295.200571pt;}
.x20{left:296.720328pt;}
.x5{left:298.379447pt;}
.x4{left:299.943324pt;}
.x9{left:305.713303pt;}
.x24{left:308.168327pt;}
.x6{left:310.251399pt;}
.x1f{left:313.311360pt;}
.x7{left:338.823944pt;}
.x21{left:372.553497pt;}
.x16{left:522.140429pt;}
}




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