
    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_6aab0871c50f5c53ee50c407.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_25927c01e5db1ee6126836d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986328;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_740a3aa5a0330b72a27b88ec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_323b96ab8803cd71a2fa2e94.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0103f0c94301a00f7066d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_e852294ad62c36f89ac51a59.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1a714a0891fc55ab25c722df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_5c7a552fd270aa595e3cf883.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_1399c112f56265cb9b529558.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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);}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.272400px;}
.lsb{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.ls10{letter-spacing:10.260000px;}
.ls1a{letter-spacing:16.020000px;}
.ls15{letter-spacing:17.946720px;}
.ls14{letter-spacing:21.546720px;}
.ls17{letter-spacing:25.146720px;}
.lsf{letter-spacing:28.980000px;}
.ls18{letter-spacing:31.626720px;}
.lse{letter-spacing:46.026720px;}
.ls1d{letter-spacing:64.026720px;}
.ls1b{letter-spacing:91.386720px;}
.ls3{letter-spacing:953.580000px;}
.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:-72.000000px;}
.ws11{word-spacing:-59.760000px;}
.ws4{word-spacing:-26.784000px;}
.ws3{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.680200px;}
.wsa{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._13{margin-left:-6.372000px;}
._3{margin-left:-1.291200px;}
._0{width:1.048320px;}
._4{width:2.647200px;}
._8{width:3.884400px;}
._e{width:5.497920px;}
._a{width:6.812640px;}
._b{width:7.813680px;}
._9{width:8.936640px;}
._6{width:10.485360px;}
._7{width:11.543520px;}
._5{width:13.294080px;}
._33{width:14.444880px;}
._c{width:15.983280px;}
._d{width:17.390160px;}
._17{width:18.925200px;}
._11{width:20.525040px;}
._12{width:21.904560px;}
._1b{width:23.154480px;}
._1e{width:24.680880px;}
._1c{width:25.816320px;}
._10{width:27.609120px;}
._f{width:28.923840px;}
._29{width:30.466800px;}
._26{width:31.564080px;}
._1f{width:33.313680px;}
._20{width:34.780320px;}
._1a{width:36.372000px;}
._27{width:37.425600px;}
._19{width:38.429520px;}
._18{width:39.740400px;}
._30{width:41.040000px;}
._1d{width:43.293600px;}
._28{width:44.727840px;}
._31{width:45.955440px;}
._2f{width:46.971360px;}
._2b{width:48.644640px;}
._14{width:49.926960px;}
._22{width:54.202320px;}
._2a{width:58.592160px;}
._24{width:59.700240px;}
._23{width:60.963840px;}
._2c{width:78.671520px;}
._25{width:84.555360px;}
._16{width:99.228960px;}
._2e{width:105.590880px;}
._2d{width:120.862080px;}
._15{width:166.686480px;}
._1{width:303.471120px;}
._32{width:370.111680px;}
._2{width:386.888880px;}
._21{width:546.201360px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,112,192);}
.fc0{color:rgb(192,0,0);}
.fs8{font-size:5.760000px;}
.fs4{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.520000px;}
.y44{bottom:2.880000px;}
.y42{bottom:3.060000px;}
.y20{bottom:3.240000px;}
.y11{bottom:3.960000px;}
.y21{bottom:4.500000px;}
.y6{bottom:8.460000px;}
.yad{bottom:8.496000px;}
.y7{bottom:16.380000px;}
.yae{bottom:16.416000px;}
.y41{bottom:18.540000px;}
.y39{bottom:20.340000px;}
.y10{bottom:22.320000px;}
.y12d{bottom:30.240000px;}
.yf{bottom:33.120000px;}
.y40{bottom:34.050000px;}
.yaf{bottom:35.640000px;}
.y38{bottom:37.620000px;}
.y12c{bottom:43.920000px;}
.y9{bottom:49.140000px;}
.y3f{bottom:49.530000px;}
.ye{bottom:51.480000px;}
.y37{bottom:54.900000px;}
.yac{bottom:59.940000px;}
.y3e{bottom:65.190000px;}
.yd{bottom:65.700000px;}
.y36{bottom:72.225000px;}
.y5{bottom:73.476000px;}
.y3d{bottom:80.670000px;}
.y35{bottom:89.505000px;}
.y3c{bottom:96.150000px;}
.yc{bottom:103.680000px;}
.y12{bottom:103.860000px;}
.y34{bottom:106.785000px;}
.y3b{bottom:111.630000px;}
.yab{bottom:115.416000px;}
.y33{bottom:123.885000px;}
.y4{bottom:128.916000px;}
.ye0{bottom:134.316000px;}
.yf5{bottom:135.036000px;}
.yb{bottom:136.110000px;}
.y10f{bottom:139.536000px;}
.yf4{bottom:140.256000px;}
.y32{bottom:141.165000px;}
.yaa{bottom:147.816000px;}
.y90{bottom:148.536000px;}
.ydf{bottom:151.590000px;}
.yf3{bottom:152.670000px;}
.y118{bottom:153.390000px;}
.y10e{bottom:156.810000px;}
.yf2{bottom:157.890000px;}
.y31{bottom:158.445000px;}
.y117{bottom:158.610000px;}
.y4f{bottom:160.230000px;}
.ya9{bottom:165.090000px;}
.yde{bottom:168.870000px;}
.y116{bottom:170.850000px;}
.yf1{bottom:171.030000px;}
.y4a{bottom:172.485000px;}
.y109{bottom:174.090000px;}
.y30{bottom:175.725000px;}
.y8f{bottom:179.490000px;}
.y4e{bottom:180.390000px;}
.ya8{bottom:182.370000px;}
.ydd{bottom:185.970000px;}
.y11e{bottom:186.690000px;}
.y10d{bottom:187.230000px;}
.y115{bottom:188.130000px;}
.y49{bottom:189.765000px;}
.y11d{bottom:191.910000px;}
.y2f{bottom:193.005000px;}
.y8e{bottom:198.030000px;}
.ya7{bottom:199.470000px;}
.y4d{bottom:200.550000px;}
.y8d{bottom:203.250000px;}
.y11c{bottom:204.330000px;}
.y114{bottom:206.130000px;}
.y48{bottom:207.045000px;}
.yf0{bottom:210.090000px;}
.y2e{bottom:210.105000px;}
.y113{bottom:211.350000px;}
.y8c{bottom:215.310000px;}
.ya6{bottom:216.750000px;}
.y4c{bottom:219.450000px;}
.ydc{bottom:220.530000px;}
.y11b{bottom:221.610000px;}
.y47{bottom:224.145000px;}
.y112{bottom:225.030000px;}
.yef{bottom:227.370000px;}
.y2d{bottom:227.385000px;}
.y8b{bottom:232.590000px;}
.ya5{bottom:234.030000px;}
.y4b{bottom:236.730000px;}
.y8a{bottom:237.810000px;}
.y11a{bottom:240.150000px;}
.y46{bottom:241.425000px;}
.y108{bottom:243.030000px;}
.yee{bottom:244.650000px;}
.y2c{bottom:244.665000px;}
.y89{bottom:249.870000px;}
.ya4{bottom:251.310000px;}
.y22{bottom:251.490000px;}
.ydb{bottom:255.090000px;}
.y45{bottom:258.705000px;}
.yed{bottom:261.930000px;}
.y2b{bottom:261.945000px;}
.y88{bottom:267.150000px;}
.ya3{bottom:268.590000px;}
.yda{bottom:272.190000px;}
.y87{bottom:272.370000px;}
.y107{bottom:277.410000px;}
.yec{bottom:279.210000px;}
.y2a{bottom:279.225000px;}
.y86{bottom:284.250000px;}
.ya2{bottom:286.410000px;}
.yd9{bottom:289.470000px;}
.ya1{bottom:291.630000px;}
.y106{bottom:294.690000px;}
.yeb{bottom:296.490000px;}
.y29{bottom:296.505000px;}
.y85{bottom:301.530000px;}
.ya0{bottom:304.050000px;}
.y84{bottom:306.750000px;}
.y105{bottom:307.470000px;}
.y104{bottom:312.690000px;}
.yea{bottom:313.590000px;}
.y28{bottom:313.605000px;}
.y83{bottom:318.855000px;}
.y9f{bottom:322.095000px;}
.y82{bottom:324.075000px;}
.y103{bottom:325.875000px;}
.y9e{bottom:327.315000px;}
.y27{bottom:330.915000px;}
.y102{bottom:331.095000px;}
.y81{bottom:336.135000px;}
.yd8{bottom:341.355000px;}
.y101{bottom:343.515000px;}
.y26{bottom:348.195000px;}
.y9d{bottom:353.055000px;}
.y80{bottom:353.415000px;}
.y7f{bottom:358.635000px;}
.y100{bottom:361.335000px;}
.y25{bottom:365.475000px;}
.yff{bottom:366.555000px;}
.y7e{bottom:370.695000px;}
.y9c{bottom:371.595000px;}
.yd7{bottom:375.735000px;}
.yfe{bottom:379.695000px;}
.y24{bottom:382.755000px;}
.yfd{bottom:384.915000px;}
.y7d{bottom:387.795000px;}
.ye9{bottom:387.975000px;}
.y9b{bottom:391.575000px;}
.y7c{bottom:393.015000px;}
.y9a{bottom:397.515000px;}
.yfc{bottom:398.595000px;}
.ye8{bottom:399.855000px;}
.y23{bottom:400.035000px;}
.y7b{bottom:405.075000px;}
.yd6{bottom:410.295000px;}
.y99{bottom:411.735000px;}
.ye7{bottom:417.135000px;}
.y7a{bottom:423.075000px;}
.yd5{bottom:427.575000px;}
.y79{bottom:428.295000px;}
.ye5{bottom:434.415000px;}
.ye6{bottom:439.635000px;}
.y78{bottom:441.975000px;}
.yd4{bottom:444.855000px;}
.y97{bottom:446.835000px;}
.ye4{bottom:451.695000px;}
.y98{bottom:452.055000px;}
.y12b{bottom:461.055000px;}
.yd3{bottom:462.135000px;}
.y96{bottom:463.935000px;}
.ye3{bottom:468.975000px;}
.yfb{bottom:474.195000px;}
.yd2{bottom:479.235000px;}
.y94{bottom:481.215000px;}
.ye2{bottom:486.255000px;}
.y95{bottom:486.435000px;}
.y12a{bottom:495.975000px;}
.yd1{bottom:497.775000px;}
.y93{bottom:498.495000px;}
.ye1{bottom:503.355000px;}
.y129{bottom:513.075000px;}
.y92{bottom:515.775000px;}
.yd0{bottom:520.635000px;}
.y43{bottom:524.955000px;}
.y128{bottom:530.355000px;}
.y77{bottom:533.055000px;}
.ycf{bottom:537.915000px;}
.y3a{bottom:541.155000px;}
.y10c{bottom:543.135000px;}
.y127{bottom:547.635000px;}
.y76{bottom:550.155000px;}
.yce{bottom:555.195000px;}
.y126{bottom:564.915000px;}
.y75{bottom:567.435000px;}
.ycd{bottom:572.505000px;}
.yfa{bottom:577.725000px;}
.y125{bottom:582.225000px;}
.y74{bottom:584.745000px;}
.ycc{bottom:589.785000px;}
.y111{bottom:595.005000px;}
.y124{bottom:600.585000px;}
.y72{bottom:602.025000px;}
.ycb{bottom:606.885000px;}
.y73{bottom:607.245000px;}
.y123{bottom:618.765000px;}
.y71{bottom:619.305000px;}
.yca{bottom:624.165000px;}
.yf9{bottom:629.385000px;}
.y70{bottom:636.585000px;}
.y122{bottom:637.125000px;}
.yc9{bottom:641.445000px;}
.y110{bottom:646.665000px;}
.y6e{bottom:653.685000px;}
.y121{bottom:655.485000px;}
.yc8{bottom:658.725000px;}
.y6f{bottom:658.905000px;}
.y1f{bottom:666.285000px;}
.y6d{bottom:670.965000px;}
.y120{bottom:673.845000px;}
.yc7{bottom:676.005000px;}
.y1e{bottom:687.525000px;}
.y6c{bottom:688.245000px;}
.y11f{bottom:692.205000px;}
.yc6{bottom:693.285000px;}
.y1d{bottom:704.625000px;}
.y6b{bottom:705.525000px;}
.yc5{bottom:710.385000px;}
.y10b{bottom:715.605000px;}
.y6a{bottom:722.805000px;}
.y1c{bottom:724.605000px;}
.yc4{bottom:727.665000px;}
.yf8{bottom:732.885000px;}
.y68{bottom:740.085000px;}
.yc3{bottom:744.945000px;}
.y69{bottom:745.305000px;}
.y1b{bottom:757.185000px;}
.yc2{bottom:762.225000px;}
.y1a{bottom:772.665000px;}
.y67{bottom:774.465000px;}
.yc1{bottom:779.505000px;}
.y19{bottom:784.545000px;}
.y65{bottom:791.745000px;}
.yc0{bottom:796.605000px;}
.y66{bottom:796.965000px;}
.y18{bottom:805.605000px;}
.y64{bottom:809.025000px;}
.ybf{bottom:813.885000px;}
.y63{bottom:826.350000px;}
.ybe{bottom:831.210000px;}
.y17{bottom:836.790000px;}
.y62{bottom:843.450000px;}
.ybd{bottom:848.490000px;}
.y10a{bottom:853.710000px;}
.y60{bottom:860.730000px;}
.ybc{bottom:865.770000px;}
.y61{bottom:865.950000px;}
.y16{bottom:867.750000px;}
.y5f{bottom:878.010000px;}
.ybb{bottom:883.050000px;}
.y5d{bottom:895.290000px;}
.y15{bottom:898.890000px;}
.yba{bottom:900.150000px;}
.y5e{bottom:900.510000px;}
.yf7{bottom:905.370000px;}
.y5c{bottom:912.570000px;}
.yb9{bottom:917.430000px;}
.y14{bottom:927.330000px;}
.y5a{bottom:929.850000px;}
.yb8{bottom:934.710000px;}
.y5b{bottom:935.070000px;}
.y59{bottom:946.950000px;}
.yb7{bottom:951.990000px;}
.y13{bottom:953.610000px;}
.ya{bottom:955.950000px;}
.y58{bottom:964.230000px;}
.yb6{bottom:969.270000px;}
.y57{bottom:981.510000px;}
.yb5{bottom:986.550000px;}
.y56{bottom:998.790000px;}
.yb4{bottom:1003.650000px;}
.y119{bottom:1008.870000px;}
.y54{bottom:1016.070000px;}
.yb3{bottom:1020.930000px;}
.y55{bottom:1021.290000px;}
.y53{bottom:1033.350000px;}
.yb2{bottom:1038.210000px;}
.y52{bottom:1050.450000px;}
.yb1{bottom:1055.490000px;}
.y91{bottom:1055.670000px;}
.y51{bottom:1067.730000px;}
.yb0{bottom:1072.800000px;}
.yf6{bottom:1078.020000px;}
.y50{bottom:1085.040000px;}
.y3{bottom:1102.320000px;}
.y2{bottom:1119.600000px;}
.y1{bottom:1137.600000px;}
.hf{height:4.064063px;}
.h24{height:13.860000px;}
.h18{height:15.480000px;}
.h13{height:17.100000px;}
.hc{height:21.114844px;}
.ha{height:21.336328px;}
.h12{height:25.136719px;}
.h1c{height:27.147656px;}
.h1f{height:27.432422px;}
.h5{height:27.540000px;}
.h21{height:27.576000px;}
.h7{height:33.683203px;}
.h25{height:34.036523px;}
.h14{height:38.100586px;}
.h1d{height:38.671172px;}
.h8{height:39.336328px;}
.h22{height:39.480328px;}
.h17{height:41.343750px;}
.h20{height:41.535703px;}
.h6{height:41.726953px;}
.h3{height:42.164648px;}
.h1b{height:43.506914px;}
.h2{height:45.024258px;}
.h1a{height:49.255313px;}
.h1{height:50.800781px;}
.h11{height:53.224453px;}
.h26{height:55.260000px;}
.h1e{height:59.439023px;}
.h23{height:61.189805px;}
.h4{height:65.884219px;}
.hd{height:72.147305px;}
.h10{height:76.201172px;}
.hb{height:92.965430px;}
.he{height:118.365820px;}
.h16{height:124.236000px;}
.h9{height:143.136000px;}
.h19{height:272.730000px;}
.h15{height:413.895000px;}
.h0{height:1188.000000px;}
.w2{width:34.020000px;}
.w5{width:165.960000px;}
.w7{width:228.495000px;}
.wa{width:379.695000px;}
.w6{width:592.485000px;}
.w4{width:648.150000px;}
.w9{width:745.350000px;}
.w3{width:745.530000px;}
.w8{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.xd{left:-8.820000px;}
.x0{left:0.000000px;}
.x4{left:4.320000px;}
.x15{left:7.560000px;}
.x18{left:43.605000px;}
.x6{left:45.540000px;}
.x14{left:46.800000px;}
.x12{left:52.919986px;}
.x1{left:53.999986px;}
.x11{left:59.399986px;}
.x19{left:60.839986px;}
.x17{left:65.025000px;}
.xa{left:70.416000px;}
.x57{left:80.280000px;}
.x32{left:87.300000px;}
.x42{left:93.455973px;}
.x3{left:99.396000px;}
.x38{left:100.655973px;}
.x43{left:103.175986px;}
.x9{left:105.510000px;}
.x2{left:108.035986px;}
.x39{left:110.375986px;}
.x27{left:128.735973px;}
.x26{left:130.535973px;}
.x5{left:134.496000px;}
.x3e{left:137.375973px;}
.x4c{left:145.475973px;}
.x3f{left:147.095986px;}
.x24{left:155.369973px;}
.x25{left:160.229986px;}
.x4d{left:167.069973px;}
.x44{left:173.909973px;}
.x4e{left:176.789986px;}
.x45{left:183.629986px;}
.xe{left:188.669986px;}
.x8{left:200.190000px;}
.x22{left:205.949973px;}
.x23{left:210.809986px;}
.xb{left:231.690000px;}
.x46{left:237.809973px;}
.x47{left:247.529986px;}
.x28{left:276.869986px;}
.x40{left:318.494973px;}
.x10{left:320.114986px;}
.x7{left:324.075000px;}
.x41{left:328.214986px;}
.x3c{left:348.374973px;}
.x3d{left:358.094986px;}
.x1a{left:370.694973px;}
.x3a{left:372.854973px;}
.x1b{left:375.554986px;}
.x3b{left:382.574986px;}
.x1c{left:394.994973px;}
.x1d{left:399.854986px;}
.x20{left:413.894973px;}
.x21{left:418.754986px;}
.x1e{left:447.554973px;}
.x1f{left:452.414986px;}
.xf{left:464.294986px;}
.x13{left:466.274986px;}
.x55{left:475.094986px;}
.x54{left:479.234986px;}
.x52{left:482.684986px;}
.x29{left:486.104986px;}
.x53{left:487.544986px;}
.x30{left:491.324986px;}
.x31{left:495.824986px;}
.x33{left:513.104986px;}
.x51{left:525.884986px;}
.x34{left:532.004973px;}
.x2e{left:533.984973px;}
.x35{left:541.724986px;}
.x2c{left:544.064973px;}
.x2d{left:553.784986px;}
.x36{left:634.424973px;}
.x16{left:640.005000px;}
.x37{left:644.144986px;}
.x4f{left:654.584973px;}
.x50{left:664.304986px;}
.xc{left:693.690000px;}
.x2f{left:702.149986px;}
.x2a{left:745.349973px;}
.x48{left:749.129973px;}
.x2b{left:750.209986px;}
.x4a{left:755.069973px;}
.x49{left:758.849986px;}
.x4b{left:764.789986px;}
.x56{left:877.679986px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.242133pt;}
.lsb{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls10{letter-spacing:9.120000pt;}
.ls1a{letter-spacing:14.240000pt;}
.ls15{letter-spacing:15.952640pt;}
.ls14{letter-spacing:19.152640pt;}
.ls17{letter-spacing:22.352640pt;}
.lsf{letter-spacing:25.760000pt;}
.ls18{letter-spacing:28.112640pt;}
.lse{letter-spacing:40.912640pt;}
.ls1d{letter-spacing:56.912640pt;}
.ls1b{letter-spacing:81.232640pt;}
.ls3{letter-spacing:847.626667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws11{word-spacing:-53.120000pt;}
.ws4{word-spacing:-23.808000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._13{margin-left:-5.664000pt;}
._3{margin-left:-1.147733pt;}
._0{width:0.931840pt;}
._4{width:2.353067pt;}
._8{width:3.452800pt;}
._e{width:4.887040pt;}
._a{width:6.055680pt;}
._b{width:6.945493pt;}
._9{width:7.943680pt;}
._6{width:9.320320pt;}
._7{width:10.260907pt;}
._5{width:11.816960pt;}
._33{width:12.839893pt;}
._c{width:14.207360pt;}
._d{width:15.457920pt;}
._17{width:16.822400pt;}
._11{width:18.244480pt;}
._12{width:19.470720pt;}
._1b{width:20.581760pt;}
._1e{width:21.938560pt;}
._1c{width:22.947840pt;}
._10{width:24.541440pt;}
._f{width:25.710080pt;}
._29{width:27.081600pt;}
._26{width:28.056960pt;}
._1f{width:29.612160pt;}
._20{width:30.915840pt;}
._1a{width:32.330667pt;}
._27{width:33.267200pt;}
._19{width:34.159573pt;}
._18{width:35.324800pt;}
._30{width:36.480000pt;}
._1d{width:38.483200pt;}
._28{width:39.758080pt;}
._31{width:40.849280pt;}
._2f{width:41.752320pt;}
._2b{width:43.239680pt;}
._14{width:44.379520pt;}
._22{width:48.179840pt;}
._2a{width:52.081920pt;}
._24{width:53.066880pt;}
._23{width:54.190080pt;}
._2c{width:69.930240pt;}
._25{width:75.160320pt;}
._16{width:88.203520pt;}
._2e{width:93.858560pt;}
._2d{width:107.432960pt;}
._15{width:148.165760pt;}
._1{width:269.752107pt;}
._32{width:328.988160pt;}
._2{width:343.901227pt;}
._21{width:485.512320pt;}
.fs8{font-size:5.120000pt;}
.fs4{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.240000pt;}
.y44{bottom:2.560000pt;}
.y42{bottom:2.720000pt;}
.y20{bottom:2.880000pt;}
.y11{bottom:3.520000pt;}
.y21{bottom:4.000000pt;}
.y6{bottom:7.520000pt;}
.yad{bottom:7.552000pt;}
.y7{bottom:14.560000pt;}
.yae{bottom:14.592000pt;}
.y41{bottom:16.480000pt;}
.y39{bottom:18.080000pt;}
.y10{bottom:19.840000pt;}
.y12d{bottom:26.880000pt;}
.yf{bottom:29.440000pt;}
.y40{bottom:30.266667pt;}
.yaf{bottom:31.680000pt;}
.y38{bottom:33.440000pt;}
.y12c{bottom:39.040000pt;}
.y9{bottom:43.680000pt;}
.y3f{bottom:44.026667pt;}
.ye{bottom:45.760000pt;}
.y37{bottom:48.800000pt;}
.yac{bottom:53.280000pt;}
.y3e{bottom:57.946667pt;}
.yd{bottom:58.400000pt;}
.y36{bottom:64.200000pt;}
.y5{bottom:65.312000pt;}
.y3d{bottom:71.706667pt;}
.y35{bottom:79.560000pt;}
.y3c{bottom:85.466667pt;}
.yc{bottom:92.160000pt;}
.y12{bottom:92.320000pt;}
.y34{bottom:94.920000pt;}
.y3b{bottom:99.226667pt;}
.yab{bottom:102.592000pt;}
.y33{bottom:110.120000pt;}
.y4{bottom:114.592000pt;}
.ye0{bottom:119.392000pt;}
.yf5{bottom:120.032000pt;}
.yb{bottom:120.986667pt;}
.y10f{bottom:124.032000pt;}
.yf4{bottom:124.672000pt;}
.y32{bottom:125.480000pt;}
.yaa{bottom:131.392000pt;}
.y90{bottom:132.032000pt;}
.ydf{bottom:134.746667pt;}
.yf3{bottom:135.706667pt;}
.y118{bottom:136.346667pt;}
.y10e{bottom:139.386667pt;}
.yf2{bottom:140.346667pt;}
.y31{bottom:140.840000pt;}
.y117{bottom:140.986667pt;}
.y4f{bottom:142.426667pt;}
.ya9{bottom:146.746667pt;}
.yde{bottom:150.106667pt;}
.y116{bottom:151.866667pt;}
.yf1{bottom:152.026667pt;}
.y4a{bottom:153.320000pt;}
.y109{bottom:154.746667pt;}
.y30{bottom:156.200000pt;}
.y8f{bottom:159.546667pt;}
.y4e{bottom:160.346667pt;}
.ya8{bottom:162.106667pt;}
.ydd{bottom:165.306667pt;}
.y11e{bottom:165.946667pt;}
.y10d{bottom:166.426667pt;}
.y115{bottom:167.226667pt;}
.y49{bottom:168.680000pt;}
.y11d{bottom:170.586667pt;}
.y2f{bottom:171.560000pt;}
.y8e{bottom:176.026667pt;}
.ya7{bottom:177.306667pt;}
.y4d{bottom:178.266667pt;}
.y8d{bottom:180.666667pt;}
.y11c{bottom:181.626667pt;}
.y114{bottom:183.226667pt;}
.y48{bottom:184.040000pt;}
.yf0{bottom:186.746667pt;}
.y2e{bottom:186.760000pt;}
.y113{bottom:187.866667pt;}
.y8c{bottom:191.386667pt;}
.ya6{bottom:192.666667pt;}
.y4c{bottom:195.066667pt;}
.ydc{bottom:196.026667pt;}
.y11b{bottom:196.986667pt;}
.y47{bottom:199.240000pt;}
.y112{bottom:200.026667pt;}
.yef{bottom:202.106667pt;}
.y2d{bottom:202.120000pt;}
.y8b{bottom:206.746667pt;}
.ya5{bottom:208.026667pt;}
.y4b{bottom:210.426667pt;}
.y8a{bottom:211.386667pt;}
.y11a{bottom:213.466667pt;}
.y46{bottom:214.600000pt;}
.y108{bottom:216.026667pt;}
.yee{bottom:217.466667pt;}
.y2c{bottom:217.480000pt;}
.y89{bottom:222.106667pt;}
.ya4{bottom:223.386667pt;}
.y22{bottom:223.546667pt;}
.ydb{bottom:226.746667pt;}
.y45{bottom:229.960000pt;}
.yed{bottom:232.826667pt;}
.y2b{bottom:232.840000pt;}
.y88{bottom:237.466667pt;}
.ya3{bottom:238.746667pt;}
.yda{bottom:241.946667pt;}
.y87{bottom:242.106667pt;}
.y107{bottom:246.586667pt;}
.yec{bottom:248.186667pt;}
.y2a{bottom:248.200000pt;}
.y86{bottom:252.666667pt;}
.ya2{bottom:254.586667pt;}
.yd9{bottom:257.306667pt;}
.ya1{bottom:259.226667pt;}
.y106{bottom:261.946667pt;}
.yeb{bottom:263.546667pt;}
.y29{bottom:263.560000pt;}
.y85{bottom:268.026667pt;}
.ya0{bottom:270.266667pt;}
.y84{bottom:272.666667pt;}
.y105{bottom:273.306667pt;}
.y104{bottom:277.946667pt;}
.yea{bottom:278.746667pt;}
.y28{bottom:278.760000pt;}
.y83{bottom:283.426667pt;}
.y9f{bottom:286.306667pt;}
.y82{bottom:288.066667pt;}
.y103{bottom:289.666667pt;}
.y9e{bottom:290.946667pt;}
.y27{bottom:294.146667pt;}
.y102{bottom:294.306667pt;}
.y81{bottom:298.786667pt;}
.yd8{bottom:303.426667pt;}
.y101{bottom:305.346667pt;}
.y26{bottom:309.506667pt;}
.y9d{bottom:313.826667pt;}
.y80{bottom:314.146667pt;}
.y7f{bottom:318.786667pt;}
.y100{bottom:321.186667pt;}
.y25{bottom:324.866667pt;}
.yff{bottom:325.826667pt;}
.y7e{bottom:329.506667pt;}
.y9c{bottom:330.306667pt;}
.yd7{bottom:333.986667pt;}
.yfe{bottom:337.506667pt;}
.y24{bottom:340.226667pt;}
.yfd{bottom:342.146667pt;}
.y7d{bottom:344.706667pt;}
.ye9{bottom:344.866667pt;}
.y9b{bottom:348.066667pt;}
.y7c{bottom:349.346667pt;}
.y9a{bottom:353.346667pt;}
.yfc{bottom:354.306667pt;}
.ye8{bottom:355.426667pt;}
.y23{bottom:355.586667pt;}
.y7b{bottom:360.066667pt;}
.yd6{bottom:364.706667pt;}
.y99{bottom:365.986667pt;}
.ye7{bottom:370.786667pt;}
.y7a{bottom:376.066667pt;}
.yd5{bottom:380.066667pt;}
.y79{bottom:380.706667pt;}
.ye5{bottom:386.146667pt;}
.ye6{bottom:390.786667pt;}
.y78{bottom:392.866667pt;}
.yd4{bottom:395.426667pt;}
.y97{bottom:397.186667pt;}
.ye4{bottom:401.506667pt;}
.y98{bottom:401.826667pt;}
.y12b{bottom:409.826667pt;}
.yd3{bottom:410.786667pt;}
.y96{bottom:412.386667pt;}
.ye3{bottom:416.866667pt;}
.yfb{bottom:421.506667pt;}
.yd2{bottom:425.986667pt;}
.y94{bottom:427.746667pt;}
.ye2{bottom:432.226667pt;}
.y95{bottom:432.386667pt;}
.y12a{bottom:440.866667pt;}
.yd1{bottom:442.466667pt;}
.y93{bottom:443.106667pt;}
.ye1{bottom:447.426667pt;}
.y129{bottom:456.066667pt;}
.y92{bottom:458.466667pt;}
.yd0{bottom:462.786667pt;}
.y43{bottom:466.626667pt;}
.y128{bottom:471.426667pt;}
.y77{bottom:473.826667pt;}
.ycf{bottom:478.146667pt;}
.y3a{bottom:481.026667pt;}
.y10c{bottom:482.786667pt;}
.y127{bottom:486.786667pt;}
.y76{bottom:489.026667pt;}
.yce{bottom:493.506667pt;}
.y126{bottom:502.146667pt;}
.y75{bottom:504.386667pt;}
.ycd{bottom:508.893333pt;}
.yfa{bottom:513.533333pt;}
.y125{bottom:517.533333pt;}
.y74{bottom:519.773333pt;}
.ycc{bottom:524.253333pt;}
.y111{bottom:528.893333pt;}
.y124{bottom:533.853333pt;}
.y72{bottom:535.133333pt;}
.ycb{bottom:539.453333pt;}
.y73{bottom:539.773333pt;}
.y123{bottom:550.013333pt;}
.y71{bottom:550.493333pt;}
.yca{bottom:554.813333pt;}
.yf9{bottom:559.453333pt;}
.y70{bottom:565.853333pt;}
.y122{bottom:566.333333pt;}
.yc9{bottom:570.173333pt;}
.y110{bottom:574.813333pt;}
.y6e{bottom:581.053333pt;}
.y121{bottom:582.653333pt;}
.yc8{bottom:585.533333pt;}
.y6f{bottom:585.693333pt;}
.y1f{bottom:592.253333pt;}
.y6d{bottom:596.413333pt;}
.y120{bottom:598.973333pt;}
.yc7{bottom:600.893333pt;}
.y1e{bottom:611.133333pt;}
.y6c{bottom:611.773333pt;}
.y11f{bottom:615.293333pt;}
.yc6{bottom:616.253333pt;}
.y1d{bottom:626.333333pt;}
.y6b{bottom:627.133333pt;}
.yc5{bottom:631.453333pt;}
.y10b{bottom:636.093333pt;}
.y6a{bottom:642.493333pt;}
.y1c{bottom:644.093333pt;}
.yc4{bottom:646.813333pt;}
.yf8{bottom:651.453333pt;}
.y68{bottom:657.853333pt;}
.yc3{bottom:662.173333pt;}
.y69{bottom:662.493333pt;}
.y1b{bottom:673.053333pt;}
.yc2{bottom:677.533333pt;}
.y1a{bottom:686.813333pt;}
.y67{bottom:688.413333pt;}
.yc1{bottom:692.893333pt;}
.y19{bottom:697.373333pt;}
.y65{bottom:703.773333pt;}
.yc0{bottom:708.093333pt;}
.y66{bottom:708.413333pt;}
.y18{bottom:716.093333pt;}
.y64{bottom:719.133333pt;}
.ybf{bottom:723.453333pt;}
.y63{bottom:734.533333pt;}
.ybe{bottom:738.853333pt;}
.y17{bottom:743.813333pt;}
.y62{bottom:749.733333pt;}
.ybd{bottom:754.213333pt;}
.y10a{bottom:758.853333pt;}
.y60{bottom:765.093333pt;}
.ybc{bottom:769.573333pt;}
.y61{bottom:769.733333pt;}
.y16{bottom:771.333333pt;}
.y5f{bottom:780.453333pt;}
.ybb{bottom:784.933333pt;}
.y5d{bottom:795.813333pt;}
.y15{bottom:799.013333pt;}
.yba{bottom:800.133333pt;}
.y5e{bottom:800.453333pt;}
.yf7{bottom:804.773333pt;}
.y5c{bottom:811.173333pt;}
.yb9{bottom:815.493333pt;}
.y14{bottom:824.293333pt;}
.y5a{bottom:826.533333pt;}
.yb8{bottom:830.853333pt;}
.y5b{bottom:831.173333pt;}
.y59{bottom:841.733333pt;}
.yb7{bottom:846.213333pt;}
.y13{bottom:847.653333pt;}
.ya{bottom:849.733333pt;}
.y58{bottom:857.093333pt;}
.yb6{bottom:861.573333pt;}
.y57{bottom:872.453333pt;}
.yb5{bottom:876.933333pt;}
.y56{bottom:887.813333pt;}
.yb4{bottom:892.133333pt;}
.y119{bottom:896.773333pt;}
.y54{bottom:903.173333pt;}
.yb3{bottom:907.493333pt;}
.y55{bottom:907.813333pt;}
.y53{bottom:918.533333pt;}
.yb2{bottom:922.853333pt;}
.y52{bottom:933.733333pt;}
.yb1{bottom:938.213333pt;}
.y91{bottom:938.373333pt;}
.y51{bottom:949.093333pt;}
.yb0{bottom:953.600000pt;}
.yf6{bottom:958.240000pt;}
.y50{bottom:964.480000pt;}
.y3{bottom:979.840000pt;}
.y2{bottom:995.200000pt;}
.y1{bottom:1011.200000pt;}
.hf{height:3.612500pt;}
.h24{height:12.320000pt;}
.h18{height:13.760000pt;}
.h13{height:15.200000pt;}
.hc{height:18.768750pt;}
.ha{height:18.965625pt;}
.h12{height:22.343750pt;}
.h1c{height:24.131250pt;}
.h1f{height:24.384375pt;}
.h5{height:24.480000pt;}
.h21{height:24.512000pt;}
.h7{height:29.940625pt;}
.h25{height:30.254687pt;}
.h14{height:33.867188pt;}
.h1d{height:34.374375pt;}
.h8{height:34.965625pt;}
.h22{height:35.093625pt;}
.h17{height:36.750000pt;}
.h20{height:36.920625pt;}
.h6{height:37.090625pt;}
.h3{height:37.479688pt;}
.h1b{height:38.672812pt;}
.h2{height:40.021563pt;}
.h1a{height:43.782500pt;}
.h1{height:45.156250pt;}
.h11{height:47.310625pt;}
.h26{height:49.120000pt;}
.h1e{height:52.834688pt;}
.h23{height:54.390938pt;}
.h4{height:58.563750pt;}
.hd{height:64.130938pt;}
.h10{height:67.734375pt;}
.hb{height:82.635937pt;}
.he{height:105.214062pt;}
.h16{height:110.432000pt;}
.h9{height:127.232000pt;}
.h19{height:242.426667pt;}
.h15{height:367.906667pt;}
.h0{height:1056.000000pt;}
.w2{width:30.240000pt;}
.w5{width:147.520000pt;}
.w7{width:203.106667pt;}
.wa{width:337.506667pt;}
.w6{width:526.653333pt;}
.w4{width:576.133333pt;}
.w9{width:662.533333pt;}
.w3{width:662.693333pt;}
.w8{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.xd{left:-7.840000pt;}
.x0{left:0.000000pt;}
.x4{left:3.840000pt;}
.x15{left:6.720000pt;}
.x18{left:38.760000pt;}
.x6{left:40.480000pt;}
.x14{left:41.600000pt;}
.x12{left:47.039988pt;}
.x1{left:47.999988pt;}
.x11{left:52.799988pt;}
.x19{left:54.079988pt;}
.x17{left:57.800000pt;}
.xa{left:62.592000pt;}
.x57{left:71.360000pt;}
.x32{left:77.600000pt;}
.x42{left:83.071976pt;}
.x3{left:88.352000pt;}
.x38{left:89.471976pt;}
.x43{left:91.711988pt;}
.x9{left:93.786667pt;}
.x2{left:96.031988pt;}
.x39{left:98.111988pt;}
.x27{left:114.431976pt;}
.x26{left:116.031976pt;}
.x5{left:119.552000pt;}
.x3e{left:122.111976pt;}
.x4c{left:129.311976pt;}
.x3f{left:130.751988pt;}
.x24{left:138.106642pt;}
.x25{left:142.426655pt;}
.x4d{left:148.506642pt;}
.x44{left:154.586642pt;}
.x4e{left:157.146655pt;}
.x45{left:163.226655pt;}
.xe{left:167.706655pt;}
.x8{left:177.946667pt;}
.x22{left:183.066642pt;}
.x23{left:187.386655pt;}
.xb{left:205.946667pt;}
.x46{left:211.386642pt;}
.x47{left:220.026655pt;}
.x28{left:246.106655pt;}
.x40{left:283.106642pt;}
.x10{left:284.546655pt;}
.x7{left:288.066667pt;}
.x41{left:291.746655pt;}
.x3c{left:309.666642pt;}
.x3d{left:318.306655pt;}
.x1a{left:329.506642pt;}
.x3a{left:331.426642pt;}
.x1b{left:333.826655pt;}
.x3b{left:340.066655pt;}
.x1c{left:351.106642pt;}
.x1d{left:355.426655pt;}
.x20{left:367.906642pt;}
.x21{left:372.226655pt;}
.x1e{left:397.826642pt;}
.x1f{left:402.146655pt;}
.xf{left:412.706655pt;}
.x13{left:414.466655pt;}
.x55{left:422.306655pt;}
.x54{left:425.986655pt;}
.x52{left:429.053321pt;}
.x29{left:432.093321pt;}
.x53{left:433.373321pt;}
.x30{left:436.733321pt;}
.x31{left:440.733321pt;}
.x33{left:456.093321pt;}
.x51{left:467.453321pt;}
.x34{left:472.893309pt;}
.x2e{left:474.653309pt;}
.x35{left:481.533321pt;}
.x2c{left:483.613309pt;}
.x2d{left:492.253321pt;}
.x36{left:563.933309pt;}
.x16{left:568.893333pt;}
.x37{left:572.573321pt;}
.x4f{left:581.853309pt;}
.x50{left:590.493321pt;}
.xc{left:616.613333pt;}
.x2f{left:624.133321pt;}
.x2a{left:662.533309pt;}
.x48{left:665.893309pt;}
.x2b{left:666.853321pt;}
.x4a{left:671.173309pt;}
.x49{left:674.533321pt;}
.x4b{left:679.813321pt;}
.x56{left:780.159988pt;}
}




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