
    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_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_853ec3526f74041a364d4c36.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_ea31c76eec3d41aa8795bd30.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0bd398a98fa9b7638758e030.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_a3d8d34b44e590d6e53a0636.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37b5abed0a08537652435442.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b7a56c78e816f0738ed1988e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691406;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_211bfbfc5230ce06befbe5ce.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v3{vertical-align:-57.600000px;}
.v7{vertical-align:-33.120000px;}
.v2{vertical-align:-27.360000px;}
.v6{vertical-align:-23.760000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.360000px;}
.v9{vertical-align:23.760000px;}
.v1{vertical-align:33.120000px;}
.v5{vertical-align:42.480000px;}
.lsc{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.792000px;}
.ls4{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.414600px;}
.ls18{letter-spacing:0.450000px;}
.lsb{letter-spacing:0.720000px;}
.ls19{letter-spacing:3.780000px;}
.lsd{letter-spacing:5.214240px;}
.lsa{letter-spacing:9.360000px;}
.ls1b{letter-spacing:11.694240px;}
.ls16{letter-spacing:41.904000px;}
.ls9{letter-spacing:54.144000px;}
.ls13{letter-spacing:74.460000px;}
.ls14{letter-spacing:150.060000px;}
.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.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.208000px;}
.ws11{word-spacing:-16.974600px;}
.ws10{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.506480px;}
.wsd{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.608000px;}
.wse{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.wsc{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-8.911680px;}
._1c{margin-left:-2.616000px;}
._1{margin-left:-1.516320px;}
._4{width:1.056000px;}
._a{width:2.246160px;}
._3{width:3.453840px;}
._b{width:5.304000px;}
._c{width:7.080000px;}
._e{width:8.112000px;}
._12{width:9.148320px;}
._19{width:10.199520px;}
._17{width:11.223360px;}
._8{width:12.752640px;}
._5{width:13.788000px;}
._15{width:14.829120px;}
._d{width:16.416000px;}
._1b{width:17.612640px;}
._9{width:19.020000px;}
._7{width:20.448000px;}
._6{width:21.456000px;}
._16{width:22.752000px;}
._0{width:23.755680px;}
._2{width:24.916560px;}
._11{width:25.992000px;}
._1a{width:27.936000px;}
._f{width:30.000000px;}
._10{width:31.320000px;}
._20{width:32.424960px;}
._13{width:33.984000px;}
._14{width:34.992000px;}
._21{width:36.576000px;}
._22{width:37.584000px;}
._1d{width:39.150720px;}
._1f{width:40.326960px;}
._1e{width:42.967200px;}
._26{width:46.027200px;}
._2d{width:55.442880px;}
._2e{width:56.462880px;}
._29{width:61.608000px;}
._25{width:63.508320px;}
._2c{width:71.688000px;}
._2a{width:99.252000px;}
._28{width:112.084800px;}
._24{width:205.608000px;}
._2b{width:207.398160px;}
._23{width:349.284000px;}
._27{width:471.300000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(15,36,62);}
.fs5{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y121{bottom:0.180000px;}
.yd2{bottom:2.865000px;}
.y9a{bottom:2.880000px;}
.yb2{bottom:3.045000px;}
.y9e{bottom:3.060000px;}
.y15b{bottom:3.240000px;}
.y15f{bottom:3.420000px;}
.ydf{bottom:3.600000px;}
.y158{bottom:3.960000px;}
.y96{bottom:4.140000px;}
.ycd{bottom:4.485000px;}
.ye2{bottom:4.500000px;}
.y136{bottom:9.360000px;}
.ye1{bottom:9.900000px;}
.yd0{bottom:13.125000px;}
.y9b{bottom:13.140000px;}
.yd5{bottom:13.305000px;}
.y9f{bottom:13.320000px;}
.y97{bottom:14.400000px;}
.y91{bottom:14.580000px;}
.y93{bottom:14.760000px;}
.ycf{bottom:16.725000px;}
.y99{bottom:16.740000px;}
.yd4{bottom:16.905000px;}
.y9d{bottom:16.920000px;}
.yb1{bottom:16.950000px;}
.y3{bottom:17.640000px;}
.y95{bottom:18.000000px;}
.ya6{bottom:18.720000px;}
.y135{bottom:18.900000px;}
.yca{bottom:23.760000px;}
.y11d{bottom:25.200000px;}
.ycc{bottom:25.230000px;}
.yaf{bottom:27.000000px;}
.ya7{bottom:28.800000px;}
.yae{bottom:30.600000px;}
.ya5{bottom:32.400000px;}
.yac{bottom:32.940000px;}
.y2{bottom:33.300000px;}
.y174{bottom:34.380000px;}
.y134{bottom:40.320000px;}
.yad{bottom:43.200000px;}
.yab{bottom:46.800000px;}
.y133{bottom:50.400000px;}
.yc9{bottom:63.720000px;}
.y132{bottom:66.990000px;}
.y131{bottom:82.650000px;}
.yc8{bottom:94.860000px;}
.y130{bottom:98.130000px;}
.y84{bottom:109.980000px;}
.y8f{bottom:110.340000px;}
.y1dc{bottom:110.880000px;}
.y8e{bottom:117.900000px;}
.y144{bottom:118.620000px;}
.y196{bottom:119.160000px;}
.y53{bottom:119.520000px;}
.y12f{bottom:119.550000px;}
.yc7{bottom:125.820000px;}
.y102{bottom:126.540000px;}
.ybb{bottom:127.080000px;}
.y83{bottom:127.260000px;}
.ydd{bottom:127.620000px;}
.y8d{bottom:129.060000px;}
.y1db{bottom:129.780000px;}
.y82{bottom:134.100000px;}
.y12e{bottom:135.030000px;}
.ydc{bottom:135.180000px;}
.y110{bottom:141.480000px;}
.y81{bottom:144.360000px;}
.y1b8{bottom:144.720000px;}
.y207{bottom:145.620000px;}
.ydb{bottom:146.340000px;}
.y143{bottom:149.580000px;}
.y183{bottom:150.120000px;}
.y52{bottom:150.480000px;}
.y12d{bottom:150.690000px;}
.y1b7{bottom:152.280000px;}
.yc6{bottom:156.960000px;}
.y101{bottom:157.500000px;}
.y1da{bottom:157.860000px;}
.yba{bottom:158.220000px;}
.y12c{bottom:159.870000px;}
.y80{bottom:162.000000px;}
.y1b6{bottom:163.440000px;}
.y206{bottom:164.520000px;}
.y156{bottom:167.430000px;}
.y7f{bottom:169.590000px;}
.y31{bottom:170.130000px;}
.y10f{bottom:172.650000px;}
.yda{bottom:173.745000px;}
.y1d9{bottom:176.790000px;}
.y7e{bottom:180.750000px;}
.y182{bottom:181.290000px;}
.y51{bottom:181.650000px;}
.y205{bottom:183.450000px;}
.y11b{bottom:185.610000px;}
.yc5{bottom:187.920000px;}
.y100{bottom:188.670000px;}
.yb9{bottom:198.210000px;}
.y30{bottom:201.090000px;}
.yd9{bottom:201.285000px;}
.y155{bottom:202.350000px;}
.y1b5{bottom:203.250000px;}
.y10e{bottom:203.610000px;}
.y1d8{bottom:204.690000px;}
.y204{bottom:211.530000px;}
.y142{bottom:211.710000px;}
.y181{bottom:212.250000px;}
.y50{bottom:212.610000px;}
.y11a{bottom:216.750000px;}
.yc4{bottom:219.090000px;}
.yff{bottom:219.630000px;}
.y1d7{bottom:223.770000px;}
.yd8{bottom:228.825000px;}
.yb8{bottom:229.350000px;}
.y203{bottom:230.430000px;}
.y2f{bottom:232.230000px;}
.y1b4{bottom:234.390000px;}
.y10d{bottom:234.750000px;}
.y154{bottom:237.270000px;}
.y141{bottom:242.850000px;}
.y180{bottom:243.390000px;}
.y4f{bottom:243.750000px;}
.y119{bottom:247.710000px;}
.yc3{bottom:250.050000px;}
.yfe{bottom:250.770000px;}
.y1d6{bottom:251.670000px;}
.yd7{bottom:256.545000px;}
.y202{bottom:258.510000px;}
.yb7{bottom:260.310000px;}
.y7d{bottom:261.750000px;}
.y2e{bottom:263.190000px;}
.y1b3{bottom:265.350000px;}
.y10c{bottom:265.710000px;}
.y1d5{bottom:270.750000px;}
.y17f{bottom:274.350000px;}
.y4e{bottom:274.710000px;}
.y201{bottom:277.410000px;}
.y118{bottom:278.850000px;}
.yc2{bottom:281.190000px;}
.y153{bottom:281.370000px;}
.yfd{bottom:281.730000px;}
.y140{bottom:282.810000px;}
.y6d{bottom:283.710000px;}
.yd6{bottom:284.085000px;}
.y1d4{bottom:289.650000px;}
.yb6{bottom:291.270000px;}
.y7c{bottom:292.710000px;}
.y2d{bottom:294.330000px;}
.y1b2{bottom:296.490000px;}
.y10b{bottom:296.850000px;}
.y200{bottom:305.310000px;}
.y17e{bottom:305.490000px;}
.y4d{bottom:305.850000px;}
.y117{bottom:309.810000px;}
.yd3{bottom:311.625000px;}
.yc1{bottom:312.150000px;}
.yfc{bottom:312.870000px;}
.y13f{bottom:313.950000px;}
.y6c{bottom:314.850000px;}
.y1d3{bottom:317.550000px;}
.yb5{bottom:322.410000px;}
.y7b{bottom:323.850000px;}
.y1ff{bottom:324.390000px;}
.y2c{bottom:325.290000px;}
.y152{bottom:327.090000px;}
.y1b1{bottom:327.450000px;}
.y10a{bottom:327.810000px;}
.y17d{bottom:336.450000px;}
.y1d2{bottom:336.630000px;}
.y4c{bottom:336.810000px;}
.yd1{bottom:339.345000px;}
.y116{bottom:340.950000px;}
.yc0{bottom:343.290000px;}
.yfb{bottom:343.830000px;}
.y13e{bottom:344.910000px;}
.y6b{bottom:345.810000px;}
.y1fe{bottom:352.290000px;}
.yb4{bottom:353.370000px;}
.y7a{bottom:354.810000px;}
.y1d1{bottom:355.530000px;}
.y2b{bottom:356.430000px;}
.y151{bottom:358.050000px;}
.y1b0{bottom:358.590000px;}
.y109{bottom:358.950000px;}
.yce{bottom:366.885000px;}
.y17c{bottom:367.590000px;}
.y4b{bottom:367.950000px;}
.y1fd{bottom:371.370000px;}
.ybf{bottom:374.250000px;}
.yfa{bottom:374.970000px;}
.y13d{bottom:375.870000px;}
.y195{bottom:376.590000px;}
.y6a{bottom:376.950000px;}
.y115{bottom:380.550000px;}
.y1d0{bottom:383.610000px;}
.yb3{bottom:384.510000px;}
.y79{bottom:385.950000px;}
.y2a{bottom:387.390000px;}
.y1af{bottom:389.550000px;}
.y108{bottom:389.910000px;}
.y150{bottom:392.970000px;}
.ycb{bottom:395.145000px;}
.y17b{bottom:398.550000px;}
.y4a{bottom:398.910000px;}
.y1fc{bottom:399.270000px;}
.yb0{bottom:400.905000px;}
.y1cf{bottom:402.510000px;}
.ybe{bottom:405.390000px;}
.yf9{bottom:405.930000px;}
.y13c{bottom:407.010000px;}
.y194{bottom:407.550000px;}
.y69{bottom:407.910000px;}
.y78{bottom:416.955000px;}
.y1fb{bottom:418.395000px;}
.y1ae{bottom:420.735000px;}
.y107{bottom:420.915000px;}
.y29{bottom:427.215000px;}
.y14f{bottom:428.115000px;}
.y17a{bottom:429.735000px;}
.y49{bottom:429.915000px;}
.y1ce{bottom:430.455000px;}
.ybd{bottom:436.350000px;}
.yf8{bottom:437.115000px;}
.ybc{bottom:437.295000px;}
.y13b{bottom:438.015000px;}
.y8c{bottom:438.195000px;}
.y193{bottom:438.735000px;}
.y68{bottom:438.915000px;}
.y1fa{bottom:446.295000px;}
.y77{bottom:447.915000px;}
.y1cd{bottom:449.535000px;}
.y106{bottom:452.055000px;}
.y1ad{bottom:453.315000px;}
.y14e{bottom:459.075000px;}
.y179{bottom:460.695000px;}
.y48{bottom:461.055000px;}
.y1f9{bottom:465.195000px;}
.y28{bottom:467.535000px;}
.yf7{bottom:468.075000px;}
.y1cc{bottom:468.435000px;}
.y1ac{bottom:468.795000px;}
.y13a{bottom:469.155000px;}
.y192{bottom:469.695000px;}
.y67{bottom:470.055000px;}
.yaa{bottom:471.315000px;}
.y76{bottom:479.055000px;}
.y114{bottom:483.015000px;}
.y1ab{bottom:484.455000px;}
.y14d{bottom:490.215000px;}
.y178{bottom:491.835000px;}
.y47{bottom:492.015000px;}
.y1f8{bottom:493.275000px;}
.y1cb{bottom:496.515000px;}
.y27{bottom:498.675000px;}
.yf6{bottom:499.215000px;}
.y1aa{bottom:499.935000px;}
.y139{bottom:500.115000px;}
.y191{bottom:500.835000px;}
.y66{bottom:501.015000px;}
.y75{bottom:510.015000px;}
.y1f7{bottom:512.175000px;}
.y113{bottom:514.155000px;}
.y1a9{bottom:515.415000px;}
.y177{bottom:522.795000px;}
.y46{bottom:523.155000px;}
.ya9{bottom:528.915000px;}
.y26{bottom:529.635000px;}
.yf5{bottom:530.175000px;}
.y138{bottom:531.255000px;}
.y190{bottom:531.795000px;}
.y1bd{bottom:532.155000px;}
.y1a8{bottom:532.335000px;}
.y1f6{bottom:540.255000px;}
.y65{bottom:541.155000px;}
.y1ca{bottom:543.315000px;}
.y1a7{bottom:548.715000px;}
.y176{bottom:553.935000px;}
.y45{bottom:554.115000px;}
.ya8{bottom:556.455000px;}
.y1f5{bottom:559.155000px;}
.y1c9{bottom:562.395000px;}
.y18f{bottom:562.935000px;}
.y1bc{bottom:563.115000px;}
.y1a6{bottom:564.195000px;}
.y25{bottom:569.775000px;}
.yf4{bottom:570.315000px;}
.y137{bottom:571.215000px;}
.y64{bottom:572.115000px;}
.y14c{bottom:574.095000px;}
.y1a5{bottom:579.675000px;}
.ya4{bottom:583.995000px;}
.y44{bottom:585.255000px;}
.y1f4{bottom:587.055000px;}
.y12b{bottom:587.595000px;}
.y1c8{bottom:590.295000px;}
.y13{bottom:591.375000px;}
.y175{bottom:593.895000px;}
.y1bb{bottom:594.255000px;}
.y1a4{bottom:595.335000px;}
.y24{bottom:600.735000px;}
.yf3{bottom:601.275000px;}
.y63{bottom:603.255000px;}
.y1f3{bottom:606.135000px;}
.y1c7{bottom:609.375000px;}
.y173{bottom:610.275000px;}
.y1a3{bottom:610.815000px;}
.y43{bottom:616.215000px;}
.y14b{bottom:620.895000px;}
.y18e{bottom:625.035000px;}
.y8b{bottom:625.215000px;}
.ya3{bottom:627.195000px;}
.y1a2{bottom:627.735000px;}
.y12{bottom:631.515000px;}
.y23{bottom:631.875000px;}
.yf2{bottom:632.415000px;}
.y1f2{bottom:634.035000px;}
.y62{bottom:634.215000px;}
.y1c6{bottom:637.275000px;}
.y1a1{bottom:643.935000px;}
.y42{bottom:647.355000px;}
.y11{bottom:650.775000px;}
.y14a{bottom:651.855000px;}
.y1f1{bottom:653.145000px;}
.ya2{bottom:654.945000px;}
.y18d{bottom:656.025000px;}
.y8a{bottom:656.385000px;}
.y172{bottom:657.645000px;}
.y1a0{bottom:660.345000px;}
.y22{bottom:662.865000px;}
.yf1{bottom:663.405000px;}
.y1ba{bottom:665.025000px;}
.y61{bottom:665.385000px;}
.ya1{bottom:668.625000px;}
.y18c{bottom:672.405000px;}
.y10{bottom:673.125000px;}
.y19f{bottom:675.825000px;}
.y41{bottom:678.345000px;}
.y1f0{bottom:681.045000px;}
.yf{bottom:681.945000px;}
.y1c5{bottom:684.285000px;}
.y89{bottom:687.345000px;}
.y171{bottom:688.785000px;}
.y19e{bottom:692.025000px;}
.y21{bottom:694.005000px;}
.yf0{bottom:694.545000px;}
.y149{bottom:695.805000px;}
.y60{bottom:696.345000px;}
.y1ef{bottom:699.945000px;}
.y1c4{bottom:703.185000px;}
.ye{bottom:704.265000px;}
.y1b9{bottom:705.345000px;}
.y40{bottom:709.485000px;}
.yd{bottom:712.905000px;}
.y88{bottom:718.485000px;}
.y1ee{bottom:719.025000px;}
.y170{bottom:719.745000px;}
.ya0{bottom:723.885000px;}
.y20{bottom:724.965000px;}
.yef{bottom:725.505000px;}
.y5f{bottom:727.485000px;}
.y20b{bottom:728.025000px;}
.y148{bottom:730.725000px;}
.y1c3{bottom:731.265000px;}
.yc{bottom:735.225000px;}
.y19d{bottom:736.485000px;}
.y16f{bottom:736.665000px;}
.y3f{bottom:740.445000px;}
.y1ed{bottom:746.925000px;}
.y87{bottom:749.445000px;}
.y1c2{bottom:750.165000px;}
.y18b{bottom:750.885000px;}
.y9c{bottom:751.425000px;}
.y16e{bottom:753.045000px;}
.y1f{bottom:756.105000px;}
.yee{bottom:756.465000px;}
.y5e{bottom:758.445000px;}
.y12a{bottom:760.785000px;}
.yb{bottom:764.385000px;}
.y1ec{bottom:766.005000px;}
.y19c{bottom:767.445000px;}
.y18a{bottom:767.805000px;}
.y16d{bottom:768.525000px;}
.y3e{bottom:771.585000px;}
.y147{bottom:774.645000px;}
.y20a{bottom:775.005000px;}
.y1c1{bottom:778.245000px;}
.y98{bottom:779.145000px;}
.y86{bottom:780.585000px;}
.y129{bottom:781.485000px;}
.y16c{bottom:784.005000px;}
.y1e{bottom:787.065000px;}
.y5d{bottom:789.585000px;}
.y1eb{bottom:793.905000px;}
.yed{bottom:796.605000px;}
.y1c0{bottom:797.145000px;}
.y19b{bottom:798.585000px;}
.y16b{bottom:799.485000px;}
.y105{bottom:802.545000px;}
.y128{bottom:802.905000px;}
.ya{bottom:804.345000px;}
.y94{bottom:806.685000px;}
.y3d{bottom:811.545000px;}
.y1ea{bottom:812.805000px;}
.y16a{bottom:815.145000px;}
.y1d{bottom:818.205000px;}
.y5c{bottom:820.545000px;}
.y209{bottom:821.805000px;}
.y127{bottom:824.325000px;}
.y1bf{bottom:825.045000px;}
.y146{bottom:826.665000px;}
.yec{bottom:827.565000px;}
.y19a{bottom:829.545000px;}
.y169{bottom:830.625000px;}
.y92{bottom:836.205000px;}
.y1e9{bottom:840.885000px;}
.y104{bottom:842.325000px;}
.y3c{bottom:842.685000px;}
.y1be{bottom:844.125000px;}
.y126{bottom:845.025000px;}
.y168{bottom:846.105000px;}
.y9{bottom:847.005000px;}
.y1c{bottom:849.165000px;}
.y5b{bottom:851.685000px;}
.yeb{bottom:858.705000px;}
.y1e8{bottom:859.785000px;}
.y198{bottom:860.685000px;}
.y167{bottom:861.585000px;}
.y125{bottom:865.725000px;}
.y90{bottom:868.065000px;}
.y208{bottom:868.785000px;}
.y199{bottom:868.965000px;}
.y3b{bottom:873.645000px;}
.y166{bottom:877.245000px;}
.y145{bottom:878.685000px;}
.y1b{bottom:880.305000px;}
.y103{bottom:882.285000px;}
.y5a{bottom:882.645000px;}
.y8{bottom:883.185000px;}
.y124{bottom:886.425000px;}
.y1e7{bottom:887.865000px;}
.yea{bottom:889.665000px;}
.y197{bottom:891.645000px;}
.y165{bottom:892.725000px;}
.y3a{bottom:904.830000px;}
.y1e6{bottom:906.810000px;}
.y123{bottom:907.170000px;}
.y164{bottom:908.250000px;}
.y1a{bottom:911.310000px;}
.y73{bottom:913.830000px;}
.y7{bottom:919.410000px;}
.ye9{bottom:920.850000px;}
.y74{bottom:922.110000px;}
.y59{bottom:922.830000px;}
.y163{bottom:923.730000px;}
.y122{bottom:928.590000px;}
.y1e5{bottom:934.710000px;}
.y39{bottom:935.790000px;}
.y162{bottom:939.390000px;}
.y19{bottom:942.270000px;}
.y85{bottom:944.430000px;}
.y72{bottom:944.790000px;}
.y120{bottom:949.290000px;}
.ye8{bottom:951.810000px;}
.y58{bottom:953.790000px;}
.y161{bottom:954.870000px;}
.y6{bottom:964.590000px;}
.y38{bottom:966.930000px;}
.y160{bottom:970.350000px;}
.y11f{bottom:970.890000px;}
.y71{bottom:975.930000px;}
.y1e4{bottom:981.690000px;}
.y18{bottom:982.050000px;}
.ye7{bottom:982.950000px;}
.y57{bottom:984.930000px;}
.y15e{bottom:985.830000px;}
.y11e{bottom:991.590000px;}
.y37{bottom:997.890000px;}
.y1e3{bottom:1000.770000px;}
.y15d{bottom:1001.490000px;}
.y70{bottom:1006.890000px;}
.y5{bottom:1009.770000px;}
.y11c{bottom:1013.010000px;}
.ye6{bottom:1013.910000px;}
.y56{bottom:1015.890000px;}
.y189{bottom:1016.970000px;}
.y15c{bottom:1017.690000px;}
.y17{bottom:1024.530000px;}
.y1e2{bottom:1028.670000px;}
.y36{bottom:1029.030000px;}
.y4{bottom:1029.210000px;}
.y188{bottom:1032.450000px;}
.y15a{bottom:1034.610000px;}
.y6f{bottom:1038.030000px;}
.ye5{bottom:1045.050000px;}
.y55{bottom:1047.030000px;}
.y1e1{bottom:1047.750000px;}
.y187{bottom:1048.650000px;}
.y159{bottom:1050.090000px;}
.y35{bottom:1059.990000px;}
.y16{bottom:1060.710000px;}
.y186{bottom:1065.750000px;}
.y157{bottom:1066.470000px;}
.y111{bottom:1068.630000px;}
.y6e{bottom:1068.990000px;}
.y1e0{bottom:1075.650000px;}
.ye4{bottom:1076.010000px;}
.y112{bottom:1076.910000px;}
.y54{bottom:1077.990000px;}
.y185{bottom:1081.230000px;}
.ye3{bottom:1092.390000px;}
.y1df{bottom:1094.550000px;}
.y15{bottom:1097.070000px;}
.y184{bottom:1097.430000px;}
.y34{bottom:1099.770000px;}
.y33{bottom:1109.130000px;}
.ye0{bottom:1121.370000px;}
.y1de{bottom:1122.630000px;}
.y14{bottom:1139.730000px;}
.y32{bottom:1140.090000px;}
.y1dd{bottom:1141.560000px;}
.yde{bottom:1142.100000px;}
.y1{bottom:1227.960000px;}
.h16{height:13.680000px;}
.h29{height:14.395500px;}
.h28{height:14.400000px;}
.h38{height:15.465000px;}
.h3c{height:15.480000px;}
.h3b{height:15.502500px;}
.h37{height:15.645000px;}
.h3d{height:15.660000px;}
.h42{height:15.690000px;}
.h39{height:16.185000px;}
.h3a{height:16.191000px;}
.h3e{height:16.200000px;}
.h35{height:18.885000px;}
.h41{height:19.065000px;}
.h2d{height:20.685000px;}
.h2e{height:20.691000px;}
.h31{height:20.700000px;}
.h2f{height:20.722500px;}
.h2a{height:20.730000px;}
.he{height:26.521172px;}
.h1b{height:27.525000px;}
.h1c{height:27.531000px;}
.h25{height:27.535500px;}
.h14{height:27.540000px;}
.h26{height:27.705000px;}
.h27{height:27.715500px;}
.h15{height:27.720000px;}
.h17{height:27.750000px;}
.h18{height:27.756000px;}
.h2b{height:28.251000px;}
.h21{height:28.282500px;}
.h13{height:28.800000px;}
.h11{height:30.982500px;}
.h12{height:31.140000px;}
.h34{height:35.332031px;}
.h7{height:37.546875px;}
.h10{height:38.158594px;}
.h1f{height:41.385000px;}
.h20{height:41.391000px;}
.h24{height:41.421000px;}
.h19{height:43.185000px;}
.h1a{height:43.191000px;}
.h3f{height:46.650000px;}
.hd{height:47.344922px;}
.h2c{height:48.616875px;}
.h33{height:52.971680px;}
.h3{height:52.998047px;}
.h8{height:56.320312px;}
.h1d{height:57.585000px;}
.h1e{height:57.591000px;}
.hf{height:58.651172px;}
.h40{height:59.092031px;}
.h2{height:62.327813px;}
.h36{height:65.010937px;}
.ha{height:70.628906px;}
.h9{height:70.664062px;}
.h5{height:72.562500px;}
.hb{height:75.093750px;}
.h23{height:80.464922px;}
.h30{height:80.644922px;}
.h6{height:81.736875px;}
.h4{height:84.898125px;}
.h32{height:172.470000px;}
.h22{height:452.730000px;}
.hc{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:42.649500px;}
.wc{width:53.089500px;}
.w2a{width:63.570000px;}
.w26{width:63.576000px;}
.w22{width:63.936000px;}
.w6{width:72.180000px;}
.w28{width:74.361000px;}
.w24{width:74.362500px;}
.w2c{width:79.369500px;}
.w35{width:79.371000px;}
.w19{width:87.681000px;}
.we{width:89.820000px;}
.w18{width:91.296000px;}
.w1a{width:92.325000px;}
.w37{width:92.736000px;}
.w17{width:93.060000px;}
.w21{width:93.600000px;}
.w27{width:95.745000px;}
.w23{width:95.751000px;}
.w30{width:96.480000px;}
.w33{width:99.525000px;}
.w34{width:99.570000px;}
.w31{width:102.456000px;}
.w29{width:103.845000px;}
.w25{width:103.855500px;}
.w36{width:106.200000px;}
.w32{width:106.221000px;}
.w7{width:111.096000px;}
.w14{width:112.701000px;}
.w1b{width:112.716000px;}
.w2f{width:112.881000px;}
.w11{width:118.110000px;}
.w12{width:118.116000px;}
.wd{width:118.821000px;}
.w5{width:120.802500px;}
.w9{width:139.530000px;}
.wa{width:139.536000px;}
.wf{width:143.136000px;}
.w1e{width:157.530000px;}
.w20{width:167.430000px;}
.w1f{width:170.115000px;}
.w10{width:173.535000px;}
.w16{width:180.030000px;}
.w15{width:184.350000px;}
.w1d{width:201.439500px;}
.w2b{width:201.450000px;}
.w8{width:210.255000px;}
.w2e{width:305.340000px;}
.w2d{width:311.820000px;}
.w13{width:477.090000px;}
.w1c{width:477.105000px;}
.w3{width:696.555000px;}
.wb{width:696.570000px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:8.089500px;}
.x15{left:10.080000px;}
.x5f{left:11.340000px;}
.x14{left:12.960000px;}
.x1c{left:14.760000px;}
.x4e{left:16.740000px;}
.x1a{left:17.820000px;}
.x25{left:19.080000px;}
.x1f{left:21.420000px;}
.x20{left:23.040000px;}
.x19{left:24.120000px;}
.x23{left:25.740000px;}
.x17{left:26.820000px;}
.x3d{left:28.245000px;}
.x1d{left:30.240000px;}
.x21{left:31.500000px;}
.x24{left:33.300000px;}
.x62{left:34.560000px;}
.x1b{left:35.820000px;}
.x1e{left:36.900000px;}
.x61{left:37.965000px;}
.x16{left:39.240000px;}
.x12{left:40.500000px;}
.x4c{left:42.510000px;}
.x40{left:43.725000px;}
.x32{left:44.820000px;}
.x3f{left:46.620000px;}
.x30{left:48.060000px;}
.x2e{left:51.480000px;}
.x49{left:54.540000px;}
.x2b{left:56.370000px;}
.x22{left:57.600000px;}
.x34{left:59.040000px;}
.x52{left:60.120000px;}
.x38{left:62.850000px;}
.x46{left:64.440000px;}
.x53{left:66.405000px;}
.x2f{left:69.300000px;}
.x33{left:71.490000px;}
.x18{left:75.600000px;}
.x4f{left:78.660000px;}
.x51{left:83.700000px;}
.x50{left:84.945000px;}
.x27{left:90.000000px;}
.x26{left:92.730000px;}
.x5a{left:95.610000px;}
.xd{left:98.326500px;}
.x3{left:106.416000px;}
.xa{left:111.276000px;}
.x44{left:119.916000px;}
.xf{left:140.986500px;}
.x28{left:151.425000px;}
.x59{left:152.670000px;}
.x57{left:155.910000px;}
.x3b{left:171.030000px;}
.x56{left:177.705000px;}
.x39{left:185.430000px;}
.x37{left:207.945000px;}
.x10{left:261.795000px;}
.x29{left:270.255000px;}
.x5b{left:290.595000px;}
.x45{left:299.775000px;}
.x3a{left:320.655000px;}
.x9{left:322.455000px;}
.x11{left:333.975000px;}
.x2a{left:360.075000px;}
.x5c{left:387.075000px;}
.x4a{left:393.375000px;}
.x60{left:396.795000px;}
.x35{left:408.493125px;}
.x36{left:414.615000px;}
.x13{left:445.080000px;}
.x1{left:446.505000px;}
.x47{left:457.320000px;}
.x58{left:489.540000px;}
.x2c{left:503.220000px;}
.x3c{left:505.020000px;}
.x43{left:518.145000px;}
.x54{left:541.183125px;}
.x55{left:547.305000px;}
.x4b{left:553.080000px;}
.x3e{left:592.710000px;}
.x5d{left:595.770000px;}
.xb{left:597.748125px;}
.x42{left:599.370000px;}
.xc{left:603.870000px;}
.x48{left:627.450000px;}
.x5{left:648.868125px;}
.x6{left:654.990000px;}
.x7{left:658.048125px;}
.x41{left:662.190000px;}
.x8{left:664.170000px;}
.x2d{left:676.770000px;}
.x5e{left:695.310000px;}
.x4d{left:731.310000px;}
.x31{left:770.040000px;}
.x2{left:778.500000px;}
.x4{left:781.200000px;}
@media print{
.v3{vertical-align:-51.200000pt;}
.v7{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v6{vertical-align:-21.120000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.320000pt;}
.v9{vertical-align:21.120000pt;}
.v1{vertical-align:29.440000pt;}
.v5{vertical-align:37.760000pt;}
.lsc{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls4{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.368533pt;}
.ls18{letter-spacing:0.400000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls19{letter-spacing:3.360000pt;}
.lsd{letter-spacing:4.634880pt;}
.lsa{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:10.394880pt;}
.ls16{letter-spacing:37.248000pt;}
.ls9{letter-spacing:48.128000pt;}
.ls13{letter-spacing:66.186667pt;}
.ls14{letter-spacing:133.386667pt;}
.ws3{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.296000pt;}
.ws11{word-spacing:-15.088533pt;}
.ws10{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.672427pt;}
.wsd{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.wsc{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-7.921493pt;}
._1c{margin-left:-2.325333pt;}
._1{margin-left:-1.347840pt;}
._4{width:0.938667pt;}
._a{width:1.996587pt;}
._3{width:3.070080pt;}
._b{width:4.714667pt;}
._c{width:6.293333pt;}
._e{width:7.210667pt;}
._12{width:8.131840pt;}
._19{width:9.066240pt;}
._17{width:9.976320pt;}
._8{width:11.335680pt;}
._5{width:12.256000pt;}
._15{width:13.181440pt;}
._d{width:14.592000pt;}
._1b{width:15.655680pt;}
._9{width:16.906667pt;}
._7{width:18.176000pt;}
._6{width:19.072000pt;}
._16{width:20.224000pt;}
._0{width:21.116160pt;}
._2{width:22.148053pt;}
._11{width:23.104000pt;}
._1a{width:24.832000pt;}
._f{width:26.666667pt;}
._10{width:27.840000pt;}
._20{width:28.822187pt;}
._13{width:30.208000pt;}
._14{width:31.104000pt;}
._21{width:32.512000pt;}
._22{width:33.408000pt;}
._1d{width:34.800640pt;}
._1f{width:35.846187pt;}
._1e{width:38.193067pt;}
._26{width:40.913067pt;}
._2d{width:49.282560pt;}
._2e{width:50.189227pt;}
._29{width:54.762667pt;}
._25{width:56.451840pt;}
._2c{width:63.722667pt;}
._2a{width:88.224000pt;}
._28{width:99.630933pt;}
._24{width:182.762667pt;}
._2b{width:184.353920pt;}
._23{width:310.474667pt;}
._27{width:418.933333pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:0.160000pt;}
.yd2{bottom:2.546667pt;}
.y9a{bottom:2.560000pt;}
.yb2{bottom:2.706667pt;}
.y9e{bottom:2.720000pt;}
.y15b{bottom:2.880000pt;}
.y15f{bottom:3.040000pt;}
.ydf{bottom:3.200000pt;}
.y158{bottom:3.520000pt;}
.y96{bottom:3.680000pt;}
.ycd{bottom:3.986667pt;}
.ye2{bottom:4.000000pt;}
.y136{bottom:8.320000pt;}
.ye1{bottom:8.800000pt;}
.yd0{bottom:11.666667pt;}
.y9b{bottom:11.680000pt;}
.yd5{bottom:11.826667pt;}
.y9f{bottom:11.840000pt;}
.y97{bottom:12.800000pt;}
.y91{bottom:12.960000pt;}
.y93{bottom:13.120000pt;}
.ycf{bottom:14.866667pt;}
.y99{bottom:14.880000pt;}
.yd4{bottom:15.026667pt;}
.y9d{bottom:15.040000pt;}
.yb1{bottom:15.066667pt;}
.y3{bottom:15.680000pt;}
.y95{bottom:16.000000pt;}
.ya6{bottom:16.640000pt;}
.y135{bottom:16.800000pt;}
.yca{bottom:21.120000pt;}
.y11d{bottom:22.400000pt;}
.ycc{bottom:22.426667pt;}
.yaf{bottom:24.000000pt;}
.ya7{bottom:25.600000pt;}
.yae{bottom:27.200000pt;}
.ya5{bottom:28.800000pt;}
.yac{bottom:29.280000pt;}
.y2{bottom:29.600000pt;}
.y174{bottom:30.560000pt;}
.y134{bottom:35.840000pt;}
.yad{bottom:38.400000pt;}
.yab{bottom:41.600000pt;}
.y133{bottom:44.800000pt;}
.yc9{bottom:56.640000pt;}
.y132{bottom:59.546667pt;}
.y131{bottom:73.466667pt;}
.yc8{bottom:84.320000pt;}
.y130{bottom:87.226667pt;}
.y84{bottom:97.760000pt;}
.y8f{bottom:98.080000pt;}
.y1dc{bottom:98.560000pt;}
.y8e{bottom:104.800000pt;}
.y144{bottom:105.440000pt;}
.y196{bottom:105.920000pt;}
.y53{bottom:106.240000pt;}
.y12f{bottom:106.266667pt;}
.yc7{bottom:111.840000pt;}
.y102{bottom:112.480000pt;}
.ybb{bottom:112.960000pt;}
.y83{bottom:113.120000pt;}
.ydd{bottom:113.440000pt;}
.y8d{bottom:114.720000pt;}
.y1db{bottom:115.360000pt;}
.y82{bottom:119.200000pt;}
.y12e{bottom:120.026667pt;}
.ydc{bottom:120.160000pt;}
.y110{bottom:125.760000pt;}
.y81{bottom:128.320000pt;}
.y1b8{bottom:128.640000pt;}
.y207{bottom:129.440000pt;}
.ydb{bottom:130.080000pt;}
.y143{bottom:132.960000pt;}
.y183{bottom:133.440000pt;}
.y52{bottom:133.760000pt;}
.y12d{bottom:133.946667pt;}
.y1b7{bottom:135.360000pt;}
.yc6{bottom:139.520000pt;}
.y101{bottom:140.000000pt;}
.y1da{bottom:140.320000pt;}
.yba{bottom:140.640000pt;}
.y12c{bottom:142.106667pt;}
.y80{bottom:144.000000pt;}
.y1b6{bottom:145.280000pt;}
.y206{bottom:146.240000pt;}
.y156{bottom:148.826667pt;}
.y7f{bottom:150.746667pt;}
.y31{bottom:151.226667pt;}
.y10f{bottom:153.466667pt;}
.yda{bottom:154.440000pt;}
.y1d9{bottom:157.146667pt;}
.y7e{bottom:160.666667pt;}
.y182{bottom:161.146667pt;}
.y51{bottom:161.466667pt;}
.y205{bottom:163.066667pt;}
.y11b{bottom:164.986667pt;}
.yc5{bottom:167.040000pt;}
.y100{bottom:167.706667pt;}
.yb9{bottom:176.186667pt;}
.y30{bottom:178.746667pt;}
.yd9{bottom:178.920000pt;}
.y155{bottom:179.866667pt;}
.y1b5{bottom:180.666667pt;}
.y10e{bottom:180.986667pt;}
.y1d8{bottom:181.946667pt;}
.y204{bottom:188.026667pt;}
.y142{bottom:188.186667pt;}
.y181{bottom:188.666667pt;}
.y50{bottom:188.986667pt;}
.y11a{bottom:192.666667pt;}
.yc4{bottom:194.746667pt;}
.yff{bottom:195.226667pt;}
.y1d7{bottom:198.906667pt;}
.yd8{bottom:203.400000pt;}
.yb8{bottom:203.866667pt;}
.y203{bottom:204.826667pt;}
.y2f{bottom:206.426667pt;}
.y1b4{bottom:208.346667pt;}
.y10d{bottom:208.666667pt;}
.y154{bottom:210.906667pt;}
.y141{bottom:215.866667pt;}
.y180{bottom:216.346667pt;}
.y4f{bottom:216.666667pt;}
.y119{bottom:220.186667pt;}
.yc3{bottom:222.266667pt;}
.yfe{bottom:222.906667pt;}
.y1d6{bottom:223.706667pt;}
.yd7{bottom:228.040000pt;}
.y202{bottom:229.786667pt;}
.yb7{bottom:231.386667pt;}
.y7d{bottom:232.666667pt;}
.y2e{bottom:233.946667pt;}
.y1b3{bottom:235.866667pt;}
.y10c{bottom:236.186667pt;}
.y1d5{bottom:240.666667pt;}
.y17f{bottom:243.866667pt;}
.y4e{bottom:244.186667pt;}
.y201{bottom:246.586667pt;}
.y118{bottom:247.866667pt;}
.yc2{bottom:249.946667pt;}
.y153{bottom:250.106667pt;}
.yfd{bottom:250.426667pt;}
.y140{bottom:251.386667pt;}
.y6d{bottom:252.186667pt;}
.yd6{bottom:252.520000pt;}
.y1d4{bottom:257.466667pt;}
.yb6{bottom:258.906667pt;}
.y7c{bottom:260.186667pt;}
.y2d{bottom:261.626667pt;}
.y1b2{bottom:263.546667pt;}
.y10b{bottom:263.866667pt;}
.y200{bottom:271.386667pt;}
.y17e{bottom:271.546667pt;}
.y4d{bottom:271.866667pt;}
.y117{bottom:275.386667pt;}
.yd3{bottom:277.000000pt;}
.yc1{bottom:277.466667pt;}
.yfc{bottom:278.106667pt;}
.y13f{bottom:279.066667pt;}
.y6c{bottom:279.866667pt;}
.y1d3{bottom:282.266667pt;}
.yb5{bottom:286.586667pt;}
.y7b{bottom:287.866667pt;}
.y1ff{bottom:288.346667pt;}
.y2c{bottom:289.146667pt;}
.y152{bottom:290.746667pt;}
.y1b1{bottom:291.066667pt;}
.y10a{bottom:291.386667pt;}
.y17d{bottom:299.066667pt;}
.y1d2{bottom:299.226667pt;}
.y4c{bottom:299.386667pt;}
.yd1{bottom:301.640000pt;}
.y116{bottom:303.066667pt;}
.yc0{bottom:305.146667pt;}
.yfb{bottom:305.626667pt;}
.y13e{bottom:306.586667pt;}
.y6b{bottom:307.386667pt;}
.y1fe{bottom:313.146667pt;}
.yb4{bottom:314.106667pt;}
.y7a{bottom:315.386667pt;}
.y1d1{bottom:316.026667pt;}
.y2b{bottom:316.826667pt;}
.y151{bottom:318.266667pt;}
.y1b0{bottom:318.746667pt;}
.y109{bottom:319.066667pt;}
.yce{bottom:326.120000pt;}
.y17c{bottom:326.746667pt;}
.y4b{bottom:327.066667pt;}
.y1fd{bottom:330.106667pt;}
.ybf{bottom:332.666667pt;}
.yfa{bottom:333.306667pt;}
.y13d{bottom:334.106667pt;}
.y195{bottom:334.746667pt;}
.y6a{bottom:335.066667pt;}
.y115{bottom:338.266667pt;}
.y1d0{bottom:340.986667pt;}
.yb3{bottom:341.786667pt;}
.y79{bottom:343.066667pt;}
.y2a{bottom:344.346667pt;}
.y1af{bottom:346.266667pt;}
.y108{bottom:346.586667pt;}
.y150{bottom:349.306667pt;}
.ycb{bottom:351.240000pt;}
.y17b{bottom:354.266667pt;}
.y4a{bottom:354.586667pt;}
.y1fc{bottom:354.906667pt;}
.yb0{bottom:356.360000pt;}
.y1cf{bottom:357.786667pt;}
.ybe{bottom:360.346667pt;}
.yf9{bottom:360.826667pt;}
.y13c{bottom:361.786667pt;}
.y194{bottom:362.266667pt;}
.y69{bottom:362.586667pt;}
.y78{bottom:370.626667pt;}
.y1fb{bottom:371.906667pt;}
.y1ae{bottom:373.986667pt;}
.y107{bottom:374.146667pt;}
.y29{bottom:379.746667pt;}
.y14f{bottom:380.546667pt;}
.y17a{bottom:381.986667pt;}
.y49{bottom:382.146667pt;}
.y1ce{bottom:382.626667pt;}
.ybd{bottom:387.866667pt;}
.yf8{bottom:388.546667pt;}
.ybc{bottom:388.706667pt;}
.y13b{bottom:389.346667pt;}
.y8c{bottom:389.506667pt;}
.y193{bottom:389.986667pt;}
.y68{bottom:390.146667pt;}
.y1fa{bottom:396.706667pt;}
.y77{bottom:398.146667pt;}
.y1cd{bottom:399.586667pt;}
.y106{bottom:401.826667pt;}
.y1ad{bottom:402.946667pt;}
.y14e{bottom:408.066667pt;}
.y179{bottom:409.506667pt;}
.y48{bottom:409.826667pt;}
.y1f9{bottom:413.506667pt;}
.y28{bottom:415.586667pt;}
.yf7{bottom:416.066667pt;}
.y1cc{bottom:416.386667pt;}
.y1ac{bottom:416.706667pt;}
.y13a{bottom:417.026667pt;}
.y192{bottom:417.506667pt;}
.y67{bottom:417.826667pt;}
.yaa{bottom:418.946667pt;}
.y76{bottom:425.826667pt;}
.y114{bottom:429.346667pt;}
.y1ab{bottom:430.626667pt;}
.y14d{bottom:435.746667pt;}
.y178{bottom:437.186667pt;}
.y47{bottom:437.346667pt;}
.y1f8{bottom:438.466667pt;}
.y1cb{bottom:441.346667pt;}
.y27{bottom:443.266667pt;}
.yf6{bottom:443.746667pt;}
.y1aa{bottom:444.386667pt;}
.y139{bottom:444.546667pt;}
.y191{bottom:445.186667pt;}
.y66{bottom:445.346667pt;}
.y75{bottom:453.346667pt;}
.y1f7{bottom:455.266667pt;}
.y113{bottom:457.026667pt;}
.y1a9{bottom:458.146667pt;}
.y177{bottom:464.706667pt;}
.y46{bottom:465.026667pt;}
.ya9{bottom:470.146667pt;}
.y26{bottom:470.786667pt;}
.yf5{bottom:471.266667pt;}
.y138{bottom:472.226667pt;}
.y190{bottom:472.706667pt;}
.y1bd{bottom:473.026667pt;}
.y1a8{bottom:473.186667pt;}
.y1f6{bottom:480.226667pt;}
.y65{bottom:481.026667pt;}
.y1ca{bottom:482.946667pt;}
.y1a7{bottom:487.746667pt;}
.y176{bottom:492.386667pt;}
.y45{bottom:492.546667pt;}
.ya8{bottom:494.626667pt;}
.y1f5{bottom:497.026667pt;}
.y1c9{bottom:499.906667pt;}
.y18f{bottom:500.386667pt;}
.y1bc{bottom:500.546667pt;}
.y1a6{bottom:501.506667pt;}
.y25{bottom:506.466667pt;}
.yf4{bottom:506.946667pt;}
.y137{bottom:507.746667pt;}
.y64{bottom:508.546667pt;}
.y14c{bottom:510.306667pt;}
.y1a5{bottom:515.266667pt;}
.ya4{bottom:519.106667pt;}
.y44{bottom:520.226667pt;}
.y1f4{bottom:521.826667pt;}
.y12b{bottom:522.306667pt;}
.y1c8{bottom:524.706667pt;}
.y13{bottom:525.666667pt;}
.y175{bottom:527.906667pt;}
.y1bb{bottom:528.226667pt;}
.y1a4{bottom:529.186667pt;}
.y24{bottom:533.986667pt;}
.yf3{bottom:534.466667pt;}
.y63{bottom:536.226667pt;}
.y1f3{bottom:538.786667pt;}
.y1c7{bottom:541.666667pt;}
.y173{bottom:542.466667pt;}
.y1a3{bottom:542.946667pt;}
.y43{bottom:547.746667pt;}
.y14b{bottom:551.906667pt;}
.y18e{bottom:555.586667pt;}
.y8b{bottom:555.746667pt;}
.ya3{bottom:557.506667pt;}
.y1a2{bottom:557.986667pt;}
.y12{bottom:561.346667pt;}
.y23{bottom:561.666667pt;}
.yf2{bottom:562.146667pt;}
.y1f2{bottom:563.586667pt;}
.y62{bottom:563.746667pt;}
.y1c6{bottom:566.466667pt;}
.y1a1{bottom:572.386667pt;}
.y42{bottom:575.426667pt;}
.y11{bottom:578.466667pt;}
.y14a{bottom:579.426667pt;}
.y1f1{bottom:580.573333pt;}
.ya2{bottom:582.173333pt;}
.y18d{bottom:583.133333pt;}
.y8a{bottom:583.453333pt;}
.y172{bottom:584.573333pt;}
.y1a0{bottom:586.973333pt;}
.y22{bottom:589.213333pt;}
.yf1{bottom:589.693333pt;}
.y1ba{bottom:591.133333pt;}
.y61{bottom:591.453333pt;}
.ya1{bottom:594.333333pt;}
.y18c{bottom:597.693333pt;}
.y10{bottom:598.333333pt;}
.y19f{bottom:600.733333pt;}
.y41{bottom:602.973333pt;}
.y1f0{bottom:605.373333pt;}
.yf{bottom:606.173333pt;}
.y1c5{bottom:608.253333pt;}
.y89{bottom:610.973333pt;}
.y171{bottom:612.253333pt;}
.y19e{bottom:615.133333pt;}
.y21{bottom:616.893333pt;}
.yf0{bottom:617.373333pt;}
.y149{bottom:618.493333pt;}
.y60{bottom:618.973333pt;}
.y1ef{bottom:622.173333pt;}
.y1c4{bottom:625.053333pt;}
.ye{bottom:626.013333pt;}
.y1b9{bottom:626.973333pt;}
.y40{bottom:630.653333pt;}
.yd{bottom:633.693333pt;}
.y88{bottom:638.653333pt;}
.y1ee{bottom:639.133333pt;}
.y170{bottom:639.773333pt;}
.ya0{bottom:643.453333pt;}
.y20{bottom:644.413333pt;}
.yef{bottom:644.893333pt;}
.y5f{bottom:646.653333pt;}
.y20b{bottom:647.133333pt;}
.y148{bottom:649.533333pt;}
.y1c3{bottom:650.013333pt;}
.yc{bottom:653.533333pt;}
.y19d{bottom:654.653333pt;}
.y16f{bottom:654.813333pt;}
.y3f{bottom:658.173333pt;}
.y1ed{bottom:663.933333pt;}
.y87{bottom:666.173333pt;}
.y1c2{bottom:666.813333pt;}
.y18b{bottom:667.453333pt;}
.y9c{bottom:667.933333pt;}
.y16e{bottom:669.373333pt;}
.y1f{bottom:672.093333pt;}
.yee{bottom:672.413333pt;}
.y5e{bottom:674.173333pt;}
.y12a{bottom:676.253333pt;}
.yb{bottom:679.453333pt;}
.y1ec{bottom:680.893333pt;}
.y19c{bottom:682.173333pt;}
.y18a{bottom:682.493333pt;}
.y16d{bottom:683.133333pt;}
.y3e{bottom:685.853333pt;}
.y147{bottom:688.573333pt;}
.y20a{bottom:688.893333pt;}
.y1c1{bottom:691.773333pt;}
.y98{bottom:692.573333pt;}
.y86{bottom:693.853333pt;}
.y129{bottom:694.653333pt;}
.y16c{bottom:696.893333pt;}
.y1e{bottom:699.613333pt;}
.y5d{bottom:701.853333pt;}
.y1eb{bottom:705.693333pt;}
.yed{bottom:708.093333pt;}
.y1c0{bottom:708.573333pt;}
.y19b{bottom:709.853333pt;}
.y16b{bottom:710.653333pt;}
.y105{bottom:713.373333pt;}
.y128{bottom:713.693333pt;}
.ya{bottom:714.973333pt;}
.y94{bottom:717.053333pt;}
.y3d{bottom:721.373333pt;}
.y1ea{bottom:722.493333pt;}
.y16a{bottom:724.573333pt;}
.y1d{bottom:727.293333pt;}
.y5c{bottom:729.373333pt;}
.y209{bottom:730.493333pt;}
.y127{bottom:732.733333pt;}
.y1bf{bottom:733.373333pt;}
.y146{bottom:734.813333pt;}
.yec{bottom:735.613333pt;}
.y19a{bottom:737.373333pt;}
.y169{bottom:738.333333pt;}
.y92{bottom:743.293333pt;}
.y1e9{bottom:747.453333pt;}
.y104{bottom:748.733333pt;}
.y3c{bottom:749.053333pt;}
.y1be{bottom:750.333333pt;}
.y126{bottom:751.133333pt;}
.y168{bottom:752.093333pt;}
.y9{bottom:752.893333pt;}
.y1c{bottom:754.813333pt;}
.y5b{bottom:757.053333pt;}
.yeb{bottom:763.293333pt;}
.y1e8{bottom:764.253333pt;}
.y198{bottom:765.053333pt;}
.y167{bottom:765.853333pt;}
.y125{bottom:769.533333pt;}
.y90{bottom:771.613333pt;}
.y208{bottom:772.253333pt;}
.y199{bottom:772.413333pt;}
.y3b{bottom:776.573333pt;}
.y166{bottom:779.773333pt;}
.y145{bottom:781.053333pt;}
.y1b{bottom:782.493333pt;}
.y103{bottom:784.253333pt;}
.y5a{bottom:784.573333pt;}
.y8{bottom:785.053333pt;}
.y124{bottom:787.933333pt;}
.y1e7{bottom:789.213333pt;}
.yea{bottom:790.813333pt;}
.y197{bottom:792.573333pt;}
.y165{bottom:793.533333pt;}
.y3a{bottom:804.293333pt;}
.y1e6{bottom:806.053333pt;}
.y123{bottom:806.373333pt;}
.y164{bottom:807.333333pt;}
.y1a{bottom:810.053333pt;}
.y73{bottom:812.293333pt;}
.y7{bottom:817.253333pt;}
.ye9{bottom:818.533333pt;}
.y74{bottom:819.653333pt;}
.y59{bottom:820.293333pt;}
.y163{bottom:821.093333pt;}
.y122{bottom:825.413333pt;}
.y1e5{bottom:830.853333pt;}
.y39{bottom:831.813333pt;}
.y162{bottom:835.013333pt;}
.y19{bottom:837.573333pt;}
.y85{bottom:839.493333pt;}
.y72{bottom:839.813333pt;}
.y120{bottom:843.813333pt;}
.ye8{bottom:846.053333pt;}
.y58{bottom:847.813333pt;}
.y161{bottom:848.773333pt;}
.y6{bottom:857.413333pt;}
.y38{bottom:859.493333pt;}
.y160{bottom:862.533333pt;}
.y11f{bottom:863.013333pt;}
.y71{bottom:867.493333pt;}
.y1e4{bottom:872.613333pt;}
.y18{bottom:872.933333pt;}
.ye7{bottom:873.733333pt;}
.y57{bottom:875.493333pt;}
.y15e{bottom:876.293333pt;}
.y11e{bottom:881.413333pt;}
.y37{bottom:887.013333pt;}
.y1e3{bottom:889.573333pt;}
.y15d{bottom:890.213333pt;}
.y70{bottom:895.013333pt;}
.y5{bottom:897.573333pt;}
.y11c{bottom:900.453333pt;}
.ye6{bottom:901.253333pt;}
.y56{bottom:903.013333pt;}
.y189{bottom:903.973333pt;}
.y15c{bottom:904.613333pt;}
.y17{bottom:910.693333pt;}
.y1e2{bottom:914.373333pt;}
.y36{bottom:914.693333pt;}
.y4{bottom:914.853333pt;}
.y188{bottom:917.733333pt;}
.y15a{bottom:919.653333pt;}
.y6f{bottom:922.693333pt;}
.ye5{bottom:928.933333pt;}
.y55{bottom:930.693333pt;}
.y1e1{bottom:931.333333pt;}
.y187{bottom:932.133333pt;}
.y159{bottom:933.413333pt;}
.y35{bottom:942.213333pt;}
.y16{bottom:942.853333pt;}
.y186{bottom:947.333333pt;}
.y157{bottom:947.973333pt;}
.y111{bottom:949.893333pt;}
.y6e{bottom:950.213333pt;}
.y1e0{bottom:956.133333pt;}
.ye4{bottom:956.453333pt;}
.y112{bottom:957.253333pt;}
.y54{bottom:958.213333pt;}
.y185{bottom:961.093333pt;}
.ye3{bottom:971.013333pt;}
.y1df{bottom:972.933333pt;}
.y15{bottom:975.173333pt;}
.y184{bottom:975.493333pt;}
.y34{bottom:977.573333pt;}
.y33{bottom:985.893333pt;}
.ye0{bottom:996.773333pt;}
.y1de{bottom:997.893333pt;}
.y14{bottom:1013.093333pt;}
.y32{bottom:1013.413333pt;}
.y1dd{bottom:1014.720000pt;}
.yde{bottom:1015.200000pt;}
.y1{bottom:1091.520000pt;}
.h16{height:12.160000pt;}
.h29{height:12.796000pt;}
.h28{height:12.800000pt;}
.h38{height:13.746667pt;}
.h3c{height:13.760000pt;}
.h3b{height:13.780000pt;}
.h37{height:13.906667pt;}
.h3d{height:13.920000pt;}
.h42{height:13.946667pt;}
.h39{height:14.386667pt;}
.h3a{height:14.392000pt;}
.h3e{height:14.400000pt;}
.h35{height:16.786667pt;}
.h41{height:16.946667pt;}
.h2d{height:18.386667pt;}
.h2e{height:18.392000pt;}
.h31{height:18.400000pt;}
.h2f{height:18.420000pt;}
.h2a{height:18.426667pt;}
.he{height:23.574375pt;}
.h1b{height:24.466667pt;}
.h1c{height:24.472000pt;}
.h25{height:24.476000pt;}
.h14{height:24.480000pt;}
.h26{height:24.626667pt;}
.h27{height:24.636000pt;}
.h15{height:24.640000pt;}
.h17{height:24.666667pt;}
.h18{height:24.672000pt;}
.h2b{height:25.112000pt;}
.h21{height:25.140000pt;}
.h13{height:25.600000pt;}
.h11{height:27.540000pt;}
.h12{height:27.680000pt;}
.h34{height:31.406250pt;}
.h7{height:33.375000pt;}
.h10{height:33.918750pt;}
.h1f{height:36.786667pt;}
.h20{height:36.792000pt;}
.h24{height:36.818667pt;}
.h19{height:38.386667pt;}
.h1a{height:38.392000pt;}
.h3f{height:41.466667pt;}
.hd{height:42.084375pt;}
.h2c{height:43.215000pt;}
.h33{height:47.085938pt;}
.h3{height:47.109375pt;}
.h8{height:50.062500pt;}
.h1d{height:51.186667pt;}
.h1e{height:51.192000pt;}
.hf{height:52.134375pt;}
.h40{height:52.526250pt;}
.h2{height:55.402500pt;}
.h36{height:57.787500pt;}
.ha{height:62.781250pt;}
.h9{height:62.812500pt;}
.h5{height:64.500000pt;}
.hb{height:66.750000pt;}
.h23{height:71.524375pt;}
.h30{height:71.684375pt;}
.h6{height:72.655000pt;}
.h4{height:75.465000pt;}
.h32{height:153.306667pt;}
.h22{height:402.426667pt;}
.hc{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:37.910667pt;}
.wc{width:47.190667pt;}
.w2a{width:56.506667pt;}
.w26{width:56.512000pt;}
.w22{width:56.832000pt;}
.w6{width:64.160000pt;}
.w28{width:66.098667pt;}
.w24{width:66.100000pt;}
.w2c{width:70.550667pt;}
.w35{width:70.552000pt;}
.w19{width:77.938667pt;}
.we{width:79.840000pt;}
.w18{width:81.152000pt;}
.w1a{width:82.066667pt;}
.w37{width:82.432000pt;}
.w17{width:82.720000pt;}
.w21{width:83.200000pt;}
.w27{width:85.106667pt;}
.w23{width:85.112000pt;}
.w30{width:85.760000pt;}
.w33{width:88.466667pt;}
.w34{width:88.506667pt;}
.w31{width:91.072000pt;}
.w29{width:92.306667pt;}
.w25{width:92.316000pt;}
.w36{width:94.400000pt;}
.w32{width:94.418667pt;}
.w7{width:98.752000pt;}
.w14{width:100.178667pt;}
.w1b{width:100.192000pt;}
.w2f{width:100.338667pt;}
.w11{width:104.986667pt;}
.w12{width:104.992000pt;}
.wd{width:105.618667pt;}
.w5{width:107.380000pt;}
.w9{width:124.026667pt;}
.wa{width:124.032000pt;}
.wf{width:127.232000pt;}
.w1e{width:140.026667pt;}
.w20{width:148.826667pt;}
.w1f{width:151.213333pt;}
.w10{width:154.253333pt;}
.w16{width:160.026667pt;}
.w15{width:163.866667pt;}
.w1d{width:179.057333pt;}
.w2b{width:179.066667pt;}
.w8{width:186.893333pt;}
.w2e{width:271.413333pt;}
.w2d{width:277.173333pt;}
.w13{width:424.080000pt;}
.w1c{width:424.093333pt;}
.w3{width:619.160000pt;}
.wb{width:619.173333pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.190667pt;}
.x15{left:8.960000pt;}
.x5f{left:10.080000pt;}
.x14{left:11.520000pt;}
.x1c{left:13.120000pt;}
.x4e{left:14.880000pt;}
.x1a{left:15.840000pt;}
.x25{left:16.960000pt;}
.x1f{left:19.040000pt;}
.x20{left:20.480000pt;}
.x19{left:21.440000pt;}
.x23{left:22.880000pt;}
.x17{left:23.840000pt;}
.x3d{left:25.106667pt;}
.x1d{left:26.880000pt;}
.x21{left:28.000000pt;}
.x24{left:29.600000pt;}
.x62{left:30.720000pt;}
.x1b{left:31.840000pt;}
.x1e{left:32.800000pt;}
.x61{left:33.746667pt;}
.x16{left:34.880000pt;}
.x12{left:36.000000pt;}
.x4c{left:37.786667pt;}
.x40{left:38.866667pt;}
.x32{left:39.840000pt;}
.x3f{left:41.440000pt;}
.x30{left:42.720000pt;}
.x2e{left:45.760000pt;}
.x49{left:48.480000pt;}
.x2b{left:50.106667pt;}
.x22{left:51.200000pt;}
.x34{left:52.480000pt;}
.x52{left:53.440000pt;}
.x38{left:55.866667pt;}
.x46{left:57.280000pt;}
.x53{left:59.026667pt;}
.x2f{left:61.600000pt;}
.x33{left:63.546667pt;}
.x18{left:67.200000pt;}
.x4f{left:69.920000pt;}
.x51{left:74.400000pt;}
.x50{left:75.506667pt;}
.x27{left:80.000000pt;}
.x26{left:82.426667pt;}
.x5a{left:84.986667pt;}
.xd{left:87.401333pt;}
.x3{left:94.592000pt;}
.xa{left:98.912000pt;}
.x44{left:106.592000pt;}
.xf{left:125.321333pt;}
.x28{left:134.600000pt;}
.x59{left:135.706667pt;}
.x57{left:138.586667pt;}
.x3b{left:152.026667pt;}
.x56{left:157.960000pt;}
.x39{left:164.826667pt;}
.x37{left:184.840000pt;}
.x10{left:232.706667pt;}
.x29{left:240.226667pt;}
.x5b{left:258.306667pt;}
.x45{left:266.466667pt;}
.x3a{left:285.026667pt;}
.x9{left:286.626667pt;}
.x11{left:296.866667pt;}
.x2a{left:320.066667pt;}
.x5c{left:344.066667pt;}
.x4a{left:349.666667pt;}
.x60{left:352.706667pt;}
.x35{left:363.105000pt;}
.x36{left:368.546667pt;}
.x13{left:395.626667pt;}
.x1{left:396.893333pt;}
.x47{left:406.506667pt;}
.x58{left:435.146667pt;}
.x2c{left:447.306667pt;}
.x3c{left:448.906667pt;}
.x43{left:460.573333pt;}
.x54{left:481.051667pt;}
.x55{left:486.493333pt;}
.x4b{left:491.626667pt;}
.x3e{left:526.853333pt;}
.x5d{left:529.573333pt;}
.xb{left:531.331667pt;}
.x42{left:532.773333pt;}
.xc{left:536.773333pt;}
.x48{left:557.733333pt;}
.x5{left:576.771667pt;}
.x6{left:582.213333pt;}
.x7{left:584.931667pt;}
.x41{left:588.613333pt;}
.x8{left:590.373333pt;}
.x2d{left:601.573333pt;}
.x5e{left:618.053333pt;}
.x4d{left:650.053333pt;}
.x31{left:684.480000pt;}
.x2{left:692.000000pt;}
.x4{left:694.400000pt;}
}




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