
    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_02a0b333b17603becdfa3593.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_2b8d5a589030a7828f14722f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_844c847bcc6fcd947291bb42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_303cf1dea6c58f1e24d32946.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.047000;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_1bcb7221a7610b4877aa2f99.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_f2777054ab53ebcc67545080.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112000;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_7e8ac1808bbb2e77d108af70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_61eed467f91c1635437dc996.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.522000;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;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.473430px;}
.lsa{letter-spacing:0.717309px;}
.ls10{letter-spacing:0.848601px;}
.lsf{letter-spacing:0.851805px;}
.ls3{letter-spacing:0.941472px;}
.ls8{letter-spacing:0.945379px;}
.ls1{letter-spacing:0.986301px;}
.ls4{letter-spacing:1.031130px;}
.ls2{letter-spacing:1.165626px;}
.lsb{letter-spacing:11.574477px;}
.lsd{letter-spacing:14.021400px;}
.lse{letter-spacing:16.589400px;}
.ls9{letter-spacing:17.144083px;}
.ls6{letter-spacing:21.158083px;}
.ls7{letter-spacing:21.428083px;}
.lsc{letter-spacing:21.764083px;}
.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;}
}
.ws3{word-spacing:-15.948144px;}
.ws2{word-spacing:-15.314611px;}
.ws4{word-spacing:-15.189082px;}
.ws0{word-spacing:-15.123129px;}
.ws5{word-spacing:-13.856028px;}
.ws6{word-spacing:-13.004223px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-10.481722px;}
._1b{margin-left:-9.408747px;}
._1c{margin-left:-7.639008px;}
._1e{margin-left:-6.508549px;}
._1d{margin-left:-5.396783px;}
._e{margin-left:-4.268006px;}
._f{margin-left:-2.701921px;}
._d{margin-left:-1.512328px;}
._b{width:1.427993px;}
._5{width:2.957986px;}
._7{width:4.249980px;}
._10{width:5.577688px;}
._0{width:6.848539px;}
._1{width:8.014248px;}
._11{width:9.226426px;}
._a{width:10.573950px;}
._13{width:11.615325px;}
._17{width:12.635022px;}
._9{width:13.667936px;}
._4{width:15.843925px;}
._15{width:17.448614px;}
._18{width:18.892205px;}
._6{width:21.113901px;}
._19{width:23.135283px;}
._12{width:25.297056px;}
._3{width:29.171863px;}
._8{width:34.169839px;}
._c{width:46.579781px;}
._16{width:95.258884px;}
._14{width:107.105306px;}
._2{width:845.750877px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:0.597600px;}
.fs3{font-size:33.999840px;}
.fs2{font-size:38.856960px;}
.fs5{font-size:42.742656px;}
.fs6{font-size:43.714080px;}
.fsc{font-size:47.343000px;}
.fsd{font-size:47.820600px;}
.fs1{font-size:48.571200px;}
.fsb{font-size:53.798400px;}
.fs4{font-size:54.399744px;}
.fs10{font-size:56.787000px;}
.fs9{font-size:62.764800px;}
.fse{font-size:65.454600px;}
.fs7{font-size:65.753400px;}
.fs0{font-size:67.999680px;}
.fsa{font-size:68.742000px;}
.fs8{font-size:77.708400px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307350px;}
.y22{bottom:51.789042px;}
.y21{bottom:65.558977px;}
.y20{bottom:79.328912px;}
.y1f{bottom:93.098848px;}
.y1e{bottom:104.865221px;}
.y1d{bottom:127.159402px;}
.y42{bottom:144.567000px;}
.y67{bottom:154.338000px;}
.y8e{bottom:157.827000px;}
.y41{bottom:164.125500px;}
.yb6{bottom:167.065500px;}
.yd7{bottom:167.812500px;}
.y66{bottom:173.896500px;}
.y8d{bottom:176.110500px;}
.y40{bottom:183.685500px;}
.y1c{bottom:185.044129px;}
.yb5{bottom:186.096000px;}
.y65{bottom:193.455000px;}
.y8c{bottom:195.141000px;}
.y1b{bottom:195.365509px;}
.y3f{bottom:203.244000px;}
.yb4{bottom:204.379500px;}
.y1a{bottom:204.836893px;}
.yd6{bottom:205.126500px;}
.y64{bottom:213.015000px;}
.y8b{bottom:213.424500px;}
.y19{bottom:213.433996px;}
.y18{bottom:222.043241px;}
.yb3{bottom:222.663000px;}
.y3e{bottom:222.802500px;}
.yd5{bottom:223.410000px;}
.y17{bottom:230.652486px;}
.y8a{bottom:231.708000px;}
.y63{bottom:232.573500px;}
.y16{bottom:239.249588px;}
.yb2{bottom:240.946500px;}
.yd4{bottom:241.693500px;}
.y3d{bottom:242.362500px;}
.y15{bottom:247.858834px;}
.y89{bottom:250.738500px;}
.y62{bottom:252.133500px;}
.y51{bottom:252.729000px;}
.y14{bottom:256.468079px;}
.yb1{bottom:259.230000px;}
.yd3{bottom:260.724000px;}
.y3c{bottom:261.921000px;}
.y13{bottom:265.065181px;}
.y88{bottom:269.022000px;}
.y61{bottom:271.692000px;}
.y12{bottom:273.674426px;}
.y50{bottom:274.249500px;}
.yb0{bottom:278.260500px;}
.yd2{bottom:279.007500px;}
.y3b{bottom:281.479500px;}
.y53{bottom:281.481000px;}
.y11{bottom:282.283672px;}
.y87{bottom:287.305500px;}
.y60{bottom:291.250500px;}
.yaf{bottom:296.544000px;}
.yd1{bottom:297.291000px;}
.y10{bottom:299.987874px;}
.y3a{bottom:301.039500px;}
.y86{bottom:305.589000px;}
.yae{bottom:314.827500px;}
.yd0{bottom:316.321500px;}
.y5f{bottom:316.678500px;}
.y39{bottom:320.598000px;}
.y85{bottom:324.619500px;}
.yad{bottom:333.111000px;}
.ycf{bottom:334.605000px;}
.y5e{bottom:338.197500px;}
.y4f{bottom:340.158000px;}
.y84{bottom:342.903000px;}
.y38{bottom:350.524500px;}
.yac{bottom:352.141500px;}
.yce{bottom:352.888500px;}
.y4e{bottom:359.716500px;}
.y83{bottom:361.186500px;}
.yab{bottom:370.425000px;}
.ycd{bottom:371.919000px;}
.y4d{bottom:379.275000px;}
.y82{bottom:380.217000px;}
.yaa{bottom:388.708500px;}
.ycc{bottom:390.202500px;}
.y81{bottom:398.500500px;}
.y37{bottom:398.835000px;}
.ya9{bottom:407.739000px;}
.ycb{bottom:408.486000px;}
.y80{bottom:416.784000px;}
.y36{bottom:418.393500px;}
.ya8{bottom:426.022500px;}
.yca{bottom:427.516500px;}
.y6e{bottom:428.761500px;}
.y7f{bottom:435.814500px;}
.y35{bottom:437.952000px;}
.y52{bottom:437.953500px;}
.ya7{bottom:444.306000px;}
.yc9{bottom:445.800000px;}
.yf{bottom:447.049325px;}
.y7e{bottom:454.098000px;}
.y34{bottom:457.512000px;}
.ya6{bottom:463.336500px;}
.yc8{bottom:464.083500px;}
.y7d{bottom:473.128500px;}
.y33{bottom:477.070500px;}
.ya5{bottom:481.620000px;}
.yc7{bottom:482.367000px;}
.y5d{bottom:490.198500px;}
.y7c{bottom:491.412000px;}
.y32{bottom:496.630500px;}
.ya4{bottom:499.903500px;}
.yc6{bottom:501.397500px;}
.y5c{bottom:504.655500px;}
.y7b{bottom:509.695500px;}
.y31{bottom:516.189000px;}
.ya3{bottom:518.187000px;}
.y5b{bottom:519.111000px;}
.yc5{bottom:519.681000px;}
.y7a{bottom:528.726000px;}
.y5a{bottom:533.568000px;}
.y30{bottom:535.747500px;}
.ya2{bottom:537.217500px;}
.yc4{bottom:537.964500px;}
.y79{bottom:547.009500px;}
.y59{bottom:548.025000px;}
.y2f{bottom:555.307500px;}
.ya1{bottom:555.501000px;}
.yc3{bottom:556.248000px;}
.y58{bottom:562.482000px;}
.y78{bottom:565.293000px;}
.ye{bottom:569.460892px;}
.ya0{bottom:573.784500px;}
.y2e{bottom:574.866000px;}
.yc2{bottom:575.278500px;}
.y57{bottom:576.937500px;}
.y77{bottom:583.576500px;}
.y56{bottom:591.394500px;}
.y9f{bottom:592.068000px;}
.yc1{bottom:593.562000px;}
.y2d{bottom:594.424500px;}
.yd{bottom:596.005052px;}
.y6d{bottom:596.602500px;}
.y76{bottom:602.607000px;}
.yc{bottom:609.774988px;}
.y6c{bottom:611.059500px;}
.y9e{bottom:611.098500px;}
.yc0{bottom:611.845500px;}
.y2c{bottom:613.984500px;}
.y75{bottom:620.890500px;}
.y6b{bottom:625.515000px;}
.y9d{bottom:629.382000px;}
.ybf{bottom:630.129000px;}
.y2b{bottom:633.543000px;}
.yb{bottom:636.574147px;}
.y74{bottom:639.174000px;}
.y6a{bottom:639.972000px;}
.y9c{bottom:647.665500px;}
.ybe{bottom:648.412500px;}
.yd8{bottom:649.159500px;}
.ya{bottom:650.344082px;}
.y2a{bottom:653.103000px;}
.y69{bottom:654.429000px;}
.y73{bottom:657.457500px;}
.y68{bottom:663.469500px;}
.y9{bottom:664.114018px;}
.y9b{bottom:666.696000px;}
.ybd{bottom:667.443000px;}
.y29{bottom:672.661500px;}
.y72{bottom:676.488000px;}
.y8{bottom:677.883953px;}
.y9a{bottom:684.979500px;}
.ybc{bottom:685.726500px;}
.y7{bottom:691.653888px;}
.y28{bottom:692.220000px;}
.y71{bottom:694.771500px;}
.y99{bottom:703.263000px;}
.ybb{bottom:704.010000px;}
.y27{bottom:711.780000px;}
.y70{bottom:713.055000px;}
.y98{bottom:722.293500px;}
.y26{bottom:731.338500px;}
.y97{bottom:740.577000px;}
.yba{bottom:741.324000px;}
.y6f{bottom:741.706500px;}
.y4c{bottom:750.897000px;}
.y6{bottom:755.330731px;}
.y96{bottom:758.860500px;}
.yb9{bottom:759.607500px;}
.y4b{bottom:770.457000px;}
.y5{bottom:772.537079px;}
.y95{bottom:777.891000px;}
.y4{bottom:789.755569px;}
.y4a{bottom:790.015500px;}
.y94{bottom:796.174500px;}
.y3{bottom:808.941193px;}
.y49{bottom:809.575500px;}
.y25{bottom:812.611500px;}
.y93{bottom:814.458000px;}
.yb8{bottom:815.205000px;}
.y48{bottom:829.134000px;}
.y92{bottom:832.741500px;}
.y2{bottom:833.044651px;}
.yb7{bottom:833.488500px;}
.y47{bottom:848.692500px;}
.y91{bottom:851.772000px;}
.y24{bottom:856.546500px;}
.y46{bottom:868.252500px;}
.y90{bottom:870.055500px;}
.y55{bottom:878.619000px;}
.y45{bottom:887.811000px;}
.y8f{bottom:889.086000px;}
.y23{bottom:899.418000px;}
.y54{bottom:900.139500px;}
.y44{bottom:907.369500px;}
.y43{bottom:948.189000px;}
.h6{height:25.193881px;}
.h5{height:28.793007px;}
.h8{height:32.392133px;}
.h4{height:35.991259px;}
.h7{height:40.310210px;}
.h11{height:40.886613px;}
.h10{height:45.997632px;}
.h12{height:48.552885px;}
.hf{height:48.669336px;}
.h3{height:50.387763px;}
.hb{height:51.879433px;}
.he{height:53.663904px;}
.hc{height:55.017547px;}
.hd{height:66.440682px;}
.h9{height:1020.472500px;}
.ha{height:1020.750000px;}
.h2{height:1022.290189px;}
.h0{height:1022.910000px;}
.h1{height:1023.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:37.861250px;}
.x1{left:44.746218px;}
.x6{left:79.636500px;}
.x5{left:106.422000px;}
.x2{left:120.468719px;}
.xa{left:122.097000px;}
.x7{left:123.424500px;}
.x8{left:130.212000px;}
.x4{left:354.533332px;}
.x9{left:453.873000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.420827pt;}
.lsa{letter-spacing:0.637608pt;}
.ls10{letter-spacing:0.754312pt;}
.lsf{letter-spacing:0.757160pt;}
.ls3{letter-spacing:0.836864pt;}
.ls8{letter-spacing:0.840337pt;}
.ls1{letter-spacing:0.876712pt;}
.ls4{letter-spacing:0.916560pt;}
.ls2{letter-spacing:1.036112pt;}
.lsb{letter-spacing:10.288424pt;}
.lsd{letter-spacing:12.463467pt;}
.lse{letter-spacing:14.746133pt;}
.ls9{letter-spacing:15.239185pt;}
.ls6{letter-spacing:18.807185pt;}
.ls7{letter-spacing:19.047185pt;}
.lsc{letter-spacing:19.345852pt;}
.ws3{word-spacing:-14.176128pt;}
.ws2{word-spacing:-13.612988pt;}
.ws4{word-spacing:-13.501406pt;}
.ws0{word-spacing:-13.442781pt;}
.ws5{word-spacing:-12.316469pt;}
.ws6{word-spacing:-11.559309pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-9.317086pt;}
._1b{margin-left:-8.363331pt;}
._1c{margin-left:-6.790229pt;}
._1e{margin-left:-5.785377pt;}
._1d{margin-left:-4.797140pt;}
._e{margin-left:-3.793783pt;}
._f{margin-left:-2.401708pt;}
._d{margin-left:-1.344292pt;}
._b{width:1.269327pt;}
._5{width:2.629321pt;}
._7{width:3.777760pt;}
._10{width:4.957945pt;}
._0{width:6.087590pt;}
._1{width:7.123776pt;}
._11{width:8.201267pt;}
._a{width:9.399067pt;}
._13{width:10.324733pt;}
._17{width:11.231131pt;}
._9{width:12.149276pt;}
._4{width:14.083489pt;}
._15{width:15.509879pt;}
._18{width:16.793071pt;}
._6{width:18.767912pt;}
._19{width:20.564696pt;}
._12{width:22.486272pt;}
._3{width:25.930545pt;}
._8{width:30.373190pt;}
._c{width:41.404250pt;}
._16{width:84.674564pt;}
._14{width:95.204716pt;}
._2{width:751.778557pt;}
.fsf{font-size:0.531200pt;}
.fs3{font-size:30.222080pt;}
.fs2{font-size:34.539520pt;}
.fs5{font-size:37.993472pt;}
.fs6{font-size:38.856960pt;}
.fsc{font-size:42.082667pt;}
.fsd{font-size:42.507200pt;}
.fs1{font-size:43.174400pt;}
.fsb{font-size:47.820800pt;}
.fs4{font-size:48.355328pt;}
.fs10{font-size:50.477333pt;}
.fs9{font-size:55.790933pt;}
.fse{font-size:58.181867pt;}
.fs7{font-size:58.447467pt;}
.fs0{font-size:60.444160pt;}
.fsa{font-size:61.104000pt;}
.fs8{font-size:69.074133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273200pt;}
.y22{bottom:46.034704pt;}
.y21{bottom:58.274646pt;}
.y20{bottom:70.514589pt;}
.y1f{bottom:82.754531pt;}
.y1e{bottom:93.213530pt;}
.y1d{bottom:113.030579pt;}
.y42{bottom:128.504000pt;}
.y67{bottom:137.189333pt;}
.y8e{bottom:140.290667pt;}
.y41{bottom:145.889333pt;}
.yb6{bottom:148.502667pt;}
.yd7{bottom:149.166667pt;}
.y66{bottom:154.574667pt;}
.y8d{bottom:156.542667pt;}
.y40{bottom:163.276000pt;}
.y1c{bottom:164.483670pt;}
.yb5{bottom:165.418667pt;}
.y65{bottom:171.960000pt;}
.y8c{bottom:173.458667pt;}
.y1b{bottom:173.658230pt;}
.y3f{bottom:180.661333pt;}
.yb4{bottom:181.670667pt;}
.y1a{bottom:182.077238pt;}
.yd6{bottom:182.334667pt;}
.y64{bottom:189.346667pt;}
.y8b{bottom:189.710667pt;}
.y19{bottom:189.719107pt;}
.y18{bottom:197.371770pt;}
.yb3{bottom:197.922667pt;}
.y3e{bottom:198.046667pt;}
.yd5{bottom:198.586667pt;}
.y17{bottom:205.024432pt;}
.y8a{bottom:205.962667pt;}
.y63{bottom:206.732000pt;}
.y16{bottom:212.666301pt;}
.yb2{bottom:214.174667pt;}
.yd4{bottom:214.838667pt;}
.y3d{bottom:215.433333pt;}
.y15{bottom:220.318963pt;}
.y89{bottom:222.878667pt;}
.y62{bottom:224.118667pt;}
.y51{bottom:224.648000pt;}
.y14{bottom:227.971626pt;}
.yb1{bottom:230.426667pt;}
.yd3{bottom:231.754667pt;}
.y3c{bottom:232.818667pt;}
.y13{bottom:235.613494pt;}
.y88{bottom:239.130667pt;}
.y61{bottom:241.504000pt;}
.y12{bottom:243.266157pt;}
.y50{bottom:243.777333pt;}
.yb0{bottom:247.342667pt;}
.yd2{bottom:248.006667pt;}
.y3b{bottom:250.204000pt;}
.y53{bottom:250.205333pt;}
.y11{bottom:250.918819pt;}
.y87{bottom:255.382667pt;}
.y60{bottom:258.889333pt;}
.yaf{bottom:263.594667pt;}
.yd1{bottom:264.258667pt;}
.y10{bottom:266.655888pt;}
.y3a{bottom:267.590667pt;}
.y86{bottom:271.634667pt;}
.yae{bottom:279.846667pt;}
.yd0{bottom:281.174667pt;}
.y5f{bottom:281.492000pt;}
.y39{bottom:284.976000pt;}
.y85{bottom:288.550667pt;}
.yad{bottom:296.098667pt;}
.ycf{bottom:297.426667pt;}
.y5e{bottom:300.620000pt;}
.y4f{bottom:302.362667pt;}
.y84{bottom:304.802667pt;}
.y38{bottom:311.577333pt;}
.yac{bottom:313.014667pt;}
.yce{bottom:313.678667pt;}
.y4e{bottom:319.748000pt;}
.y83{bottom:321.054667pt;}
.yab{bottom:329.266667pt;}
.ycd{bottom:330.594667pt;}
.y4d{bottom:337.133333pt;}
.y82{bottom:337.970667pt;}
.yaa{bottom:345.518667pt;}
.ycc{bottom:346.846667pt;}
.y81{bottom:354.222667pt;}
.y37{bottom:354.520000pt;}
.ya9{bottom:362.434667pt;}
.ycb{bottom:363.098667pt;}
.y80{bottom:370.474667pt;}
.y36{bottom:371.905333pt;}
.ya8{bottom:378.686667pt;}
.yca{bottom:380.014667pt;}
.y6e{bottom:381.121333pt;}
.y7f{bottom:387.390667pt;}
.y35{bottom:389.290667pt;}
.y52{bottom:389.292000pt;}
.ya7{bottom:394.938667pt;}
.yc9{bottom:396.266667pt;}
.yf{bottom:397.377178pt;}
.y7e{bottom:403.642667pt;}
.y34{bottom:406.677333pt;}
.ya6{bottom:411.854667pt;}
.yc8{bottom:412.518667pt;}
.y7d{bottom:420.558667pt;}
.y33{bottom:424.062667pt;}
.ya5{bottom:428.106667pt;}
.yc7{bottom:428.770667pt;}
.y5d{bottom:435.732000pt;}
.y7c{bottom:436.810667pt;}
.y32{bottom:441.449333pt;}
.ya4{bottom:444.358667pt;}
.yc6{bottom:445.686667pt;}
.y5c{bottom:448.582667pt;}
.y7b{bottom:453.062667pt;}
.y31{bottom:458.834667pt;}
.ya3{bottom:460.610667pt;}
.y5b{bottom:461.432000pt;}
.yc5{bottom:461.938667pt;}
.y7a{bottom:469.978667pt;}
.y5a{bottom:474.282667pt;}
.y30{bottom:476.220000pt;}
.ya2{bottom:477.526667pt;}
.yc4{bottom:478.190667pt;}
.y79{bottom:486.230667pt;}
.y59{bottom:487.133333pt;}
.y2f{bottom:493.606667pt;}
.ya1{bottom:493.778667pt;}
.yc3{bottom:494.442667pt;}
.y58{bottom:499.984000pt;}
.y78{bottom:502.482667pt;}
.ye{bottom:506.187459pt;}
.ya0{bottom:510.030667pt;}
.y2e{bottom:510.992000pt;}
.yc2{bottom:511.358667pt;}
.y57{bottom:512.833333pt;}
.y77{bottom:518.734667pt;}
.y56{bottom:525.684000pt;}
.y9f{bottom:526.282667pt;}
.yc1{bottom:527.610667pt;}
.y2d{bottom:528.377333pt;}
.yd{bottom:529.782269pt;}
.y6d{bottom:530.313333pt;}
.y76{bottom:535.650667pt;}
.yc{bottom:542.022211pt;}
.y6c{bottom:543.164000pt;}
.y9e{bottom:543.198667pt;}
.yc0{bottom:543.862667pt;}
.y2c{bottom:545.764000pt;}
.y75{bottom:551.902667pt;}
.y6b{bottom:556.013333pt;}
.y9d{bottom:559.450667pt;}
.ybf{bottom:560.114667pt;}
.y2b{bottom:563.149333pt;}
.yb{bottom:565.843686pt;}
.y74{bottom:568.154667pt;}
.y6a{bottom:568.864000pt;}
.y9c{bottom:575.702667pt;}
.ybe{bottom:576.366667pt;}
.yd8{bottom:577.030667pt;}
.ya{bottom:578.083629pt;}
.y2a{bottom:580.536000pt;}
.y69{bottom:581.714667pt;}
.y73{bottom:584.406667pt;}
.y68{bottom:589.750667pt;}
.y9{bottom:590.323571pt;}
.y9b{bottom:592.618667pt;}
.ybd{bottom:593.282667pt;}
.y29{bottom:597.921333pt;}
.y72{bottom:601.322667pt;}
.y8{bottom:602.563514pt;}
.y9a{bottom:608.870667pt;}
.ybc{bottom:609.534667pt;}
.y7{bottom:614.803456pt;}
.y28{bottom:615.306667pt;}
.y71{bottom:617.574667pt;}
.y99{bottom:625.122667pt;}
.ybb{bottom:625.786667pt;}
.y27{bottom:632.693333pt;}
.y70{bottom:633.826667pt;}
.y98{bottom:642.038667pt;}
.y26{bottom:650.078667pt;}
.y97{bottom:658.290667pt;}
.yba{bottom:658.954667pt;}
.y6f{bottom:659.294667pt;}
.y4c{bottom:667.464000pt;}
.y6{bottom:671.405094pt;}
.y96{bottom:674.542667pt;}
.yb9{bottom:675.206667pt;}
.y4b{bottom:684.850667pt;}
.y5{bottom:686.699626pt;}
.y95{bottom:691.458667pt;}
.y4{bottom:702.004950pt;}
.y4a{bottom:702.236000pt;}
.y94{bottom:707.710667pt;}
.y3{bottom:719.058838pt;}
.y49{bottom:719.622667pt;}
.y25{bottom:722.321333pt;}
.y93{bottom:723.962667pt;}
.yb8{bottom:724.626667pt;}
.y48{bottom:737.008000pt;}
.y92{bottom:740.214667pt;}
.y2{bottom:740.484134pt;}
.yb7{bottom:740.878667pt;}
.y47{bottom:754.393333pt;}
.y91{bottom:757.130667pt;}
.y24{bottom:761.374667pt;}
.y46{bottom:771.780000pt;}
.y90{bottom:773.382667pt;}
.y55{bottom:780.994667pt;}
.y45{bottom:789.165333pt;}
.y8f{bottom:790.298667pt;}
.y23{bottom:799.482667pt;}
.y54{bottom:800.124000pt;}
.y44{bottom:806.550667pt;}
.y43{bottom:842.834667pt;}
.h6{height:22.394561pt;}
.h5{height:25.593784pt;}
.h8{height:28.793007pt;}
.h4{height:31.992230pt;}
.h7{height:35.831298pt;}
.h11{height:36.343656pt;}
.h10{height:40.886784pt;}
.h12{height:43.158120pt;}
.hf{height:43.261632pt;}
.h3{height:44.789123pt;}
.hb{height:46.115051pt;}
.he{height:47.701248pt;}
.hc{height:48.904486pt;}
.hd{height:59.058384pt;}
.h9{height:907.086667pt;}
.ha{height:907.333333pt;}
.h2{height:908.702390pt;}
.h0{height:909.253333pt;}
.h1{height:909.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:33.654445pt;}
.x1{left:39.774416pt;}
.x6{left:70.788000pt;}
.x5{left:94.597333pt;}
.x2{left:107.083306pt;}
.xa{left:108.530667pt;}
.x7{left:109.710667pt;}
.x8{left:115.744000pt;}
.x4{left:315.140739pt;}
.x9{left:403.442667pt;}
}




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