
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_c5a1a95030a9c916e1979a75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945312;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_978c33fd4f83aed5047e1417.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_478d725a2da0101bb8f495c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_3f84c1c2822cf8900c3f0f09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_4a8362ee120258d3dfc7a90e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_6615f0cee487048500df983b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_ec16e264019956d4e5ce7274.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_e5439387219a084ae56bd83b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_083aebe8d429299826fa3475.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_96270300fc081a937428603f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_aa049f4a73564b70927a3ffd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850586;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:ffe;src:url('chunks/assets/font_a88370ef287afaf2889985b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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:fff;src:url('chunks/assets/font_537b76a1e19ffc65dfd84e80.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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;}
.ls6{letter-spacing:-0.515400px;}
.lse{letter-spacing:-0.495600px;}
.lsd{letter-spacing:-0.449400px;}
.ls4{letter-spacing:-0.334200px;}
.ls5{letter-spacing:-0.308400px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.083400px;}
.ls11{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.403200px;}
.lsa{letter-spacing:0.472200px;}
.ls8{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.942000px;}
.lsc{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.914000px;}
.ls10{letter-spacing:13.904640px;}
.lsf{letter-spacing:13.916640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-69.120000px;}
.ws2{word-spacing:-66.240000px;}
.ws6{word-spacing:-54.720000px;}
.wsd{word-spacing:-18.222000px;}
.wsc{word-spacing:-17.752200px;}
.ws11{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.190600px;}
.wse{word-spacing:-16.830600px;}
.wsf{word-spacing:-16.784400px;}
.ws5{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws3{word-spacing:-14.057400px;}
.ws8{word-spacing:-13.680000px;}
.ws7{word-spacing:-12.600000px;}
.ws9{word-spacing:-10.676400px;}
.wsa{word-spacing:-10.454400px;}
.wsb{word-spacing:0.000000px;}
._8{margin-left:-3.113280px;}
._2{margin-left:-1.523520px;}
._1{width:1.002240px;}
._0{width:2.338560px;}
._c{width:4.020480px;}
._19{width:5.103360px;}
._7{width:6.359040px;}
._d{width:7.541280px;}
._f{width:9.472320px;}
._b{width:10.598400px;}
._6{width:11.790720px;}
._e{width:13.098240px;}
._a{width:14.109120px;}
._9{width:15.301440px;}
._5{width:18.414720px;}
._4{width:19.548000px;}
._14{width:21.297600px;}
._1b{width:22.536000px;}
._1c{width:23.794560px;}
._1a{width:25.061760px;}
._23{width:26.196480px;}
._29{width:27.204480px;}
._2a{width:28.451520px;}
._3b{width:29.454240px;}
._1d{width:30.591360px;}
._1e{width:31.656960px;}
._17{width:32.941440px;}
._18{width:34.352640px;}
._33{width:36.262080px;}
._34{width:38.517120px;}
._20{width:40.268160px;}
._1f{width:41.685120px;}
._2f{width:42.719040px;}
._41{width:44.035200px;}
._35{width:45.069120px;}
._22{width:46.831680px;}
._21{width:48.389760px;}
._2d{width:50.239080px;}
._11{width:51.592320px;}
._10{width:52.660800px;}
._2e{width:53.688960px;}
._16{width:54.745920px;}
._15{width:55.990080px;}
._48{width:57.179520px;}
._49{width:58.201920px;}
._39{width:60.120000px;}
._38{width:61.257600px;}
._37{width:62.870400px;}
._36{width:64.287360px;}
._3f{width:65.666880px;}
._45{width:67.432320px;}
._4a{width:70.021440px;}
._26{width:71.400960px;}
._24{width:72.406320px;}
._25{width:73.514640px;}
._32{width:74.856960px;}
._3e{width:77.109120px;}
._31{width:79.597440px;}
._2b{width:82.532160px;}
._2c{width:83.534400px;}
._46{width:85.780800px;}
._47{width:88.683840px;}
._27{width:90.691200px;}
._28{width:92.448000px;}
._40{width:100.195200px;}
._42{width:101.200320px;}
._43{width:110.318400px;}
._44{width:112.639680px;}
._3c{width:127.252800px;}
._3d{width:129.741120px;}
._12{width:132.399840px;}
._3a{width:165.199680px;}
._30{width:170.383680px;}
._3{width:781.625760px;}
._13{width:847.176000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:47.520000px;}
.fs7{font-size:50.400000px;}
.fs6{font-size:54.720000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:80.640000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.505000px;}
.y2{bottom:2.520000px;}
.y46{bottom:2.880000px;}
.y54{bottom:3.225000px;}
.y4e{bottom:3.240000px;}
.y17{bottom:3.585000px;}
.y6{bottom:3.960000px;}
.yb{bottom:4.320000px;}
.y33{bottom:5.025000px;}
.y36{bottom:5.385000px;}
.y3d{bottom:5.400000px;}
.yc{bottom:5.760000px;}
.y3c{bottom:6.120000px;}
.y3f{bottom:6.480000px;}
.y63{bottom:7.915500px;}
.y14{bottom:10.425000px;}
.y5c{bottom:16.905000px;}
.y58{bottom:17.985000px;}
.y16{bottom:18.705000px;}
.y45{bottom:18.720000px;}
.y53{bottom:19.065000px;}
.y4d{bottom:19.080000px;}
.y5f{bottom:22.669500px;}
.y3a{bottom:23.025000px;}
.y5{bottom:23.040000px;}
.y32{bottom:23.070000px;}
.y35{bottom:23.385000px;}
.y67{bottom:23.400000px;}
.y62{bottom:28.069500px;}
.y57{bottom:30.225000px;}
.y5b{bottom:30.945000px;}
.y50{bottom:30.960000px;}
.y44{bottom:34.200000px;}
.y52{bottom:34.545000px;}
.y13{bottom:36.345000px;}
.y31{bottom:40.710000px;}
.y4{bottom:42.480000px;}
.y5a{bottom:44.985000px;}
.y9{bottom:46.800000px;}
.y61{bottom:48.229500px;}
.y4c{bottom:48.960000px;}
.y43{bottom:49.680000px;}
.y51{bottom:50.055000px;}
.y6a{bottom:58.320000px;}
.y59{bottom:61.185000px;}
.y12{bottom:62.295000px;}
.y56{bottom:62.625000px;}
.y66{bottom:63.360000px;}
.y3{bottom:63.390000px;}
.y4b{bottom:63.765000px;}
.y60{bottom:65.149500px;}
.y8{bottom:66.600000px;}
.y69{bottom:78.156000px;}
.y11{bottom:87.855000px;}
.y64{bottom:112.716000px;}
.y10{bottom:113.415000px;}
.y2f{bottom:125.655000px;}
.y5e{bottom:128.560500px;}
.y9a{bottom:136.116000px;}
.y90{bottom:136.476000px;}
.y4a{bottom:136.485000px;}
.yf{bottom:143.295000px;}
.y2e{bottom:147.615000px;}
.y49{bottom:151.965000px;}
.y99{bottom:161.670000px;}
.y8f{bottom:162.030000px;}
.y48{bottom:167.445000px;}
.y2d{bottom:169.260000px;}
.ye{bottom:173.580000px;}
.y8e{bottom:187.950000px;}
.y2c{bottom:191.580000px;}
.y55{bottom:207.450000px;}
.y2b{bottom:213.540000px;}
.y8d{bottom:213.915000px;}
.y2a{bottom:235.140000px;}
.y8c{bottom:239.475000px;}
.y29{bottom:257.100000px;}
.y8b{bottom:265.395000px;}
.y28{bottom:279.060000px;}
.y18{bottom:282.330000px;}
.y8a{bottom:291.315000px;}
.y27{bottom:300.690000px;}
.y89{bottom:316.875000px;}
.y26{bottom:322.650000px;}
.y88{bottom:342.825000px;}
.y25{bottom:344.250000px;}
.y4f{bottom:344.625000px;}
.y24{bottom:366.210000px;}
.y87{bottom:368.385000px;}
.y23{bottom:388.170000px;}
.y86{bottom:394.305000px;}
.y47{bottom:398.265000px;}
.y22{bottom:409.770000px;}
.y85{bottom:420.225000px;}
.y21{bottom:431.760000px;}
.y84{bottom:445.785000px;}
.y20{bottom:453.360000px;}
.y83{bottom:471.750000px;}
.y1f{bottom:475.320000px;}
.y1e{bottom:497.280000px;}
.y82{bottom:497.670000px;}
.y1d{bottom:518.880000px;}
.y81{bottom:523.230000px;}
.y1c{bottom:540.840000px;}
.y80{bottom:549.150000px;}
.y1b{bottom:562.485000px;}
.y7f{bottom:575.070000px;}
.y42{bottom:577.980000px;}
.y1a{bottom:584.445000px;}
.y7e{bottom:600.660000px;}
.y19{bottom:606.045000px;}
.y7d{bottom:626.580000px;}
.y41{bottom:640.260000px;}
.y7c{bottom:652.140000px;}
.y40{bottom:657.900000px;}
.y3e{bottom:675.900000px;}
.y7b{bottom:678.060000px;}
.y3b{bottom:693.900000px;}
.y9b{bottom:703.290000px;}
.y96{bottom:703.650000px;}
.y7a{bottom:704.010000px;}
.y39{bottom:711.585000px;}
.y79{bottom:729.570000px;}
.y38{bottom:747.225000px;}
.y78{bottom:755.490000px;}
.y37{bottom:765.225000px;}
.y77{bottom:781.410000px;}
.y34{bottom:782.865000px;}
.y76{bottom:806.970000px;}
.y30{bottom:818.865000px;}
.y95{bottom:832.575000px;}
.y75{bottom:832.935000px;}
.y94{bottom:858.135000px;}
.y74{bottom:858.495000px;}
.y15{bottom:872.190000px;}
.y98{bottom:884.055000px;}
.y73{bottom:884.415000px;}
.yd{bottom:903.510000px;}
.y97{bottom:909.975000px;}
.y72{bottom:910.335000px;}
.y71{bottom:935.895000px;}
.y70{bottom:961.845000px;}
.y93{bottom:987.405000px;}
.y6f{bottom:987.765000px;}
.y92{bottom:1012.965000px;}
.y6e{bottom:1013.325000px;}
.y6d{bottom:1039.245000px;}
.y6c{bottom:1064.805000px;}
.y6b{bottom:1090.410000px;}
.y91{bottom:1090.770000px;}
.ya{bottom:1096.170000px;}
.y68{bottom:1110.570000px;}
.y7{bottom:1122.090000px;}
.y65{bottom:1126.050000px;}
.y1{bottom:1137.570000px;}
.h15{height:17.625000px;}
.h1b{height:17.640000px;}
.h18{height:17.676000px;}
.h16{height:17.985000px;}
.h1a{height:18.000000px;}
.h7{height:21.225000px;}
.hd{height:31.305000px;}
.h17{height:35.625000px;}
.h14{height:35.985000px;}
.h22{height:40.048594px;}
.h21{height:40.234219px;}
.h24{height:46.116563px;}
.h19{height:50.793750px;}
.h13{height:53.301000px;}
.h1f{height:53.625000px;}
.h1d{height:53.677969px;}
.hf{height:53.704687px;}
.h12{height:54.596250px;}
.he{height:55.147500px;}
.h5{height:56.084062px;}
.h4{height:58.888125px;}
.h8{height:60.960938px;}
.h1c{height:62.280000px;}
.h11{height:64.978594px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.hc{height:67.803750px;}
.h26{height:67.837500px;}
.h25{height:69.660000px;}
.h27{height:71.044468px;}
.hb{height:72.562500px;}
.h20{height:74.865000px;}
.h23{height:78.871500px;}
.ha{height:81.270000px;}
.h2{height:82.830000px;}
.h1e{height:179.715000px;}
.h9{height:192.645000px;}
.h10{height:621.165000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:82.462500px;}
.wa{width:95.400000px;}
.w2{width:115.222500px;}
.w4{width:157.005000px;}
.w7{width:178.245000px;}
.w8{width:515.370000px;}
.w5{width:536.250000px;}
.w3{width:578.385000px;}
.w6{width:693.270000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.920000px;}
.x9{left:14.386500px;}
.xc{left:21.586500px;}
.x5{left:27.735000px;}
.x17{left:33.502500px;}
.x1c{left:36.382500px;}
.x16{left:38.902500px;}
.x4{left:42.135000px;}
.x12{left:86.785500px;}
.x18{left:88.945500px;}
.x2{left:97.585500px;}
.x1{left:100.129500px;}
.x1a{left:101.185500px;}
.x7{left:108.036000px;}
.x6{left:114.900000px;}
.x19{left:123.535500px;}
.x1b{left:129.295500px;}
.x1d{left:133.975500px;}
.x21{left:150.555000px;}
.x1e{left:162.075000px;}
.x10{left:163.855500px;}
.x15{left:169.975500px;}
.x14{left:182.610000px;}
.xe{left:204.535500px;}
.x3{left:215.010000px;}
.xf{left:236.260500px;}
.xa{left:257.145000px;}
.xd{left:267.220500px;}
.x13{left:278.025000px;}
.x11{left:346.450500px;}
.x1f{left:473.580000px;}
.x22{left:494.850000px;}
.x23{left:516.090000px;}
.x20{left:527.610000px;}
.x8{left:751.965000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.458133pt;}
.lse{letter-spacing:-0.440533pt;}
.lsd{letter-spacing:-0.399467pt;}
.ls4{letter-spacing:-0.297067pt;}
.ls5{letter-spacing:-0.274133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.074133pt;}
.ls11{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.358400pt;}
.lsa{letter-spacing:0.419733pt;}
.ls8{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.837333pt;}
.lsc{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.701333pt;}
.ls10{letter-spacing:12.359680pt;}
.lsf{letter-spacing:12.370347pt;}
.ws10{word-spacing:-61.440000pt;}
.ws2{word-spacing:-58.880000pt;}
.ws6{word-spacing:-48.640000pt;}
.wsd{word-spacing:-16.197333pt;}
.wsc{word-spacing:-15.779733pt;}
.ws11{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.280533pt;}
.wse{word-spacing:-14.960533pt;}
.wsf{word-spacing:-14.919467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws3{word-spacing:-12.495467pt;}
.ws8{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.200000pt;}
.ws9{word-spacing:-9.490133pt;}
.wsa{word-spacing:-9.292800pt;}
.wsb{word-spacing:0.000000pt;}
._8{margin-left:-2.767360pt;}
._2{margin-left:-1.354240pt;}
._1{width:0.890880pt;}
._0{width:2.078720pt;}
._c{width:3.573760pt;}
._19{width:4.536320pt;}
._7{width:5.652480pt;}
._d{width:6.703360pt;}
._f{width:8.419840pt;}
._b{width:9.420800pt;}
._6{width:10.480640pt;}
._e{width:11.642880pt;}
._a{width:12.541440pt;}
._9{width:13.601280pt;}
._5{width:16.368640pt;}
._4{width:17.376000pt;}
._14{width:18.931200pt;}
._1b{width:20.032000pt;}
._1c{width:21.150720pt;}
._1a{width:22.277120pt;}
._23{width:23.285760pt;}
._29{width:24.181760pt;}
._2a{width:25.290240pt;}
._3b{width:26.181547pt;}
._1d{width:27.192320pt;}
._1e{width:28.139520pt;}
._17{width:29.281280pt;}
._18{width:30.535680pt;}
._33{width:32.232960pt;}
._34{width:34.237440pt;}
._20{width:35.793920pt;}
._1f{width:37.053440pt;}
._2f{width:37.972480pt;}
._41{width:39.142400pt;}
._35{width:40.061440pt;}
._22{width:41.628160pt;}
._21{width:43.013120pt;}
._2d{width:44.656960pt;}
._11{width:45.859840pt;}
._10{width:46.809600pt;}
._2e{width:47.723520pt;}
._16{width:48.663040pt;}
._15{width:49.768960pt;}
._48{width:50.826240pt;}
._49{width:51.735040pt;}
._39{width:53.440000pt;}
._38{width:54.451200pt;}
._37{width:55.884800pt;}
._36{width:57.144320pt;}
._3f{width:58.370560pt;}
._45{width:59.939840pt;}
._4a{width:62.241280pt;}
._26{width:63.467520pt;}
._24{width:64.361173pt;}
._25{width:65.346347pt;}
._32{width:66.539520pt;}
._3e{width:68.541440pt;}
._31{width:70.753280pt;}
._2b{width:73.361920pt;}
._2c{width:74.252800pt;}
._46{width:76.249600pt;}
._47{width:78.830080pt;}
._27{width:80.614400pt;}
._28{width:82.176000pt;}
._40{width:89.062400pt;}
._42{width:89.955840pt;}
._43{width:98.060800pt;}
._44{width:100.124160pt;}
._3c{width:113.113600pt;}
._3d{width:115.325440pt;}
._12{width:117.688747pt;}
._3a{width:146.844160pt;}
._30{width:151.452160pt;}
._3{width:694.778453pt;}
._13{width:753.045333pt;}
.fs8{font-size:42.240000pt;}
.fs7{font-size:44.800000pt;}
.fs6{font-size:48.640000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:71.680000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.226667pt;}
.y2{bottom:2.240000pt;}
.y46{bottom:2.560000pt;}
.y54{bottom:2.866667pt;}
.y4e{bottom:2.880000pt;}
.y17{bottom:3.186667pt;}
.y6{bottom:3.520000pt;}
.yb{bottom:3.840000pt;}
.y33{bottom:4.466667pt;}
.y36{bottom:4.786667pt;}
.y3d{bottom:4.800000pt;}
.yc{bottom:5.120000pt;}
.y3c{bottom:5.440000pt;}
.y3f{bottom:5.760000pt;}
.y63{bottom:7.036000pt;}
.y14{bottom:9.266667pt;}
.y5c{bottom:15.026667pt;}
.y58{bottom:15.986667pt;}
.y16{bottom:16.626667pt;}
.y45{bottom:16.640000pt;}
.y53{bottom:16.946667pt;}
.y4d{bottom:16.960000pt;}
.y5f{bottom:20.150667pt;}
.y3a{bottom:20.466667pt;}
.y5{bottom:20.480000pt;}
.y32{bottom:20.506667pt;}
.y35{bottom:20.786667pt;}
.y67{bottom:20.800000pt;}
.y62{bottom:24.950667pt;}
.y57{bottom:26.866667pt;}
.y5b{bottom:27.506667pt;}
.y50{bottom:27.520000pt;}
.y44{bottom:30.400000pt;}
.y52{bottom:30.706667pt;}
.y13{bottom:32.306667pt;}
.y31{bottom:36.186667pt;}
.y4{bottom:37.760000pt;}
.y5a{bottom:39.986667pt;}
.y9{bottom:41.600000pt;}
.y61{bottom:42.870667pt;}
.y4c{bottom:43.520000pt;}
.y43{bottom:44.160000pt;}
.y51{bottom:44.493333pt;}
.y6a{bottom:51.840000pt;}
.y59{bottom:54.386667pt;}
.y12{bottom:55.373333pt;}
.y56{bottom:55.666667pt;}
.y66{bottom:56.320000pt;}
.y3{bottom:56.346667pt;}
.y4b{bottom:56.680000pt;}
.y60{bottom:57.910667pt;}
.y8{bottom:59.200000pt;}
.y69{bottom:69.472000pt;}
.y11{bottom:78.093333pt;}
.y64{bottom:100.192000pt;}
.y10{bottom:100.813333pt;}
.y2f{bottom:111.693333pt;}
.y5e{bottom:114.276000pt;}
.y9a{bottom:120.992000pt;}
.y90{bottom:121.312000pt;}
.y4a{bottom:121.320000pt;}
.yf{bottom:127.373333pt;}
.y2e{bottom:131.213333pt;}
.y49{bottom:135.080000pt;}
.y99{bottom:143.706667pt;}
.y8f{bottom:144.026667pt;}
.y48{bottom:148.840000pt;}
.y2d{bottom:150.453333pt;}
.ye{bottom:154.293333pt;}
.y8e{bottom:167.066667pt;}
.y2c{bottom:170.293333pt;}
.y55{bottom:184.400000pt;}
.y2b{bottom:189.813333pt;}
.y8d{bottom:190.146667pt;}
.y2a{bottom:209.013333pt;}
.y8c{bottom:212.866667pt;}
.y29{bottom:228.533333pt;}
.y8b{bottom:235.906667pt;}
.y28{bottom:248.053333pt;}
.y18{bottom:250.960000pt;}
.y8a{bottom:258.946667pt;}
.y27{bottom:267.280000pt;}
.y89{bottom:281.666667pt;}
.y26{bottom:286.800000pt;}
.y88{bottom:304.733333pt;}
.y25{bottom:306.000000pt;}
.y4f{bottom:306.333333pt;}
.y24{bottom:325.520000pt;}
.y87{bottom:327.453333pt;}
.y23{bottom:345.040000pt;}
.y86{bottom:350.493333pt;}
.y47{bottom:354.013333pt;}
.y22{bottom:364.240000pt;}
.y85{bottom:373.533333pt;}
.y21{bottom:383.786667pt;}
.y84{bottom:396.253333pt;}
.y20{bottom:402.986667pt;}
.y83{bottom:419.333333pt;}
.y1f{bottom:422.506667pt;}
.y1e{bottom:442.026667pt;}
.y82{bottom:442.373333pt;}
.y1d{bottom:461.226667pt;}
.y81{bottom:465.093333pt;}
.y1c{bottom:480.746667pt;}
.y80{bottom:488.133333pt;}
.y1b{bottom:499.986667pt;}
.y7f{bottom:511.173333pt;}
.y42{bottom:513.760000pt;}
.y1a{bottom:519.506667pt;}
.y7e{bottom:533.920000pt;}
.y19{bottom:538.706667pt;}
.y7d{bottom:556.960000pt;}
.y41{bottom:569.120000pt;}
.y7c{bottom:579.680000pt;}
.y40{bottom:584.800000pt;}
.y3e{bottom:600.800000pt;}
.y7b{bottom:602.720000pt;}
.y3b{bottom:616.800000pt;}
.y9b{bottom:625.146667pt;}
.y96{bottom:625.466667pt;}
.y7a{bottom:625.786667pt;}
.y39{bottom:632.520000pt;}
.y79{bottom:648.506667pt;}
.y38{bottom:664.200000pt;}
.y78{bottom:671.546667pt;}
.y37{bottom:680.200000pt;}
.y77{bottom:694.586667pt;}
.y34{bottom:695.880000pt;}
.y76{bottom:717.306667pt;}
.y30{bottom:727.880000pt;}
.y95{bottom:740.066667pt;}
.y75{bottom:740.386667pt;}
.y94{bottom:762.786667pt;}
.y74{bottom:763.106667pt;}
.y15{bottom:775.280000pt;}
.y98{bottom:785.826667pt;}
.y73{bottom:786.146667pt;}
.yd{bottom:803.120000pt;}
.y97{bottom:808.866667pt;}
.y72{bottom:809.186667pt;}
.y71{bottom:831.906667pt;}
.y70{bottom:854.973333pt;}
.y93{bottom:877.693333pt;}
.y6f{bottom:878.013333pt;}
.y92{bottom:900.413333pt;}
.y6e{bottom:900.733333pt;}
.y6d{bottom:923.773333pt;}
.y6c{bottom:946.493333pt;}
.y6b{bottom:969.253333pt;}
.y91{bottom:969.573333pt;}
.ya{bottom:974.373333pt;}
.y68{bottom:987.173333pt;}
.y7{bottom:997.413333pt;}
.y65{bottom:1000.933333pt;}
.y1{bottom:1011.173333pt;}
.h15{height:15.666667pt;}
.h1b{height:15.680000pt;}
.h18{height:15.712000pt;}
.h16{height:15.986667pt;}
.h1a{height:16.000000pt;}
.h7{height:18.866667pt;}
.hd{height:27.826667pt;}
.h17{height:31.666667pt;}
.h14{height:31.986667pt;}
.h22{height:35.598750pt;}
.h21{height:35.763750pt;}
.h24{height:40.992500pt;}
.h19{height:45.150000pt;}
.h13{height:47.378667pt;}
.h1f{height:47.666667pt;}
.h1d{height:47.713750pt;}
.hf{height:47.737500pt;}
.h12{height:48.530000pt;}
.he{height:49.020000pt;}
.h5{height:49.852500pt;}
.h4{height:52.345000pt;}
.h8{height:54.187500pt;}
.h1c{height:55.360000pt;}
.h11{height:57.758750pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.hc{height:60.270000pt;}
.h26{height:60.300000pt;}
.h25{height:61.920000pt;}
.h27{height:63.150638pt;}
.hb{height:64.500000pt;}
.h20{height:66.546667pt;}
.h23{height:70.108000pt;}
.ha{height:72.240000pt;}
.h2{height:73.626667pt;}
.h1e{height:159.746667pt;}
.h9{height:171.240000pt;}
.h10{height:552.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:73.300000pt;}
.wa{width:84.800000pt;}
.w2{width:102.420000pt;}
.w4{width:139.560000pt;}
.w7{width:158.440000pt;}
.w8{width:458.106667pt;}
.w5{width:476.666667pt;}
.w3{width:514.120000pt;}
.w6{width:616.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.040000pt;}
.x9{left:12.788000pt;}
.xc{left:19.188000pt;}
.x5{left:24.653333pt;}
.x17{left:29.780000pt;}
.x1c{left:32.340000pt;}
.x16{left:34.580000pt;}
.x4{left:37.453333pt;}
.x12{left:77.142667pt;}
.x18{left:79.062667pt;}
.x2{left:86.742667pt;}
.x1{left:89.004000pt;}
.x1a{left:89.942667pt;}
.x7{left:96.032000pt;}
.x6{left:102.133333pt;}
.x19{left:109.809333pt;}
.x1b{left:114.929333pt;}
.x1d{left:119.089333pt;}
.x21{left:133.826667pt;}
.x1e{left:144.066667pt;}
.x10{left:145.649333pt;}
.x15{left:151.089333pt;}
.x14{left:162.320000pt;}
.xe{left:181.809333pt;}
.x3{left:191.120000pt;}
.xf{left:210.009333pt;}
.xa{left:228.573333pt;}
.xd{left:237.529333pt;}
.x13{left:247.133333pt;}
.x11{left:307.956000pt;}
.x1f{left:420.960000pt;}
.x22{left:439.866667pt;}
.x23{left:458.746667pt;}
.x20{left:468.986667pt;}
.x8{left:668.413333pt;}
}




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