
    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_f776f082eeb217697a17f69c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_65dbec5096dc3e0c6c900373.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_dba3d4770b3626f916329159.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_946612f290ec5a87d842d48f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.760254;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_c692c766184d1c54bf61ece5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4843f243fa46283dcc09c9a7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-12.960000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1f{letter-spacing:-0.014400px;}
.lsd{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.014400px;}
.ls5{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.123552px;}
.ls0{letter-spacing:0.159840px;}
.ls2{letter-spacing:0.160800px;}
.ls3{letter-spacing:0.161040px;}
.ls12{letter-spacing:0.161568px;}
.ls1d{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.204336px;}
.ls7{letter-spacing:0.223344px;}
.ls30{letter-spacing:0.224352px;}
.ls31{letter-spacing:0.239400px;}
.ls4{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.242064px;}
.ls9{letter-spacing:0.242352px;}
.ls28{letter-spacing:0.253872px;}
.ls15{letter-spacing:0.274896px;}
.ls14{letter-spacing:0.286848px;}
.ls1e{letter-spacing:0.298080px;}
.lsf{letter-spacing:0.318384px;}
.ls29{letter-spacing:0.318816px;}
.ls23{letter-spacing:0.319680px;}
.ls24{letter-spacing:0.320280px;}
.lse{letter-spacing:0.351648px;}
.ls1b{letter-spacing:0.356400px;}
.ls13{letter-spacing:0.370512px;}
.ls2c{letter-spacing:0.383040px;}
.ls26{letter-spacing:0.383760px;}
.ls32{letter-spacing:0.419184px;}
.ls1{letter-spacing:0.478224px;}
.ls2e{letter-spacing:0.479400px;}
.ls2b{letter-spacing:0.480000px;}
.ls2d{letter-spacing:0.480600px;}
.ls17{letter-spacing:0.543168px;}
.ls18{letter-spacing:0.578592px;}
.ls25{letter-spacing:0.637632px;}
.ls6{letter-spacing:0.680400px;}
.ls16{letter-spacing:0.702576px;}
.ls27{letter-spacing:0.738000px;}
.ls33{letter-spacing:0.802944px;}
.ls2a{letter-spacing:0.861984px;}
.ls1a{letter-spacing:0.874800px;}
.lsc{letter-spacing:3.420000px;}
.ls2f{letter-spacing:16.586880px;}
.ls1c{letter-spacing:29.280600px;}
.ls22{letter-spacing:46.586880px;}
.ls21{letter-spacing:93.925440px;}
.ls20{letter-spacing:121.944960px;}
.lsa{letter-spacing:149.964480px;}
.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:-30.250512px;}
.ws6{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.wsd{word-spacing:-15.562944px;}
.ws9{word-spacing:-15.338592px;}
.ws1{word-spacing:-15.238224px;}
.wsb{word-spacing:-15.179184px;}
.wsc{word-spacing:-15.143760px;}
.wse{word-spacing:-15.078816px;}
.wsa{word-spacing:-15.013872px;}
.ws5{word-spacing:-12.236400px;}
.ws0{word-spacing:-12.122352px;}
.ws4{word-spacing:-0.745200px;}
.ws7{word-spacing:0.000000px;}
._18{margin-left:-5.472000px;}
._13{margin-left:-3.542400px;}
._8{margin-left:-2.469600px;}
._1{margin-left:-1.188000px;}
._4{width:1.045440px;}
._2{width:2.185920px;}
._3{width:3.468960px;}
._11{width:4.494240px;}
._15{width:5.571360px;}
._b{width:6.603840px;}
._6{width:8.256960px;}
._0{width:9.313920px;}
._1a{width:10.316160px;}
._10{width:11.321280px;}
._17{width:12.539520px;}
._16{width:13.737600px;}
._9{width:15.308400px;}
._5{width:16.541400px;}
._7{width:19.478400px;}
._a{width:20.587200px;}
._1b{width:21.633600px;}
._12{width:22.644000px;}
._14{width:23.940000px;}
._19{width:26.611200px;}
._c{width:849.538800px;}
._e{width:1337.699400px;}
._f{width:1649.101800px;}
._d{width:1774.021200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:53.280000px;}
.fs2{font-size:59.040000px;}
.fs7{font-size:64.800000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.520000px;}
.yd{bottom:3.600000px;}
.ya7{bottom:5.760000px;}
.yac{bottom:6.120000px;}
.yf{bottom:7.200000px;}
.y9{bottom:16.200000px;}
.y1{bottom:17.985900px;}
.ya9{bottom:25.560000px;}
.yab{bottom:25.920000px;}
.yaf{bottom:26.640000px;}
.y8{bottom:30.240000px;}
.y4{bottom:34.920000px;}
.y3a{bottom:40.302885px;}
.yb{bottom:42.822885px;}
.y7{bottom:43.920000px;}
.y39{bottom:44.622885px;}
.yae{bottom:46.440000px;}
.y6{bottom:57.600000px;}
.y38{bottom:60.102885px;}
.y5{bottom:71.640000px;}
.y3{bottom:73.408785px;}
.yc0{bottom:124.902885px;}
.y61{bottom:134.262900px;}
.ya5{bottom:134.622900px;}
.y75{bottom:137.142900px;}
.y88{bottom:140.742900px;}
.ybf{bottom:144.702900px;}
.y36{bottom:146.862900px;}
.y9f{bottom:153.702900px;}
.y60{bottom:158.022900px;}
.y74{bottom:160.902900px;}
.y87{bottom:164.502900px;}
.y35{bottom:170.622900px;}
.ya4{bottom:175.662900px;}
.y5f{bottom:181.782900px;}
.ybe{bottom:184.302900px;}
.y86{bottom:188.262900px;}
.y34{bottom:194.742900px;}
.y9e{bottom:198.702900px;}
.ybd{bottom:204.102900px;}
.y5e{bottom:205.542900px;}
.y85{bottom:212.022900px;}
.y33{bottom:218.502900px;}
.y9d{bottom:222.462900px;}
.ybc{bottom:224.262900px;}
.y5d{bottom:229.302900px;}
.yec{bottom:234.702900px;}
.y84{bottom:235.782900px;}
.y32{bottom:242.262900px;}
.ybb{bottom:244.062900px;}
.y9c{bottom:246.222900px;}
.y5c{bottom:253.062900px;}
.yeb{bottom:253.782900px;}
.y31{bottom:266.022900px;}
.y9b{bottom:269.982900px;}
.yea{bottom:272.502900px;}
.y5b{bottom:277.182900px;}
.y83{bottom:280.782900px;}
.yba{bottom:286.182900px;}
.y30{bottom:289.782900px;}
.y9a{bottom:293.742900px;}
.y5a{bottom:300.942900px;}
.ye9{bottom:306.702900px;}
.y2f{bottom:313.542900px;}
.y99{bottom:317.502900px;}
.ye8{bottom:323.982900px;}
.y59{bottom:324.702900px;}
.y82{bottom:325.422900px;}
.yb9{bottom:331.182900px;}
.y2e{bottom:337.302900px;}
.ye7{bottom:341.262900px;}
.y98{bottom:341.622900px;}
.y58{bottom:348.462900px;}
.y81{bottom:349.542900px;}
.yb8{bottom:354.942900px;}
.ye6{bottom:358.542900px;}
.y2d{bottom:361.062900px;}
.y57{bottom:372.222900px;}
.y80{bottom:373.302900px;}
.ye5{bottom:375.822900px;}
.yb7{bottom:378.702900px;}
.y2c{bottom:385.182900px;}
.y97{bottom:386.262900px;}
.ye4{bottom:393.102900px;}
.y73{bottom:395.982900px;}
.y7f{bottom:397.062900px;}
.yb6{bottom:402.462900px;}
.y2b{bottom:408.942900px;}
.ye3{bottom:410.382900px;}
.y56{bottom:417.222900px;}
.y72{bottom:419.742900px;}
.y7e{bottom:420.822900px;}
.yb5{bottom:426.222900px;}
.ye2{bottom:429.822900px;}
.y96{bottom:430.902900px;}
.y2a{bottom:432.702900px;}
.y55{bottom:440.982900px;}
.y71{bottom:443.502900px;}
.ye1{bottom:449.622900px;}
.yb4{bottom:449.982900px;}
.y95{bottom:455.022900px;}
.y54{bottom:464.742900px;}
.y7d{bottom:465.462900px;}
.y70{bottom:467.622900px;}
.ye0{bottom:469.422900px;}
.ya3{bottom:470.502900px;}
.y29{bottom:477.342900px;}
.y94{bottom:478.782900px;}
.y53{bottom:488.502900px;}
.ydf{bottom:489.222900px;}
.y6f{bottom:491.382900px;}
.yb3{bottom:494.982900px;}
.y93{bottom:502.542900px;}
.yde{bottom:509.022900px;}
.y7c{bottom:510.462900px;}
.ya2{bottom:511.182900px;}
.y52{bottom:512.262900px;}
.y28{bottom:522.342900px;}
.y92{bottom:526.302900px;}
.ydd{bottom:529.182900px;}
.y7b{bottom:534.222900px;}
.y51{bottom:536.022900px;}
.y27{bottom:546.102900px;}
.ydc{bottom:548.982900px;}
.yb2{bottom:551.128800px;}
.y7a{bottom:557.982900px;}
.y50{bottom:559.782900px;}
.ydb{bottom:568.782900px;}
.y91{bottom:570.942900px;}
.y79{bottom:581.742900px;}
.y4f{bottom:583.542900px;}
.yda{bottom:588.582900px;}
.y26{bottom:590.742900px;}
.yb1{bottom:591.448800px;}
.y78{bottom:605.502900px;}
.y4e{bottom:607.302900px;}
.yd9{bottom:608.382900px;}
.y25{bottom:614.502900px;}
.y90{bottom:615.942900px;}
.yd8{bottom:628.182900px;}
.y4d{bottom:631.422900px;}
.yb0{bottom:632.128800px;}
.y24{bottom:638.262900px;}
.y8f{bottom:639.702900px;}
.yd7{bottom:647.982900px;}
.y77{bottom:650.502900px;}
.y6e{bottom:655.182900px;}
.y23{bottom:662.382900px;}
.yd6{bottom:667.782900px;}
.yad{bottom:672.448800px;}
.y4c{bottom:676.062900px;}
.y6d{bottom:678.942900px;}
.y8e{bottom:684.342900px;}
.y22{bottom:686.142900px;}
.yd5{bottom:687.582900px;}
.y76{bottom:691.182900px;}
.y4b{bottom:699.822900px;}
.y6c{bottom:702.702900px;}
.yd4{bottom:707.382900px;}
.y21{bottom:709.902900px;}
.y4a{bottom:723.582900px;}
.y6b{bottom:726.462900px;}
.yd3{bottom:727.542900px;}
.y8d{bottom:729.342900px;}
.yaa{bottom:733.648800px;}
.y20{bottom:733.662900px;}
.y49{bottom:747.342900px;}
.y6a{bottom:750.222900px;}
.y8c{bottom:753.102900px;}
.yd2{bottom:767.142900px;}
.y48{bottom:771.462900px;}
.y1f{bottom:773.982900px;}
.ya8{bottom:774.328800px;}
.y8b{bottom:776.862900px;}
.yd1{bottom:786.942900px;}
.y1e{bottom:789.822900px;}
.y47{bottom:795.222900px;}
.y8a{bottom:800.622900px;}
.y1d{bottom:805.662900px;}
.yd0{bottom:806.742900px;}
.ya6{bottom:814.648800px;}
.y46{bottom:818.982900px;}
.y1c{bottom:823.662900px;}
.ycf{bottom:826.542900px;}
.ya1{bottom:828.702900px;}
.y45{bottom:842.742900px;}
.y1b{bottom:843.102900px;}
.y89{bottom:845.622900px;}
.yce{bottom:846.342900px;}
.y1a{bottom:862.542900px;}
.ycd{bottom:866.142900px;}
.y44{bottom:866.502900px;}
.ya0{bottom:869.382900px;}
.ycc{bottom:885.942900px;}
.y19{bottom:889.182900px;}
.y69{bottom:890.262900px;}
.y18{bottom:902.142900px;}
.ycb{bottom:905.742900px;}
.y43{bottom:911.142900px;}
.y68{bottom:914.022900px;}
.yca{bottom:925.902900px;}
.y17{bottom:928.782900px;}
.y42{bottom:935.262900px;}
.y67{bottom:937.782900px;}
.yc9{bottom:945.702900px;}
.y16{bottom:951.462900px;}
.y41{bottom:959.022900px;}
.y66{bottom:961.542900px;}
.yc8{bottom:965.502900px;}
.y15{bottom:967.302900px;}
.y40{bottom:982.782900px;}
.yc7{bottom:985.302900px;}
.y65{bottom:985.662900px;}
.y14{bottom:991.062900px;}
.yc6{bottom:1005.102900px;}
.y3f{bottom:1006.542900px;}
.y64{bottom:1009.422900px;}
.y13{bottom:1011.222900px;}
.yc5{bottom:1024.902900px;}
.y3e{bottom:1030.302900px;}
.y12{bottom:1031.382900px;}
.y63{bottom:1033.182900px;}
.yc4{bottom:1044.702900px;}
.y3d{bottom:1054.062900px;}
.y62{bottom:1056.942900px;}
.yc3{bottom:1064.502900px;}
.y11{bottom:1065.942900px;}
.y3c{bottom:1077.822900px;}
.yc2{bottom:1084.302900px;}
.y10{bottom:1097.262900px;}
.y3b{bottom:1101.582900px;}
.yc1{bottom:1104.102900px;}
.y37{bottom:1122.102900px;}
.ye{bottom:1128.928800px;}
.y2{bottom:1134.702900px;}
.yc{bottom:1189.408800px;}
.h6{height:17.280000px;}
.h14{height:19.800000px;}
.h8{height:23.760000px;}
.he{height:27.014766px;}
.hd{height:32.205938px;}
.h5{height:33.018047px;}
.h3{height:37.020234px;}
.h15{height:39.600000px;}
.h16{height:39.960000px;}
.h7{height:40.013438px;}
.hf{height:40.993594px;}
.ha{height:41.022422px;}
.h13{height:45.024609px;}
.h10{height:48.062109px;}
.h12{height:48.796875px;}
.h9{height:50.027344px;}
.h11{height:58.031719px;}
.h17{height:60.480000px;}
.hc{height:65.325937px;}
.h4{height:82.800000px;}
.hb{height:83.045391px;}
.h2{height:1226.862900px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:22.680000px;}
.w9{width:123.480000px;}
.w3{width:177.480000px;}
.w8{width:240.480000px;}
.wa{width:308.160000px;}
.w7{width:364.320000px;}
.w6{width:425.520000px;}
.w4{width:592.920000px;}
.w2{width:856.941600px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x27{left:12.977400px;}
.x1{left:17.985900px;}
.x23{left:22.132650px;}
.x2b{left:24.187050px;}
.x1e{left:25.596300px;}
.x22{left:28.515000px;}
.x2e{left:33.792750px;}
.x26{left:42.262500px;}
.x2a{left:44.137500px;}
.x2d{left:47.887500px;}
.x21{left:51.648150px;}
.x25{left:56.859300px;}
.x10{left:58.109850px;}
.x24{left:61.690800px;}
.x9{left:65.145900px;}
.x7{left:68.760000px;}
.x20{left:73.131150px;}
.x3{left:75.585900px;}
.x2f{left:79.602150px;}
.x1c{left:86.240400px;}
.xe{left:95.760000px;}
.x28{left:99.183450px;}
.x2c{left:110.839950px;}
.xf{left:122.760000px;}
.x1b{left:127.425900px;}
.x29{left:132.296250px;}
.x4{left:160.800300px;}
.x11{left:164.880150px;}
.xc{left:175.109850px;}
.xd{left:176.760000px;}
.x13{left:231.438600px;}
.xb{left:236.598600px;}
.x5{left:253.785900px;}
.x1a{left:333.422550px;}
.x17{left:346.658850px;}
.x1d{left:368.625900px;}
.x15{left:378.172050px;}
.x19{left:381.415200px;}
.x2{left:438.989700px;}
.xa{left:490.665900px;}
.x1f{left:492.825900px;}
.x18{left:542.279850px;}
.x14{left:557.040000px;}
.x16{left:558.299850px;}
.x12{left:812.099700px;}
.x8{left:818.985900px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-11.520000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1f{letter-spacing:-0.012800pt;}
.lsd{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.012800pt;}
.ls5{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.109824pt;}
.ls0{letter-spacing:0.142080pt;}
.ls2{letter-spacing:0.142933pt;}
.ls3{letter-spacing:0.143147pt;}
.ls12{letter-spacing:0.143616pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.181632pt;}
.ls7{letter-spacing:0.198528pt;}
.ls30{letter-spacing:0.199424pt;}
.ls31{letter-spacing:0.212800pt;}
.ls4{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.215168pt;}
.ls9{letter-spacing:0.215424pt;}
.ls28{letter-spacing:0.225664pt;}
.ls15{letter-spacing:0.244352pt;}
.ls14{letter-spacing:0.254976pt;}
.ls1e{letter-spacing:0.264960pt;}
.lsf{letter-spacing:0.283008pt;}
.ls29{letter-spacing:0.283392pt;}
.ls23{letter-spacing:0.284160pt;}
.ls24{letter-spacing:0.284693pt;}
.lse{letter-spacing:0.312576pt;}
.ls1b{letter-spacing:0.316800pt;}
.ls13{letter-spacing:0.329344pt;}
.ls2c{letter-spacing:0.340480pt;}
.ls26{letter-spacing:0.341120pt;}
.ls32{letter-spacing:0.372608pt;}
.ls1{letter-spacing:0.425088pt;}
.ls2e{letter-spacing:0.426133pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls2d{letter-spacing:0.427200pt;}
.ls17{letter-spacing:0.482816pt;}
.ls18{letter-spacing:0.514304pt;}
.ls25{letter-spacing:0.566784pt;}
.ls6{letter-spacing:0.604800pt;}
.ls16{letter-spacing:0.624512pt;}
.ls27{letter-spacing:0.656000pt;}
.ls33{letter-spacing:0.713728pt;}
.ls2a{letter-spacing:0.766208pt;}
.ls1a{letter-spacing:0.777600pt;}
.lsc{letter-spacing:3.040000pt;}
.ls2f{letter-spacing:14.743893pt;}
.ls1c{letter-spacing:26.027200pt;}
.ls22{letter-spacing:41.410560pt;}
.ls21{letter-spacing:83.489280pt;}
.ls20{letter-spacing:108.395520pt;}
.lsa{letter-spacing:133.301760pt;}
.ws2{word-spacing:-26.889344pt;}
.ws6{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.wsd{word-spacing:-13.833728pt;}
.ws9{word-spacing:-13.634304pt;}
.ws1{word-spacing:-13.545088pt;}
.wsb{word-spacing:-13.492608pt;}
.wsc{word-spacing:-13.461120pt;}
.wse{word-spacing:-13.403392pt;}
.wsa{word-spacing:-13.345664pt;}
.ws5{word-spacing:-10.876800pt;}
.ws0{word-spacing:-10.775424pt;}
.ws4{word-spacing:-0.662400pt;}
.ws7{word-spacing:0.000000pt;}
._18{margin-left:-4.864000pt;}
._13{margin-left:-3.148800pt;}
._8{margin-left:-2.195200pt;}
._1{margin-left:-1.056000pt;}
._4{width:0.929280pt;}
._2{width:1.943040pt;}
._3{width:3.083520pt;}
._11{width:3.994880pt;}
._15{width:4.952320pt;}
._b{width:5.870080pt;}
._6{width:7.339520pt;}
._0{width:8.279040pt;}
._1a{width:9.169920pt;}
._10{width:10.063360pt;}
._17{width:11.146240pt;}
._16{width:12.211200pt;}
._9{width:13.607467pt;}
._5{width:14.703467pt;}
._7{width:17.314133pt;}
._a{width:18.299733pt;}
._1b{width:19.229867pt;}
._12{width:20.128000pt;}
._14{width:21.280000pt;}
._19{width:23.654400pt;}
._c{width:755.145600pt;}
._e{width:1189.066133pt;}
._f{width:1465.868267pt;}
._d{width:1576.907733pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:47.360000pt;}
.fs2{font-size:52.480000pt;}
.fs7{font-size:57.600000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.240000pt;}
.yd{bottom:3.200000pt;}
.ya7{bottom:5.120000pt;}
.yac{bottom:5.440000pt;}
.yf{bottom:6.400000pt;}
.y9{bottom:14.400000pt;}
.y1{bottom:15.987467pt;}
.ya9{bottom:22.720000pt;}
.yab{bottom:23.040000pt;}
.yaf{bottom:23.680000pt;}
.y8{bottom:26.880000pt;}
.y4{bottom:31.040000pt;}
.y3a{bottom:35.824787pt;}
.yb{bottom:38.064787pt;}
.y7{bottom:39.040000pt;}
.y39{bottom:39.664787pt;}
.yae{bottom:41.280000pt;}
.y6{bottom:51.200000pt;}
.y38{bottom:53.424787pt;}
.y5{bottom:63.680000pt;}
.y3{bottom:65.252253pt;}
.yc0{bottom:111.024787pt;}
.y61{bottom:119.344800pt;}
.ya5{bottom:119.664800pt;}
.y75{bottom:121.904800pt;}
.y88{bottom:125.104800pt;}
.ybf{bottom:128.624800pt;}
.y36{bottom:130.544800pt;}
.y9f{bottom:136.624800pt;}
.y60{bottom:140.464800pt;}
.y74{bottom:143.024800pt;}
.y87{bottom:146.224800pt;}
.y35{bottom:151.664800pt;}
.ya4{bottom:156.144800pt;}
.y5f{bottom:161.584800pt;}
.ybe{bottom:163.824800pt;}
.y86{bottom:167.344800pt;}
.y34{bottom:173.104800pt;}
.y9e{bottom:176.624800pt;}
.ybd{bottom:181.424800pt;}
.y5e{bottom:182.704800pt;}
.y85{bottom:188.464800pt;}
.y33{bottom:194.224800pt;}
.y9d{bottom:197.744800pt;}
.ybc{bottom:199.344800pt;}
.y5d{bottom:203.824800pt;}
.yec{bottom:208.624800pt;}
.y84{bottom:209.584800pt;}
.y32{bottom:215.344800pt;}
.ybb{bottom:216.944800pt;}
.y9c{bottom:218.864800pt;}
.y5c{bottom:224.944800pt;}
.yeb{bottom:225.584800pt;}
.y31{bottom:236.464800pt;}
.y9b{bottom:239.984800pt;}
.yea{bottom:242.224800pt;}
.y5b{bottom:246.384800pt;}
.y83{bottom:249.584800pt;}
.yba{bottom:254.384800pt;}
.y30{bottom:257.584800pt;}
.y9a{bottom:261.104800pt;}
.y5a{bottom:267.504800pt;}
.ye9{bottom:272.624800pt;}
.y2f{bottom:278.704800pt;}
.y99{bottom:282.224800pt;}
.ye8{bottom:287.984800pt;}
.y59{bottom:288.624800pt;}
.y82{bottom:289.264800pt;}
.yb9{bottom:294.384800pt;}
.y2e{bottom:299.824800pt;}
.ye7{bottom:303.344800pt;}
.y98{bottom:303.664800pt;}
.y58{bottom:309.744800pt;}
.y81{bottom:310.704800pt;}
.yb8{bottom:315.504800pt;}
.ye6{bottom:318.704800pt;}
.y2d{bottom:320.944800pt;}
.y57{bottom:330.864800pt;}
.y80{bottom:331.824800pt;}
.ye5{bottom:334.064800pt;}
.yb7{bottom:336.624800pt;}
.y2c{bottom:342.384800pt;}
.y97{bottom:343.344800pt;}
.ye4{bottom:349.424800pt;}
.y73{bottom:351.984800pt;}
.y7f{bottom:352.944800pt;}
.yb6{bottom:357.744800pt;}
.y2b{bottom:363.504800pt;}
.ye3{bottom:364.784800pt;}
.y56{bottom:370.864800pt;}
.y72{bottom:373.104800pt;}
.y7e{bottom:374.064800pt;}
.yb5{bottom:378.864800pt;}
.ye2{bottom:382.064800pt;}
.y96{bottom:383.024800pt;}
.y2a{bottom:384.624800pt;}
.y55{bottom:391.984800pt;}
.y71{bottom:394.224800pt;}
.ye1{bottom:399.664800pt;}
.yb4{bottom:399.984800pt;}
.y95{bottom:404.464800pt;}
.y54{bottom:413.104800pt;}
.y7d{bottom:413.744800pt;}
.y70{bottom:415.664800pt;}
.ye0{bottom:417.264800pt;}
.ya3{bottom:418.224800pt;}
.y29{bottom:424.304800pt;}
.y94{bottom:425.584800pt;}
.y53{bottom:434.224800pt;}
.ydf{bottom:434.864800pt;}
.y6f{bottom:436.784800pt;}
.yb3{bottom:439.984800pt;}
.y93{bottom:446.704800pt;}
.yde{bottom:452.464800pt;}
.y7c{bottom:453.744800pt;}
.ya2{bottom:454.384800pt;}
.y52{bottom:455.344800pt;}
.y28{bottom:464.304800pt;}
.y92{bottom:467.824800pt;}
.ydd{bottom:470.384800pt;}
.y7b{bottom:474.864800pt;}
.y51{bottom:476.464800pt;}
.y27{bottom:485.424800pt;}
.ydc{bottom:487.984800pt;}
.yb2{bottom:489.892267pt;}
.y7a{bottom:495.984800pt;}
.y50{bottom:497.584800pt;}
.ydb{bottom:505.584800pt;}
.y91{bottom:507.504800pt;}
.y79{bottom:517.104800pt;}
.y4f{bottom:518.704800pt;}
.yda{bottom:523.184800pt;}
.y26{bottom:525.104800pt;}
.yb1{bottom:525.732267pt;}
.y78{bottom:538.224800pt;}
.y4e{bottom:539.824800pt;}
.yd9{bottom:540.784800pt;}
.y25{bottom:546.224800pt;}
.y90{bottom:547.504800pt;}
.yd8{bottom:558.384800pt;}
.y4d{bottom:561.264800pt;}
.yb0{bottom:561.892267pt;}
.y24{bottom:567.344800pt;}
.y8f{bottom:568.624800pt;}
.yd7{bottom:575.984800pt;}
.y77{bottom:578.224800pt;}
.y6e{bottom:582.384800pt;}
.y23{bottom:588.784800pt;}
.yd6{bottom:593.584800pt;}
.yad{bottom:597.732267pt;}
.y4c{bottom:600.944800pt;}
.y6d{bottom:603.504800pt;}
.y8e{bottom:608.304800pt;}
.y22{bottom:609.904800pt;}
.yd5{bottom:611.184800pt;}
.y76{bottom:614.384800pt;}
.y4b{bottom:622.064800pt;}
.y6c{bottom:624.624800pt;}
.yd4{bottom:628.784800pt;}
.y21{bottom:631.024800pt;}
.y4a{bottom:643.184800pt;}
.y6b{bottom:645.744800pt;}
.yd3{bottom:646.704800pt;}
.y8d{bottom:648.304800pt;}
.yaa{bottom:652.132267pt;}
.y20{bottom:652.144800pt;}
.y49{bottom:664.304800pt;}
.y6a{bottom:666.864800pt;}
.y8c{bottom:669.424800pt;}
.yd2{bottom:681.904800pt;}
.y48{bottom:685.744800pt;}
.y1f{bottom:687.984800pt;}
.ya8{bottom:688.292267pt;}
.y8b{bottom:690.544800pt;}
.yd1{bottom:699.504800pt;}
.y1e{bottom:702.064800pt;}
.y47{bottom:706.864800pt;}
.y8a{bottom:711.664800pt;}
.y1d{bottom:716.144800pt;}
.yd0{bottom:717.104800pt;}
.ya6{bottom:724.132267pt;}
.y46{bottom:727.984800pt;}
.y1c{bottom:732.144800pt;}
.ycf{bottom:734.704800pt;}
.ya1{bottom:736.624800pt;}
.y45{bottom:749.104800pt;}
.y1b{bottom:749.424800pt;}
.y89{bottom:751.664800pt;}
.yce{bottom:752.304800pt;}
.y1a{bottom:766.704800pt;}
.ycd{bottom:769.904800pt;}
.y44{bottom:770.224800pt;}
.ya0{bottom:772.784800pt;}
.ycc{bottom:787.504800pt;}
.y19{bottom:790.384800pt;}
.y69{bottom:791.344800pt;}
.y18{bottom:801.904800pt;}
.ycb{bottom:805.104800pt;}
.y43{bottom:809.904800pt;}
.y68{bottom:812.464800pt;}
.yca{bottom:823.024800pt;}
.y17{bottom:825.584800pt;}
.y42{bottom:831.344800pt;}
.y67{bottom:833.584800pt;}
.yc9{bottom:840.624800pt;}
.y16{bottom:845.744800pt;}
.y41{bottom:852.464800pt;}
.y66{bottom:854.704800pt;}
.yc8{bottom:858.224800pt;}
.y15{bottom:859.824800pt;}
.y40{bottom:873.584800pt;}
.yc7{bottom:875.824800pt;}
.y65{bottom:876.144800pt;}
.y14{bottom:880.944800pt;}
.yc6{bottom:893.424800pt;}
.y3f{bottom:894.704800pt;}
.y64{bottom:897.264800pt;}
.y13{bottom:898.864800pt;}
.yc5{bottom:911.024800pt;}
.y3e{bottom:915.824800pt;}
.y12{bottom:916.784800pt;}
.y63{bottom:918.384800pt;}
.yc4{bottom:928.624800pt;}
.y3d{bottom:936.944800pt;}
.y62{bottom:939.504800pt;}
.yc3{bottom:946.224800pt;}
.y11{bottom:947.504800pt;}
.y3c{bottom:958.064800pt;}
.yc2{bottom:963.824800pt;}
.y10{bottom:975.344800pt;}
.y3b{bottom:979.184800pt;}
.yc1{bottom:981.424800pt;}
.y37{bottom:997.424800pt;}
.ye{bottom:1003.492267pt;}
.y2{bottom:1008.624800pt;}
.yc{bottom:1057.252267pt;}
.h6{height:15.360000pt;}
.h14{height:17.600000pt;}
.h8{height:21.120000pt;}
.he{height:24.013125pt;}
.hd{height:28.627500pt;}
.h5{height:29.349375pt;}
.h3{height:32.906875pt;}
.h15{height:35.200000pt;}
.h16{height:35.520000pt;}
.h7{height:35.567500pt;}
.hf{height:36.438750pt;}
.ha{height:36.464375pt;}
.h13{height:40.021875pt;}
.h10{height:42.721875pt;}
.h12{height:43.375000pt;}
.h9{height:44.468750pt;}
.h11{height:51.583750pt;}
.h17{height:53.760000pt;}
.hc{height:58.067500pt;}
.h4{height:73.600000pt;}
.hb{height:73.818125pt;}
.h2{height:1090.544800pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:20.160000pt;}
.w9{width:109.760000pt;}
.w3{width:157.760000pt;}
.w8{width:213.760000pt;}
.wa{width:273.920000pt;}
.w7{width:323.840000pt;}
.w6{width:378.240000pt;}
.w4{width:527.040000pt;}
.w2{width:761.725867pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x27{left:11.535467pt;}
.x1{left:15.987467pt;}
.x23{left:19.673467pt;}
.x2b{left:21.499600pt;}
.x1e{left:22.752267pt;}
.x22{left:25.346667pt;}
.x2e{left:30.038000pt;}
.x26{left:37.566667pt;}
.x2a{left:39.233333pt;}
.x2d{left:42.566667pt;}
.x21{left:45.909467pt;}
.x25{left:50.541600pt;}
.x10{left:51.653200pt;}
.x24{left:54.836267pt;}
.x9{left:57.907467pt;}
.x7{left:61.120000pt;}
.x20{left:65.005467pt;}
.x3{left:67.187467pt;}
.x2f{left:70.757467pt;}
.x1c{left:76.658133pt;}
.xe{left:85.120000pt;}
.x28{left:88.163067pt;}
.x2c{left:98.524400pt;}
.xf{left:109.120000pt;}
.x1b{left:113.267467pt;}
.x29{left:117.596667pt;}
.x4{left:142.933600pt;}
.x11{left:146.560133pt;}
.xc{left:155.653200pt;}
.xd{left:157.120000pt;}
.x13{left:205.723200pt;}
.xb{left:210.309867pt;}
.x5{left:225.587467pt;}
.x1a{left:296.375600pt;}
.x17{left:308.141200pt;}
.x1d{left:327.667467pt;}
.x15{left:336.152933pt;}
.x19{left:339.035733pt;}
.x2{left:390.213067pt;}
.xa{left:436.147467pt;}
.x1f{left:438.067467pt;}
.x18{left:482.026533pt;}
.x14{left:495.146667pt;}
.x16{left:496.266533pt;}
.x12{left:721.866400pt;}
.x8{left:727.987467pt;}
}




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