
    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_96cfa42c16c6f0e214860029.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_78085be005f0f76f33add0c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728000;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_9880d5ff5874959f958e88d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_818e219b96ecdee213344eeb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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_4ff78438c43fcf60d96c5be2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5e1b0ac706716cb6ebf6a125.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8e84c0ccb414cb7db0155d13.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2b12ddc936c7f539d6719df4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056000;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:ffb;src:url('chunks/assets/font_1e8bee42c6ca7a746b431ed4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.056000;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:ffc;src:url('chunks/assets/font_6768c352fc5e4e6a9e686bfe.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.051758;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:ffd;src:url('chunks/assets/font_8d9b81ecb940e7f3f6ed6e80.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-31.968000px;}
.v3{vertical-align:-23.976000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.957000px;}
.v1{vertical-align:31.968000px;}
.v5{vertical-align:42.000000px;}
.ls7{letter-spacing:-1.920000px;}
.ls8{letter-spacing:-1.344000px;}
.ls6{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.600000px;}
.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;}
}
.ws7{word-spacing:-29.220000px;}
.ws11{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.640000px;}
.ws1{word-spacing:-10.494000px;}
.ws6{word-spacing:-10.296000px;}
.ws5{word-spacing:-6.996000px;}
.wsf{word-spacing:-5.280000px;}
.ws15{word-spacing:-3.960000px;}
.ws3{word-spacing:-2.592000px;}
.ws4{word-spacing:-1.728000px;}
.ws12{word-spacing:-1.296000px;}
.ws13{word-spacing:-0.360000px;}
.ws9{word-spacing:-0.072000px;}
.wse{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:0.360000px;}
.wsa{word-spacing:0.720000px;}
.ws10{word-spacing:1.920000px;}
.wsd{word-spacing:164.460000px;}
.wsc{word-spacing:1189.980000px;}
.wsb{word-spacing:1279.920000px;}
._3{margin-left:-13.219200px;}
._5{margin-left:-10.359600px;}
._d{margin-left:-8.962800px;}
._4{margin-left:-7.699200px;}
._0{margin-left:-6.630960px;}
._7{margin-left:-4.976400px;}
._b{margin-left:-3.736800px;}
._1{margin-left:-2.736000px;}
._8{margin-left:-1.540800px;}
._c{width:1.190160px;}
._2{width:2.592000px;}
._1b{width:3.960000px;}
._17{width:5.212800px;}
._6{width:11.087760px;}
._19{width:66.600000px;}
._1a{width:68.040000px;}
._a{width:72.576000px;}
._18{width:74.496000px;}
._14{width:207.216000px;}
._f{width:360.840000px;}
._e{width:500.860800px;}
._10{width:535.020000px;}
._11{width:664.837200px;}
._13{width:706.740000px;}
._12{width:708.420000px;}
._15{width:907.836000px;}
._9{width:1016.834400px;}
._16{width:1060.080000px;}
.fc4{color:rgb(50,100,70);}
.fc3{color:rgb(51,100,70);}
.fc5{color:rgb(74,74,73);}
.fc2{color:rgb(78,138,96);}
.fc1{color:rgb(30,30,28);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:47.364000px;}
.fs8{font-size:48.000000px;}
.fsb{font-size:55.968000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.fs9{font-size:144.000000px;}
.fs7{font-size:408.000000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:63.778050px;}
.y47{bottom:63.778200px;}
.y5{bottom:66.525004px;}
.yfb{bottom:75.478050px;}
.y77{bottom:75.478200px;}
.yb8{bottom:87.178050px;}
.y46{bottom:87.178200px;}
.y4{bottom:97.125005px;}
.yfa{bottom:98.878050px;}
.y76{bottom:98.878200px;}
.yb5{bottom:110.578050px;}
.y45{bottom:110.578200px;}
.yf4{bottom:122.278050px;}
.y75{bottom:122.278200px;}
.yb4{bottom:133.978050px;}
.y44{bottom:133.978200px;}
.y21{bottom:139.264499px;}
.yf3{bottom:145.678050px;}
.y74{bottom:145.678200px;}
.yb3{bottom:157.378050px;}
.y43{bottom:157.378200px;}
.yf2{bottom:169.078050px;}
.y73{bottom:169.078200px;}
.yb2{bottom:180.778050px;}
.y42{bottom:180.778200px;}
.yf1{bottom:192.478050px;}
.y72{bottom:192.478200px;}
.y18{bottom:196.933500px;}
.yb1{bottom:204.178050px;}
.y41{bottom:204.178200px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yf0{bottom:215.878050px;}
.y71{bottom:215.878200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yb0{bottom:227.578050px;}
.y40{bottom:227.578200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yef{bottom:239.278050px;}
.y70{bottom:239.278200px;}
.yaf{bottom:250.978050px;}
.y3f{bottom:250.978200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yee{bottom:262.678050px;}
.y6f{bottom:262.678200px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yae{bottom:274.378050px;}
.y3e{bottom:274.378200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yed{bottom:286.078050px;}
.y6e{bottom:286.078200px;}
.yad{bottom:297.778050px;}
.y3d{bottom:297.778200px;}
.yec{bottom:309.478050px;}
.y6d{bottom:309.478200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yac{bottom:321.178050px;}
.y3c{bottom:321.178200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yeb{bottom:332.878050px;}
.y6c{bottom:332.878200px;}
.yab{bottom:344.578050px;}
.y3b{bottom:344.578200px;}
.yf{bottom:348.133500px;}
.yea{bottom:356.278050px;}
.yba{bottom:356.278200px;}
.yaa{bottom:367.978050px;}
.y3a{bottom:367.978200px;}
.ye9{bottom:379.678050px;}
.y6b{bottom:379.678200px;}
.ye{bottom:386.785499px;}
.yb7{bottom:391.378050px;}
.y39{bottom:391.378200px;}
.ye8{bottom:403.078050px;}
.y6a{bottom:403.078200px;}
.yd{bottom:408.044999px;}
.ya9{bottom:414.778050px;}
.y38{bottom:414.778200px;}
.ye7{bottom:426.478050px;}
.y69{bottom:426.478200px;}
.ya8{bottom:438.178050px;}
.y37{bottom:438.178200px;}
.yf9{bottom:449.878050px;}
.y68{bottom:449.878200px;}
.ya7{bottom:461.578050px;}
.y8f{bottom:461.578200px;}
.ye6{bottom:473.278050px;}
.y67{bottom:473.278200px;}
.ya6{bottom:484.978050px;}
.y36{bottom:484.978200px;}
.ye5{bottom:496.678050px;}
.y66{bottom:496.678200px;}
.yc{bottom:502.864502px;}
.ya5{bottom:508.378050px;}
.y8e{bottom:508.378200px;}
.ye4{bottom:520.078050px;}
.y65{bottom:520.078200px;}
.yb{bottom:520.864502px;}
.ya4{bottom:531.778050px;}
.yf8{bottom:531.778200px;}
.ya{bottom:538.864499px;}
.ycf{bottom:542.774100px;}
.ye3{bottom:543.478050px;}
.y64{bottom:543.478200px;}
.ya3{bottom:555.178050px;}
.y8d{bottom:555.178200px;}
.y9{bottom:556.864499px;}
.yce{bottom:563.774100px;}
.ye2{bottom:566.878050px;}
.yf6{bottom:566.878200px;}
.y35{bottom:567.022800px;}
.ya2{bottom:578.578050px;}
.y8c{bottom:578.578200px;}
.yf7{bottom:584.878200px;}
.ye1{bottom:590.278050px;}
.y63{bottom:590.278200px;}
.y34{bottom:590.422800px;}
.ycd{bottom:600.044100px;}
.ya1{bottom:601.978050px;}
.y8b{bottom:601.978200px;}
.ye0{bottom:613.678050px;}
.y62{bottom:613.678200px;}
.y33{bottom:613.822800px;}
.ya0{bottom:625.378050px;}
.y8a{bottom:625.378200px;}
.ycc{bottom:634.634100px;}
.ydf{bottom:637.078050px;}
.y61{bottom:637.078200px;}
.y32{bottom:637.222800px;}
.y8{bottom:645.510000px;}
.y9f{bottom:648.778050px;}
.y89{bottom:648.778200px;}
.ycb{bottom:655.634100px;}
.yde{bottom:660.478050px;}
.y60{bottom:660.478200px;}
.y7{bottom:666.771000px;}
.y9e{bottom:672.178050px;}
.y88{bottom:672.178200px;}
.y31{bottom:672.178800px;}
.yca{bottom:676.634100px;}
.ydd{bottom:683.878050px;}
.y5f{bottom:683.878200px;}
.y4e{bottom:691.678050px;}
.y9d{bottom:695.578050px;}
.y87{bottom:695.578200px;}
.ydc{bottom:707.278050px;}
.y5e{bottom:707.278200px;}
.yc9{bottom:711.224100px;}
.y4d{bottom:715.078050px;}
.y9c{bottom:718.978050px;}
.y86{bottom:718.978200px;}
.y6{bottom:726.298500px;}
.ydb{bottom:730.678050px;}
.y5d{bottom:730.678200px;}
.y30{bottom:730.714050px;}
.y4c{bottom:738.478050px;}
.yb6{bottom:742.378050px;}
.y85{bottom:742.378200px;}
.yc8{bottom:747.494100px;}
.y3{bottom:752.599495px;}
.yda{bottom:754.078050px;}
.y5c{bottom:754.078200px;}
.y4b{bottom:761.878050px;}
.y9b{bottom:765.778050px;}
.y84{bottom:765.778200px;}
.yc7{bottom:768.494100px;}
.yc3{bottom:770.879100px;}
.yf5{bottom:771.622200px;}
.y2f{bottom:771.646050px;}
.yd9{bottom:777.478050px;}
.y5b{bottom:777.478200px;}
.y4a{bottom:785.278050px;}
.y9a{bottom:789.178050px;}
.y83{bottom:789.178200px;}
.yc2{bottom:791.879100px;}
.yc6{bottom:794.264100px;}
.yd8{bottom:800.878050px;}
.y5a{bottom:800.878200px;}
.y49{bottom:808.678050px;}
.y2e{bottom:812.578050px;}
.y82{bottom:812.578200px;}
.yc5{bottom:815.264100px;}
.y48{bottom:824.278050px;}
.y59{bottom:824.278200px;}
.y99{bottom:835.978050px;}
.y81{bottom:835.978200px;}
.yd7{bottom:847.678050px;}
.y58{bottom:847.678200px;}
.yc4{bottom:851.534100px;}
.y98{bottom:859.378050px;}
.y2d{bottom:871.078050px;}
.y57{bottom:871.078200px;}
.y2{bottom:879.369000px;}
.y97{bottom:882.778050px;}
.y80{bottom:882.778200px;}
.yc1{bottom:886.124100px;}
.yd6{bottom:894.478050px;}
.y56{bottom:894.478200px;}
.y96{bottom:906.178050px;}
.y7f{bottom:906.178200px;}
.yc0{bottom:907.124100px;}
.yd5{bottom:917.878050px;}
.y55{bottom:917.878200px;}
.ybd{bottom:920.009100px;}
.ybf{bottom:928.124100px;}
.y95{bottom:929.578050px;}
.y7e{bottom:929.578200px;}
.ybc{bottom:941.009100px;}
.yd4{bottom:941.278050px;}
.y2c{bottom:941.998500px;}
.y94{bottom:952.978050px;}
.y7d{bottom:952.978200px;}
.y2b{bottom:957.598500px;}
.ybe{bottom:962.714100px;}
.yd3{bottom:964.678050px;}
.y54{bottom:964.678200px;}
.y1{bottom:966.726000px;}
.y2a{bottom:973.198500px;}
.y93{bottom:976.378050px;}
.y7c{bottom:976.378200px;}
.yd2{bottom:988.078050px;}
.y29{bottom:988.798500px;}
.ybb{bottom:998.969100px;}
.y92{bottom:999.778050px;}
.y7b{bottom:999.778200px;}
.yd1{bottom:1011.478050px;}
.y28{bottom:1016.097750px;}
.y91{bottom:1023.178050px;}
.y7a{bottom:1023.178200px;}
.yfd{bottom:1034.878050px;}
.y27{bottom:1037.097750px;}
.y90{bottom:1046.578050px;}
.y24{bottom:1057.747650px;}
.y26{bottom:1058.097750px;}
.yfc{bottom:1058.278050px;}
.y53{bottom:1069.978050px;}
.yd0{bottom:1075.822050px;}
.y79{bottom:1076.278050px;}
.y23{bottom:1090.003650px;}
.y52{bottom:1093.378050px;}
.y78{bottom:1105.078050px;}
.y51{bottom:1116.778050px;}
.y25{bottom:1132.484700px;}
.y22{bottom:1166.043900px;}
.y50{bottom:1220.938650px;}
.y4f{bottom:1221.555600px;}
.h10{height:29.165941px;}
.h7{height:32.130000px;}
.h9{height:33.817896px;}
.h16{height:40.664062px;}
.hd{height:41.088000px;}
.h17{height:41.689453px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1a{height:48.796875px;}
.h11{height:50.027344px;}
.hc{height:51.360000px;}
.h2{height:55.080000px;}
.h12{height:55.317000px;}
.h13{height:56.496000px;}
.h15{height:60.187500px;}
.h14{height:65.062500px;}
.h19{height:66.703125px;}
.hf{height:70.855922px;}
.h5{height:78.030000px;}
.h18{height:83.689453px;}
.he{height:97.593750px;}
.ha{height:107.856000px;}
.h4{height:119.055004px;}
.hb{height:349.248000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.xc{left:76.960650px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:110.551200px;}
.x4{left:203.484001px;}
.xa{left:261.496050px;}
.xf{left:267.494400px;}
.x5{left:277.811400px;}
.xd{left:297.640050px;}
.xe{left:302.384400px;}
.x10{left:391.514400px;}
.x3{left:454.959000px;}
.x8{left:715.071450px;}
.x6{left:736.985700px;}
.x11{left:748.574400px;}
.x7{left:794.819700px;}
@media print{
.v2{vertical-align:-28.416000pt;}
.v3{vertical-align:-21.312000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.517333pt;}
.v1{vertical-align:28.416000pt;}
.v5{vertical-align:37.333333pt;}
.ls7{letter-spacing:-1.706667pt;}
.ls8{letter-spacing:-1.194667pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.533333pt;}
.ws7{word-spacing:-25.973333pt;}
.ws11{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.680000pt;}
.ws1{word-spacing:-9.328000pt;}
.ws6{word-spacing:-9.152000pt;}
.ws5{word-spacing:-6.218667pt;}
.wsf{word-spacing:-4.693333pt;}
.ws15{word-spacing:-3.520000pt;}
.ws3{word-spacing:-2.304000pt;}
.ws4{word-spacing:-1.536000pt;}
.ws12{word-spacing:-1.152000pt;}
.ws13{word-spacing:-0.320000pt;}
.ws9{word-spacing:-0.064000pt;}
.wse{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:0.320000pt;}
.wsa{word-spacing:0.640000pt;}
.ws10{word-spacing:1.706667pt;}
.wsd{word-spacing:146.186667pt;}
.wsc{word-spacing:1057.760000pt;}
.wsb{word-spacing:1137.706667pt;}
._3{margin-left:-11.750400pt;}
._5{margin-left:-9.208533pt;}
._d{margin-left:-7.966933pt;}
._4{margin-left:-6.843733pt;}
._0{margin-left:-5.894187pt;}
._7{margin-left:-4.423467pt;}
._b{margin-left:-3.321600pt;}
._1{margin-left:-2.432000pt;}
._8{margin-left:-1.369600pt;}
._c{width:1.057920pt;}
._2{width:2.304000pt;}
._1b{width:3.520000pt;}
._17{width:4.633600pt;}
._6{width:9.855787pt;}
._19{width:59.200000pt;}
._1a{width:60.480000pt;}
._a{width:64.512000pt;}
._18{width:66.218667pt;}
._14{width:184.192000pt;}
._f{width:320.746667pt;}
._e{width:445.209600pt;}
._10{width:475.573333pt;}
._11{width:590.966400pt;}
._13{width:628.213333pt;}
._12{width:629.706667pt;}
._15{width:806.965333pt;}
._9{width:903.852800pt;}
._16{width:942.293333pt;}
.fsc{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.101333pt;}
.fs8{font-size:42.666667pt;}
.fsb{font-size:49.749333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.fs9{font-size:128.000000pt;}
.fs7{font-size:362.666667pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:56.691600pt;}
.y47{bottom:56.691733pt;}
.y5{bottom:59.133337pt;}
.yfb{bottom:67.091600pt;}
.y77{bottom:67.091733pt;}
.yb8{bottom:77.491600pt;}
.y46{bottom:77.491733pt;}
.y4{bottom:86.333337pt;}
.yfa{bottom:87.891600pt;}
.y76{bottom:87.891733pt;}
.yb5{bottom:98.291600pt;}
.y45{bottom:98.291733pt;}
.yf4{bottom:108.691600pt;}
.y75{bottom:108.691733pt;}
.yb4{bottom:119.091600pt;}
.y44{bottom:119.091733pt;}
.y21{bottom:123.790666pt;}
.yf3{bottom:129.491600pt;}
.y74{bottom:129.491733pt;}
.yb3{bottom:139.891600pt;}
.y43{bottom:139.891733pt;}
.yf2{bottom:150.291600pt;}
.y73{bottom:150.291733pt;}
.yb2{bottom:160.691600pt;}
.y42{bottom:160.691733pt;}
.yf1{bottom:171.091600pt;}
.y72{bottom:171.091733pt;}
.y18{bottom:175.052000pt;}
.yb1{bottom:181.491600pt;}
.y41{bottom:181.491733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yf0{bottom:191.891600pt;}
.y71{bottom:191.891733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yb0{bottom:202.291600pt;}
.y40{bottom:202.291733pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yef{bottom:212.691600pt;}
.y70{bottom:212.691733pt;}
.yaf{bottom:223.091600pt;}
.y3f{bottom:223.091733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yee{bottom:233.491600pt;}
.y6f{bottom:233.491733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yae{bottom:243.891600pt;}
.y3e{bottom:243.891733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yed{bottom:254.291600pt;}
.y6e{bottom:254.291733pt;}
.yad{bottom:264.691600pt;}
.y3d{bottom:264.691733pt;}
.yec{bottom:275.091600pt;}
.y6d{bottom:275.091733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yac{bottom:285.491600pt;}
.y3c{bottom:285.491733pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yeb{bottom:295.891600pt;}
.y6c{bottom:295.891733pt;}
.yab{bottom:306.291600pt;}
.y3b{bottom:306.291733pt;}
.yf{bottom:309.452000pt;}
.yea{bottom:316.691600pt;}
.yba{bottom:316.691733pt;}
.yaa{bottom:327.091600pt;}
.y3a{bottom:327.091733pt;}
.ye9{bottom:337.491600pt;}
.y6b{bottom:337.491733pt;}
.ye{bottom:343.809333pt;}
.yb7{bottom:347.891600pt;}
.y39{bottom:347.891733pt;}
.ye8{bottom:358.291600pt;}
.y6a{bottom:358.291733pt;}
.yd{bottom:362.706666pt;}
.ya9{bottom:368.691600pt;}
.y38{bottom:368.691733pt;}
.ye7{bottom:379.091600pt;}
.y69{bottom:379.091733pt;}
.ya8{bottom:389.491600pt;}
.y37{bottom:389.491733pt;}
.yf9{bottom:399.891600pt;}
.y68{bottom:399.891733pt;}
.ya7{bottom:410.291600pt;}
.y8f{bottom:410.291733pt;}
.ye6{bottom:420.691600pt;}
.y67{bottom:420.691733pt;}
.ya6{bottom:431.091600pt;}
.y36{bottom:431.091733pt;}
.ye5{bottom:441.491600pt;}
.y66{bottom:441.491733pt;}
.yc{bottom:446.990669pt;}
.ya5{bottom:451.891600pt;}
.y8e{bottom:451.891733pt;}
.ye4{bottom:462.291600pt;}
.y65{bottom:462.291733pt;}
.yb{bottom:462.990669pt;}
.ya4{bottom:472.691600pt;}
.yf8{bottom:472.691733pt;}
.ya{bottom:478.990666pt;}
.ycf{bottom:482.465867pt;}
.ye3{bottom:483.091600pt;}
.y64{bottom:483.091733pt;}
.ya3{bottom:493.491600pt;}
.y8d{bottom:493.491733pt;}
.y9{bottom:494.990666pt;}
.yce{bottom:501.132533pt;}
.ye2{bottom:503.891600pt;}
.yf6{bottom:503.891733pt;}
.y35{bottom:504.020267pt;}
.ya2{bottom:514.291600pt;}
.y8c{bottom:514.291733pt;}
.yf7{bottom:519.891733pt;}
.ye1{bottom:524.691600pt;}
.y63{bottom:524.691733pt;}
.y34{bottom:524.820267pt;}
.ycd{bottom:533.372533pt;}
.ya1{bottom:535.091600pt;}
.y8b{bottom:535.091733pt;}
.ye0{bottom:545.491600pt;}
.y62{bottom:545.491733pt;}
.y33{bottom:545.620267pt;}
.ya0{bottom:555.891600pt;}
.y8a{bottom:555.891733pt;}
.ycc{bottom:564.119200pt;}
.ydf{bottom:566.291600pt;}
.y61{bottom:566.291733pt;}
.y32{bottom:566.420267pt;}
.y8{bottom:573.786667pt;}
.y9f{bottom:576.691600pt;}
.y89{bottom:576.691733pt;}
.ycb{bottom:582.785867pt;}
.yde{bottom:587.091600pt;}
.y60{bottom:587.091733pt;}
.y7{bottom:592.685334pt;}
.y9e{bottom:597.491600pt;}
.y88{bottom:597.491733pt;}
.y31{bottom:597.492267pt;}
.yca{bottom:601.452533pt;}
.ydd{bottom:607.891600pt;}
.y5f{bottom:607.891733pt;}
.y4e{bottom:614.824933pt;}
.y9d{bottom:618.291600pt;}
.y87{bottom:618.291733pt;}
.ydc{bottom:628.691600pt;}
.y5e{bottom:628.691733pt;}
.yc9{bottom:632.199200pt;}
.y4d{bottom:635.624933pt;}
.y9c{bottom:639.091600pt;}
.y86{bottom:639.091733pt;}
.y6{bottom:645.598667pt;}
.ydb{bottom:649.491600pt;}
.y5d{bottom:649.491733pt;}
.y30{bottom:649.523600pt;}
.y4c{bottom:656.424933pt;}
.yb6{bottom:659.891600pt;}
.y85{bottom:659.891733pt;}
.yc8{bottom:664.439200pt;}
.y3{bottom:668.977329pt;}
.yda{bottom:670.291600pt;}
.y5c{bottom:670.291733pt;}
.y4b{bottom:677.224933pt;}
.y9b{bottom:680.691600pt;}
.y84{bottom:680.691733pt;}
.yc7{bottom:683.105867pt;}
.yc3{bottom:685.225867pt;}
.yf5{bottom:685.886400pt;}
.y2f{bottom:685.907600pt;}
.yd9{bottom:691.091600pt;}
.y5b{bottom:691.091733pt;}
.y4a{bottom:698.024933pt;}
.y9a{bottom:701.491600pt;}
.y83{bottom:701.491733pt;}
.yc2{bottom:703.892533pt;}
.yc6{bottom:706.012533pt;}
.yd8{bottom:711.891600pt;}
.y5a{bottom:711.891733pt;}
.y49{bottom:718.824933pt;}
.y2e{bottom:722.291600pt;}
.y82{bottom:722.291733pt;}
.yc5{bottom:724.679200pt;}
.y48{bottom:732.691600pt;}
.y59{bottom:732.691733pt;}
.y99{bottom:743.091600pt;}
.y81{bottom:743.091733pt;}
.yd7{bottom:753.491600pt;}
.y58{bottom:753.491733pt;}
.yc4{bottom:756.919200pt;}
.y98{bottom:763.891600pt;}
.y2d{bottom:774.291600pt;}
.y57{bottom:774.291733pt;}
.y2{bottom:781.661334pt;}
.y97{bottom:784.691600pt;}
.y80{bottom:784.691733pt;}
.yc1{bottom:787.665867pt;}
.yd6{bottom:795.091600pt;}
.y56{bottom:795.091733pt;}
.y96{bottom:805.491600pt;}
.y7f{bottom:805.491733pt;}
.yc0{bottom:806.332533pt;}
.yd5{bottom:815.891600pt;}
.y55{bottom:815.891733pt;}
.ybd{bottom:817.785867pt;}
.ybf{bottom:824.999200pt;}
.y95{bottom:826.291600pt;}
.y7e{bottom:826.291733pt;}
.ybc{bottom:836.452533pt;}
.yd4{bottom:836.691600pt;}
.y2c{bottom:837.332000pt;}
.y94{bottom:847.091600pt;}
.y7d{bottom:847.091733pt;}
.y2b{bottom:851.198667pt;}
.ybe{bottom:855.745867pt;}
.yd3{bottom:857.491600pt;}
.y54{bottom:857.491733pt;}
.y1{bottom:859.312000pt;}
.y2a{bottom:865.065333pt;}
.y93{bottom:867.891600pt;}
.y7c{bottom:867.891733pt;}
.yd2{bottom:878.291600pt;}
.y29{bottom:878.932000pt;}
.ybb{bottom:887.972533pt;}
.y92{bottom:888.691600pt;}
.y7b{bottom:888.691733pt;}
.yd1{bottom:899.091600pt;}
.y28{bottom:903.198000pt;}
.y91{bottom:909.491600pt;}
.y7a{bottom:909.491733pt;}
.yfd{bottom:919.891600pt;}
.y27{bottom:921.864667pt;}
.y90{bottom:930.291600pt;}
.y24{bottom:940.220133pt;}
.y26{bottom:940.531333pt;}
.yfc{bottom:940.691600pt;}
.y53{bottom:951.091600pt;}
.yd0{bottom:956.286267pt;}
.y79{bottom:956.691600pt;}
.y23{bottom:968.892133pt;}
.y52{bottom:971.891600pt;}
.y78{bottom:982.291600pt;}
.y51{bottom:992.691600pt;}
.y25{bottom:1006.653067pt;}
.y22{bottom:1036.483467pt;}
.y50{bottom:1085.278800pt;}
.y4f{bottom:1085.827200pt;}
.h10{height:25.925281pt;}
.h7{height:28.560000pt;}
.h9{height:30.060352pt;}
.h16{height:36.145833pt;}
.hd{height:36.522667pt;}
.h17{height:37.057292pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1a{height:43.375000pt;}
.h11{height:44.468750pt;}
.hc{height:45.653333pt;}
.h2{height:48.960000pt;}
.h12{height:49.170667pt;}
.h13{height:50.218667pt;}
.h15{height:53.500000pt;}
.h14{height:57.833333pt;}
.h19{height:59.291667pt;}
.hf{height:62.983042pt;}
.h5{height:69.360000pt;}
.h18{height:74.390625pt;}
.he{height:86.750000pt;}
.ha{height:95.872000pt;}
.h4{height:105.826671pt;}
.hb{height:310.442667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.xc{left:68.409467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:98.267733pt;}
.x4{left:180.874667pt;}
.xa{left:232.440933pt;}
.xf{left:237.772800pt;}
.x5{left:246.943467pt;}
.xd{left:264.568933pt;}
.xe{left:268.786133pt;}
.x10{left:348.012800pt;}
.x3{left:404.408000pt;}
.x8{left:635.619067pt;}
.x6{left:655.098400pt;}
.x11{left:665.399467pt;}
.x7{left:706.506400pt;}
}




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