
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_3bac4ee60bd2e9a5421b14d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140137;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_0ebd660dcee885da0cb4d246.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_8d6f423024c69256619b230c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls1{letter-spacing:0.007200px;}
.lsc{letter-spacing:0.012000px;}
.ls9{letter-spacing:0.312000px;}
.ls3{letter-spacing:0.318000px;}
.ls6{letter-spacing:0.348000px;}
.ls8{letter-spacing:1.332000px;}
.ls4{letter-spacing:1.554000px;}
.ls5{letter-spacing:2.622000px;}
.lsb{letter-spacing:2.964000px;}
.lsa{letter-spacing:3.270000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-22.500000px;}
.wsf{word-spacing:-18.270000px;}
.ws5{word-spacing:-18.007200px;}
.ws2{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.964000px;}
.wsb{word-spacing:-17.622000px;}
.wsa{word-spacing:-16.554000px;}
.ws7{word-spacing:-16.506600px;}
.ws1{word-spacing:-16.500000px;}
.wsd{word-spacing:-16.332000px;}
.wsc{word-spacing:-15.348000px;}
.ws9{word-spacing:-15.318000px;}
.wse{word-spacing:-15.312000px;}
.ws13{word-spacing:-15.012000px;}
.ws8{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.500000px;}
.ws11{word-spacing:-10.714290px;}
.ws4{word-spacing:0.000000px;}
.ws12{word-spacing:4.276245px;}
.ws6{word-spacing:7.464600px;}
._0{margin-left:-9.120000px;}
._1c{margin-left:-3.762000px;}
._10{margin-left:-2.422200px;}
._c{margin-left:-1.379400px;}
._f{width:1.287000px;}
._d{width:2.508000px;}
._29{width:3.524400px;}
._6{width:4.527600px;}
._7{width:5.946600px;}
._e{width:7.305000px;}
._1{width:9.188400px;}
._12{width:11.160000px;}
._a{width:12.606000px;}
._19{width:13.675200px;}
._11{width:14.896200px;}
._2a{width:16.800000px;}
._5{width:17.971800px;}
._13{width:19.225800px;}
._27{width:20.268600px;}
._15{width:21.298200px;}
._2{width:22.314600px;}
._8{width:24.512400px;}
._16{width:25.931400px;}
._24{width:26.980800px;}
._1f{width:28.254600px;}
._26{width:29.271000px;}
._22{width:30.313800px;}
._21{width:32.729400px;}
._23{width:33.831600px;}
._20{width:35.514600px;}
._14{width:36.795000px;}
._1b{width:37.837800px;}
._9{width:39.138000px;}
._3{width:41.098200px;}
._2b{width:42.711000px;}
._b{width:43.718400px;}
._1a{width:45.625800px;}
._25{width:47.037000px;}
._2e{width:48.432000px;}
._17{width:50.318400px;}
._4{width:51.631800px;}
._2d{width:52.650000px;}
._2f{width:61.998000px;}
._18{width:63.010200px;}
._1e{width:64.911000px;}
._1d{width:103.468200px;}
._28{width:104.524200px;}
._2c{width:109.344000px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:42.857160px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:44.125350px;}
.y30{bottom:56.834700px;}
.y62{bottom:60.295200px;}
.y31{bottom:60.325350px;}
.y97{bottom:111.773850px;}
.ycf{bottom:121.479000px;}
.y51{bottom:122.223600px;}
.y20{bottom:125.036100px;}
.y2f{bottom:126.836100px;}
.y96{bottom:131.573850px;}
.y61{bottom:134.979600px;}
.yce{bottom:139.479000px;}
.y50{bottom:142.023600px;}
.y1f{bottom:144.836100px;}
.y2e{bottom:146.636100px;}
.y95{bottom:151.374000px;}
.y60{bottom:154.779000px;}
.ycd{bottom:157.479000px;}
.y4f{bottom:161.823000px;}
.y1e{bottom:164.635500px;}
.y2d{bottom:166.435500px;}
.y5f{bottom:174.579000px;}
.y101{bottom:176.881500px;}
.y76{bottom:179.947500px;}
.y4e{bottom:181.623000px;}
.y94{bottom:183.930000px;}
.ycc{bottom:183.982500px;}
.y1d{bottom:184.435500px;}
.y2c{bottom:186.235500px;}
.y5e{bottom:194.379000px;}
.y100{bottom:194.881500px;}
.y75{bottom:199.747500px;}
.y4d{bottom:201.423000px;}
.ycb{bottom:201.982500px;}
.y93{bottom:203.730000px;}
.y1c{bottom:204.235500px;}
.y2b{bottom:206.035500px;}
.yff{bottom:212.881500px;}
.y5d{bottom:214.179000px;}
.y74{bottom:219.547500px;}
.y4c{bottom:221.223000px;}
.y92{bottom:223.530000px;}
.y2a{bottom:225.835500px;}
.yca{bottom:228.487500px;}
.yfe{bottom:230.881500px;}
.y5c{bottom:233.979000px;}
.y1b{bottom:236.791500px;}
.y73{bottom:239.347500px;}
.y4b{bottom:241.023000px;}
.y91{bottom:243.330000px;}
.y29{bottom:245.635500px;}
.yc9{bottom:246.487500px;}
.y5b{bottom:253.779000px;}
.yfd{bottom:257.386500px;}
.y1a{bottom:258.391500px;}
.y72{bottom:259.147500px;}
.y4a{bottom:260.823000px;}
.y90{bottom:263.130000px;}
.yc8{bottom:264.487500px;}
.y28{bottom:265.435500px;}
.y5a{bottom:273.579000px;}
.yfc{bottom:275.386500px;}
.y71{bottom:278.947500px;}
.y8f{bottom:282.930000px;}
.y27{bottom:285.235500px;}
.yc7{bottom:290.991000px;}
.y49{bottom:293.379000px;}
.yfb{bottom:293.386500px;}
.y70{bottom:298.747500px;}
.y8e{bottom:302.730000px;}
.y26{bottom:305.035500px;}
.yc6{bottom:308.991000px;}
.yfa{bottom:311.386500px;}
.y59{bottom:313.179000px;}
.y6f{bottom:318.547500px;}
.y8d{bottom:322.530000px;}
.y25{bottom:324.835500px;}
.yc5{bottom:326.991000px;}
.y58{bottom:332.979000px;}
.yf9{bottom:337.890000px;}
.y19{bottom:338.059500px;}
.y6e{bottom:338.347500px;}
.y8c{bottom:342.330000px;}
.y24{bottom:344.635500px;}
.yc4{bottom:344.991000px;}
.y57{bottom:352.779000px;}
.yf8{bottom:355.890000px;}
.y18{bottom:357.859500px;}
.y6d{bottom:358.147500px;}
.yc3{bottom:362.991000px;}
.y23{bottom:364.435500px;}
.y56{bottom:372.579000px;}
.y48{bottom:373.047000px;}
.yf7{bottom:373.890000px;}
.y17{bottom:377.659500px;}
.y6c{bottom:377.947500px;}
.yc2{bottom:380.991000px;}
.y22{bottom:384.235500px;}
.yf6{bottom:391.890000px;}
.y55{bottom:392.379000px;}
.y47{bottom:392.847000px;}
.y16{bottom:397.459500px;}
.y6b{bottom:397.747500px;}
.yc1{bottom:398.991000px;}
.yf5{bottom:409.890000px;}
.y46{bottom:412.647000px;}
.y21{bottom:416.791500px;}
.y15{bottom:417.259500px;}
.y6a{bottom:417.547500px;}
.y54{bottom:424.935000px;}
.yc0{bottom:425.494500px;}
.y9a{bottom:428.305500px;}
.y45{bottom:432.447000px;}
.yf4{bottom:436.393500px;}
.y14{bottom:437.059500px;}
.y69{bottom:437.347500px;}
.ybf{bottom:443.494500px;}
.y99{bottom:444.505500px;}
.y44{bottom:452.247000px;}
.yf3{bottom:454.393500px;}
.y13{bottom:456.859500px;}
.y68{bottom:457.147500px;}
.y98{bottom:460.705500px;}
.ybe{bottom:469.999500px;}
.y43{bottom:472.047000px;}
.yf2{bottom:472.393500px;}
.y12{bottom:476.659500px;}
.y67{bottom:476.947500px;}
.ybd{bottom:487.999500px;}
.yf1{bottom:490.393500px;}
.y42{bottom:491.847000px;}
.y11{bottom:496.459500px;}
.y66{bottom:496.747500px;}
.y53{bottom:504.603000px;}
.ybc{bottom:505.999500px;}
.yf0{bottom:508.393500px;}
.y41{bottom:511.647000px;}
.y10{bottom:516.259500px;}
.ybb{bottom:523.999500px;}
.y52{bottom:524.403000px;}
.yef{bottom:526.393500px;}
.y65{bottom:529.303500px;}
.yf{bottom:536.059500px;}
.yba{bottom:541.999500px;}
.y40{bottom:544.203000px;}
.yee{bottom:552.898500px;}
.ye{bottom:555.859500px;}
.yb9{bottom:559.999500px;}
.y3f{bottom:564.003000px;}
.yed{bottom:570.898500px;}
.yd{bottom:575.659500px;}
.y3e{bottom:583.803000px;}
.yec{bottom:588.898500px;}
.yb8{bottom:595.006500px;}
.yc{bottom:595.459500px;}
.y3d{bottom:603.603000px;}
.yeb{bottom:606.898500px;}
.yb{bottom:615.259500px;}
.y3c{bottom:623.403000px;}
.yea{bottom:633.402000px;}
.ya{bottom:635.059500px;}
.y3b{bottom:643.203000px;}
.ye9{bottom:651.402000px;}
.y9{bottom:654.859500px;}
.y3a{bottom:663.003000px;}
.ye8{bottom:669.402000px;}
.y8{bottom:674.659500px;}
.yb7{bottom:674.674500px;}
.ye7{bottom:687.402000px;}
.y7{bottom:694.459500px;}
.yb6{bottom:694.474500px;}
.ye6{bottom:705.402000px;}
.y6{bottom:714.259500px;}
.yb5{bottom:714.274500px;}
.ye5{bottom:731.905500px;}
.y8b{bottom:733.000500px;}
.y5{bottom:734.059500px;}
.yb4{bottom:734.074500px;}
.ye4{bottom:749.905500px;}
.y8a{bottom:752.800500px;}
.y4{bottom:753.859500px;}
.yb3{bottom:753.874500px;}
.y64{bottom:765.652500px;}
.ye3{bottom:767.905500px;}
.y89{bottom:772.600500px;}
.y3{bottom:773.659500px;}
.yb2{bottom:773.674500px;}
.y63{bottom:781.852500px;}
.ye2{bottom:785.905500px;}
.y88{bottom:792.400500px;}
.yb1{bottom:793.474500px;}
.ye1{bottom:803.905500px;}
.y87{bottom:812.200500px;}
.yb0{bottom:813.274500px;}
.ye0{bottom:821.905500px;}
.y86{bottom:832.000500px;}
.yaf{bottom:833.074500px;}
.ydf{bottom:839.905500px;}
.y85{bottom:851.800500px;}
.yae{bottom:852.874500px;}
.y38{bottom:859.635000px;}
.yde{bottom:866.409000px;}
.y84{bottom:871.600500px;}
.yad{bottom:872.674500px;}
.y10d{bottom:875.112000px;}
.y37{bottom:877.635000px;}
.ydd{bottom:884.409000px;}
.y83{bottom:891.400500px;}
.y10c{bottom:893.112000px;}
.yac{bottom:905.230500px;}
.ydc{bottom:910.914000px;}
.y10b{bottom:911.112000px;}
.y82{bottom:911.200500px;}
.y36{bottom:913.635000px;}
.yab{bottom:925.030500px;}
.ydb{bottom:928.914000px;}
.y10a{bottom:929.112000px;}
.y81{bottom:931.000500px;}
.yaa{bottom:944.830500px;}
.yda{bottom:946.914000px;}
.y80{bottom:950.800500px;}
.y35{bottom:956.835000px;}
.y109{bottom:959.868000px;}
.ya9{bottom:964.630500px;}
.y7f{bottom:970.600500px;}
.yd9{bottom:973.417500px;}
.ya8{bottom:984.430500px;}
.y7e{bottom:990.400500px;}
.yd8{bottom:991.417500px;}
.y34{bottom:992.835000px;}
.ya7{bottom:1004.230500px;}
.yd7{bottom:1009.417500px;}
.y7d{bottom:1010.200500px;}
.y111{bottom:1017.921000px;}
.y108{bottom:1023.180000px;}
.ya6{bottom:1024.030500px;}
.yd6{bottom:1027.417500px;}
.y33{bottom:1028.835000px;}
.y7c{bottom:1030.000500px;}
.y110{bottom:1035.921000px;}
.y107{bottom:1041.180000px;}
.ya5{bottom:1043.830500px;}
.yd5{bottom:1045.417500px;}
.y7b{bottom:1049.800500px;}
.y10f{bottom:1053.921000px;}
.y106{bottom:1059.180000px;}
.yd4{bottom:1063.417500px;}
.ya4{bottom:1063.630500px;}
.y7a{bottom:1069.600500px;}
.y10e{bottom:1071.921000px;}
.y105{bottom:1077.180000px;}
.y9f{bottom:1080.213000px;}
.ya3{bottom:1083.430500px;}
.y79{bottom:1089.400500px;}
.yd3{bottom:1089.921000px;}
.y104{bottom:1095.180000px;}
.y9e{bottom:1096.413000px;}
.y2{bottom:1100.785500px;}
.ya2{bottom:1103.230500px;}
.yd2{bottom:1107.921000px;}
.y78{bottom:1109.200500px;}
.y9d{bottom:1112.613000px;}
.y103{bottom:1113.180000px;}
.ya1{bottom:1123.030500px;}
.yd1{bottom:1125.921000px;}
.y9c{bottom:1128.813000px;}
.y77{bottom:1141.756500px;}
.ya0{bottom:1142.830500px;}
.yd0{bottom:1143.921000px;}
.y102{bottom:1143.936000px;}
.y9b{bottom:1145.013000px;}
.y1{bottom:1159.671000px;}
.y39{bottom:1203.604500px;}
.h8{height:39.313477px;}
.hb{height:43.535156px;}
.hd{height:43.681641px;}
.h7{height:47.250000px;}
.h4{height:48.049805px;}
.ha{height:52.417969px;}
.hc{height:52.500000px;}
.h6{height:57.750000px;}
.h5{height:63.000000px;}
.h3{height:78.750000px;}
.h9{height:105.000000px;}
.h2{height:171.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:44.645700px;}
.xd{left:46.771650px;}
.x4{left:108.000000px;}
.x11{left:125.007900px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x2{left:131.834700px;}
.x8{left:166.959000px;}
.x9{left:301.087500px;}
.xb{left:310.053000px;}
.xc{left:365.709000px;}
.xa{left:394.998000px;}
.x5{left:467.716500px;}
.x12{left:484.725000px;}
.x6{left:488.976000px;}
.xf{left:612.246000px;}
.x10{left:833.893500px;}
.x7{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls1{letter-spacing:0.006400pt;}
.lsc{letter-spacing:0.010667pt;}
.ls9{letter-spacing:0.277333pt;}
.ls3{letter-spacing:0.282667pt;}
.ls6{letter-spacing:0.309333pt;}
.ls8{letter-spacing:1.184000pt;}
.ls4{letter-spacing:1.381333pt;}
.ls5{letter-spacing:2.330667pt;}
.lsb{letter-spacing:2.634667pt;}
.lsa{letter-spacing:2.906667pt;}
.ws0{word-spacing:-20.000000pt;}
.wsf{word-spacing:-16.240000pt;}
.ws5{word-spacing:-16.006400pt;}
.ws2{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.968000pt;}
.wsb{word-spacing:-15.664000pt;}
.wsa{word-spacing:-14.714667pt;}
.ws7{word-spacing:-14.672533pt;}
.ws1{word-spacing:-14.666667pt;}
.wsd{word-spacing:-14.517333pt;}
.wsc{word-spacing:-13.642667pt;}
.ws9{word-spacing:-13.616000pt;}
.wse{word-spacing:-13.610667pt;}
.ws13{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.000000pt;}
.ws11{word-spacing:-9.523813pt;}
.ws4{word-spacing:0.000000pt;}
.ws12{word-spacing:3.801107pt;}
.ws6{word-spacing:6.635200pt;}
._0{margin-left:-8.106667pt;}
._1c{margin-left:-3.344000pt;}
._10{margin-left:-2.153067pt;}
._c{margin-left:-1.226133pt;}
._f{width:1.144000pt;}
._d{width:2.229333pt;}
._29{width:3.132800pt;}
._6{width:4.024533pt;}
._7{width:5.285867pt;}
._e{width:6.493333pt;}
._1{width:8.167467pt;}
._12{width:9.920000pt;}
._a{width:11.205333pt;}
._19{width:12.155733pt;}
._11{width:13.241067pt;}
._2a{width:14.933333pt;}
._5{width:15.974933pt;}
._13{width:17.089600pt;}
._27{width:18.016533pt;}
._15{width:18.931733pt;}
._2{width:19.835200pt;}
._8{width:21.788800pt;}
._16{width:23.050133pt;}
._24{width:23.982933pt;}
._1f{width:25.115200pt;}
._26{width:26.018667pt;}
._22{width:26.945600pt;}
._21{width:29.092800pt;}
._23{width:30.072533pt;}
._20{width:31.568533pt;}
._14{width:32.706667pt;}
._1b{width:33.633600pt;}
._9{width:34.789333pt;}
._3{width:36.531733pt;}
._2b{width:37.965333pt;}
._b{width:38.860800pt;}
._1a{width:40.556267pt;}
._25{width:41.810667pt;}
._2e{width:43.050667pt;}
._17{width:44.727467pt;}
._4{width:45.894933pt;}
._2d{width:46.800000pt;}
._2f{width:55.109333pt;}
._18{width:56.009067pt;}
._1e{width:57.698667pt;}
._1d{width:91.971733pt;}
._28{width:92.910400pt;}
._2c{width:97.194667pt;}
.fs7{font-size:38.095253pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:39.222533pt;}
.y30{bottom:50.519733pt;}
.y62{bottom:53.595733pt;}
.y31{bottom:53.622533pt;}
.y97{bottom:99.354533pt;}
.ycf{bottom:107.981333pt;}
.y51{bottom:108.643200pt;}
.y20{bottom:111.143200pt;}
.y2f{bottom:112.743200pt;}
.y96{bottom:116.954533pt;}
.y61{bottom:119.981867pt;}
.yce{bottom:123.981333pt;}
.y50{bottom:126.243200pt;}
.y1f{bottom:128.743200pt;}
.y2e{bottom:130.343200pt;}
.y95{bottom:134.554667pt;}
.y60{bottom:137.581333pt;}
.ycd{bottom:139.981333pt;}
.y4f{bottom:143.842667pt;}
.y1e{bottom:146.342667pt;}
.y2d{bottom:147.942667pt;}
.y5f{bottom:155.181333pt;}
.y101{bottom:157.228000pt;}
.y76{bottom:159.953333pt;}
.y4e{bottom:161.442667pt;}
.y94{bottom:163.493333pt;}
.ycc{bottom:163.540000pt;}
.y1d{bottom:163.942667pt;}
.y2c{bottom:165.542667pt;}
.y5e{bottom:172.781333pt;}
.y100{bottom:173.228000pt;}
.y75{bottom:177.553333pt;}
.y4d{bottom:179.042667pt;}
.ycb{bottom:179.540000pt;}
.y93{bottom:181.093333pt;}
.y1c{bottom:181.542667pt;}
.y2b{bottom:183.142667pt;}
.yff{bottom:189.228000pt;}
.y5d{bottom:190.381333pt;}
.y74{bottom:195.153333pt;}
.y4c{bottom:196.642667pt;}
.y92{bottom:198.693333pt;}
.y2a{bottom:200.742667pt;}
.yca{bottom:203.100000pt;}
.yfe{bottom:205.228000pt;}
.y5c{bottom:207.981333pt;}
.y1b{bottom:210.481333pt;}
.y73{bottom:212.753333pt;}
.y4b{bottom:214.242667pt;}
.y91{bottom:216.293333pt;}
.y29{bottom:218.342667pt;}
.yc9{bottom:219.100000pt;}
.y5b{bottom:225.581333pt;}
.yfd{bottom:228.788000pt;}
.y1a{bottom:229.681333pt;}
.y72{bottom:230.353333pt;}
.y4a{bottom:231.842667pt;}
.y90{bottom:233.893333pt;}
.yc8{bottom:235.100000pt;}
.y28{bottom:235.942667pt;}
.y5a{bottom:243.181333pt;}
.yfc{bottom:244.788000pt;}
.y71{bottom:247.953333pt;}
.y8f{bottom:251.493333pt;}
.y27{bottom:253.542667pt;}
.yc7{bottom:258.658667pt;}
.y49{bottom:260.781333pt;}
.yfb{bottom:260.788000pt;}
.y70{bottom:265.553333pt;}
.y8e{bottom:269.093333pt;}
.y26{bottom:271.142667pt;}
.yc6{bottom:274.658667pt;}
.yfa{bottom:276.788000pt;}
.y59{bottom:278.381333pt;}
.y6f{bottom:283.153333pt;}
.y8d{bottom:286.693333pt;}
.y25{bottom:288.742667pt;}
.yc5{bottom:290.658667pt;}
.y58{bottom:295.981333pt;}
.yf9{bottom:300.346667pt;}
.y19{bottom:300.497333pt;}
.y6e{bottom:300.753333pt;}
.y8c{bottom:304.293333pt;}
.y24{bottom:306.342667pt;}
.yc4{bottom:306.658667pt;}
.y57{bottom:313.581333pt;}
.yf8{bottom:316.346667pt;}
.y18{bottom:318.097333pt;}
.y6d{bottom:318.353333pt;}
.yc3{bottom:322.658667pt;}
.y23{bottom:323.942667pt;}
.y56{bottom:331.181333pt;}
.y48{bottom:331.597333pt;}
.yf7{bottom:332.346667pt;}
.y17{bottom:335.697333pt;}
.y6c{bottom:335.953333pt;}
.yc2{bottom:338.658667pt;}
.y22{bottom:341.542667pt;}
.yf6{bottom:348.346667pt;}
.y55{bottom:348.781333pt;}
.y47{bottom:349.197333pt;}
.y16{bottom:353.297333pt;}
.y6b{bottom:353.553333pt;}
.yc1{bottom:354.658667pt;}
.yf5{bottom:364.346667pt;}
.y46{bottom:366.797333pt;}
.y21{bottom:370.481333pt;}
.y15{bottom:370.897333pt;}
.y6a{bottom:371.153333pt;}
.y54{bottom:377.720000pt;}
.yc0{bottom:378.217333pt;}
.y9a{bottom:380.716000pt;}
.y45{bottom:384.397333pt;}
.yf4{bottom:387.905333pt;}
.y14{bottom:388.497333pt;}
.y69{bottom:388.753333pt;}
.ybf{bottom:394.217333pt;}
.y99{bottom:395.116000pt;}
.y44{bottom:401.997333pt;}
.yf3{bottom:403.905333pt;}
.y13{bottom:406.097333pt;}
.y68{bottom:406.353333pt;}
.y98{bottom:409.516000pt;}
.ybe{bottom:417.777333pt;}
.y43{bottom:419.597333pt;}
.yf2{bottom:419.905333pt;}
.y12{bottom:423.697333pt;}
.y67{bottom:423.953333pt;}
.ybd{bottom:433.777333pt;}
.yf1{bottom:435.905333pt;}
.y42{bottom:437.197333pt;}
.y11{bottom:441.297333pt;}
.y66{bottom:441.553333pt;}
.y53{bottom:448.536000pt;}
.ybc{bottom:449.777333pt;}
.yf0{bottom:451.905333pt;}
.y41{bottom:454.797333pt;}
.y10{bottom:458.897333pt;}
.ybb{bottom:465.777333pt;}
.y52{bottom:466.136000pt;}
.yef{bottom:467.905333pt;}
.y65{bottom:470.492000pt;}
.yf{bottom:476.497333pt;}
.yba{bottom:481.777333pt;}
.y40{bottom:483.736000pt;}
.yee{bottom:491.465333pt;}
.ye{bottom:494.097333pt;}
.yb9{bottom:497.777333pt;}
.y3f{bottom:501.336000pt;}
.yed{bottom:507.465333pt;}
.yd{bottom:511.697333pt;}
.y3e{bottom:518.936000pt;}
.yec{bottom:523.465333pt;}
.yb8{bottom:528.894667pt;}
.yc{bottom:529.297333pt;}
.y3d{bottom:536.536000pt;}
.yeb{bottom:539.465333pt;}
.yb{bottom:546.897333pt;}
.y3c{bottom:554.136000pt;}
.yea{bottom:563.024000pt;}
.ya{bottom:564.497333pt;}
.y3b{bottom:571.736000pt;}
.ye9{bottom:579.024000pt;}
.y9{bottom:582.097333pt;}
.y3a{bottom:589.336000pt;}
.ye8{bottom:595.024000pt;}
.y8{bottom:599.697333pt;}
.yb7{bottom:599.710667pt;}
.ye7{bottom:611.024000pt;}
.y7{bottom:617.297333pt;}
.yb6{bottom:617.310667pt;}
.ye6{bottom:627.024000pt;}
.y6{bottom:634.897333pt;}
.yb5{bottom:634.910667pt;}
.ye5{bottom:650.582667pt;}
.y8b{bottom:651.556000pt;}
.y5{bottom:652.497333pt;}
.yb4{bottom:652.510667pt;}
.ye4{bottom:666.582667pt;}
.y8a{bottom:669.156000pt;}
.y4{bottom:670.097333pt;}
.yb3{bottom:670.110667pt;}
.y64{bottom:680.580000pt;}
.ye3{bottom:682.582667pt;}
.y89{bottom:686.756000pt;}
.y3{bottom:687.697333pt;}
.yb2{bottom:687.710667pt;}
.y63{bottom:694.980000pt;}
.ye2{bottom:698.582667pt;}
.y88{bottom:704.356000pt;}
.yb1{bottom:705.310667pt;}
.ye1{bottom:714.582667pt;}
.y87{bottom:721.956000pt;}
.yb0{bottom:722.910667pt;}
.ye0{bottom:730.582667pt;}
.y86{bottom:739.556000pt;}
.yaf{bottom:740.510667pt;}
.ydf{bottom:746.582667pt;}
.y85{bottom:757.156000pt;}
.yae{bottom:758.110667pt;}
.y38{bottom:764.120000pt;}
.yde{bottom:770.141333pt;}
.y84{bottom:774.756000pt;}
.yad{bottom:775.710667pt;}
.y10d{bottom:777.877333pt;}
.y37{bottom:780.120000pt;}
.ydd{bottom:786.141333pt;}
.y83{bottom:792.356000pt;}
.y10c{bottom:793.877333pt;}
.yac{bottom:804.649333pt;}
.ydc{bottom:809.701333pt;}
.y10b{bottom:809.877333pt;}
.y82{bottom:809.956000pt;}
.y36{bottom:812.120000pt;}
.yab{bottom:822.249333pt;}
.ydb{bottom:825.701333pt;}
.y10a{bottom:825.877333pt;}
.y81{bottom:827.556000pt;}
.yaa{bottom:839.849333pt;}
.yda{bottom:841.701333pt;}
.y80{bottom:845.156000pt;}
.y35{bottom:850.520000pt;}
.y109{bottom:853.216000pt;}
.ya9{bottom:857.449333pt;}
.y7f{bottom:862.756000pt;}
.yd9{bottom:865.260000pt;}
.ya8{bottom:875.049333pt;}
.y7e{bottom:880.356000pt;}
.yd8{bottom:881.260000pt;}
.y34{bottom:882.520000pt;}
.ya7{bottom:892.649333pt;}
.yd7{bottom:897.260000pt;}
.y7d{bottom:897.956000pt;}
.y111{bottom:904.818667pt;}
.y108{bottom:909.493333pt;}
.ya6{bottom:910.249333pt;}
.yd6{bottom:913.260000pt;}
.y33{bottom:914.520000pt;}
.y7c{bottom:915.556000pt;}
.y110{bottom:920.818667pt;}
.y107{bottom:925.493333pt;}
.ya5{bottom:927.849333pt;}
.yd5{bottom:929.260000pt;}
.y7b{bottom:933.156000pt;}
.y10f{bottom:936.818667pt;}
.y106{bottom:941.493333pt;}
.yd4{bottom:945.260000pt;}
.ya4{bottom:945.449333pt;}
.y7a{bottom:950.756000pt;}
.y10e{bottom:952.818667pt;}
.y105{bottom:957.493333pt;}
.y9f{bottom:960.189333pt;}
.ya3{bottom:963.049333pt;}
.y79{bottom:968.356000pt;}
.yd3{bottom:968.818667pt;}
.y104{bottom:973.493333pt;}
.y9e{bottom:974.589333pt;}
.y2{bottom:978.476000pt;}
.ya2{bottom:980.649333pt;}
.yd2{bottom:984.818667pt;}
.y78{bottom:985.956000pt;}
.y9d{bottom:988.989333pt;}
.y103{bottom:989.493333pt;}
.ya1{bottom:998.249333pt;}
.yd1{bottom:1000.818667pt;}
.y9c{bottom:1003.389333pt;}
.y77{bottom:1014.894667pt;}
.ya0{bottom:1015.849333pt;}
.yd0{bottom:1016.818667pt;}
.y102{bottom:1016.832000pt;}
.y9b{bottom:1017.789333pt;}
.y1{bottom:1030.818667pt;}
.y39{bottom:1069.870667pt;}
.h8{height:34.945312pt;}
.hb{height:38.697917pt;}
.hd{height:38.828125pt;}
.h7{height:42.000000pt;}
.h4{height:42.710938pt;}
.ha{height:46.593750pt;}
.hc{height:46.666667pt;}
.h6{height:51.333333pt;}
.h5{height:56.000000pt;}
.h3{height:70.000000pt;}
.h9{height:93.333333pt;}
.h2{height:152.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:39.685067pt;}
.xd{left:41.574800pt;}
.x4{left:96.000000pt;}
.x11{left:111.118133pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x2{left:117.186400pt;}
.x8{left:148.408000pt;}
.x9{left:267.633333pt;}
.xb{left:275.602667pt;}
.xc{left:325.074667pt;}
.xa{left:351.109333pt;}
.x5{left:415.748000pt;}
.x12{left:430.866667pt;}
.x6{left:434.645333pt;}
.xf{left:544.218667pt;}
.x10{left:741.238667pt;}
.x7{left:743.128000pt;}
}




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