
    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_abc44ee5145f1e137fbf91db.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_717b32ac62cea3ac463a81a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689453;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_5e4b020e78430818993745fe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_24176c7645a1d5c82c5556c0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3703e7c305dc47ecfbfaf25b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_b252f46d002d3387bbf3e3bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973633;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_d5ee925b8512a48299c9fe84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_6b01c5d7f8c9e903aaf17c69.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bcac8df8980c27f2335bb38c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.713867;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);}
.v2{vertical-align:-141.755900px;}
.v4{vertical-align:-102.910071px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.992165px;}
.v3{vertical-align:72.765011px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010548px;}
.ls7{letter-spacing:24.059724px;}
.ls2{letter-spacing:54.043472px;}
.ls1{letter-spacing:81.053076px;}
.ls3{letter-spacing:81.085980px;}
.ls6{letter-spacing:174.336007px;}
.ls5{letter-spacing:247.712768px;}
.ls8{letter-spacing:295.332308px;}
.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;}
}
.ws2{word-spacing:-53.568002px;}
.ws8{word-spacing:-46.536000px;}
.ws6{word-spacing:-41.664000px;}
.ws9{word-spacing:-35.832725px;}
.ws3{word-spacing:-26.784001px;}
.ws4{word-spacing:-22.527757px;}
.ws5{word-spacing:-3.873938px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.345938px;}
.ws0{word-spacing:54.028352px;}
._9{margin-left:-18.480000px;}
._8{margin-left:-12.432000px;}
._f{margin-left:-10.512000px;}
._b{margin-left:-8.580001px;}
._7{margin-left:-6.216000px;}
._3{margin-left:-3.720000px;}
._1{margin-left:-2.676538px;}
._0{margin-left:-1.211462px;}
._4{width:1.174950px;}
._2{width:2.279025px;}
._5{width:24.008242px;}
._a{width:29.998820px;}
._6{width:36.014064px;}
._e{width:42.004716px;}
._c{width:47.995314px;}
._d{width:54.010550px;}
.fc6{color:rgb(233,113,50);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(21,96,130);}
.fc3{color:rgb(67,67,67);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:72.000002px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000006px;}
.fs6{font-size:108.000003px;}
.fs7{font-size:120.000001px;}
.fsc{font-size:129.360020px;}
.fsb{font-size:132.000007px;}
.fs5{font-size:144.000005px;}
.fsa{font-size:156.000011px;}
.fs9{font-size:167.999999px;}
.fs2{font-size:204.000001px;}
.fs4{font-size:216.000007px;}
.fsd{font-size:240.000002px;}
.fs8{font-size:264.000014px;}
.ybe{bottom:-26.470422px;}
.y0{bottom:0.000000px;}
.yb4{bottom:5.884579px;}
.ycb{bottom:5.884692px;}
.y7d{bottom:27.999965px;}
.ybd{bottom:33.904618px;}
.y99{bottom:55.593145px;}
.yb3{bottom:66.259619px;}
.yca{bottom:66.259697px;}
.y7c{bottom:72.366895px;}
.y4d{bottom:93.058492px;}
.ybc{bottom:94.279657px;}
.y89{bottom:107.137328px;}
.y98{bottom:107.490161px;}
.y60{bottom:111.553189px;}
.y7b{bottom:124.263912px;}
.yb2{bottom:126.634658px;}
.yc9{bottom:126.634726px;}
.y5f{bottom:143.953183px;}
.y4c{bottom:144.955509px;}
.ybb{bottom:154.654674px;}
.y97{bottom:159.387155px;}
.y5e{bottom:169.355139px;}
.y7a{bottom:176.160928px;}
.yc8{bottom:185.713698px;}
.yb1{bottom:187.009698px;}
.y93{bottom:187.189698px;}
.y1c{bottom:192.255618px;}
.y4b{bottom:196.852514px;}
.y88{bottom:203.401326px;}
.y96{bottom:211.284195px;}
.y72{bottom:213.720990px;}
.yba{bottom:213.733691px;}
.y9c{bottom:218.769135px;}
.y1b{bottom:224.655608px;}
.y92{bottom:225.130661px;}
.y79{bottom:228.057934px;}
.yc7{bottom:232.078695px;}
.y36{bottom:232.352419px;}
.y42{bottom:233.784150px;}
.ye{bottom:242.023444px;}
.yb0{bottom:246.088658px;}
.y4a{bottom:248.749520px;}
.y87{bottom:255.298327px;}
.y95{bottom:255.651159px;}
.y1a{bottom:257.055597px;}
.y71{bottom:258.087965px;}
.y5d{bottom:258.089101px;}
.yb9{bottom:260.098666px;}
.y6a{bottom:262.422927px;}
.yc4{bottom:265.240603px;}
.ye1{bottom:267.688805px;}
.y41{bottom:270.666151px;}
.yd{bottom:274.423440px;}
.y91{bottom:274.489667px;}
.yc6{bottom:278.443670px;}
.y78{bottom:279.954951px;}
.y83{bottom:281.749731px;}
.y35{bottom:284.249436px;}
.yd0{bottom:287.035543px;}
.y19{bottom:291.615598px;}
.yaf{bottom:292.453678px;}
.y5c{bottom:294.971102px;}
.y49{bottom:300.646536px;}
.y69{bottom:304.527933px;}
.yb8{bottom:306.463664px;}
.y40{bottom:307.548141px;}
.y24{bottom:307.652564px;}
.y90{bottom:311.134664px;}
.yc3{bottom:311.605612px;}
.ya9{bottom:312.094694px;}
.y54{bottom:322.563146px;}
.y39{bottom:323.647094px;}
.yc5{bottom:326.104691px;}
.ya6{bottom:327.109698px;}
.y50{bottom:330.138131px;}
.yc{bottom:330.705333px;}
.y77{bottom:331.851967px;}
.y5b{bottom:331.853103px;}
.y18{bottom:332.655577px;}
.y34{bottom:336.146452px;}
.yae{bottom:338.818687px;}
.ye0{bottom:339.688807px;}
.y68{bottom:340.254930px;}
.yaa{bottom:342.124691px;}
.y82{bottom:342.124703px;}
.y86{bottom:346.198665px;}
.ycf{bottom:347.410538px;}
.y23{bottom:347.537584px;}
.y8f{bottom:347.779661px;}
.y48{bottom:352.543542px;}
.yb7{bottom:352.828673px;}
.yc2{bottom:357.970609px;}
.y3f{bottom:359.445136px;}
.y70{bottom:361.881953px;}
.y17{bottom:365.055578px;}
.yd9{bottom:371.848553px;}
.ya8{bottom:372.469688px;}
.y33{bottom:373.028442px;}
.y53{bottom:374.460140px;}
.y4f{bottom:374.505129px;}
.ydf{bottom:375.688809px;}
.y67{bottom:375.981939px;}
.y28{bottom:381.468176px;}
.y76{bottom:383.748961px;}
.y5a{bottom:383.750098px;}
.y8e{bottom:384.424670px;}
.yad{bottom:385.183685px;}
.y22{bottom:387.422593px;}
.ya5{bottom:387.484681px;}
.y38{bottom:393.847085px;}
.y16{bottom:397.455546px;}
.y6f{bottom:398.763954px;}
.yb6{bottom:399.193671px;}
.yb{bottom:400.905324px;}
.y81{bottom:402.499697px;}
.y2f{bottom:403.148428px;}
.yc1{bottom:404.335612px;}
.y47{bottom:404.440525px;}
.yce{bottom:407.785521px;}
.y3e{bottom:411.342135px;}
.yde{bottom:411.688810px;}
.y66{bottom:411.708936px;}
.y27{bottom:413.868182px;}
.yd8{bottom:417.208544px;}
.y4e{bottom:418.872126px;}
.y8d{bottom:421.717668px;}
.y32{bottom:424.925436px;}
.y52{bottom:426.357145px;}
.y21{bottom:427.307602px;}
.y85{bottom:428.160948px;}
.y15{bottom:429.855580px;}
.ya7{bottom:432.844683px;}
.y6e{bottom:435.645956px;}
.y59{bottom:435.647092px;}
.yb5{bottom:445.558668px;}
.y26{bottom:446.268177px;}
.y65{bottom:447.147956px;}
.y2e{bottom:447.515426px;}
.ya4{bottom:447.859676px;}
.y80{bottom:447.859687px;}
.y46{bottom:448.807545px;}
.ya2{bottom:450.230220px;}
.yc0{bottom:450.700616px;}
.y14{bottom:462.255593px;}
.yd7{bottom:462.568534px;}
.y3d{bottom:463.239131px;}
.y37{bottom:464.047080px;}
.yac{bottom:464.059688px;}
.y20{bottom:467.192588px;}
.ycd{bottom:468.160522px;}
.y8c{bottom:469.132673px;}
.y9b{bottom:469.914712px;}
.y84{bottom:472.527951px;}
.y31{bottom:476.822436px;}
.y51{bottom:478.254137px;}
.y25{bottom:478.668174px;}
.ydd{bottom:483.688812px;}
.y9f{bottom:487.112215px;}
.y75{bottom:487.542950px;}
.y6d{bottom:487.542961px;}
.y58{bottom:487.544097px;}
.y64{bottom:488.964961px;}
.y2d{bottom:491.882424px;}
.ya3{bottom:493.219677px;}
.y13{bottom:494.655594px;}
.ybf{bottom:498.361606px;}
.y45{bottom:500.704537px;}
.ya1{bottom:502.127225px;}
.y1f{bottom:507.797591px;}
.yd6{bottom:507.928527px;}
.y7f{bottom:508.234682px;}
.y94{bottom:515.136129px;}
.y3c{bottom:515.136132px;}
.y63{bottom:515.766955px;}
.y8b{bottom:516.547678px;}
.ydc{bottom:519.688813px;}
.y9a{bottom:521.811713px;}
.y74{bottom:524.424946px;}
.yab{bottom:524.434676px;}
.y12{bottom:527.055606px;}
.y30{bottom:528.719431px;}
.ycc{bottom:529.941681px;}
.ya{bottom:534.810017px;}
.y2c{bottom:536.249432px;}
.y44{bottom:537.586531px;}
.y9e{bottom:539.009211px;}
.y6c{bottom:539.439953px;}
.y57{bottom:539.441089px;}
.y7e{bottom:553.594675px;}
.ya0{bottom:554.024217px;}
.y9{bottom:556.410018px;}
.y1e{bottom:557.312594px;}
.y62{bottom:557.583951px;}
.y11{bottom:559.455607px;}
.y8a{bottom:563.962676px;}
.y73{bottom:576.321945px;}
.y6b{bottom:576.321947px;}
.y56{bottom:576.323084px;}
.y8{bottom:578.010008px;}
.yd5{bottom:579.322193px;}
.y2b{bottom:580.616432px;}
.y61{bottom:584.385948px;}
.y9d{bottom:590.906211px;}
.ydb{bottom:591.688818px;}
.y1d{bottom:593.312598px;}
.y10{bottom:594.015591px;}
.y43{bottom:608.608333px;}
.y7{bottom:608.625016px;}
.yd2{bottom:608.834255px;}
.y6{bottom:630.225005px;}
.y3a{bottom:630.681730px;}
.yd4{bottom:644.122206px;}
.y5{bottom:651.825006px;}
.y55{bottom:662.850437px;}
.y2a{bottom:666.712060px;}
.y3b{bottom:667.222297px;}
.yda{bottom:669.173384px;}
.yf{bottom:673.935590px;}
.y29{bottom:675.556155px;}
.yd1{bottom:680.114257px;}
.y4{bottom:682.440003px;}
.y3{bottom:704.040004px;}
.yd3{bottom:708.922203px;}
.y2{bottom:734.655001px;}
.y1{bottom:766.709999px;}
.h2{height:52.453127px;}
.h4{height:61.195312px;}
.h1{height:68.160004px;}
.ha{height:73.828127px;}
.hb{height:78.679690px;}
.h9{height:78.943362px;}
.h7{height:86.642581px;}
.h15{height:87.421876px;}
.h8{height:87.714844px;}
.h14{height:96.164068px;}
.h19{height:96.269532px;}
.he{height:104.906253px;}
.h10{height:106.671855px;}
.h13{height:113.648446px;}
.h6{height:115.523441px;}
.hd{height:122.308593px;}
.hf{height:122.390625px;}
.h12{height:134.777343px;}
.h3{height:144.840000px;}
.h18{height:157.359380px;}
.h16{height:167.005807px;}
.h17{height:170.400001px;}
.h5{height:173.285162px;}
.hc{height:187.440010px;}
.h11{height:211.792980px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x2{left:-353.278361px;}
.x1{left:-348.778361px;}
.x3{left:-317.271273px;}
.x0{left:0.000000px;}
.x1e{left:21.543898px;}
.x1c{left:39.808768px;}
.x2d{left:56.556497px;}
.x16{left:58.517431px;}
.x1d{left:60.510828px;}
.x1f{left:64.555820px;}
.x19{left:65.660738px;}
.xc{left:68.376969px;}
.x23{left:71.315855px;}
.x5{left:72.586420px;}
.x17{left:79.219492px;}
.x9{left:82.280905px;}
.x20{left:85.257880px;}
.xf{left:90.019499px;}
.xd{left:96.317439px;}
.xa{left:98.340078px;}
.x26{left:101.249710px;}
.x13{left:109.110833px;}
.x18{left:111.615977px;}
.x1b{left:113.362800px;}
.x21{left:115.408773px;}
.x10{left:117.019500px;}
.x1a{left:118.759284px;}
.x27{left:122.211920px;}
.x15{left:123.610043px;}
.x11{left:129.052568px;}
.x4{left:130.115551px;}
.x2c{left:133.437115px;}
.x22{left:136.110834px;}
.x28{left:142.913980px;}
.xe{left:149.415985px;}
.x14{left:150.610044px;}
.x6{left:160.347054px;}
.x24{left:167.158198px;}
.x29{left:168.507319px;}
.x25{left:182.558866px;}
.x7{left:184.976556px;}
.x8{left:207.586424px;}
.x12{left:239.348629px;}
.x2a{left:689.296937px;}
.x2b{left:742.395483px;}
.xb{left:799.502988px;}
@media print{
.v2{vertical-align:-126.005244pt;}
.v4{vertical-align:-91.475619pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.881925pt;}
.v3{vertical-align:64.680010pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009376pt;}
.ls7{letter-spacing:21.386421pt;}
.ls2{letter-spacing:48.038642pt;}
.ls1{letter-spacing:72.047178pt;}
.ls3{letter-spacing:72.076426pt;}
.ls6{letter-spacing:154.965340pt;}
.ls5{letter-spacing:220.189127pt;}
.ls8{letter-spacing:262.517607pt;}
.ws2{word-spacing:-47.616002pt;}
.ws8{word-spacing:-41.365333pt;}
.ws6{word-spacing:-37.034667pt;}
.ws9{word-spacing:-31.851311pt;}
.ws3{word-spacing:-23.808001pt;}
.ws4{word-spacing:-20.024673pt;}
.ws5{word-spacing:-3.443500pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.307500pt;}
.ws0{word-spacing:48.025202pt;}
._9{margin-left:-16.426667pt;}
._8{margin-left:-11.050667pt;}
._f{margin-left:-9.344000pt;}
._b{margin-left:-7.626667pt;}
._7{margin-left:-5.525333pt;}
._3{margin-left:-3.306667pt;}
._1{margin-left:-2.379145pt;}
._0{margin-left:-1.076855pt;}
._4{width:1.044400pt;}
._2{width:2.025800pt;}
._5{width:21.340660pt;}
._a{width:26.665618pt;}
._6{width:32.012501pt;}
._e{width:37.337526pt;}
._c{width:42.662501pt;}
._d{width:48.009378pt;}
.fs1{font-size:64.000002pt;}
.fs3{font-size:74.666666pt;}
.fs0{font-size:85.333339pt;}
.fs6{font-size:96.000003pt;}
.fs7{font-size:106.666667pt;}
.fsc{font-size:114.986684pt;}
.fsb{font-size:117.333340pt;}
.fs5{font-size:128.000004pt;}
.fsa{font-size:138.666676pt;}
.fs9{font-size:149.333333pt;}
.fs2{font-size:181.333334pt;}
.fs4{font-size:192.000006pt;}
.fsd{font-size:213.333335pt;}
.fs8{font-size:234.666680pt;}
.ybe{bottom:-23.529264pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:5.230737pt;}
.ycb{bottom:5.230837pt;}
.y7d{bottom:24.888858pt;}
.ybd{bottom:30.137438pt;}
.y99{bottom:49.416129pt;}
.yb3{bottom:58.897439pt;}
.yca{bottom:58.897509pt;}
.y7c{bottom:64.326129pt;}
.y4d{bottom:82.718660pt;}
.ybc{bottom:83.804140pt;}
.y89{bottom:95.233180pt;}
.y98{bottom:95.546810pt;}
.y60{bottom:99.158390pt;}
.y7b{bottom:110.456810pt;}
.yb2{bottom:112.564141pt;}
.yc9{bottom:112.564201pt;}
.y5f{bottom:127.958385pt;}
.y4c{bottom:128.849341pt;}
.ybb{bottom:137.470821pt;}
.y97{bottom:141.677471pt;}
.y5e{bottom:150.537902pt;}
.y7a{bottom:156.587492pt;}
.yc8{bottom:165.078842pt;}
.yb1{bottom:166.230842pt;}
.y93{bottom:166.390842pt;}
.y1c{bottom:170.893882pt;}
.y4b{bottom:174.980013pt;}
.y88{bottom:180.801179pt;}
.y96{bottom:187.808173pt;}
.y72{bottom:189.974213pt;}
.yba{bottom:189.985503pt;}
.y9c{bottom:194.461453pt;}
.y1b{bottom:199.693873pt;}
.y92{bottom:200.116143pt;}
.y79{bottom:202.718163pt;}
.yc7{bottom:206.292174pt;}
.y36{bottom:206.535484pt;}
.y42{bottom:207.808134pt;}
.ye{bottom:215.131950pt;}
.yb0{bottom:218.745474pt;}
.y4a{bottom:221.110684pt;}
.y87{bottom:226.931846pt;}
.y95{bottom:227.245474pt;}
.y1a{bottom:228.493864pt;}
.y71{bottom:229.411524pt;}
.y5d{bottom:229.412534pt;}
.yb9{bottom:231.198814pt;}
.y6a{bottom:233.264824pt;}
.yc4{bottom:235.769425pt;}
.ye1{bottom:237.945605pt;}
.y41{bottom:240.592135pt;}
.yd{bottom:243.931947pt;}
.y91{bottom:243.990815pt;}
.yc6{bottom:247.505485pt;}
.y78{bottom:248.848845pt;}
.y83{bottom:250.444205pt;}
.y35{bottom:252.666165pt;}
.yd0{bottom:255.142705pt;}
.y19{bottom:259.213865pt;}
.yaf{bottom:259.958825pt;}
.y5c{bottom:262.196535pt;}
.y49{bottom:267.241366pt;}
.y69{bottom:270.691496pt;}
.yb8{bottom:272.412146pt;}
.y40{bottom:273.376126pt;}
.y24{bottom:273.468946pt;}
.y90{bottom:276.564146pt;}
.yc3{bottom:276.982766pt;}
.ya9{bottom:277.417506pt;}
.y54{bottom:286.722796pt;}
.y39{bottom:287.686306pt;}
.yc5{bottom:289.870836pt;}
.ya6{bottom:290.764176pt;}
.y50{bottom:293.456116pt;}
.yc{bottom:293.960296pt;}
.y77{bottom:294.979526pt;}
.y5b{bottom:294.980536pt;}
.y18{bottom:295.693846pt;}
.y34{bottom:298.796847pt;}
.yae{bottom:301.172167pt;}
.ye0{bottom:301.945607pt;}
.y68{bottom:302.448827pt;}
.yaa{bottom:304.110837pt;}
.y82{bottom:304.110847pt;}
.y86{bottom:307.732147pt;}
.ycf{bottom:308.809367pt;}
.y23{bottom:308.922297pt;}
.y8f{bottom:309.137477pt;}
.y48{bottom:313.372037pt;}
.yb7{bottom:313.625487pt;}
.yc2{bottom:318.196097pt;}
.y3f{bottom:319.506787pt;}
.y70{bottom:321.672847pt;}
.y17{bottom:324.493847pt;}
.yd9{bottom:330.532048pt;}
.ya8{bottom:331.084168pt;}
.y33{bottom:331.580838pt;}
.y53{bottom:332.853458pt;}
.y4f{bottom:332.893448pt;}
.ydf{bottom:333.945608pt;}
.y67{bottom:334.206168pt;}
.y28{bottom:339.082823pt;}
.y76{bottom:341.110188pt;}
.y5a{bottom:341.111198pt;}
.y8e{bottom:341.710818pt;}
.yad{bottom:342.385498pt;}
.y22{bottom:344.375638pt;}
.ya5{bottom:344.430828pt;}
.y38{bottom:350.086298pt;}
.y16{bottom:353.293818pt;}
.y6f{bottom:354.456848pt;}
.yb6{bottom:354.838818pt;}
.yb{bottom:356.360288pt;}
.y81{bottom:357.777508pt;}
.y2f{bottom:358.354158pt;}
.yc1{bottom:359.409432pt;}
.y47{bottom:359.502688pt;}
.yce{bottom:362.476019pt;}
.y3e{bottom:365.637454pt;}
.yde{bottom:365.945609pt;}
.y66{bottom:365.963499pt;}
.y27{bottom:367.882829pt;}
.yd8{bottom:370.852039pt;}
.y4e{bottom:372.330779pt;}
.y8d{bottom:374.860149pt;}
.y32{bottom:377.711499pt;}
.y52{bottom:378.984129pt;}
.y21{bottom:379.828979pt;}
.y85{bottom:380.587509pt;}
.y15{bottom:382.093849pt;}
.ya7{bottom:384.750829pt;}
.y6e{bottom:387.240849pt;}
.y59{bottom:387.241859pt;}
.yb5{bottom:396.052150pt;}
.y26{bottom:396.682824pt;}
.y65{bottom:397.464850pt;}
.y2e{bottom:397.791490pt;}
.ya4{bottom:398.097490pt;}
.y80{bottom:398.097500pt;}
.y46{bottom:398.940040pt;}
.ya2{bottom:400.204640pt;}
.yc0{bottom:400.622770pt;}
.y14{bottom:410.893860pt;}
.yd7{bottom:411.172030pt;}
.y3d{bottom:411.768116pt;}
.y37{bottom:412.486293pt;}
.yac{bottom:412.497500pt;}
.y20{bottom:415.282300pt;}
.ycd{bottom:416.142686pt;}
.y8c{bottom:417.006820pt;}
.y9b{bottom:417.701966pt;}
.y84{bottom:420.024845pt;}
.y31{bottom:423.842166pt;}
.y51{bottom:425.114789pt;}
.y25{bottom:425.482822pt;}
.ydd{bottom:429.945611pt;}
.y9f{bottom:432.988636pt;}
.y75{bottom:433.371511pt;}
.y6d{bottom:433.371521pt;}
.y58{bottom:433.372531pt;}
.y64{bottom:434.635521pt;}
.y2d{bottom:437.228821pt;}
.ya3{bottom:438.417491pt;}
.y13{bottom:439.693861pt;}
.ybf{bottom:442.988094pt;}
.y45{bottom:445.070699pt;}
.ya1{bottom:446.335311pt;}
.y1f{bottom:451.375636pt;}
.yd6{bottom:451.492024pt;}
.y7f{bottom:451.764161pt;}
.y94{bottom:457.898782pt;}
.y3c{bottom:457.898784pt;}
.y63{bottom:458.459516pt;}
.y8b{bottom:459.153492pt;}
.ydc{bottom:461.945612pt;}
.y9a{bottom:463.832634pt;}
.y74{bottom:466.155508pt;}
.yab{bottom:466.164157pt;}
.y12{bottom:468.493872pt;}
.y30{bottom:469.972828pt;}
.ycc{bottom:471.059272pt;}
.ya{bottom:475.386682pt;}
.y2c{bottom:476.666162pt;}
.y44{bottom:477.854694pt;}
.y9e{bottom:479.119298pt;}
.y6c{bottom:479.502180pt;}
.y57{bottom:479.503190pt;}
.y7e{bottom:492.084156pt;}
.ya0{bottom:492.465971pt;}
.y9{bottom:494.586683pt;}
.y1e{bottom:495.388973pt;}
.y62{bottom:495.630179pt;}
.y11{bottom:497.293873pt;}
.y8a{bottom:501.300156pt;}
.y73{bottom:512.286173pt;}
.y6b{bottom:512.286175pt;}
.y56{bottom:512.287185pt;}
.y8{bottom:513.786673pt;}
.yd5{bottom:514.953060pt;}
.y2b{bottom:516.103495pt;}
.y61{bottom:519.454176pt;}
.y9d{bottom:525.249966pt;}
.ydb{bottom:525.945616pt;}
.y1d{bottom:527.388976pt;}
.y10{bottom:528.013859pt;}
.y43{bottom:540.985185pt;}
.y7{bottom:541.000014pt;}
.yd2{bottom:541.186004pt;}
.y6{bottom:560.200005pt;}
.y3a{bottom:560.605982pt;}
.yd4{bottom:572.553072pt;}
.y5{bottom:579.400006pt;}
.y55{bottom:589.200389pt;}
.y2a{bottom:592.632942pt;}
.y3b{bottom:593.086486pt;}
.yda{bottom:594.820786pt;}
.yf{bottom:599.053858pt;}
.y29{bottom:600.494360pt;}
.yd1{bottom:604.546006pt;}
.y4{bottom:606.613336pt;}
.y3{bottom:625.813337pt;}
.yd3{bottom:630.153069pt;}
.y2{bottom:653.026668pt;}
.y1{bottom:681.519999pt;}
.h2{height:46.625001pt;}
.h4{height:54.395833pt;}
.h1{height:60.586670pt;}
.ha{height:65.625002pt;}
.hb{height:69.937502pt;}
.h9{height:70.171877pt;}
.h7{height:77.015627pt;}
.h15{height:77.708334pt;}
.h8{height:77.968751pt;}
.h14{height:85.479171pt;}
.h19{height:85.572917pt;}
.he{height:93.250003pt;}
.h10{height:94.819427pt;}
.h13{height:101.020840pt;}
.h6{height:102.687503pt;}
.hd{height:108.718750pt;}
.hf{height:108.791666pt;}
.h12{height:119.802083pt;}
.h3{height:128.746667pt;}
.h18{height:139.875004pt;}
.h16{height:148.449606pt;}
.h17{height:151.466668pt;}
.h5{height:154.031255pt;}
.hc{height:166.613342pt;}
.h11{height:188.260427pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x2{left:-314.025210pt;}
.x1{left:-310.025210pt;}
.x3{left:-282.018909pt;}
.x0{left:0.000000pt;}
.x1e{left:19.150132pt;}
.x1c{left:35.385571pt;}
.x2d{left:50.272442pt;}
.x16{left:52.015495pt;}
.x1d{left:53.787403pt;}
.x1f{left:57.382951pt;}
.x19{left:58.365101pt;}
.xc{left:60.779528pt;}
.x23{left:63.391871pt;}
.x5{left:64.521262pt;}
.x17{left:70.417326pt;}
.x9{left:73.138582pt;}
.x20{left:75.784782pt;}
.xf{left:80.017333pt;}
.xd{left:85.615502pt;}
.xa{left:87.413403pt;}
.x26{left:89.999742pt;}
.x13{left:96.987407pt;}
.x18{left:99.214202pt;}
.x1b{left:100.766933pt;}
.x21{left:102.585576pt;}
.x10{left:104.017333pt;}
.x1a{left:105.563808pt;}
.x27{left:108.632817pt;}
.x15{left:109.875594pt;}
.x11{left:114.713394pt;}
.x4{left:115.658268pt;}
.x2c{left:118.610769pt;}
.x22{left:120.987408pt;}
.x28{left:127.034649pt;}
.xe{left:132.814209pt;}
.x14{left:133.875594pt;}
.x6{left:142.530715pt;}
.x24{left:148.585065pt;}
.x29{left:149.784284pt;}
.x25{left:162.274547pt;}
.x7{left:164.423605pt;}
.x8{left:184.521266pt;}
.x12{left:212.754337pt;}
.x2a{left:612.708389pt;}
.x2b{left:659.907096pt;}
.xb{left:710.669323pt;}
}




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