
    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_35b19022627f7ddd36546132.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_d75f953dd10f650cdcd19de2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_49494ff533d4f0fbbebc5001.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_b79854073d6bb312b1950e8e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.965320px;}
.v1{vertical-align:24.396720px;}
.ls1d{letter-spacing:-0.303048px;}
.ls14{letter-spacing:-0.283284px;}
.lse{letter-spacing:-0.276696px;}
.lsb{letter-spacing:-0.067284px;}
.lsc{letter-spacing:-0.048060px;}
.lsf{letter-spacing:-0.039528px;}
.ls21{letter-spacing:-0.026352px;}
.lsd{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.013176px;}
.ls12{letter-spacing:0.018720px;}
.ls18{letter-spacing:0.019764px;}
.ls10{letter-spacing:0.026352px;}
.lsa{letter-spacing:0.032940px;}
.ls17{letter-spacing:0.039528px;}
.ls6{letter-spacing:0.046116px;}
.ls3{letter-spacing:0.052704px;}
.ls1{letter-spacing:0.059292px;}
.ls0{letter-spacing:0.065880px;}
.ls4{letter-spacing:0.072468px;}
.ls2{letter-spacing:0.079056px;}
.ls7{letter-spacing:0.085644px;}
.ls8{letter-spacing:0.092232px;}
.ls5{letter-spacing:0.098820px;}
.ls13{letter-spacing:0.105408px;}
.ls16{letter-spacing:0.111996px;}
.ls11{letter-spacing:0.118584px;}
.ls15{letter-spacing:0.131760px;}
.ls23{letter-spacing:0.138348px;}
.ls1c{letter-spacing:0.151524px;}
.ls1f{letter-spacing:0.170640px;}
.ls20{letter-spacing:1.857816px;}
.ls1b{letter-spacing:6.172956px;}
.ls1a{letter-spacing:6.199308px;}
.ls26{letter-spacing:8.621280px;}
.ls22{letter-spacing:9.058500px;}
.ls9{letter-spacing:10.474920px;}
.ls24{letter-spacing:13.373640px;}
.ls19{letter-spacing:40.377852px;}
.ls1e{letter-spacing:1307.935404px;}
.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:-26.673300px;}
.wsc{word-spacing:-18.387108px;}
.wsa{word-spacing:-18.380520px;}
.wsd{word-spacing:-18.373932px;}
.wsb{word-spacing:-18.354168px;}
.ws9{word-spacing:-11.709360px;}
.ws8{word-spacing:-0.026352px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:3.577284px;}
.wse{word-spacing:3.919860px;}
.ws2{word-spacing:6.462828px;}
.ws3{word-spacing:8.623692px;}
.ws5{word-spacing:11.489472px;}
.ws7{word-spacing:31.293000px;}
.ws6{word-spacing:33.467040px;}
._1a{margin-left:-40.562316px;}
._21{margin-left:-13.399992px;}
._22{margin-left:-12.286620px;}
._20{margin-left:-10.086228px;}
._1f{margin-left:-8.696160px;}
._1d{margin-left:-2.100816px;}
._e{margin-left:-1.060668px;}
._1{width:1.054080px;}
._0{width:2.878956px;}
._8{width:3.946212px;}
._5{width:5.375808px;}
._4{width:6.456240px;}
._f{width:7.839720px;}
._3{width:8.874036px;}
._10{width:10.435392px;}
._2{width:11.509236px;}
._a{width:13.413168px;}
._9{width:14.743944px;}
._d{width:16.186716px;}
._7{width:17.372556px;}
._6{width:19.770588px;}
._b{width:20.851020px;}
._c{width:22.148856px;}
._12{width:23.380812px;}
._15{width:24.434892px;}
._16{width:25.594380px;}
._11{width:27.333612px;}
._1b{width:28.697328px;}
._14{width:29.863404px;}
._1e{width:30.884544px;}
._23{width:32.261436px;}
._13{width:33.809616px;}
._24{width:35.647668px;}
._18{width:37.070676px;}
._19{width:40.311972px;}
._17{width:41.385816px;}
._1c{width:67.652172px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(142,179,226);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(126,126,126);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.900000px;}
.y24{bottom:39.426110px;}
.y4a{bottom:111.626220px;}
.y63{bottom:116.705280px;}
.y100{bottom:116.756760px;}
.yc4{bottom:123.034770px;}
.y93{bottom:130.615050px;}
.y23{bottom:133.521420px;}
.y49{bottom:141.410010px;}
.y62{bottom:145.148970px;}
.y7a{bottom:145.200450px;}
.ydf{bottom:146.887590px;}
.yff{bottom:150.420450px;}
.yc3{bottom:151.478460px;}
.yce{bottom:157.764990px;}
.y22{bottom:163.315650px;}
.y48{bottom:171.105420px;}
.y61{bottom:173.675010px;}
.yfe{bottom:173.726760px;}
.y79{bottom:173.730450px;}
.yde{bottom:175.413630px;}
.yc2{bottom:179.922150px;}
.ycd{bottom:186.208680px;}
.y21{bottom:191.759340px;}
.y47{bottom:199.549110px;}
.y60{bottom:202.118700px;}
.y78{bottom:202.170450px;}
.ydd{bottom:203.857320px;}
.yfd{bottom:207.390450px;}
.yc1{bottom:208.365840px;}
.ycc{bottom:214.734720px;}
.y20{bottom:220.203030px;}
.y46{bottom:227.992800px;}
.y5f{bottom:230.562390px;}
.yfc{bottom:230.606760px;}
.y77{bottom:230.610450px;}
.ydc{bottom:232.301010px;}
.yc0{bottom:236.891880px;}
.ycb{bottom:243.178410px;}
.y1f{bottom:248.646720px;}
.y45{bottom:256.436490px;}
.y5e{bottom:259.006080px;}
.y76{bottom:259.050450px;}
.ydb{bottom:260.744700px;}
.yfb{bottom:264.270450px;}
.ybf{bottom:265.335570px;}
.yca{bottom:271.622100px;}
.y1e{bottom:277.090410px;}
.y44{bottom:284.962530px;}
.y5d{bottom:287.449770px;}
.y75{bottom:287.490450px;}
.yfa{bottom:287.494410px;}
.yda{bottom:289.270740px;}
.ybe{bottom:293.779260px;}
.yc9{bottom:300.065790px;}
.y1d{bottom:305.616450px;}
.y43{bottom:313.406220px;}
.y74{bottom:315.930450px;}
.y5c{bottom:315.975810px;}
.yd9{bottom:317.714430px;}
.yf9{bottom:321.240450px;}
.ybd{bottom:322.222950px;}
.yc8{bottom:328.509480px;}
.y1c{bottom:334.060140px;}
.y42{bottom:343.167780px;}
.y5b{bottom:344.419500px;}
.yf8{bottom:344.453220px;}
.y73{bottom:344.460600px;}
.yd8{bottom:346.158120px;}
.ybc{bottom:350.748990px;}
.yc7{bottom:357.035520px;}
.y1b{bottom:362.503830px;}
.y41{bottom:372.863190px;}
.yf7{bottom:372.896910px;}
.y72{bottom:372.900450px;}
.yd7{bottom:374.601810px;}
.ybb{bottom:379.192680px;}
.yc6{bottom:381.872280px;}
.y1a{bottom:390.947520px;}
.y40{bottom:401.306880px;}
.y71{bottom:401.340600px;}
.yd6{bottom:403.045500px;}
.yf6{bottom:406.560450px;}
.yba{bottom:407.636370px;}
.y19{bottom:419.391210px;}
.yaa{bottom:427.225800px;}
.y3f{bottom:429.832920px;}
.yf5{bottom:429.852270px;}
.y70{bottom:429.870600px;}
.yd5{bottom:431.571540px;}
.yb9{bottom:437.427270px;}
.y18{bottom:447.917250px;}
.ya9{bottom:455.669490px;}
.yd4{bottom:456.408300px;}
.y92{bottom:457.019220px;}
.y3e{bottom:458.276610px;}
.yf4{bottom:458.295960px;}
.y6f{bottom:458.310450px;}
.yb8{bottom:467.122680px;}
.y17{bottom:476.360940px;}
.ya8{bottom:484.113180px;}
.y91{bottom:486.714630px;}
.y3d{bottom:486.720300px;}
.yf3{bottom:486.739650px;}
.y6e{bottom:486.750600px;}
.yb7{bottom:495.566370px;}
.y16{bottom:504.804630px;}
.ya7{bottom:512.639220px;}
.y3c{bottom:515.065170px;}
.y90{bottom:515.158320px;}
.ye2{bottom:515.163990px;}
.yf2{bottom:515.183340px;}
.y6d{bottom:515.190600px;}
.yb6{bottom:525.351990px;}
.y15{bottom:533.248320px;}
.ya6{bottom:541.082910px;}
.y3b{bottom:543.508860px;}
.y5a{bottom:543.591210px;}
.y8f{bottom:543.602010px;}
.ye1{bottom:543.607680px;}
.yf1{bottom:543.627030px;}
.y6c{bottom:543.630450px;}
.yb5{bottom:555.146220px;}
.y14{bottom:561.774360px;}
.ya5{bottom:569.526600px;}
.y3a{bottom:572.034900px;}
.y59{bottom:572.117250px;}
.y8e{bottom:572.128050px;}
.ye0{bottom:572.133720px;}
.yf0{bottom:572.153070px;}
.y6b{bottom:572.160450px;}
.yb4{bottom:584.921280px;}
.y13{bottom:590.218050px;}
.ya4{bottom:597.871470px;}
.y39{bottom:600.478590px;}
.y58{bottom:600.560940px;}
.y8d{bottom:600.571740px;}
.yef{bottom:600.596760px;}
.y6a{bottom:600.600450px;}
.yb3{bottom:614.616690px;}
.y12{bottom:618.661740px;}
.ya3{bottom:626.315160px;}
.y38{bottom:628.922280px;}
.y57{bottom:629.004630px;}
.y8c{bottom:629.015430px;}
.y69{bottom:629.040450px;}
.yee{bottom:634.260450px;}
.yb2{bottom:643.060380px;}
.y11{bottom:647.105430px;}
.ya2{bottom:654.940020px;}
.y37{bottom:657.365970px;}
.y56{bottom:657.448320px;}
.y8b{bottom:657.459120px;}
.y68{bottom:657.480450px;}
.yed{bottom:657.480720px;}
.yb1{bottom:671.504070px;}
.y10{bottom:675.631470px;}
.ya1{bottom:683.383710px;}
.y55{bottom:685.974360px;}
.y8a{bottom:685.985160px;}
.y36{bottom:685.990830px;}
.yec{bottom:686.006760px;}
.y67{bottom:686.010450px;}
.yb0{bottom:700.030110px;}
.yf{bottom:704.075160px;}
.ya0{bottom:711.827400px;}
.y54{bottom:714.418050px;}
.y89{bottom:714.428850px;}
.y35{bottom:714.434520px;}
.y66{bottom:714.450450px;}
.yeb{bottom:719.670450px;}
.yaf{bottom:728.473800px;}
.ye{bottom:732.518850px;}
.y9f{bottom:740.271090px;}
.y65{bottom:742.800450px;}
.y53{bottom:742.861740px;}
.y88{bottom:742.872540px;}
.y34{bottom:742.878210px;}
.yea{bottom:742.890450px;}
.yae{bottom:756.917490px;}
.yd{bottom:760.962540px;}
.y9e{bottom:768.797130px;}
.y52{bottom:771.305430px;}
.y87{bottom:771.316230px;}
.y33{bottom:771.321900px;}
.y64{bottom:771.326760px;}
.ye9{bottom:776.550450px;}
.yad{bottom:785.361180px;}
.yc{bottom:789.406230px;}
.yd3{bottom:796.513800px;}
.y9d{bottom:797.240820px;}
.y51{bottom:799.749120px;}
.y86{bottom:799.759920px;}
.ye8{bottom:799.763340px;}
.y32{bottom:799.765590px;}
.yac{bottom:813.804870px;}
.yb{bottom:817.932270px;}
.yd2{bottom:824.957490px;}
.y9c{bottom:825.684510px;}
.y50{bottom:828.275160px;}
.y85{bottom:828.285960px;}
.ye7{bottom:828.289380px;}
.y31{bottom:828.291630px;}
.yab{bottom:838.740450px;}
.ya{bottom:846.375960px;}
.yd1{bottom:853.401180px;}
.y9b{bottom:854.128200px;}
.y4f{bottom:856.718850px;}
.y84{bottom:856.729650px;}
.ye6{bottom:856.733070px;}
.y30{bottom:856.735320px;}
.y9{bottom:874.819650px;}
.yd0{bottom:881.844870px;}
.y9a{bottom:882.571890px;}
.y4e{bottom:885.162540px;}
.y83{bottom:885.173340px;}
.ye5{bottom:885.176760px;}
.y2f{bottom:885.179010px;}
.y8{bottom:903.263340px;}
.ycf{bottom:906.780450px;}
.y99{bottom:911.097930px;}
.y4d{bottom:913.606230px;}
.y82{bottom:913.617030px;}
.y2e{bottom:913.622700px;}
.ye4{bottom:918.840450px;}
.y7{bottom:931.789380px;}
.y98{bottom:939.541620px;}
.ye3{bottom:942.049920px;}
.y81{bottom:942.060720px;}
.y4c{bottom:942.132270px;}
.y2d{bottom:942.148740px;}
.y6{bottom:960.233070px;}
.y97{bottom:967.985310px;}
.y2c{bottom:970.493610px;}
.y4b{bottom:970.575960px;}
.y80{bottom:970.586760px;}
.y5{bottom:988.676760px;}
.y96{bottom:996.429000px;}
.y2b{bottom:999.019650px;}
.y7f{bottom:999.030450px;}
.y4{bottom:1017.120450px;}
.y95{bottom:1024.955040px;}
.y2a{bottom:1027.463340px;}
.y7e{bottom:1027.470450px;}
.y3{bottom:1051.493070px;}
.y94{bottom:1054.638840px;}
.yc5{bottom:1055.808210px;}
.y29{bottom:1055.907030px;}
.y7d{bottom:1055.910450px;}
.y28{bottom:1084.433070px;}
.y7c{bottom:1084.440450px;}
.y2{bottom:1092.896760px;}
.y27{bottom:1112.876760px;}
.y7b{bottom:1112.880450px;}
.y1{bottom:1134.300450px;}
.y26{bottom:1141.320450px;}
.h5{height:16.380000px;}
.h10{height:38.180391px;}
.h11{height:38.180991px;}
.h6{height:43.031250px;}
.h12{height:47.830781px;}
.h2{height:59.060391px;}
.ha{height:59.145711px;}
.h3{height:59.478574px;}
.hf{height:67.056992px;}
.he{height:67.077512px;}
.h9{height:67.085432px;}
.hc{height:67.090112px;}
.hd{height:67.120352px;}
.hb{height:67.168592px;}
.h8{height:67.174352px;}
.h4{height:67.320392px;}
.h7{height:68.710781px;}
.h1{height:86.780215px;}
.h0{height:1263.000000px;}
.w2{width:40.033500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x6{left:127.622880px;}
.xb{left:154.614330px;}
.x1{left:156.240000px;}
.xa{left:157.410000px;}
.x2{left:166.236480px;}
.x7{left:180.722160px;}
.x9{left:233.095140px;}
.x5{left:361.892160px;}
.x4{left:372.960000px;}
.x3{left:382.963050px;}
.x8{left:426.398987px;}
.xe{left:643.590000px;}
.xd{left:659.502180px;}
.xc{left:692.544600px;}
.xf{left:695.519910px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.635840pt;}
.v1{vertical-align:21.685973pt;}
.ls1d{letter-spacing:-0.269376pt;}
.ls14{letter-spacing:-0.251808pt;}
.lse{letter-spacing:-0.245952pt;}
.lsb{letter-spacing:-0.059808pt;}
.lsc{letter-spacing:-0.042720pt;}
.lsf{letter-spacing:-0.035136pt;}
.ls21{letter-spacing:-0.023424pt;}
.lsd{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.011712pt;}
.ls12{letter-spacing:0.016640pt;}
.ls18{letter-spacing:0.017568pt;}
.ls10{letter-spacing:0.023424pt;}
.lsa{letter-spacing:0.029280pt;}
.ls17{letter-spacing:0.035136pt;}
.ls6{letter-spacing:0.040992pt;}
.ls3{letter-spacing:0.046848pt;}
.ls1{letter-spacing:0.052704pt;}
.ls0{letter-spacing:0.058560pt;}
.ls4{letter-spacing:0.064416pt;}
.ls2{letter-spacing:0.070272pt;}
.ls7{letter-spacing:0.076128pt;}
.ls8{letter-spacing:0.081984pt;}
.ls5{letter-spacing:0.087840pt;}
.ls13{letter-spacing:0.093696pt;}
.ls16{letter-spacing:0.099552pt;}
.ls11{letter-spacing:0.105408pt;}
.ls15{letter-spacing:0.117120pt;}
.ls23{letter-spacing:0.122976pt;}
.ls1c{letter-spacing:0.134688pt;}
.ls1f{letter-spacing:0.151680pt;}
.ls20{letter-spacing:1.651392pt;}
.ls1b{letter-spacing:5.487072pt;}
.ls1a{letter-spacing:5.510496pt;}
.ls26{letter-spacing:7.663360pt;}
.ls22{letter-spacing:8.052000pt;}
.ls9{letter-spacing:9.311040pt;}
.ls24{letter-spacing:11.887680pt;}
.ls19{letter-spacing:35.891424pt;}
.ls1e{letter-spacing:1162.609248pt;}
.ws0{word-spacing:-23.709600pt;}
.wsc{word-spacing:-16.344096pt;}
.wsa{word-spacing:-16.338240pt;}
.wsd{word-spacing:-16.332384pt;}
.wsb{word-spacing:-16.314816pt;}
.ws9{word-spacing:-10.408320pt;}
.ws8{word-spacing:-0.023424pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:3.179808pt;}
.wse{word-spacing:3.484320pt;}
.ws2{word-spacing:5.744736pt;}
.ws3{word-spacing:7.665504pt;}
.ws5{word-spacing:10.212864pt;}
.ws7{word-spacing:27.816000pt;}
.ws6{word-spacing:29.748480pt;}
._1a{margin-left:-36.055392pt;}
._21{margin-left:-11.911104pt;}
._22{margin-left:-10.921440pt;}
._20{margin-left:-8.965536pt;}
._1f{margin-left:-7.729920pt;}
._1d{margin-left:-1.867392pt;}
._e{margin-left:-0.942816pt;}
._1{width:0.936960pt;}
._0{width:2.559072pt;}
._8{width:3.507744pt;}
._5{width:4.778496pt;}
._4{width:5.738880pt;}
._f{width:6.968640pt;}
._3{width:7.888032pt;}
._10{width:9.275904pt;}
._2{width:10.230432pt;}
._a{width:11.922816pt;}
._9{width:13.105728pt;}
._d{width:14.388192pt;}
._7{width:15.442272pt;}
._6{width:17.573856pt;}
._b{width:18.534240pt;}
._c{width:19.687872pt;}
._12{width:20.782944pt;}
._15{width:21.719904pt;}
._16{width:22.750560pt;}
._11{width:24.296544pt;}
._1b{width:25.508736pt;}
._14{width:26.545248pt;}
._1e{width:27.452928pt;}
._23{width:28.676832pt;}
._13{width:30.052992pt;}
._24{width:31.686816pt;}
._18{width:32.951712pt;}
._19{width:35.832864pt;}
._17{width:36.787392pt;}
._1c{width:60.135264pt;}
.fs4{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:3.466667pt;}
.y24{bottom:35.045431pt;}
.y4a{bottom:99.223307pt;}
.y63{bottom:103.738027pt;}
.y100{bottom:103.783787pt;}
.yc4{bottom:109.364240pt;}
.y93{bottom:116.102267pt;}
.y23{bottom:118.685707pt;}
.y49{bottom:125.697787pt;}
.y62{bottom:129.021307pt;}
.y7a{bottom:129.067067pt;}
.ydf{bottom:130.566747pt;}
.yff{bottom:133.707067pt;}
.yc3{bottom:134.647520pt;}
.yce{bottom:140.235547pt;}
.y22{bottom:145.169467pt;}
.y48{bottom:152.093707pt;}
.y61{bottom:154.377787pt;}
.yfe{bottom:154.423787pt;}
.y79{bottom:154.427067pt;}
.yde{bottom:155.923227pt;}
.yc2{bottom:159.930800pt;}
.ycd{bottom:165.518827pt;}
.y21{bottom:170.452747pt;}
.y47{bottom:177.376987pt;}
.y60{bottom:179.661067pt;}
.y78{bottom:179.707067pt;}
.ydd{bottom:181.206507pt;}
.yfd{bottom:184.347067pt;}
.yc1{bottom:185.214080pt;}
.ycc{bottom:190.875307pt;}
.y20{bottom:195.736027pt;}
.y46{bottom:202.660267pt;}
.y5f{bottom:204.944347pt;}
.yfc{bottom:204.983787pt;}
.y77{bottom:204.987067pt;}
.ydc{bottom:206.489787pt;}
.yc0{bottom:210.570560pt;}
.ycb{bottom:216.158587pt;}
.y1f{bottom:221.019307pt;}
.y45{bottom:227.943547pt;}
.y5e{bottom:230.227627pt;}
.y76{bottom:230.267067pt;}
.ydb{bottom:231.773067pt;}
.yfb{bottom:234.907067pt;}
.ybf{bottom:235.853840pt;}
.yca{bottom:241.441867pt;}
.y1e{bottom:246.302587pt;}
.y44{bottom:253.300027pt;}
.y5d{bottom:255.510907pt;}
.y75{bottom:255.547067pt;}
.yfa{bottom:255.550587pt;}
.yda{bottom:257.129547pt;}
.ybe{bottom:261.137120pt;}
.yc9{bottom:266.725147pt;}
.y1d{bottom:271.659067pt;}
.y43{bottom:278.583307pt;}
.y74{bottom:280.827067pt;}
.y5c{bottom:280.867387pt;}
.yd9{bottom:282.412827pt;}
.yf9{bottom:285.547067pt;}
.ybd{bottom:286.420400pt;}
.yc8{bottom:292.008427pt;}
.y1c{bottom:296.942347pt;}
.y42{bottom:305.038027pt;}
.y5b{bottom:306.150667pt;}
.yf8{bottom:306.180640pt;}
.y73{bottom:306.187200pt;}
.yd8{bottom:307.696107pt;}
.ybc{bottom:311.776880pt;}
.yc7{bottom:317.364907pt;}
.y1b{bottom:322.225627pt;}
.y41{bottom:331.433947pt;}
.yf7{bottom:331.463920pt;}
.y72{bottom:331.467067pt;}
.yd7{bottom:332.979387pt;}
.ybb{bottom:337.060160pt;}
.yc6{bottom:339.442027pt;}
.y1a{bottom:347.508907pt;}
.y40{bottom:356.717227pt;}
.y71{bottom:356.747200pt;}
.yd6{bottom:358.262667pt;}
.yf6{bottom:361.387067pt;}
.yba{bottom:362.343440pt;}
.y19{bottom:372.792187pt;}
.yaa{bottom:379.756267pt;}
.y3f{bottom:382.073707pt;}
.yf5{bottom:382.090907pt;}
.y70{bottom:382.107200pt;}
.yd5{bottom:383.619147pt;}
.yb9{bottom:388.824240pt;}
.y18{bottom:398.148667pt;}
.ya9{bottom:405.039547pt;}
.yd4{bottom:405.696267pt;}
.y92{bottom:406.239307pt;}
.y3e{bottom:407.356987pt;}
.yf4{bottom:407.374187pt;}
.y6f{bottom:407.387067pt;}
.yb8{bottom:415.220160pt;}
.y17{bottom:423.431947pt;}
.ya8{bottom:430.322827pt;}
.y91{bottom:432.635227pt;}
.y3d{bottom:432.640267pt;}
.yf3{bottom:432.657467pt;}
.y6e{bottom:432.667200pt;}
.yb7{bottom:440.503440pt;}
.y16{bottom:448.715227pt;}
.ya7{bottom:455.679307pt;}
.y3c{bottom:457.835707pt;}
.y90{bottom:457.918507pt;}
.ye2{bottom:457.923547pt;}
.yf2{bottom:457.940747pt;}
.y6d{bottom:457.947200pt;}
.yb6{bottom:466.979547pt;}
.y15{bottom:473.998507pt;}
.ya6{bottom:480.962587pt;}
.y3b{bottom:483.118987pt;}
.y5a{bottom:483.192187pt;}
.y8f{bottom:483.201787pt;}
.ye1{bottom:483.206827pt;}
.yf1{bottom:483.224027pt;}
.y6c{bottom:483.227067pt;}
.yb5{bottom:493.463307pt;}
.y14{bottom:499.354987pt;}
.ya5{bottom:506.245867pt;}
.y3a{bottom:508.475467pt;}
.y59{bottom:508.548667pt;}
.y8e{bottom:508.558267pt;}
.ye0{bottom:508.563307pt;}
.yf0{bottom:508.580507pt;}
.y6b{bottom:508.587067pt;}
.yb4{bottom:519.930027pt;}
.y13{bottom:524.638267pt;}
.ya4{bottom:531.441307pt;}
.y39{bottom:533.758747pt;}
.y58{bottom:533.831947pt;}
.y8d{bottom:533.841547pt;}
.yef{bottom:533.863787pt;}
.y6a{bottom:533.867067pt;}
.yb3{bottom:546.325947pt;}
.y12{bottom:549.921547pt;}
.ya3{bottom:556.724587pt;}
.y38{bottom:559.042027pt;}
.y57{bottom:559.115227pt;}
.y8c{bottom:559.124827pt;}
.y69{bottom:559.147067pt;}
.yee{bottom:563.787067pt;}
.yb2{bottom:571.609227pt;}
.y11{bottom:575.204827pt;}
.ya2{bottom:582.168907pt;}
.y37{bottom:584.325307pt;}
.y56{bottom:584.398507pt;}
.y8b{bottom:584.408107pt;}
.y68{bottom:584.427067pt;}
.yed{bottom:584.427307pt;}
.yb1{bottom:596.892507pt;}
.y10{bottom:600.561307pt;}
.ya1{bottom:607.452187pt;}
.y55{bottom:609.754987pt;}
.y8a{bottom:609.764587pt;}
.y36{bottom:609.769627pt;}
.yec{bottom:609.783787pt;}
.y67{bottom:609.787067pt;}
.yb0{bottom:622.248987pt;}
.yf{bottom:625.844587pt;}
.ya0{bottom:632.735467pt;}
.y54{bottom:635.038267pt;}
.y89{bottom:635.047867pt;}
.y35{bottom:635.052907pt;}
.y66{bottom:635.067067pt;}
.yeb{bottom:639.707067pt;}
.yaf{bottom:647.532267pt;}
.ye{bottom:651.127867pt;}
.y9f{bottom:658.018747pt;}
.y65{bottom:660.267067pt;}
.y53{bottom:660.321547pt;}
.y88{bottom:660.331147pt;}
.y34{bottom:660.336187pt;}
.yea{bottom:660.347067pt;}
.yae{bottom:672.815547pt;}
.yd{bottom:676.411147pt;}
.y9e{bottom:683.375227pt;}
.y52{bottom:685.604827pt;}
.y87{bottom:685.614427pt;}
.y33{bottom:685.619467pt;}
.y64{bottom:685.623787pt;}
.ye9{bottom:690.267067pt;}
.yad{bottom:698.098827pt;}
.yc{bottom:701.694427pt;}
.yd3{bottom:708.012267pt;}
.y9d{bottom:708.658507pt;}
.y51{bottom:710.888107pt;}
.y86{bottom:710.897707pt;}
.ye8{bottom:710.900747pt;}
.y32{bottom:710.902747pt;}
.yac{bottom:723.382107pt;}
.yb{bottom:727.050907pt;}
.yd2{bottom:733.295547pt;}
.y9c{bottom:733.941787pt;}
.y50{bottom:736.244587pt;}
.y85{bottom:736.254187pt;}
.ye7{bottom:736.257227pt;}
.y31{bottom:736.259227pt;}
.yab{bottom:745.547067pt;}
.ya{bottom:752.334187pt;}
.yd1{bottom:758.578827pt;}
.y9b{bottom:759.225067pt;}
.y4f{bottom:761.527867pt;}
.y84{bottom:761.537467pt;}
.ye6{bottom:761.540507pt;}
.y30{bottom:761.542507pt;}
.y9{bottom:777.617467pt;}
.yd0{bottom:783.862107pt;}
.y9a{bottom:784.508347pt;}
.y4e{bottom:786.811147pt;}
.y83{bottom:786.820747pt;}
.ye5{bottom:786.823787pt;}
.y2f{bottom:786.825787pt;}
.y8{bottom:802.900747pt;}
.ycf{bottom:806.027067pt;}
.y99{bottom:809.864827pt;}
.y4d{bottom:812.094427pt;}
.y82{bottom:812.104027pt;}
.y2e{bottom:812.109067pt;}
.ye4{bottom:816.747067pt;}
.y7{bottom:828.257227pt;}
.y98{bottom:835.148107pt;}
.ye3{bottom:837.377707pt;}
.y81{bottom:837.387307pt;}
.y4c{bottom:837.450907pt;}
.y2d{bottom:837.465547pt;}
.y6{bottom:853.540507pt;}
.y97{bottom:860.431387pt;}
.y2c{bottom:862.660987pt;}
.y4b{bottom:862.734187pt;}
.y80{bottom:862.743787pt;}
.y5{bottom:878.823787pt;}
.y96{bottom:885.714667pt;}
.y2b{bottom:888.017467pt;}
.y7f{bottom:888.027067pt;}
.y4{bottom:904.107067pt;}
.y95{bottom:911.071147pt;}
.y2a{bottom:913.300747pt;}
.y7e{bottom:913.307067pt;}
.y3{bottom:934.660507pt;}
.y94{bottom:937.456747pt;}
.yc5{bottom:938.496187pt;}
.y29{bottom:938.584027pt;}
.y7d{bottom:938.587067pt;}
.y28{bottom:963.940507pt;}
.y7c{bottom:963.947067pt;}
.y2{bottom:971.463787pt;}
.y27{bottom:989.223787pt;}
.y7b{bottom:989.227067pt;}
.y1{bottom:1008.267067pt;}
.y26{bottom:1014.507067pt;}
.h5{height:14.560000pt;}
.h10{height:33.938125pt;}
.h11{height:33.938658pt;}
.h6{height:38.250000pt;}
.h12{height:42.516250pt;}
.h2{height:52.498125pt;}
.ha{height:52.573965pt;}
.h3{height:52.869844pt;}
.hf{height:59.606215pt;}
.he{height:59.624455pt;}
.h9{height:59.631495pt;}
.hc{height:59.635655pt;}
.hd{height:59.662535pt;}
.hb{height:59.705415pt;}
.h8{height:59.710535pt;}
.h4{height:59.840348pt;}
.h7{height:61.076250pt;}
.h1{height:77.137969pt;}
.h0{height:1122.666667pt;}
.w2{width:35.585333pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x6{left:113.442560pt;}
.xb{left:137.434960pt;}
.x1{left:138.880000pt;}
.xa{left:139.920000pt;}
.x2{left:147.765760pt;}
.x7{left:160.641920pt;}
.x9{left:207.195680pt;}
.x5{left:321.681920pt;}
.x4{left:331.520000pt;}
.x3{left:340.411600pt;}
.x8{left:379.021322pt;}
.xe{left:572.080000pt;}
.xd{left:586.224160pt;}
.xc{left:615.595200pt;}
.xf{left:618.239920pt;}
}




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