
    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_d81ccadd854f3cda8e1a70c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_0d862e308d4ee5903e353f31.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_c50548d95b7f6cd8b9763b08.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_4403f2f5e5eb240575d95767.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_ef91708ebbbf985c7b92eff2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_250961e21c9b54d28e5df6ad.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.m5{transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250462,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-29.519988px;}
.v4{vertical-align:-18.025313px;}
.v2{vertical-align:-3.985312px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.428749px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.026982px;}
.lsb{letter-spacing:0.180000px;}
.ls8{letter-spacing:13.444315px;}
.ls7{letter-spacing:14.039994px;}
.lsa{letter-spacing:14.849994px;}
.ls9{letter-spacing:14.956854px;}
.ls1{letter-spacing:215.600693px;}
.ls5{letter-spacing:531.599269px;}
.ls2{letter-spacing:580.185190px;}
.ls4{letter-spacing:606.075053px;}
.ls3{letter-spacing:1133.572201px;}
.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;}
}
.ws6{word-spacing:-25.073980px;}
.ws0{word-spacing:-15.029994px;}
.ws4{word-spacing:-13.499995px;}
.ws2{word-spacing:-7.757865px;}
.ws5{word-spacing:-0.258735px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:688.027858px;}
._1d{margin-left:-760.199839px;}
._1{margin-left:-1.206738px;}
._0{width:1.207792px;}
._a{width:2.568776px;}
._8{width:3.902960px;}
._9{width:5.022509px;}
._b{width:6.480357px;}
._10{width:7.507971px;}
._2{width:9.426718px;}
._3{width:10.437494px;}
._e{width:11.963605px;}
._f{width:13.827335px;}
._5{width:16.779819px;}
._d{width:17.813070px;}
._4{width:19.056860px;}
._1b{width:20.085680px;}
._7{width:21.115806px;}
._6{width:22.357445px;}
._13{width:23.449933px;}
._c{width:24.607097px;}
._16{width:26.152208px;}
._17{width:27.655121px;}
._19{width:29.422267px;}
._18{width:30.528985px;}
._11{width:31.851569px;}
._12{width:33.198819px;}
._1e{width:36.330886px;}
._1f{width:38.272351px;}
._15{width:42.302581px;}
._14{width:43.375364px;}
._20{width:48.209302px;}
._1c{width:49.316655px;}
._1a{width:92.945483px;}
.fc2{color:rgb(42,39,39);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(75,95,181);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.905989px;}
.fs8{font-size:34.472986px;}
.fsb{font-size:35.999986px;}
.fs7{font-size:47.879981px;}
.fsa{font-size:49.246780px;}
.fsd{font-size:49.553320px;}
.fs1{font-size:51.119980px;}
.fs4{font-size:53.999978px;}
.fs0{font-size:56.879917px;}
.fsc{font-size:57.770377px;}
.fs5{font-size:60.119976px;}
.fs3{font-size:65.879974px;}
.fs6{font-size:71.999971px;}
.fs2{font-size:96.119962px;}
.y0{bottom:0.000000px;}
.y50{bottom:50.585494px;}
.y25{bottom:55.895492px;}
.y1{bottom:90.061200px;}
.y4f{bottom:109.885870px;}
.yce{bottom:112.031019px;}
.y24{bottom:116.421667px;}
.y4e{bottom:127.080813px;}
.ycd{bottom:129.315212px;}
.y23{bottom:133.706610px;}
.y10a{bottom:133.935960px;}
.y4d{bottom:144.365006px;}
.ycc{bottom:146.508655px;}
.y22{bottom:150.900804px;}
.y109{bottom:151.220153px;}
.y4c{bottom:161.559199px;}
.y79{bottom:161.772949px;}
.ycb{bottom:163.792848px;}
.ya4{bottom:167.270897px;}
.y21{bottom:168.185747px;}
.y108{bottom:168.415097px;}
.ye2{bottom:174.509444px;}
.y4b{bottom:178.844142px;}
.y78{bottom:178.967142px;}
.yca{bottom:181.077042px;}
.ya3{bottom:184.555840px;}
.y20{bottom:185.469940px;}
.ye1{bottom:191.702287px;}
.y107{bottom:194.687286px;}
.y4a{bottom:196.128336px;}
.y77{bottom:196.251335px;}
.yc9{bottom:198.271985px;}
.ya2{bottom:201.750033px;}
.y1f{bottom:202.664133px;}
.ye0{bottom:208.986480px;}
.y106{bottom:211.972229px;}
.y49{bottom:213.323279px;}
.y76{bottom:213.536279px;}
.yc8{bottom:215.556178px;}
.ya1{bottom:219.034226px;}
.y1e{bottom:219.949076px;}
.ydf{bottom:226.271423px;}
.y105{bottom:229.165072px;}
.y48{bottom:230.607472px;}
.y75{bottom:230.730472px;}
.ya0{bottom:236.319169px;}
.y1d{bottom:237.233269px;}
.y8a{bottom:238.198669px;}
.yc7{bottom:241.571117px;}
.y74{bottom:248.014665px;}
.yde{bottom:252.273613px;}
.y9f{bottom:253.513363px;}
.y1c{bottom:254.427462px;}
.y89{bottom:255.392862px;}
.y104{bottom:255.437262px;}
.y47{bottom:256.699661px;}
.yc6{bottom:257.136161px;}
.y73{bottom:265.299608px;}
.y9e{bottom:270.798306px;}
.y88{bottom:272.677805px;}
.y103{bottom:272.721455px;}
.y72{bottom:282.493801px;}
.y9d{bottom:288.082499px;}
.y1b{bottom:288.815248px;}
.y87{bottom:289.961998px;}
.y102{bottom:298.904394px;}
.y71{bottom:299.778744px;}
.y9c{bottom:305.276692px;}
.y86{bottom:307.156191px;}
.ydd{bottom:314.001588px;}
.y101{bottom:316.188588px;}
.y46{bottom:318.337637px;}
.ybb{bottom:318.835036px;}
.y9b{bottom:322.561635px;}
.y85{bottom:324.441134px;}
.y70{bottom:326.049584px;}
.y1a{bottom:326.648233px;}
.ydc{bottom:331.195781px;}
.y45{bottom:335.622580px;}
.yba{bottom:336.029980px;}
.y9a{bottom:339.845828px;}
.y84{bottom:341.725327px;}
.y100{bottom:342.460777px;}
.y6f{bottom:343.243777px;}
.ydb{bottom:348.480725px;}
.y44{bottom:352.816773px;}
.yb9{bottom:353.314173px;}
.y99{bottom:357.038671px;}
.y83{bottom:358.920270px;}
.yff{bottom:359.655720px;}
.y6e{bottom:360.528720px;}
.yda{bottom:365.764918px;}
.y43{bottom:370.100966px;}
.yb8{bottom:370.599116px;}
.y98{bottom:374.323614px;}
.y82{bottom:376.204463px;}
.yfe{bottom:376.939913px;}
.y6d{bottom:377.812913px;}
.y19{bottom:379.298212px;}
.yd9{bottom:382.959111px;}
.y42{bottom:387.385909px;}
.yb7{bottom:387.793309px;}
.y81{bottom:393.488657px;}
.y6c{bottom:395.007106px;}
.yd8{bottom:400.244054px;}
.yfd{bottom:403.212853px;}
.y41{bottom:404.578752px;}
.yb6{bottom:405.077502px;}
.y80{bottom:410.683600px;}
.y6b{bottom:412.292049px;}
.y18{bottom:414.573998px;}
.yd7{bottom:417.528247px;}
.yfc{bottom:420.407046px;}
.y40{bottom:421.862945px;}
.yb5{bottom:422.362445px;}
.y97{bottom:426.601893px;}
.yc5{bottom:428.023593px;}
.y6a{bottom:429.486242px;}
.y17{bottom:431.858191px;}
.y7f{bottom:436.954439px;}
.yfb{bottom:437.691239px;}
.y3f{bottom:439.147888px;}
.yb4{bottom:439.555288px;}
.y96{bottom:442.086087px;}
.yd6{bottom:443.529087px;}
.yc4{bottom:445.307786px;}
.y69{bottom:446.771185px;}
.y16{bottom:449.052384px;}
.y7e{bottom:454.238632px;}
.yfa{bottom:454.976182px;}
.y3e{bottom:456.342081px;}
.yb3{bottom:456.839481px;}
.y95{bottom:457.651881px;}
.yc3{bottom:462.592729px;}
.y15{bottom:466.337327px;}
.y7d{bottom:471.433575px;}
.yf9{bottom:472.170375px;}
.y68{bottom:473.043375px;}
.y94{bottom:473.136075px;}
.y3d{bottom:473.627025px;}
.yb2{bottom:474.124424px;}
.yc2{bottom:479.786922px;}
.y14{bottom:483.621521px;}
.y93{bottom:488.701868px;}
.y67{bottom:490.237568px;}
.yb1{bottom:491.318617px;}
.yc1{bottom:497.071865px;}
.yf8{bottom:498.442565px;}
.y3c{bottom:499.899214px;}
.y13{bottom:500.815714px;}
.y92{bottom:504.186062px;}
.y66{bottom:507.522511px;}
.yb0{bottom:508.603561px;}
.yd5{bottom:513.996058px;}
.yc0{bottom:514.356058px;}
.yf7{bottom:515.637508px;}
.y3b{bottom:517.093407px;}
.y12{bottom:518.100657px;}
.y91{bottom:519.751856px;}
.y7c{bottom:523.720254px;}
.y65{bottom:524.806704px;}
.yd4{bottom:529.561852px;}
.yf6{bottom:532.921701px;}
.y3a{bottom:534.378350px;}
.y90{bottom:535.236050px;}
.y11{bottom:535.384850px;}
.y7b{bottom:539.286048px;}
.ybf{bottom:540.373998px;}
.y64{bottom:542.000897px;}
.yd3{bottom:545.046046px;}
.y39{bottom:551.572543px;}
.y10{bottom:552.579793px;}
.ybe{bottom:555.939042px;}
.yf5{bottom:559.194640px;}
.y63{bottom:559.285840px;}
.yaf{bottom:560.889040px;}
.y38{bottom:568.856736px;}
.yf{bottom:569.863986px;}
.ybd{bottom:571.423985px;}
.yf4{bottom:576.387483px;}
.yae{bottom:576.454833px;}
.y62{bottom:585.378030px;}
.y37{bottom:586.141680px;}
.ybc{bottom:586.989029px;}
.ye{bottom:587.148179px;}
.yad{bottom:591.939027px;}
.yf3{bottom:602.659673px;}
.y36{bottom:603.335873px;}
.yd{bottom:604.341622px;}
.yac{bottom:607.423971px;}
.yf2{bottom:619.943866px;}
.y35{bottom:620.620816px;}
.yc{bottom:621.625815px;}
.yab{bottom:622.989015px;}
.yaa{bottom:638.473959px;}
.yb{bottom:638.910008px;}
.yf1{bottom:646.126806px;}
.y34{bottom:646.893005px;}
.ya9{bottom:654.039002px;}
.ya{bottom:656.104952px;}
.yf0{bottom:663.410999px;}
.y33{bottom:664.087198px;}
.y32{bottom:681.372141px;}
.y61{bottom:682.025991px;}
.y9{bottom:682.211991px;}
.y8e{bottom:683.813990px;}
.yef{bottom:689.683938px;}
.y31{bottom:698.656335px;}
.yee{bottom:706.878131px;}
.y60{bottom:711.275979px;}
.y30{bottom:715.850528px;}
.yed{bottom:724.162324px;}
.y2f{bottom:733.135471px;}
.y8{bottom:743.669967px;}
.y2e{bottom:750.419664px;}
.yec{bottom:750.435264px;}
.y5e{bottom:755.195962px;}
.y7{bottom:759.155960px;}
.y2d{bottom:767.614607px;}
.yeb{bottom:767.629457px;}
.ya6{bottom:779.311452px;}
.y6{bottom:784.085800px;}
.y2c{bottom:784.898800px;}
.y5f{bottom:786.335949px;}
.y5b{bottom:791.285947px;}
.yea{bottom:793.901646px;}
.y5d{bottom:808.475941px;}
.y2b{bottom:810.989640px;}
.ye9{bottom:811.186590px;}
.yd2{bottom:811.877639px;}
.y5{bottom:813.678989px;}
.y8c{bottom:815.759938px;}
.ya8{bottom:818.284887px;}
.y8f{bottom:824.846784px;}
.y59{bottom:825.305934px;}
.ye8{bottom:828.380783px;}
.yd1{bottom:829.162582px;}
.y8d{bottom:829.437127px;}
.y5a{bottom:840.065928px;}
.y4{bottom:841.313927px;}
.yd0{bottom:846.355425px;}
.y54{bottom:852.391063px;}
.ye7{bottom:854.652972px;}
.y56{bottom:858.155921px;}
.y5c{bottom:865.535918px;}
.y53{bottom:868.412407px;}
.ye6{bottom:871.937915px;}
.y2a{bottom:872.627615px;}
.y57{bottom:879.127262px;}
.y52{bottom:883.175911px;}
.y58{bottom:888.127259px;}
.ycf{bottom:889.911808px;}
.ye5{bottom:898.120105px;}
.y51{bottom:898.385905px;}
.y29{bottom:907.106751px;}
.y55{bottom:914.761038px;}
.y7a{bottom:914.855898px;}
.ye4{bottom:915.404298px;}
.y28{bottom:924.390944px;}
.ya7{bottom:931.501391px;}
.y8b{bottom:936.905889px;}
.ya5{bottom:939.245888px;}
.ye3{bottom:941.405887px;}
.y27{bottom:941.585887px;}
.y3{bottom:991.265867px;}
.y2{bottom:1006.025862px;}
.y26{bottom:1008.275861px;}
.hc{height:20.316323px;}
.hb{height:25.114109px;}
.he{height:31.587878px;}
.ha{height:33.244791px;}
.h10{height:33.874340px;}
.h3{height:35.494439px;}
.hd{height:37.305798px;}
.hf{height:39.491469px;}
.h2{height:39.493771px;}
.h6{height:47.381817px;}
.h8{height:52.751756px;}
.h7{height:53.397576px;}
.h5{height:58.513512px;}
.h9{height:63.175756px;}
.h4{height:85.372173px;}
.h1{height:1082.998800px;}
.h0{height:1263.000000px;}
.w1{width:658.499400px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:85.042659px;}
.x3{left:87.213158px;}
.x1d{left:90.360157px;}
.x1e{left:92.074656px;}
.x18{left:94.140156px;}
.x19{left:96.475655px;}
.x28{left:98.016454px;}
.x20{left:99.729303px;}
.x27{left:101.700153px;}
.x21{left:103.238852px;}
.x1a{left:105.210151px;}
.x8{left:106.380151px;}
.x2c{left:108.180150px;}
.x1{left:116.969760px;}
.x13{left:122.490144px;}
.x1f{left:124.663793px;}
.x22{left:132.843755px;}
.x6{left:134.010140px;}
.x2a{left:139.309637px;}
.x12{left:140.670137px;}
.x11{left:149.310133px;}
.x5{left:154.710281px;}
.x14{left:161.190129px;}
.x16{left:163.440128px;}
.xf{left:180.541614px;}
.x10{left:184.677119px;}
.xd{left:196.650115px;}
.xe{left:206.908679px;}
.x2d{left:216.531107px;}
.x15{left:230.760101px;}
.x29{left:234.716499px;}
.x4{left:236.511099px;}
.x17{left:240.570097px;}
.x25{left:256.320091px;}
.x2b{left:262.264288px;}
.x1c{left:278.364927px;}
.xc{left:281.790080px;}
.x26{left:283.677239px;}
.x7{left:287.545578px;}
.x9{left:314.550067px;}
.xa{left:316.080067px;}
.x1b{left:337.674269px;}
.xb{left:412.464028px;}
.x24{left:451.533013px;}
.x23{left:455.398511px;}
@media print{
.v3{vertical-align:-26.239990pt;}
.v4{vertical-align:-16.022500pt;}
.v2{vertical-align:-3.542500pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.269999pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.023984pt;}
.lsb{letter-spacing:0.160000pt;}
.ls8{letter-spacing:11.950502pt;}
.ls7{letter-spacing:12.479995pt;}
.lsa{letter-spacing:13.199995pt;}
.ls9{letter-spacing:13.294981pt;}
.ls1{letter-spacing:191.645060pt;}
.ls5{letter-spacing:472.532684pt;}
.ls2{letter-spacing:515.720169pt;}
.ls4{letter-spacing:538.733380pt;}
.ls3{letter-spacing:1007.619734pt;}
.ws6{word-spacing:-22.287982pt;}
.ws0{word-spacing:-13.359995pt;}
.ws4{word-spacing:-11.999995pt;}
.ws2{word-spacing:-6.895880pt;}
.ws5{word-spacing:-0.229987pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:611.580318pt;}
._1d{margin-left:-675.733191pt;}
._1{margin-left:-1.072656pt;}
._0{width:1.073593pt;}
._a{width:2.283357pt;}
._8{width:3.469298pt;}
._9{width:4.464453pt;}
._b{width:5.760317pt;}
._10{width:6.673752pt;}
._2{width:8.379305pt;}
._3{width:9.277772pt;}
._e{width:10.634315pt;}
._f{width:12.290964pt;}
._5{width:14.915395pt;}
._d{width:15.833840pt;}
._4{width:16.939431pt;}
._1b{width:17.853938pt;}
._7{width:18.769606pt;}
._6{width:19.873284pt;}
._13{width:20.844385pt;}
._c{width:21.872975pt;}
._16{width:23.246407pt;}
._17{width:24.582330pt;}
._19{width:26.153126pt;}
._18{width:27.136876pt;}
._11{width:28.312506pt;}
._12{width:29.510062pt;}
._1e{width:32.294121pt;}
._1f{width:34.019867pt;}
._15{width:37.602294pt;}
._14{width:38.555879pt;}
._20{width:42.852712pt;}
._1c{width:43.837027pt;}
._1a{width:82.618207pt;}
.fs9{font-size:24.805323pt;}
.fs8{font-size:30.642654pt;}
.fsb{font-size:31.999987pt;}
.fs7{font-size:42.559983pt;}
.fsa{font-size:43.774916pt;}
.fsd{font-size:44.047396pt;}
.fs1{font-size:45.439982pt;}
.fs4{font-size:47.999981pt;}
.fs0{font-size:50.559926pt;}
.fsc{font-size:51.351446pt;}
.fs5{font-size:53.439979pt;}
.fs3{font-size:58.559977pt;}
.fs6{font-size:63.999974pt;}
.fs2{font-size:85.439966pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:44.964883pt;}
.y25{bottom:49.684881pt;}
.y1{bottom:80.054400pt;}
.y4f{bottom:97.676329pt;}
.yce{bottom:99.583128pt;}
.y24{bottom:103.485927pt;}
.y4e{bottom:112.960723pt;}
.ycd{bottom:114.946855pt;}
.y23{bottom:118.850320pt;}
.y10a{bottom:119.054187pt;}
.y4d{bottom:128.324450pt;}
.ycc{bottom:130.229916pt;}
.y22{bottom:134.134048pt;}
.y109{bottom:134.417914pt;}
.y4c{bottom:143.608177pt;}
.y79{bottom:143.798177pt;}
.ycb{bottom:145.593643pt;}
.ya4{bottom:148.685242pt;}
.y21{bottom:149.498442pt;}
.y108{bottom:149.702308pt;}
.ye2{bottom:155.119506pt;}
.y4b{bottom:158.972571pt;}
.y78{bottom:159.081904pt;}
.yca{bottom:160.957370pt;}
.ya3{bottom:164.049636pt;}
.y20{bottom:164.862169pt;}
.ye1{bottom:170.402033pt;}
.y107{bottom:173.055365pt;}
.y4a{bottom:174.336298pt;}
.y77{bottom:174.445632pt;}
.yc9{bottom:176.241764pt;}
.ya2{bottom:179.333363pt;}
.y1f{bottom:180.145896pt;}
.ye0{bottom:185.765760pt;}
.y106{bottom:188.419759pt;}
.y49{bottom:189.620692pt;}
.y76{bottom:189.810025pt;}
.yc8{bottom:191.605491pt;}
.ya1{bottom:194.697090pt;}
.y1e{bottom:195.510290pt;}
.ydf{bottom:201.130154pt;}
.y105{bottom:203.702286pt;}
.y48{bottom:204.984419pt;}
.y75{bottom:205.093753pt;}
.ya0{bottom:210.061484pt;}
.y1d{bottom:210.874017pt;}
.y8a{bottom:211.732150pt;}
.yc7{bottom:214.729882pt;}
.y74{bottom:220.457480pt;}
.yde{bottom:224.243212pt;}
.y9f{bottom:225.345211pt;}
.y1c{bottom:226.157744pt;}
.y89{bottom:227.015877pt;}
.y104{bottom:227.055344pt;}
.y47{bottom:228.177477pt;}
.yc6{bottom:228.565477pt;}
.y73{bottom:235.821874pt;}
.y9e{bottom:240.709605pt;}
.y88{bottom:242.380271pt;}
.y103{bottom:242.419071pt;}
.y72{bottom:251.105601pt;}
.y9d{bottom:256.073332pt;}
.y1b{bottom:256.724665pt;}
.y87{bottom:257.743998pt;}
.y102{bottom:265.692795pt;}
.y71{bottom:266.469995pt;}
.y9c{bottom:271.357059pt;}
.y86{bottom:273.027725pt;}
.ydd{bottom:279.112523pt;}
.y101{bottom:281.056522pt;}
.y46{bottom:282.966788pt;}
.ybb{bottom:283.408921pt;}
.y9b{bottom:286.721453pt;}
.y85{bottom:288.392119pt;}
.y70{bottom:289.821852pt;}
.y1a{bottom:290.353985pt;}
.ydc{bottom:294.396250pt;}
.y45{bottom:298.331182pt;}
.yba{bottom:298.693315pt;}
.y9a{bottom:302.085180pt;}
.y84{bottom:303.755846pt;}
.y100{bottom:304.409580pt;}
.y6f{bottom:305.105579pt;}
.ydb{bottom:309.760644pt;}
.y44{bottom:313.614909pt;}
.yb9{bottom:314.057042pt;}
.y99{bottom:317.367708pt;}
.y83{bottom:319.040240pt;}
.yff{bottom:319.693973pt;}
.y6e{bottom:320.469973pt;}
.yda{bottom:325.124371pt;}
.y43{bottom:328.978636pt;}
.yb8{bottom:329.421436pt;}
.y98{bottom:332.732102pt;}
.y82{bottom:334.403968pt;}
.yfe{bottom:335.057701pt;}
.y6d{bottom:335.833700pt;}
.y19{bottom:337.153966pt;}
.yd9{bottom:340.408098pt;}
.y42{bottom:344.343030pt;}
.yb7{bottom:344.705163pt;}
.y81{bottom:349.767695pt;}
.y6c{bottom:351.117428pt;}
.yd8{bottom:355.772492pt;}
.yfd{bottom:358.411425pt;}
.y41{bottom:359.625557pt;}
.yb6{bottom:360.068891pt;}
.y80{bottom:365.052089pt;}
.y6b{bottom:366.481821pt;}
.y18{bottom:368.510221pt;}
.yd7{bottom:371.136220pt;}
.yfc{bottom:373.695152pt;}
.y40{bottom:374.989285pt;}
.yb5{bottom:375.433284pt;}
.y97{bottom:379.201683pt;}
.yc5{bottom:380.465416pt;}
.y6a{bottom:381.765549pt;}
.y17{bottom:383.873948pt;}
.y7f{bottom:388.403946pt;}
.yfb{bottom:389.058879pt;}
.y3f{bottom:390.353679pt;}
.yb4{bottom:390.715812pt;}
.y96{bottom:392.965411pt;}
.yd6{bottom:394.248077pt;}
.yc4{bottom:395.829143pt;}
.y69{bottom:397.129942pt;}
.y16{bottom:399.157675pt;}
.y7e{bottom:403.767673pt;}
.yfa{bottom:404.423273pt;}
.y3e{bottom:405.637406pt;}
.yb3{bottom:406.079539pt;}
.y95{bottom:406.801672pt;}
.yc3{bottom:411.193537pt;}
.y15{bottom:414.522069pt;}
.y7d{bottom:419.052067pt;}
.yf9{bottom:419.707000pt;}
.y68{bottom:420.483000pt;}
.y94{bottom:420.565400pt;}
.y3d{bottom:421.001800pt;}
.yb2{bottom:421.443933pt;}
.yc2{bottom:426.477264pt;}
.y14{bottom:429.885796pt;}
.y93{bottom:434.401661pt;}
.y67{bottom:435.766727pt;}
.yb1{bottom:436.727660pt;}
.yc1{bottom:441.841658pt;}
.yf8{bottom:443.060057pt;}
.y3c{bottom:444.354857pt;}
.y13{bottom:445.169523pt;}
.y92{bottom:448.165389pt;}
.y66{bottom:451.131121pt;}
.yb0{bottom:452.092054pt;}
.yd5{bottom:456.885385pt;}
.yc0{bottom:457.205385pt;}
.yf7{bottom:458.344451pt;}
.y3b{bottom:459.638584pt;}
.y12{bottom:460.533917pt;}
.y91{bottom:462.001650pt;}
.y7c{bottom:465.529115pt;}
.y65{bottom:466.494848pt;}
.yd4{bottom:470.721646pt;}
.yf6{bottom:473.708178pt;}
.y3a{bottom:475.002978pt;}
.y90{bottom:475.765378pt;}
.y11{bottom:475.897644pt;}
.y7b{bottom:479.365376pt;}
.ybf{bottom:480.332443pt;}
.y64{bottom:481.778575pt;}
.yd3{bottom:484.485374pt;}
.y39{bottom:490.286705pt;}
.y10{bottom:491.182038pt;}
.ybe{bottom:494.168037pt;}
.yf5{bottom:497.061902pt;}
.y63{bottom:497.142969pt;}
.yaf{bottom:498.568035pt;}
.y38{bottom:505.650432pt;}
.yf{bottom:506.545765pt;}
.ybd{bottom:507.932431pt;}
.yf4{bottom:512.344430pt;}
.yae{bottom:512.404296pt;}
.y62{bottom:520.336027pt;}
.y37{bottom:521.014826pt;}
.ybc{bottom:521.768026pt;}
.ye{bottom:521.909493pt;}
.yad{bottom:526.168024pt;}
.yf3{bottom:535.697487pt;}
.y36{bottom:536.298553pt;}
.yd{bottom:537.192553pt;}
.yac{bottom:539.932419pt;}
.yf2{bottom:551.061214pt;}
.y35{bottom:551.662947pt;}
.yc{bottom:552.556280pt;}
.yab{bottom:553.768013pt;}
.yaa{bottom:567.532408pt;}
.yb{bottom:567.920007pt;}
.yf1{bottom:574.334938pt;}
.y34{bottom:575.016005pt;}
.ya9{bottom:581.368002pt;}
.ya{bottom:583.204401pt;}
.yf0{bottom:589.698665pt;}
.y33{bottom:590.299732pt;}
.y32{bottom:605.664126pt;}
.y61{bottom:606.245325pt;}
.y9{bottom:606.410659pt;}
.y8e{bottom:607.834658pt;}
.yef{bottom:613.052389pt;}
.y31{bottom:621.027853pt;}
.yee{bottom:628.336117pt;}
.y60{bottom:632.245315pt;}
.y30{bottom:636.311580pt;}
.yed{bottom:643.699844pt;}
.y2f{bottom:651.675974pt;}
.y8{bottom:661.039970pt;}
.y2e{bottom:667.039701pt;}
.yec{bottom:667.053568pt;}
.y5e{bottom:671.285299pt;}
.y7{bottom:674.805298pt;}
.y2d{bottom:682.324095pt;}
.yeb{bottom:682.337295pt;}
.ya6{bottom:692.721291pt;}
.y6{bottom:696.965156pt;}
.y2c{bottom:697.687822pt;}
.y5f{bottom:698.965288pt;}
.y5b{bottom:703.365287pt;}
.yea{bottom:705.690352pt;}
.y5d{bottom:718.645281pt;}
.y2b{bottom:720.879680pt;}
.ye9{bottom:721.054746pt;}
.yd2{bottom:721.669013pt;}
.y5{bottom:723.270212pt;}
.y8c{bottom:725.119945pt;}
.ya8{bottom:727.364344pt;}
.y8f{bottom:733.197141pt;}
.y59{bottom:733.605275pt;}
.ye8{bottom:736.338473pt;}
.yd1{bottom:737.033406pt;}
.y8d{bottom:737.277446pt;}
.y5a{bottom:746.725269pt;}
.y4{bottom:747.834602pt;}
.yd0{bottom:752.315934pt;}
.y54{bottom:757.680945pt;}
.ye7{bottom:759.691531pt;}
.y56{bottom:762.805263pt;}
.y5c{bottom:769.365260pt;}
.y53{bottom:771.922139pt;}
.ye6{bottom:775.055925pt;}
.y2a{bottom:775.668991pt;}
.y57{bottom:781.446455pt;}
.y52{bottom:785.045254pt;}
.y58{bottom:789.446452pt;}
.ycf{bottom:791.032718pt;}
.ye5{bottom:798.328982pt;}
.y51{bottom:798.565249pt;}
.y29{bottom:806.317112pt;}
.y55{bottom:813.120923pt;}
.y7a{bottom:813.205243pt;}
.ye4{bottom:813.692709pt;}
.y28{bottom:821.680839pt;}
.ya7{bottom:828.001237pt;}
.y8b{bottom:832.805235pt;}
.ya5{bottom:834.885234pt;}
.ye3{bottom:836.805233pt;}
.y27{bottom:836.965233pt;}
.y3{bottom:881.125216pt;}
.y2{bottom:894.245210pt;}
.y26{bottom:896.245209pt;}
.hc{height:18.058954pt;}
.hb{height:22.323653pt;}
.he{height:28.078114pt;}
.ha{height:29.550926pt;}
.h10{height:30.110524pt;}
.h3{height:31.550612pt;}
.hd{height:33.160710pt;}
.hf{height:35.103528pt;}
.h2{height:35.105574pt;}
.h6{height:42.117171pt;}
.h8{height:46.890450pt;}
.h7{height:47.464512pt;}
.h5{height:52.012010pt;}
.h9{height:56.156228pt;}
.h4{height:75.886376pt;}
.h1{height:962.665600pt;}
.h0{height:1122.666667pt;}
.w1{width:585.332800pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:75.593475pt;}
.x3{left:77.522807pt;}
.x1d{left:80.320140pt;}
.x1e{left:81.844139pt;}
.x18{left:83.680138pt;}
.x19{left:85.756137pt;}
.x28{left:87.125737pt;}
.x20{left:88.648270pt;}
.x27{left:90.400136pt;}
.x21{left:91.767868pt;}
.x1a{left:93.520134pt;}
.x8{left:94.560134pt;}
.x2c{left:96.160133pt;}
.x1{left:103.973120pt;}
.x13{left:108.880128pt;}
.x1f{left:110.812261pt;}
.x22{left:118.083338pt;}
.x6{left:119.120124pt;}
.x2a{left:123.830789pt;}
.x12{left:125.040122pt;}
.x11{left:132.720119pt;}
.x5{left:137.520250pt;}
.x14{left:143.280114pt;}
.x16{left:145.280114pt;}
.xf{left:160.481435pt;}
.x10{left:164.157439pt;}
.xd{left:174.800102pt;}
.xe{left:183.918826pt;}
.x2d{left:192.472095pt;}
.x15{left:205.120090pt;}
.x29{left:208.636888pt;}
.x4{left:210.232088pt;}
.x17{left:213.840086pt;}
.x25{left:227.840081pt;}
.x2b{left:233.123812pt;}
.x1c{left:247.435490pt;}
.xc{left:250.480072pt;}
.x26{left:252.157546pt;}
.x7{left:255.596070pt;}
.x9{left:279.600060pt;}
.xa{left:280.960059pt;}
.x1b{left:300.154905pt;}
.xb{left:366.634692pt;}
.x24{left:401.362678pt;}
.x23{left:404.798676pt;}
}




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