
    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_001bc0aab2e1d85764aa07fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_1dea228ba3f2db4207babea1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_bd3f152710894b059abb6ab8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_e5903939f048982cb9dbd606.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.725000;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_0db574014dfb9c76ccb65a86.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_fa12be72910412293deefcdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_87fd976c64213b7bc9ac90f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_f4939a570732b2a40a1266b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.525000;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_4d6718c6186f665349c71d99.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.778000;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_8e9a57a42e8648d305cdb193.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_aa4671a428e83381ffe3dfbc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_b924fe47151eaad0252060e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_72cf46dcbdfe277a79c79baa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.737000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4283d68d05289152c834a47c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c26f4459e22735ba6f32b6e1.woff2')format("woff");}.fff{font-family:fff;line-height:0.958000;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:ff10;src:url('chunks/assets/font_52867470ad0cb466ca414000.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.799000;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:ff11;src:url('chunks/assets/font_001d4714ad6023ebcbc50eb8.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.655000;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:ff12;src:url('chunks/assets/font_aedaf1ae775a644c33911cb0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.688000;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:ff13;src:url('chunks/assets/font_1a54435eaeac039e02c0b88b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.901000;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:ff14;src:url('chunks/assets/font_80784b4cfe155b2b146ad8b7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.841000;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:ff15;src:url('chunks/assets/font_d5165f899cebf94f32c6fd3a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.390000;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v10{vertical-align:-38.856000px;}
.v2{vertical-align:-22.854000px;}
.v5{vertical-align:-8.964000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:15.114000px;}
.ve{vertical-align:17.268000px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.v7{vertical-align:26.664000px;}
.vb{vertical-align:31.470000px;}
.va{vertical-align:40.434000px;}
.v6{vertical-align:66.354000px;}
.vd{vertical-align:72.474000px;}
.v9{vertical-align:74.580000px;}
.vc{vertical-align:81.438000px;}
.v8{vertical-align:86.970000px;}
.vf{vertical-align:127.680000px;}
.ls28{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000062px;}
.ls8c{letter-spacing:0.001346px;}
.ls89{letter-spacing:0.001619px;}
.ls6b{letter-spacing:0.001690px;}
.ls9f{letter-spacing:0.001922px;}
.ls2e{letter-spacing:0.002012px;}
.ls1f{letter-spacing:0.002256px;}
.ls47{letter-spacing:0.002793px;}
.ls4e{letter-spacing:0.004275px;}
.ls55{letter-spacing:0.005309px;}
.ls75{letter-spacing:0.006246px;}
.ls14{letter-spacing:0.006649px;}
.ls21{letter-spacing:0.006815px;}
.ls99{letter-spacing:0.007300px;}
.ls6{letter-spacing:0.007718px;}
.ls6a{letter-spacing:0.008475px;}
.ls1d{letter-spacing:0.009757px;}
.ls97{letter-spacing:0.011721px;}
.ls5{letter-spacing:0.011772px;}
.ls7f{letter-spacing:0.015107px;}
.ls69{letter-spacing:0.017305px;}
.ls17{letter-spacing:0.018210px;}
.ls86{letter-spacing:0.018248px;}
.ls68{letter-spacing:0.018323px;}
.ls71{letter-spacing:0.018840px;}
.ls61{letter-spacing:0.020774px;}
.ls63{letter-spacing:0.021095px;}
.ls6c{letter-spacing:0.021817px;}
.ls5d{letter-spacing:0.023883px;}
.ls91{letter-spacing:0.024387px;}
.ls31{letter-spacing:0.024779px;}
.ls9a{letter-spacing:0.026155px;}
.ls60{letter-spacing:0.028654px;}
.ls24{letter-spacing:0.031184px;}
.ls74{letter-spacing:0.179327px;}
.ls62{letter-spacing:0.376589px;}
.ls82{letter-spacing:0.439799px;}
.ls58{letter-spacing:0.478205px;}
.ls41{letter-spacing:1.655249px;}
.ls67{letter-spacing:2.982564px;}
.ls40{letter-spacing:2.984525px;}
.lsd{letter-spacing:2.985089px;}
.ls5e{letter-spacing:2.985427px;}
.ls1{letter-spacing:2.988532px;}
.ls4f{letter-spacing:2.988564px;}
.ls3f{letter-spacing:2.990525px;}
.ls4{letter-spacing:2.991959px;}
.ls56{letter-spacing:2.993251px;}
.ls8d{letter-spacing:5.218445px;}
.ls96{letter-spacing:6.515540px;}
.ls3e{letter-spacing:7.161460px;}
.ls20{letter-spacing:8.308808px;}
.ls2b{letter-spacing:9.960300px;}
.ls2f{letter-spacing:10.161352px;}
.ls2d{letter-spacing:10.162363px;}
.ls22{letter-spacing:13.270183px;}
.ls18{letter-spacing:13.509286px;}
.ls16{letter-spacing:14.645022px;}
.ls7d{letter-spacing:14.764573px;}
.ls9{letter-spacing:15.332544px;}
.ls5c{letter-spacing:15.386342px;}
.ls70{letter-spacing:15.481880px;}
.ls8b{letter-spacing:15.762931px;}
.ls9e{letter-spacing:16.085722px;}
.ls66{letter-spacing:16.318739px;}
.ls77{letter-spacing:16.557841px;}
.ls27{letter-spacing:16.617617px;}
.ls9d{letter-spacing:16.677504px;}
.ls26{letter-spacing:16.856719px;}
.ls65{letter-spacing:17.095822px;}
.lsf{letter-spacing:17.454475px;}
.ls4b{letter-spacing:17.574026px;}
.ls4a{letter-spacing:17.633802px;}
.ls7e{letter-spacing:17.718564px;}
.ls90{letter-spacing:17.753353px;}
.lse{letter-spacing:17.872904px;}
.lsc{letter-spacing:18.410885px;}
.ls37{letter-spacing:18.590212px;}
.ls93{letter-spacing:18.709763px;}
.ls36{letter-spacing:18.769538px;}
.ls2c{letter-spacing:18.842012px;}
.ls81{letter-spacing:19.187968px;}
.ls4d{letter-spacing:19.247743px;}
.ls7b{letter-spacing:19.611089px;}
.ls35{letter-spacing:19.905275px;}
.ls72{letter-spacing:20.082564px;}
.ls39{letter-spacing:20.144377px;}
.ls11{letter-spacing:20.443255px;}
.ls48{letter-spacing:20.445333px;}
.ls92{letter-spacing:20.760564px;}
.lsa0{letter-spacing:20.873779px;}
.ls94{letter-spacing:21.220338px;}
.ls23{letter-spacing:21.578992px;}
.ls1e{letter-spacing:21.937645px;}
.ls13{letter-spacing:21.997421px;}
.ls2{letter-spacing:22.003546px;}
.ls3{letter-spacing:22.057344px;}
.ls80{letter-spacing:22.191789px;}
.ls7{letter-spacing:22.635427px;}
.ls8{letter-spacing:22.641427px;}
.ls52{letter-spacing:22.751251px;}
.ls79{letter-spacing:22.910525px;}
.ls78{letter-spacing:22.911089px;}
.ls7c{letter-spacing:23.073382px;}
.ls19{letter-spacing:23.316564px;}
.ls8f{letter-spacing:23.348506px;}
.ls12{letter-spacing:23.418564px;}
.ls73{letter-spacing:23.551586px;}
.ls1a{letter-spacing:23.611362px;}
.ls3b{letter-spacing:23.778538px;}
.ls5f{letter-spacing:23.886490px;}
.ls59{letter-spacing:23.910240px;}
.ls10{letter-spacing:23.970016px;}
.ls1b{letter-spacing:24.149342px;}
.ls95{letter-spacing:24.186564px;}
.ls38{letter-spacing:24.388445px;}
.ls7a{letter-spacing:24.926425px;}
.ls25{letter-spacing:24.948564px;}
.ls15{letter-spacing:24.984564px;}
.ls45{letter-spacing:25.165528px;}
.ls46{letter-spacing:25.225303px;}
.ls85{letter-spacing:25.500442px;}
.ls51{letter-spacing:25.942610px;}
.ls57{letter-spacing:26.420815px;}
.ls9b{letter-spacing:26.484564px;}
.ls76{letter-spacing:26.600142px;}
.ls1c{letter-spacing:27.126564px;}
.ls4c{letter-spacing:27.496776px;}
.ls87{letter-spacing:28.491427px;}
.ls8a{letter-spacing:28.497427px;}
.ls83{letter-spacing:28.566950px;}
.ls0{letter-spacing:28.580525px;}
.ls5a{letter-spacing:28.818564px;}
.ls8e{letter-spacing:29.320128px;}
.lsb{letter-spacing:29.469371px;}
.ls64{letter-spacing:29.588922px;}
.ls5b{letter-spacing:30.342564px;}
.ls6f{letter-spacing:31.023536px;}
.ls53{letter-spacing:31.092314px;}
.ls54{letter-spacing:31.095089px;}
.ls34{letter-spacing:31.621292px;}
.ls33{letter-spacing:31.923089px;}
.lsa2{letter-spacing:32.278824px;}
.lsa{letter-spacing:32.438525px;}
.ls88{letter-spacing:32.924621px;}
.ls84{letter-spacing:32.978419px;}
.ls44{letter-spacing:33.534112px;}
.ls50{letter-spacing:34.191643px;}
.ls32{letter-spacing:34.622525px;}
.ls6e{letter-spacing:35.446931px;}
.ls9c{letter-spacing:36.792564px;}
.ls6d{letter-spacing:38.421789px;}
.lsa1{letter-spacing:39.153018px;}
.ls98{letter-spacing:40.109428px;}
.ls3a{letter-spacing:142.528200px;}
.ls42{letter-spacing:161.394120px;}
.ls3d{letter-spacing:163.187388px;}
.ls3c{letter-spacing:189.796200px;}
.ls30{letter-spacing:252.970339px;}
.ls49{letter-spacing:312.626388px;}
.ls29{letter-spacing:382.384513px;}
.ls43{letter-spacing:730.099178px;}
.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;}
}
.ws1c{word-spacing:-38.937826px;}
.ws109{word-spacing:-36.448416px;}
.ws10{word-spacing:-36.071827px;}
.ws5b{word-spacing:-33.223278px;}
.ws5c{word-spacing:-31.633157px;}
.ws5a{word-spacing:-28.955301px;}
.wsb0{word-spacing:-22.320209px;}
.ws6c{word-spacing:-21.085776px;}
.ws6d{word-spacing:-21.079776px;}
.ws115{word-spacing:-19.092327px;}
.ws11a{word-spacing:-17.683534px;}
.ws1d{word-spacing:-16.605662px;}
.ws6{word-spacing:-15.359443px;}
.ws58{word-spacing:-13.531962px;}
.ws7{word-spacing:-12.617518px;}
.ws3e{word-spacing:-7.198601px;}
.wsd6{word-spacing:-6.419899px;}
.ws67{word-spacing:-4.477776px;}
.wse2{word-spacing:-4.425151px;}
.ws5d{word-spacing:-3.335478px;}
.ws47{word-spacing:-3.275703px;}
.wsc8{word-spacing:-3.215927px;}
.ws35{word-spacing:-3.156152px;}
.ws118{word-spacing:-3.096376px;}
.ws2a{word-spacing:-3.036600px;}
.wsab{word-spacing:-2.976825px;}
.wsd1{word-spacing:-2.857274px;}
.wsd2{word-spacing:-2.773588px;}
.ws22{word-spacing:-2.737722px;}
.ws73{word-spacing:-2.618171px;}
.ws139{word-spacing:-2.501626px;}
.wsd3{word-spacing:-2.379069px;}
.wsc3{word-spacing:-2.319293px;}
.wsef{word-spacing:-2.259518px;}
.ws28{word-spacing:-1.960640px;}
.wsca{word-spacing:-1.900864px;}
.ws69{word-spacing:-1.579776px;}
.ws13a{word-spacing:-1.425658px;}
.wsbb{word-spacing:-1.303108px;}
.wsf5{word-spacing:-1.123781px;}
.ws9{word-spacing:-1.102867px;}
.ws3f{word-spacing:-1.004230px;}
.ws12a{word-spacing:-0.726278px;}
.ws7b{word-spacing:-0.645576px;}
.ws53{word-spacing:-0.526025px;}
.wse1{word-spacing:-0.457286px;}
.ws24{word-spacing:-0.406474px;}
.ws11f{word-spacing:-0.403488px;}
.wsaf{word-spacing:-0.286923px;}
.ws26{word-spacing:-0.167372px;}
.ws131{word-spacing:-0.134496px;}
.ws4b{word-spacing:-0.107596px;}
.ws40{word-spacing:-0.059776px;}
.ws3d{word-spacing:-0.047820px;}
.wsa5{word-spacing:-0.026899px;}
.ws56{word-spacing:0.000000px;}
.ws64{word-spacing:0.011955px;}
.ws9d{word-spacing:0.026899px;}
.wsc5{word-spacing:0.035865px;}
.ws147{word-spacing:0.242093px;}
.ws8a{word-spacing:0.251058px;}
.wsd7{word-spacing:0.310833px;}
.ws127{word-spacing:0.349690px;}
.ws128{word-spacing:0.403488px;}
.wsbc{word-spacing:0.490160px;}
.ws142{word-spacing:0.564883px;}
.wscf{word-spacing:0.609711px;}
.ws122{word-spacing:0.618682px;}
.ws10f{word-spacing:0.672480px;}
.ws13d{word-spacing:0.780077px;}
.ws8d{word-spacing:0.848814px;}
.wsac{word-spacing:0.968365px;}
.ws7d{word-spacing:1.087916px;}
.wse9{word-spacing:1.147692px;}
.wse8{word-spacing:1.207467px;}
.wsf1{word-spacing:1.267243px;}
.ws130{word-spacing:1.318061px;}
.ws12e{word-spacing:1.371859px;}
.ws86{word-spacing:1.446570px;}
.ws72{word-spacing:1.625896px;}
.wsf6{word-spacing:1.745448px;}
.ws75{word-spacing:1.769358px;}
.ws39{word-spacing:1.805223px;}
.ws51{word-spacing:2.283428px;}
.ws12d{word-spacing:2.340230px;}
.ws52{word-spacing:2.343204px;}
.ws14{word-spacing:2.394029px;}
.ws9a{word-spacing:2.462755px;}
.ws12{word-spacing:2.555424px;}
.wscb{word-spacing:2.582306px;}
.ws20{word-spacing:2.642082px;}
.ws2d{word-spacing:2.701857px;}
.ws108{word-spacing:2.878214px;}
.wsed{word-spacing:2.881184px;}
.ws4{word-spacing:3.039610px;}
.ws5f{word-spacing:3.060511px;}
.wsa4{word-spacing:3.093408px;}
.ws1a{word-spacing:3.120286px;}
.ws87{word-spacing:3.180062px;}
.wsa{word-spacing:3.254803px;}
.ws21{word-spacing:3.299613px;}
.ws110{word-spacing:3.308602px;}
.ws50{word-spacing:3.359389px;}
.ws141{word-spacing:3.362400px;}
.ws13{word-spacing:3.469997px;}
.ws117{word-spacing:3.478940px;}
.ws65{word-spacing:3.513036px;}
.ws57{word-spacing:3.566834px;}
.ws71{word-spacing:3.598491px;}
.ws29{word-spacing:3.718042px;}
.ws2b{word-spacing:3.777818px;}
.ws10b{word-spacing:3.792787px;}
.wsc4{word-spacing:3.801728px;}
.ws25{word-spacing:3.837594px;}
.ws10a{word-spacing:3.846586px;}
.ws66{word-spacing:3.897369px;}
.wse5{word-spacing:3.954182px;}
.ws15{word-spacing:4.115578px;}
.wsd4{word-spacing:4.136472px;}
.ws76{word-spacing:4.256023px;}
.wse{word-spacing:4.276973px;}
.ws4a{word-spacing:4.315798px;}
.wsf{word-spacing:4.330771px;}
.ws60{word-spacing:4.495125px;}
.wsea{word-spacing:4.614676px;}
.ws8{word-spacing:4.627546px;}
.ws77{word-spacing:4.674452px;}
.wsee{word-spacing:4.734228px;}
.ws120{word-spacing:4.814957px;}
.ws9b{word-spacing:4.853779px;}
.ws11e{word-spacing:4.868755px;}
.ws6f{word-spacing:4.913554px;}
.ws19{word-spacing:5.092881px;}
.wse3{word-spacing:5.259224px;}
.ws13b{word-spacing:5.299142px;}
.ws4f{word-spacing:5.331984px;}
.ws27{word-spacing:5.391759px;}
.ws9c{word-spacing:5.460538px;}
.ws13e{word-spacing:5.514336px;}
.ws6b{word-spacing:5.690637px;}
.wsfc{word-spacing:5.810188px;}
.ws79{word-spacing:5.834099px;}
.ws145{word-spacing:5.837126px;}
.ws103{word-spacing:5.929740px;}
.ws126{word-spacing:5.998522px;}
.ws34{word-spacing:6.049291px;}
.ws124{word-spacing:6.052320px;}
.ws7c{word-spacing:6.057048px;}
.ws8b{word-spacing:6.060444px;}
.ws78{word-spacing:6.063048px;}
.wsc6{word-spacing:6.081089px;}
.ws99{word-spacing:6.228618px;}
.ws30{word-spacing:6.288393px;}
.ws8c{word-spacing:6.291089px;}
.ws116{word-spacing:6.348169px;}
.ws111{word-spacing:6.375110px;}
.ws143{word-spacing:6.428909px;}
.ws2f{word-spacing:6.467720px;}
.ws3b{word-spacing:6.527496px;}
.ws10d{word-spacing:6.644102px;}
.wsf3{word-spacing:6.647047px;}
.ws38{word-spacing:6.886149px;}
.ws2c{word-spacing:6.945925px;}
.ws6e{word-spacing:7.055682px;}
.ws49{word-spacing:7.065476px;}
.ws5{word-spacing:7.074490px;}
.wsf2{word-spacing:7.185027px;}
.ws74{word-spacing:7.304578px;}
.wsbd{word-spacing:7.483905px;}
.ws33{word-spacing:7.543681px;}
.ws11{word-spacing:7.558675px;}
.ws62{word-spacing:7.603456px;}
.wscd{word-spacing:7.782783px;}
.wsb{word-spacing:7.827667px;}
.ws61{word-spacing:7.842559px;}
.ws55{word-spacing:7.902334px;}
.wse6{word-spacing:7.935264px;}
.ws32{word-spacing:7.962110px;}
.wscc{word-spacing:8.081661px;}
.wsc{word-spacing:8.096659px;}
.ws146{word-spacing:8.204256px;}
.ws121{word-spacing:8.311853px;}
.ws7a{word-spacing:8.320764px;}
.wsf4{word-spacing:8.440315px;}
.wsbe{word-spacing:8.500090px;}
.wsa0{word-spacing:8.527046px;}
.ws6a{word-spacing:8.559866px;}
.ws144{word-spacing:8.580845px;}
.ws9f{word-spacing:8.801900px;}
.ws85{word-spacing:8.858744px;}
.ws84{word-spacing:8.918520px;}
.ws1{word-spacing:8.978295px;}
.ws54{word-spacing:9.157622px;}
.ws90{word-spacing:9.277173px;}
.wsec{word-spacing:9.456500px;}
.wsd9{word-spacing:9.603014px;}
.ws59{word-spacing:9.635827px;}
.ws3c{word-spacing:9.695602px;}
.ws7e{word-spacing:9.815154px;}
.ws136{word-spacing:9.979603px;}
.wsfb{word-spacing:10.114032px;}
.wsdd{word-spacing:10.140998px;}
.ws37{word-spacing:10.233583px;}
.ws18{word-spacing:10.293358px;}
.wsd0{word-spacing:10.412910px;}
.ws114{word-spacing:10.592236px;}
.ws119{word-spacing:10.711788px;}
.ws137{word-spacing:10.732781px;}
.ws92{word-spacing:10.771563px;}
.wsa2{word-spacing:10.840378px;}
.wsb1{word-spacing:10.891114px;}
.wsdc{word-spacing:10.947974px;}
.wsda{word-spacing:11.001773px;}
.ws1b{word-spacing:11.010666px;}
.wsa9{word-spacing:11.070441px;}
.ws89{word-spacing:11.488870px;}
.ws4d{word-spacing:11.548646px;}
.wsfa{word-spacing:11.572556px;}
.ws23{word-spacing:11.608422px;}
.wsde{word-spacing:11.754950px;}
.wsdf{word-spacing:11.808749px;}
.wseb{word-spacing:11.811659px;}
.wsc2{word-spacing:11.847524px;}
.wsba{word-spacing:11.967075px;}
.ws102{word-spacing:12.015048px;}
.ws91{word-spacing:12.146402px;}
.ws1f{word-spacing:12.206178px;}
.wse4{word-spacing:12.239136px;}
.ws5e{word-spacing:12.325729px;}
.ws94{word-spacing:12.385504px;}
.wsfe{word-spacing:12.445280px;}
.ws31{word-spacing:12.505056px;}
.wsb3{word-spacing:12.624607px;}
.ws45{word-spacing:12.744158px;}
.wsd5{word-spacing:12.863709px;}
.ws12c{word-spacing:12.992314px;}
.wsbf{word-spacing:12.995682px;}
.ws135{word-spacing:13.046112px;}
.wsf9{word-spacing:13.102812px;}
.wsdb{word-spacing:13.153709px;}
.wsae{word-spacing:13.162587px;}
.wsff{word-spacing:13.282138px;}
.wsc0{word-spacing:13.341914px;}
.wse7{word-spacing:13.604927px;}
.wsd{word-spacing:14.117900px;}
.ws112{word-spacing:14.144436px;}
.ws98{word-spacing:14.238548px;}
.wsfd{word-spacing:14.322234px;}
.ws17{word-spacing:14.358099px;}
.ws95{word-spacing:14.477650px;}
.ws11d{word-spacing:14.537426px;}
.wsb9{word-spacing:14.597202px;}
.ws83{word-spacing:14.656977px;}
.ws3a{word-spacing:14.713399px;}
.wsb8{word-spacing:14.836304px;}
.ws48{word-spacing:15.015631px;}
.ws97{word-spacing:15.075406px;}
.ws10e{word-spacing:15.296436px;}
.ws2e{word-spacing:15.314509px;}
.wsc9{word-spacing:15.493836px;}
.ws96{word-spacing:15.673162px;}
.ws8f{word-spacing:15.897048px;}
.ws12b{word-spacing:16.193318px;}
.ws46{word-spacing:16.450245px;}
.ws113{word-spacing:16.749123px;}
.ws1e{word-spacing:17.085089px;}
.ws104{word-spacing:17.167552px;}
.ws105{word-spacing:17.227328px;}
.ws7f{word-spacing:17.287104px;}
.ws42{word-spacing:17.394700px;}
.ws123{word-spacing:17.430682px;}
.ws88{word-spacing:17.565089px;}
.ws4e{word-spacing:17.577048px;}
.wsf0{word-spacing:17.693578px;}
.ws101{word-spacing:18.004411px;}
.ws12f{word-spacing:18.130061px;}
.wsce{word-spacing:18.171782px;}
.ws93{word-spacing:18.453048px;}
.wsf8{word-spacing:18.602167px;}
.wsb2{word-spacing:18.699048px;}
.ws129{word-spacing:19.044634px;}
.wsb7{word-spacing:19.199923px;}
.ws11b{word-spacing:19.558576px;}
.ws63{word-spacing:19.618352px;}
.ws13f{word-spacing:19.824710px;}
.ws36{word-spacing:19.977006px;}
.wsad{word-spacing:20.395435px;}
.ws106{word-spacing:20.634537px;}
.ws100{word-spacing:20.718223px;}
.wsc1{word-spacing:20.813864px;}
.ws44{word-spacing:21.292069px;}
.wsf7{word-spacing:21.435530px;}
.ws13c{word-spacing:21.734554px;}
.ws8e{word-spacing:21.770274px;}
.ws81{word-spacing:22.009376px;}
.wsaa{word-spacing:22.236523px;}
.wsc7{word-spacing:22.248478px;}
.ws125{word-spacing:22.433933px;}
.ws82{word-spacing:22.532234px;}
.ws4c{word-spacing:22.965786px;}
.ws138{word-spacing:24.047885px;}
.wsb5{word-spacing:24.938380px;}
.wsb6{word-spacing:25.269048px;}
.ws140{word-spacing:25.365946px;}
.ws70{word-spacing:26.301264px;}
.ws0{word-spacing:26.827469px;}
.ws3{word-spacing:27.544781px;}
.ws41{word-spacing:28.752064px;}
.ws134{word-spacing:28.862842px;}
.ws132{word-spacing:28.916640px;}
.ws80{word-spacing:31.035492px;}
.ws2{word-spacing:31.041677px;}
.ws11c{word-spacing:36.164238px;}
.ws43{word-spacing:37.837955px;}
.wsb4{word-spacing:41.185388px;}
.ws133{word-spacing:43.469107px;}
.ws9e{word-spacing:43.926394px;}
.ws16{word-spacing:45.959973px;}
.wsa1{word-spacing:57.752582px;}
.wsa3{word-spacing:60.065914px;}
.wsd8{word-spacing:84.053850px;}
.wse0{word-spacing:96.347982px;}
.wsa8{word-spacing:104.826182px;}
.ws68{word-spacing:114.524877px;}
.ws107{word-spacing:128.588636px;}
.wsa6{word-spacing:137.750803px;}
.ws10c{word-spacing:149.183914px;}
.wsa7{word-spacing:152.330170px;}
._30{margin-left:-27.078528px;}
._14{margin-left:-5.876114px;}
._5{margin-left:-4.626662px;}
._2{margin-left:-3.478963px;}
._0{margin-left:-2.223667px;}
._6{margin-left:-1.058035px;}
._f{width:1.045885px;}
._1{width:2.223667px;}
._2c{width:3.443098px;}
._10{width:4.835748px;}
._2d{width:6.222682px;}
._31{width:13.879987px;}
._15{width:16.097742px;}
._24{width:17.173703px;}
._9{width:19.008768px;}
._22{width:22.224522px;}
._29{width:23.402304px;}
._4{width:24.585869px;}
._a{width:25.841165px;}
._d{width:27.377225px;}
._16{width:28.453186px;}
._3{width:29.750515px;}
._25{width:31.322414px;}
._b{width:32.404390px;}
._23{width:34.311194px;}
._e{width:35.984911px;}
._8{width:37.425754px;}
._7{width:39.649421px;}
._11{width:41.693669px;}
._17{width:43.785815px;}
._27{width:44.891881px;}
._32{width:46.983936px;}
._28{width:48.902746px;}
._c{width:50.952752px;}
._18{width:53.260060px;}
._2b{width:56.201034px;}
._2a{width:57.593978px;}
._13{width:64.372969px;}
._19{width:70.045517px;}
._12{width:88.300540px;}
._26{width:95.288596px;}
._1a{width:105.767654px;}
._2f{width:131.026775px;}
._2e{width:140.100154px;}
._1c{width:154.993190px;}
._1b{width:173.984026px;}
._20{width:210.674534px;}
._1d{width:217.130342px;}
._1f{width:219.443674px;}
._1e{width:222.456384px;}
._21{width:265.441306px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:20.245680px;}
.fsd{font-size:21.743064px;}
.fs14{font-size:21.801024px;}
.fsb{font-size:28.473060px;}
.fs12{font-size:28.548960px;}
.fs9{font-size:28.922400px;}
.fs5{font-size:29.887800px;}
.fsc{font-size:31.061520px;}
.fs13{font-size:31.144320px;}
.fse{font-size:33.649980px;}
.fs15{font-size:33.739680px;}
.fs6{font-size:35.349600px;}
.fsf{font-size:35.418900px;}
.fs3{font-size:35.865600px;}
.fs7{font-size:38.563200px;}
.fs10{font-size:38.638800px;}
.fs8{font-size:41.776800px;}
.fs2{font-size:41.842800px;}
.fs11{font-size:41.858700px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y156{bottom:6.293748px;}
.y10a{bottom:7.166799px;}
.yf1{bottom:7.792980px;}
.y13f{bottom:7.808257px;}
.y155{bottom:16.289939px;}
.y109{bottom:17.136414px;}
.yf0{bottom:20.170361px;}
.y13e{bottom:20.209904px;}
.y157{bottom:21.272828px;}
.yf2{bottom:26.340222px;}
.y10b{bottom:32.715329px;}
.y140{bottom:37.015335px;}
.y103{bottom:37.812523px;}
.y102{bottom:47.597684px;}
.y101{bottom:48.783954px;}
.yf3{bottom:55.497617px;}
.y100{bottom:58.443584px;}
.yff{bottom:59.629854px;}
.y10c{bottom:62.293495px;}
.y141{bottom:67.208719px;}
.y158{bottom:68.269607px;}
.yfe{bottom:70.124267px;}
.y15d{bottom:79.188083px;}
.yfd{bottom:80.744211px;}
.y14c{bottom:84.571067px;}
.yf4{bottom:84.655011px;}
.y10d{bottom:91.871660px;}
.y142{bottom:97.402104px;}
.y36{bottom:103.411500px;}
.y113{bottom:105.409604px;}
.y7e{bottom:105.654000px;}
.yf5{bottom:113.812406px;}
.y159{bottom:115.266385px;}
.yfb{bottom:119.012161px;}
.y35{bottom:120.597000px;}
.y10e{bottom:121.449826px;}
.y7d{bottom:122.839500px;}
.y143{bottom:127.595488px;}
.y148{bottom:128.268427px;}
.y150{bottom:131.085839px;}
.y14d{bottom:132.126799px;}
.y181{bottom:136.779000px;}
.y34{bottom:137.782500px;}
.y7c{bottom:140.025000px;}
.yf6{bottom:142.969800px;}
.y114{bottom:149.217267px;}
.y10f{bottom:151.027992px;}
.y180{bottom:152.470500px;}
.y33{bottom:154.968000px;}
.yee{bottom:157.210500px;}
.y144{bottom:157.788872px;}
.y7b{bottom:159.238500px;}
.y115{bottom:160.712532px;}
.ycb{bottom:161.284500px;}
.ya4{bottom:161.470500px;}
.y15a{bottom:162.263164px;}
.y17f{bottom:168.162000px;}
.yf7{bottom:172.127195px;}
.y32{bottom:172.153500px;}
.y116{bottom:174.194263px;}
.yed{bottom:174.396000px;}
.y7a{bottom:176.424000px;}
.y14e{bottom:179.682531px;}
.y110{bottom:180.606157px;}
.y182{bottom:183.852000px;}
.y17e{bottom:183.853500px;}
.y13c{bottom:184.251000px;}
.y145{bottom:187.982257px;}
.y31{bottom:189.339000px;}
.y15e{bottom:191.291668px;}
.y79{bottom:193.609500px;}
.y4f{bottom:196.045500px;}
.ya3{bottom:198.609000px;}
.y17d{bottom:199.543500px;}
.yf8{bottom:201.284589px;}
.y13b{bottom:201.436500px;}
.yec{bottom:202.774500px;}
.y30{bottom:206.524500px;}
.y15b{bottom:209.259943px;}
.yca{bottom:210.040500px;}
.y111{bottom:210.184323px;}
.y78{bottom:210.795000px;}
.y4e{bottom:213.231000px;}
.y17c{bottom:215.235000px;}
.y146{bottom:218.175641px;}
.y13a{bottom:218.622000px;}
.y11a{bottom:225.711447px;}
.yc9{bottom:227.226000px;}
.y14f{bottom:227.238263px;}
.y2f{bottom:227.455500px;}
.y77{bottom:227.980500px;}
.y123{bottom:228.295500px;}
.y4d{bottom:230.416500px;}
.yf9{bottom:230.441984px;}
.y17b{bottom:230.926500px;}
.y14b{bottom:235.655928px;}
.y119{bottom:235.852952px;}
.y112{bottom:239.762489px;}
.yeb{bottom:241.219500px;}
.yc8{bottom:244.411500px;}
.y2e{bottom:244.641000px;}
.y122{bottom:245.481000px;}
.y139{bottom:245.664000px;}
.y118{bottom:246.398905px;}
.y17a{bottom:246.618000px;}
.y160{bottom:247.121258px;}
.y147{bottom:248.369026px;}
.y14a{bottom:248.774505px;}
.ya2{bottom:249.304500px;}
.y15c{bottom:256.256722px;}
.yfa{bottom:259.599378px;}
.yc7{bottom:261.597000px;}
.y2d{bottom:261.826500px;}
.y117{bottom:262.097510px;}
.y179{bottom:262.308000px;}
.y121{bottom:262.666500px;}
.y138{bottom:262.849500px;}
.y15f{bottom:262.861711px;}
.y72{bottom:266.406000px;}
.ya1{bottom:266.490000px;}
.yfc{bottom:267.777739px;}
.y149{bottom:268.302695px;}
.y75{bottom:271.426500px;}
.y4c{bottom:275.472000px;}
.y76{bottom:276.657000px;}
.y178{bottom:277.999500px;}
.yc6{bottom:278.782500px;}
.y2c{bottom:279.012000px;}
.y120{bottom:279.852000px;}
.y137{bottom:280.035000px;}
.y74{bottom:280.393500px;}
.ya0{bottom:283.675500px;}
.y71{bottom:286.767000px;}
.y73{bottom:289.359000px;}
.yea{bottom:290.763000px;}
.y4b{bottom:292.657500px;}
.yc5{bottom:295.968000px;}
.y2b{bottom:296.197500px;}
.y136{bottom:307.077000px;}
.ye9{bottom:307.948500px;}
.y4a{bottom:309.843000px;}
.yc4{bottom:313.153500px;}
.y9f{bottom:313.377000px;}
.y2a{bottom:313.383000px;}
.y70{bottom:322.557000px;}
.y135{bottom:324.262500px;}
.ye8{bottom:325.134000px;}
.y49{bottom:327.030000px;}
.yc3{bottom:330.339000px;}
.y9e{bottom:330.562500px;}
.y29{bottom:330.568500px;}
.y6f{bottom:339.742500px;}
.y134{bottom:341.448000px;}
.ye7{bottom:342.319500px;}
.yc2{bottom:347.524500px;}
.y28{bottom:347.754000px;}
.y11f{bottom:348.646500px;}
.y177{bottom:358.137000px;}
.y6e{bottom:358.956000px;}
.y9d{bottom:360.448500px;}
.ye6{bottom:361.308000px;}
.y165{bottom:363.741000px;}
.y11e{bottom:364.336500px;}
.yc1{bottom:364.710000px;}
.y27{bottom:364.939500px;}
.y133{bottom:368.328000px;}
.y48{bottom:372.085500px;}
.y176{bottom:375.322500px;}
.y6d{bottom:376.141500px;}
.y9c{bottom:377.634000px;}
.y164{bottom:379.432500px;}
.y11d{bottom:380.028000px;}
.y26{bottom:382.125000px;}
.y132{bottom:385.513500px;}
.y47{bottom:389.271000px;}
.ye5{bottom:389.686500px;}
.y175{bottom:392.508000px;}
.y163{bottom:395.122500px;}
.y11c{bottom:395.719500px;}
.y131{bottom:402.699000px;}
.y25{bottom:403.056000px;}
.yc0{bottom:403.155000px;}
.y46{bottom:406.456500px;}
.ye4{bottom:406.872000px;}
.y6c{bottom:407.014500px;}
.y9b{bottom:407.334000px;}
.y174{bottom:409.693500px;}
.y162{bottom:410.814000px;}
.y11b{bottom:411.411000px;}
.y130{bottom:419.884500px;}
.y24{bottom:420.241500px;}
.y45{bottom:423.642000px;}
.ye3{bottom:424.057500px;}
.y9a{bottom:424.519500px;}
.y161{bottom:426.505500px;}
.y173{bottom:426.879000px;}
.y6b{bottom:427.375500px;}
.y23{bottom:437.427000px;}
.y44{bottom:440.827500px;}
.y108{bottom:442.045500px;}
.y6a{bottom:447.466500px;}
.ybf{bottom:451.911000px;}
.ye2{bottom:452.818500px;}
.y22{bottom:454.612500px;}
.y154{bottom:457.140000px;}
.y12f{bottom:458.331000px;}
.y99{bottom:463.152000px;}
.y172{bottom:467.289000px;}
.y69{bottom:467.827500px;}
.ybe{bottom:469.096500px;}
.ye1{bottom:470.004000px;}
.y21{bottom:471.798000px;}
.y171{bottom:484.474500px;}
.y43{bottom:485.883000px;}
.ybd{bottom:486.282000px;}
.ye0{bottom:487.189500px;}
.y20{bottom:488.983500px;}
.y170{bottom:501.660000px;}
.y42{bottom:503.068500px;}
.y68{bottom:503.392500px;}
.ybc{bottom:503.467500px;}
.y1f{bottom:506.169000px;}
.y12e{bottom:507.133500px;}
.y98{bottom:513.847500px;}
.ydf{bottom:515.949000px;}
.y16f{bottom:518.845500px;}
.y41{bottom:520.254000px;}
.y67{bottom:520.578000px;}
.ybb{bottom:520.653000px;}
.y1e{bottom:523.354500px;}
.y12d{bottom:524.319000px;}
.y97{bottom:531.033000px;}
.yde{bottom:533.134500px;}
.y16e{bottom:536.031000px;}
.y40{bottom:537.441000px;}
.yba{bottom:537.838500px;}
.y1d{bottom:540.540000px;}
.y12c{bottom:541.504500px;}
.y96{bottom:548.218500px;}
.y16d{bottom:553.216500px;}
.y3f{bottom:554.626500px;}
.yb9{bottom:555.024000px;}
.y1c{bottom:557.725500px;}
.y12b{bottom:558.690000px;}
.y66{bottom:561.052500px;}
.ydd{bottom:561.513000px;}
.y95{bottom:565.404000px;}
.yb8{bottom:572.209500px;}
.y12a{bottom:575.875500px;}
.y1b{bottom:578.656500px;}
.ydc{bottom:578.698500px;}
.y94{bottom:582.589500px;}
.yb7{bottom:589.395000px;}
.y129{bottom:593.061000px;}
.y16c{bottom:593.206500px;}
.y3e{bottom:595.702500px;}
.y1a{bottom:595.842000px;}
.ydb{bottom:595.884000px;}
.y93{bottom:599.962500px;}
.y128{bottom:610.246500px;}
.y16b{bottom:610.392000px;}
.y19{bottom:613.027500px;}
.y65{bottom:616.665000px;}
.y3d{bottom:616.867500px;}
.y92{bottom:617.148000px;}
.y64{bottom:626.916000px;}
.y127{bottom:627.432000px;}
.y16a{bottom:627.577500px;}
.y18{bottom:630.213000px;}
.yb6{bottom:630.598500px;}
.y3c{bottom:634.053000px;}
.yda{bottom:634.329000px;}
.y91{bottom:634.333500px;}
.y126{bottom:644.617500px;}
.y169{bottom:644.763000px;}
.y17{bottom:647.398500px;}
.yb5{bottom:650.383500px;}
.y3b{bottom:651.238500px;}
.y90{bottom:651.519000px;}
.y125{bottom:661.803000px;}
.y16{bottom:664.584000px;}
.y3a{bottom:668.424000px;}
.y8f{bottom:668.704500px;}
.yb4{bottom:669.571500px;}
.y63{bottom:671.634000px;}
.y168{bottom:681.763500px;}
.y15{bottom:681.769500px;}
.yd9{bottom:683.872500px;}
.y39{bottom:685.609500px;}
.y8e{bottom:685.890000px;}
.y62{bottom:688.819500px;}
.yb3{bottom:689.358000px;}
.y167{bottom:698.949000px;}
.y14{bottom:698.955000px;}
.y124{bottom:700.249500px;}
.yd8{bottom:701.058000px;}
.y38{bottom:702.795000px;}
.y8d{bottom:703.075500px;}
.y61{bottom:708.034500px;}
.yb2{bottom:715.270500px;}
.y166{bottom:716.134500px;}
.yd7{bottom:718.243500px;}
.y37{bottom:719.980500px;}
.y60{bottom:725.220000px;}
.yd6{bottom:735.429000px;}
.y13{bottom:741.145500px;}
.y8c{bottom:741.706500px;}
.y5f{bottom:742.405500px;}
.y107{bottom:750.685500px;}
.yb1{bottom:756.024000px;}
.y5e{bottom:759.591000px;}
.yd5{bottom:763.807500px;}
.y153{bottom:765.822000px;}
.y106{bottom:766.375500px;}
.yb0{bottom:773.209500px;}
.y5d{bottom:776.776500px;}
.y8b{bottom:778.845000px;}
.y152{bottom:781.513500px;}
.y105{bottom:782.067000px;}
.y12{bottom:787.845000px;}
.yd4{bottom:792.567000px;}
.y5c{bottom:793.962000px;}
.y151{bottom:797.205000px;}
.y104{bottom:797.758500px;}
.y11{bottom:803.536500px;}
.yaf{bottom:811.654500px;}
.y10{bottom:819.228000px;}
.yd3{bottom:821.326500px;}
.y13d{bottom:827.839500px;}
.yef{bottom:828.393000px;}
.y8a{bottom:829.540500px;}
.y5b{bottom:833.209500px;}
.yf{bottom:834.919500px;}
.y5a{bottom:838.363500px;}
.y89{bottom:846.726000px;}
.yd2{bottom:849.706500px;}
.ye{bottom:850.609500px;}
.y57{bottom:854.715000px;}
.y191{bottom:859.576500px;}
.y88{bottom:863.911500px;}
.y59{bottom:865.102500px;}
.yd{bottom:866.301000px;}
.y58{bottom:870.256500px;}
.y190{bottom:875.268000px;}
.y87{bottom:881.097000px;}
.yae{bottom:881.521500px;}
.yc{bottom:881.992500px;}
.yd1{bottom:888.151500px;}
.y193{bottom:890.958000px;}
.y18f{bottom:890.959500px;}
.yb{bottom:897.684000px;}
.y86{bottom:898.282500px;}
.yad{bottom:900.709500px;}
.y18e{bottom:906.649500px;}
.y56{bottom:908.746500px;}
.ya{bottom:913.375500px;}
.yac{bottom:919.897500px;}
.y18d{bottom:922.341000px;}
.yd0{bottom:925.102500px;}
.y55{bottom:925.932000px;}
.y85{bottom:927.982500px;}
.y9{bottom:929.065500px;}
.y18c{bottom:938.032500px;}
.yab{bottom:939.085500px;}
.y8{bottom:944.757000px;}
.y84{bottom:945.169500px;}
.y18b{bottom:953.724000px;}
.yaa{bottom:958.870500px;}
.y7{bottom:960.448500px;}
.y54{bottom:962.119500px;}
.y83{bottom:962.355000px;}
.y18a{bottom:969.414000px;}
.ycf{bottom:974.644500px;}
.ya9{bottom:984.783000px;}
.y189{bottom:985.105500px;}
.y6{bottom:985.852500px;}
.yce{bottom:991.831500px;}
.y82{bottom:992.241000px;}
.y53{bottom:998.305500px;}
.ya8{bottom:1000.474500px;}
.y188{bottom:1000.797000px;}
.y5{bottom:1007.257500px;}
.ycd{bottom:1009.017000px;}
.y81{bottom:1009.426500px;}
.y52{bottom:1015.491000px;}
.y187{bottom:1016.488500px;}
.y4{bottom:1022.949000px;}
.ycc{bottom:1026.202500px;}
.y80{bottom:1026.612000px;}
.y192{bottom:1032.178500px;}
.y186{bottom:1032.180000px;}
.y3{bottom:1038.157500px;}
.ya7{bottom:1043.388000px;}
.y185{bottom:1047.870000px;}
.y51{bottom:1055.964000px;}
.y7f{bottom:1056.312000px;}
.ya6{bottom:1060.573500px;}
.y184{bottom:1063.561500px;}
.y2{bottom:1074.022500px;}
.ya5{bottom:1077.759000px;}
.y183{bottom:1079.253000px;}
.y1{bottom:1094.944500px;}
.y50{bottom:1133.799000px;}
.h12{height:2.391024px;}
.h1b{height:18.808237px;}
.h1f{height:20.199306px;}
.h3{height:25.249382px;}
.h1d{height:26.451473px;}
.h26{height:26.521984px;}
.h1a{height:26.868910px;}
.h1e{height:28.856152px;}
.h27{height:28.933073px;}
.h20{height:31.597331px;}
.h28{height:31.681560px;}
.h17{height:32.839778px;}
.h22{height:32.904158px;}
.h18{height:35.825213px;}
.h23{height:35.895445px;}
.h6{height:37.658880px;}
.h19{height:39.228415px;}
.h24{height:39.305319px;}
.h4{height:40.348800px;}
.h8{height:42.799330px;}
.h7{height:44.831700px;}
.h5{height:48.103382px;}
.h1{height:50.068378px;}
.h2{height:51.147331px;}
.h14{height:51.153331px;}
.h15{height:59.945700px;}
.h9{height:68.745024px;}
.hc{height:85.265700px;}
.h13{height:85.271700px;}
.he{height:85.835700px;}
.ha{height:93.032675px;}
.h10{height:95.145331px;}
.hd{height:126.269700px;}
.h11{height:130.071024px;}
.hb{height:130.853700px;}
.hf{height:132.591331px;}
.h1c{height:273.146999px;}
.h25{height:273.940654px;}
.h16{height:281.495794px;}
.h21{height:282.047644px;}
.h0{height:1188.000000px;}
.w2{width:365.823816px;}
.w4{width:365.828969px;}
.w3{width:685.926795px;}
.w1{width:685.934083px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x44{left:10.564152px;}
.x45{left:11.838160px;}
.x37{left:13.115505px;}
.x43{left:15.660183px;}
.x36{left:19.442280px;}
.x41{left:25.852244px;}
.x34{left:39.125580px;}
.x53{left:44.383466px;}
.x47{left:60.116984px;}
.x4b{left:61.229491px;}
.xb{left:81.000000px;}
.x57{left:87.912000px;}
.x54{left:92.320199px;}
.xa{left:95.944500px;}
.x48{left:100.759500px;}
.x2d{left:102.154500px;}
.x58{left:108.480000px;}
.x2c{left:111.292500px;}
.x4d{left:115.670212px;}
.x46{left:117.381403px;}
.x33{left:119.109000px;}
.x2b{left:127.011000px;}
.x11{left:130.669500px;}
.x16{left:140.890500px;}
.x1c{left:142.234500px;}
.x19{left:143.685000px;}
.x1a{left:145.941000px;}
.x4c{left:148.988631px;}
.x35{left:157.483071px;}
.x38{left:159.045935px;}
.x18{left:160.965000px;}
.x8{left:163.192500px;}
.x42{left:171.506506px;}
.x2e{left:172.690500px;}
.x7{left:177.015000px;}
.x1d{left:180.049500px;}
.x1e{left:182.305500px;}
.x9{left:186.484500px;}
.x12{left:195.694500px;}
.x1f{left:201.289500px;}
.x3{left:211.123500px;}
.x2{left:217.447500px;}
.x17{left:223.332000px;}
.x1b{left:229.258500px;}
.x20{left:237.373500px;}
.x39{left:245.146837px;}
.x3a{left:256.371920px;}
.x5{left:293.149500px;}
.x1{left:296.833500px;}
.x13{left:298.639500px;}
.x21{left:306.496500px;}
.x55{left:308.767546px;}
.x14{left:323.056500px;}
.x22{left:325.482000px;}
.x15{left:329.076000px;}
.x23{left:347.214000px;}
.x50{left:351.456110px;}
.x3d{left:355.412109px;}
.x4f{left:357.392801px;}
.x3c{left:361.738884px;}
.x6{left:379.683000px;}
.x3b{left:381.422184px;}
.x4{left:386.335500px;}
.x52{left:407.059758px;}
.x4e{left:408.399109px;}
.x51{left:457.670381px;}
.xc{left:475.521000px;}
.x59{left:482.431500px;}
.xd{left:490.464000px;}
.xe{left:495.280500px;}
.x28{left:499.432500px;}
.x3e{left:502.930509px;}
.x25{left:510.574500px;}
.xf{left:512.880000px;}
.x30{left:523.165500px;}
.x49{left:558.250500px;}
.x2a{left:563.607000px;}
.x32{left:567.046500px;}
.x56{left:570.097500px;}
.x24{left:579.016500px;}
.x4a{left:581.542500px;}
.x26{left:584.428500px;}
.x3f{left:587.443441px;}
.x2f{left:593.745000px;}
.x40{left:598.668524px;}
.x29{left:604.368000px;}
.x27{left:607.884000px;}
.x31{left:658.059000px;}
.x10{left:835.669500px;}
@media print{
.v10{vertical-align:-34.538667pt;}
.v2{vertical-align:-20.314667pt;}
.v5{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:13.434667pt;}
.ve{vertical-align:15.349333pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.v7{vertical-align:23.701333pt;}
.vb{vertical-align:27.973333pt;}
.va{vertical-align:35.941333pt;}
.v6{vertical-align:58.981333pt;}
.vd{vertical-align:64.421333pt;}
.v9{vertical-align:66.293333pt;}
.vc{vertical-align:72.389333pt;}
.v8{vertical-align:77.306667pt;}
.vf{vertical-align:113.493333pt;}
.ls28{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000055pt;}
.ls8c{letter-spacing:0.001196pt;}
.ls89{letter-spacing:0.001439pt;}
.ls6b{letter-spacing:0.001503pt;}
.ls9f{letter-spacing:0.001708pt;}
.ls2e{letter-spacing:0.001788pt;}
.ls1f{letter-spacing:0.002006pt;}
.ls47{letter-spacing:0.002482pt;}
.ls4e{letter-spacing:0.003800pt;}
.ls55{letter-spacing:0.004719pt;}
.ls75{letter-spacing:0.005552pt;}
.ls14{letter-spacing:0.005910pt;}
.ls21{letter-spacing:0.006058pt;}
.ls99{letter-spacing:0.006489pt;}
.ls6{letter-spacing:0.006861pt;}
.ls6a{letter-spacing:0.007534pt;}
.ls1d{letter-spacing:0.008673pt;}
.ls97{letter-spacing:0.010419pt;}
.ls5{letter-spacing:0.010464pt;}
.ls7f{letter-spacing:0.013429pt;}
.ls69{letter-spacing:0.015382pt;}
.ls17{letter-spacing:0.016187pt;}
.ls86{letter-spacing:0.016220pt;}
.ls68{letter-spacing:0.016287pt;}
.ls71{letter-spacing:0.016747pt;}
.ls61{letter-spacing:0.018466pt;}
.ls63{letter-spacing:0.018751pt;}
.ls6c{letter-spacing:0.019393pt;}
.ls5d{letter-spacing:0.021229pt;}
.ls91{letter-spacing:0.021677pt;}
.ls31{letter-spacing:0.022026pt;}
.ls9a{letter-spacing:0.023249pt;}
.ls60{letter-spacing:0.025470pt;}
.ls24{letter-spacing:0.027719pt;}
.ls74{letter-spacing:0.159402pt;}
.ls62{letter-spacing:0.334746pt;}
.ls82{letter-spacing:0.390933pt;}
.ls58{letter-spacing:0.425071pt;}
.ls41{letter-spacing:1.471333pt;}
.ls67{letter-spacing:2.651168pt;}
.ls40{letter-spacing:2.652911pt;}
.lsd{letter-spacing:2.653413pt;}
.ls5e{letter-spacing:2.653713pt;}
.ls1{letter-spacing:2.656473pt;}
.ls4f{letter-spacing:2.656501pt;}
.ls3f{letter-spacing:2.658245pt;}
.ls4{letter-spacing:2.659519pt;}
.ls56{letter-spacing:2.660667pt;}
.ls8d{letter-spacing:4.638618pt;}
.ls96{letter-spacing:5.791591pt;}
.ls3e{letter-spacing:6.365742pt;}
.ls20{letter-spacing:7.385607pt;}
.ls2b{letter-spacing:8.853600pt;}
.ls2f{letter-spacing:9.032313pt;}
.ls2d{letter-spacing:9.033212pt;}
.ls22{letter-spacing:11.795718pt;}
.ls18{letter-spacing:12.008254pt;}
.ls16{letter-spacing:13.017797pt;}
.ls7d{letter-spacing:13.124065pt;}
.ls9{letter-spacing:13.628928pt;}
.ls5c{letter-spacing:13.676749pt;}
.ls70{letter-spacing:13.761671pt;}
.ls8b{letter-spacing:14.011494pt;}
.ls9e{letter-spacing:14.298419pt;}
.ls66{letter-spacing:14.505546pt;}
.ls77{letter-spacing:14.718081pt;}
.ls27{letter-spacing:14.771215pt;}
.ls9d{letter-spacing:14.824448pt;}
.ls26{letter-spacing:14.983750pt;}
.ls65{letter-spacing:15.196286pt;}
.lsf{letter-spacing:15.515089pt;}
.ls4b{letter-spacing:15.621357pt;}
.ls4a{letter-spacing:15.674491pt;}
.ls7e{letter-spacing:15.749835pt;}
.ls90{letter-spacing:15.780758pt;}
.lse{letter-spacing:15.887026pt;}
.lsc{letter-spacing:16.365231pt;}
.ls37{letter-spacing:16.524633pt;}
.ls93{letter-spacing:16.630900pt;}
.ls36{letter-spacing:16.684034pt;}
.ls2c{letter-spacing:16.748455pt;}
.ls81{letter-spacing:17.055971pt;}
.ls4d{letter-spacing:17.109105pt;}
.ls7b{letter-spacing:17.432079pt;}
.ls35{letter-spacing:17.693578pt;}
.ls72{letter-spacing:17.851168pt;}
.ls39{letter-spacing:17.906113pt;}
.ls11{letter-spacing:18.171782pt;}
.ls48{letter-spacing:18.173629pt;}
.ls92{letter-spacing:18.453835pt;}
.lsa0{letter-spacing:18.554470pt;}
.ls94{letter-spacing:18.862523pt;}
.ls23{letter-spacing:19.181326pt;}
.ls1e{letter-spacing:19.500129pt;}
.ls13{letter-spacing:19.553263pt;}
.ls2{letter-spacing:19.558707pt;}
.ls3{letter-spacing:19.606528pt;}
.ls80{letter-spacing:19.726034pt;}
.ls7{letter-spacing:20.120380pt;}
.ls8{letter-spacing:20.125713pt;}
.ls52{letter-spacing:20.223334pt;}
.ls79{letter-spacing:20.364911pt;}
.ls78{letter-spacing:20.365413pt;}
.ls7c{letter-spacing:20.509673pt;}
.ls19{letter-spacing:20.725835pt;}
.ls8f{letter-spacing:20.754227pt;}
.ls12{letter-spacing:20.816501pt;}
.ls73{letter-spacing:20.934743pt;}
.ls1a{letter-spacing:20.987877pt;}
.ls3b{letter-spacing:21.136479pt;}
.ls5f{letter-spacing:21.232435pt;}
.ls59{letter-spacing:21.253547pt;}
.ls10{letter-spacing:21.306681pt;}
.ls1b{letter-spacing:21.466082pt;}
.ls95{letter-spacing:21.499168pt;}
.ls38{letter-spacing:21.678618pt;}
.ls7a{letter-spacing:22.156822pt;}
.ls25{letter-spacing:22.176501pt;}
.ls15{letter-spacing:22.208501pt;}
.ls45{letter-spacing:22.369358pt;}
.ls46{letter-spacing:22.422492pt;}
.ls85{letter-spacing:22.667059pt;}
.ls51{letter-spacing:23.060098pt;}
.ls57{letter-spacing:23.485169pt;}
.ls9b{letter-spacing:23.541835pt;}
.ls76{letter-spacing:23.644571pt;}
.ls1c{letter-spacing:24.112501pt;}
.ls4c{letter-spacing:24.441579pt;}
.ls87{letter-spacing:25.325713pt;}
.ls8a{letter-spacing:25.331046pt;}
.ls83{letter-spacing:25.392845pt;}
.ls0{letter-spacing:25.404911pt;}
.ls5a{letter-spacing:25.616501pt;}
.ls8e{letter-spacing:26.062336pt;}
.lsb{letter-spacing:26.194996pt;}
.ls64{letter-spacing:26.301264pt;}
.ls5b{letter-spacing:26.971168pt;}
.ls6f{letter-spacing:27.576477pt;}
.ls53{letter-spacing:27.637613pt;}
.ls54{letter-spacing:27.640079pt;}
.ls34{letter-spacing:28.107815pt;}
.ls33{letter-spacing:28.376079pt;}
.lsa2{letter-spacing:28.692288pt;}
.lsa{letter-spacing:28.834245pt;}
.ls88{letter-spacing:29.266330pt;}
.ls84{letter-spacing:29.314150pt;}
.ls44{letter-spacing:29.808099pt;}
.ls50{letter-spacing:30.392572pt;}
.ls32{letter-spacing:30.775578pt;}
.ls6e{letter-spacing:31.508383pt;}
.ls9c{letter-spacing:32.704501pt;}
.ls6d{letter-spacing:34.152701pt;}
.lsa1{letter-spacing:34.802683pt;}
.ls98{letter-spacing:35.652825pt;}
.ls3a{letter-spacing:126.691733pt;}
.ls42{letter-spacing:143.461440pt;}
.ls3d{letter-spacing:145.055456pt;}
.ls3c{letter-spacing:168.707733pt;}
.ls30{letter-spacing:224.862524pt;}
.ls49{letter-spacing:277.890123pt;}
.ls29{letter-spacing:339.897345pt;}
.ls43{letter-spacing:648.977047pt;}
.ws1c{word-spacing:-34.611401pt;}
.ws109{word-spacing:-32.398592pt;}
.ws10{word-spacing:-32.063846pt;}
.ws5b{word-spacing:-29.531803pt;}
.ws5c{word-spacing:-28.118362pt;}
.ws5a{word-spacing:-25.738045pt;}
.wsb0{word-spacing:-19.840186pt;}
.ws6c{word-spacing:-18.742912pt;}
.ws6d{word-spacing:-18.737579pt;}
.ws115{word-spacing:-16.970957pt;}
.ws11a{word-spacing:-15.718697pt;}
.ws1d{word-spacing:-14.760588pt;}
.ws6{word-spacing:-13.652838pt;}
.ws58{word-spacing:-12.028410pt;}
.ws7{word-spacing:-11.215572pt;}
.ws3e{word-spacing:-6.398756pt;}
.wsd6{word-spacing:-5.706577pt;}
.ws67{word-spacing:-3.980246pt;}
.wse2{word-spacing:-3.933467pt;}
.ws5d{word-spacing:-2.964870pt;}
.ws47{word-spacing:-2.911736pt;}
.wsc8{word-spacing:-2.858602pt;}
.ws35{word-spacing:-2.805468pt;}
.ws118{word-spacing:-2.752334pt;}
.ws2a{word-spacing:-2.699200pt;}
.wsab{word-spacing:-2.646067pt;}
.wsd1{word-spacing:-2.539799pt;}
.wsd2{word-spacing:-2.465411pt;}
.ws22{word-spacing:-2.433531pt;}
.ws73{word-spacing:-2.327263pt;}
.ws139{word-spacing:-2.223667pt;}
.wsd3{word-spacing:-2.114728pt;}
.wsc3{word-spacing:-2.061594pt;}
.wsef{word-spacing:-2.008460pt;}
.ws28{word-spacing:-1.742791pt;}
.wsca{word-spacing:-1.689657pt;}
.ws69{word-spacing:-1.404246pt;}
.ws13a{word-spacing:-1.267251pt;}
.wsbb{word-spacing:-1.158318pt;}
.wsf5{word-spacing:-0.998917pt;}
.ws9{word-spacing:-0.980326pt;}
.ws3f{word-spacing:-0.892649pt;}
.ws12a{word-spacing:-0.645581pt;}
.ws7b{word-spacing:-0.573846pt;}
.ws53{word-spacing:-0.467578pt;}
.wse1{word-spacing:-0.406477pt;}
.ws24{word-spacing:-0.361310pt;}
.ws11f{word-spacing:-0.358656pt;}
.wsaf{word-spacing:-0.255043pt;}
.ws26{word-spacing:-0.148775pt;}
.ws131{word-spacing:-0.119552pt;}
.ws4b{word-spacing:-0.095641pt;}
.ws40{word-spacing:-0.053134pt;}
.ws3d{word-spacing:-0.042507pt;}
.wsa5{word-spacing:-0.023910pt;}
.ws56{word-spacing:0.000000pt;}
.ws64{word-spacing:0.010627pt;}
.ws9d{word-spacing:0.023910pt;}
.wsc5{word-spacing:0.031880pt;}
.ws147{word-spacing:0.215194pt;}
.ws8a{word-spacing:0.223162pt;}
.wsd7{word-spacing:0.276296pt;}
.ws127{word-spacing:0.310835pt;}
.ws128{word-spacing:0.358656pt;}
.wsbc{word-spacing:0.435698pt;}
.ws142{word-spacing:0.502118pt;}
.wscf{word-spacing:0.541965pt;}
.ws122{word-spacing:0.549939pt;}
.ws10f{word-spacing:0.597760pt;}
.ws13d{word-spacing:0.693402pt;}
.ws8d{word-spacing:0.754501pt;}
.wsac{word-spacing:0.860769pt;}
.ws7d{word-spacing:0.967036pt;}
.wse9{word-spacing:1.020170pt;}
.wse8{word-spacing:1.073304pt;}
.wsf1{word-spacing:1.126438pt;}
.ws130{word-spacing:1.171610pt;}
.ws12e{word-spacing:1.219430pt;}
.ws86{word-spacing:1.285840pt;}
.ws72{word-spacing:1.445241pt;}
.wsf6{word-spacing:1.551509pt;}
.ws75{word-spacing:1.572762pt;}
.ws39{word-spacing:1.604643pt;}
.ws51{word-spacing:2.029714pt;}
.ws12d{word-spacing:2.080205pt;}
.ws52{word-spacing:2.082848pt;}
.ws14{word-spacing:2.128026pt;}
.ws9a{word-spacing:2.189115pt;}
.ws12{word-spacing:2.271488pt;}
.wscb{word-spacing:2.295383pt;}
.ws20{word-spacing:2.348517pt;}
.ws2d{word-spacing:2.401651pt;}
.ws108{word-spacing:2.558413pt;}
.wsed{word-spacing:2.561052pt;}
.ws4{word-spacing:2.701875pt;}
.ws5f{word-spacing:2.720454pt;}
.wsa4{word-spacing:2.749696pt;}
.ws1a{word-spacing:2.773588pt;}
.ws87{word-spacing:2.826722pt;}
.wsa{word-spacing:2.893158pt;}
.ws21{word-spacing:2.932989pt;}
.ws110{word-spacing:2.940979pt;}
.ws50{word-spacing:2.986123pt;}
.ws141{word-spacing:2.988800pt;}
.ws13{word-spacing:3.084442pt;}
.ws117{word-spacing:3.092391pt;}
.ws65{word-spacing:3.122698pt;}
.ws57{word-spacing:3.170519pt;}
.ws71{word-spacing:3.198659pt;}
.ws29{word-spacing:3.304927pt;}
.ws2b{word-spacing:3.358060pt;}
.ws10b{word-spacing:3.371366pt;}
.wsc4{word-spacing:3.379314pt;}
.ws25{word-spacing:3.411194pt;}
.ws10a{word-spacing:3.419187pt;}
.ws66{word-spacing:3.464328pt;}
.wse5{word-spacing:3.514829pt;}
.ws15{word-spacing:3.658291pt;}
.wsd4{word-spacing:3.676864pt;}
.ws76{word-spacing:3.783131pt;}
.wse{word-spacing:3.801754pt;}
.ws4a{word-spacing:3.836265pt;}
.wsf{word-spacing:3.849574pt;}
.ws60{word-spacing:3.995667pt;}
.wsea{word-spacing:4.101935pt;}
.ws8{word-spacing:4.113374pt;}
.ws77{word-spacing:4.155068pt;}
.wsee{word-spacing:4.208202pt;}
.ws120{word-spacing:4.279962pt;}
.ws9b{word-spacing:4.314470pt;}
.ws11e{word-spacing:4.327782pt;}
.ws6f{word-spacing:4.367604pt;}
.ws19{word-spacing:4.527005pt;}
.wse3{word-spacing:4.674865pt;}
.ws13b{word-spacing:4.710349pt;}
.ws4f{word-spacing:4.739541pt;}
.ws27{word-spacing:4.792675pt;}
.ws9c{word-spacing:4.853811pt;}
.ws13e{word-spacing:4.901632pt;}
.ws6b{word-spacing:5.058344pt;}
.wsfc{word-spacing:5.164612pt;}
.ws79{word-spacing:5.185865pt;}
.ws145{word-spacing:5.188557pt;}
.ws103{word-spacing:5.270880pt;}
.ws126{word-spacing:5.332019pt;}
.ws34{word-spacing:5.377147pt;}
.ws124{word-spacing:5.379840pt;}
.ws7c{word-spacing:5.384042pt;}
.ws8b{word-spacing:5.387061pt;}
.ws78{word-spacing:5.389376pt;}
.wsc6{word-spacing:5.405413pt;}
.ws99{word-spacing:5.536549pt;}
.ws30{word-spacing:5.589683pt;}
.ws8c{word-spacing:5.592079pt;}
.ws116{word-spacing:5.642817pt;}
.ws111{word-spacing:5.666765pt;}
.ws143{word-spacing:5.714586pt;}
.ws2f{word-spacing:5.749084pt;}
.ws3b{word-spacing:5.802218pt;}
.ws10d{word-spacing:5.905869pt;}
.wsf3{word-spacing:5.908486pt;}
.ws38{word-spacing:6.121021pt;}
.ws2c{word-spacing:6.174155pt;}
.ws6e{word-spacing:6.271718pt;}
.ws49{word-spacing:6.280423pt;}
.ws5{word-spacing:6.288435pt;}
.wsf2{word-spacing:6.386691pt;}
.ws74{word-spacing:6.492959pt;}
.wsbd{word-spacing:6.652360pt;}
.ws33{word-spacing:6.705494pt;}
.ws11{word-spacing:6.718822pt;}
.ws62{word-spacing:6.758628pt;}
.wscd{word-spacing:6.918029pt;}
.wsb{word-spacing:6.957926pt;}
.ws61{word-spacing:6.971163pt;}
.ws55{word-spacing:7.024297pt;}
.wse6{word-spacing:7.053568pt;}
.ws32{word-spacing:7.077431pt;}
.wscc{word-spacing:7.183699pt;}
.wsc{word-spacing:7.197030pt;}
.ws146{word-spacing:7.292672pt;}
.ws121{word-spacing:7.388314pt;}
.ws7a{word-spacing:7.396234pt;}
.wsf4{word-spacing:7.502502pt;}
.wsbe{word-spacing:7.555636pt;}
.wsa0{word-spacing:7.579597pt;}
.ws6a{word-spacing:7.608770pt;}
.ws144{word-spacing:7.627418pt;}
.ws9f{word-spacing:7.823911pt;}
.ws85{word-spacing:7.874439pt;}
.ws84{word-spacing:7.927573pt;}
.ws1{word-spacing:7.980707pt;}
.ws54{word-spacing:8.140108pt;}
.ws90{word-spacing:8.246376pt;}
.wsec{word-spacing:8.405778pt;}
.wsd9{word-spacing:8.536013pt;}
.ws59{word-spacing:8.565179pt;}
.ws3c{word-spacing:8.618313pt;}
.ws7e{word-spacing:8.724581pt;}
.ws136{word-spacing:8.870758pt;}
.wsfb{word-spacing:8.990250pt;}
.wsdd{word-spacing:9.014221pt;}
.ws37{word-spacing:9.096518pt;}
.ws18{word-spacing:9.149652pt;}
.wsd0{word-spacing:9.255920pt;}
.ws114{word-spacing:9.415321pt;}
.ws119{word-spacing:9.521589pt;}
.ws137{word-spacing:9.540250pt;}
.ws92{word-spacing:9.574723pt;}
.wsa2{word-spacing:9.635891pt;}
.wsb1{word-spacing:9.680991pt;}
.wsdc{word-spacing:9.731533pt;}
.wsda{word-spacing:9.779354pt;}
.ws1b{word-spacing:9.787258pt;}
.wsa9{word-spacing:9.840392pt;}
.ws89{word-spacing:10.212329pt;}
.ws4d{word-spacing:10.265463pt;}
.wsfa{word-spacing:10.286717pt;}
.ws23{word-spacing:10.318597pt;}
.wsde{word-spacing:10.448845pt;}
.wsdf{word-spacing:10.496666pt;}
.wseb{word-spacing:10.499252pt;}
.wsc2{word-spacing:10.531132pt;}
.wsba{word-spacing:10.637400pt;}
.ws102{word-spacing:10.680042pt;}
.ws91{word-spacing:10.796802pt;}
.ws1f{word-spacing:10.849936pt;}
.wse4{word-spacing:10.879232pt;}
.ws5e{word-spacing:10.956203pt;}
.ws94{word-spacing:11.009337pt;}
.wsfe{word-spacing:11.062471pt;}
.ws31{word-spacing:11.115605pt;}
.wsb3{word-spacing:11.221873pt;}
.ws45{word-spacing:11.328140pt;}
.wsd5{word-spacing:11.434408pt;}
.ws12c{word-spacing:11.548723pt;}
.wsbf{word-spacing:11.551718pt;}
.ws135{word-spacing:11.596544pt;}
.wsf9{word-spacing:11.646944pt;}
.wsdb{word-spacing:11.692186pt;}
.wsae{word-spacing:11.700077pt;}
.wsff{word-spacing:11.806345pt;}
.wsc0{word-spacing:11.859479pt;}
.wse7{word-spacing:12.093268pt;}
.wsd{word-spacing:12.549245pt;}
.ws112{word-spacing:12.572832pt;}
.ws98{word-spacing:12.656487pt;}
.wsfd{word-spacing:12.730874pt;}
.ws17{word-spacing:12.762755pt;}
.ws95{word-spacing:12.869023pt;}
.ws11d{word-spacing:12.922156pt;}
.wsb9{word-spacing:12.975290pt;}
.ws83{word-spacing:13.028424pt;}
.ws3a{word-spacing:13.078577pt;}
.wsb8{word-spacing:13.187826pt;}
.ws48{word-spacing:13.347227pt;}
.ws97{word-spacing:13.400361pt;}
.ws10e{word-spacing:13.596832pt;}
.ws2e{word-spacing:13.612897pt;}
.wsc9{word-spacing:13.772298pt;}
.ws96{word-spacing:13.931700pt;}
.ws8f{word-spacing:14.130709pt;}
.ws12b{word-spacing:14.394061pt;}
.ws46{word-spacing:14.622440pt;}
.ws113{word-spacing:14.888109pt;}
.ws1e{word-spacing:15.186746pt;}
.ws104{word-spacing:15.260047pt;}
.ws105{word-spacing:15.313180pt;}
.ws7f{word-spacing:15.366314pt;}
.ws42{word-spacing:15.461955pt;}
.ws123{word-spacing:15.493939pt;}
.ws88{word-spacing:15.613413pt;}
.ws4e{word-spacing:15.624042pt;}
.wsf0{word-spacing:15.727625pt;}
.ws101{word-spacing:16.003921pt;}
.ws12f{word-spacing:16.115610pt;}
.wsce{word-spacing:16.152695pt;}
.ws93{word-spacing:16.402709pt;}
.wsf8{word-spacing:16.535259pt;}
.wsb2{word-spacing:16.621376pt;}
.ws129{word-spacing:16.928563pt;}
.wsb7{word-spacing:17.066598pt;}
.ws11b{word-spacing:17.385401pt;}
.ws63{word-spacing:17.438535pt;}
.ws13f{word-spacing:17.621965pt;}
.ws36{word-spacing:17.757338pt;}
.wsad{word-spacing:18.129275pt;}
.ws106{word-spacing:18.341811pt;}
.ws100{word-spacing:18.416198pt;}
.wsc1{word-spacing:18.501212pt;}
.ws44{word-spacing:18.926283pt;}
.wsf7{word-spacing:19.053805pt;}
.ws13c{word-spacing:19.319603pt;}
.ws8e{word-spacing:19.351354pt;}
.ws81{word-spacing:19.563890pt;}
.wsaa{word-spacing:19.765798pt;}
.wsc7{word-spacing:19.776425pt;}
.ws125{word-spacing:19.941274pt;}
.ws82{word-spacing:20.028653pt;}
.ws4c{word-spacing:20.414032pt;}
.ws138{word-spacing:21.375898pt;}
.wsb5{word-spacing:22.167449pt;}
.wsb6{word-spacing:22.461376pt;}
.ws140{word-spacing:22.547507pt;}
.ws70{word-spacing:23.378901pt;}
.ws0{word-spacing:23.846639pt;}
.ws3{word-spacing:24.484250pt;}
.ws41{word-spacing:25.557390pt;}
.ws134{word-spacing:25.655859pt;}
.ws132{word-spacing:25.703680pt;}
.ws80{word-spacing:27.587104pt;}
.ws2{word-spacing:27.592602pt;}
.ws11c{word-spacing:32.145989pt;}
.ws43{word-spacing:33.633738pt;}
.wsb4{word-spacing:36.609234pt;}
.ws133{word-spacing:38.639206pt;}
.ws9e{word-spacing:39.045683pt;}
.ws16{word-spacing:40.853309pt;}
.wsa1{word-spacing:51.335629pt;}
.wsa3{word-spacing:53.391923pt;}
.wsd8{word-spacing:74.714534pt;}
.wse0{word-spacing:85.642650pt;}
.wsa8{word-spacing:93.178829pt;}
.ws68{word-spacing:101.799890pt;}
.ws107{word-spacing:114.301010pt;}
.wsa6{word-spacing:122.445158pt;}
.ws10c{word-spacing:132.607924pt;}
.wsa7{word-spacing:135.404595pt;}
._30{margin-left:-24.069803pt;}
._14{margin-left:-5.223213pt;}
._5{margin-left:-4.112589pt;}
._2{margin-left:-3.092412pt;}
._0{margin-left:-1.976593pt;}
._6{margin-left:-0.940476pt;}
._f{width:0.929676pt;}
._1{width:1.976593pt;}
._2c{width:3.060531pt;}
._10{width:4.298443pt;}
._2d{width:5.531273pt;}
._31{width:12.337766pt;}
._15{width:14.309104pt;}
._24{width:15.265514pt;}
._9{width:16.896683pt;}
._22{width:19.755131pt;}
._29{width:20.802048pt;}
._4{width:21.854106pt;}
._a{width:22.969924pt;}
._d{width:24.335311pt;}
._16{width:25.291721pt;}
._3{width:26.444902pt;}
._25{width:27.842146pt;}
._b{width:28.803902pt;}
._23{width:30.498839pt;}
._e{width:31.986588pt;}
._8{width:33.267337pt;}
._7{width:35.243930pt;}
._11{width:37.061039pt;}
._17{width:38.920724pt;}
._27{width:39.903894pt;}
._32{width:41.763499pt;}
._28{width:43.469107pt;}
._c{width:45.291335pt;}
._18{width:47.342275pt;}
._2b{width:49.956475pt;}
._2a{width:51.194647pt;}
._13{width:57.220417pt;}
._19{width:62.262682pt;}
._12{width:78.489369pt;}
._26{width:84.700974pt;}
._1a{width:94.015693pt;}
._2f{width:116.468245pt;}
._2e{width:124.533470pt;}
._1c{width:137.771725pt;}
._1b{width:154.652467pt;}
._20{width:187.266253pt;}
._1d{width:193.004749pt;}
._1f{width:195.061043pt;}
._1e{width:197.739008pt;}
._21{width:235.947827pt;}
.fsa{font-size:17.996160pt;}
.fsd{font-size:19.327168pt;}
.fs14{font-size:19.378688pt;}
.fsb{font-size:25.309387pt;}
.fs12{font-size:25.376853pt;}
.fs9{font-size:25.708800pt;}
.fs5{font-size:26.566933pt;}
.fsc{font-size:27.610240pt;}
.fs13{font-size:27.683840pt;}
.fse{font-size:29.911093pt;}
.fs15{font-size:29.990827pt;}
.fs6{font-size:31.421867pt;}
.fsf{font-size:31.483467pt;}
.fs3{font-size:31.880533pt;}
.fs7{font-size:34.278400pt;}
.fs10{font-size:34.345600pt;}
.fs8{font-size:37.134933pt;}
.fs2{font-size:37.193600pt;}
.fs11{font-size:37.207733pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:5.594443pt;}
.y10a{bottom:6.370488pt;}
.yf1{bottom:6.927093pt;}
.y13f{bottom:6.940673pt;}
.y155{bottom:14.479946pt;}
.y109{bottom:15.232368pt;}
.yf0{bottom:17.929210pt;}
.y13e{bottom:17.964359pt;}
.y157{bottom:18.909180pt;}
.yf2{bottom:23.413531pt;}
.y10b{bottom:29.080292pt;}
.y140{bottom:32.902520pt;}
.y103{bottom:33.611132pt;}
.y102{bottom:42.309052pt;}
.y101{bottom:43.363515pt;}
.yf3{bottom:49.331215pt;}
.y100{bottom:51.949853pt;}
.yff{bottom:53.004315pt;}
.y10c{bottom:55.371995pt;}
.y141{bottom:59.741084pt;}
.y158{bottom:60.684095pt;}
.yfe{bottom:62.332682pt;}
.y15d{bottom:70.389407pt;}
.yfd{bottom:71.772632pt;}
.y14c{bottom:75.174282pt;}
.yf4{bottom:75.248899pt;}
.y10d{bottom:81.663698pt;}
.y142{bottom:86.579648pt;}
.y36{bottom:91.921333pt;}
.y113{bottom:93.697426pt;}
.y7e{bottom:93.914667pt;}
.yf5{bottom:101.166583pt;}
.y159{bottom:102.459009pt;}
.yfb{bottom:105.788588pt;}
.y35{bottom:107.197333pt;}
.y10e{bottom:107.955401pt;}
.y7d{bottom:109.190667pt;}
.y143{bottom:113.418212pt;}
.y148{bottom:114.016379pt;}
.y150{bottom:116.520746pt;}
.y14d{bottom:117.446044pt;}
.y181{bottom:121.581333pt;}
.y34{bottom:122.473333pt;}
.y7c{bottom:124.466667pt;}
.yf6{bottom:127.084267pt;}
.y114{bottom:132.637571pt;}
.y10f{bottom:134.247104pt;}
.y180{bottom:135.529333pt;}
.y33{bottom:137.749333pt;}
.yee{bottom:139.742667pt;}
.y144{bottom:140.256775pt;}
.y7b{bottom:141.545333pt;}
.y115{bottom:142.855584pt;}
.ycb{bottom:143.364000pt;}
.ya4{bottom:143.529333pt;}
.y15a{bottom:144.233924pt;}
.y17f{bottom:149.477333pt;}
.yf7{bottom:153.001951pt;}
.y32{bottom:153.025333pt;}
.y116{bottom:154.839345pt;}
.yed{bottom:155.018667pt;}
.y7a{bottom:156.821333pt;}
.y14e{bottom:159.717805pt;}
.y110{bottom:160.538807pt;}
.y182{bottom:163.424000pt;}
.y17e{bottom:163.425333pt;}
.y13c{bottom:163.778667pt;}
.y145{bottom:167.095339pt;}
.y31{bottom:168.301333pt;}
.y15e{bottom:170.037038pt;}
.y79{bottom:172.097333pt;}
.y4f{bottom:174.262667pt;}
.ya3{bottom:176.541333pt;}
.y17d{bottom:177.372000pt;}
.yf8{bottom:178.919635pt;}
.y13b{bottom:179.054667pt;}
.yec{bottom:180.244000pt;}
.y30{bottom:183.577333pt;}
.y15b{bottom:186.008838pt;}
.yca{bottom:186.702667pt;}
.y111{bottom:186.830509pt;}
.y78{bottom:187.373333pt;}
.y4e{bottom:189.538667pt;}
.y17c{bottom:191.320000pt;}
.y146{bottom:193.933903pt;}
.y13a{bottom:194.330667pt;}
.y11a{bottom:200.632397pt;}
.yc9{bottom:201.978667pt;}
.y14f{bottom:201.989567pt;}
.y2f{bottom:202.182667pt;}
.y77{bottom:202.649333pt;}
.y123{bottom:202.929333pt;}
.y4d{bottom:204.814667pt;}
.yf9{bottom:204.837319pt;}
.y17b{bottom:205.268000pt;}
.y14b{bottom:209.471936pt;}
.y119{bottom:209.647069pt;}
.y112{bottom:213.122212pt;}
.yeb{bottom:214.417333pt;}
.yc8{bottom:217.254667pt;}
.y2e{bottom:217.458667pt;}
.y122{bottom:218.205333pt;}
.y139{bottom:218.368000pt;}
.y118{bottom:219.021249pt;}
.y17a{bottom:219.216000pt;}
.y160{bottom:219.663340pt;}
.y147{bottom:220.772467pt;}
.y14a{bottom:221.132893pt;}
.ya2{bottom:221.604000pt;}
.y15c{bottom:227.783753pt;}
.yfa{bottom:230.755003pt;}
.yc7{bottom:232.530667pt;}
.y2d{bottom:232.734667pt;}
.y117{bottom:232.975565pt;}
.y179{bottom:233.162667pt;}
.y121{bottom:233.481333pt;}
.y138{bottom:233.644000pt;}
.y15f{bottom:233.654854pt;}
.y72{bottom:236.805333pt;}
.ya1{bottom:236.880000pt;}
.yfc{bottom:238.024657pt;}
.y149{bottom:238.491285pt;}
.y75{bottom:241.268000pt;}
.y4c{bottom:244.864000pt;}
.y76{bottom:245.917333pt;}
.y178{bottom:247.110667pt;}
.yc6{bottom:247.806667pt;}
.y2c{bottom:248.010667pt;}
.y120{bottom:248.757333pt;}
.y137{bottom:248.920000pt;}
.y74{bottom:249.238667pt;}
.ya0{bottom:252.156000pt;}
.y71{bottom:254.904000pt;}
.y73{bottom:257.208000pt;}
.yea{bottom:258.456000pt;}
.y4b{bottom:260.140000pt;}
.yc5{bottom:263.082667pt;}
.y2b{bottom:263.286667pt;}
.y136{bottom:272.957333pt;}
.ye9{bottom:273.732000pt;}
.y4a{bottom:275.416000pt;}
.yc4{bottom:278.358667pt;}
.y9f{bottom:278.557333pt;}
.y2a{bottom:278.562667pt;}
.y70{bottom:286.717333pt;}
.y135{bottom:288.233333pt;}
.ye8{bottom:289.008000pt;}
.y49{bottom:290.693333pt;}
.yc3{bottom:293.634667pt;}
.y9e{bottom:293.833333pt;}
.y29{bottom:293.838667pt;}
.y6f{bottom:301.993333pt;}
.y134{bottom:303.509333pt;}
.ye7{bottom:304.284000pt;}
.yc2{bottom:308.910667pt;}
.y28{bottom:309.114667pt;}
.y11f{bottom:309.908000pt;}
.y177{bottom:318.344000pt;}
.y6e{bottom:319.072000pt;}
.y9d{bottom:320.398667pt;}
.ye6{bottom:321.162667pt;}
.y165{bottom:323.325333pt;}
.y11e{bottom:323.854667pt;}
.yc1{bottom:324.186667pt;}
.y27{bottom:324.390667pt;}
.y133{bottom:327.402667pt;}
.y48{bottom:330.742667pt;}
.y176{bottom:333.620000pt;}
.y6d{bottom:334.348000pt;}
.y9c{bottom:335.674667pt;}
.y164{bottom:337.273333pt;}
.y11d{bottom:337.802667pt;}
.y26{bottom:339.666667pt;}
.y132{bottom:342.678667pt;}
.y47{bottom:346.018667pt;}
.ye5{bottom:346.388000pt;}
.y175{bottom:348.896000pt;}
.y163{bottom:351.220000pt;}
.y11c{bottom:351.750667pt;}
.y131{bottom:357.954667pt;}
.y25{bottom:358.272000pt;}
.yc0{bottom:358.360000pt;}
.y46{bottom:361.294667pt;}
.ye4{bottom:361.664000pt;}
.y6c{bottom:361.790667pt;}
.y9b{bottom:362.074667pt;}
.y174{bottom:364.172000pt;}
.y162{bottom:365.168000pt;}
.y11b{bottom:365.698667pt;}
.y130{bottom:373.230667pt;}
.y24{bottom:373.548000pt;}
.y45{bottom:376.570667pt;}
.ye3{bottom:376.940000pt;}
.y9a{bottom:377.350667pt;}
.y161{bottom:379.116000pt;}
.y173{bottom:379.448000pt;}
.y6b{bottom:379.889333pt;}
.y23{bottom:388.824000pt;}
.y44{bottom:391.846667pt;}
.y108{bottom:392.929333pt;}
.y6a{bottom:397.748000pt;}
.ybf{bottom:401.698667pt;}
.ye2{bottom:402.505333pt;}
.y22{bottom:404.100000pt;}
.y154{bottom:406.346667pt;}
.y12f{bottom:407.405333pt;}
.y99{bottom:411.690667pt;}
.y172{bottom:415.368000pt;}
.y69{bottom:415.846667pt;}
.ybe{bottom:416.974667pt;}
.ye1{bottom:417.781333pt;}
.y21{bottom:419.376000pt;}
.y171{bottom:430.644000pt;}
.y43{bottom:431.896000pt;}
.ybd{bottom:432.250667pt;}
.ye0{bottom:433.057333pt;}
.y20{bottom:434.652000pt;}
.y170{bottom:445.920000pt;}
.y42{bottom:447.172000pt;}
.y68{bottom:447.460000pt;}
.ybc{bottom:447.526667pt;}
.y1f{bottom:449.928000pt;}
.y12e{bottom:450.785333pt;}
.y98{bottom:456.753333pt;}
.ydf{bottom:458.621333pt;}
.y16f{bottom:461.196000pt;}
.y41{bottom:462.448000pt;}
.y67{bottom:462.736000pt;}
.ybb{bottom:462.802667pt;}
.y1e{bottom:465.204000pt;}
.y12d{bottom:466.061333pt;}
.y97{bottom:472.029333pt;}
.yde{bottom:473.897333pt;}
.y16e{bottom:476.472000pt;}
.y40{bottom:477.725333pt;}
.yba{bottom:478.078667pt;}
.y1d{bottom:480.480000pt;}
.y12c{bottom:481.337333pt;}
.y96{bottom:487.305333pt;}
.y16d{bottom:491.748000pt;}
.y3f{bottom:493.001333pt;}
.yb9{bottom:493.354667pt;}
.y1c{bottom:495.756000pt;}
.y12b{bottom:496.613333pt;}
.y66{bottom:498.713333pt;}
.ydd{bottom:499.122667pt;}
.y95{bottom:502.581333pt;}
.yb8{bottom:508.630667pt;}
.y12a{bottom:511.889333pt;}
.y1b{bottom:514.361333pt;}
.ydc{bottom:514.398667pt;}
.y94{bottom:517.857333pt;}
.yb7{bottom:523.906667pt;}
.y129{bottom:527.165333pt;}
.y16c{bottom:527.294667pt;}
.y3e{bottom:529.513333pt;}
.y1a{bottom:529.637333pt;}
.ydb{bottom:529.674667pt;}
.y93{bottom:533.300000pt;}
.y128{bottom:542.441333pt;}
.y16b{bottom:542.570667pt;}
.y19{bottom:544.913333pt;}
.y65{bottom:548.146667pt;}
.y3d{bottom:548.326667pt;}
.y92{bottom:548.576000pt;}
.y64{bottom:557.258667pt;}
.y127{bottom:557.717333pt;}
.y16a{bottom:557.846667pt;}
.y18{bottom:560.189333pt;}
.yb6{bottom:560.532000pt;}
.y3c{bottom:563.602667pt;}
.yda{bottom:563.848000pt;}
.y91{bottom:563.852000pt;}
.y126{bottom:572.993333pt;}
.y169{bottom:573.122667pt;}
.y17{bottom:575.465333pt;}
.yb5{bottom:578.118667pt;}
.y3b{bottom:578.878667pt;}
.y90{bottom:579.128000pt;}
.y125{bottom:588.269333pt;}
.y16{bottom:590.741333pt;}
.y3a{bottom:594.154667pt;}
.y8f{bottom:594.404000pt;}
.yb4{bottom:595.174667pt;}
.y63{bottom:597.008000pt;}
.y168{bottom:606.012000pt;}
.y15{bottom:606.017333pt;}
.yd9{bottom:607.886667pt;}
.y39{bottom:609.430667pt;}
.y8e{bottom:609.680000pt;}
.y62{bottom:612.284000pt;}
.yb3{bottom:612.762667pt;}
.y167{bottom:621.288000pt;}
.y14{bottom:621.293333pt;}
.y124{bottom:622.444000pt;}
.yd8{bottom:623.162667pt;}
.y38{bottom:624.706667pt;}
.y8d{bottom:624.956000pt;}
.y61{bottom:629.364000pt;}
.yb2{bottom:635.796000pt;}
.y166{bottom:636.564000pt;}
.yd7{bottom:638.438667pt;}
.y37{bottom:639.982667pt;}
.y60{bottom:644.640000pt;}
.yd6{bottom:653.714667pt;}
.y13{bottom:658.796000pt;}
.y8c{bottom:659.294667pt;}
.y5f{bottom:659.916000pt;}
.y107{bottom:667.276000pt;}
.yb1{bottom:672.021333pt;}
.y5e{bottom:675.192000pt;}
.yd5{bottom:678.940000pt;}
.y153{bottom:680.730667pt;}
.y106{bottom:681.222667pt;}
.yb0{bottom:687.297333pt;}
.y5d{bottom:690.468000pt;}
.y8b{bottom:692.306667pt;}
.y152{bottom:694.678667pt;}
.y105{bottom:695.170667pt;}
.y12{bottom:700.306667pt;}
.yd4{bottom:704.504000pt;}
.y5c{bottom:705.744000pt;}
.y151{bottom:708.626667pt;}
.y104{bottom:709.118667pt;}
.y11{bottom:714.254667pt;}
.yaf{bottom:721.470667pt;}
.y10{bottom:728.202667pt;}
.yd3{bottom:730.068000pt;}
.y13d{bottom:735.857333pt;}
.yef{bottom:736.349333pt;}
.y8a{bottom:737.369333pt;}
.y5b{bottom:740.630667pt;}
.yf{bottom:742.150667pt;}
.y5a{bottom:745.212000pt;}
.y89{bottom:752.645333pt;}
.yd2{bottom:755.294667pt;}
.ye{bottom:756.097333pt;}
.y57{bottom:759.746667pt;}
.y191{bottom:764.068000pt;}
.y88{bottom:767.921333pt;}
.y59{bottom:768.980000pt;}
.yd{bottom:770.045333pt;}
.y58{bottom:773.561333pt;}
.y190{bottom:778.016000pt;}
.y87{bottom:783.197333pt;}
.yae{bottom:783.574667pt;}
.yc{bottom:783.993333pt;}
.yd1{bottom:789.468000pt;}
.y193{bottom:791.962667pt;}
.y18f{bottom:791.964000pt;}
.yb{bottom:797.941333pt;}
.y86{bottom:798.473333pt;}
.yad{bottom:800.630667pt;}
.y18e{bottom:805.910667pt;}
.y56{bottom:807.774667pt;}
.ya{bottom:811.889333pt;}
.yac{bottom:817.686667pt;}
.y18d{bottom:819.858667pt;}
.yd0{bottom:822.313333pt;}
.y55{bottom:823.050667pt;}
.y85{bottom:824.873333pt;}
.y9{bottom:825.836000pt;}
.y18c{bottom:833.806667pt;}
.yab{bottom:834.742667pt;}
.y8{bottom:839.784000pt;}
.y84{bottom:840.150667pt;}
.y18b{bottom:847.754667pt;}
.yaa{bottom:852.329333pt;}
.y7{bottom:853.732000pt;}
.y54{bottom:855.217333pt;}
.y83{bottom:855.426667pt;}
.y18a{bottom:861.701333pt;}
.ycf{bottom:866.350667pt;}
.ya9{bottom:875.362667pt;}
.y189{bottom:875.649333pt;}
.y6{bottom:876.313333pt;}
.yce{bottom:881.628000pt;}
.y82{bottom:881.992000pt;}
.y53{bottom:887.382667pt;}
.ya8{bottom:889.310667pt;}
.y188{bottom:889.597333pt;}
.y5{bottom:895.340000pt;}
.ycd{bottom:896.904000pt;}
.y81{bottom:897.268000pt;}
.y52{bottom:902.658667pt;}
.y187{bottom:903.545333pt;}
.y4{bottom:909.288000pt;}
.ycc{bottom:912.180000pt;}
.y80{bottom:912.544000pt;}
.y192{bottom:917.492000pt;}
.y186{bottom:917.493333pt;}
.y3{bottom:922.806667pt;}
.ya7{bottom:927.456000pt;}
.y185{bottom:931.440000pt;}
.y51{bottom:938.634667pt;}
.y7f{bottom:938.944000pt;}
.ya6{bottom:942.732000pt;}
.y184{bottom:945.388000pt;}
.y2{bottom:954.686667pt;}
.ya5{bottom:958.008000pt;}
.y183{bottom:959.336000pt;}
.y1{bottom:973.284000pt;}
.y50{bottom:1007.821333pt;}
.h12{height:2.125355pt;}
.h1b{height:16.718433pt;}
.h1f{height:17.954939pt;}
.h3{height:22.443895pt;}
.h1d{height:23.512420pt;}
.h26{height:23.575097pt;}
.h1a{height:23.883475pt;}
.h1e{height:25.649913pt;}
.h27{height:25.718287pt;}
.h20{height:28.086517pt;}
.h28{height:28.161386pt;}
.h17{height:29.190914pt;}
.h22{height:29.248141pt;}
.h18{height:31.844634pt;}
.h23{height:31.907062pt;}
.h6{height:33.474560pt;}
.h19{height:34.869702pt;}
.h24{height:34.938062pt;}
.h4{height:35.865600pt;}
.h8{height:38.043849pt;}
.h7{height:39.850400pt;}
.h5{height:42.758562pt;}
.h1{height:44.505225pt;}
.h2{height:45.464294pt;}
.h14{height:45.469628pt;}
.h15{height:53.285067pt;}
.h9{height:61.106688pt;}
.hc{height:75.791733pt;}
.h13{height:75.797067pt;}
.he{height:76.298400pt;}
.ha{height:82.695711pt;}
.h10{height:84.573628pt;}
.hd{height:112.239733pt;}
.h11{height:115.618688pt;}
.hb{height:116.314400pt;}
.hf{height:117.858961pt;}
.h1c{height:242.797332pt;}
.h25{height:243.502803pt;}
.h16{height:250.218484pt;}
.h21{height:250.709017pt;}
.h0{height:1056.000000pt;}
.w2{width:325.176726pt;}
.w4{width:325.181306pt;}
.w3{width:609.712706pt;}
.w1{width:609.719185pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x44{left:9.390358pt;}
.x45{left:10.522809pt;}
.x37{left:11.658227pt;}
.x43{left:13.920163pt;}
.x36{left:17.282027pt;}
.x41{left:22.979773pt;}
.x34{left:34.778293pt;}
.x53{left:39.451970pt;}
.x47{left:53.437319pt;}
.x4b{left:54.426214pt;}
.xb{left:72.000000pt;}
.x57{left:78.144000pt;}
.x54{left:82.062399pt;}
.xa{left:85.284000pt;}
.x48{left:89.564000pt;}
.x2d{left:90.804000pt;}
.x58{left:96.426667pt;}
.x2c{left:98.926667pt;}
.x4d{left:102.817967pt;}
.x46{left:104.339025pt;}
.x33{left:105.874667pt;}
.x2b{left:112.898667pt;}
.x11{left:116.150667pt;}
.x16{left:125.236000pt;}
.x1c{left:126.430667pt;}
.x19{left:127.720000pt;}
.x1a{left:129.725333pt;}
.x4c{left:132.434338pt;}
.x35{left:139.984952pt;}
.x38{left:141.374164pt;}
.x18{left:143.080000pt;}
.x8{left:145.060000pt;}
.x42{left:152.450228pt;}
.x2e{left:153.502667pt;}
.x7{left:157.346667pt;}
.x1d{left:160.044000pt;}
.x1e{left:162.049333pt;}
.x9{left:165.764000pt;}
.x12{left:173.950667pt;}
.x1f{left:178.924000pt;}
.x3{left:187.665333pt;}
.x2{left:193.286667pt;}
.x17{left:198.517333pt;}
.x1b{left:203.785333pt;}
.x20{left:210.998667pt;}
.x39{left:217.908299pt;}
.x3a{left:227.886151pt;}
.x5{left:260.577333pt;}
.x1{left:263.852000pt;}
.x13{left:265.457333pt;}
.x21{left:272.441333pt;}
.x55{left:274.460041pt;}
.x14{left:287.161333pt;}
.x22{left:289.317333pt;}
.x15{left:292.512000pt;}
.x23{left:308.634667pt;}
.x50{left:312.405431pt;}
.x3d{left:315.921875pt;}
.x4f{left:317.682489pt;}
.x3c{left:321.545675pt;}
.x6{left:337.496000pt;}
.x3b{left:339.041941pt;}
.x4{left:343.409333pt;}
.x52{left:361.830896pt;}
.x4e{left:363.021430pt;}
.x51{left:406.818117pt;}
.xc{left:422.685333pt;}
.x59{left:428.828000pt;}
.xd{left:435.968000pt;}
.xe{left:440.249333pt;}
.x28{left:443.940000pt;}
.x3e{left:447.049341pt;}
.x25{left:453.844000pt;}
.xf{left:455.893333pt;}
.x30{left:465.036000pt;}
.x49{left:496.222667pt;}
.x2a{left:500.984000pt;}
.x32{left:504.041333pt;}
.x56{left:506.753333pt;}
.x24{left:514.681333pt;}
.x4a{left:516.926667pt;}
.x26{left:519.492000pt;}
.x3f{left:522.171947pt;}
.x2f{left:527.773333pt;}
.x40{left:532.149799pt;}
.x29{left:537.216000pt;}
.x27{left:540.341333pt;}
.x31{left:584.941333pt;}
.x10{left:742.817333pt;}
}




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