
    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_6922b6ac24d1a7b23bc73853.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.857422;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_82060ae72913ef34406fdacb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858887;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_8837a8da56c86352c5b827ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857422;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_eb6d8fd4d984666eceba33ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.030762;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_6598ec64a10877b0c047ec91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.857422;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_6251e7e06c23da29eb2ba5ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3f748db5188330501d0bd040.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_528121d202b1f2c336c7b6ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.817871;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-8.235000px;}
.ls16{letter-spacing:-4.611600px;}
.ls5{letter-spacing:-2.371680px;}
.ls9{letter-spacing:-1.976400px;}
.ls8{letter-spacing:-0.790560px;}
.ls1a{letter-spacing:-0.592920px;}
.ls15{letter-spacing:-0.461160px;}
.ls14{letter-spacing:-0.329400px;}
.lsb{letter-spacing:-0.263520px;}
.ls1f{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.131760px;}
.ls3{letter-spacing:-0.065880px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.060120px;}
.ls1{letter-spacing:0.065880px;}
.ls12{letter-spacing:0.085644px;}
.ls11{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.111996px;}
.ls19{letter-spacing:0.118584px;}
.ls2{letter-spacing:0.131760px;}
.lsf{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.263520px;}
.ls18{letter-spacing:0.303048px;}
.ls1e{letter-spacing:0.322812px;}
.lsd{letter-spacing:0.329400px;}
.ls20{letter-spacing:0.395280px;}
.lsa{letter-spacing:0.461160px;}
.ls10{letter-spacing:0.480924px;}
.ls1b{letter-spacing:0.491400px;}
.ls13{letter-spacing:0.612684px;}
.ls17{letter-spacing:1.383480px;}
.ls7{letter-spacing:1.989576px;}
.ls1d{letter-spacing:63.571320px;}
.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;}
}
.wsf{word-spacing:-13.834800px;}
.ws15{word-spacing:-13.505400px;}
.ws0{word-spacing:-13.439520px;}
.ws1{word-spacing:-13.373640px;}
.ws2{word-spacing:-13.307760px;}
.ws12{word-spacing:-13.241880px;}
.ws1b{word-spacing:-13.044240px;}
.ws18{word-spacing:-12.912480px;}
.ws1a{word-spacing:-12.780720px;}
.wsc{word-spacing:-12.583080px;}
.ws1c{word-spacing:-10.962000px;}
.ws19{word-spacing:-8.762040px;}
.ws1d{word-spacing:-5.138640px;}
.ws20{word-spacing:-0.461160px;}
.ws16{word-spacing:-0.216000px;}
.ws7{word-spacing:-0.197640px;}
.ws6{word-spacing:-0.162000px;}
.ws9{word-spacing:-0.131760px;}
.ws17{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.065880px;}
.ws14{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:0.065880px;}
.ws4{word-spacing:0.090000px;}
.ws13{word-spacing:0.131760px;}
.ws1f{word-spacing:0.162000px;}
.ws11{word-spacing:0.197640px;}
.ws1e{word-spacing:0.263520px;}
.ws8{word-spacing:0.329400px;}
.ws10{word-spacing:0.395280px;}
.wsd{word-spacing:0.461160px;}
.ws21{word-spacing:0.592920px;}
.wse{word-spacing:1.910520px;}
.wsb{word-spacing:2.371680px;}
._8{margin-left:-9.912024px;}
._7{margin-left:-8.728164px;}
._6{margin-left:-7.259040px;}
._1{margin-left:-4.770000px;}
._2{margin-left:-3.150000px;}
._5{margin-left:-2.141100px;}
._3{margin-left:-1.080000px;}
._0{width:1.440000px;}
._4{width:2.657736px;}
._9{width:4.554720px;}
._a{width:7.299504px;}
._b{width:8.333820px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.090000px;}
.y67{bottom:113.059350px;}
.y2c{bottom:119.420640px;}
.y58{bottom:124.781940px;}
.yf3{bottom:124.861590px;}
.y8a{bottom:126.191340px;}
.ydf{bottom:127.117980px;}
.y66{bottom:134.750340px;}
.y4{bottom:136.620000px;}
.y105{bottom:136.709010px;}
.y2b{bottom:141.193980px;}
.ybe{bottom:145.796670px;}
.y57{bottom:146.472930px;}
.yf2{bottom:146.552580px;}
.y89{bottom:147.964680px;}
.yde{bottom:148.891320px;}
.y65{bottom:156.523680px;}
.y104{bottom:158.400000px;}
.y2a{bottom:162.884970px;}
.ybd{bottom:167.487660px;}
.yf1{bottom:168.325920px;}
.y88{bottom:169.655670px;}
.ydd{bottom:170.582310px;}
.y64{bottom:178.214670px;}
.y56{bottom:180.219960px;}
.y29{bottom:184.658310px;}
.ybc{bottom:189.261000px;}
.yf0{bottom:190.099260px;}
.y87{bottom:191.429010px;}
.y103{bottom:192.155670px;}
.ydc{bottom:192.355650px;}
.y63{bottom:199.988010px;}
.y55{bottom:201.993300px;}
.y28{bottom:206.349300px;}
.ybb{bottom:210.951990px;}
.y86{bottom:213.120000px;}
.y102{bottom:213.929010px;}
.ydb{bottom:214.046640px;}
.y62{bottom:221.679000px;}
.y54{bottom:223.684290px;}
.yef{bottom:223.763940px;}
.y27{bottom:228.122640px;}
.yba{bottom:232.725330px;}
.y9b{bottom:233.285670px;}
.y101{bottom:235.620000px;}
.yda{bottom:235.819980px;}
.y61{bottom:243.452340px;}
.y53{bottom:245.457630px;}
.yee{bottom:245.537280px;}
.y85{bottom:245.700000px;}
.y26{bottom:249.813630px;}
.yb9{bottom:254.498670px;}
.y9a{bottom:254.976660px;}
.yd9{bottom:257.510970px;}
.y52{bottom:267.148620px;}
.y100{bottom:269.376660px;}
.y25{bottom:271.586970px;}
.y84{bottom:272.054970px;}
.y60{bottom:276.030000px;}
.yb8{bottom:276.189660px;}
.y99{bottom:276.750000px;}
.yd8{bottom:279.284310px;}
.y51{bottom:288.921960px;}
.yff{bottom:291.150000px;}
.y24{bottom:293.277960px;}
.y5f{bottom:294.996690px;}
.yb7{bottom:297.963000px;}
.y98{bottom:298.440000px;}
.yed{bottom:300.975300px;}
.y50{bottom:310.612950px;}
.y5e{bottom:312.092550px;}
.yd7{bottom:313.031340px;}
.y23{bottom:315.051300px;}
.yb6{bottom:319.653990px;}
.y97{bottom:320.221350px;}
.yec{bottom:322.748640px;}
.yfe{bottom:324.915930px;}
.y4f{bottom:332.386290px;}
.yd6{bottom:334.722330px;}
.y22{bottom:336.742290px;}
.yb5{bottom:341.427330px;}
.y96{bottom:341.912340px;}
.yeb{bottom:344.439630px;}
.y4e{bottom:354.077280px;}
.yd5{bottom:356.495670px;}
.y21{bottom:358.515630px;}
.yfd{bottom:358.580610px;}
.yb4{bottom:363.118320px;}
.yea{bottom:366.212970px;}
.y95{bottom:374.490000px;}
.y4d{bottom:375.850620px;}
.yd4{bottom:378.186660px;}
.y20{bottom:380.206620px;}
.yfc{bottom:380.353950px;}
.yb3{bottom:384.891660px;}
.ye9{bottom:387.903960px;}
.y94{bottom:393.520230px;}
.yd3{bottom:399.960000px;}
.y1f{bottom:401.979960px;}
.yb2{bottom:406.582650px;}
.y4c{bottom:409.597650px;}
.ye8{bottom:409.677300px;}
.y93{bottom:410.616090px;}
.yfb{bottom:414.100980px;}
.yd2{bottom:421.650990px;}
.y1e{bottom:423.670950px;}
.yb1{bottom:428.355990px;}
.y4b{bottom:431.288640px;}
.ye7{bottom:431.368290px;}
.yfa{bottom:435.791970px;}
.yd1{bottom:443.424330px;}
.yb0{bottom:450.046980px;}
.ye6{bottom:453.141630px;}
.y1d{bottom:457.417980px;}
.y4a{bottom:465.035670px;}
.yd0{bottom:465.115320px;}
.yf9{bottom:469.539000px;}
.ye5{bottom:474.832620px;}
.y1c{bottom:479.191320px;}
.yaf{bottom:483.794010px;}
.y49{bottom:486.809010px;}
.ycf{bottom:486.888660px;}
.yf8{bottom:491.312340px;}
.ye4{bottom:496.605960px;}
.y83{bottom:496.606950px;}
.y1b{bottom:500.882310px;}
.yae{bottom:505.485000px;}
.y48{bottom:508.500000px;}
.yce{bottom:508.579650px;}
.y82{bottom:518.297940px;}
.y1a{bottom:522.655650px;}
.yf7{bottom:523.885500px;}
.yad{bottom:527.258340px;}
.y47{bottom:530.352990px;}
.y81{bottom:540.071280px;}
.yf6{bottom:541.530000px;}
.ycd{bottom:542.326680px;}
.y19{bottom:544.346640px;}
.yac{bottom:548.949330px;}
.y46{bottom:552.043980px;}
.yf5{bottom:560.624850px;}
.y80{bottom:561.762270px;}
.ycc{bottom:564.100020px;}
.y18{bottom:566.119980px;}
.yab{bottom:570.722670px;}
.y45{bottom:573.817320px;}
.yf4{bottom:577.638360px;}
.y7f{bottom:583.535610px;}
.ycb{bottom:585.791010px;}
.y17{bottom:587.810970px;}
.yaa{bottom:592.496010px;}
.y44{bottom:595.508310px;}
.y7e{bottom:605.226600px;}
.yca{bottom:607.564350px;}
.y16{bottom:609.584310px;}
.ya9{bottom:614.187000px;}
.y43{bottom:617.281650px;}
.yc9{bottom:629.255340px;}
.y15{bottom:631.275300px;}
.ya8{bottom:635.960340px;}
.y42{bottom:638.972640px;}
.y7d{bottom:638.973630px;}
.yc8{bottom:651.028680px;}
.y14{bottom:653.048640px;}
.ya7{bottom:657.651330px;}
.y41{bottom:660.745980px;}
.y7c{bottom:660.746970px;}
.yc7{bottom:672.719670px;}
.y13{bottom:674.739630px;}
.ya6{bottom:679.424670px;}
.y40{bottom:682.436970px;}
.y7b{bottom:682.437960px;}
.y5d{bottom:692.154270px;}
.yc6{bottom:694.493010px;}
.ya5{bottom:701.115660px;}
.y3f{bottom:704.210310px;}
.y7a{bottom:704.211300px;}
.y12{bottom:708.486660px;}
.yc5{bottom:716.184000px;}
.y3e{bottom:725.901300px;}
.y79{bottom:725.902290px;}
.y11{bottom:730.260000px;}
.ya4{bottom:734.862690px;}
.yc4{bottom:737.957340px;}
.y3d{bottom:747.674640px;}
.y78{bottom:747.675630px;}
.y10{bottom:751.958640px;}
.ya3{bottom:756.553680px;}
.yc3{bottom:759.648330px;}
.y3c{bottom:769.365630px;}
.y77{bottom:769.366620px;}
.yf{bottom:773.731980px;}
.ya2{bottom:778.327020px;}
.yc2{bottom:781.421670px;}
.y3b{bottom:791.138970px;}
.y76{bottom:791.139960px;}
.y110{bottom:798.581610px;}
.ya1{bottom:800.018010px;}
.yc1{bottom:803.112660px;}
.ye{bottom:807.479010px;}
.y3a{bottom:812.829960px;}
.y75{bottom:812.830950px;}
.ya0{bottom:821.791350px;}
.yc0{bottom:824.886000px;}
.yd{bottom:829.170000px;}
.y10f{bottom:832.328640px;}
.y39{bottom:834.603300px;}
.y74{bottom:834.604290px;}
.y9f{bottom:843.482340px;}
.y92{bottom:846.576990px;}
.y38{bottom:856.294290px;}
.y73{bottom:856.295280px;}
.ybf{bottom:858.633030px;}
.yc{bottom:861.750000px;}
.y10e{bottom:866.075670px;}
.ye3{bottom:868.350330px;}
.y9e{bottom:876.060000px;}
.y37{bottom:878.067630px;}
.y91{bottom:880.324020px;}
.y10d{bottom:887.766660px;}
.ye2{bottom:890.041320px;}
.y72{bottom:890.042310px;}
.yb{bottom:892.711980px;}
.y9d{bottom:895.048200px;}
.y36{bottom:899.758620px;}
.y90{bottom:902.097360px;}
.y10c{bottom:909.540000px;}
.ye1{bottom:911.814660px;}
.y71{bottom:911.815650px;}
.y9c{bottom:912.144060px;}
.ya{bottom:914.402970px;}
.y35{bottom:921.531960px;}
.y8f{bottom:923.788350px;}
.ye0{bottom:933.505650px;}
.y70{bottom:933.506640px;}
.y10b{bottom:943.205670px;}
.y34{bottom:943.222950px;}
.y8e{bottom:945.561690px;}
.y9{bottom:948.150000px;}
.y5c{bottom:955.278990px;}
.y6f{bottom:955.279980px;}
.y2{bottom:964.350000px;}
.y10a{bottom:964.979010px;}
.y8d{bottom:967.252680px;}
.y33{bottom:976.969980px;}
.y6e{bottom:976.970970px;}
.y8{bottom:985.590720px;}
.y109{bottom:986.670000px;}
.y8c{bottom:989.026020px;}
.y32{bottom:998.743320px;}
.y6d{bottom:998.744310px;}
.y7{bottom:1005.750000px;}
.y8b{bottom:1010.717010px;}
.y108{bottom:1020.425670px;}
.y5b{bottom:1020.434310px;}
.y6c{bottom:1020.435300px;}
.y31{bottom:1032.490350px;}
.y6{bottom:1041.570000px;}
.y107{bottom:1042.199010px;}
.y5a{bottom:1042.207650px;}
.y6b{bottom:1042.208640px;}
.y30{bottom:1054.181340px;}
.y106{bottom:1063.890000px;}
.y59{bottom:1063.898640px;}
.y5{bottom:1071.360000px;}
.y2f{bottom:1075.954680px;}
.y6a{bottom:1075.955670px;}
.y2e{bottom:1097.645670px;}
.y69{bottom:1097.646660px;}
.y2d{bottom:1119.419010px;}
.y68{bottom:1119.420000px;}
.y1{bottom:1141.110000px;}
.h5{height:36.360352px;}
.h2{height:44.359629px;}
.h8{height:44.456133px;}
.h7{height:45.641602px;}
.h6{height:55.682754px;}
.h4{height:60.732422px;}
.h3{height:157.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:173.158500px;}
.w3{width:494.820000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:127.620000px;}
.x12{left:150.300000px;}
.x16{left:154.620000px;}
.x2{left:165.420000px;}
.x10{left:173.880000px;}
.x7{left:180.735750px;}
.xe{left:232.740000px;}
.xc{left:265.140000px;}
.xa{left:290.790000px;}
.x13{left:300.325500px;}
.x3{left:302.220000px;}
.x5{left:309.960000px;}
.x8{left:446.495670px;}
.x6{left:548.550000px;}
.x14{left:604.631340px;}
.xd{left:625.392810px;}
.x15{left:634.787910px;}
.x11{left:687.204720px;}
.x9{left:697.416120px;}
.xb{left:751.437720px;}
.xf{left:765.365670px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-7.320000pt;}
.ls16{letter-spacing:-4.099200pt;}
.ls5{letter-spacing:-2.108160pt;}
.ls9{letter-spacing:-1.756800pt;}
.ls8{letter-spacing:-0.702720pt;}
.ls1a{letter-spacing:-0.527040pt;}
.ls15{letter-spacing:-0.409920pt;}
.ls14{letter-spacing:-0.292800pt;}
.lsb{letter-spacing:-0.234240pt;}
.ls1f{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.117120pt;}
.ls3{letter-spacing:-0.058560pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.053440pt;}
.ls1{letter-spacing:0.058560pt;}
.ls12{letter-spacing:0.076128pt;}
.ls11{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.099552pt;}
.ls19{letter-spacing:0.105408pt;}
.ls2{letter-spacing:0.117120pt;}
.lsf{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.234240pt;}
.ls18{letter-spacing:0.269376pt;}
.ls1e{letter-spacing:0.286944pt;}
.lsd{letter-spacing:0.292800pt;}
.ls20{letter-spacing:0.351360pt;}
.lsa{letter-spacing:0.409920pt;}
.ls10{letter-spacing:0.427488pt;}
.ls1b{letter-spacing:0.436800pt;}
.ls13{letter-spacing:0.544608pt;}
.ls17{letter-spacing:1.229760pt;}
.ls7{letter-spacing:1.768512pt;}
.ls1d{letter-spacing:56.507840pt;}
.wsf{word-spacing:-12.297600pt;}
.ws15{word-spacing:-12.004800pt;}
.ws0{word-spacing:-11.946240pt;}
.ws1{word-spacing:-11.887680pt;}
.ws2{word-spacing:-11.829120pt;}
.ws12{word-spacing:-11.770560pt;}
.ws1b{word-spacing:-11.594880pt;}
.ws18{word-spacing:-11.477760pt;}
.ws1a{word-spacing:-11.360640pt;}
.wsc{word-spacing:-11.184960pt;}
.ws1c{word-spacing:-9.744000pt;}
.ws19{word-spacing:-7.788480pt;}
.ws1d{word-spacing:-4.567680pt;}
.ws20{word-spacing:-0.409920pt;}
.ws16{word-spacing:-0.192000pt;}
.ws7{word-spacing:-0.175680pt;}
.ws6{word-spacing:-0.144000pt;}
.ws9{word-spacing:-0.117120pt;}
.ws17{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.058560pt;}
.ws14{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:0.058560pt;}
.ws4{word-spacing:0.080000pt;}
.ws13{word-spacing:0.117120pt;}
.ws1f{word-spacing:0.144000pt;}
.ws11{word-spacing:0.175680pt;}
.ws1e{word-spacing:0.234240pt;}
.ws8{word-spacing:0.292800pt;}
.ws10{word-spacing:0.351360pt;}
.wsd{word-spacing:0.409920pt;}
.ws21{word-spacing:0.527040pt;}
.wse{word-spacing:1.698240pt;}
.wsb{word-spacing:2.108160pt;}
._8{margin-left:-8.810688pt;}
._7{margin-left:-7.758368pt;}
._6{margin-left:-6.452480pt;}
._1{margin-left:-4.240000pt;}
._2{margin-left:-2.800000pt;}
._5{margin-left:-1.903200pt;}
._3{margin-left:-0.960000pt;}
._0{width:1.280000pt;}
._4{width:2.362432pt;}
._9{width:4.048640pt;}
._a{width:6.488448pt;}
._b{width:7.407840pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.080000pt;}
.y67{bottom:100.497200pt;}
.y2c{bottom:106.151680pt;}
.y58{bottom:110.917280pt;}
.yf3{bottom:110.988080pt;}
.y8a{bottom:112.170080pt;}
.ydf{bottom:112.993760pt;}
.y66{bottom:119.778080pt;}
.y4{bottom:121.440000pt;}
.y105{bottom:121.519120pt;}
.y2b{bottom:125.505760pt;}
.ybe{bottom:129.597040pt;}
.y57{bottom:130.198160pt;}
.yf2{bottom:130.268960pt;}
.y89{bottom:131.524160pt;}
.yde{bottom:132.347840pt;}
.y65{bottom:139.132160pt;}
.y104{bottom:140.800000pt;}
.y2a{bottom:144.786640pt;}
.ybd{bottom:148.877920pt;}
.yf1{bottom:149.623040pt;}
.y88{bottom:150.805040pt;}
.ydd{bottom:151.628720pt;}
.y64{bottom:158.413040pt;}
.y56{bottom:160.195520pt;}
.y29{bottom:164.140720pt;}
.ybc{bottom:168.232000pt;}
.yf0{bottom:168.977120pt;}
.y87{bottom:170.159120pt;}
.y103{bottom:170.805040pt;}
.ydc{bottom:170.982800pt;}
.y63{bottom:177.767120pt;}
.y55{bottom:179.549600pt;}
.y28{bottom:183.421600pt;}
.ybb{bottom:187.512880pt;}
.y86{bottom:189.440000pt;}
.y102{bottom:190.159120pt;}
.ydb{bottom:190.263680pt;}
.y62{bottom:197.048000pt;}
.y54{bottom:198.830480pt;}
.yef{bottom:198.901280pt;}
.y27{bottom:202.775680pt;}
.yba{bottom:206.866960pt;}
.y9b{bottom:207.365040pt;}
.y101{bottom:209.440000pt;}
.yda{bottom:209.617760pt;}
.y61{bottom:216.402080pt;}
.y53{bottom:218.184560pt;}
.yee{bottom:218.255360pt;}
.y85{bottom:218.400000pt;}
.y26{bottom:222.056560pt;}
.yb9{bottom:226.221040pt;}
.y9a{bottom:226.645920pt;}
.yd9{bottom:228.898640pt;}
.y52{bottom:237.465440pt;}
.y100{bottom:239.445920pt;}
.y25{bottom:241.410640pt;}
.y84{bottom:241.826640pt;}
.y60{bottom:245.360000pt;}
.yb8{bottom:245.501920pt;}
.y99{bottom:246.000000pt;}
.yd8{bottom:248.252720pt;}
.y51{bottom:256.819520pt;}
.yff{bottom:258.800000pt;}
.y24{bottom:260.691520pt;}
.y5f{bottom:262.219280pt;}
.yb7{bottom:264.856000pt;}
.y98{bottom:265.280000pt;}
.yed{bottom:267.533600pt;}
.y50{bottom:276.100400pt;}
.y5e{bottom:277.415600pt;}
.yd7{bottom:278.250080pt;}
.y23{bottom:280.045600pt;}
.yb6{bottom:284.136880pt;}
.y97{bottom:284.641200pt;}
.yec{bottom:286.887680pt;}
.yfe{bottom:288.814160pt;}
.y4f{bottom:295.454480pt;}
.yd6{bottom:297.530960pt;}
.y22{bottom:299.326480pt;}
.yb5{bottom:303.490960pt;}
.y96{bottom:303.922080pt;}
.yeb{bottom:306.168560pt;}
.y4e{bottom:314.735360pt;}
.yd5{bottom:316.885040pt;}
.y21{bottom:318.680560pt;}
.yfd{bottom:318.738320pt;}
.yb4{bottom:322.771840pt;}
.yea{bottom:325.522640pt;}
.y95{bottom:332.880000pt;}
.y4d{bottom:334.089440pt;}
.yd4{bottom:336.165920pt;}
.y20{bottom:337.961440pt;}
.yfc{bottom:338.092400pt;}
.yb3{bottom:342.125920pt;}
.ye9{bottom:344.803520pt;}
.y94{bottom:349.795760pt;}
.yd3{bottom:355.520000pt;}
.y1f{bottom:357.315520pt;}
.yb2{bottom:361.406800pt;}
.y4c{bottom:364.086800pt;}
.ye8{bottom:364.157600pt;}
.y93{bottom:364.992080pt;}
.yfb{bottom:368.089760pt;}
.yd2{bottom:374.800880pt;}
.y1e{bottom:376.596400pt;}
.yb1{bottom:380.760880pt;}
.y4b{bottom:383.367680pt;}
.ye7{bottom:383.438480pt;}
.yfa{bottom:387.370640pt;}
.yd1{bottom:394.154960pt;}
.yb0{bottom:400.041760pt;}
.ye6{bottom:402.792560pt;}
.y1d{bottom:406.593760pt;}
.y4a{bottom:413.365040pt;}
.yd0{bottom:413.435840pt;}
.yf9{bottom:417.368000pt;}
.ye5{bottom:422.073440pt;}
.y1c{bottom:425.947840pt;}
.yaf{bottom:430.039120pt;}
.y49{bottom:432.719120pt;}
.ycf{bottom:432.789920pt;}
.yf8{bottom:436.722080pt;}
.ye4{bottom:441.427520pt;}
.y83{bottom:441.428400pt;}
.y1b{bottom:445.228720pt;}
.yae{bottom:449.320000pt;}
.y48{bottom:452.000000pt;}
.yce{bottom:452.070800pt;}
.y82{bottom:460.709280pt;}
.y1a{bottom:464.582800pt;}
.yf7{bottom:465.676000pt;}
.yad{bottom:468.674080pt;}
.y47{bottom:471.424880pt;}
.y81{bottom:480.063360pt;}
.yf6{bottom:481.360000pt;}
.ycd{bottom:482.068160pt;}
.y19{bottom:483.863680pt;}
.yac{bottom:487.954960pt;}
.y46{bottom:490.705760pt;}
.yf5{bottom:498.333200pt;}
.y80{bottom:499.344240pt;}
.ycc{bottom:501.422240pt;}
.y18{bottom:503.217760pt;}
.yab{bottom:507.309040pt;}
.y45{bottom:510.059840pt;}
.yf4{bottom:513.456320pt;}
.y7f{bottom:518.698320pt;}
.ycb{bottom:520.703120pt;}
.y17{bottom:522.498640pt;}
.yaa{bottom:526.663120pt;}
.y44{bottom:529.340720pt;}
.y7e{bottom:537.979200pt;}
.yca{bottom:540.057200pt;}
.y16{bottom:541.852720pt;}
.ya9{bottom:545.944000pt;}
.y43{bottom:548.694800pt;}
.yc9{bottom:559.338080pt;}
.y15{bottom:561.133600pt;}
.ya8{bottom:565.298080pt;}
.y42{bottom:567.975680pt;}
.y7d{bottom:567.976560pt;}
.yc8{bottom:578.692160pt;}
.y14{bottom:580.487680pt;}
.ya7{bottom:584.578960pt;}
.y41{bottom:587.329760pt;}
.y7c{bottom:587.330640pt;}
.yc7{bottom:597.973040pt;}
.y13{bottom:599.768560pt;}
.ya6{bottom:603.933040pt;}
.y40{bottom:606.610640pt;}
.y7b{bottom:606.611520pt;}
.y5d{bottom:615.248240pt;}
.yc6{bottom:617.327120pt;}
.ya5{bottom:623.213920pt;}
.y3f{bottom:625.964720pt;}
.y7a{bottom:625.965600pt;}
.y12{bottom:629.765920pt;}
.yc5{bottom:636.608000pt;}
.y3e{bottom:645.245600pt;}
.y79{bottom:645.246480pt;}
.y11{bottom:649.120000pt;}
.ya4{bottom:653.211280pt;}
.yc4{bottom:655.962080pt;}
.y3d{bottom:664.599680pt;}
.y78{bottom:664.600560pt;}
.y10{bottom:668.407680pt;}
.ya3{bottom:672.492160pt;}
.yc3{bottom:675.242960pt;}
.y3c{bottom:683.880560pt;}
.y77{bottom:683.881440pt;}
.yf{bottom:687.761760pt;}
.ya2{bottom:691.846240pt;}
.yc2{bottom:694.597040pt;}
.y3b{bottom:703.234640pt;}
.y76{bottom:703.235520pt;}
.y110{bottom:709.850320pt;}
.ya1{bottom:711.127120pt;}
.yc1{bottom:713.877920pt;}
.ye{bottom:717.759120pt;}
.y3a{bottom:722.515520pt;}
.y75{bottom:722.516400pt;}
.ya0{bottom:730.481200pt;}
.yc0{bottom:733.232000pt;}
.yd{bottom:737.040000pt;}
.y10f{bottom:739.847680pt;}
.y39{bottom:741.869600pt;}
.y74{bottom:741.870480pt;}
.y9f{bottom:749.762080pt;}
.y92{bottom:752.512880pt;}
.y38{bottom:761.150480pt;}
.y73{bottom:761.151360pt;}
.ybf{bottom:763.229360pt;}
.yc{bottom:766.000000pt;}
.y10e{bottom:769.845040pt;}
.ye3{bottom:771.866960pt;}
.y9e{bottom:778.720000pt;}
.y37{bottom:780.504560pt;}
.y91{bottom:782.510240pt;}
.y10d{bottom:789.125920pt;}
.ye2{bottom:791.147840pt;}
.y72{bottom:791.148720pt;}
.yb{bottom:793.521760pt;}
.y9d{bottom:795.598400pt;}
.y36{bottom:799.785440pt;}
.y90{bottom:801.864320pt;}
.y10c{bottom:808.480000pt;}
.ye1{bottom:810.501920pt;}
.y71{bottom:810.502800pt;}
.y9c{bottom:810.794720pt;}
.ya{bottom:812.802640pt;}
.y35{bottom:819.139520pt;}
.y8f{bottom:821.145200pt;}
.ye0{bottom:829.782800pt;}
.y70{bottom:829.783680pt;}
.y10b{bottom:838.405040pt;}
.y34{bottom:838.420400pt;}
.y8e{bottom:840.499280pt;}
.y9{bottom:842.800000pt;}
.y5c{bottom:849.136880pt;}
.y6f{bottom:849.137760pt;}
.y2{bottom:857.200000pt;}
.y10a{bottom:857.759120pt;}
.y8d{bottom:859.780160pt;}
.y33{bottom:868.417760pt;}
.y6e{bottom:868.418640pt;}
.y8{bottom:876.080640pt;}
.y109{bottom:877.040000pt;}
.y8c{bottom:879.134240pt;}
.y32{bottom:887.771840pt;}
.y6d{bottom:887.772720pt;}
.y7{bottom:894.000000pt;}
.y8b{bottom:898.415120pt;}
.y108{bottom:907.045040pt;}
.y5b{bottom:907.052720pt;}
.y6c{bottom:907.053600pt;}
.y31{bottom:917.769200pt;}
.y6{bottom:925.840000pt;}
.y107{bottom:926.399120pt;}
.y5a{bottom:926.406800pt;}
.y6b{bottom:926.407680pt;}
.y30{bottom:937.050080pt;}
.y106{bottom:945.680000pt;}
.y59{bottom:945.687680pt;}
.y5{bottom:952.320000pt;}
.y2f{bottom:956.404160pt;}
.y6a{bottom:956.405040pt;}
.y2e{bottom:975.685040pt;}
.y69{bottom:975.685920pt;}
.y2d{bottom:995.039120pt;}
.y68{bottom:995.040000pt;}
.y1{bottom:1014.320000pt;}
.h5{height:32.320312pt;}
.h2{height:39.430781pt;}
.h8{height:39.516562pt;}
.h7{height:40.570312pt;}
.h6{height:49.495781pt;}
.h4{height:53.984375pt;}
.h3{height:140.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:153.918667pt;}
.w3{width:439.840000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:113.440000pt;}
.x12{left:133.600000pt;}
.x16{left:137.440000pt;}
.x2{left:147.040000pt;}
.x10{left:154.560000pt;}
.x7{left:160.654000pt;}
.xe{left:206.880000pt;}
.xc{left:235.680000pt;}
.xa{left:258.480000pt;}
.x13{left:266.956000pt;}
.x3{left:268.640000pt;}
.x5{left:275.520000pt;}
.x8{left:396.885040pt;}
.x6{left:487.600000pt;}
.x14{left:537.450080pt;}
.xd{left:555.904720pt;}
.x15{left:564.255920pt;}
.x11{left:610.848640pt;}
.x9{left:619.925440pt;}
.xb{left:667.944640pt;}
.xf{left:680.325040pt;}
}




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