
    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_3a8f2005a1ea85e65afb0461.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b92d3bdc030adf7e7ca9bb7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_0cb52641927b1a9dad4bd9e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d805d35eb0133bb6402cdec5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a20515d1d9a0a3f0e37ef74b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_bd25519f47513cbef2559526.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ef338e691a2675a7cd20eabd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_002ac4fe279dc9d081eff3b9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919922;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3ab4789c541b6d7fa12a4ff0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.913086;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-0.960000px;}
.ls20{letter-spacing:-0.696000px;}
.ls12{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.618000px;}
.ls21{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.270600px;}
.ls10{letter-spacing:-0.247800px;}
.ls1e{letter-spacing:-0.227400px;}
.lse{letter-spacing:-0.112200px;}
.lsc{letter-spacing:-0.094800px;}
.ls9{letter-spacing:-0.085200px;}
.ls1f{letter-spacing:-0.069000px;}
.lsa{letter-spacing:-0.036000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.023040px;}
.ls2{letter-spacing:0.060600px;}
.ls22{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.100800px;}
.ls11{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.187200px;}
.ls4{letter-spacing:0.262800px;}
.ls1c{letter-spacing:0.305280px;}
.ls1a{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.328200px;}
.ls23{letter-spacing:0.328320px;}
.ls8{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.485280px;}
.ls18{letter-spacing:16.145280px;}
.lsd{letter-spacing:20.340000px;}
.ls15{letter-spacing:25.308000px;}
.ls13{letter-spacing:26.028000px;}
.ls14{letter-spacing:133.920000px;}
.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;}
}
.ws16{word-spacing:-69.822393px;}
.ws11{word-spacing:-15.840000px;}
.wse{word-spacing:-14.901000px;}
.wsf{word-spacing:-14.878200px;}
.ws17{word-spacing:-14.644800px;}
.ws10{word-spacing:-14.595840px;}
.wsb{word-spacing:-14.572800px;}
.ws13{word-spacing:-14.503800px;}
.wsc{word-spacing:-14.460600px;}
.ws12{word-spacing:-14.345400px;}
.ws15{word-spacing:-14.158200px;}
.ws14{word-spacing:-13.876800px;}
.ws4{word-spacing:-13.504200px;}
.ws3{word-spacing:-13.410000px;}
.ws0{word-spacing:-13.140000px;}
.ws1{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.592000px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.527600px;}
.wsa{word-spacing:-9.092400px;}
.ws2{word-spacing:-8.614200px;}
.ws8{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.884000px;}
.ws9{word-spacing:0.000000px;}
._21{margin-left:-4.692240px;}
._8{margin-left:-2.808720px;}
._2{margin-left:-1.368000px;}
._1{width:1.218000px;}
._d{width:2.322000px;}
._b{width:4.123440px;}
._c{width:5.272080px;}
._a{width:6.633360px;}
._9{width:8.306640px;}
._13{width:9.979920px;}
._e{width:11.809680px;}
._1c{width:12.833760px;}
._14{width:14.170800px;}
._12{width:15.216480px;}
._11{width:16.374240px;}
._19{width:18.083520px;}
._1a{width:19.607040px;}
._1b{width:21.091680px;}
._f{width:22.529520px;}
._1d{width:23.559360px;}
._20{width:24.597120px;}
._1e{width:25.745040px;}
._10{width:26.951760px;}
._2c{width:27.953280px;}
._1f{width:29.079360px;}
._26{width:31.052400px;}
._29{width:32.169840px;}
._2b{width:33.695520px;}
._28{width:34.721760px;}
._23{width:35.902080px;}
._22{width:37.226880px;}
._42{width:38.818560px;}
._41{width:40.008960px;}
._2a{width:41.330880px;}
._27{width:42.592320px;}
._2d{width:45.573120px;}
._7{width:47.785200px;}
._6{width:48.943440px;}
._49{width:51.608880px;}
._36{width:54.697440px;}
._18{width:55.817280px;}
._17{width:57.075840px;}
._45{width:62.000640px;}
._46{width:63.121200px;}
._32{width:65.246400px;}
._15{width:67.577040px;}
._0{width:75.000000px;}
._25{width:79.156800px;}
._24{width:80.282880px;}
._3d{width:100.419840px;}
._3b{width:119.033280px;}
._3a{width:123.845760px;}
._39{width:125.259840px;}
._30{width:138.882240px;}
._31{width:141.048000px;}
._37{width:144.595200px;}
._2e{width:145.926720px;}
._2f{width:147.119040px;}
._3c{width:156.657600px;}
._35{width:158.711040px;}
._3e{width:160.632000px;}
._47{width:163.944000px;}
._48{width:164.980800px;}
._3{width:181.620000px;}
._4{width:198.699840px;}
._5{width:202.852800px;}
._38{width:204.408000px;}
._44{width:209.692800px;}
._43{width:211.040640px;}
._33{width:226.673280px;}
._34{width:228.141360px;}
._3f{width:258.004800px;}
._40{width:259.376160px;}
._16{width:1124.287200px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:69.822393px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y4e{bottom:-7.200000px;}
.y0{bottom:0.000000px;}
.y87{bottom:6.300000px;}
.y8a{bottom:6.480000px;}
.y82{bottom:6.525000px;}
.y4d{bottom:13.500000px;}
.y86{bottom:28.620000px;}
.y89{bottom:28.665000px;}
.yfb{bottom:28.800000px;}
.y81{bottom:28.845000px;}
.y4c{bottom:32.220000px;}
.y4b{bottom:42.840000px;}
.y85{bottom:50.940000px;}
.y11c{bottom:50.985000px;}
.y4a{bottom:53.280000px;}
.y8{bottom:56.520000px;}
.y49{bottom:63.900000px;}
.y7{bottom:70.596000px;}
.y48{bottom:72.540000px;}
.y84{bottom:73.080000px;}
.y6{bottom:84.636000px;}
.y22b{bottom:113.256000px;}
.yd1{bottom:115.200000px;}
.y23c{bottom:115.596000px;}
.y17e{bottom:118.116000px;}
.y117{bottom:122.940000px;}
.y19d{bottom:122.976000px;}
.y47{bottom:126.720000px;}
.y7f{bottom:127.260000px;}
.y139{bottom:127.620000px;}
.y1df{bottom:129.816000px;}
.y167{bottom:131.076000px;}
.ybf{bottom:133.200000px;}
.y201{bottom:133.776000px;}
.y22a{bottom:135.396000px;}
.yd0{bottom:137.520000px;}
.y23b{bottom:137.916000px;}
.y17d{bottom:140.436000px;}
.y19c{bottom:145.296000px;}
.y46{bottom:146.160000px;}
.y7e{bottom:146.520000px;}
.y138{bottom:149.940000px;}
.y1de{bottom:151.950000px;}
.y116{bottom:152.100000px;}
.y166{bottom:153.210000px;}
.yfa{bottom:153.720000px;}
.y1b7{bottom:154.110000px;}
.ybe{bottom:155.340000px;}
.y200{bottom:156.090000px;}
.y229{bottom:157.710000px;}
.y17c{bottom:159.150000px;}
.ycf{bottom:159.660000px;}
.y23a{bottom:160.050000px;}
.y45{bottom:160.200000px;}
.y7d{bottom:165.960000px;}
.y19b{bottom:167.430000px;}
.y137{bottom:172.260000px;}
.y44{bottom:174.240000px;}
.y1dd{bottom:174.270000px;}
.y165{bottom:175.530000px;}
.yf9{bottom:175.860000px;}
.y1b6{bottom:176.250000px;}
.y25c{bottom:177.510000px;}
.ybd{bottom:177.660000px;}
.y1ff{bottom:178.230000px;}
.y228{bottom:179.850000px;}
.y115{bottom:181.080000px;}
.yce{bottom:181.980000px;}
.y239{bottom:182.370000px;}
.y7c{bottom:185.220000px;}
.y43{bottom:189.585000px;}
.y19a{bottom:189.750000px;}
.y136{bottom:194.400000px;}
.y1dc{bottom:196.410000px;}
.y164{bottom:197.670000px;}
.yf8{bottom:198.180000px;}
.y1b5{bottom:199.290000px;}
.y25b{bottom:199.650000px;}
.ybc{bottom:199.800000px;}
.y1fe{bottom:200.550000px;}
.y227{bottom:202.170000px;}
.ycd{bottom:204.120000px;}
.y238{bottom:204.510000px;}
.y7b{bottom:204.660000px;}
.y42{bottom:209.025000px;}
.y114{bottom:210.090000px;}
.y199{bottom:211.890000px;}
.y3b{bottom:216.750000px;}
.y1db{bottom:218.730000px;}
.y163{bottom:219.990000px;}
.yf7{bottom:220.530000px;}
.y25a{bottom:221.970000px;}
.ybb{bottom:222.150000px;}
.y1b4{bottom:222.870000px;}
.y41{bottom:223.065000px;}
.y7a{bottom:223.950000px;}
.y226{bottom:224.310000px;}
.ycc{bottom:226.470000px;}
.y237{bottom:226.830000px;}
.y198{bottom:234.210000px;}
.y3a{bottom:234.390000px;}
.y40{bottom:237.285000px;}
.y135{bottom:238.890000px;}
.y113{bottom:239.070000px;}
.y1da{bottom:241.050000px;}
.y162{bottom:242.130000px;}
.yf6{bottom:242.670000px;}
.y79{bottom:243.390000px;}
.y259{bottom:244.110000px;}
.yba{bottom:244.470000px;}
.y1b3{bottom:245.010000px;}
.y225{bottom:246.630000px;}
.ycb{bottom:248.790000px;}
.y236{bottom:249.150000px;}
.y3f{bottom:251.325000px;}
.y39{bottom:252.030000px;}
.y197{bottom:256.530000px;}
.y134{bottom:261.210000px;}
.y78{bottom:262.650000px;}
.y1d9{bottom:263.190000px;}
.yb9{bottom:264.270000px;}
.y161{bottom:264.450000px;}
.yf5{bottom:264.990000px;}
.y3e{bottom:265.365000px;}
.y258{bottom:266.430000px;}
.y1b2{bottom:267.330000px;}
.y112{bottom:268.050000px;}
.y224{bottom:268.950000px;}
.y38{bottom:269.490000px;}
.yca{bottom:270.930000px;}
.y235{bottom:271.290000px;}
.y196{bottom:278.670000px;}
.y3d{bottom:279.765000px;}
.y77{bottom:282.090000px;}
.y133{bottom:283.350000px;}
.yb8{bottom:284.970000px;}
.y1d8{bottom:285.510000px;}
.y160{bottom:286.770000px;}
.y37{bottom:287.130000px;}
.y257{bottom:288.750000px;}
.y1b1{bottom:289.470000px;}
.y111{bottom:290.190000px;}
.y223{bottom:291.090000px;}
.yc9{bottom:293.250000px;}
.y234{bottom:293.610000px;}
.y195{bottom:300.990000px;}
.y76{bottom:301.710000px;}
.yb7{bottom:304.410000px;}
.y36{bottom:304.770000px;}
.y132{bottom:305.670000px;}
.y1d7{bottom:307.650000px;}
.y15f{bottom:308.910000px;}
.yf4{bottom:309.450000px;}
.y256{bottom:310.890000px;}
.y1b0{bottom:311.790000px;}
.y110{bottom:312.510000px;}
.y222{bottom:313.410000px;}
.yc8{bottom:315.390000px;}
.y233{bottom:315.750000px;}
.y8c{bottom:319.170000px;}
.y35{bottom:322.410000px;}
.y75{bottom:322.770000px;}
.y194{bottom:323.130000px;}
.yb6{bottom:323.670000px;}
.y131{bottom:327.990000px;}
.y15e{bottom:328.530000px;}
.y1d6{bottom:329.970000px;}
.yf3{bottom:331.770000px;}
.y255{bottom:333.210000px;}
.y1fd{bottom:333.930000px;}
.y10f{bottom:334.650000px;}
.y1af{bottom:334.830000px;}
.y221{bottom:335.550000px;}
.yc7{bottom:337.710000px;}
.y232{bottom:338.115000px;}
.y34{bottom:339.915000px;}
.yb5{bottom:343.110000px;}
.y74{bottom:343.830000px;}
.y193{bottom:345.495000px;}
.y83{bottom:346.350000px;}
.y15d{bottom:347.835000px;}
.y130{bottom:350.130000px;}
.y1d5{bottom:352.335000px;}
.yf2{bottom:353.910000px;}
.y254{bottom:355.395000px;}
.y1fc{bottom:356.295000px;}
.y10e{bottom:356.970000px;}
.y33{bottom:357.555000px;}
.y220{bottom:357.915000px;}
.y1ae{bottom:358.275000px;}
.yc6{bottom:359.850000px;}
.y231{bottom:360.255000px;}
.yb4{bottom:362.370000px;}
.y73{bottom:365.070000px;}
.y15c{bottom:367.275000px;}
.y192{bottom:367.635000px;}
.y8b{bottom:369.750000px;}
.y12f{bottom:372.450000px;}
.y1d4{bottom:374.475000px;}
.y32{bottom:375.195000px;}
.yf1{bottom:376.230000px;}
.y253{bottom:377.715000px;}
.y1fb{bottom:378.615000px;}
.y10d{bottom:379.110000px;}
.y21f{bottom:380.235000px;}
.y1ad{bottom:380.595000px;}
.yb3{bottom:381.810000px;}
.yc5{bottom:382.170000px;}
.y230{bottom:382.575000px;}
.y72{bottom:386.130000px;}
.y15b{bottom:386.535000px;}
.y191{bottom:389.955000px;}
.y31{bottom:392.655000px;}
.y12e{bottom:394.590000px;}
.y1d3{bottom:396.795000px;}
.yf0{bottom:398.370000px;}
.y252{bottom:400.035000px;}
.y1fa{bottom:400.755000px;}
.yb2{bottom:401.070000px;}
.y10c{bottom:401.430000px;}
.y21e{bottom:402.375000px;}
.y1ac{bottom:402.735000px;}
.yc4{bottom:404.490000px;}
.y22f{bottom:404.895000px;}
.y17b{bottom:405.075000px;}
.y15a{bottom:405.975000px;}
.y71{bottom:407.190000px;}
.y30{bottom:410.295000px;}
.y190{bottom:412.275000px;}
.y12d{bottom:416.910000px;}
.y1d2{bottom:418.935000px;}
.y88{bottom:420.150000px;}
.yb1{bottom:420.510000px;}
.yef{bottom:420.690000px;}
.y251{bottom:422.175000px;}
.y1f9{bottom:423.075000px;}
.y10b{bottom:423.750000px;}
.y21d{bottom:424.695000px;}
.y1ab{bottom:425.055000px;}
.y159{bottom:425.235000px;}
.yc3{bottom:426.630000px;}
.y22e{bottom:427.035000px;}
.y17a{bottom:427.395000px;}
.y2f{bottom:427.935000px;}
.y70{bottom:428.250000px;}
.y18f{bottom:434.415000px;}
.y12c{bottom:439.230000px;}
.yb0{bottom:439.770000px;}
.y80{bottom:441.210000px;}
.y1d1{bottom:441.255000px;}
.yee{bottom:443.010000px;}
.y250{bottom:444.495000px;}
.y1f8{bottom:445.215000px;}
.y2e{bottom:445.395000px;}
.y10a{bottom:445.935000px;}
.y21c{bottom:446.835000px;}
.y158{bottom:447.375000px;}
.yc2{bottom:448.995000px;}
.y22d{bottom:449.355000px;}
.y179{bottom:449.535000px;}
.y6f{bottom:451.875000px;}
.y18e{bottom:453.135000px;}
.yaf{bottom:459.255000px;}
.y12b{bottom:461.415000px;}
.y2d{bottom:463.035000px;}
.y1d0{bottom:463.395000px;}
.yed{bottom:465.195000px;}
.y24f{bottom:466.635000px;}
.y1f7{bottom:467.535000px;}
.y109{bottom:468.255000px;}
.y21b{bottom:469.155000px;}
.y157{bottom:469.515000px;}
.y1aa{bottom:470.235000px;}
.yc1{bottom:471.135000px;}
.y22c{bottom:471.495000px;}
.y178{bottom:471.855000px;}
.y6e{bottom:474.195000px;}
.yae{bottom:478.515000px;}
.y2c{bottom:480.675000px;}
.y12a{bottom:483.735000px;}
.y1cf{bottom:485.715000px;}
.yec{bottom:487.515000px;}
.y24e{bottom:488.955000px;}
.y1f6{bottom:489.855000px;}
.y108{bottom:490.395000px;}
.y21a{bottom:491.295000px;}
.y156{bottom:491.835000px;}
.yc0{bottom:493.455000px;}
.y1a9{bottom:493.815000px;}
.y177{bottom:494.175000px;}
.y6d{bottom:496.335000px;}
.yad{bottom:497.775000px;}
.y2b{bottom:498.135000px;}
.y129{bottom:505.875000px;}
.y1ce{bottom:508.035000px;}
.yeb{bottom:509.655000px;}
.y24d{bottom:511.275000px;}
.y1f5{bottom:511.995000px;}
.y107{bottom:512.715000px;}
.y219{bottom:513.615000px;}
.y155{bottom:513.975000px;}
.y2a{bottom:515.775000px;}
.y6c{bottom:515.955000px;}
.y1a8{bottom:516.135000px;}
.y176{bottom:516.315000px;}
.yac{bottom:519.915000px;}
.yea{bottom:527.115000px;}
.y128{bottom:528.195000px;}
.y1cd{bottom:530.175000px;}
.y29{bottom:533.415000px;}
.y1f4{bottom:534.315000px;}
.y106{bottom:535.035000px;}
.y218{bottom:535.935000px;}
.y154{bottom:536.295000px;}
.y6b{bottom:537.915000px;}
.y1a7{bottom:538.275000px;}
.y175{bottom:538.635000px;}
.yab{bottom:539.715000px;}
.ye9{bottom:549.255000px;}
.y127{bottom:550.335000px;}
.y1cc{bottom:552.495000px;}
.y28{bottom:553.215000px;}
.y24c{bottom:555.735000px;}
.y1f3{bottom:556.455000px;}
.y105{bottom:557.175000px;}
.y217{bottom:558.075000px;}
.y153{bottom:558.615000px;}
.y6a{bottom:560.235000px;}
.y1a6{bottom:560.595000px;}
.yaa{bottom:560.775000px;}
.y27{bottom:570.855000px;}
.ye8{bottom:571.575000px;}
.y126{bottom:572.655000px;}
.y1cb{bottom:574.635000px;}
.y24b{bottom:577.875000px;}
.y1f2{bottom:578.775000px;}
.y104{bottom:579.495000px;}
.y216{bottom:580.395000px;}
.y152{bottom:580.755000px;}
.ya9{bottom:582.015000px;}
.y69{bottom:582.375000px;}
.y1a5{bottom:582.735000px;}
.y174{bottom:583.095000px;}
.y26{bottom:588.315000px;}
.ye7{bottom:593.715000px;}
.y125{bottom:594.975000px;}
.y1ca{bottom:596.955000px;}
.y24a{bottom:600.195000px;}
.y1f1{bottom:600.915000px;}
.y103{bottom:601.635000px;}
.y215{bottom:602.535000px;}
.ya8{bottom:603.075000px;}
.y68{bottom:604.695000px;}
.y1a4{bottom:605.085000px;}
.y173{bottom:605.445000px;}
.y25{bottom:605.985000px;}
.ye6{bottom:616.035000px;}
.y124{bottom:617.115000px;}
.y1c9{bottom:619.305000px;}
.y249{bottom:622.365000px;}
.y1f0{bottom:623.265000px;}
.y24{bottom:623.625000px;}
.y102{bottom:623.955000px;}
.ya7{bottom:624.135000px;}
.y214{bottom:624.885000px;}
.y151{bottom:625.245000px;}
.y67{bottom:627.015000px;}
.y1a3{bottom:627.405000px;}
.y172{bottom:627.585000px;}
.y123{bottom:639.435000px;}
.y23{bottom:641.265000px;}
.y1c8{bottom:641.445000px;}
.y248{bottom:644.685000px;}
.ya6{bottom:645.195000px;}
.y1ef{bottom:645.585000px;}
.y101{bottom:646.095000px;}
.y213{bottom:647.205000px;}
.y150{bottom:647.565000px;}
.y66{bottom:649.155000px;}
.y1a2{bottom:649.545000px;}
.y171{bottom:649.905000px;}
.y22{bottom:658.725000px;}
.y122{bottom:661.575000px;}
.y1c7{bottom:663.765000px;}
.ya5{bottom:666.435000px;}
.y247{bottom:667.005000px;}
.y1ee{bottom:667.725000px;}
.ye5{bottom:668.415000px;}
.y212{bottom:669.345000px;}
.y14f{bottom:669.705000px;}
.y65{bottom:671.475000px;}
.y1a1{bottom:671.865000px;}
.y170{bottom:672.045000px;}
.y21{bottom:676.365000px;}
.y121{bottom:683.925000px;}
.y1c6{bottom:685.905000px;}
.ya4{bottom:687.525000px;}
.y246{bottom:689.145000px;}
.y1ed{bottom:690.045000px;}
.ye4{bottom:690.765000px;}
.y211{bottom:691.665000px;}
.y14e{bottom:692.025000px;}
.y64{bottom:693.645000px;}
.y20{bottom:694.005000px;}
.y16f{bottom:694.365000px;}
.y3c{bottom:695.085000px;}
.y120{bottom:701.205000px;}
.y1c5{bottom:708.225000px;}
.ya3{bottom:708.585000px;}
.y1f{bottom:711.465000px;}
.y1ec{bottom:712.185000px;}
.ye3{bottom:712.905000px;}
.y210{bottom:713.805000px;}
.y14d{bottom:714.345000px;}
.y63{bottom:715.965000px;}
.y1a0{bottom:716.325000px;}
.y16e{bottom:716.505000px;}
.y1e{bottom:729.105000px;}
.ya2{bottom:729.645000px;}
.y1c4{bottom:730.545000px;}
.y245{bottom:733.605000px;}
.y1eb{bottom:734.505000px;}
.ye2{bottom:735.225000px;}
.y20f{bottom:736.125000px;}
.y14c{bottom:736.485000px;}
.y62{bottom:738.105000px;}
.y19f{bottom:738.465000px;}
.y16d{bottom:738.825000px;}
.y11f{bottom:745.845000px;}
.y1d{bottom:746.745000px;}
.ya1{bottom:750.885000px;}
.y1c3{bottom:752.685000px;}
.y244{bottom:755.925000px;}
.y1ea{bottom:756.825000px;}
.ye1{bottom:757.365000px;}
.y20e{bottom:758.445000px;}
.y14b{bottom:758.805000px;}
.y61{bottom:760.425000px;}
.y19e{bottom:760.785000px;}
.y16c{bottom:761.145000px;}
.y1c{bottom:764.205000px;}
.ya0{bottom:771.945000px;}
.y1c2{bottom:775.725000px;}
.y243{bottom:778.245000px;}
.y1e9{bottom:778.965000px;}
.ye0{bottom:779.685000px;}
.y20d{bottom:780.585000px;}
.y14a{bottom:780.945000px;}
.y1b{bottom:781.845000px;}
.y60{bottom:782.745000px;}
.y18d{bottom:783.105000px;}
.y16b{bottom:783.285000px;}
.y11e{bottom:790.305000px;}
.y9f{bottom:793.005000px;}
.y100{bottom:796.965000px;}
.y1c1{bottom:799.125000px;}
.y1a{bottom:799.485000px;}
.y242{bottom:800.385000px;}
.y1e8{bottom:801.285000px;}
.ydf{bottom:802.005000px;}
.y20c{bottom:802.905000px;}
.y149{bottom:803.265000px;}
.y5f{bottom:804.885000px;}
.y18c{bottom:805.245000px;}
.y9e{bottom:814.065000px;}
.y19{bottom:817.125000px;}
.yff{bottom:819.285000px;}
.y1c0{bottom:821.445000px;}
.y241{bottom:822.705000px;}
.y1e7{bottom:823.425000px;}
.yde{bottom:824.145000px;}
.y20b{bottom:825.045000px;}
.y148{bottom:825.585000px;}
.y5e{bottom:827.205000px;}
.y18b{bottom:827.565000px;}
.y18{bottom:834.585000px;}
.y11d{bottom:834.765000px;}
.y9d{bottom:835.305000px;}
.yfe{bottom:841.425000px;}
.y1bf{bottom:843.765000px;}
.y240{bottom:844.845000px;}
.y1e6{bottom:845.745000px;}
.ydd{bottom:846.465000px;}
.y20a{bottom:847.365000px;}
.y147{bottom:847.725000px;}
.y5d{bottom:849.345000px;}
.y18a{bottom:849.705000px;}
.y17{bottom:852.225000px;}
.y9c{bottom:856.365000px;}
.yfd{bottom:863.745000px;}
.y1be{bottom:866.625000px;}
.y23f{bottom:867.165000px;}
.y1e5{bottom:867.885000px;}
.ydc{bottom:868.605000px;}
.y209{bottom:869.505000px;}
.y16{bottom:869.865000px;}
.y146{bottom:870.045000px;}
.y5c{bottom:871.665000px;}
.y189{bottom:872.070000px;}
.y9b{bottom:877.425000px;}
.y11b{bottom:879.225000px;}
.yfc{bottom:886.065000px;}
.y15{bottom:887.370000px;}
.y1bd{bottom:890.250000px;}
.ydb{bottom:890.925000px;}
.y23e{bottom:891.150000px;}
.y208{bottom:891.870000px;}
.y145{bottom:892.230000px;}
.y5b{bottom:893.985000px;}
.y188{bottom:894.390000px;}
.y9a{bottom:898.485000px;}
.y14{bottom:905.010000px;}
.yda{bottom:908.205000px;}
.y1bc{bottom:912.570000px;}
.y207{bottom:914.190000px;}
.y144{bottom:914.550000px;}
.y23d{bottom:915.810000px;}
.y5a{bottom:916.125000px;}
.y187{bottom:916.530000px;}
.y13{bottom:922.650000px;}
.y99{bottom:922.830000px;}
.yd9{bottom:930.570000px;}
.y1bb{bottom:934.710000px;}
.y206{bottom:936.330000px;}
.y143{bottom:936.690000px;}
.y59{bottom:938.490000px;}
.y186{bottom:938.850000px;}
.y12{bottom:940.110000px;}
.y98{bottom:943.890000px;}
.y11a{bottom:946.050000px;}
.yd8{bottom:952.710000px;}
.y1ba{bottom:957.030000px;}
.y11{bottom:957.750000px;}
.y205{bottom:958.650000px;}
.y142{bottom:959.010000px;}
.y58{bottom:960.630000px;}
.y185{bottom:960.990000px;}
.y97{bottom:964.770000px;}
.yd7{bottom:975.030000px;}
.y10{bottom:975.390000px;}
.y1e4{bottom:979.170000px;}
.y1b9{bottom:980.070000px;}
.y204{bottom:980.790000px;}
.y141{bottom:981.330000px;}
.y57{bottom:982.950000px;}
.y184{bottom:983.310000px;}
.y96{bottom:984.030000px;}
.y119{bottom:990.510000px;}
.yf{bottom:993.210000px;}
.yd6{bottom:997.350000px;}
.y1e3{bottom:1001.490000px;}
.y203{bottom:1003.110000px;}
.y95{bottom:1003.470000px;}
.y56{bottom:1005.090000px;}
.y183{bottom:1005.450000px;}
.ye{bottom:1012.290000px;}
.yd5{bottom:1019.490000px;}
.y94{bottom:1022.730000px;}
.y1e2{bottom:1023.810000px;}
.y140{bottom:1025.790000px;}
.y202{bottom:1027.050000px;}
.y55{bottom:1027.410000px;}
.y182{bottom:1027.770000px;}
.yd{bottom:1033.710000px;}
.yd4{bottom:1041.810000px;}
.y93{bottom:1042.170000px;}
.y1e1{bottom:1045.950000px;}
.yc{bottom:1047.750000px;}
.y13f{bottom:1047.930000px;}
.y54{bottom:1049.730000px;}
.y181{bottom:1050.090000px;}
.y92{bottom:1061.430000px;}
.yd3{bottom:1063.950000px;}
.yb{bottom:1066.830000px;}
.y1e0{bottom:1068.990000px;}
.y13e{bottom:1070.250000px;}
.y53{bottom:1071.870000px;}
.y180{bottom:1072.230000px;}
.y118{bottom:1079.430000px;}
.y91{bottom:1080.870000px;}
.ya{bottom:1085.370000px;}
.yd2{bottom:1086.270000px;}
.y13d{bottom:1092.570000px;}
.y1b8{bottom:1093.290000px;}
.y52{bottom:1094.190000px;}
.y17f{bottom:1094.550000px;}
.y90{bottom:1100.130000px;}
.y9{bottom:1108.230000px;}
.y13c{bottom:1114.710000px;}
.y51{bottom:1116.330000px;}
.y16a{bottom:1116.690000px;}
.y8f{bottom:1119.570000px;}
.y5{bottom:1133.250000px;}
.y13b{bottom:1137.780000px;}
.y50{bottom:1138.650000px;}
.y8e{bottom:1138.830000px;}
.y169{bottom:1139.040000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y8d{bottom:1177.740000px;}
.y168{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y4f{bottom:1197.180000px;}
.y13a{bottom:1197.540000px;}
.h19{height:22.140000px;}
.h18{height:22.320000px;}
.h1a{height:22.356000px;}
.hd{height:30.480469px;}
.h7{height:36.878203px;}
.h3{height:38.100586px;}
.hc{height:40.843828px;}
.h4{height:41.974453px;}
.h17{height:44.460000px;}
.h16{height:44.496000px;}
.h1b{height:44.640000px;}
.h14{height:44.676000px;}
.h2{height:46.986328px;}
.hb{height:50.273438px;}
.h9{height:50.597578px;}
.h8{height:51.998203px;}
.h6{height:56.084062px;}
.h1d{height:57.071624px;}
.h11{height:57.636562px;}
.h10{height:58.819922px;}
.h12{height:60.960938px;}
.h13{height:62.648438px;}
.h5{height:65.837812px;}
.h1c{height:66.816000px;}
.h15{height:88.920000px;}
.ha{height:292.530000px;}
.hf{height:1262.250000px;}
.he{height:1262.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:108.000000px;}
.w8{width:108.036000px;}
.w12{width:127.656000px;}
.wd{width:130.536000px;}
.wb{width:136.476000px;}
.wf{width:145.656000px;}
.w3{width:208.110000px;}
.w10{width:244.650000px;}
.w7{width:258.195000px;}
.wa{width:297.795000px;}
.w11{width:340.275000px;}
.we{width:350.895000px;}
.w9{width:370.515000px;}
.wc{width:404.175000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w5{width:893.159987px;}
.w4{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:3.060000px;}
.x18{left:7.560000px;}
.x1{left:108.035987px;}
.x9{left:112.536000px;}
.x2{left:116.135987px;}
.x25{left:129.275987px;}
.xa{left:134.994000px;}
.x6{left:138.275987px;}
.x24{left:139.895987px;}
.x5{left:150.869987px;}
.xb{left:161.129987px;}
.x26{left:173.189987px;}
.xd{left:178.949987px;}
.x14{left:185.609987px;}
.x1c{left:198.390000px;}
.x11{left:207.390000px;}
.x1e{left:219.269987px;}
.x17{left:229.530000px;}
.xe{left:263.595000px;}
.x4{left:269.309987px;}
.x15{left:280.334987px;}
.x2a{left:288.794987px;}
.x27{left:301.394987px;}
.x12{left:315.435000px;}
.x16{left:328.394987px;}
.x8{left:335.414987px;}
.x1f{left:352.695000px;}
.x1a{left:358.274987px;}
.x10{left:371.595000px;}
.x7{left:375.374987px;}
.xc{left:418.394987px;}
.x3{left:446.474987px;}
.x19{left:527.325000px;}
.x1d{left:549.285000px;}
.x13{left:551.084987px;}
.x1b{left:583.485000px;}
.x23{left:623.984987px;}
.x21{left:629.384987px;}
.x22{left:637.844987px;}
.x28{left:647.924987px;}
.x29{left:652.964987px;}
.x20{left:692.970000px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-0.853333pt;}
.ls20{letter-spacing:-0.618667pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.549333pt;}
.ls21{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.240533pt;}
.ls10{letter-spacing:-0.220267pt;}
.ls1e{letter-spacing:-0.202133pt;}
.lse{letter-spacing:-0.099733pt;}
.lsc{letter-spacing:-0.084267pt;}
.ls9{letter-spacing:-0.075733pt;}
.ls1f{letter-spacing:-0.061333pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.020480pt;}
.ls2{letter-spacing:0.053867pt;}
.ls22{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.089600pt;}
.ls11{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.166400pt;}
.ls4{letter-spacing:0.233600pt;}
.ls1c{letter-spacing:0.271360pt;}
.ls1a{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.291733pt;}
.ls23{letter-spacing:0.291840pt;}
.ls8{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.431360pt;}
.ls18{letter-spacing:14.351360pt;}
.lsd{letter-spacing:18.080000pt;}
.ls15{letter-spacing:22.496000pt;}
.ls13{letter-spacing:23.136000pt;}
.ls14{letter-spacing:119.040000pt;}
.ws16{word-spacing:-62.064349pt;}
.ws11{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.245333pt;}
.wsf{word-spacing:-13.225067pt;}
.ws17{word-spacing:-13.017600pt;}
.ws10{word-spacing:-12.974080pt;}
.wsb{word-spacing:-12.953600pt;}
.ws13{word-spacing:-12.892267pt;}
.wsc{word-spacing:-12.853867pt;}
.ws12{word-spacing:-12.751467pt;}
.ws15{word-spacing:-12.585067pt;}
.ws14{word-spacing:-12.334933pt;}
.ws4{word-spacing:-12.003733pt;}
.ws3{word-spacing:-11.920000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws1{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.304000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.357867pt;}
.wsa{word-spacing:-8.082133pt;}
.ws2{word-spacing:-7.657067pt;}
.ws8{word-spacing:-7.040000pt;}
.ws7{word-spacing:-7.008000pt;}
.ws9{word-spacing:0.000000pt;}
._21{margin-left:-4.170880pt;}
._8{margin-left:-2.496640pt;}
._2{margin-left:-1.216000pt;}
._1{width:1.082667pt;}
._d{width:2.064000pt;}
._b{width:3.665280pt;}
._c{width:4.686293pt;}
._a{width:5.896320pt;}
._9{width:7.383680pt;}
._13{width:8.871040pt;}
._e{width:10.497493pt;}
._1c{width:11.407787pt;}
._14{width:12.596267pt;}
._12{width:13.525760pt;}
._11{width:14.554880pt;}
._19{width:16.074240pt;}
._1a{width:17.428480pt;}
._1b{width:18.748160pt;}
._f{width:20.026240pt;}
._1d{width:20.941653pt;}
._20{width:21.864107pt;}
._1e{width:22.884480pt;}
._10{width:23.957120pt;}
._2c{width:24.847360pt;}
._1f{width:25.848320pt;}
._26{width:27.602133pt;}
._29{width:28.595413pt;}
._2b{width:29.951573pt;}
._28{width:30.863787pt;}
._23{width:31.912960pt;}
._22{width:33.090560pt;}
._42{width:34.505387pt;}
._41{width:35.563520pt;}
._2a{width:36.738560pt;}
._27{width:37.859840pt;}
._2d{width:40.509440pt;}
._7{width:42.475733pt;}
._6{width:43.505280pt;}
._49{width:45.874560pt;}
._36{width:48.619947pt;}
._18{width:49.615360pt;}
._17{width:50.734080pt;}
._45{width:55.111680pt;}
._46{width:56.107733pt;}
._32{width:57.996800pt;}
._15{width:60.068480pt;}
._0{width:66.666667pt;}
._25{width:70.361600pt;}
._24{width:71.362560pt;}
._3d{width:89.262080pt;}
._3b{width:105.807360pt;}
._3a{width:110.085120pt;}
._39{width:111.342080pt;}
._30{width:123.450880pt;}
._31{width:125.376000pt;}
._37{width:128.529067pt;}
._2e{width:129.712640pt;}
._2f{width:130.772480pt;}
._3c{width:139.251200pt;}
._35{width:141.076480pt;}
._3e{width:142.784000pt;}
._47{width:145.728000pt;}
._48{width:146.649600pt;}
._3{width:161.440000pt;}
._4{width:176.622080pt;}
._5{width:180.313600pt;}
._38{width:181.696000pt;}
._44{width:186.393600pt;}
._43{width:187.591680pt;}
._33{width:201.487360pt;}
._34{width:202.792320pt;}
._3f{width:229.337600pt;}
._40{width:230.556587pt;}
._16{width:999.366400pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:62.064349pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y4e{bottom:-6.400000pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:5.600000pt;}
.y8a{bottom:5.760000pt;}
.y82{bottom:5.800000pt;}
.y4d{bottom:12.000000pt;}
.y86{bottom:25.440000pt;}
.y89{bottom:25.480000pt;}
.yfb{bottom:25.600000pt;}
.y81{bottom:25.640000pt;}
.y4c{bottom:28.640000pt;}
.y4b{bottom:38.080000pt;}
.y85{bottom:45.280000pt;}
.y11c{bottom:45.320000pt;}
.y4a{bottom:47.360000pt;}
.y8{bottom:50.240000pt;}
.y49{bottom:56.800000pt;}
.y7{bottom:62.752000pt;}
.y48{bottom:64.480000pt;}
.y84{bottom:64.960000pt;}
.y6{bottom:75.232000pt;}
.y22b{bottom:100.672000pt;}
.yd1{bottom:102.400000pt;}
.y23c{bottom:102.752000pt;}
.y17e{bottom:104.992000pt;}
.y117{bottom:109.280000pt;}
.y19d{bottom:109.312000pt;}
.y47{bottom:112.640000pt;}
.y7f{bottom:113.120000pt;}
.y139{bottom:113.440000pt;}
.y1df{bottom:115.392000pt;}
.y167{bottom:116.512000pt;}
.ybf{bottom:118.400000pt;}
.y201{bottom:118.912000pt;}
.y22a{bottom:120.352000pt;}
.yd0{bottom:122.240000pt;}
.y23b{bottom:122.592000pt;}
.y17d{bottom:124.832000pt;}
.y19c{bottom:129.152000pt;}
.y46{bottom:129.920000pt;}
.y7e{bottom:130.240000pt;}
.y138{bottom:133.280000pt;}
.y1de{bottom:135.066667pt;}
.y116{bottom:135.200000pt;}
.y166{bottom:136.186667pt;}
.yfa{bottom:136.640000pt;}
.y1b7{bottom:136.986667pt;}
.ybe{bottom:138.080000pt;}
.y200{bottom:138.746667pt;}
.y229{bottom:140.186667pt;}
.y17c{bottom:141.466667pt;}
.ycf{bottom:141.920000pt;}
.y23a{bottom:142.266667pt;}
.y45{bottom:142.400000pt;}
.y7d{bottom:147.520000pt;}
.y19b{bottom:148.826667pt;}
.y137{bottom:153.120000pt;}
.y44{bottom:154.880000pt;}
.y1dd{bottom:154.906667pt;}
.y165{bottom:156.026667pt;}
.yf9{bottom:156.320000pt;}
.y1b6{bottom:156.666667pt;}
.y25c{bottom:157.786667pt;}
.ybd{bottom:157.920000pt;}
.y1ff{bottom:158.426667pt;}
.y228{bottom:159.866667pt;}
.y115{bottom:160.960000pt;}
.yce{bottom:161.760000pt;}
.y239{bottom:162.106667pt;}
.y7c{bottom:164.640000pt;}
.y43{bottom:168.520000pt;}
.y19a{bottom:168.666667pt;}
.y136{bottom:172.800000pt;}
.y1dc{bottom:174.586667pt;}
.y164{bottom:175.706667pt;}
.yf8{bottom:176.160000pt;}
.y1b5{bottom:177.146667pt;}
.y25b{bottom:177.466667pt;}
.ybc{bottom:177.600000pt;}
.y1fe{bottom:178.266667pt;}
.y227{bottom:179.706667pt;}
.ycd{bottom:181.440000pt;}
.y238{bottom:181.786667pt;}
.y7b{bottom:181.920000pt;}
.y42{bottom:185.800000pt;}
.y114{bottom:186.746667pt;}
.y199{bottom:188.346667pt;}
.y3b{bottom:192.666667pt;}
.y1db{bottom:194.426667pt;}
.y163{bottom:195.546667pt;}
.yf7{bottom:196.026667pt;}
.y25a{bottom:197.306667pt;}
.ybb{bottom:197.466667pt;}
.y1b4{bottom:198.106667pt;}
.y41{bottom:198.280000pt;}
.y7a{bottom:199.066667pt;}
.y226{bottom:199.386667pt;}
.ycc{bottom:201.306667pt;}
.y237{bottom:201.626667pt;}
.y198{bottom:208.186667pt;}
.y3a{bottom:208.346667pt;}
.y40{bottom:210.920000pt;}
.y135{bottom:212.346667pt;}
.y113{bottom:212.506667pt;}
.y1da{bottom:214.266667pt;}
.y162{bottom:215.226667pt;}
.yf6{bottom:215.706667pt;}
.y79{bottom:216.346667pt;}
.y259{bottom:216.986667pt;}
.yba{bottom:217.306667pt;}
.y1b3{bottom:217.786667pt;}
.y225{bottom:219.226667pt;}
.ycb{bottom:221.146667pt;}
.y236{bottom:221.466667pt;}
.y3f{bottom:223.400000pt;}
.y39{bottom:224.026667pt;}
.y197{bottom:228.026667pt;}
.y134{bottom:232.186667pt;}
.y78{bottom:233.466667pt;}
.y1d9{bottom:233.946667pt;}
.yb9{bottom:234.906667pt;}
.y161{bottom:235.066667pt;}
.yf5{bottom:235.546667pt;}
.y3e{bottom:235.880000pt;}
.y258{bottom:236.826667pt;}
.y1b2{bottom:237.626667pt;}
.y112{bottom:238.266667pt;}
.y224{bottom:239.066667pt;}
.y38{bottom:239.546667pt;}
.yca{bottom:240.826667pt;}
.y235{bottom:241.146667pt;}
.y196{bottom:247.706667pt;}
.y3d{bottom:248.680000pt;}
.y77{bottom:250.746667pt;}
.y133{bottom:251.866667pt;}
.yb8{bottom:253.306667pt;}
.y1d8{bottom:253.786667pt;}
.y160{bottom:254.906667pt;}
.y37{bottom:255.226667pt;}
.y257{bottom:256.666667pt;}
.y1b1{bottom:257.306667pt;}
.y111{bottom:257.946667pt;}
.y223{bottom:258.746667pt;}
.yc9{bottom:260.666667pt;}
.y234{bottom:260.986667pt;}
.y195{bottom:267.546667pt;}
.y76{bottom:268.186667pt;}
.yb7{bottom:270.586667pt;}
.y36{bottom:270.906667pt;}
.y132{bottom:271.706667pt;}
.y1d7{bottom:273.466667pt;}
.y15f{bottom:274.586667pt;}
.yf4{bottom:275.066667pt;}
.y256{bottom:276.346667pt;}
.y1b0{bottom:277.146667pt;}
.y110{bottom:277.786667pt;}
.y222{bottom:278.586667pt;}
.yc8{bottom:280.346667pt;}
.y233{bottom:280.666667pt;}
.y8c{bottom:283.706667pt;}
.y35{bottom:286.586667pt;}
.y75{bottom:286.906667pt;}
.y194{bottom:287.226667pt;}
.yb6{bottom:287.706667pt;}
.y131{bottom:291.546667pt;}
.y15e{bottom:292.026667pt;}
.y1d6{bottom:293.306667pt;}
.yf3{bottom:294.906667pt;}
.y255{bottom:296.186667pt;}
.y1fd{bottom:296.826667pt;}
.y10f{bottom:297.466667pt;}
.y1af{bottom:297.626667pt;}
.y221{bottom:298.266667pt;}
.yc7{bottom:300.186667pt;}
.y232{bottom:300.546667pt;}
.y34{bottom:302.146667pt;}
.yb5{bottom:304.986667pt;}
.y74{bottom:305.626667pt;}
.y193{bottom:307.106667pt;}
.y83{bottom:307.866667pt;}
.y15d{bottom:309.186667pt;}
.y130{bottom:311.226667pt;}
.y1d5{bottom:313.186667pt;}
.yf2{bottom:314.586667pt;}
.y254{bottom:315.906667pt;}
.y1fc{bottom:316.706667pt;}
.y10e{bottom:317.306667pt;}
.y33{bottom:317.826667pt;}
.y220{bottom:318.146667pt;}
.y1ae{bottom:318.466667pt;}
.yc6{bottom:319.866667pt;}
.y231{bottom:320.226667pt;}
.yb4{bottom:322.106667pt;}
.y73{bottom:324.506667pt;}
.y15c{bottom:326.466667pt;}
.y192{bottom:326.786667pt;}
.y8b{bottom:328.666667pt;}
.y12f{bottom:331.066667pt;}
.y1d4{bottom:332.866667pt;}
.y32{bottom:333.506667pt;}
.yf1{bottom:334.426667pt;}
.y253{bottom:335.746667pt;}
.y1fb{bottom:336.546667pt;}
.y10d{bottom:336.986667pt;}
.y21f{bottom:337.986667pt;}
.y1ad{bottom:338.306667pt;}
.yb3{bottom:339.386667pt;}
.yc5{bottom:339.706667pt;}
.y230{bottom:340.066667pt;}
.y72{bottom:343.226667pt;}
.y15b{bottom:343.586667pt;}
.y191{bottom:346.626667pt;}
.y31{bottom:349.026667pt;}
.y12e{bottom:350.746667pt;}
.y1d3{bottom:352.706667pt;}
.yf0{bottom:354.106667pt;}
.y252{bottom:355.586667pt;}
.y1fa{bottom:356.226667pt;}
.yb2{bottom:356.506667pt;}
.y10c{bottom:356.826667pt;}
.y21e{bottom:357.666667pt;}
.y1ac{bottom:357.986667pt;}
.yc4{bottom:359.546667pt;}
.y22f{bottom:359.906667pt;}
.y17b{bottom:360.066667pt;}
.y15a{bottom:360.866667pt;}
.y71{bottom:361.946667pt;}
.y30{bottom:364.706667pt;}
.y190{bottom:366.466667pt;}
.y12d{bottom:370.586667pt;}
.y1d2{bottom:372.386667pt;}
.y88{bottom:373.466667pt;}
.yb1{bottom:373.786667pt;}
.yef{bottom:373.946667pt;}
.y251{bottom:375.266667pt;}
.y1f9{bottom:376.066667pt;}
.y10b{bottom:376.666667pt;}
.y21d{bottom:377.506667pt;}
.y1ab{bottom:377.826667pt;}
.y159{bottom:377.986667pt;}
.yc3{bottom:379.226667pt;}
.y22e{bottom:379.586667pt;}
.y17a{bottom:379.906667pt;}
.y2f{bottom:380.386667pt;}
.y70{bottom:380.666667pt;}
.y18f{bottom:386.146667pt;}
.y12c{bottom:390.426667pt;}
.yb0{bottom:390.906667pt;}
.y80{bottom:392.186667pt;}
.y1d1{bottom:392.226667pt;}
.yee{bottom:393.786667pt;}
.y250{bottom:395.106667pt;}
.y1f8{bottom:395.746667pt;}
.y2e{bottom:395.906667pt;}
.y10a{bottom:396.386667pt;}
.y21c{bottom:397.186667pt;}
.y158{bottom:397.666667pt;}
.yc2{bottom:399.106667pt;}
.y22d{bottom:399.426667pt;}
.y179{bottom:399.586667pt;}
.y6f{bottom:401.666667pt;}
.y18e{bottom:402.786667pt;}
.yaf{bottom:408.226667pt;}
.y12b{bottom:410.146667pt;}
.y2d{bottom:411.586667pt;}
.y1d0{bottom:411.906667pt;}
.yed{bottom:413.506667pt;}
.y24f{bottom:414.786667pt;}
.y1f7{bottom:415.586667pt;}
.y109{bottom:416.226667pt;}
.y21b{bottom:417.026667pt;}
.y157{bottom:417.346667pt;}
.y1aa{bottom:417.986667pt;}
.yc1{bottom:418.786667pt;}
.y22c{bottom:419.106667pt;}
.y178{bottom:419.426667pt;}
.y6e{bottom:421.506667pt;}
.yae{bottom:425.346667pt;}
.y2c{bottom:427.266667pt;}
.y12a{bottom:429.986667pt;}
.y1cf{bottom:431.746667pt;}
.yec{bottom:433.346667pt;}
.y24e{bottom:434.626667pt;}
.y1f6{bottom:435.426667pt;}
.y108{bottom:435.906667pt;}
.y21a{bottom:436.706667pt;}
.y156{bottom:437.186667pt;}
.yc0{bottom:438.626667pt;}
.y1a9{bottom:438.946667pt;}
.y177{bottom:439.266667pt;}
.y6d{bottom:441.186667pt;}
.yad{bottom:442.466667pt;}
.y2b{bottom:442.786667pt;}
.y129{bottom:449.666667pt;}
.y1ce{bottom:451.586667pt;}
.yeb{bottom:453.026667pt;}
.y24d{bottom:454.466667pt;}
.y1f5{bottom:455.106667pt;}
.y107{bottom:455.746667pt;}
.y219{bottom:456.546667pt;}
.y155{bottom:456.866667pt;}
.y2a{bottom:458.466667pt;}
.y6c{bottom:458.626667pt;}
.y1a8{bottom:458.786667pt;}
.y176{bottom:458.946667pt;}
.yac{bottom:462.146667pt;}
.yea{bottom:468.546667pt;}
.y128{bottom:469.506667pt;}
.y1cd{bottom:471.266667pt;}
.y29{bottom:474.146667pt;}
.y1f4{bottom:474.946667pt;}
.y106{bottom:475.586667pt;}
.y218{bottom:476.386667pt;}
.y154{bottom:476.706667pt;}
.y6b{bottom:478.146667pt;}
.y1a7{bottom:478.466667pt;}
.y175{bottom:478.786667pt;}
.yab{bottom:479.746667pt;}
.ye9{bottom:488.226667pt;}
.y127{bottom:489.186667pt;}
.y1cc{bottom:491.106667pt;}
.y28{bottom:491.746667pt;}
.y24c{bottom:493.986667pt;}
.y1f3{bottom:494.626667pt;}
.y105{bottom:495.266667pt;}
.y217{bottom:496.066667pt;}
.y153{bottom:496.546667pt;}
.y6a{bottom:497.986667pt;}
.y1a6{bottom:498.306667pt;}
.yaa{bottom:498.466667pt;}
.y27{bottom:507.426667pt;}
.ye8{bottom:508.066667pt;}
.y126{bottom:509.026667pt;}
.y1cb{bottom:510.786667pt;}
.y24b{bottom:513.666667pt;}
.y1f2{bottom:514.466667pt;}
.y104{bottom:515.106667pt;}
.y216{bottom:515.906667pt;}
.y152{bottom:516.226667pt;}
.ya9{bottom:517.346667pt;}
.y69{bottom:517.666667pt;}
.y1a5{bottom:517.986667pt;}
.y174{bottom:518.306667pt;}
.y26{bottom:522.946667pt;}
.ye7{bottom:527.746667pt;}
.y125{bottom:528.866667pt;}
.y1ca{bottom:530.626667pt;}
.y24a{bottom:533.506667pt;}
.y1f1{bottom:534.146667pt;}
.y103{bottom:534.786667pt;}
.y215{bottom:535.586667pt;}
.ya8{bottom:536.066667pt;}
.y68{bottom:537.506667pt;}
.y1a4{bottom:537.853333pt;}
.y173{bottom:538.173333pt;}
.y25{bottom:538.653333pt;}
.ye6{bottom:547.586667pt;}
.y124{bottom:548.546667pt;}
.y1c9{bottom:550.493333pt;}
.y249{bottom:553.213333pt;}
.y1f0{bottom:554.013333pt;}
.y24{bottom:554.333333pt;}
.y102{bottom:554.626667pt;}
.ya7{bottom:554.786667pt;}
.y214{bottom:555.453333pt;}
.y151{bottom:555.773333pt;}
.y67{bottom:557.346667pt;}
.y1a3{bottom:557.693333pt;}
.y172{bottom:557.853333pt;}
.y123{bottom:568.386667pt;}
.y23{bottom:570.013333pt;}
.y1c8{bottom:570.173333pt;}
.y248{bottom:573.053333pt;}
.ya6{bottom:573.506667pt;}
.y1ef{bottom:573.853333pt;}
.y101{bottom:574.306667pt;}
.y213{bottom:575.293333pt;}
.y150{bottom:575.613333pt;}
.y66{bottom:577.026667pt;}
.y1a2{bottom:577.373333pt;}
.y171{bottom:577.693333pt;}
.y22{bottom:585.533333pt;}
.y122{bottom:588.066667pt;}
.y1c7{bottom:590.013333pt;}
.ya5{bottom:592.386667pt;}
.y247{bottom:592.893333pt;}
.y1ee{bottom:593.533333pt;}
.ye5{bottom:594.146667pt;}
.y212{bottom:594.973333pt;}
.y14f{bottom:595.293333pt;}
.y65{bottom:596.866667pt;}
.y1a1{bottom:597.213333pt;}
.y170{bottom:597.373333pt;}
.y21{bottom:601.213333pt;}
.y121{bottom:607.933333pt;}
.y1c6{bottom:609.693333pt;}
.ya4{bottom:611.133333pt;}
.y246{bottom:612.573333pt;}
.y1ed{bottom:613.373333pt;}
.ye4{bottom:614.013333pt;}
.y211{bottom:614.813333pt;}
.y14e{bottom:615.133333pt;}
.y64{bottom:616.573333pt;}
.y20{bottom:616.893333pt;}
.y16f{bottom:617.213333pt;}
.y3c{bottom:617.853333pt;}
.y120{bottom:623.293333pt;}
.y1c5{bottom:629.533333pt;}
.ya3{bottom:629.853333pt;}
.y1f{bottom:632.413333pt;}
.y1ec{bottom:633.053333pt;}
.ye3{bottom:633.693333pt;}
.y210{bottom:634.493333pt;}
.y14d{bottom:634.973333pt;}
.y63{bottom:636.413333pt;}
.y1a0{bottom:636.733333pt;}
.y16e{bottom:636.893333pt;}
.y1e{bottom:648.093333pt;}
.ya2{bottom:648.573333pt;}
.y1c4{bottom:649.373333pt;}
.y245{bottom:652.093333pt;}
.y1eb{bottom:652.893333pt;}
.ye2{bottom:653.533333pt;}
.y20f{bottom:654.333333pt;}
.y14c{bottom:654.653333pt;}
.y62{bottom:656.093333pt;}
.y19f{bottom:656.413333pt;}
.y16d{bottom:656.733333pt;}
.y11f{bottom:662.973333pt;}
.y1d{bottom:663.773333pt;}
.ya1{bottom:667.453333pt;}
.y1c3{bottom:669.053333pt;}
.y244{bottom:671.933333pt;}
.y1ea{bottom:672.733333pt;}
.ye1{bottom:673.213333pt;}
.y20e{bottom:674.173333pt;}
.y14b{bottom:674.493333pt;}
.y61{bottom:675.933333pt;}
.y19e{bottom:676.253333pt;}
.y16c{bottom:676.573333pt;}
.y1c{bottom:679.293333pt;}
.ya0{bottom:686.173333pt;}
.y1c2{bottom:689.533333pt;}
.y243{bottom:691.773333pt;}
.y1e9{bottom:692.413333pt;}
.ye0{bottom:693.053333pt;}
.y20d{bottom:693.853333pt;}
.y14a{bottom:694.173333pt;}
.y1b{bottom:694.973333pt;}
.y60{bottom:695.773333pt;}
.y18d{bottom:696.093333pt;}
.y16b{bottom:696.253333pt;}
.y11e{bottom:702.493333pt;}
.y9f{bottom:704.893333pt;}
.y100{bottom:708.413333pt;}
.y1c1{bottom:710.333333pt;}
.y1a{bottom:710.653333pt;}
.y242{bottom:711.453333pt;}
.y1e8{bottom:712.253333pt;}
.ydf{bottom:712.893333pt;}
.y20c{bottom:713.693333pt;}
.y149{bottom:714.013333pt;}
.y5f{bottom:715.453333pt;}
.y18c{bottom:715.773333pt;}
.y9e{bottom:723.613333pt;}
.y19{bottom:726.333333pt;}
.yff{bottom:728.253333pt;}
.y1c0{bottom:730.173333pt;}
.y241{bottom:731.293333pt;}
.y1e7{bottom:731.933333pt;}
.yde{bottom:732.573333pt;}
.y20b{bottom:733.373333pt;}
.y148{bottom:733.853333pt;}
.y5e{bottom:735.293333pt;}
.y18b{bottom:735.613333pt;}
.y18{bottom:741.853333pt;}
.y11d{bottom:742.013333pt;}
.y9d{bottom:742.493333pt;}
.yfe{bottom:747.933333pt;}
.y1bf{bottom:750.013333pt;}
.y240{bottom:750.973333pt;}
.y1e6{bottom:751.773333pt;}
.ydd{bottom:752.413333pt;}
.y20a{bottom:753.213333pt;}
.y147{bottom:753.533333pt;}
.y5d{bottom:754.973333pt;}
.y18a{bottom:755.293333pt;}
.y17{bottom:757.533333pt;}
.y9c{bottom:761.213333pt;}
.yfd{bottom:767.773333pt;}
.y1be{bottom:770.333333pt;}
.y23f{bottom:770.813333pt;}
.y1e5{bottom:771.453333pt;}
.ydc{bottom:772.093333pt;}
.y209{bottom:772.893333pt;}
.y16{bottom:773.213333pt;}
.y146{bottom:773.373333pt;}
.y5c{bottom:774.813333pt;}
.y189{bottom:775.173333pt;}
.y9b{bottom:779.933333pt;}
.y11b{bottom:781.533333pt;}
.yfc{bottom:787.613333pt;}
.y15{bottom:788.773333pt;}
.y1bd{bottom:791.333333pt;}
.ydb{bottom:791.933333pt;}
.y23e{bottom:792.133333pt;}
.y208{bottom:792.773333pt;}
.y145{bottom:793.093333pt;}
.y5b{bottom:794.653333pt;}
.y188{bottom:795.013333pt;}
.y9a{bottom:798.653333pt;}
.y14{bottom:804.453333pt;}
.yda{bottom:807.293333pt;}
.y1bc{bottom:811.173333pt;}
.y207{bottom:812.613333pt;}
.y144{bottom:812.933333pt;}
.y23d{bottom:814.053333pt;}
.y5a{bottom:814.333333pt;}
.y187{bottom:814.693333pt;}
.y13{bottom:820.133333pt;}
.y99{bottom:820.293333pt;}
.yd9{bottom:827.173333pt;}
.y1bb{bottom:830.853333pt;}
.y206{bottom:832.293333pt;}
.y143{bottom:832.613333pt;}
.y59{bottom:834.213333pt;}
.y186{bottom:834.533333pt;}
.y12{bottom:835.653333pt;}
.y98{bottom:839.013333pt;}
.y11a{bottom:840.933333pt;}
.yd8{bottom:846.853333pt;}
.y1ba{bottom:850.693333pt;}
.y11{bottom:851.333333pt;}
.y205{bottom:852.133333pt;}
.y142{bottom:852.453333pt;}
.y58{bottom:853.893333pt;}
.y185{bottom:854.213333pt;}
.y97{bottom:857.573333pt;}
.yd7{bottom:866.693333pt;}
.y10{bottom:867.013333pt;}
.y1e4{bottom:870.373333pt;}
.y1b9{bottom:871.173333pt;}
.y204{bottom:871.813333pt;}
.y141{bottom:872.293333pt;}
.y57{bottom:873.733333pt;}
.y184{bottom:874.053333pt;}
.y96{bottom:874.693333pt;}
.y119{bottom:880.453333pt;}
.yf{bottom:882.853333pt;}
.yd6{bottom:886.533333pt;}
.y1e3{bottom:890.213333pt;}
.y203{bottom:891.653333pt;}
.y95{bottom:891.973333pt;}
.y56{bottom:893.413333pt;}
.y183{bottom:893.733333pt;}
.ye{bottom:899.813333pt;}
.yd5{bottom:906.213333pt;}
.y94{bottom:909.093333pt;}
.y1e2{bottom:910.053333pt;}
.y140{bottom:911.813333pt;}
.y202{bottom:912.933333pt;}
.y55{bottom:913.253333pt;}
.y182{bottom:913.573333pt;}
.yd{bottom:918.853333pt;}
.yd4{bottom:926.053333pt;}
.y93{bottom:926.373333pt;}
.y1e1{bottom:929.733333pt;}
.yc{bottom:931.333333pt;}
.y13f{bottom:931.493333pt;}
.y54{bottom:933.093333pt;}
.y181{bottom:933.413333pt;}
.y92{bottom:943.493333pt;}
.yd3{bottom:945.733333pt;}
.yb{bottom:948.293333pt;}
.y1e0{bottom:950.213333pt;}
.y13e{bottom:951.333333pt;}
.y53{bottom:952.773333pt;}
.y180{bottom:953.093333pt;}
.y118{bottom:959.493333pt;}
.y91{bottom:960.773333pt;}
.ya{bottom:964.773333pt;}
.yd2{bottom:965.573333pt;}
.y13d{bottom:971.173333pt;}
.y1b8{bottom:971.813333pt;}
.y52{bottom:972.613333pt;}
.y17f{bottom:972.933333pt;}
.y90{bottom:977.893333pt;}
.y9{bottom:985.093333pt;}
.y13c{bottom:990.853333pt;}
.y51{bottom:992.293333pt;}
.y16a{bottom:992.613333pt;}
.y8f{bottom:995.173333pt;}
.y5{bottom:1007.333333pt;}
.y13b{bottom:1011.360000pt;}
.y50{bottom:1012.133333pt;}
.y8e{bottom:1012.293333pt;}
.y169{bottom:1012.480000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y8d{bottom:1046.880000pt;}
.y168{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y4f{bottom:1064.160000pt;}
.y13a{bottom:1064.480000pt;}
.h19{height:19.680000pt;}
.h18{height:19.840000pt;}
.h1a{height:19.872000pt;}
.hd{height:27.093750pt;}
.h7{height:32.780625pt;}
.h3{height:33.867188pt;}
.hc{height:36.305625pt;}
.h4{height:37.310625pt;}
.h17{height:39.520000pt;}
.h16{height:39.552000pt;}
.h1b{height:39.680000pt;}
.h14{height:39.712000pt;}
.h2{height:41.765625pt;}
.hb{height:44.687500pt;}
.h9{height:44.975625pt;}
.h8{height:46.220625pt;}
.h6{height:49.852500pt;}
.h1d{height:50.730332pt;}
.h11{height:51.232500pt;}
.h10{height:52.284375pt;}
.h12{height:54.187500pt;}
.h13{height:55.687500pt;}
.h5{height:58.522500pt;}
.h1c{height:59.392000pt;}
.h15{height:79.040000pt;}
.ha{height:260.026667pt;}
.hf{height:1122.000000pt;}
.he{height:1122.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:96.000000pt;}
.w8{width:96.032000pt;}
.w12{width:113.472000pt;}
.wd{width:116.032000pt;}
.wb{width:121.312000pt;}
.wf{width:129.472000pt;}
.w3{width:184.986667pt;}
.w10{width:217.466667pt;}
.w7{width:229.506667pt;}
.wa{width:264.706667pt;}
.w11{width:302.466667pt;}
.we{width:311.906667pt;}
.w9{width:329.346667pt;}
.wc{width:359.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w5{width:793.919988pt;}
.w4{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:2.720000pt;}
.x18{left:6.720000pt;}
.x1{left:96.031988pt;}
.x9{left:100.032000pt;}
.x2{left:103.231988pt;}
.x25{left:114.911988pt;}
.xa{left:119.994667pt;}
.x6{left:122.911988pt;}
.x24{left:124.351988pt;}
.x5{left:134.106655pt;}
.xb{left:143.226655pt;}
.x26{left:153.946655pt;}
.xd{left:159.066655pt;}
.x14{left:164.986655pt;}
.x1c{left:176.346667pt;}
.x11{left:184.346667pt;}
.x1e{left:194.906655pt;}
.x17{left:204.026667pt;}
.xe{left:234.306667pt;}
.x4{left:239.386655pt;}
.x15{left:249.186655pt;}
.x2a{left:256.706655pt;}
.x27{left:267.906655pt;}
.x12{left:280.386667pt;}
.x16{left:291.906655pt;}
.x8{left:298.146655pt;}
.x1f{left:313.506667pt;}
.x1a{left:318.466655pt;}
.x10{left:330.306667pt;}
.x7{left:333.666655pt;}
.xc{left:371.906655pt;}
.x3{left:396.866655pt;}
.x19{left:468.733333pt;}
.x1d{left:488.253333pt;}
.x13{left:489.853322pt;}
.x1b{left:518.653333pt;}
.x23{left:554.653322pt;}
.x21{left:559.453322pt;}
.x22{left:566.973322pt;}
.x28{left:575.933322pt;}
.x29{left:580.413322pt;}
.x20{left:615.973333pt;}
}




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