
    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_8ac88bf06f731730761ec1d5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bd49b04fb30f55c637c4826a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce582acabfa406eefa469340.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_17581b66bdf80fd66d809b38.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_bf3c861cc9e10a2a2845cdc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.884277;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_20c16fe7ed0ce0f0d242594a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.021960px;}
.ls1{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.090600px;}
.ls3{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls2{letter-spacing:44.511120px;}
.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;}
}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-16.560600px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.057320px;}
._1{width:1.090440px;}
._6{width:3.024000px;}
._2{width:4.320000px;}
._8{width:5.904000px;}
._7{width:7.128000px;}
._4{width:8.568000px;}
._a{width:10.080000px;}
._b{width:11.304000px;}
._5{width:12.456000px;}
._f{width:13.464000px;}
._10{width:14.688000px;}
._3{width:16.128000px;}
._1a{width:17.524080px;}
._9{width:19.440000px;}
._13{width:20.520000px;}
._11{width:21.528000px;}
._d{width:23.256000px;}
._c{width:24.336000px;}
._18{width:25.704000px;}
._17{width:26.712000px;}
._14{width:28.152000px;}
._16{width:29.664000px;}
._15{width:30.816000px;}
._19{width:31.824000px;}
._e{width:43.272000px;}
._12{width:45.072000px;}
._1b{width:70.416000px;}
._1d{width:104.953320px;}
._1c{width:105.984000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,34);}
.fs3{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs0{font-size:96.120000px;}
.yc7{bottom:-0.720000px;}
.yc5{bottom:-0.630000px;}
.y0{bottom:0.000000px;}
.yef{bottom:112.230000px;}
.y83{bottom:113.130000px;}
.y122{bottom:113.310000px;}
.y2b{bottom:114.840000px;}
.y17a{bottom:114.930000px;}
.y16e{bottom:124.380000px;}
.y5a{bottom:124.830000px;}
.y121{bottom:132.300000px;}
.yee{bottom:132.930000px;}
.y82{bottom:133.830000px;}
.y2a{bottom:135.540000px;}
.y179{bottom:135.630000px;}
.yad{bottom:136.800000px;}
.y16d{bottom:145.080000px;}
.y59{bottom:145.530000px;}
.yc3{bottom:146.700000px;}
.y13a{bottom:150.930000px;}
.y120{bottom:152.370000px;}
.yed{bottom:153.630000px;}
.y81{bottom:154.530000px;}
.y29{bottom:156.240000px;}
.yac{bottom:157.500000px;}
.y158{bottom:161.370000px;}
.y178{bottom:165.330000px;}
.y16c{bottom:165.780000px;}
.y58{bottom:166.230000px;}
.yc2{bottom:167.400000px;}
.y139{bottom:172.890000px;}
.y80{bottom:175.230000px;}
.y28{bottom:176.940000px;}
.yab{bottom:178.200000px;}
.yec{bottom:183.330000px;}
.y177{bottom:186.030000px;}
.y16b{bottom:186.480000px;}
.y57{bottom:186.930000px;}
.yc1{bottom:188.100000px;}
.y138{bottom:194.850000px;}
.y7f{bottom:195.930000px;}
.y147{bottom:197.910000px;}
.y11f{bottom:200.430000px;}
.yeb{bottom:204.030000px;}
.y157{bottom:205.290000px;}
.y27{bottom:206.640000px;}
.y176{bottom:206.730000px;}
.y16a{bottom:207.180000px;}
.yaa{bottom:207.900000px;}
.yc0{bottom:208.800000px;}
.y56{bottom:216.660000px;}
.y146{bottom:219.900000px;}
.yea{bottom:224.760000px;}
.y137{bottom:225.120000px;}
.y26{bottom:227.370000px;}
.y169{bottom:227.910000px;}
.ya9{bottom:228.630000px;}
.y11e{bottom:230.250000px;}
.y156{bottom:235.560000px;}
.y175{bottom:236.460000px;}
.y55{bottom:237.360000px;}
.y145{bottom:241.860000px;}
.ye9{bottom:245.460000px;}
.y136{bottom:245.820000px;}
.ybf{bottom:246.990000px;}
.y25{bottom:248.070000px;}
.y11d{bottom:249.150000px;}
.ya8{bottom:249.330000px;}
.y174{bottom:257.160000px;}
.y168{bottom:257.520000px;}
.y54{bottom:258.060000px;}
.y155{bottom:265.260000px;}
.ye8{bottom:266.160000px;}
.y135{bottom:266.520000px;}
.y11c{bottom:268.140000px;}
.y24{bottom:277.680000px;}
.y167{bottom:278.220000px;}
.y53{bottom:278.760000px;}
.ya7{bottom:279.030000px;}
.y111{bottom:284.610000px;}
.y154{bottom:285.960000px;}
.ye7{bottom:286.860000px;}
.y11b{bottom:287.130000px;}
.y134{bottom:287.220000px;}
.y7e{bottom:287.760000px;}
.y144{bottom:289.920000px;}
.y166{bottom:298.920000px;}
.y52{bottom:299.460000px;}
.ya6{bottom:299.730000px;}
.y110{bottom:305.310000px;}
.y11a{bottom:306.120000px;}
.y153{bottom:306.660000px;}
.y23{bottom:307.470000px;}
.ye6{bottom:307.560000px;}
.y133{bottom:307.920000px;}
.y7d{bottom:308.460000px;}
.yc4{bottom:312.420000px;}
.yc6{bottom:312.510000px;}
.y165{bottom:319.620000px;}
.y143{bottom:320.070000px;}
.y51{bottom:320.160000px;}
.ya5{bottom:320.430000px;}
.y119{bottom:325.110000px;}
.y10f{bottom:326.010000px;}
.y152{bottom:327.360000px;}
.y22{bottom:328.260000px;}
.y132{bottom:328.620000px;}
.y7c{bottom:329.160000px;}
.y104{bottom:334.020000px;}
.y173{bottom:337.260000px;}
.y164{bottom:340.320000px;}
.y142{bottom:340.770000px;}
.ya4{bottom:341.130000px;}
.y118{bottom:344.010000px;}
.y10e{bottom:346.710000px;}
.y151{bottom:348.060000px;}
.y131{bottom:349.320000px;}
.y50{bottom:349.860000px;}
.y21{bottom:357.870000px;}
.ye5{bottom:357.960000px;}
.y141{bottom:361.470000px;}
.ya3{bottom:361.830000px;}
.y103{bottom:364.260000px;}
.y10d{bottom:367.410000px;}
.y150{bottom:368.760000px;}
.y130{bottom:370.020000px;}
.y4f{bottom:370.560000px;}
.y117{bottom:373.170000px;}
.y20{bottom:378.570000px;}
.ye4{bottom:378.660000px;}
.y140{bottom:382.170000px;}
.ya2{bottom:382.530000px;}
.y102{bottom:384.960000px;}
.y10c{bottom:388.110000px;}
.y14f{bottom:389.460000px;}
.y163{bottom:390.720000px;}
.y4e{bottom:391.260000px;}
.y1f{bottom:399.270000px;}
.y12f{bottom:399.360000px;}
.y7b{bottom:400.260000px;}
.y13f{bottom:402.870000px;}
.y116{bottom:402.960000px;}
.ya1{bottom:403.230000px;}
.y101{bottom:405.660000px;}
.ye3{bottom:408.360000px;}
.y10b{bottom:408.810000px;}
.y14e{bottom:410.160000px;}
.y4d{bottom:411.960000px;}
.y1e{bottom:419.970000px;}
.y162{bottom:420.420000px;}
.y7a{bottom:420.960000px;}
.y13e{bottom:423.570000px;}
.y100{bottom:426.360000px;}
.y115{bottom:427.260000px;}
.y12e{bottom:427.350000px;}
.ye2{bottom:429.060000px;}
.y129{bottom:429.510000px;}
.y14d{bottom:430.860000px;}
.y4c{bottom:432.660000px;}
.ya0{bottom:432.930000px;}
.y10a{bottom:438.060000px;}
.y1d{bottom:440.670000px;}
.y161{bottom:441.120000px;}
.y79{bottom:441.660000px;}
.y172{bottom:449.760000px;}
.y12d{bottom:451.560000px;}
.y13d{bottom:452.910000px;}
.y4b{bottom:453.360000px;}
.y9f{bottom:453.630000px;}
.yff{bottom:456.060000px;}
.ye1{bottom:458.760000px;}
.y128{bottom:458.850000px;}
.y14c{bottom:460.200000px;}
.y1c{bottom:461.370000px;}
.y160{bottom:461.820000px;}
.y78{bottom:462.360000px;}
.y109{bottom:466.050000px;}
.y171{bottom:470.460000px;}
.ybe{bottom:474.060000px;}
.y9e{bottom:474.330000px;}
.yfe{bottom:476.760000px;}
.ye0{bottom:479.460000px;}
.y13c{bottom:480.810000px;}
.y1b{bottom:482.070000px;}
.y15f{bottom:482.520000px;}
.y4a{bottom:483.060000px;}
.y127{bottom:486.840000px;}
.y14b{bottom:488.190000px;}
.y108{bottom:490.350000px;}
.ybd{bottom:494.760000px;}
.y9d{bottom:495.030000px;}
.yfd{bottom:497.460000px;}
.ydf{bottom:500.160000px;}
.y1a{bottom:502.770000px;}
.y49{bottom:503.760000px;}
.y13b{bottom:505.110000px;}
.y14a{bottom:507.180000px;}
.y126{bottom:511.050000px;}
.y15e{bottom:512.040000px;}
.ybc{bottom:515.460000px;}
.y9c{bottom:515.730000px;}
.y170{bottom:520.860000px;}
.y19{bottom:523.470000px;}
.y48{bottom:524.460000px;}
.yfc{bottom:527.160000px;}
.yde{bottom:529.860000px;}
.y149{bottom:531.390000px;}
.y77{bottom:533.460000px;}
.y114{bottom:536.070000px;}
.ybb{bottom:536.160000px;}
.y9b{bottom:536.430000px;}
.y15d{bottom:541.920000px;}
.y18{bottom:544.170000px;}
.y47{bottom:545.160000px;}
.yfb{bottom:547.860000px;}
.ydd{bottom:550.560000px;}
.y76{bottom:554.160000px;}
.yba{bottom:556.860000px;}
.y9a{bottom:557.130000px;}
.y15c{bottom:562.620000px;}
.y12c{bottom:564.420000px;}
.y113{bottom:565.410000px;}
.y46{bottom:565.860000px;}
.yfa{bottom:568.560000px;}
.ydc{bottom:571.260000px;}
.y17{bottom:573.870000px;}
.y75{bottom:574.860000px;}
.yb9{bottom:577.560000px;}
.y99{bottom:577.830000px;}
.y15b{bottom:583.320000px;}
.y45{bottom:586.560000px;}
.yf9{bottom:589.260000px;}
.y112{bottom:589.620000px;}
.y12b{bottom:592.410000px;}
.y16{bottom:594.570000px;}
.y74{bottom:595.560000px;}
.y107{bottom:596.640000px;}
.y98{bottom:598.530000px;}
.ydb{bottom:600.960000px;}
.y15a{bottom:604.020000px;}
.y44{bottom:607.260000px;}
.y15{bottom:615.270000px;}
.y73{bottom:616.260000px;}
.y12a{bottom:616.620000px;}
.yf8{bottom:618.960000px;}
.y97{bottom:619.230000px;}
.yda{bottom:621.660000px;}
.y125{bottom:624.270000px;}
.y106{bottom:624.630000px;}
.y159{bottom:624.720000px;}
.y148{bottom:626.070000px;}
.y43{bottom:627.960000px;}
.y14{bottom:636.000000px;}
.yf7{bottom:639.690000px;}
.y96{bottom:639.960000px;}
.yd9{bottom:642.390000px;}
.y72{bottom:645.990000px;}
.y42{bottom:648.690000px;}
.y105{bottom:648.960000px;}
.y124{bottom:654.090000px;}
.y13{bottom:656.700000px;}
.yf6{bottom:660.390000px;}
.y95{bottom:660.660000px;}
.y71{bottom:666.690000px;}
.y41{bottom:669.390000px;}
.yd8{bottom:672.090000px;}
.y12{bottom:677.400000px;}
.y123{bottom:678.300000px;}
.yf5{bottom:681.090000px;}
.y94{bottom:681.360000px;}
.y70{bottom:687.390000px;}
.y40{bottom:690.090000px;}
.yd7{bottom:692.790000px;}
.y11{bottom:698.010000px;}
.yf4{bottom:701.790000px;}
.y6f{bottom:708.090000px;}
.yb8{bottom:710.790000px;}
.yd6{bottom:713.490000px;}
.y93{bottom:717.090000px;}
.y10{bottom:718.710000px;}
.y3f{bottom:719.610000px;}
.y6e{bottom:728.790000px;}
.yb7{bottom:731.490000px;}
.y92{bottom:737.790000px;}
.yf{bottom:739.410000px;}
.yd5{bottom:743.100000px;}
.y3e{bottom:749.400000px;}
.y6d{bottom:749.490000px;}
.yb6{bottom:752.100000px;}
.y91{bottom:758.490000px;}
.ye{bottom:760.110000px;}
.yd4{bottom:763.800000px;}
.y3d{bottom:770.010000px;}
.y6c{bottom:770.100000px;}
.yf3{bottom:772.800000px;}
.y90{bottom:779.100000px;}
.yd{bottom:780.810000px;}
.yb5{bottom:781.800000px;}
.yd3{bottom:784.500000px;}
.y6b{bottom:790.800000px;}
.yf2{bottom:793.500000px;}
.y3c{bottom:799.710000px;}
.y8f{bottom:799.800000px;}
.yc{bottom:801.510000px;}
.yb4{bottom:802.500000px;}
.y6a{bottom:811.500000px;}
.yd2{bottom:814.200000px;}
.y3b{bottom:820.410000px;}
.y8e{bottom:820.500000px;}
.yb3{bottom:823.200000px;}
.yb{bottom:831.210000px;}
.y69{bottom:832.200000px;}
.yd1{bottom:834.900000px;}
.y3a{bottom:841.110000px;}
.y8d{bottom:841.200000px;}
.yb2{bottom:843.900000px;}
.ya{bottom:851.910000px;}
.y68{bottom:852.900000px;}
.yd0{bottom:855.600000px;}
.y39{bottom:861.810000px;}
.y8c{bottom:861.900000px;}
.yb1{bottom:864.600000px;}
.y9{bottom:872.610000px;}
.y67{bottom:873.600000px;}
.ycf{bottom:876.300000px;}
.y38{bottom:882.510000px;}
.y8b{bottom:882.600000px;}
.yf1{bottom:885.300000px;}
.y66{bottom:894.300000px;}
.y8{bottom:902.220000px;}
.y37{bottom:903.210000px;}
.yce{bottom:906.000000px;}
.y8a{bottom:912.300000px;}
.y65{bottom:915.000000px;}
.y36{bottom:923.910000px;}
.ycd{bottom:926.700000px;}
.y7{bottom:932.100000px;}
.y89{bottom:933.000000px;}
.yf0{bottom:935.520000px;}
.y35{bottom:944.610000px;}
.y64{bottom:944.700000px;}
.y88{bottom:953.700000px;}
.ycc{bottom:956.400000px;}
.y6{bottom:961.800000px;}
.y34{bottom:965.310000px;}
.y63{bottom:965.400000px;}
.y87{bottom:974.400000px;}
.ycb{bottom:977.100000px;}
.y62{bottom:986.100000px;}
.y5{bottom:991.500000px;}
.y33{bottom:995.010000px;}
.y86{bottom:995.100000px;}
.yca{bottom:997.800000px;}
.y16f{bottom:1006.620000px;}
.y61{bottom:1006.800000px;}
.y32{bottom:1015.710000px;}
.y85{bottom:1015.800000px;}
.yc9{bottom:1018.500000px;}
.y60{bottom:1027.500000px;}
.y4{bottom:1030.650000px;}
.y31{bottom:1036.410000px;}
.y84{bottom:1036.500000px;}
.yc8{bottom:1039.200000px;}
.yb0{bottom:1048.200000px;}
.y3{bottom:1054.800000px;}
.y30{bottom:1057.140000px;}
.y5f{bottom:1057.230000px;}
.yaf{bottom:1068.930000px;}
.y2f{bottom:1077.840000px;}
.y5e{bottom:1077.930000px;}
.yae{bottom:1089.630000px;}
.y2{bottom:1097.730000px;}
.y2e{bottom:1098.540000px;}
.y5d{bottom:1098.630000px;}
.y2d{bottom:1119.240000px;}
.y5c{bottom:1119.330000px;}
.y1{bottom:1125.270000px;}
.y2c{bottom:1139.940000px;}
.y5b{bottom:1140.030000px;}
.ha{height:14.940000px;}
.h8{height:15.030000px;}
.h9{height:49.956855px;}
.hc{height:54.597656px;}
.hb{height:64.546875px;}
.h7{height:64.657617px;}
.h6{height:70.628906px;}
.h4{height:70.664062px;}
.h5{height:72.562500px;}
.h3{height:84.535312px;}
.h2{height:96.870938px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:26.910000px;}
.w3{width:26.940000px;}
.w2{width:27.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:10.800000px;}
.x8{left:127.650000px;}
.x9{left:130.620000px;}
.x21{left:134.040000px;}
.x16{left:142.770000px;}
.x2{left:148.530000px;}
.x1{left:152.580000px;}
.x20{left:154.920000px;}
.x1e{left:163.200000px;}
.x14{left:167.340000px;}
.x19{left:197.220000px;}
.x3{left:254.820000px;}
.x1d{left:283.620000px;}
.x4{left:292.530000px;}
.xa{left:301.980000px;}
.xb{left:310.350000px;}
.x5{left:318.360000px;}
.xd{left:354.720000px;}
.x6{left:362.550000px;}
.x22{left:370.320000px;}
.xe{left:399.030000px;}
.xf{left:443.490000px;}
.x7{left:446.550000px;}
.x10{left:487.770000px;}
.x15{left:514.050000px;}
.x1b{left:520.800000px;}
.x1f{left:526.470000px;}
.x11{left:532.140000px;}
.x1c{left:536.550000px;}
.x18{left:541.050000px;}
.x12{left:576.510000px;}
.x1a{left:765.450000px;}
.x13{left:767.700000px;}
.x17{left:791.460000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.019520pt;}
.ls1{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.080533pt;}
.ls3{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls2{letter-spacing:39.565440pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-14.720533pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.939840pt;}
._1{width:0.969280pt;}
._6{width:2.688000pt;}
._2{width:3.840000pt;}
._8{width:5.248000pt;}
._7{width:6.336000pt;}
._4{width:7.616000pt;}
._a{width:8.960000pt;}
._b{width:10.048000pt;}
._5{width:11.072000pt;}
._f{width:11.968000pt;}
._10{width:13.056000pt;}
._3{width:14.336000pt;}
._1a{width:15.576960pt;}
._9{width:17.280000pt;}
._13{width:18.240000pt;}
._11{width:19.136000pt;}
._d{width:20.672000pt;}
._c{width:21.632000pt;}
._18{width:22.848000pt;}
._17{width:23.744000pt;}
._14{width:25.024000pt;}
._16{width:26.368000pt;}
._15{width:27.392000pt;}
._19{width:28.288000pt;}
._e{width:38.464000pt;}
._12{width:40.064000pt;}
._1b{width:62.592000pt;}
._1d{width:93.291840pt;}
._1c{width:94.208000pt;}
.fs3{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs0{font-size:85.440000pt;}
.yc7{bottom:-0.640000pt;}
.yc5{bottom:-0.560000pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:99.760000pt;}
.y83{bottom:100.560000pt;}
.y122{bottom:100.720000pt;}
.y2b{bottom:102.080000pt;}
.y17a{bottom:102.160000pt;}
.y16e{bottom:110.560000pt;}
.y5a{bottom:110.960000pt;}
.y121{bottom:117.600000pt;}
.yee{bottom:118.160000pt;}
.y82{bottom:118.960000pt;}
.y2a{bottom:120.480000pt;}
.y179{bottom:120.560000pt;}
.yad{bottom:121.600000pt;}
.y16d{bottom:128.960000pt;}
.y59{bottom:129.360000pt;}
.yc3{bottom:130.400000pt;}
.y13a{bottom:134.160000pt;}
.y120{bottom:135.440000pt;}
.yed{bottom:136.560000pt;}
.y81{bottom:137.360000pt;}
.y29{bottom:138.880000pt;}
.yac{bottom:140.000000pt;}
.y158{bottom:143.440000pt;}
.y178{bottom:146.960000pt;}
.y16c{bottom:147.360000pt;}
.y58{bottom:147.760000pt;}
.yc2{bottom:148.800000pt;}
.y139{bottom:153.680000pt;}
.y80{bottom:155.760000pt;}
.y28{bottom:157.280000pt;}
.yab{bottom:158.400000pt;}
.yec{bottom:162.960000pt;}
.y177{bottom:165.360000pt;}
.y16b{bottom:165.760000pt;}
.y57{bottom:166.160000pt;}
.yc1{bottom:167.200000pt;}
.y138{bottom:173.200000pt;}
.y7f{bottom:174.160000pt;}
.y147{bottom:175.920000pt;}
.y11f{bottom:178.160000pt;}
.yeb{bottom:181.360000pt;}
.y157{bottom:182.480000pt;}
.y27{bottom:183.680000pt;}
.y176{bottom:183.760000pt;}
.y16a{bottom:184.160000pt;}
.yaa{bottom:184.800000pt;}
.yc0{bottom:185.600000pt;}
.y56{bottom:192.586667pt;}
.y146{bottom:195.466667pt;}
.yea{bottom:199.786667pt;}
.y137{bottom:200.106667pt;}
.y26{bottom:202.106667pt;}
.y169{bottom:202.586667pt;}
.ya9{bottom:203.226667pt;}
.y11e{bottom:204.666667pt;}
.y156{bottom:209.386667pt;}
.y175{bottom:210.186667pt;}
.y55{bottom:210.986667pt;}
.y145{bottom:214.986667pt;}
.ye9{bottom:218.186667pt;}
.y136{bottom:218.506667pt;}
.ybf{bottom:219.546667pt;}
.y25{bottom:220.506667pt;}
.y11d{bottom:221.466667pt;}
.ya8{bottom:221.626667pt;}
.y174{bottom:228.586667pt;}
.y168{bottom:228.906667pt;}
.y54{bottom:229.386667pt;}
.y155{bottom:235.786667pt;}
.ye8{bottom:236.586667pt;}
.y135{bottom:236.906667pt;}
.y11c{bottom:238.346667pt;}
.y24{bottom:246.826667pt;}
.y167{bottom:247.306667pt;}
.y53{bottom:247.786667pt;}
.ya7{bottom:248.026667pt;}
.y111{bottom:252.986667pt;}
.y154{bottom:254.186667pt;}
.ye7{bottom:254.986667pt;}
.y11b{bottom:255.226667pt;}
.y134{bottom:255.306667pt;}
.y7e{bottom:255.786667pt;}
.y144{bottom:257.706667pt;}
.y166{bottom:265.706667pt;}
.y52{bottom:266.186667pt;}
.ya6{bottom:266.426667pt;}
.y110{bottom:271.386667pt;}
.y11a{bottom:272.106667pt;}
.y153{bottom:272.586667pt;}
.y23{bottom:273.306667pt;}
.ye6{bottom:273.386667pt;}
.y133{bottom:273.706667pt;}
.y7d{bottom:274.186667pt;}
.yc4{bottom:277.706667pt;}
.yc6{bottom:277.786667pt;}
.y165{bottom:284.106667pt;}
.y143{bottom:284.506667pt;}
.y51{bottom:284.586667pt;}
.ya5{bottom:284.826667pt;}
.y119{bottom:288.986667pt;}
.y10f{bottom:289.786667pt;}
.y152{bottom:290.986667pt;}
.y22{bottom:291.786667pt;}
.y132{bottom:292.106667pt;}
.y7c{bottom:292.586667pt;}
.y104{bottom:296.906667pt;}
.y173{bottom:299.786667pt;}
.y164{bottom:302.506667pt;}
.y142{bottom:302.906667pt;}
.ya4{bottom:303.226667pt;}
.y118{bottom:305.786667pt;}
.y10e{bottom:308.186667pt;}
.y151{bottom:309.386667pt;}
.y131{bottom:310.506667pt;}
.y50{bottom:310.986667pt;}
.y21{bottom:318.106667pt;}
.ye5{bottom:318.186667pt;}
.y141{bottom:321.306667pt;}
.ya3{bottom:321.626667pt;}
.y103{bottom:323.786667pt;}
.y10d{bottom:326.586667pt;}
.y150{bottom:327.786667pt;}
.y130{bottom:328.906667pt;}
.y4f{bottom:329.386667pt;}
.y117{bottom:331.706667pt;}
.y20{bottom:336.506667pt;}
.ye4{bottom:336.586667pt;}
.y140{bottom:339.706667pt;}
.ya2{bottom:340.026667pt;}
.y102{bottom:342.186667pt;}
.y10c{bottom:344.986667pt;}
.y14f{bottom:346.186667pt;}
.y163{bottom:347.306667pt;}
.y4e{bottom:347.786667pt;}
.y1f{bottom:354.906667pt;}
.y12f{bottom:354.986667pt;}
.y7b{bottom:355.786667pt;}
.y13f{bottom:358.106667pt;}
.y116{bottom:358.186667pt;}
.ya1{bottom:358.426667pt;}
.y101{bottom:360.586667pt;}
.ye3{bottom:362.986667pt;}
.y10b{bottom:363.386667pt;}
.y14e{bottom:364.586667pt;}
.y4d{bottom:366.186667pt;}
.y1e{bottom:373.306667pt;}
.y162{bottom:373.706667pt;}
.y7a{bottom:374.186667pt;}
.y13e{bottom:376.506667pt;}
.y100{bottom:378.986667pt;}
.y115{bottom:379.786667pt;}
.y12e{bottom:379.866667pt;}
.ye2{bottom:381.386667pt;}
.y129{bottom:381.786667pt;}
.y14d{bottom:382.986667pt;}
.y4c{bottom:384.586667pt;}
.ya0{bottom:384.826667pt;}
.y10a{bottom:389.386667pt;}
.y1d{bottom:391.706667pt;}
.y161{bottom:392.106667pt;}
.y79{bottom:392.586667pt;}
.y172{bottom:399.786667pt;}
.y12d{bottom:401.386667pt;}
.y13d{bottom:402.586667pt;}
.y4b{bottom:402.986667pt;}
.y9f{bottom:403.226667pt;}
.yff{bottom:405.386667pt;}
.ye1{bottom:407.786667pt;}
.y128{bottom:407.866667pt;}
.y14c{bottom:409.066667pt;}
.y1c{bottom:410.106667pt;}
.y160{bottom:410.506667pt;}
.y78{bottom:410.986667pt;}
.y109{bottom:414.266667pt;}
.y171{bottom:418.186667pt;}
.ybe{bottom:421.386667pt;}
.y9e{bottom:421.626667pt;}
.yfe{bottom:423.786667pt;}
.ye0{bottom:426.186667pt;}
.y13c{bottom:427.386667pt;}
.y1b{bottom:428.506667pt;}
.y15f{bottom:428.906667pt;}
.y4a{bottom:429.386667pt;}
.y127{bottom:432.746667pt;}
.y14b{bottom:433.946667pt;}
.y108{bottom:435.866667pt;}
.ybd{bottom:439.786667pt;}
.y9d{bottom:440.026667pt;}
.yfd{bottom:442.186667pt;}
.ydf{bottom:444.586667pt;}
.y1a{bottom:446.906667pt;}
.y49{bottom:447.786667pt;}
.y13b{bottom:448.986667pt;}
.y14a{bottom:450.826667pt;}
.y126{bottom:454.266667pt;}
.y15e{bottom:455.146667pt;}
.ybc{bottom:458.186667pt;}
.y9c{bottom:458.426667pt;}
.y170{bottom:462.986667pt;}
.y19{bottom:465.306667pt;}
.y48{bottom:466.186667pt;}
.yfc{bottom:468.586667pt;}
.yde{bottom:470.986667pt;}
.y149{bottom:472.346667pt;}
.y77{bottom:474.186667pt;}
.y114{bottom:476.506667pt;}
.ybb{bottom:476.586667pt;}
.y9b{bottom:476.826667pt;}
.y15d{bottom:481.706667pt;}
.y18{bottom:483.706667pt;}
.y47{bottom:484.586667pt;}
.yfb{bottom:486.986667pt;}
.ydd{bottom:489.386667pt;}
.y76{bottom:492.586667pt;}
.yba{bottom:494.986667pt;}
.y9a{bottom:495.226667pt;}
.y15c{bottom:500.106667pt;}
.y12c{bottom:501.706667pt;}
.y113{bottom:502.586667pt;}
.y46{bottom:502.986667pt;}
.yfa{bottom:505.386667pt;}
.ydc{bottom:507.786667pt;}
.y17{bottom:510.106667pt;}
.y75{bottom:510.986667pt;}
.yb9{bottom:513.386667pt;}
.y99{bottom:513.626667pt;}
.y15b{bottom:518.506667pt;}
.y45{bottom:521.386667pt;}
.yf9{bottom:523.786667pt;}
.y112{bottom:524.106667pt;}
.y12b{bottom:526.586667pt;}
.y16{bottom:528.506667pt;}
.y74{bottom:529.386667pt;}
.y107{bottom:530.346667pt;}
.y98{bottom:532.026667pt;}
.ydb{bottom:534.186667pt;}
.y15a{bottom:536.906667pt;}
.y44{bottom:539.786667pt;}
.y15{bottom:546.906667pt;}
.y73{bottom:547.786667pt;}
.y12a{bottom:548.106667pt;}
.yf8{bottom:550.186667pt;}
.y97{bottom:550.426667pt;}
.yda{bottom:552.586667pt;}
.y125{bottom:554.906667pt;}
.y106{bottom:555.226667pt;}
.y159{bottom:555.306667pt;}
.y148{bottom:556.506667pt;}
.y43{bottom:558.186667pt;}
.y14{bottom:565.333333pt;}
.yf7{bottom:568.613333pt;}
.y96{bottom:568.853333pt;}
.yd9{bottom:571.013333pt;}
.y72{bottom:574.213333pt;}
.y42{bottom:576.613333pt;}
.y105{bottom:576.853333pt;}
.y124{bottom:581.413333pt;}
.y13{bottom:583.733333pt;}
.yf6{bottom:587.013333pt;}
.y95{bottom:587.253333pt;}
.y71{bottom:592.613333pt;}
.y41{bottom:595.013333pt;}
.yd8{bottom:597.413333pt;}
.y12{bottom:602.133333pt;}
.y123{bottom:602.933333pt;}
.yf5{bottom:605.413333pt;}
.y94{bottom:605.653333pt;}
.y70{bottom:611.013333pt;}
.y40{bottom:613.413333pt;}
.yd7{bottom:615.813333pt;}
.y11{bottom:620.453333pt;}
.yf4{bottom:623.813333pt;}
.y6f{bottom:629.413333pt;}
.yb8{bottom:631.813333pt;}
.yd6{bottom:634.213333pt;}
.y93{bottom:637.413333pt;}
.y10{bottom:638.853333pt;}
.y3f{bottom:639.653333pt;}
.y6e{bottom:647.813333pt;}
.yb7{bottom:650.213333pt;}
.y92{bottom:655.813333pt;}
.yf{bottom:657.253333pt;}
.yd5{bottom:660.533333pt;}
.y3e{bottom:666.133333pt;}
.y6d{bottom:666.213333pt;}
.yb6{bottom:668.533333pt;}
.y91{bottom:674.213333pt;}
.ye{bottom:675.653333pt;}
.yd4{bottom:678.933333pt;}
.y3d{bottom:684.453333pt;}
.y6c{bottom:684.533333pt;}
.yf3{bottom:686.933333pt;}
.y90{bottom:692.533333pt;}
.yd{bottom:694.053333pt;}
.yb5{bottom:694.933333pt;}
.yd3{bottom:697.333333pt;}
.y6b{bottom:702.933333pt;}
.yf2{bottom:705.333333pt;}
.y3c{bottom:710.853333pt;}
.y8f{bottom:710.933333pt;}
.yc{bottom:712.453333pt;}
.yb4{bottom:713.333333pt;}
.y6a{bottom:721.333333pt;}
.yd2{bottom:723.733333pt;}
.y3b{bottom:729.253333pt;}
.y8e{bottom:729.333333pt;}
.yb3{bottom:731.733333pt;}
.yb{bottom:738.853333pt;}
.y69{bottom:739.733333pt;}
.yd1{bottom:742.133333pt;}
.y3a{bottom:747.653333pt;}
.y8d{bottom:747.733333pt;}
.yb2{bottom:750.133333pt;}
.ya{bottom:757.253333pt;}
.y68{bottom:758.133333pt;}
.yd0{bottom:760.533333pt;}
.y39{bottom:766.053333pt;}
.y8c{bottom:766.133333pt;}
.yb1{bottom:768.533333pt;}
.y9{bottom:775.653333pt;}
.y67{bottom:776.533333pt;}
.ycf{bottom:778.933333pt;}
.y38{bottom:784.453333pt;}
.y8b{bottom:784.533333pt;}
.yf1{bottom:786.933333pt;}
.y66{bottom:794.933333pt;}
.y8{bottom:801.973333pt;}
.y37{bottom:802.853333pt;}
.yce{bottom:805.333333pt;}
.y8a{bottom:810.933333pt;}
.y65{bottom:813.333333pt;}
.y36{bottom:821.253333pt;}
.ycd{bottom:823.733333pt;}
.y7{bottom:828.533333pt;}
.y89{bottom:829.333333pt;}
.yf0{bottom:831.573333pt;}
.y35{bottom:839.653333pt;}
.y64{bottom:839.733333pt;}
.y88{bottom:847.733333pt;}
.ycc{bottom:850.133333pt;}
.y6{bottom:854.933333pt;}
.y34{bottom:858.053333pt;}
.y63{bottom:858.133333pt;}
.y87{bottom:866.133333pt;}
.ycb{bottom:868.533333pt;}
.y62{bottom:876.533333pt;}
.y5{bottom:881.333333pt;}
.y33{bottom:884.453333pt;}
.y86{bottom:884.533333pt;}
.yca{bottom:886.933333pt;}
.y16f{bottom:894.773333pt;}
.y61{bottom:894.933333pt;}
.y32{bottom:902.853333pt;}
.y85{bottom:902.933333pt;}
.yc9{bottom:905.333333pt;}
.y60{bottom:913.333333pt;}
.y4{bottom:916.133333pt;}
.y31{bottom:921.253333pt;}
.y84{bottom:921.333333pt;}
.yc8{bottom:923.733333pt;}
.yb0{bottom:931.733333pt;}
.y3{bottom:937.600000pt;}
.y30{bottom:939.680000pt;}
.y5f{bottom:939.760000pt;}
.yaf{bottom:950.160000pt;}
.y2f{bottom:958.080000pt;}
.y5e{bottom:958.160000pt;}
.yae{bottom:968.560000pt;}
.y2{bottom:975.760000pt;}
.y2e{bottom:976.480000pt;}
.y5d{bottom:976.560000pt;}
.y2d{bottom:994.880000pt;}
.y5c{bottom:994.960000pt;}
.y1{bottom:1000.240000pt;}
.y2c{bottom:1013.280000pt;}
.y5b{bottom:1013.360000pt;}
.ha{height:13.280000pt;}
.h8{height:13.360000pt;}
.h9{height:44.406094pt;}
.hc{height:48.531250pt;}
.hb{height:57.375000pt;}
.h7{height:57.473437pt;}
.h6{height:62.781250pt;}
.h4{height:62.812500pt;}
.h5{height:64.500000pt;}
.h3{height:75.142500pt;}
.h2{height:86.107500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:23.920000pt;}
.w3{width:23.946667pt;}
.w2{width:24.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:9.600000pt;}
.x8{left:113.466667pt;}
.x9{left:116.106667pt;}
.x21{left:119.146667pt;}
.x16{left:126.906667pt;}
.x2{left:132.026667pt;}
.x1{left:135.626667pt;}
.x20{left:137.706667pt;}
.x1e{left:145.066667pt;}
.x14{left:148.746667pt;}
.x19{left:175.306667pt;}
.x3{left:226.506667pt;}
.x1d{left:252.106667pt;}
.x4{left:260.026667pt;}
.xa{left:268.426667pt;}
.xb{left:275.866667pt;}
.x5{left:282.986667pt;}
.xd{left:315.306667pt;}
.x6{left:322.266667pt;}
.x22{left:329.173333pt;}
.xe{left:354.693333pt;}
.xf{left:394.213333pt;}
.x7{left:396.933333pt;}
.x10{left:433.573333pt;}
.x15{left:456.933333pt;}
.x1b{left:462.933333pt;}
.x1f{left:467.973333pt;}
.x11{left:473.013333pt;}
.x1c{left:476.933333pt;}
.x18{left:480.933333pt;}
.x12{left:512.453333pt;}
.x1a{left:680.400000pt;}
.x13{left:682.400000pt;}
.x17{left:703.520000pt;}
}




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