
    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_82b533766cf2cdaf0cbf186f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_557173a3eefd68813d897c61.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_f7346d01c8dc84b6e4864c9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_17bd609a9551b23ecd9d866e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132000;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_a0412e4e48a7ed9ab9763c30.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_81a364fcf1f387758e422956.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.392000;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_49d9212c727db34f96b34ae8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_42b7ccbc40e074d8f01a769a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.051000;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_08f74fae25b416c8890e8410.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_6157d1aafd211049beb9300d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.740000;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_5abdfaf184e4182532c860ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;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_1e68fef4ab3d49e9f2e744fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_13cdc9e0bf424ab3289b9473.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926000;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_940bee578296b7dbe19a59d5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.515000;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_04fabb1dbe844cfb79065580.woff2')format("woff");}.fff{font-family:fff;line-height:0.234000;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_91a70fcaa04a2d83fdc4a35d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.913000;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_f75fce22ee17641ffcd5de9f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.485000;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_ab7781bc23402a4357921737.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.106000;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_1d4fc00064770d39d2b9086f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.728000;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_e37bada772f5b43a9152bde1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.579000;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_f95ebee2fe48515f050f5485.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.774000;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:ff16;src:url('chunks/assets/font_6a1f379f338e70c10d501439.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.674000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.253028px;}
.ls40{letter-spacing:-1.206012px;}
.ls3a{letter-spacing:-1.188012px;}
.ls3e{letter-spacing:-1.164012px;}
.ls3f{letter-spacing:-1.152012px;}
.ls3b{letter-spacing:-1.146011px;}
.ls41{letter-spacing:-1.140011px;}
.ls37{letter-spacing:-1.128011px;}
.ls3d{letter-spacing:-1.122011px;}
.ls39{letter-spacing:-1.104011px;}
.ls3c{letter-spacing:-1.098011px;}
.ls43{letter-spacing:-0.972010px;}
.ls42{letter-spacing:-0.954010px;}
.lsd{letter-spacing:-0.876009px;}
.ls47{letter-spacing:-0.852009px;}
.ls10{letter-spacing:-0.846008px;}
.lse{letter-spacing:-0.810008px;}
.lsf{letter-spacing:-0.798008px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.038400px;}
.ls4d{letter-spacing:0.115199px;}
.ls1c{letter-spacing:0.144001px;}
.ls18{letter-spacing:0.153598px;}
.ls16{letter-spacing:0.158398px;}
.ls4{letter-spacing:0.174002px;}
.ls2c{letter-spacing:0.175972px;}
.ls5{letter-spacing:0.186002px;}
.ls4f{letter-spacing:0.191998px;}
.ls4b{letter-spacing:0.222002px;}
.ls19{letter-spacing:0.230397px;}
.ls46{letter-spacing:0.249597px;}
.ls9{letter-spacing:0.258003px;}
.ls0{letter-spacing:0.264600px;}
.ls1e{letter-spacing:0.354004px;}
.ls30{letter-spacing:10.243072px;}
.ls33{letter-spacing:10.319871px;}
.ls35{letter-spacing:10.324671px;}
.ls31{letter-spacing:10.454269px;}
.ls25{letter-spacing:10.511869px;}
.ls6{letter-spacing:10.550268px;}
.lsc{letter-spacing:10.555068px;}
.ls2f{letter-spacing:10.579068px;}
.ls32{letter-spacing:10.660667px;}
.ls34{letter-spacing:10.795065px;}
.ls38{letter-spacing:11.772118px;}
.ls36{letter-spacing:12.090121px;}
.ls8{letter-spacing:12.432124px;}
.ls22{letter-spacing:12.756128px;}
.lsa{letter-spacing:12.774128px;}
.ls12{letter-spacing:12.960130px;}
.ls24{letter-spacing:12.990130px;}
.ls14{letter-spacing:13.098131px;}
.ls3{letter-spacing:13.110131px;}
.ls2b{letter-spacing:13.151836px;}
.ls20{letter-spacing:13.164132px;}
.ls1b{letter-spacing:13.175835px;}
.ls26{letter-spacing:13.185435px;}
.ls21{letter-spacing:13.194132px;}
.ls17{letter-spacing:13.233435px;}
.ls1d{letter-spacing:13.302133px;}
.ls1f{letter-spacing:13.326133px;}
.ls1a{letter-spacing:13.382233px;}
.ls23{letter-spacing:13.440134px;}
.lsb{letter-spacing:13.452135px;}
.ls4a{letter-spacing:13.459032px;}
.ls2a{letter-spacing:13.487831px;}
.ls28{letter-spacing:13.492631px;}
.ls2d{letter-spacing:13.516631px;}
.ls27{letter-spacing:13.526231px;}
.ls15{letter-spacing:13.574230px;}
.ls2e{letter-spacing:15.933467px;}
.ls1{letter-spacing:21.124536px;}
.ls45{letter-spacing:314.223272px;}
.ls49{letter-spacing:317.031237px;}
.ls48{letter-spacing:320.007200px;}
.ls29{letter-spacing:338.376570px;}
.ls44{letter-spacing:350.962013px;}
.ls4c{letter-spacing:368.990588px;}
.ls4e{letter-spacing:477.090036px;}
.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;}
}
.wsf2{word-spacing:-13.512135px;}
.ws192{word-spacing:-13.507031px;}
.wsf7{word-spacing:-13.362134px;}
.ws107{word-spacing:-13.224132px;}
.ws13d{word-spacing:-13.223835px;}
.wsf3{word-spacing:-13.170132px;}
.wsa8{word-spacing:-13.020130px;}
.ws158{word-spacing:-11.832118px;}
.ws32{word-spacing:-10.598268px;}
.ws129{word-spacing:-10.559868px;}
.ws11d{word-spacing:-0.071999px;}
.ws26{word-spacing:-0.060001px;}
.ws8{word-spacing:-0.047999px;}
.ws13e{word-spacing:-0.031995px;}
.ws52{word-spacing:0.000000px;}
.ws5d{word-spacing:0.786008px;}
.ws159{word-spacing:1.128011px;}
.ws1ab{word-spacing:9.484681px;}
.ws89{word-spacing:9.585480px;}
.ws1aa{word-spacing:9.595080px;}
.ws92{word-spacing:9.638280px;}
.ws8d{word-spacing:9.647879px;}
.ws4a{word-spacing:9.671879px;}
.ws50{word-spacing:9.700679px;}
.ws47{word-spacing:9.715079px;}
.ws1b1{word-spacing:9.719879px;}
.ws8a{word-spacing:9.729478px;}
.ws3a{word-spacing:9.739078px;}
.ws1c6{word-spacing:9.743878px;}
.ws36{word-spacing:9.748678px;}
.ws1c0{word-spacing:9.767878px;}
.ws1c4{word-spacing:9.782278px;}
.ws8f{word-spacing:9.787078px;}
.ws1c7{word-spacing:9.796678px;}
.ws91{word-spacing:9.820677px;}
.ws34{word-spacing:9.825477px;}
.ws3f{word-spacing:9.844677px;}
.ws42{word-spacing:9.849477px;}
.ws1ac{word-spacing:9.854277px;}
.ws1af{word-spacing:9.859077px;}
.ws90{word-spacing:9.863877px;}
.ws1d6{word-spacing:9.868677px;}
.ws3e{word-spacing:9.873477px;}
.ws3d{word-spacing:9.883076px;}
.ws37{word-spacing:9.887876px;}
.ws8e{word-spacing:9.892676px;}
.ws1a7{word-spacing:9.897476px;}
.ws1c3{word-spacing:9.902276px;}
.ws49{word-spacing:9.916676px;}
.ws44{word-spacing:9.921476px;}
.ws4c{word-spacing:9.926276px;}
.ws12c{word-spacing:9.931076px;}
.ws87{word-spacing:9.935876px;}
.ws94{word-spacing:9.940676px;}
.ws93{word-spacing:9.945476px;}
.ws1a8{word-spacing:9.964675px;}
.ws12d{word-spacing:9.969475px;}
.ws154{word-spacing:9.974275px;}
.ws46{word-spacing:9.979075px;}
.ws1cf{word-spacing:9.983875px;}
.ws1ce{word-spacing:9.988675px;}
.ws1b0{word-spacing:9.993475px;}
.ws48{word-spacing:9.998275px;}
.ws7{word-spacing:10.007875px;}
.ws3c{word-spacing:10.012675px;}
.ws1bb{word-spacing:10.017475px;}
.ws1b7{word-spacing:10.027075px;}
.ws8b{word-spacing:10.036675px;}
.ws88{word-spacing:10.041474px;}
.ws43{word-spacing:10.046274px;}
.ws1b2{word-spacing:10.051074px;}
.ws1ba{word-spacing:10.055874px;}
.ws3b{word-spacing:10.060674px;}
.ws35{word-spacing:10.070274px;}
.ws155{word-spacing:10.075074px;}
.ws31{word-spacing:10.079874px;}
.ws152{word-spacing:10.084674px;}
.ws128{word-spacing:10.089474px;}
.ws1bd{word-spacing:10.094274px;}
.ws1ae{word-spacing:10.099074px;}
.ws4d{word-spacing:10.103874px;}
.ws51{word-spacing:10.113474px;}
.ws1cb{word-spacing:10.118274px;}
.ws125{word-spacing:10.123073px;}
.ws1b3{word-spacing:10.127873px;}
.ws1d1{word-spacing:10.132673px;}
.ws166{word-spacing:10.151873px;}
.ws84{word-spacing:10.156673px;}
.ws153{word-spacing:10.161473px;}
.ws12a{word-spacing:10.166273px;}
.ws126{word-spacing:10.171073px;}
.ws4e{word-spacing:10.175873px;}
.ws33{word-spacing:10.180673px;}
.ws39{word-spacing:10.185473px;}
.ws127{word-spacing:10.195073px;}
.ws1d2{word-spacing:10.199873px;}
.ws1ca{word-spacing:10.204672px;}
.ws1b9{word-spacing:10.228672px;}
.ws1b8{word-spacing:10.233472px;}
.ws4b{word-spacing:10.238272px;}
.ws1c1{word-spacing:10.243072px;}
.ws1d4{word-spacing:10.247872px;}
.ws124{word-spacing:10.267072px;}
.ws1ad{word-spacing:10.271872px;}
.ws1be{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws1a9{word-spacing:10.291071px;}
.wsb1{word-spacing:10.305471px;}
.ws1bf{word-spacing:10.310271px;}
.ws1c2{word-spacing:10.319871px;}
.ws1cc{word-spacing:10.329471px;}
.ws1c9{word-spacing:10.343871px;}
.ws86{word-spacing:10.348671px;}
.ws1bc{word-spacing:10.353471px;}
.ws1b5{word-spacing:10.363070px;}
.ws12b{word-spacing:10.382270px;}
.ws1d3{word-spacing:10.396670px;}
.ws1c5{word-spacing:10.415870px;}
.ws12e{word-spacing:10.420670px;}
.ws41{word-spacing:10.425470px;}
.ws1b6{word-spacing:10.439870px;}
.ws45{word-spacing:10.444669px;}
.ws123{word-spacing:10.459069px;}
.ws40{word-spacing:10.463869px;}
.ws8c{word-spacing:10.468669px;}
.ws38{word-spacing:10.478269px;}
.ws122{word-spacing:10.497469px;}
.ws85{word-spacing:10.511869px;}
.ws1cd{word-spacing:10.531068px;}
.ws1c8{word-spacing:10.535868px;}
.ws4f{word-spacing:10.545468px;}
.ws1d0{word-spacing:10.569468px;}
.ws1d5{word-spacing:10.670267px;}
.ws6{word-spacing:11.556000px;}
.ws5{word-spacing:11.626200px;}
.ws198{word-spacing:11.742117px;}
.wsa0{word-spacing:11.898119px;}
.ws195{word-spacing:11.982120px;}
.ws193{word-spacing:12.036120px;}
.wsa1{word-spacing:12.078121px;}
.ws196{word-spacing:12.084121px;}
.ws5f{word-spacing:12.114121px;}
.ws199{word-spacing:12.150121px;}
.wsa4{word-spacing:12.162122px;}
.ws197{word-spacing:12.186122px;}
.wsa9{word-spacing:12.192122px;}
.wsa3{word-spacing:12.228122px;}
.wsaf{word-spacing:12.252123px;}
.wsab{word-spacing:12.258123px;}
.ws117{word-spacing:12.270123px;}
.ws104{word-spacing:12.288123px;}
.ws15{word-spacing:12.294900px;}
.wsaa{word-spacing:12.306123px;}
.wsff{word-spacing:12.318123px;}
.ws17a{word-spacing:12.330123px;}
.wsb{word-spacing:12.346200px;}
.wsac{word-spacing:12.354124px;}
.ws9{word-spacing:12.357600px;}
.ws194{word-spacing:12.366124px;}
.ws62{word-spacing:12.372124px;}
.wsd{word-spacing:12.374700px;}
.wsa2{word-spacing:12.378124px;}
.wsa6{word-spacing:12.384124px;}
.ws5e{word-spacing:12.396124px;}
.ws2f{word-spacing:12.420124px;}
.ws14{word-spacing:12.420300px;}
.wsad{word-spacing:12.426124px;}
.ws11a{word-spacing:12.432124px;}
.ws12{word-spacing:12.437400px;}
.ws13{word-spacing:12.448800px;}
.wsf{word-spacing:12.460200px;}
.ws11b{word-spacing:12.480125px;}
.ws9f{word-spacing:12.486125px;}
.ws115{word-spacing:12.510125px;}
.ws82{word-spacing:12.528125px;}
.ws71{word-spacing:12.540125px;}
.wsa5{word-spacing:12.576126px;}
.ws103{word-spacing:12.588126px;}
.ws11{word-spacing:12.597000px;}
.ws24{word-spacing:12.600126px;}
.ws118{word-spacing:12.612126px;}
.wse{word-spacing:12.614100px;}
.ws16{word-spacing:12.619800px;}
.wsc{word-spacing:12.631200px;}
.ws116{word-spacing:12.654127px;}
.ws110{word-spacing:12.660127px;}
.ws2e{word-spacing:12.666127px;}
.ws134{word-spacing:12.681441px;}
.ws185{word-spacing:12.686241px;}
.ws14b{word-spacing:12.691041px;}
.ws179{word-spacing:12.695841px;}
.wsfd{word-spacing:12.696127px;}
.ws114{word-spacing:12.702127px;}
.ws17{word-spacing:12.705300px;}
.ws70{word-spacing:12.708127px;}
.ws6f{word-spacing:12.714127px;}
.wsfa{word-spacing:12.720127px;}
.ws187{word-spacing:12.724641px;}
.ws17d{word-spacing:12.732127px;}
.wsa7{word-spacing:12.738127px;}
.wsdd{word-spacing:12.743841px;}
.ws119{word-spacing:12.744127px;}
.ws112{word-spacing:12.750127px;}
.wsb3{word-spacing:12.753441px;}
.wse5{word-spacing:12.762128px;}
.wsc7{word-spacing:12.767840px;}
.ws102{word-spacing:12.768128px;}
.wsd5{word-spacing:12.772640px;}
.wsfe{word-spacing:12.774128px;}
.wsd6{word-spacing:12.777440px;}
.ws101{word-spacing:12.786128px;}
.wsae{word-spacing:12.798128px;}
.wsd3{word-spacing:12.801440px;}
.ws10{word-spacing:12.802200px;}
.wscb{word-spacing:12.806240px;}
.wsb9{word-spacing:12.811040px;}
.ws145{word-spacing:12.815840px;}
.ws17e{word-spacing:12.822128px;}
.ws113{word-spacing:12.828128px;}
.wsf9{word-spacing:12.834128px;}
.wsde{word-spacing:12.835040px;}
.ws14c{word-spacing:12.839839px;}
.ws1a3{word-spacing:12.849439px;}
.ws16b{word-spacing:12.852129px;}
.wsa{word-spacing:12.853500px;}
.wsbb{word-spacing:12.854239px;}
.ws10d{word-spacing:12.859039px;}
.ws149{word-spacing:12.873439px;}
.ws144{word-spacing:12.878239px;}
.ws100{word-spacing:12.882129px;}
.wsdf{word-spacing:12.883039px;}
.wsc5{word-spacing:12.887839px;}
.wsda{word-spacing:12.892639px;}
.ws73{word-spacing:12.906129px;}
.wse4{word-spacing:12.912129px;}
.wsb4{word-spacing:12.916639px;}
.wsb0{word-spacing:12.918129px;}
.ws16c{word-spacing:12.921438px;}
.ws13f{word-spacing:12.926238px;}
.ws30{word-spacing:12.930129px;}
.ws6a{word-spacing:12.936129px;}
.wsfb{word-spacing:12.948129px;}
.ws10e{word-spacing:12.950238px;}
.wse0{word-spacing:12.955038px;}
.wscc{word-spacing:12.959838px;}
.ws6b{word-spacing:12.960130px;}
.wsb8{word-spacing:12.964638px;}
.ws81{word-spacing:12.966130px;}
.wsb7{word-spacing:12.969438px;}
.ws9d{word-spacing:12.972130px;}
.ws75{word-spacing:12.978130px;}
.ws173{word-spacing:12.983838px;}
.ws1d{word-spacing:12.984130px;}
.wsc6{word-spacing:12.988638px;}
.ws169{word-spacing:12.990130px;}
.ws10c{word-spacing:12.993438px;}
.ws6c{word-spacing:12.996130px;}
.ws78{word-spacing:13.002130px;}
.ws140{word-spacing:13.003037px;}
.ws9c{word-spacing:13.008130px;}
.ws178{word-spacing:13.012637px;}
.ws156{word-spacing:13.014130px;}
.wsb5{word-spacing:13.017437px;}
.ws151{word-spacing:13.020130px;}
.ws147{word-spacing:13.022237px;}
.ws18{word-spacing:13.026130px;}
.ws10b{word-spacing:13.027037px;}
.wsd4{word-spacing:13.031837px;}
.ws64{word-spacing:13.032130px;}
.wsb6{word-spacing:13.036637px;}
.wse1{word-spacing:13.038130px;}
.wsc9{word-spacing:13.041437px;}
.ws60{word-spacing:13.044130px;}
.ws27{word-spacing:13.050130px;}
.ws65{word-spacing:13.056131px;}
.ws9b{word-spacing:13.062131px;}
.ws142{word-spacing:13.065437px;}
.wseb{word-spacing:13.068131px;}
.wsd7{word-spacing:13.070237px;}
.ws11f{word-spacing:13.074131px;}
.wsc2{word-spacing:13.075037px;}
.ws59{word-spacing:13.080131px;}
.wsdc{word-spacing:13.084636px;}
.ws25{word-spacing:13.086131px;}
.ws2d{word-spacing:13.092131px;}
.ws96{word-spacing:13.098131px;}
.wsb2{word-spacing:13.099036px;}
.wsbd{word-spacing:13.103836px;}
.ws1f{word-spacing:13.104131px;}
.ws55{word-spacing:13.110131px;}
.wsd0{word-spacing:13.113436px;}
.ws7a{word-spacing:13.116131px;}
.wsd2{word-spacing:13.127836px;}
.ws1b{word-spacing:13.128131px;}
.ws2a{word-spacing:13.134131px;}
.wsee{word-spacing:13.140131px;}
.wsc4{word-spacing:13.142236px;}
.ws7f{word-spacing:13.146131px;}
.ws9a{word-spacing:13.152132px;}
.wsd1{word-spacing:13.156636px;}
.ws66{word-spacing:13.158132px;}
.wsca{word-spacing:13.161435px;}
.ws1a{word-spacing:13.164132px;}
.ws97{word-spacing:13.170132px;}
.ws17f{word-spacing:13.175835px;}
.ws28{word-spacing:13.176132px;}
.ws138{word-spacing:13.180635px;}
.ws19{word-spacing:13.182132px;}
.wscf{word-spacing:13.185435px;}
.ws9e{word-spacing:13.188132px;}
.wsba{word-spacing:13.190235px;}
.wsbf{word-spacing:13.194132px;}
.wsc0{word-spacing:13.206132px;}
.ws72{word-spacing:13.212132px;}
.ws2c{word-spacing:13.218132px;}
.wsbc{word-spacing:13.219035px;}
.wsd8{word-spacing:13.223835px;}
.ws54{word-spacing:13.224132px;}
.ws133{word-spacing:13.228635px;}
.ws16a{word-spacing:13.236132px;}
.wse3{word-spacing:13.242132px;}
.ws21{word-spacing:13.248132px;}
.wsdb{word-spacing:13.252634px;}
.ws19a{word-spacing:13.254133px;}
.wsd9{word-spacing:13.257434px;}
.ws17b{word-spacing:13.260133px;}
.ws7d{word-spacing:13.266133px;}
.ws132{word-spacing:13.267034px;}
.ws120{word-spacing:13.272133px;}
.ws10f{word-spacing:13.278133px;}
.wse2{word-spacing:13.284133px;}
.ws2b{word-spacing:13.290133px;}
.ws14a{word-spacing:13.291034px;}
.wse9{word-spacing:13.296133px;}
.ws76{word-spacing:13.302133px;}
.ws53{word-spacing:13.308133px;}
.ws1a4{word-spacing:13.314133px;}
.ws29{word-spacing:13.320133px;}
.ws141{word-spacing:13.324633px;}
.ws83{word-spacing:13.326133px;}
.wscd{word-spacing:13.329433px;}
.wsc8{word-spacing:13.334233px;}
.wsf8{word-spacing:13.338133px;}
.ws106{word-spacing:13.344133px;}
.ws67{word-spacing:13.350134px;}
.ws146{word-spacing:13.353433px;}
.wse6{word-spacing:13.362134px;}
.ws108{word-spacing:13.367833px;}
.ws23{word-spacing:13.368134px;}
.ws6d{word-spacing:13.374134px;}
.wsed{word-spacing:13.380134px;}
.ws7e{word-spacing:13.386134px;}
.wsc3{word-spacing:13.387033px;}
.wsbe{word-spacing:13.392134px;}
.ws130{word-spacing:13.398134px;}
.ws148{word-spacing:13.406232px;}
.wsf4{word-spacing:13.410134px;}
.ws17c{word-spacing:13.416134px;}
.wsc1{word-spacing:13.422134px;}
.wsea{word-spacing:13.428134px;}
.ws1c{word-spacing:13.440134px;}
.ws135{word-spacing:13.444632px;}
.ws99{word-spacing:13.446134px;}
.ws22{word-spacing:13.452135px;}
.wsf1{word-spacing:13.464135px;}
.ws136{word-spacing:13.468632px;}
.ws69{word-spacing:13.470135px;}
.ws7b{word-spacing:13.476135px;}
.ws6e{word-spacing:13.500135px;}
.ws58{word-spacing:13.506135px;}
.ws20{word-spacing:13.512135px;}
.wsf0{word-spacing:13.530135px;}
.wse7{word-spacing:13.536135px;}
.ws105{word-spacing:13.542135px;}
.wsf6{word-spacing:13.548135px;}
.ws177{word-spacing:13.559830px;}
.ws1e{word-spacing:13.560136px;}
.ws79{word-spacing:13.578136px;}
.ws57{word-spacing:13.596136px;}
.ws74{word-spacing:13.602136px;}
.ws68{word-spacing:13.608136px;}
.ws7c{word-spacing:13.650137px;}
.ws56{word-spacing:13.668137px;}
.wsf5{word-spacing:13.692137px;}
.ws12f{word-spacing:13.704137px;}
.ws61{word-spacing:13.716137px;}
.ws77{word-spacing:13.764138px;}
.wsef{word-spacing:13.794138px;}
.ws5b{word-spacing:13.902139px;}
.ws168{word-spacing:13.926139px;}
.ws15e{word-spacing:13.938139px;}
.ws165{word-spacing:13.950139px;}
.ws157{word-spacing:13.956140px;}
.ws5c{word-spacing:13.974140px;}
.ws15d{word-spacing:13.998140px;}
.ws63{word-spacing:14.016140px;}
.ws15a{word-spacing:14.070141px;}
.ws163{word-spacing:14.220142px;}
.ws160{word-spacing:14.244142px;}
.ws5a{word-spacing:14.322143px;}
.ws15f{word-spacing:14.334143px;}
.ws161{word-spacing:14.346143px;}
.ws15b{word-spacing:14.358144px;}
.ws164{word-spacing:14.370144px;}
.ws162{word-spacing:14.394144px;}
.ws167{word-spacing:14.406144px;}
.ws15c{word-spacing:14.442144px;}
.ws11c{word-spacing:15.400672px;}
.ws111{word-spacing:15.465471px;}
.ws14d{word-spacing:15.479871px;}
.ws1a5{word-spacing:15.523071px;}
.wse8{word-spacing:15.537471px;}
.wsec{word-spacing:15.580670px;}
.ws14f{word-spacing:15.587870px;}
.ws131{word-spacing:15.595070px;}
.ws98{word-spacing:15.602270px;}
.ws11e{word-spacing:15.631070px;}
.ws121{word-spacing:15.645470px;}
.ws95{word-spacing:15.652670px;}
.ws14e{word-spacing:15.717469px;}
.ws80{word-spacing:15.731869px;}
.ws150{word-spacing:15.739069px;}
.wsfc{word-spacing:15.854268px;}
.ws1{word-spacing:26.148131px;}
.ws4{word-spacing:26.304132px;}
.ws2{word-spacing:26.340132px;}
.ws3{word-spacing:26.376132px;}
.ws1a6{word-spacing:59.821652px;}
.ws1b4{word-spacing:59.860052px;}
.ws10a{word-spacing:64.957588px;}
.ws183{word-spacing:192.933588px;}
.ws186{word-spacing:192.967188px;}
.ws184{word-spacing:193.274384px;}
.ws190{word-spacing:204.155848px;}
.ws13a{word-spacing:211.638954px;}
.ws18b{word-spacing:219.462857px;}
.ws176{word-spacing:223.888401px;}
.ws172{word-spacing:224.224397px;}
.ws170{word-spacing:224.229197px;}
.ws143{word-spacing:227.286759px;}
.wsce{word-spacing:234.659467px;}
.ws175{word-spacing:237.491431px;}
.ws171{word-spacing:239.195410px;}
.ws174{word-spacing:239.531406px;}
.ws18a{word-spacing:240.592193px;}
.ws18f{word-spacing:240.894589px;}
.ws19f{word-spacing:241.916976px;}
.ws19c{word-spacing:242.156973px;}
.ws19e{word-spacing:242.252972px;}
.ws18c{word-spacing:245.656129px;}
.ws13c{word-spacing:248.377695px;}
.ws139{word-spacing:248.718491px;}
.ws1a2{word-spacing:257.223985px;}
.ws1a1{word-spacing:257.559980px;}
.ws180{word-spacing:259.503956px;}
.ws109{word-spacing:260.031950px;}
.ws13b{word-spacing:264.025500px;}
.ws189{word-spacing:267.121461px;}
.ws137{word-spacing:267.327858px;}
.ws18d{word-spacing:272.190198px;}
.ws16f{word-spacing:276.270147px;}
.ws19d{word-spacing:278.650917px;}
.ws16e{word-spacing:279.236509px;}
.ws16d{word-spacing:279.572505px;}
.ws188{word-spacing:282.428470px;}
.ws181{word-spacing:286.038024px;}
.ws18e{word-spacing:293.617130px;}
.ws1a0{word-spacing:294.298721px;}
.ws19b{word-spacing:297.601080px;}
.ws191{word-spacing:308.924138px;}
.ws182{word-spacing:312.231297px;}
._68{margin-left:-13.987709px;}
._d{margin-left:-12.960130px;}
._8{margin-left:-10.550268px;}
._c{margin-left:-4.175948px;}
._9{margin-left:-2.524746px;}
._1{margin-left:-1.272006px;}
._3{width:1.356600px;}
._28{width:3.355158px;}
._26{width:4.377545px;}
._a{width:9.076687px;}
._b{width:11.078284px;}
._5{width:12.600126px;}
._2{width:13.680000px;}
._4{width:14.849699px;}
._e{width:15.988600px;}
._71{width:21.028515px;}
._27{width:23.812502px;}
._0{width:27.276136px;}
._6{width:46.833015px;}
._31{width:53.480931px;}
._47{width:56.576893px;}
._2f{width:69.805527px;}
._3b{width:77.629430px;}
._30{width:85.794128px;}
._46{width:96.032400px;}
._44{width:122.528068px;}
._43{width:162.295571px;}
._3f{width:177.525781px;}
._37{width:186.132073px;}
._38{width:188.935238px;}
._61{width:193.322383px;}
._3c{width:199.255109px;}
._34{width:208.221397px;}
._39{width:212.622942px;}
._57{width:224.325196px;}
._40{width:229.835527px;}
._35{width:234.712266px;}
._32{width:239.195410px;}
._63{width:240.942588px;}
._36{width:242.684966px;}
._4f{width:248.425695px;}
._60{width:256.249597px;}
._5a{width:260.847939px;}
._50{width:264.006129px;}
._64{width:267.135861px;}
._58{width:276.318146px;}
._6d{width:278.698916px;}
._62{width:282.442869px;}
._23{width:283.450857px;}
._f{width:284.492444px;}
._11{width:287.199610px;}
._6e{width:293.967525px;}
._41{width:296.511494px;}
._18{width:307.916151px;}
._2c{width:311.780103px;}
._66{width:313.133686px;}
._19{width:316.772040px;}
._1f{width:321.394383px;}
._42{width:325.459932px;}
._20{width:328.392695px;}
._51{width:331.843852px;}
._12{width:334.411820px;}
._1c{width:335.779803px;}
._2a{width:338.275771px;}
._1e{width:340.771740px;}
._16{width:343.267709px;}
._22{width:346.243672px;}
._33{width:347.338058px;}
._13{width:348.739641px;}
._21{width:351.235610px;}
._24{width:362.275472px;}
._3e{width:372.619342px;}
._2b{width:385.588780px;}
._1b{width:389.951926px;}
._10{width:391.881501px;}
._15{width:418.127573px;}
._45{width:423.393108px;}
._65{width:434.072974px;}
._1a{width:444.301646px;}
._3d{width:451.808752px;}
._59{width:465.027787px;}
._29{width:467.125361px;}
._17{width:468.147748px;}
._6f{width:477.090036px;}
._70{width:483.056362px;}
._25{width:490.337871px;}
._4c{width:513.415982px;}
._67{width:582.098324px;}
._5c{width:586.015075px;}
._5f{width:593.618180px;}
._4e{width:612.328346px;}
._56{width:624.572993px;}
._53{width:628.192147px;}
._14{width:641.228785px;}
._6c{width:642.601567px;}
._48{width:649.743878px;}
._3a{width:660.159748px;}
._6b{width:691.647354px;}
._1d{width:693.029737px;}
._5d{width:708.653542px;}
._55{width:709.675929px;}
._4d{width:721.920576px;}
._54{width:728.040499px;}
._5e{width:735.187610px;}
._4b{width:741.806727px;}
._6a{width:782.467019px;}
._2e{width:887.163310px;}
._2d{width:941.930626px;}
._5b{width:1514.337871px;}
._4a{width:1523.865751px;}
._52{width:1529.985675px;}
._69{width:1538.827164px;}
._49{width:1656.132898px;}
._7{width:1682.666966px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.995000px;}
.fs7{font-size:39.996000px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs6{font-size:60.000600px;}
.fs5{font-size:71.999400px;}
.fs3{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y24{bottom:54.000000px;}
.y19b{bottom:124.491135px;}
.y23{bottom:124.492170px;}
.yee{bottom:124.493850px;}
.ya6{bottom:124.494495px;}
.y277{bottom:124.495920px;}
.y71{bottom:124.496565px;}
.y38c{bottom:124.496944px;}
.y238{bottom:124.497210px;}
.y43{bottom:124.504170px;}
.y1d2{bottom:125.090880px;}
.y17a{bottom:127.558388px;}
.y2e7{bottom:128.324400px;}
.y2c6{bottom:130.786800px;}
.y2e6{bottom:130.790160px;}
.y2e8{bottom:130.790550px;}
.ydc{bottom:131.214479px;}
.y326{bottom:137.509004px;}
.y34e{bottom:138.012675px;}
.y38b{bottom:138.783965px;}
.y42{bottom:141.001564px;}
.y1f0{bottom:142.941390px;}
.y19a{bottom:143.965830px;}
.y22{bottom:143.966865px;}
.yed{bottom:143.968545px;}
.ya5{bottom:143.969190px;}
.y276{bottom:143.970615px;}
.y70{bottom:143.971260px;}
.y237{bottom:143.971904px;}
.y1d1{bottom:144.565575px;}
.y2e5{bottom:150.264854px;}
.y2c5{bottom:150.345496px;}
.ydb{bottom:152.984606px;}
.y38a{bottom:152.985787px;}
.y179{bottom:154.516051px;}
.y324{bottom:154.516500px;}
.y323{bottom:157.064985px;}
.y325{bottom:157.067700px;}
.y34d{bottom:157.487370px;}
.y41{bottom:157.498958px;}
.y235{bottom:160.979550px;}
.y1ef{bottom:162.500085px;}
.y199{bottom:163.524525px;}
.y21{bottom:163.525561px;}
.yec{bottom:163.527240px;}
.ya4{bottom:163.527885px;}
.y234{bottom:163.529311px;}
.y6f{bottom:163.529955px;}
.y236{bottom:163.530600px;}
.y1d0{bottom:164.124270px;}
.y2e3{bottom:167.272350px;}
.y3c3{bottom:169.058888px;}
.y2c4{bottom:169.820190px;}
.y2e2{bottom:169.820835px;}
.y2e4{bottom:169.823550px;}
.yda{bottom:171.778771px;}
.y389{bottom:172.459144px;}
.y178{bottom:172.544625px;}
.y40{bottom:173.996351px;}
.y322{bottom:176.539680px;}
.y34c{bottom:177.046066px;}
.y1ee{bottom:181.974780px;}
.y198{bottom:182.999220px;}
.y20{bottom:183.000255px;}
.yeb{bottom:183.001935px;}
.ya3{bottom:183.002580px;}
.y233{bottom:183.004005px;}
.y6e{bottom:183.004650px;}
.y3c2{bottom:183.345909px;}
.y1cf{bottom:183.598965px;}
.y388{bottom:186.746165px;}
.y2c3{bottom:189.294885px;}
.y2e1{bottom:189.295530px;}
.yd9{bottom:190.487738px;}
.y3f{bottom:190.493745px;}
.y177{bottom:190.573200px;}
.y176{bottom:195.845700px;}
.y321{bottom:196.014375px;}
.y34b{bottom:196.520761px;}
.y3c1{bottom:197.547732px;}
.y232{bottom:200.012550px;}
.y1ed{bottom:201.449475px;}
.y197{bottom:202.473915px;}
.y1f{bottom:202.474950px;}
.yea{bottom:202.476630px;}
.ya2{bottom:202.477275px;}
.y275{bottom:202.477665px;}
.y231{bottom:202.478700px;}
.y259{bottom:202.479104px;}
.y1ce{bottom:203.073660px;}
.y387{bottom:206.220722px;}
.y3e{bottom:206.991139px;}
.y175{bottom:208.516125px;}
.y6d{bottom:208.516500px;}
.y2e0{bottom:208.770225px;}
.y2c2{bottom:208.853581px;}
.yd8{bottom:209.280703px;}
.y320{bottom:215.489069px;}
.y34a{bottom:215.995455px;}
.y3c0{bottom:217.106287px;}
.y386{bottom:220.507743px;}
.y1ec{bottom:221.008170px;}
.y196{bottom:222.032611px;}
.y1e{bottom:222.033646px;}
.ye9{bottom:222.035325px;}
.ya1{bottom:222.035970px;}
.y274{bottom:222.036361px;}
.y258{bottom:222.037800px;}
.y1cd{bottom:222.632355px;}
.y3d{bottom:223.488533px;}
.y174{bottom:226.544700px;}
.yd7{bottom:227.989669px;}
.y230{bottom:227.991175px;}
.y2c1{bottom:228.328275px;}
.y2df{bottom:228.328920px;}
.y3bf{bottom:231.308110px;}
.y173{bottom:231.902250px;}
.y31f{bottom:235.047765px;}
.y349{bottom:235.470150px;}
.y385{bottom:239.981100px;}
.y3c{bottom:239.985927px;}
.y1eb{bottom:240.482865px;}
.y195{bottom:241.507305px;}
.y1d{bottom:241.508340px;}
.ye8{bottom:241.510020px;}
.ya0{bottom:241.510665px;}
.y273{bottom:241.511055px;}
.y1ca{bottom:242.102025px;}
.y1cc{bottom:242.107050px;}
.y172{bottom:244.572435px;}
.y3be{bottom:245.595131px;}
.yd6{bottom:246.783834px;}
.y257{bottom:247.464450px;}
.y2c0{bottom:247.802970px;}
.y2de{bottom:247.803615px;}
.y1cb{bottom:248.740050px;}
.y22f{bottom:248.995200px;}
.y2aa{bottom:254.520135px;}
.y31e{bottom:254.522460px;}
.y348{bottom:255.028846px;}
.y3b{bottom:256.483320px;}
.y271{bottom:258.519600px;}
.y1ea{bottom:259.957560px;}
.y384{bottom:260.220450px;}
.y194{bottom:260.982000px;}
.y1c{bottom:260.983035px;}
.ye7{bottom:260.984715px;}
.y270{bottom:260.985105px;}
.y9f{bottom:260.985360px;}
.y272{bottom:260.985750px;}
.y1c9{bottom:261.576719px;}
.y171{bottom:262.515811px;}
.y3bd{bottom:265.068488px;}
.yd5{bottom:265.486238px;}
.y2dd{bottom:267.278310px;}
.y2bf{bottom:267.361666px;}
.y3a{bottom:272.980714px;}
.y2a9{bottom:273.994830px;}
.y31d{bottom:273.997154px;}
.y347{bottom:274.503540px;}
.y26f{bottom:277.993650px;}
.y3bc{bottom:279.355509px;}
.y1e9{bottom:279.516255px;}
.y193{bottom:280.456695px;}
.y1b{bottom:280.457730px;}
.ye6{bottom:280.459410px;}
.y26e{bottom:280.459800px;}
.y9e{bottom:280.460054px;}
.y170{bottom:280.544386px;}
.y6c{bottom:281.132940px;}
.y1c8{bottom:281.135415px;}
.yd4{bottom:284.280403px;}
.y2be{bottom:286.836361px;}
.y2dc{bottom:286.837005px;}
.y39{bottom:289.478108px;}
.y31b{bottom:291.004650px;}
.y22e{bottom:291.682830px;}
.y2a8{bottom:293.469525px;}
.y31a{bottom:293.552490px;}
.y31c{bottom:293.555850px;}
.y346{bottom:293.978235px;}
.y256{bottom:296.616555px;}
.y9d{bottom:297.467550px;}
.y16f{bottom:298.572960px;}
.y3bb{bottom:298.828866px;}
.y1e8{bottom:298.990950px;}
.y192{bottom:300.015390px;}
.y1a{bottom:300.016425px;}
.ye5{bottom:300.018105px;}
.y9c{bottom:300.018750px;}
.y6b{bottom:300.607635px;}
.y1c7{bottom:300.610110px;}
.yd3{bottom:302.989369px;}
.y2da{bottom:303.760500px;}
.y383{bottom:304.864711px;}
.y26d{bottom:305.971500px;}
.y2d9{bottom:306.308745px;}
.y2bd{bottom:306.311055px;}
.y2db{bottom:306.311700px;}
.y22d{bottom:311.157525px;}
.y319{bottom:313.027185px;}
.y2a7{bottom:313.028220px;}
.y3ba{bottom:313.115887px;}
.y345{bottom:313.536931px;}
.y254{bottom:313.625100px;}
.y38{bottom:314.989789px;}
.y253{bottom:316.090860px;}
.y255{bottom:316.091250px;}
.y9a{bottom:317.026650px;}
.y1e7{bottom:318.465645px;}
.y99{bottom:319.489845px;}
.y191{bottom:319.490085px;}
.y19{bottom:319.491120px;}
.y9b{bottom:319.492800px;}
.y6a{bottom:320.082330px;}
.y1c6{bottom:320.084804px;}
.yd2{bottom:321.783534px;}
.y2bb{bottom:323.319600px;}
.y382{bottom:324.339405px;}
.y16d{bottom:325.445550px;}
.y2d8{bottom:325.783440px;}
.y2bc{bottom:325.785750px;}
.y2ba{bottom:325.786154px;}
.y16c{bottom:327.401035px;}
.y16e{bottom:327.401400px;}
.y22c{bottom:330.716220px;}
.y37{bottom:331.487183px;}
.y318{bottom:332.501880px;}
.y2a6{bottom:332.502915px;}
.y3b9{bottom:332.589244px;}
.y344{bottom:333.011625px;}
.y252{bottom:335.565554px;}
.y1e6{bottom:338.024340px;}
.y98{bottom:338.964540px;}
.y190{bottom:338.964780px;}
.y18{bottom:338.965815px;}
.y69{bottom:339.557025px;}
.y1c5{bottom:339.559499px;}
.yd1{bottom:340.492500px;}
.y381{bottom:343.814100px;}
.y16a{bottom:344.154150px;}
.ye4{bottom:345.004650px;}
.y2d7{bottom:345.258134px;}
.y2b9{bottom:345.344850px;}
.y169{bottom:346.194834px;}
.y16b{bottom:346.195200px;}
.y3b8{bottom:346.791066px;}
.y36{bottom:347.984577px;}
.y22b{bottom:350.190915px;}
.y2a5{bottom:351.977610px;}
.y317{bottom:352.060575px;}
.y343{bottom:352.486320px;}
.y250{bottom:352.573200px;}
.y26c{bottom:353.422755px;}
.y24f{bottom:355.123605px;}
.y251{bottom:355.124250px;}
.y1e5{bottom:357.499035px;}
.y97{bottom:358.523235px;}
.y18f{bottom:358.523475px;}
.y17{bottom:358.524511px;}
.y68{bottom:359.115720px;}
.y1c4{bottom:359.118195px;}
.yd0{bottom:359.286665px;}
.y2b8{bottom:362.352750px;}
.y167{bottom:362.947950px;}
.y2d6{bottom:364.816830px;}
.y2b7{bottom:364.818105px;}
.y166{bottom:364.903435px;}
.y168{bottom:364.903800px;}
.y3b7{bottom:366.349622px;}
.y380{bottom:369.325950px;}
.y22a{bottom:369.665610px;}
.y26a{bottom:370.431450px;}
.y316{bottom:371.535270px;}
.y2a4{bottom:371.536305px;}
.y342{bottom:372.045016px;}
.y24d{bottom:372.047100px;}
.y269{bottom:372.896805px;}
.y26b{bottom:372.897450px;}
.y35{bottom:373.496258px;}
.y24c{bottom:374.596861px;}
.y24e{bottom:374.598300px;}
.y1e4{bottom:376.973730px;}
.ycf{bottom:377.995632px;}
.y96{bottom:377.997930px;}
.y18e{bottom:377.998170px;}
.y16{bottom:377.999205px;}
.y67{bottom:378.590415px;}
.y1c3{bottom:378.592890px;}
.y3b6{bottom:380.551444px;}
.y164{bottom:381.656550px;}
.y2b5{bottom:381.826650px;}
.y163{bottom:383.697234px;}
.y165{bottom:383.697600px;}
.y2d5{bottom:384.291525px;}
.y2b6{bottom:384.292800px;}
.y2b4{bottom:384.293204px;}
.ye2{bottom:386.418750px;}
.ye1{bottom:388.968270px;}
.ye3{bottom:388.969950px;}
.y229{bottom:389.224305px;}
.y267{bottom:389.905500px;}
.y34{bottom:389.993651px;}
.y315{bottom:391.009965px;}
.y2a3{bottom:391.011000px;}
.y341{bottom:391.519711px;}
.y266{bottom:392.371260px;}
.y268{bottom:392.371500px;}
.y24b{bottom:394.071555px;}
.y3b5{bottom:394.838466px;}
.y1e3{bottom:396.448425px;}
.yce{bottom:396.788597px;}
.y95{bottom:397.472625px;}
.y18d{bottom:397.472865px;}
.y15{bottom:397.473900px;}
.y66{bottom:398.065110px;}
.y1c2{bottom:398.067584px;}
.y161{bottom:400.450350px;}
.y160{bottom:402.405835px;}
.y162{bottom:402.406200px;}
.y2d4{bottom:403.766219px;}
.y2b3{bottom:403.851900px;}
.y227{bottom:406.233000px;}
.y33{bottom:406.491045px;}
.ye0{bottom:408.442965px;}
.y226{bottom:408.698355px;}
.y228{bottom:408.699000px;}
.y314{bottom:410.484660px;}
.y340{bottom:410.994405px;}
.y249{bottom:411.080250px;}
.y265{bottom:411.929955px;}
.y248{bottom:413.545365px;}
.y24a{bottom:413.546250px;}
.y37f{bottom:413.884530px;}
.y3b4{bottom:414.311822px;}
.ycd{bottom:415.497563px;}
.y1e2{bottom:416.007120px;}
.y2a2{bottom:416.522700px;}
.y94{bottom:417.031320px;}
.y18c{bottom:417.031561px;}
.y65{bottom:417.623805px;}
.y1c1{bottom:417.626280px;}
.y15e{bottom:419.158950px;}
.y15d{bottom:421.199484px;}
.y15f{bottom:421.200000px;}
.y14{bottom:422.985600px;}
.y32{bottom:422.988439px;}
.y2d3{bottom:423.324915px;}
.ydf{bottom:427.917660px;}
.y33e{bottom:428.002950px;}
.y225{bottom:428.173050px;}
.y3b3{bottom:428.598844px;}
.y264{bottom:428.938500px;}
.y2b2{bottom:429.363600px;}
.y313{bottom:430.043355px;}
.y33d{bottom:430.468860px;}
.y33f{bottom:430.469100px;}
.y263{bottom:431.404650px;}
.y247{bottom:433.104061px;}
.y37e{bottom:433.443225px;}
.ycc{bottom:434.206529px;}
.y1e1{bottom:435.481815px;}
.y93{bottom:436.506015px;}
.y18b{bottom:436.506255px;}
.y64{bottom:437.098500px;}
.y1c0{bottom:437.100975px;}
.y15b{bottom:437.952600px;}
.y31{bottom:439.485833px;}
.y15a{bottom:439.908085px;}
.y15c{bottom:439.908450px;}
.y2d2{bottom:442.799610px;}
.y3b2{bottom:442.800666px;}
.yde{bottom:447.476355px;}
.y312{bottom:449.518050px;}
.y33c{bottom:450.027555px;}
.y246{bottom:452.578755px;}
.y37d{bottom:452.917920px;}
.ycb{bottom:453.000694px;}
.y224{bottom:453.685525px;}
.y1e0{bottom:454.956510px;}
.y92{bottom:455.980710px;}
.y18a{bottom:455.980950px;}
.y30{bottom:455.983227px;}
.y63{bottom:456.573195px;}
.y1bf{bottom:456.575669px;}
.y158{bottom:456.661350px;}
.y262{bottom:456.916350px;}
.y157{bottom:458.701884px;}
.y159{bottom:458.702250px;}
.y2b1{bottom:459.041990px;}
.y2d1{bottom:462.274304px;}
.y3b1{bottom:462.359222px;}
.y2cf{bottom:463.295091px;}
.ydd{bottom:466.951050px;}
.y33b{bottom:469.502250px;}
.yca{bottom:471.709660px;}
.y245{bottom:472.053450px;}
.y37c{bottom:472.392615px;}
.y1df{bottom:474.515205px;}
.y223{bottom:474.689550px;}
.y155{bottom:475.455000px;}
.y91{bottom:475.539405px;}
.y62{bottom:476.131890px;}
.y1be{bottom:476.134365px;}
.y3b0{bottom:476.561044px;}
.y154{bottom:477.409922px;}
.y156{bottom:477.410850px;}
.y2af{bottom:480.217200px;}
.y189{bottom:481.492800px;}
.y2f{bottom:481.494908px;}
.y2d0{bottom:481.833000px;}
.y2ae{bottom:482.257135px;}
.y2b0{bottom:482.258100px;}
.y2cd{bottom:484.554150px;}
.y2cc{bottom:486.593812px;}
.y2ce{bottom:486.595200px;}
.y244{bottom:489.061350px;}
.yc9{bottom:490.503825px;}
.y243{bottom:491.611755px;}
.y37b{bottom:491.951311px;}
.y1de{bottom:493.989900px;}
.y33a{bottom:494.673637px;}
.y152{bottom:494.929050px;}
.y90{bottom:495.014100px;}
.y61{bottom:495.606585px;}
.y1bd{bottom:495.609060px;}
.y3af{bottom:496.119600px;}
.y153{bottom:496.204087px;}
.y2ad{bottom:496.544156px;}
.y151{bottom:496.969678px;}
.y2cb{bottom:500.795635px;}
.y2e{bottom:507.006589px;}
.y10e{bottom:508.109662px;}
.y241{bottom:508.620300px;}
.yc8{bottom:509.212791px;}
.y14f{bottom:509.215650px;}
.y3ae{bottom:510.321422px;}
.y2ac{bottom:510.745979px;}
.y240{bottom:511.086060px;}
.y242{bottom:511.086450px;}
.y14e{bottom:511.170862px;}
.y150{bottom:511.171500px;}
.y37a{bottom:511.426005px;}
.y1dd{bottom:513.464595px;}
.y221{bottom:514.913250px;}
.y60{bottom:515.081280px;}
.y2ca{bottom:515.082656px;}
.y1bc{bottom:515.083754px;}
.y220{bottom:517.377090px;}
.y222{bottom:517.379400px;}
.y8f{bottom:520.525800px;}
.y339{bottom:521.631300px;}
.y13{bottom:522.994650px;}
.y188{bottom:524.518710px;}
.y3ad{bottom:524.608443px;}
.y2ab{bottom:525.033000px;}
.y338{bottom:526.988850px;}
.yc7{bottom:528.006956px;}
.y2c9{bottom:529.369678px;}
.y14d{bottom:529.965028px;}
.y23f{bottom:530.560754px;}
.y379{bottom:530.900700px;}
.y1ba{bottom:532.091100px;}
.y2a1{bottom:532.176037px;}
.y2d{bottom:532.518270px;}
.y1dc{bottom:533.023290px;}
.y5f{bottom:534.639975px;}
.y1b9{bottom:534.641655px;}
.y1bb{bottom:534.642450px;}
.y10d{bottom:535.152524px;}
.y368{bottom:535.917787px;}
.y21f{bottom:536.935785px;}
.y337{bottom:539.659650px;}
.y2c8{bottom:541.615650px;}
.y14b{bottom:542.210850px;}
.y311{bottom:543.401400px;}
.y2c7{bottom:543.571500px;}
.y12{bottom:543.999150px;}
.y187{bottom:544.077405px;}
.y3ac{bottom:544.078538px;}
.y14a{bottom:544.166062px;}
.y14c{bottom:544.166850px;}
.y336{bottom:545.017200px;}
.yc6{bottom:546.715923px;}
.y310{bottom:548.673900px;}
.y23e{bottom:550.119450px;}
.y1b7{bottom:551.565150px;}
.y1db{bottom:552.497985px;}
.y10c{bottom:553.095900px;}
.y5e{bottom:554.114670px;}
.y1b6{bottom:554.115705px;}
.y1b8{bottom:554.116350px;}
.y21e{bottom:556.410480px;}
.y378{bottom:556.412550px;}
.y335{bottom:557.688000px;}
.y2c{bottom:558.029951px;}
.y3ab{bottom:558.365559px;}
.y10b{bottom:558.453450px;}
.y2a0{bottom:559.133700px;}
.y30f{bottom:561.344700px;}
.y367{bottom:562.875450px;}
.y149{bottom:562.960228px;}
.y334{bottom:562.960500px;}
.y186{bottom:563.552100px;}
.y8e{bottom:564.405165px;}
.y29f{bottom:564.491250px;}
.y11{bottom:565.003650px;}
.yc5{bottom:565.510088px;}
.y30e{bottom:566.702250px;}
.y366{bottom:568.232850px;}
.y10a{bottom:571.123421px;}
.y1b4{bottom:571.124250px;}
.y1da{bottom:571.972680px;}
.y3e0{bottom:572.567532px;}
.y1b3{bottom:573.584970px;}
.y5d{bottom:573.589365px;}
.y1b5{bottom:573.590400px;}
.y2b{bottom:574.527345px;}
.y147{bottom:575.206200px;}
.y23d{bottom:575.547025px;}
.y333{bottom:575.631300px;}
.y21d{bottom:575.885175px;}
.y148{bottom:577.162050px;}
.y146{bottom:577.162173px;}
.y3aa{bottom:577.838916px;}
.y30d{bottom:579.373050px;}
.y365{bottom:580.903800px;}
.y332{bottom:580.988850px;}
.y29e{bottom:582.519450px;}
.y185{bottom:583.026795px;}
.y8d{bottom:583.963861px;}
.yc4{bottom:584.219054px;}
.y30c{bottom:584.730600px;}
.y10{bottom:585.922650px;}
.y364{bottom:586.261200px;}
.y3df{bottom:586.854553px;}
.y109{bottom:589.151995px;}
.y1d9{bottom:591.447375px;}
.y3a9{bottom:592.040738px;}
.y1b2{bottom:593.059665px;}
.y5c{bottom:593.064060px;}
.y331{bottom:593.657995px;}
.y145{bottom:594.680100px;}
.y29d{bottom:595.190400px;}
.y21c{bottom:595.359869px;}
.y23c{bottom:596.551050px;}
.y144{bottom:596.720729px;}
.y30b{bottom:597.401400px;}
.y363{bottom:598.932150px;}
.y2a{bottom:600.039026px;}
.y29c{bottom:600.547800px;}
.y377{bottom:600.972419px;}
.y3de{bottom:601.056376px;}
.y184{bottom:602.585490px;}
.y30a{bottom:602.673900px;}
.yc3{bottom:603.013219px;}
.y8c{bottom:603.438555px;}
.y362{bottom:604.204500px;}
.y3a8{bottom:606.327759px;}
.yf{bottom:606.927150px;}
.y142{bottom:608.966700px;}
.y1d8{bottom:611.006070px;}
.y141{bottom:611.006962px;}
.y143{bottom:611.007750px;}
.y330{bottom:611.686570px;}
.y1b1{bottom:612.618361px;}
.y5b{bottom:612.622755px;}
.y29b{bottom:613.133700px;}
.y21b{bottom:614.918565px;}
.y309{bottom:615.343636px;}
.y29{bottom:616.536420px;}
.y361{bottom:616.874011px;}
.y108{bottom:617.980435px;}
.y29a{bottom:618.491250px;}
.y376{bottom:620.531115px;}
.y3dd{bottom:620.614931px;}
.yc2{bottom:621.722185px;}
.y183{bottom:622.060185px;}
.y8b{bottom:622.913250px;}
.y3a7{bottom:625.801116px;}
.ye{bottom:627.931650px;}
.y32f{bottom:629.629946px;}
.y140{bottom:629.715929px;}
.y1d7{bottom:630.480765px;}
.y299{bottom:631.160986px;}
.y5a{bottom:632.089560px;}
.y1b0{bottom:632.093055px;}
.y28{bottom:633.033813px;}
.y308{bottom:633.372211px;}
.y21a{bottom:634.393260px;}
.y3dc{bottom:634.816754px;}
.y360{bottom:634.902586px;}
.y107{bottom:636.774600px;}
.y375{bottom:640.005810px;}
.y3a6{bottom:640.088137px;}
.yc1{bottom:640.516350px;}
.y182{bottom:641.534880px;}
.y13e{bottom:641.962050px;}
.y13f{bottom:644.002950px;}
.y13d{bottom:644.003222px;}
.y23b{bottom:645.702361px;}
.y32e{bottom:647.658520px;}
.y8a{bottom:648.425100px;}
.yd{bottom:648.936150px;}
.y298{bottom:649.189561px;}
.y27{bottom:649.531207px;}
.y1d6{bottom:649.955460px;}
.y307{bottom:651.400785px;}
.y59{bottom:651.564254px;}
.y1af{bottom:651.567750px;}
.y35f{bottom:652.931161px;}
.y219{bottom:653.867954px;}
.y3db{bottom:654.291310px;}
.y106{bottom:655.476835px;}
.yc0{bottom:659.219785px;}
.y374{bottom:659.480504px;}
.y3a5{bottom:659.562694px;}
.y181{bottom:661.009575px;}
.y13c{bottom:663.476579px;}
.y23a{bottom:665.177055px;}
.y32d{bottom:665.687095px;}
.y297{bottom:667.132936px;}
.y3da{bottom:668.578332px;}
.y306{bottom:669.344161px;}
.y1d5{bottom:669.514155px;}
.yc{bottom:669.940650px;}
.y35e{bottom:670.874536px;}
.y58{bottom:671.122950px;}
.y1ae{bottom:671.126446px;}
.y218{bottom:673.426650px;}
.y3a4{bottom:673.849715px;}
.y26{bottom:674.106900px;}
.y105{bottom:674.271000px;}
.y13a{bottom:675.722700px;}
.y372{bottom:676.488000px;}
.y13b{bottom:677.763600px;}
.y139{bottom:677.763872px;}
.ybf{bottom:678.013950px;}
.y371{bottom:679.038405px;}
.y373{bottom:679.039200px;}
.y180{bottom:680.568270px;}
.y32c{bottom:683.630471px;}
.y239{bottom:684.651750px;}
.y296{bottom:685.161511px;}
.y305{bottom:687.372736px;}
.y3a3{bottom:688.051538px;}
.y3d9{bottom:688.051688px;}
.y35d{bottom:688.903111px;}
.y1d4{bottom:688.988850px;}
.y57{bottom:690.597645px;}
.y1ad{bottom:690.601140px;}
.yb{bottom:690.945150px;}
.y89{bottom:692.389755px;}
.y104{bottom:692.979966px;}
.ybe{bottom:696.722916px;}
.y138{bottom:697.237229px;}
.y370{bottom:698.513100px;}
.y217{bottom:698.937525px;}
.y17f{bottom:700.042965px;}
.y32b{bottom:701.659045px;}
.y3d8{bottom:702.338710px;}
.y295{bottom:703.190086px;}
.y304{bottom:705.401310px;}
.y35c{bottom:706.931686px;}
.y3a2{bottom:707.610093px;}
.y136{bottom:709.483350px;}
.y56{bottom:710.072340px;}
.y1ac{bottom:710.075835px;}
.y135{bottom:711.523462px;}
.y137{bottom:711.524250px;}
.y103{bottom:711.774131px;}
.y88{bottom:711.864450px;}
.ya{bottom:711.949650px;}
.y1d3{bottom:714.500550px;}
.ybd{bottom:715.517081px;}
.y36f{bottom:715.521000px;}
.y261{bottom:716.710819px;}
.y36e{bottom:717.987554px;}
.y17e{bottom:719.517660px;}
.y294{bottom:721.133461px;}
.y3a1{bottom:721.811916px;}
.y3d7{bottom:721.813266px;}
.y87{bottom:724.114687px;}
.y35b{bottom:724.875061px;}
.y216{bottom:725.895900px;}
.y55{bottom:729.631035px;}
.y1ab{bottom:729.634531px;}
.y134{bottom:730.232429px;}
.y102{bottom:730.483097px;}
.y32a{bottom:730.487485px;}
.y9{bottom:732.954150px;}
.ybc{bottom:734.226047px;}
.y301{bottom:734.229563px;}
.y303{bottom:734.229750px;}
.y3a0{bottom:736.098937px;}
.y3d6{bottom:736.100288px;}
.y36d{bottom:737.546250px;}
.y17d{bottom:739.076355px;}
.y302{bottom:739.587150px;}
.y260{bottom:739.926929px;}
.y86{bottom:740.612081px;}
.y132{bottom:742.563600px;}
.y131{bottom:744.518812px;}
.y133{bottom:744.519450px;}
.y54{bottom:749.105730px;}
.y1aa{bottom:749.109225px;}
.y101{bottom:749.277262px;}
.y327{bottom:749.281612px;}
.y329{bottom:749.281650px;}
.y291{bottom:750.046003px;}
.y293{bottom:750.047100px;}
.ya8{bottom:750.132741px;}
.y3d5{bottom:750.302110px;}
.y25e{bottom:752.173050px;}
.ybb{bottom:753.020212px;}
.y300{bottom:753.023728px;}
.y205{bottom:753.363338px;}
.y358{bottom:753.787753px;}
.y35a{bottom:753.788700px;}
.y25d{bottom:754.212835px;}
.y25f{bottom:754.213950px;}
.y328{bottom:754.639200px;}
.y292{bottom:755.404500px;}
.y39f{bottom:755.573494px;}
.y85{bottom:757.109475px;}
.y17c{bottom:758.551050px;}
.y359{bottom:759.061200px;}
.y36c{bottom:762.973050px;}
.y130{bottom:763.312978px;}
.y8{bottom:765.949350px;}
.y100{bottom:767.986228px;}
.y25c{bottom:768.414657px;}
.y215{bottom:768.580170px;}
.y53{bottom:768.580425px;}
.y1a9{bottom:768.583920px;}
.y290{bottom:768.754969px;}
.y39e{bottom:769.860515px;}
.y3d4{bottom:769.860666px;}
.yba{bottom:771.729178px;}
.y357{bottom:772.496719px;}
.y2ff{bottom:772.497085px;}
.ya7{bottom:773.432850px;}
.y84{bottom:773.606868px;}
.y12e{bottom:775.558800px;}
.y12d{bottom:777.514012px;}
.y12f{bottom:777.514800px;}
.y204{bottom:780.406200px;}
.y25b{bottom:782.701679px;}
.y3d3{bottom:784.062488px;}
.y17b{bottom:784.062900px;}
.y203{bottom:785.678550px;}
.yff{bottom:786.780393px;}
.y28f{bottom:787.549134px;}
.y214{bottom:788.054865px;}
.y52{bottom:788.055119px;}
.y1a8{bottom:788.058615px;}
.y2fd{bottom:789.250200px;}
.y39d{bottom:789.335072px;}
.y83{bottom:790.104262px;}
.yb9{bottom:790.523343px;}
.y2fc{bottom:791.290884px;}
.y2fe{bottom:791.291250px;}
.y12c{bottom:794.267550px;}
.y12b{bottom:796.308178px;}
.y25a{bottom:796.988700px;}
.y202{bottom:798.349350px;}
.y25{bottom:800.900550px;}
.y3d2{bottom:803.621044px;}
.y39c{bottom:803.622093px;}
.y201{bottom:803.706900px;}
.y28d{bottom:804.302100px;}
.yfe{bottom:805.489360px;}
.y28e{bottom:806.258100px;}
.y28c{bottom:806.258494px;}
.y82{bottom:806.601656px;}
.y213{bottom:807.613561px;}
.y51{bottom:807.613815px;}
.y1a7{bottom:807.617311px;}
.y36b{bottom:807.617955px;}
.y2fa{bottom:808.043850px;}
.y129{bottom:808.554150px;}
.yb8{bottom:809.232310px;}
.y2fb{bottom:809.999850px;}
.y2f9{bottom:810.000244px;}
.y356{bottom:810.000535px;}
.y12a{bottom:810.510000px;}
.y128{bottom:810.510562px;}
.y3d1{bottom:817.822866px;}
.y39b{bottom:823.095450px;}
.y81{bottom:823.099050px;}
.y28a{bottom:823.861200px;}
.yfd{bottom:824.283525px;}
.y369{bottom:824.626500px;}
.y289{bottom:825.816685px;}
.y28b{bottom:825.817050px;}
.y354{bottom:826.752450px;}
.y212{bottom:827.088255px;}
.y50{bottom:827.088510px;}
.y1a6{bottom:827.092005px;}
.y36a{bottom:827.092650px;}
.y200{bottom:827.262215px;}
.y2f7{bottom:827.517900px;}
.yb7{bottom:828.025275px;}
.y353{bottom:828.793284px;}
.y355{bottom:828.793500px;}
.y7{bottom:828.963675px;}
.y127{bottom:829.303528px;}
.y2f6{bottom:829.558584px;}
.y2f8{bottom:829.558800px;}
.y3d0{bottom:837.296223px;}
.y39a{bottom:837.297272px;}
.y80{bottom:839.596444px;}
.y125{bottom:841.549500px;}
.y287{bottom:842.569950px;}
.yfc{bottom:842.992491px;}
.y126{bottom:843.505350px;}
.y124{bottom:843.505762px;}
.y1a4{bottom:844.100550px;}
.y286{bottom:844.610484px;}
.y288{bottom:844.610850px;}
.y351{bottom:845.546250px;}
.y1ff{bottom:845.971181px;}
.y2f4{bottom:846.311550px;}
.y211{bottom:846.562950px;}
.y4f{bottom:846.563204px;}
.y1a3{bottom:846.564630px;}
.y1a5{bottom:846.566700px;}
.yb6{bottom:846.734241px;}
.y352{bottom:847.502250px;}
.y350{bottom:847.502644px;}
.y2f3{bottom:848.267035px;}
.y2f5{bottom:848.267550px;}
.y3cf{bottom:851.583244px;}
.y7f{bottom:856.093837px;}
.y399{bottom:856.855828px;}
.y6{bottom:858.982500px;}
.y284{bottom:861.363600px;}
.yfb{bottom:861.785456px;}
.y123{bottom:862.298728px;}
.y283{bottom:863.318935px;}
.y285{bottom:863.319450px;}
.y1fe{bottom:864.765346px;}
.y34f{bottom:865.020300px;}
.yb5{bottom:865.528406px;}
.y210{bottom:866.121646px;}
.y4e{bottom:866.121900px;}
.y1a2{bottom:866.123325px;}
.y2f2{bottom:867.061200px;}
.y2f0{bottom:867.061743px;}
.y398{bottom:871.057650px;}
.y3ce{bottom:871.057801px;}
.y2f1{bottom:872.418600px;}
.y7e{bottom:872.591231px;}
.y121{bottom:874.544700px;}
.y122{bottom:876.500550px;}
.y120{bottom:876.501112px;}
.yfa{bottom:880.494422px;}
.y280{bottom:882.112884px;}
.y282{bottom:882.113100px;}
.y1fd{bottom:883.474312px;}
.yb4{bottom:884.237372px;}
.y397{bottom:885.344672px;}
.y3cd{bottom:885.344822px;}
.y20f{bottom:885.596340px;}
.y4d{bottom:885.596595px;}
.y1a1{bottom:885.598020px;}
.y5{bottom:885.939900px;}
.y2ed{bottom:886.532822px;}
.y2ef{bottom:886.535100px;}
.y281{bottom:887.385600px;}
.y7d{bottom:889.088625px;}
.y2ee{bottom:891.892650px;}
.y11f{bottom:895.294078px;}
.yf9{bottom:899.288587px;}
.y3cc{bottom:899.546645px;}
.y27d{bottom:900.819843px;}
.y27f{bottom:900.821850px;}
.y1fa{bottom:902.267147px;}
.yb3{bottom:903.031537px;}
.y396{bottom:904.818028px;}
.y20e{bottom:905.071035px;}
.y4c{bottom:905.071290px;}
.y1a0{bottom:905.072715px;}
.y2ec{bottom:905.326987px;}
.y7c{bottom:905.586019px;}
.y27e{bottom:906.179250px;}
.y11d{bottom:907.539900px;}
.y11e{bottom:909.495900px;}
.y11c{bottom:909.496312px;}
.y1f9{bottom:916.468969px;}
.y1fc{bottom:916.469100px;}
.yf8{bottom:917.997553px;}
.y395{bottom:919.105050px;}
.y3cb{bottom:919.105200px;}
.y27c{bottom:919.614008px;}
.yb2{bottom:921.740503px;}
.y1fb{bottom:921.826500px;}
.y7b{bottom:922.083412px;}
.y4{bottom:923.440575px;}
.y2eb{bottom:924.035953px;}
.y20d{bottom:924.629731px;}
.y4b{bottom:924.629985px;}
.y19f{bottom:924.631411px;}
.y11b{bottom:928.289278px;}
.y3ca{bottom:933.307023px;}
.y1f8{bottom:935.261934px;}
.yf7{bottom:936.706519px;}
.y27b{bottom:938.322974px;}
.y394{bottom:938.578406px;}
.yb1{bottom:940.533468px;}
.y119{bottom:940.535100px;}
.y118{bottom:942.490312px;}
.y11a{bottom:942.491100px;}
.y20c{bottom:944.104425px;}
.y4a{bottom:944.104680px;}
.y19e{bottom:944.106105px;}
.y2ea{bottom:946.571671px;}
.y7a{bottom:947.595094px;}
.y1f7{bottom:949.463757px;}
.y393{bottom:952.865428px;}
.y3c9{bottom:952.865578px;}
.yf6{bottom:955.500684px;}
.yb0{bottom:959.242434px;}
.y27a{bottom:960.858693px;}
.y3{bottom:960.943762px;}
.y19c{bottom:961.114800px;}
.y117{bottom:961.284478px;}
.y20b{bottom:963.579120px;}
.y49{bottom:963.579375px;}
.y19d{bottom:963.580800px;}
.y79{bottom:964.092487px;}
.y392{bottom:967.067250px;}
.y3c8{bottom:967.067401px;}
.y1f6{bottom:968.257922px;}
.y2e9{bottom:972.338949px;}
.y116{bottom:973.530450px;}
.yf5{bottom:974.209650px;}
.y115{bottom:975.486300px;}
.yaf{bottom:978.036599px;}
.y78{bottom:980.589881px;}
.y391{bottom:981.354272px;}
.y20a{bottom:983.137816px;}
.y48{bottom:983.138070px;}
.y3c7{bottom:986.540757px;}
.y279{bottom:986.540772px;}
.y1f5{bottom:986.965688px;}
.yf4{bottom:993.003816px;}
.yae{bottom:996.745566px;}
.y77{bottom:997.087275px;}
.y110{bottom:998.021028px;}
.y113{bottom:998.021429px;}
.y2{bottom:998.446950px;}
.y390{bottom:1000.827628px;}
.y3c6{bottom:1000.827779px;}
.y1f4{bottom:1001.252709px;}
.y209{bottom:1002.612511px;}
.y47{bottom:1002.612765px;}
.y111{bottom:1003.379400px;}
.yf3{bottom:1011.712782px;}
.y10f{bottom:1012.308049px;}
.y112{bottom:1012.308450px;}
.y76{bottom:1013.584669px;}
.y38f{bottom:1015.114650px;}
.y3c5{bottom:1015.114800px;}
.yad{bottom:1015.539731px;}
.y114{bottom:1017.580800px;}
.y3c4{bottom:1020.387150px;}
.y208{bottom:1022.087205px;}
.y46{bottom:1022.087460px;}
.y1f1{bottom:1023.788306px;}
.y1f3{bottom:1023.788428px;}
.y1f2{bottom:1029.061200px;}
.y75{bottom:1030.082062px;}
.yf2{bottom:1034.248500px;}
.yf0{bottom:1034.249006px;}
.y38e{bottom:1034.588006px;}
.y1{bottom:1035.949350px;}
.yaa{bottom:1037.990128px;}
.yac{bottom:1037.990250px;}
.yf1{bottom:1039.606050px;}
.y207{bottom:1041.561900px;}
.y45{bottom:1041.562154px;}
.yab{bottom:1043.347800px;}
.y74{bottom:1046.579456px;}
.y206{bottom:1048.280100px;}
.y38d{bottom:1048.789829px;}
.y44{bottom:1061.120850px;}
.y278{bottom:1062.226500px;}
.yef{bottom:1062.736650px;}
.y73{bottom:1063.076850px;}
.ya9{bottom:1064.267400px;}
.y72{bottom:1118.692500px;}
.hf{height:28.827495px;}
.hd{height:29.275425px;}
.hb{height:31.756824px;}
.h8{height:34.943563px;}
.h10{height:35.087561px;}
.h1{height:43.247459px;}
.h13{height:43.260509px;}
.he{height:43.273708px;}
.hc{height:43.919451px;}
.h7{height:47.640476px;}
.h9{height:47.672037px;}
.h3{height:49.410000px;}
.h5{height:51.357000px;}
.h11{height:58.080523px;}
.h12{height:58.419670px;}
.ha{height:64.871459px;}
.h6{height:65.879451px;}
.h4{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:54.000000px;}
.x2d{left:60.973200px;}
.x19{left:62.333850px;}
.x25{left:69.222000px;}
.x5{left:71.433000px;}
.x89{left:73.048800px;}
.x2e{left:75.770100px;}
.x2c{left:77.555850px;}
.x8b{left:79.681800px;}
.x8a{left:81.042450px;}
.x4{left:84.018900px;}
.x8c{left:88.015800px;}
.x8d{left:112.932300px;}
.x1b{left:119.054787px;}
.x8e{left:136.998300px;}
.x4f{left:140.739716px;}
.x8f{left:145.332300px;}
.x90{left:158.513400px;}
.x50{left:165.061350px;}
.x91{left:166.336950px;}
.x1a{left:169.738553px;}
.x99{left:189.127500px;}
.x74{left:197.291250px;}
.x75{left:202.223550px;}
.x51{left:207.666000px;}
.x76{left:223.313250px;}
.x77{left:228.245550px;}
.x92{left:242.362200px;}
.xab{left:248.486900px;}
.x1c{left:250.610342px;}
.x78{left:253.927500px;}
.xa7{left:256.222405px;}
.x79{left:258.944850px;}
.xb1{left:260.732469px;}
.x7a{left:286.582650px;}
.x1d{left:291.259800px;}
.x53{left:292.364541px;}
.x1{left:300.018750px;}
.xb7{left:306.651900px;}
.xaa{left:311.331315px;}
.x68{left:316.431450px;}
.x2{left:317.963429px;}
.x7b{left:322.214100px;}
.x69{left:325.105350px;}
.xa3{left:328.677499px;}
.xb8{left:331.483190px;}
.x15{left:343.558950px;}
.x7c{left:347.640900px;}
.x26{left:359.206200px;}
.x48{left:360.566850px;}
.x2f{left:365.839200px;}
.x49{left:369.240900px;}
.x7d{left:371.026650px;}
.x31{left:374.173050px;}
.x6f{left:378.255000px;}
.xac{left:379.615650px;}
.x6d{left:383.357400px;}
.x70{left:386.929050px;}
.xad{left:388.204650px;}
.x81{left:391.606200px;}
.x57{left:403.766850px;}
.x58{left:409.124250px;}
.x1e{left:413.121187px;}
.x7e{left:414.566850px;}
.xa{left:419.414100px;}
.x4a{left:421.455000px;}
.x5f{left:422.645550px;}
.xb{left:428.003100px;}
.x60{left:431.404650px;}
.x72{left:437.697450px;}
.xb6{left:443.990400px;}
.x7f{left:445.180950px;}
.x73{left:446.371500px;}
.x80{left:452.749500px;}
.x55{left:455.640900px;}
.xc{left:458.191950px;}
.xd{left:463.464450px;}
.x9a{left:469.247100px;}
.x3a{left:471.032850px;}
.x9b{left:478.006200px;}
.x3b{left:479.706900px;}
.xa4{left:485.403940px;}
.x56{left:488.295900px;}
.xa0{left:491.017200px;}
.xa8{left:495.779400px;}
.xa1{left:499.691250px;}
.xaf{left:502.243850px;}
.x54{left:505.728900px;}
.x9c{left:520.355700px;}
.x3c{left:522.566700px;}
.x3d{left:527.924250px;}
.x9d{left:529.029750px;}
.x88{left:536.173050px;}
.x32{left:542.806200px;}
.x1f{left:544.761941px;}
.x6e{left:547.228200px;}
.x20{left:551.990400px;}
.xb3{left:554.371500px;}
.x3e{left:556.157250px;}
.x71{left:558.113250px;}
.x17{left:560.834400px;}
.xb4{left:563.130450px;}
.x3f{left:564.831300px;}
.x18{left:566.191950px;}
.x59{left:569.168400px;}
.x5a{left:574.610850px;}
.x40{left:587.621850px;}
.xe{left:594.595050px;}
.x41{left:596.380950px;}
.x52{left:598.929509px;}
.xf{left:603.184050px;}
.xb5{left:605.310000px;}
.x63{left:610.922700px;}
.x83{left:612.198300px;}
.x21{left:614.834400px;}
.x64{left:616.280100px;}
.xb2{left:619.171500px;}
.x84{left:620.872350px;}
.x5b{left:623.508450px;}
.x42{left:625.294350px;}
.x27{left:630.056550px;}
.x6{left:634.308450px;}
.x30{left:636.689550px;}
.x10{left:638.645550px;}
.x6c{left:640.771500px;}
.xb9{left:644.088000px;}
.x4b{left:645.363600px;}
.x65{left:647.999850px;}
.xa9{left:652.166700px;}
.x4c{left:654.037650px;}
.xa2{left:660.245550px;}
.x4d{left:668.579250px;}
.x61{left:672.150900px;}
.x22{left:675.806838px;}
.x4e{left:678.018750px;}
.x85{left:679.889550px;}
.x43{left:681.420300px;}
.xae{left:686.267550px;}
.x86{left:688.563600px;}
.x28{left:690.434400px;}
.x29{left:695.366700px;}
.x66{left:698.938350px;}
.x33{left:702.595050px;}
.xa5{left:703.614012px;}
.x97{left:706.336800px;}
.x34{left:707.952600px;}
.x44{left:712.969950px;}
.x98{left:713.990400px;}
.x45{left:721.643850px;}
.x62{left:724.365150px;}
.x93{left:727.086450px;}
.x35{left:732.273900px;}
.x2a{left:733.889550px;}
.x94{left:735.845550px;}
.x36{left:737.631300px;}
.x2b{left:738.821850px;}
.x38{left:746.305350px;}
.x46{left:750.557250px;}
.x39{left:754.979400px;}
.x47{left:755.999850px;}
.xb0{left:757.957054px;}
.x37{left:761.272200px;}
.x11{left:765.779400px;}
.xa6{left:769.688786px;}
.x12{left:771.051750px;}
.x13{left:776.154150px;}
.x87{left:778.790250px;}
.x14{left:781.426500px;}
.x5c{left:785.083350px;}
.x82{left:793.417050px;}
.x16{left:800.135979px;}
.x23{left:807.362393px;}
.x7{left:812.125800px;}
.x24{left:814.591950px;}
.x8{left:817.483350px;}
.x96{left:821.054850px;}
.x5d{left:828.368250px;}
.x9e{left:829.558800px;}
.x5e{left:833.725650px;}
.x9{left:836.787150px;}
.x9f{left:838.232850px;}
.x67{left:843.845400px;}
.x95{left:851.328900px;}
.x6a{left:852.349350px;}
.x6b{left:857.706900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.002692pt;}
.ls40{letter-spacing:-1.072011pt;}
.ls3a{letter-spacing:-1.056011pt;}
.ls3e{letter-spacing:-1.034677pt;}
.ls3f{letter-spacing:-1.024010pt;}
.ls3b{letter-spacing:-1.018677pt;}
.ls41{letter-spacing:-1.013343pt;}
.ls37{letter-spacing:-1.002677pt;}
.ls3d{letter-spacing:-0.997343pt;}
.ls39{letter-spacing:-0.981343pt;}
.ls3c{letter-spacing:-0.976010pt;}
.ls43{letter-spacing:-0.864009pt;}
.ls42{letter-spacing:-0.848008pt;}
.lsd{letter-spacing:-0.778674pt;}
.ls47{letter-spacing:-0.757341pt;}
.ls10{letter-spacing:-0.752008pt;}
.lse{letter-spacing:-0.720007pt;}
.lsf{letter-spacing:-0.709340pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.034133pt;}
.ls4d{letter-spacing:0.102399pt;}
.ls1c{letter-spacing:0.128001pt;}
.ls18{letter-spacing:0.136532pt;}
.ls16{letter-spacing:0.140798pt;}
.ls4{letter-spacing:0.154668pt;}
.ls2c{letter-spacing:0.156420pt;}
.ls5{letter-spacing:0.165335pt;}
.ls4f{letter-spacing:0.170665pt;}
.ls4b{letter-spacing:0.197335pt;}
.ls19{letter-spacing:0.204797pt;}
.ls46{letter-spacing:0.221864pt;}
.ls9{letter-spacing:0.229336pt;}
.ls0{letter-spacing:0.235200pt;}
.ls1e{letter-spacing:0.314670pt;}
.ls30{letter-spacing:9.104953pt;}
.ls33{letter-spacing:9.173219pt;}
.ls35{letter-spacing:9.177485pt;}
.ls31{letter-spacing:9.292684pt;}
.ls25{letter-spacing:9.343883pt;}
.ls6{letter-spacing:9.378016pt;}
.lsc{letter-spacing:9.382283pt;}
.ls2f{letter-spacing:9.403616pt;}
.ls32{letter-spacing:9.476148pt;}
.ls34{letter-spacing:9.595613pt;}
.ls38{letter-spacing:10.464105pt;}
.ls36{letter-spacing:10.746774pt;}
.ls8{letter-spacing:11.050777pt;}
.ls22{letter-spacing:11.338780pt;}
.lsa{letter-spacing:11.354780pt;}
.ls12{letter-spacing:11.520115pt;}
.ls24{letter-spacing:11.546782pt;}
.ls14{letter-spacing:11.642783pt;}
.ls3{letter-spacing:11.653450pt;}
.ls2b{letter-spacing:11.690521pt;}
.ls20{letter-spacing:11.701450pt;}
.ls1b{letter-spacing:11.711854pt;}
.ls26{letter-spacing:11.720387pt;}
.ls21{letter-spacing:11.728117pt;}
.ls17{letter-spacing:11.763053pt;}
.ls1d{letter-spacing:11.824118pt;}
.ls1f{letter-spacing:11.845452pt;}
.ls1a{letter-spacing:11.895318pt;}
.ls23{letter-spacing:11.946786pt;}
.lsb{letter-spacing:11.957453pt;}
.ls4a{letter-spacing:11.963584pt;}
.ls2a{letter-spacing:11.989183pt;}
.ls28{letter-spacing:11.993450pt;}
.ls2d{letter-spacing:12.014783pt;}
.ls27{letter-spacing:12.023316pt;}
.ls15{letter-spacing:12.065983pt;}
.ls2e{letter-spacing:14.163082pt;}
.ls1{letter-spacing:18.777365pt;}
.ls45{letter-spacing:279.309575pt;}
.ls49{letter-spacing:281.805544pt;}
.ls48{letter-spacing:284.450844pt;}
.ls29{letter-spacing:300.779174pt;}
.ls44{letter-spacing:311.966234pt;}
.ls4c{letter-spacing:327.991633pt;}
.ls4e{letter-spacing:424.080032pt;}
.wsf2{word-spacing:-12.010787pt;}
.ws192{word-spacing:-12.006250pt;}
.wsf7{word-spacing:-11.877452pt;}
.ws107{word-spacing:-11.754784pt;}
.ws13d{word-spacing:-11.754520pt;}
.wsf3{word-spacing:-11.706784pt;}
.wsa8{word-spacing:-11.573449pt;}
.ws158{word-spacing:-10.517439pt;}
.ws32{word-spacing:-9.420682pt;}
.ws129{word-spacing:-9.386549pt;}
.ws11d{word-spacing:-0.063999pt;}
.ws26{word-spacing:-0.053334pt;}
.ws8{word-spacing:-0.042666pt;}
.ws13e{word-spacing:-0.028440pt;}
.ws52{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.698674pt;}
.ws159{word-spacing:1.002677pt;}
.ws1ab{word-spacing:8.430828pt;}
.ws89{word-spacing:8.520427pt;}
.ws1aa{word-spacing:8.528960pt;}
.ws92{word-spacing:8.567360pt;}
.ws8d{word-spacing:8.575893pt;}
.ws4a{word-spacing:8.597226pt;}
.ws50{word-spacing:8.622826pt;}
.ws47{word-spacing:8.635625pt;}
.ws1b1{word-spacing:8.639892pt;}
.ws8a{word-spacing:8.648425pt;}
.ws3a{word-spacing:8.656958pt;}
.ws1c6{word-spacing:8.661225pt;}
.ws36{word-spacing:8.665492pt;}
.ws1c0{word-spacing:8.682558pt;}
.ws1c4{word-spacing:8.695358pt;}
.ws8f{word-spacing:8.699625pt;}
.ws1c7{word-spacing:8.708158pt;}
.ws91{word-spacing:8.729491pt;}
.ws34{word-spacing:8.733757pt;}
.ws3f{word-spacing:8.750824pt;}
.ws42{word-spacing:8.755091pt;}
.ws1ac{word-spacing:8.759357pt;}
.ws1af{word-spacing:8.763624pt;}
.ws90{word-spacing:8.767890pt;}
.ws1d6{word-spacing:8.772157pt;}
.ws3e{word-spacing:8.776424pt;}
.ws3d{word-spacing:8.784957pt;}
.ws37{word-spacing:8.789223pt;}
.ws8e{word-spacing:8.793490pt;}
.ws1a7{word-spacing:8.797757pt;}
.ws1c3{word-spacing:8.802023pt;}
.ws49{word-spacing:8.814823pt;}
.ws44{word-spacing:8.819090pt;}
.ws4c{word-spacing:8.823356pt;}
.ws12c{word-spacing:8.827623pt;}
.ws87{word-spacing:8.831890pt;}
.ws94{word-spacing:8.836156pt;}
.ws93{word-spacing:8.840423pt;}
.ws1a8{word-spacing:8.857489pt;}
.ws12d{word-spacing:8.861756pt;}
.ws154{word-spacing:8.866023pt;}
.ws46{word-spacing:8.870289pt;}
.ws1cf{word-spacing:8.874556pt;}
.ws1ce{word-spacing:8.878822pt;}
.ws1b0{word-spacing:8.883089pt;}
.ws48{word-spacing:8.887356pt;}
.ws7{word-spacing:8.895889pt;}
.ws3c{word-spacing:8.900155pt;}
.ws1bb{word-spacing:8.904422pt;}
.ws1b7{word-spacing:8.912955pt;}
.ws8b{word-spacing:8.921488pt;}
.ws88{word-spacing:8.925755pt;}
.ws43{word-spacing:8.930022pt;}
.ws1b2{word-spacing:8.934288pt;}
.ws1ba{word-spacing:8.938555pt;}
.ws3b{word-spacing:8.942822pt;}
.ws35{word-spacing:8.951355pt;}
.ws155{word-spacing:8.955621pt;}
.ws31{word-spacing:8.959888pt;}
.ws152{word-spacing:8.964155pt;}
.ws128{word-spacing:8.968421pt;}
.ws1bd{word-spacing:8.972688pt;}
.ws1ae{word-spacing:8.976954pt;}
.ws4d{word-spacing:8.981221pt;}
.ws51{word-spacing:8.989754pt;}
.ws1cb{word-spacing:8.994021pt;}
.ws125{word-spacing:8.998288pt;}
.ws1b3{word-spacing:9.002554pt;}
.ws1d1{word-spacing:9.006821pt;}
.ws166{word-spacing:9.023887pt;}
.ws84{word-spacing:9.028154pt;}
.ws153{word-spacing:9.032420pt;}
.ws12a{word-spacing:9.036687pt;}
.ws126{word-spacing:9.040954pt;}
.ws4e{word-spacing:9.045220pt;}
.ws33{word-spacing:9.049487pt;}
.ws39{word-spacing:9.053753pt;}
.ws127{word-spacing:9.062287pt;}
.ws1d2{word-spacing:9.066553pt;}
.ws1ca{word-spacing:9.070820pt;}
.ws1b9{word-spacing:9.092153pt;}
.ws1b8{word-spacing:9.096420pt;}
.ws4b{word-spacing:9.100686pt;}
.ws1c1{word-spacing:9.104953pt;}
.ws1d4{word-spacing:9.109219pt;}
.ws124{word-spacing:9.126286pt;}
.ws1ad{word-spacing:9.130553pt;}
.ws1be{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws1a9{word-spacing:9.147619pt;}
.wsb1{word-spacing:9.160419pt;}
.ws1bf{word-spacing:9.164685pt;}
.ws1c2{word-spacing:9.173219pt;}
.ws1cc{word-spacing:9.181752pt;}
.ws1c9{word-spacing:9.194552pt;}
.ws86{word-spacing:9.198818pt;}
.ws1bc{word-spacing:9.203085pt;}
.ws1b5{word-spacing:9.211618pt;}
.ws12b{word-spacing:9.228685pt;}
.ws1d3{word-spacing:9.241484pt;}
.ws1c5{word-spacing:9.258551pt;}
.ws12e{word-spacing:9.262818pt;}
.ws41{word-spacing:9.267084pt;}
.ws1b6{word-spacing:9.279884pt;}
.ws45{word-spacing:9.284151pt;}
.ws123{word-spacing:9.296950pt;}
.ws40{word-spacing:9.301217pt;}
.ws8c{word-spacing:9.305484pt;}
.ws38{word-spacing:9.314017pt;}
.ws122{word-spacing:9.331083pt;}
.ws85{word-spacing:9.343883pt;}
.ws1cd{word-spacing:9.360950pt;}
.ws1c8{word-spacing:9.365216pt;}
.ws4f{word-spacing:9.373749pt;}
.ws1d0{word-spacing:9.395083pt;}
.ws1d5{word-spacing:9.484681pt;}
.ws6{word-spacing:10.272000pt;}
.ws5{word-spacing:10.334400pt;}
.ws198{word-spacing:10.437438pt;}
.wsa0{word-spacing:10.576106pt;}
.ws195{word-spacing:10.650773pt;}
.ws193{word-spacing:10.698774pt;}
.wsa1{word-spacing:10.736107pt;}
.ws196{word-spacing:10.741441pt;}
.ws5f{word-spacing:10.768108pt;}
.ws199{word-spacing:10.800108pt;}
.wsa4{word-spacing:10.810775pt;}
.ws197{word-spacing:10.832108pt;}
.wsa9{word-spacing:10.837442pt;}
.wsa3{word-spacing:10.869442pt;}
.wsaf{word-spacing:10.890776pt;}
.wsab{word-spacing:10.896109pt;}
.ws117{word-spacing:10.906776pt;}
.ws104{word-spacing:10.922776pt;}
.ws15{word-spacing:10.928800pt;}
.wsaa{word-spacing:10.938776pt;}
.wsff{word-spacing:10.949443pt;}
.ws17a{word-spacing:10.960110pt;}
.wsb{word-spacing:10.974400pt;}
.wsac{word-spacing:10.981443pt;}
.ws9{word-spacing:10.984533pt;}
.ws194{word-spacing:10.992110pt;}
.ws62{word-spacing:10.997443pt;}
.wsd{word-spacing:10.999733pt;}
.wsa2{word-spacing:11.002777pt;}
.wsa6{word-spacing:11.008110pt;}
.ws5e{word-spacing:11.018777pt;}
.ws2f{word-spacing:11.040110pt;}
.ws14{word-spacing:11.040267pt;}
.wsad{word-spacing:11.045444pt;}
.ws11a{word-spacing:11.050777pt;}
.ws12{word-spacing:11.055467pt;}
.ws13{word-spacing:11.065600pt;}
.wsf{word-spacing:11.075733pt;}
.ws11b{word-spacing:11.093444pt;}
.ws9f{word-spacing:11.098778pt;}
.ws115{word-spacing:11.120111pt;}
.ws82{word-spacing:11.136111pt;}
.ws71{word-spacing:11.146778pt;}
.wsa5{word-spacing:11.178778pt;}
.ws103{word-spacing:11.189445pt;}
.ws11{word-spacing:11.197333pt;}
.ws24{word-spacing:11.200112pt;}
.ws118{word-spacing:11.210779pt;}
.wse{word-spacing:11.212533pt;}
.ws16{word-spacing:11.217600pt;}
.wsc{word-spacing:11.227733pt;}
.ws116{word-spacing:11.248112pt;}
.ws110{word-spacing:11.253446pt;}
.ws2e{word-spacing:11.258779pt;}
.ws134{word-spacing:11.272392pt;}
.ws185{word-spacing:11.276659pt;}
.ws14b{word-spacing:11.280926pt;}
.ws179{word-spacing:11.285192pt;}
.wsfd{word-spacing:11.285446pt;}
.ws114{word-spacing:11.290780pt;}
.ws17{word-spacing:11.293600pt;}
.ws70{word-spacing:11.296113pt;}
.ws6f{word-spacing:11.301446pt;}
.wsfa{word-spacing:11.306780pt;}
.ws187{word-spacing:11.310792pt;}
.ws17d{word-spacing:11.317447pt;}
.wsa7{word-spacing:11.322780pt;}
.wsdd{word-spacing:11.327858pt;}
.ws119{word-spacing:11.328113pt;}
.ws112{word-spacing:11.333447pt;}
.wsb3{word-spacing:11.336392pt;}
.wse5{word-spacing:11.344113pt;}
.wsc7{word-spacing:11.349191pt;}
.ws102{word-spacing:11.349447pt;}
.wsd5{word-spacing:11.353458pt;}
.wsfe{word-spacing:11.354780pt;}
.wsd6{word-spacing:11.357725pt;}
.ws101{word-spacing:11.365447pt;}
.wsae{word-spacing:11.376114pt;}
.wsd3{word-spacing:11.379058pt;}
.ws10{word-spacing:11.379733pt;}
.wscb{word-spacing:11.383324pt;}
.wsb9{word-spacing:11.387591pt;}
.ws145{word-spacing:11.391858pt;}
.ws17e{word-spacing:11.397447pt;}
.ws113{word-spacing:11.402781pt;}
.wsf9{word-spacing:11.408114pt;}
.wsde{word-spacing:11.408924pt;}
.ws14c{word-spacing:11.413191pt;}
.ws1a3{word-spacing:11.421724pt;}
.ws16b{word-spacing:11.424114pt;}
.wsa{word-spacing:11.425333pt;}
.wsbb{word-spacing:11.425991pt;}
.ws10d{word-spacing:11.430257pt;}
.ws149{word-spacing:11.443057pt;}
.ws144{word-spacing:11.447324pt;}
.ws100{word-spacing:11.450781pt;}
.wsdf{word-spacing:11.451590pt;}
.wsc5{word-spacing:11.455857pt;}
.wsda{word-spacing:11.460123pt;}
.ws73{word-spacing:11.472115pt;}
.wse4{word-spacing:11.477448pt;}
.wsb4{word-spacing:11.481456pt;}
.wsb0{word-spacing:11.482781pt;}
.ws16c{word-spacing:11.485723pt;}
.ws13f{word-spacing:11.489990pt;}
.ws30{word-spacing:11.493448pt;}
.ws6a{word-spacing:11.498782pt;}
.wsfb{word-spacing:11.509448pt;}
.ws10e{word-spacing:11.511323pt;}
.wse0{word-spacing:11.515589pt;}
.wscc{word-spacing:11.519856pt;}
.ws6b{word-spacing:11.520115pt;}
.wsb8{word-spacing:11.524123pt;}
.ws81{word-spacing:11.525449pt;}
.wsb7{word-spacing:11.528389pt;}
.ws9d{word-spacing:11.530782pt;}
.ws75{word-spacing:11.536115pt;}
.ws173{word-spacing:11.541189pt;}
.ws1d{word-spacing:11.541449pt;}
.wsc6{word-spacing:11.545456pt;}
.ws169{word-spacing:11.546782pt;}
.ws10c{word-spacing:11.549722pt;}
.ws6c{word-spacing:11.552116pt;}
.ws78{word-spacing:11.557449pt;}
.ws140{word-spacing:11.558256pt;}
.ws9c{word-spacing:11.562782pt;}
.ws178{word-spacing:11.566789pt;}
.ws156{word-spacing:11.568116pt;}
.wsb5{word-spacing:11.571055pt;}
.ws151{word-spacing:11.573449pt;}
.ws147{word-spacing:11.575322pt;}
.ws18{word-spacing:11.578782pt;}
.ws10b{word-spacing:11.579589pt;}
.wsd4{word-spacing:11.583855pt;}
.ws64{word-spacing:11.584116pt;}
.wsb6{word-spacing:11.588122pt;}
.wse1{word-spacing:11.589449pt;}
.wsc9{word-spacing:11.592388pt;}
.ws60{word-spacing:11.594783pt;}
.ws27{word-spacing:11.600116pt;}
.ws65{word-spacing:11.605449pt;}
.ws9b{word-spacing:11.610783pt;}
.ws142{word-spacing:11.613721pt;}
.wseb{word-spacing:11.616116pt;}
.wsd7{word-spacing:11.617988pt;}
.ws11f{word-spacing:11.621450pt;}
.wsc2{word-spacing:11.622255pt;}
.ws59{word-spacing:11.626783pt;}
.wsdc{word-spacing:11.630788pt;}
.ws25{word-spacing:11.632116pt;}
.ws2d{word-spacing:11.637450pt;}
.ws96{word-spacing:11.642783pt;}
.wsb2{word-spacing:11.643588pt;}
.wsbd{word-spacing:11.647854pt;}
.ws1f{word-spacing:11.648116pt;}
.ws55{word-spacing:11.653450pt;}
.wsd0{word-spacing:11.656388pt;}
.ws7a{word-spacing:11.658783pt;}
.wsd2{word-spacing:11.669187pt;}
.ws1b{word-spacing:11.669450pt;}
.ws2a{word-spacing:11.674783pt;}
.wsee{word-spacing:11.680117pt;}
.wsc4{word-spacing:11.681987pt;}
.ws7f{word-spacing:11.685450pt;}
.ws9a{word-spacing:11.690784pt;}
.wsd1{word-spacing:11.694787pt;}
.ws66{word-spacing:11.696117pt;}
.wsca{word-spacing:11.699054pt;}
.ws1a{word-spacing:11.701450pt;}
.ws97{word-spacing:11.706784pt;}
.ws17f{word-spacing:11.711854pt;}
.ws28{word-spacing:11.712117pt;}
.ws138{word-spacing:11.716120pt;}
.ws19{word-spacing:11.717451pt;}
.wscf{word-spacing:11.720387pt;}
.ws9e{word-spacing:11.722784pt;}
.wsba{word-spacing:11.724653pt;}
.wsbf{word-spacing:11.728117pt;}
.wsc0{word-spacing:11.738784pt;}
.ws72{word-spacing:11.744117pt;}
.ws2c{word-spacing:11.749451pt;}
.wsbc{word-spacing:11.750253pt;}
.wsd8{word-spacing:11.754520pt;}
.ws54{word-spacing:11.754784pt;}
.ws133{word-spacing:11.758786pt;}
.ws16a{word-spacing:11.765451pt;}
.wse3{word-spacing:11.770784pt;}
.ws21{word-spacing:11.776118pt;}
.wsdb{word-spacing:11.780119pt;}
.ws19a{word-spacing:11.781451pt;}
.wsd9{word-spacing:11.784386pt;}
.ws17b{word-spacing:11.786785pt;}
.ws7d{word-spacing:11.792118pt;}
.ws132{word-spacing:11.792919pt;}
.ws120{word-spacing:11.797451pt;}
.ws10f{word-spacing:11.802785pt;}
.wse2{word-spacing:11.808118pt;}
.ws2b{word-spacing:11.813451pt;}
.ws14a{word-spacing:11.814252pt;}
.wse9{word-spacing:11.818785pt;}
.ws76{word-spacing:11.824118pt;}
.ws53{word-spacing:11.829452pt;}
.ws1a4{word-spacing:11.834785pt;}
.ws29{word-spacing:11.840118pt;}
.ws141{word-spacing:11.844119pt;}
.ws83{word-spacing:11.845452pt;}
.wscd{word-spacing:11.848385pt;}
.wsc8{word-spacing:11.852652pt;}
.wsf8{word-spacing:11.856119pt;}
.ws106{word-spacing:11.861452pt;}
.ws67{word-spacing:11.866785pt;}
.ws146{word-spacing:11.869718pt;}
.wse6{word-spacing:11.877452pt;}
.ws108{word-spacing:11.882518pt;}
.ws23{word-spacing:11.882785pt;}
.ws6d{word-spacing:11.888119pt;}
.wsed{word-spacing:11.893452pt;}
.ws7e{word-spacing:11.898786pt;}
.wsc3{word-spacing:11.899585pt;}
.wsbe{word-spacing:11.904119pt;}
.ws130{word-spacing:11.909452pt;}
.ws148{word-spacing:11.916651pt;}
.wsf4{word-spacing:11.920119pt;}
.ws17c{word-spacing:11.925453pt;}
.wsc1{word-spacing:11.930786pt;}
.wsea{word-spacing:11.936119pt;}
.ws1c{word-spacing:11.946786pt;}
.ws135{word-spacing:11.950784pt;}
.ws99{word-spacing:11.952120pt;}
.ws22{word-spacing:11.957453pt;}
.wsf1{word-spacing:11.968120pt;}
.ws136{word-spacing:11.972117pt;}
.ws69{word-spacing:11.973453pt;}
.ws7b{word-spacing:11.978786pt;}
.ws6e{word-spacing:12.000120pt;}
.ws58{word-spacing:12.005453pt;}
.ws20{word-spacing:12.010787pt;}
.wsf0{word-spacing:12.026787pt;}
.wse7{word-spacing:12.032120pt;}
.ws105{word-spacing:12.037454pt;}
.wsf6{word-spacing:12.042787pt;}
.ws177{word-spacing:12.053183pt;}
.ws1e{word-spacing:12.053454pt;}
.ws79{word-spacing:12.069454pt;}
.ws57{word-spacing:12.085454pt;}
.ws74{word-spacing:12.090788pt;}
.ws68{word-spacing:12.096121pt;}
.ws7c{word-spacing:12.133455pt;}
.ws56{word-spacing:12.149455pt;}
.wsf5{word-spacing:12.170788pt;}
.ws12f{word-spacing:12.181455pt;}
.ws61{word-spacing:12.192122pt;}
.ws77{word-spacing:12.234789pt;}
.wsef{word-spacing:12.261456pt;}
.ws5b{word-spacing:12.357457pt;}
.ws168{word-spacing:12.378790pt;}
.ws15e{word-spacing:12.389457pt;}
.ws165{word-spacing:12.400124pt;}
.ws157{word-spacing:12.405457pt;}
.ws5c{word-spacing:12.421458pt;}
.ws15d{word-spacing:12.442791pt;}
.ws63{word-spacing:12.458791pt;}
.ws15a{word-spacing:12.506792pt;}
.ws163{word-spacing:12.640126pt;}
.ws160{word-spacing:12.661460pt;}
.ws5a{word-spacing:12.730794pt;}
.ws15f{word-spacing:12.741461pt;}
.ws161{word-spacing:12.752128pt;}
.ws15b{word-spacing:12.762794pt;}
.ws164{word-spacing:12.773461pt;}
.ws162{word-spacing:12.794795pt;}
.ws167{word-spacing:12.805461pt;}
.ws15c{word-spacing:12.837462pt;}
.ws11c{word-spacing:13.689486pt;}
.ws111{word-spacing:13.747085pt;}
.ws14d{word-spacing:13.759885pt;}
.ws1a5{word-spacing:13.798285pt;}
.wse8{word-spacing:13.811085pt;}
.wsec{word-spacing:13.849485pt;}
.ws14f{word-spacing:13.855885pt;}
.ws131{word-spacing:13.862284pt;}
.ws98{word-spacing:13.868684pt;}
.ws11e{word-spacing:13.894284pt;}
.ws121{word-spacing:13.907084pt;}
.ws95{word-spacing:13.913484pt;}
.ws14e{word-spacing:13.971084pt;}
.ws80{word-spacing:13.983883pt;}
.ws150{word-spacing:13.990283pt;}
.wsfc{word-spacing:14.092683pt;}
.ws1{word-spacing:23.242783pt;}
.ws4{word-spacing:23.381450pt;}
.ws2{word-spacing:23.413450pt;}
.ws3{word-spacing:23.445451pt;}
.ws1a6{word-spacing:53.174802pt;}
.ws1b4{word-spacing:53.208935pt;}
.ws10a{word-spacing:57.740078pt;}
.ws183{word-spacing:171.496523pt;}
.ws186{word-spacing:171.526389pt;}
.ws184{word-spacing:171.799452pt;}
.ws190{word-spacing:181.471865pt;}
.ws13a{word-spacing:188.123515pt;}
.ws18b{word-spacing:195.078095pt;}
.ws176{word-spacing:199.011912pt;}
.ws172{word-spacing:199.310575pt;}
.ws170{word-spacing:199.314842pt;}
.ws143{word-spacing:202.032675pt;}
.wsce{word-spacing:208.586193pt;}
.ws175{word-spacing:211.103495pt;}
.ws171{word-spacing:212.618142pt;}
.ws174{word-spacing:212.916805pt;}
.ws18a{word-spacing:213.859727pt;}
.ws18f{word-spacing:214.128523pt;}
.ws19f{word-spacing:215.037312pt;}
.ws19c{word-spacing:215.250643pt;}
.ws19e{word-spacing:215.335975pt;}
.ws18c{word-spacing:218.361004pt;}
.ws13c{word-spacing:220.780174pt;}
.ws139{word-spacing:221.083103pt;}
.ws1a2{word-spacing:228.643542pt;}
.ws1a1{word-spacing:228.942205pt;}
.ws180{word-spacing:230.670183pt;}
.ws109{word-spacing:231.139511pt;}
.ws13b{word-spacing:234.689333pt;}
.ws189{word-spacing:237.441299pt;}
.ws137{word-spacing:237.624763pt;}
.ws18d{word-spacing:241.946842pt;}
.ws16f{word-spacing:245.573464pt;}
.ws19d{word-spacing:247.689704pt;}
.ws16e{word-spacing:248.210231pt;}
.ws16d{word-spacing:248.508894pt;}
.ws188{word-spacing:251.047529pt;}
.ws181{word-spacing:254.256022pt;}
.ws18e{word-spacing:260.993004pt;}
.ws1a0{word-spacing:261.598863pt;}
.ws19b{word-spacing:264.534293pt;}
.ws191{word-spacing:274.599234pt;}
.ws182{word-spacing:277.538931pt;}
._68{margin-left:-12.433519pt;}
._d{margin-left:-11.520115pt;}
._8{margin-left:-9.378016pt;}
._c{margin-left:-3.711954pt;}
._9{margin-left:-2.244219pt;}
._1{margin-left:-1.130672pt;}
._3{width:1.205867pt;}
._28{width:2.982363pt;}
._26{width:3.891151pt;}
._a{width:8.068166pt;}
._b{width:9.847363pt;}
._5{width:11.200112pt;}
._2{width:12.160000pt;}
._4{width:13.199732pt;}
._e{width:14.212089pt;}
._71{width:18.692013pt;}
._27{width:21.166669pt;}
._0{width:24.245455pt;}
._6{width:41.629346pt;}
._31{width:47.538606pt;}
._47{width:50.290571pt;}
._2f{width:62.049358pt;}
._3b{width:69.003937pt;}
._30{width:76.261447pt;}
._46{width:85.362133pt;}
._44{width:108.913839pt;}
._43{width:144.262730pt;}
._3f{width:157.800694pt;}
._37{width:165.450732pt;}
._38{width:167.942434pt;}
._61{width:171.842119pt;}
._3c{width:177.115653pt;}
._34{width:185.085686pt;}
._39{width:188.998171pt;}
._57{width:199.400174pt;}
._40{width:204.298246pt;}
._35{width:208.633125pt;}
._32{width:212.618142pt;}
._63{width:214.171189pt;}
._36{width:215.719970pt;}
._4f{width:220.822840pt;}
._60{width:227.777419pt;}
._5a{width:231.864835pt;}
._50{width:234.672115pt;}
._64{width:237.454098pt;}
._58{width:245.616130pt;}
._6d{width:247.732370pt;}
._62{width:251.060328pt;}
._23{width:251.956317pt;}
._f{width:252.882172pt;}
._11{width:255.288542pt;}
._6e{width:261.304467pt;}
._41{width:263.565772pt;}
._18{width:273.703245pt;}
._2c{width:277.137869pt;}
._66{width:278.341054pt;}
._19{width:281.575147pt;}
._1f{width:285.683896pt;}
._42{width:289.297717pt;}
._20{width:291.904618pt;}
._51{width:294.972313pt;}
._12{width:297.254951pt;}
._1c{width:298.470936pt;}
._2a{width:300.689575pt;}
._1e{width:302.908214pt;}
._16{width:305.126853pt;}
._22{width:307.772153pt;}
._33{width:308.744941pt;}
._13{width:309.990792pt;}
._21{width:312.209431pt;}
._24{width:322.022641pt;}
._3e{width:331.217193pt;}
._2b{width:342.745582pt;}
._1b{width:346.623934pt;}
._10{width:348.339112pt;}
._15{width:371.668954pt;}
._45{width:376.349429pt;}
._65{width:385.842644pt;}
._1a{width:394.934797pt;}
._3d{width:401.607780pt;}
._59{width:413.358033pt;}
._29{width:415.222543pt;}
._17{width:416.131332pt;}
._6f{width:424.080032pt;}
._70{width:429.383433pt;}
._25{width:435.855885pt;}
._4c{width:456.369762pt;}
._67{width:517.420732pt;}
._5c{width:520.902289pt;}
._5f{width:527.660604pt;}
._4e{width:544.291863pt;}
._56{width:555.175994pt;}
._53{width:558.393020pt;}
._14{width:569.981142pt;}
._6c{width:571.201393pt;}
._48{width:577.550114pt;}
._3a{width:586.808665pt;}
._6b{width:614.797648pt;}
._1d{width:616.026433pt;}
._5d{width:629.914259pt;}
._55{width:630.823048pt;}
._4d{width:641.707179pt;}
._54{width:647.147111pt;}
._5e{width:653.500098pt;}
._4b{width:659.383758pt;}
._6a{width:695.526239pt;}
._2e{width:788.589609pt;}
._2d{width:837.271667pt;}
._5b{width:1346.078107pt;}
._4a{width:1354.547335pt;}
._52{width:1359.987267pt;}
._69{width:1367.846368pt;}
._49{width:1472.118132pt;}
._7{width:1495.703970pt;}
.fs8{font-size:28.440000pt;}
.fs7{font-size:35.552000pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs6{font-size:53.333867pt;}
.fs5{font-size:63.999467pt;}
.fs3{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:48.000000pt;}
.y19b{bottom:110.658787pt;}
.y23{bottom:110.659707pt;}
.yee{bottom:110.661200pt;}
.ya6{bottom:110.661773pt;}
.y277{bottom:110.663040pt;}
.y71{bottom:110.663613pt;}
.y38c{bottom:110.663950pt;}
.y238{bottom:110.664186pt;}
.y43{bottom:110.670373pt;}
.y1d2{bottom:111.191893pt;}
.y17a{bottom:113.385234pt;}
.y2e7{bottom:114.066133pt;}
.y2c6{bottom:116.254933pt;}
.y2e6{bottom:116.257920pt;}
.y2e8{bottom:116.258267pt;}
.ydc{bottom:116.635092pt;}
.y326{bottom:122.230226pt;}
.y34e{bottom:122.677934pt;}
.y38b{bottom:123.363524pt;}
.y42{bottom:125.334723pt;}
.y1f0{bottom:127.059013pt;}
.y19a{bottom:127.969627pt;}
.y22{bottom:127.970547pt;}
.yed{bottom:127.972040pt;}
.ya5{bottom:127.972613pt;}
.y276{bottom:127.973880pt;}
.y70{bottom:127.974453pt;}
.y237{bottom:127.975026pt;}
.y1d1{bottom:128.502733pt;}
.y2e5{bottom:133.568759pt;}
.y2c5{bottom:133.640441pt;}
.ydb{bottom:135.986317pt;}
.y38a{bottom:135.987367pt;}
.y179{bottom:137.347601pt;}
.y324{bottom:137.348000pt;}
.y323{bottom:139.613320pt;}
.y325{bottom:139.615733pt;}
.y34d{bottom:139.988774pt;}
.y41{bottom:139.999073pt;}
.y235{bottom:143.092933pt;}
.y1ef{bottom:144.444520pt;}
.y199{bottom:145.355134pt;}
.y21{bottom:145.356054pt;}
.yec{bottom:145.357547pt;}
.ya4{bottom:145.358120pt;}
.y234{bottom:145.359387pt;}
.y6f{bottom:145.359960pt;}
.y236{bottom:145.360533pt;}
.y1d0{bottom:145.888240pt;}
.y2e3{bottom:148.686533pt;}
.y3c3{bottom:150.274567pt;}
.y2c4{bottom:150.951280pt;}
.y2e2{bottom:150.951853pt;}
.y2e4{bottom:150.954267pt;}
.yda{bottom:152.692241pt;}
.y389{bottom:153.297017pt;}
.y178{bottom:153.373000pt;}
.y40{bottom:154.663424pt;}
.y322{bottom:156.924160pt;}
.y34c{bottom:157.374281pt;}
.y1ee{bottom:161.755360pt;}
.y198{bottom:162.665974pt;}
.y20{bottom:162.666894pt;}
.yeb{bottom:162.668387pt;}
.ya3{bottom:162.668960pt;}
.y233{bottom:162.670227pt;}
.y6e{bottom:162.670800pt;}
.y3c2{bottom:162.974142pt;}
.y1cf{bottom:163.199080pt;}
.y388{bottom:165.996592pt;}
.y2c3{bottom:168.262120pt;}
.y2e1{bottom:168.262693pt;}
.yd9{bottom:169.322433pt;}
.y3f{bottom:169.327774pt;}
.y177{bottom:169.398400pt;}
.y176{bottom:174.085067pt;}
.y321{bottom:174.235000pt;}
.y34b{bottom:174.685120pt;}
.y3c1{bottom:175.597984pt;}
.y232{bottom:177.788933pt;}
.y1ed{bottom:179.066200pt;}
.y197{bottom:179.976813pt;}
.y1f{bottom:179.977733pt;}
.yea{bottom:179.979227pt;}
.ya2{bottom:179.979800pt;}
.y275{bottom:179.980147pt;}
.y231{bottom:179.981067pt;}
.y259{bottom:179.981426pt;}
.y1ce{bottom:180.509920pt;}
.y387{bottom:183.307308pt;}
.y3e{bottom:183.992124pt;}
.y175{bottom:185.347667pt;}
.y6d{bottom:185.348000pt;}
.y2e0{bottom:185.573533pt;}
.y2c2{bottom:185.647627pt;}
.yd8{bottom:186.027291pt;}
.y320{bottom:191.545839pt;}
.y34a{bottom:191.995960pt;}
.y3c0{bottom:192.983366pt;}
.y386{bottom:196.006883pt;}
.y1ec{bottom:196.451707pt;}
.y196{bottom:197.362320pt;}
.y1e{bottom:197.363241pt;}
.ye9{bottom:197.364734pt;}
.ya1{bottom:197.365307pt;}
.y274{bottom:197.365654pt;}
.y258{bottom:197.366933pt;}
.y1cd{bottom:197.895427pt;}
.y3d{bottom:198.656474pt;}
.y174{bottom:201.373067pt;}
.yd7{bottom:202.657483pt;}
.y230{bottom:202.658822pt;}
.y2c1{bottom:202.958467pt;}
.y2df{bottom:202.959040pt;}
.y3bf{bottom:205.607209pt;}
.y173{bottom:206.135333pt;}
.y31f{bottom:208.931347pt;}
.y349{bottom:209.306800pt;}
.y385{bottom:213.316533pt;}
.y3c{bottom:213.320824pt;}
.y1eb{bottom:213.762547pt;}
.y195{bottom:214.673160pt;}
.y1d{bottom:214.674080pt;}
.ye8{bottom:214.675573pt;}
.ya0{bottom:214.676147pt;}
.y273{bottom:214.676494pt;}
.y1ca{bottom:215.201800pt;}
.y1cc{bottom:215.206267pt;}
.y172{bottom:217.397720pt;}
.y3be{bottom:218.306783pt;}
.yd6{bottom:219.363408pt;}
.y257{bottom:219.968400pt;}
.y2c0{bottom:220.269307pt;}
.y2de{bottom:220.269880pt;}
.y1cb{bottom:221.102267pt;}
.y22f{bottom:221.329067pt;}
.y2aa{bottom:226.240120pt;}
.y31e{bottom:226.242186pt;}
.y348{bottom:226.692307pt;}
.y3b{bottom:227.985174pt;}
.y271{bottom:229.795200pt;}
.y1ea{bottom:231.073386pt;}
.y384{bottom:231.307067pt;}
.y194{bottom:231.984000pt;}
.y1c{bottom:231.984920pt;}
.ye7{bottom:231.986413pt;}
.y270{bottom:231.986760pt;}
.y9f{bottom:231.986986pt;}
.y272{bottom:231.987333pt;}
.y1c9{bottom:232.512639pt;}
.y171{bottom:233.347388pt;}
.y3bd{bottom:235.616434pt;}
.yd5{bottom:235.987767pt;}
.y2dd{bottom:237.580720pt;}
.y2bf{bottom:237.654814pt;}
.y3a{bottom:242.649524pt;}
.y2a9{bottom:243.550960pt;}
.y31d{bottom:243.553026pt;}
.y347{bottom:244.003147pt;}
.y26f{bottom:247.105467pt;}
.y3bc{bottom:248.316008pt;}
.y1e9{bottom:248.458894pt;}
.y193{bottom:249.294840pt;}
.y1b{bottom:249.295760pt;}
.ye6{bottom:249.297253pt;}
.y26e{bottom:249.297600pt;}
.y9e{bottom:249.297826pt;}
.y170{bottom:249.372787pt;}
.y6c{bottom:249.895947pt;}
.y1c8{bottom:249.898147pt;}
.yd4{bottom:252.693692pt;}
.y2be{bottom:254.965654pt;}
.y2dc{bottom:254.966227pt;}
.y39{bottom:257.313874pt;}
.y31b{bottom:258.670800pt;}
.y22e{bottom:259.273627pt;}
.y2a8{bottom:260.861800pt;}
.y31a{bottom:260.935547pt;}
.y31c{bottom:260.938533pt;}
.y346{bottom:261.313987pt;}
.y256{bottom:263.659160pt;}
.y9d{bottom:264.415600pt;}
.y16f{bottom:265.398187pt;}
.y3bb{bottom:265.625658pt;}
.y1e8{bottom:265.769733pt;}
.y192{bottom:266.680347pt;}
.y1a{bottom:266.681267pt;}
.ye5{bottom:266.682760pt;}
.y9c{bottom:266.683333pt;}
.y6b{bottom:267.206787pt;}
.y1c7{bottom:267.208986pt;}
.yd3{bottom:269.323884pt;}
.y2da{bottom:270.009333pt;}
.y383{bottom:270.990854pt;}
.y26d{bottom:271.974667pt;}
.y2d9{bottom:272.274440pt;}
.y2bd{bottom:272.276494pt;}
.y2db{bottom:272.277067pt;}
.y22d{bottom:276.584466pt;}
.y319{bottom:278.246387pt;}
.y2a7{bottom:278.247307pt;}
.y3ba{bottom:278.325233pt;}
.y345{bottom:278.699494pt;}
.y254{bottom:278.777867pt;}
.y38{bottom:279.990924pt;}
.y253{bottom:280.969653pt;}
.y255{bottom:280.970000pt;}
.y9a{bottom:281.801467pt;}
.y1e7{bottom:283.080573pt;}
.y99{bottom:283.990973pt;}
.y191{bottom:283.991187pt;}
.y19{bottom:283.992107pt;}
.y9b{bottom:283.993600pt;}
.y6a{bottom:284.517627pt;}
.y1c6{bottom:284.519826pt;}
.yd2{bottom:286.029808pt;}
.y2bb{bottom:287.395200pt;}
.y382{bottom:288.301694pt;}
.y16d{bottom:289.284933pt;}
.y2d8{bottom:289.585280pt;}
.y2bc{bottom:289.587333pt;}
.y2ba{bottom:289.587693pt;}
.y16c{bottom:291.023142pt;}
.y16e{bottom:291.023467pt;}
.y22c{bottom:293.969973pt;}
.y37{bottom:294.655274pt;}
.y318{bottom:295.557227pt;}
.y2a6{bottom:295.558147pt;}
.y3b9{bottom:295.634883pt;}
.y344{bottom:296.010334pt;}
.y252{bottom:298.280493pt;}
.y1e6{bottom:300.466080pt;}
.y98{bottom:301.301813pt;}
.y190{bottom:301.302027pt;}
.y18{bottom:301.302947pt;}
.y69{bottom:301.828466pt;}
.y1c5{bottom:301.830666pt;}
.yd1{bottom:302.660000pt;}
.y381{bottom:305.612533pt;}
.y16a{bottom:305.914800pt;}
.ye4{bottom:306.670800pt;}
.y2d7{bottom:306.896119pt;}
.y2b9{bottom:306.973200pt;}
.y169{bottom:307.728741pt;}
.y16b{bottom:307.729067pt;}
.y3b8{bottom:308.258725pt;}
.y36{bottom:309.319624pt;}
.y22b{bottom:311.280813pt;}
.y2a5{bottom:312.868986pt;}
.y317{bottom:312.942734pt;}
.y343{bottom:313.321173pt;}
.y250{bottom:313.398400pt;}
.y26c{bottom:314.153560pt;}
.y24f{bottom:315.665427pt;}
.y251{bottom:315.666000pt;}
.y1e5{bottom:317.776920pt;}
.y97{bottom:318.687320pt;}
.y18f{bottom:318.687534pt;}
.y17{bottom:318.688454pt;}
.y68{bottom:319.213974pt;}
.y1c4{bottom:319.216173pt;}
.yd0{bottom:319.365925pt;}
.y2b8{bottom:322.091333pt;}
.y167{bottom:322.620400pt;}
.y2d6{bottom:324.281627pt;}
.y2b7{bottom:324.282760pt;}
.y166{bottom:324.358609pt;}
.y168{bottom:324.358933pt;}
.y3b7{bottom:325.644108pt;}
.y380{bottom:328.289733pt;}
.y22a{bottom:328.591653pt;}
.y26a{bottom:329.272400pt;}
.y316{bottom:330.253573pt;}
.y2a4{bottom:330.254494pt;}
.y342{bottom:330.706681pt;}
.y24d{bottom:330.708533pt;}
.y269{bottom:331.463827pt;}
.y26b{bottom:331.464400pt;}
.y35{bottom:331.996673pt;}
.y24c{bottom:332.974987pt;}
.y24e{bottom:332.976267pt;}
.y1e4{bottom:335.087760pt;}
.ycf{bottom:335.996117pt;}
.y96{bottom:335.998160pt;}
.y18e{bottom:335.998373pt;}
.y16{bottom:335.999294pt;}
.y67{bottom:336.524813pt;}
.y1c3{bottom:336.527013pt;}
.y3b6{bottom:338.267950pt;}
.y164{bottom:339.250267pt;}
.y2b5{bottom:339.401467pt;}
.y163{bottom:341.064208pt;}
.y165{bottom:341.064533pt;}
.y2d5{bottom:341.592466pt;}
.y2b6{bottom:341.593600pt;}
.y2b4{bottom:341.593959pt;}
.ye2{bottom:343.483333pt;}
.ye1{bottom:345.749573pt;}
.ye3{bottom:345.751067pt;}
.y229{bottom:345.977160pt;}
.y267{bottom:346.582667pt;}
.y34{bottom:346.661024pt;}
.y315{bottom:347.564413pt;}
.y2a3{bottom:347.565333pt;}
.y341{bottom:348.017520pt;}
.y266{bottom:348.774453pt;}
.y268{bottom:348.774667pt;}
.y24b{bottom:350.285827pt;}
.y3b5{bottom:350.967525pt;}
.y1e3{bottom:352.398600pt;}
.yce{bottom:352.700975pt;}
.y95{bottom:353.309000pt;}
.y18d{bottom:353.309213pt;}
.y15{bottom:353.310133pt;}
.y66{bottom:353.835653pt;}
.y1c2{bottom:353.837853pt;}
.y161{bottom:355.955867pt;}
.y160{bottom:357.694075pt;}
.y162{bottom:357.694400pt;}
.y2d4{bottom:358.903306pt;}
.y2b3{bottom:358.979467pt;}
.y227{bottom:361.096000pt;}
.y33{bottom:361.325374pt;}
.ye0{bottom:363.060413pt;}
.y226{bottom:363.287427pt;}
.y228{bottom:363.288000pt;}
.y314{bottom:364.875253pt;}
.y340{bottom:365.328360pt;}
.y249{bottom:365.404667pt;}
.y265{bottom:366.159960pt;}
.y248{bottom:367.595880pt;}
.y24a{bottom:367.596667pt;}
.y37f{bottom:367.897360pt;}
.y3b4{bottom:368.277175pt;}
.ycd{bottom:369.331167pt;}
.y1e2{bottom:369.784107pt;}
.y2a2{bottom:370.242400pt;}
.y94{bottom:370.694507pt;}
.y18c{bottom:370.694720pt;}
.y65{bottom:371.221160pt;}
.y1c1{bottom:371.223360pt;}
.y15e{bottom:372.585733pt;}
.y15d{bottom:374.399541pt;}
.y15f{bottom:374.400000pt;}
.y14{bottom:375.987200pt;}
.y32{bottom:375.989724pt;}
.y2d3{bottom:376.288813pt;}
.ydf{bottom:380.371253pt;}
.y33e{bottom:380.447067pt;}
.y225{bottom:380.598267pt;}
.y3b3{bottom:380.976750pt;}
.y264{bottom:381.278667pt;}
.y2b2{bottom:381.656533pt;}
.y313{bottom:382.260760pt;}
.y33d{bottom:382.638986pt;}
.y33f{bottom:382.639200pt;}
.y263{bottom:383.470800pt;}
.y247{bottom:384.981387pt;}
.y37e{bottom:385.282867pt;}
.ycc{bottom:385.961359pt;}
.y1e1{bottom:387.094947pt;}
.y93{bottom:388.005347pt;}
.y18b{bottom:388.005560pt;}
.y64{bottom:388.532000pt;}
.y1c0{bottom:388.534200pt;}
.y15b{bottom:389.291200pt;}
.y31{bottom:390.654074pt;}
.y15a{bottom:391.029409pt;}
.y15c{bottom:391.029733pt;}
.y2d2{bottom:393.599653pt;}
.y3b2{bottom:393.600592pt;}
.yde{bottom:397.756760pt;}
.y312{bottom:399.571600pt;}
.y33c{bottom:400.024494pt;}
.y246{bottom:402.292227pt;}
.y37d{bottom:402.593707pt;}
.ycb{bottom:402.667284pt;}
.y224{bottom:403.276022pt;}
.y1e0{bottom:404.405786pt;}
.y92{bottom:405.316186pt;}
.y18a{bottom:405.316400pt;}
.y30{bottom:405.318424pt;}
.y63{bottom:405.842840pt;}
.y1bf{bottom:405.845039pt;}
.y158{bottom:405.921200pt;}
.y262{bottom:406.147867pt;}
.y157{bottom:407.735008pt;}
.y159{bottom:407.735333pt;}
.y2b1{bottom:408.037325pt;}
.y2d1{bottom:410.910493pt;}
.y3b1{bottom:410.985975pt;}
.y2cf{bottom:411.817859pt;}
.ydd{bottom:415.067600pt;}
.y33b{bottom:417.335333pt;}
.yca{bottom:419.297476pt;}
.y245{bottom:419.603067pt;}
.y37c{bottom:419.904547pt;}
.y1df{bottom:421.791294pt;}
.y223{bottom:421.946267pt;}
.y155{bottom:422.626667pt;}
.y91{bottom:422.701694pt;}
.y62{bottom:423.228347pt;}
.y1be{bottom:423.230547pt;}
.y3b0{bottom:423.609817pt;}
.y154{bottom:424.364375pt;}
.y156{bottom:424.365200pt;}
.y2af{bottom:426.859733pt;}
.y189{bottom:427.993600pt;}
.y2f{bottom:427.995473pt;}
.y2d0{bottom:428.296000pt;}
.y2ae{bottom:428.673009pt;}
.y2b0{bottom:428.673867pt;}
.y2cd{bottom:430.714800pt;}
.y2cc{bottom:432.527833pt;}
.y2ce{bottom:432.529067pt;}
.y244{bottom:434.721200pt;}
.yc9{bottom:436.003400pt;}
.y243{bottom:436.988227pt;}
.y37b{bottom:437.290054pt;}
.y1de{bottom:439.102133pt;}
.y33a{bottom:439.709900pt;}
.y152{bottom:439.936933pt;}
.y90{bottom:440.012533pt;}
.y61{bottom:440.539187pt;}
.y1bd{bottom:440.541386pt;}
.y3af{bottom:440.995200pt;}
.y153{bottom:441.070300pt;}
.y2ad{bottom:441.372583pt;}
.y151{bottom:441.750824pt;}
.y2cb{bottom:445.151675pt;}
.y2e{bottom:450.672523pt;}
.y10e{bottom:451.653033pt;}
.y241{bottom:452.106933pt;}
.yc8{bottom:452.633592pt;}
.y14f{bottom:452.636133pt;}
.y3ae{bottom:453.619042pt;}
.y2ac{bottom:453.996425pt;}
.y240{bottom:454.298720pt;}
.y242{bottom:454.299067pt;}
.y14e{bottom:454.374100pt;}
.y150{bottom:454.374667pt;}
.y37a{bottom:454.600894pt;}
.y1dd{bottom:456.412973pt;}
.y221{bottom:457.700667pt;}
.y60{bottom:457.850027pt;}
.y2ca{bottom:457.851250pt;}
.y1bc{bottom:457.852226pt;}
.y220{bottom:459.890746pt;}
.y222{bottom:459.892800pt;}
.y8f{bottom:462.689600pt;}
.y339{bottom:463.672267pt;}
.y13{bottom:464.884133pt;}
.y188{bottom:466.238853pt;}
.y3ad{bottom:466.318616pt;}
.y2ab{bottom:466.696000pt;}
.y338{bottom:468.434533pt;}
.yc7{bottom:469.339517pt;}
.y2c9{bottom:470.550824pt;}
.y14d{bottom:471.080024pt;}
.y23f{bottom:471.609559pt;}
.y379{bottom:471.911733pt;}
.y1ba{bottom:472.969867pt;}
.y2a1{bottom:473.045366pt;}
.y2d{bottom:473.349573pt;}
.y1dc{bottom:473.798480pt;}
.y5f{bottom:475.235534pt;}
.y1b9{bottom:475.237027pt;}
.y1bb{bottom:475.237733pt;}
.y10d{bottom:475.691133pt;}
.y368{bottom:476.371366pt;}
.y21f{bottom:477.276253pt;}
.y337{bottom:479.697467pt;}
.y2c8{bottom:481.436133pt;}
.y14b{bottom:481.965200pt;}
.y311{bottom:483.023467pt;}
.y2c7{bottom:483.174667pt;}
.y12{bottom:483.554800pt;}
.y187{bottom:483.624360pt;}
.y3ac{bottom:483.625367pt;}
.y14a{bottom:483.703167pt;}
.y14c{bottom:483.703867pt;}
.y336{bottom:484.459733pt;}
.yc6{bottom:485.969709pt;}
.y310{bottom:487.710133pt;}
.y23e{bottom:488.995067pt;}
.y1b7{bottom:490.280133pt;}
.y1db{bottom:491.109320pt;}
.y10c{bottom:491.640800pt;}
.y5e{bottom:492.546373pt;}
.y1b6{bottom:492.547294pt;}
.y1b8{bottom:492.547867pt;}
.y21e{bottom:494.587093pt;}
.y378{bottom:494.588933pt;}
.y335{bottom:495.722667pt;}
.y2c{bottom:496.026623pt;}
.y3ab{bottom:496.324941pt;}
.y10b{bottom:496.403067pt;}
.y2a0{bottom:497.007733pt;}
.y30f{bottom:498.973067pt;}
.y367{bottom:500.333733pt;}
.y149{bottom:500.409091pt;}
.y334{bottom:500.409333pt;}
.y186{bottom:500.935200pt;}
.y8e{bottom:501.693480pt;}
.y29f{bottom:501.770000pt;}
.y11{bottom:502.225467pt;}
.yc5{bottom:502.675633pt;}
.y30e{bottom:503.735333pt;}
.y366{bottom:505.095867pt;}
.y10a{bottom:507.665263pt;}
.y1b4{bottom:507.666000pt;}
.y1da{bottom:508.420160pt;}
.y3e0{bottom:508.948917pt;}
.y1b3{bottom:509.853307pt;}
.y5d{bottom:509.857213pt;}
.y1b5{bottom:509.858133pt;}
.y2b{bottom:510.690973pt;}
.y147{bottom:511.294400pt;}
.y23d{bottom:511.597356pt;}
.y333{bottom:511.672267pt;}
.y21d{bottom:511.897933pt;}
.y148{bottom:513.032933pt;}
.y146{bottom:513.033043pt;}
.y3aa{bottom:513.634592pt;}
.y30d{bottom:514.998267pt;}
.y365{bottom:516.358933pt;}
.y332{bottom:516.434533pt;}
.y29e{bottom:517.795067pt;}
.y185{bottom:518.246040pt;}
.y8d{bottom:519.078987pt;}
.yc4{bottom:519.305826pt;}
.y30c{bottom:519.760533pt;}
.y10{bottom:520.820133pt;}
.y364{bottom:521.121067pt;}
.y3df{bottom:521.648492pt;}
.y109{bottom:523.690662pt;}
.y1d9{bottom:525.731000pt;}
.y3a9{bottom:526.258434pt;}
.y1b2{bottom:527.164147pt;}
.y5c{bottom:527.168053pt;}
.y331{bottom:527.695996pt;}
.y145{bottom:528.604533pt;}
.y29d{bottom:529.058133pt;}
.y21c{bottom:529.208773pt;}
.y23c{bottom:530.267600pt;}
.y144{bottom:530.418425pt;}
.y30b{bottom:531.023467pt;}
.y363{bottom:532.384133pt;}
.y2a{bottom:533.368023pt;}
.y29c{bottom:533.820267pt;}
.y377{bottom:534.197706pt;}
.y3de{bottom:534.272334pt;}
.y184{bottom:535.631547pt;}
.y30a{bottom:535.710133pt;}
.yc3{bottom:536.011750pt;}
.y8c{bottom:536.389827pt;}
.y362{bottom:537.070667pt;}
.y3a8{bottom:538.958008pt;}
.yf{bottom:539.490800pt;}
.y142{bottom:541.303733pt;}
.y1d8{bottom:543.116507pt;}
.y141{bottom:543.117300pt;}
.y143{bottom:543.118000pt;}
.y330{bottom:543.721396pt;}
.y1b1{bottom:544.549654pt;}
.y5b{bottom:544.553560pt;}
.y29b{bottom:545.007733pt;}
.y21b{bottom:546.594280pt;}
.y309{bottom:546.972121pt;}
.y29{bottom:548.032373pt;}
.y361{bottom:548.332455pt;}
.y108{bottom:549.315942pt;}
.y29a{bottom:549.770000pt;}
.y376{bottom:551.583213pt;}
.y3dd{bottom:551.657717pt;}
.yc2{bottom:552.641942pt;}
.y183{bottom:552.942387pt;}
.y8b{bottom:553.700667pt;}
.y3a7{bottom:556.267659pt;}
.ye{bottom:558.161467pt;}
.y32f{bottom:559.671063pt;}
.y140{bottom:559.747492pt;}
.y1d7{bottom:560.427347pt;}
.y299{bottom:561.031988pt;}
.y5a{bottom:561.857386pt;}
.y1b0{bottom:561.860494pt;}
.y28{bottom:562.696723pt;}
.y308{bottom:562.997521pt;}
.y21a{bottom:563.905120pt;}
.y3dc{bottom:564.281559pt;}
.y360{bottom:564.357854pt;}
.y107{bottom:566.021867pt;}
.y375{bottom:568.894053pt;}
.y3a6{bottom:568.967233pt;}
.yc1{bottom:569.347867pt;}
.y182{bottom:570.253227pt;}
.y13e{bottom:570.632933pt;}
.y13f{bottom:572.447067pt;}
.y13d{bottom:572.447308pt;}
.y23b{bottom:573.957654pt;}
.y32e{bottom:575.696462pt;}
.y8a{bottom:576.377867pt;}
.yd{bottom:576.832133pt;}
.y298{bottom:577.057387pt;}
.y27{bottom:577.361073pt;}
.y1d6{bottom:577.738186pt;}
.y307{bottom:579.022920pt;}
.y59{bottom:579.168226pt;}
.y1af{bottom:579.171333pt;}
.y35f{bottom:580.383254pt;}
.y219{bottom:581.215959pt;}
.y3db{bottom:581.592276pt;}
.y106{bottom:582.646075pt;}
.yc0{bottom:585.973142pt;}
.y374{bottom:586.204893pt;}
.y3a5{bottom:586.277950pt;}
.y181{bottom:587.564066pt;}
.y13c{bottom:589.756959pt;}
.y23a{bottom:591.268494pt;}
.y32d{bottom:591.721862pt;}
.y297{bottom:593.007055pt;}
.y3da{bottom:594.291850pt;}
.y306{bottom:594.972588pt;}
.y1d5{bottom:595.123694pt;}
.yc{bottom:595.502800pt;}
.y35e{bottom:596.332921pt;}
.y58{bottom:596.553733pt;}
.y1ae{bottom:596.556841pt;}
.y218{bottom:598.601467pt;}
.y3a4{bottom:598.977525pt;}
.y26{bottom:599.206133pt;}
.y105{bottom:599.352000pt;}
.y13a{bottom:600.642400pt;}
.y372{bottom:601.322667pt;}
.y13b{bottom:602.456533pt;}
.y139{bottom:602.456775pt;}
.ybf{bottom:602.679066pt;}
.y371{bottom:603.589694pt;}
.y373{bottom:603.590400pt;}
.y180{bottom:604.949573pt;}
.y32c{bottom:607.671529pt;}
.y239{bottom:608.579333pt;}
.y296{bottom:609.032454pt;}
.y305{bottom:610.997987pt;}
.y3a3{bottom:611.601367pt;}
.y3d9{bottom:611.601501pt;}
.y35d{bottom:612.358321pt;}
.y1d4{bottom:612.434533pt;}
.y57{bottom:613.864573pt;}
.y1ad{bottom:613.867680pt;}
.yb{bottom:614.173467pt;}
.y89{bottom:615.457560pt;}
.y104{bottom:615.982192pt;}
.ybe{bottom:619.309259pt;}
.y138{bottom:619.766425pt;}
.y370{bottom:620.900533pt;}
.y217{bottom:621.277800pt;}
.y17f{bottom:622.260413pt;}
.y32b{bottom:623.696929pt;}
.y3d8{bottom:624.301075pt;}
.y295{bottom:625.057854pt;}
.y304{bottom:627.023387pt;}
.y35c{bottom:628.383721pt;}
.y3a2{bottom:628.986750pt;}
.y136{bottom:630.651867pt;}
.y56{bottom:631.175413pt;}
.y1ac{bottom:631.178520pt;}
.y135{bottom:632.465300pt;}
.y137{bottom:632.466000pt;}
.y103{bottom:632.688116pt;}
.y88{bottom:632.768400pt;}
.ya{bottom:632.844133pt;}
.y1d3{bottom:635.111600pt;}
.ybd{bottom:636.015183pt;}
.y36f{bottom:636.018667pt;}
.y261{bottom:637.076283pt;}
.y36e{bottom:638.211159pt;}
.y17e{bottom:639.571253pt;}
.y294{bottom:641.007521pt;}
.y3a1{bottom:641.610592pt;}
.y3d7{bottom:641.611792pt;}
.y87{bottom:643.657500pt;}
.y35b{bottom:644.333388pt;}
.y216{bottom:645.240800pt;}
.y55{bottom:648.560920pt;}
.y1ab{bottom:648.564027pt;}
.y134{bottom:649.095492pt;}
.y102{bottom:649.318309pt;}
.y32a{bottom:649.322209pt;}
.y9{bottom:651.514800pt;}
.ybc{bottom:652.645375pt;}
.y301{bottom:652.648501pt;}
.y303{bottom:652.648667pt;}
.y3a0{bottom:654.310166pt;}
.y3d6{bottom:654.311367pt;}
.y36d{bottom:655.596667pt;}
.y17d{bottom:656.956760pt;}
.y302{bottom:657.410800pt;}
.y260{bottom:657.712825pt;}
.y86{bottom:658.321850pt;}
.y132{bottom:660.056533pt;}
.y131{bottom:661.794500pt;}
.y133{bottom:661.795067pt;}
.y54{bottom:665.871760pt;}
.y1aa{bottom:665.874867pt;}
.y101{bottom:666.024233pt;}
.y327{bottom:666.028100pt;}
.y329{bottom:666.028133pt;}
.y291{bottom:666.707558pt;}
.y293{bottom:666.708533pt;}
.ya8{bottom:666.784659pt;}
.y3d5{bottom:666.935209pt;}
.y25e{bottom:668.598267pt;}
.ybb{bottom:669.351300pt;}
.y300{bottom:669.354425pt;}
.y205{bottom:669.656300pt;}
.y358{bottom:670.033558pt;}
.y35a{bottom:670.034400pt;}
.y25d{bottom:670.411409pt;}
.y25f{bottom:670.412400pt;}
.y328{bottom:670.790400pt;}
.y292{bottom:671.470667pt;}
.y39f{bottom:671.620883pt;}
.y85{bottom:672.986200pt;}
.y17c{bottom:674.267600pt;}
.y359{bottom:674.721067pt;}
.y36c{bottom:678.198267pt;}
.y130{bottom:678.500424pt;}
.y8{bottom:680.843867pt;}
.y100{bottom:682.654425pt;}
.y25c{bottom:683.035251pt;}
.y215{bottom:683.182374pt;}
.y53{bottom:683.182600pt;}
.y1a9{bottom:683.185707pt;}
.y290{bottom:683.337750pt;}
.y39e{bottom:684.320458pt;}
.y3d4{bottom:684.320592pt;}
.yba{bottom:685.981492pt;}
.y357{bottom:686.663750pt;}
.y2ff{bottom:686.664075pt;}
.ya7{bottom:687.495867pt;}
.y84{bottom:687.650550pt;}
.y12e{bottom:689.385600pt;}
.y12d{bottom:691.123567pt;}
.y12f{bottom:691.124267pt;}
.y204{bottom:693.694400pt;}
.y25b{bottom:695.734825pt;}
.y3d3{bottom:696.944434pt;}
.y17b{bottom:696.944800pt;}
.y203{bottom:698.380933pt;}
.yff{bottom:699.360350pt;}
.y28f{bottom:700.043675pt;}
.y214{bottom:700.493213pt;}
.y52{bottom:700.493439pt;}
.y1a8{bottom:700.496547pt;}
.y2fd{bottom:701.555733pt;}
.y39d{bottom:701.631175pt;}
.y83{bottom:702.314900pt;}
.yb9{bottom:702.687416pt;}
.y2fc{bottom:703.369675pt;}
.y2fe{bottom:703.370000pt;}
.y12c{bottom:706.015600pt;}
.y12b{bottom:707.829491pt;}
.y25a{bottom:708.434400pt;}
.y202{bottom:709.643867pt;}
.y25{bottom:711.911600pt;}
.y3d2{bottom:714.329817pt;}
.y39c{bottom:714.330750pt;}
.y201{bottom:714.406133pt;}
.y28d{bottom:714.935200pt;}
.yfe{bottom:715.990542pt;}
.y28e{bottom:716.673867pt;}
.y28c{bottom:716.674217pt;}
.y82{bottom:716.979250pt;}
.y213{bottom:717.878720pt;}
.y51{bottom:717.878947pt;}
.y1a7{bottom:717.882054pt;}
.y36b{bottom:717.882627pt;}
.y2fa{bottom:718.261200pt;}
.y129{bottom:718.714800pt;}
.yb8{bottom:719.317608pt;}
.y2fb{bottom:719.999867pt;}
.y2f9{bottom:720.000217pt;}
.y356{bottom:720.000475pt;}
.y12a{bottom:720.453333pt;}
.y128{bottom:720.453833pt;}
.y3d1{bottom:726.953659pt;}
.y39b{bottom:731.640400pt;}
.y81{bottom:731.643600pt;}
.y28a{bottom:732.321067pt;}
.yfd{bottom:732.696466pt;}
.y369{bottom:733.001333pt;}
.y289{bottom:734.059275pt;}
.y28b{bottom:734.059600pt;}
.y354{bottom:734.891067pt;}
.y212{bottom:735.189560pt;}
.y50{bottom:735.189786pt;}
.y1a6{bottom:735.192894pt;}
.y36a{bottom:735.193467pt;}
.y200{bottom:735.344191pt;}
.y2f7{bottom:735.571467pt;}
.yb7{bottom:736.022466pt;}
.y353{bottom:736.705141pt;}
.y355{bottom:736.705333pt;}
.y7{bottom:736.856600pt;}
.y127{bottom:737.158691pt;}
.y2f6{bottom:737.385408pt;}
.y2f8{bottom:737.385600pt;}
.y3d0{bottom:744.263309pt;}
.y39a{bottom:744.264242pt;}
.y80{bottom:746.307950pt;}
.y125{bottom:748.044000pt;}
.y287{bottom:748.951067pt;}
.yfc{bottom:749.326658pt;}
.y126{bottom:749.782533pt;}
.y124{bottom:749.782900pt;}
.y1a4{bottom:750.311600pt;}
.y286{bottom:750.764875pt;}
.y288{bottom:750.765200pt;}
.y351{bottom:751.596667pt;}
.y1ff{bottom:751.974383pt;}
.y2f4{bottom:752.276933pt;}
.y211{bottom:752.500400pt;}
.y4f{bottom:752.500626pt;}
.y1a3{bottom:752.501893pt;}
.y1a5{bottom:752.503733pt;}
.yb6{bottom:752.652658pt;}
.y352{bottom:753.335333pt;}
.y350{bottom:753.335684pt;}
.y2f3{bottom:754.015142pt;}
.y2f5{bottom:754.015600pt;}
.y3cf{bottom:756.962884pt;}
.y7f{bottom:760.972300pt;}
.y399{bottom:761.649625pt;}
.y6{bottom:763.540000pt;}
.y284{bottom:765.656533pt;}
.yfb{bottom:766.031516pt;}
.y123{bottom:766.487758pt;}
.y283{bottom:767.394609pt;}
.y285{bottom:767.395067pt;}
.y1fe{bottom:768.680308pt;}
.y34f{bottom:768.906933pt;}
.yb5{bottom:769.358583pt;}
.y210{bottom:769.885907pt;}
.y4e{bottom:769.886133pt;}
.y1a2{bottom:769.887400pt;}
.y2f2{bottom:770.721067pt;}
.y2f0{bottom:770.721550pt;}
.y398{bottom:774.273467pt;}
.y3ce{bottom:774.273601pt;}
.y2f1{bottom:775.483200pt;}
.y7e{bottom:775.636650pt;}
.y121{bottom:777.373067pt;}
.y122{bottom:779.111600pt;}
.y120{bottom:779.112100pt;}
.yfa{bottom:782.661708pt;}
.y280{bottom:784.100341pt;}
.y282{bottom:784.100533pt;}
.y1fd{bottom:785.310500pt;}
.yb4{bottom:785.988775pt;}
.y397{bottom:786.973041pt;}
.y3cd{bottom:786.973175pt;}
.y20f{bottom:787.196747pt;}
.y4d{bottom:787.196973pt;}
.y1a1{bottom:787.198240pt;}
.y5{bottom:787.502133pt;}
.y2ed{bottom:788.029175pt;}
.y2ef{bottom:788.031200pt;}
.y281{bottom:788.787200pt;}
.y7d{bottom:790.301000pt;}
.y2ee{bottom:792.793467pt;}
.y11f{bottom:795.816958pt;}
.yf9{bottom:799.367633pt;}
.y3cc{bottom:799.597017pt;}
.y27d{bottom:800.728749pt;}
.y27f{bottom:800.730533pt;}
.y1fa{bottom:802.015241pt;}
.yb3{bottom:802.694700pt;}
.y396{bottom:804.282692pt;}
.y20e{bottom:804.507587pt;}
.y4c{bottom:804.507813pt;}
.y1a0{bottom:804.509080pt;}
.y2ec{bottom:804.735099pt;}
.y7c{bottom:804.965350pt;}
.y27e{bottom:805.492667pt;}
.y11d{bottom:806.702133pt;}
.y11e{bottom:808.440800pt;}
.y11c{bottom:808.441167pt;}
.y1f9{bottom:814.639084pt;}
.y1fc{bottom:814.639200pt;}
.yf8{bottom:815.997825pt;}
.y395{bottom:816.982266pt;}
.y3cb{bottom:816.982400pt;}
.y27c{bottom:817.434674pt;}
.yb2{bottom:819.324892pt;}
.y1fb{bottom:819.401333pt;}
.y7b{bottom:819.629700pt;}
.y4{bottom:820.836067pt;}
.y2eb{bottom:821.365291pt;}
.y20d{bottom:821.893094pt;}
.y4b{bottom:821.893320pt;}
.y19f{bottom:821.894587pt;}
.y11b{bottom:825.146024pt;}
.y3ca{bottom:829.606242pt;}
.y1f8{bottom:831.343941pt;}
.yf7{bottom:832.628017pt;}
.y27b{bottom:834.064866pt;}
.y394{bottom:834.291917pt;}
.yb1{bottom:836.029750pt;}
.y119{bottom:836.031200pt;}
.y118{bottom:837.769167pt;}
.y11a{bottom:837.769867pt;}
.y20c{bottom:839.203934pt;}
.y4a{bottom:839.204160pt;}
.y19e{bottom:839.205427pt;}
.y2ea{bottom:841.397041pt;}
.y7a{bottom:842.306750pt;}
.y1f7{bottom:843.967784pt;}
.y393{bottom:846.991491pt;}
.y3c9{bottom:846.991625pt;}
.yf6{bottom:849.333942pt;}
.yb0{bottom:852.659942pt;}
.y27a{bottom:854.096616pt;}
.y3{bottom:854.172233pt;}
.y19c{bottom:854.324267pt;}
.y117{bottom:854.475091pt;}
.y20b{bottom:856.514773pt;}
.y49{bottom:856.515000pt;}
.y19d{bottom:856.516267pt;}
.y79{bottom:856.971100pt;}
.y392{bottom:859.615333pt;}
.y3c8{bottom:859.615467pt;}
.y1f6{bottom:860.673708pt;}
.y2e9{bottom:864.301288pt;}
.y116{bottom:865.360400pt;}
.yf5{bottom:865.964134pt;}
.y115{bottom:867.098933pt;}
.yaf{bottom:869.365866pt;}
.y78{bottom:871.635450pt;}
.y391{bottom:872.314908pt;}
.y20a{bottom:873.900281pt;}
.y48{bottom:873.900507pt;}
.y3c7{bottom:876.925117pt;}
.y279{bottom:876.925130pt;}
.y1f5{bottom:877.302834pt;}
.yf4{bottom:882.670058pt;}
.yae{bottom:885.996058pt;}
.y77{bottom:886.299800pt;}
.y110{bottom:887.129803pt;}
.y113{bottom:887.130159pt;}
.y2{bottom:887.508400pt;}
.y390{bottom:889.624558pt;}
.y3c6{bottom:889.624692pt;}
.y1f4{bottom:890.002408pt;}
.y209{bottom:891.211120pt;}
.y47{bottom:891.211347pt;}
.y111{bottom:891.892800pt;}
.yf3{bottom:899.300250pt;}
.y10f{bottom:899.829377pt;}
.y112{bottom:899.829733pt;}
.y76{bottom:900.964150pt;}
.y38f{bottom:902.324133pt;}
.y3c5{bottom:902.324267pt;}
.yad{bottom:902.701983pt;}
.y114{bottom:904.516267pt;}
.y3c4{bottom:907.010800pt;}
.y208{bottom:908.521960pt;}
.y46{bottom:908.522186pt;}
.y1f1{bottom:910.034050pt;}
.y1f3{bottom:910.034158pt;}
.y1f2{bottom:914.721067pt;}
.y75{bottom:915.628500pt;}
.yf2{bottom:919.332000pt;}
.yf0{bottom:919.332450pt;}
.y38e{bottom:919.633783pt;}
.y1{bottom:920.843867pt;}
.yaa{bottom:922.657892pt;}
.yac{bottom:922.658000pt;}
.yf1{bottom:924.094267pt;}
.y207{bottom:925.832800pt;}
.y45{bottom:925.833026pt;}
.yab{bottom:927.420267pt;}
.y74{bottom:930.292850pt;}
.y206{bottom:931.804533pt;}
.y38d{bottom:932.257625pt;}
.y44{bottom:943.218533pt;}
.y278{bottom:944.201333pt;}
.yef{bottom:944.654800pt;}
.y73{bottom:944.957200pt;}
.ya9{bottom:946.015467pt;}
.y72{bottom:994.393333pt;}
.hf{height:25.624440pt;}
.hd{height:26.022600pt;}
.hb{height:28.228288pt;}
.h8{height:31.060945pt;}
.h10{height:31.188943pt;}
.h1{height:38.442186pt;}
.h13{height:38.453786pt;}
.he{height:38.465518pt;}
.hc{height:39.039512pt;}
.h7{height:42.347090pt;}
.h9{height:42.375144pt;}
.h3{height:43.920000pt;}
.h5{height:45.650667pt;}
.h11{height:51.627132pt;}
.h12{height:51.928596pt;}
.ha{height:57.663519pt;}
.h6{height:58.559512pt;}
.h4{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:48.000000pt;}
.x2d{left:54.198400pt;}
.x19{left:55.407867pt;}
.x25{left:61.530667pt;}
.x5{left:63.496000pt;}
.x89{left:64.932267pt;}
.x2e{left:67.351200pt;}
.x2c{left:68.938533pt;}
.x8b{left:70.828267pt;}
.x8a{left:72.037733pt;}
.x4{left:74.683467pt;}
.x8c{left:78.236267pt;}
.x8d{left:100.384267pt;}
.x1b{left:105.826477pt;}
.x8e{left:121.776267pt;}
.x4f{left:125.101970pt;}
.x8f{left:129.184267pt;}
.x90{left:140.900800pt;}
.x50{left:146.721200pt;}
.x91{left:147.855067pt;}
.x1a{left:150.878714pt;}
.x99{left:168.113333pt;}
.x74{left:175.370000pt;}
.x75{left:179.754267pt;}
.x51{left:184.592000pt;}
.x76{left:198.500667pt;}
.x77{left:202.884933pt;}
.x92{left:215.433067pt;}
.xab{left:220.877245pt;}
.x1c{left:222.764749pt;}
.x78{left:225.713333pt;}
.xa7{left:227.753248pt;}
.x79{left:230.173200pt;}
.xb1{left:231.762195pt;}
.x7a{left:254.740133pt;}
.x1d{left:258.897600pt;}
.x53{left:259.879592pt;}
.x1{left:266.683333pt;}
.xb7{left:272.579467pt;}
.xaa{left:276.738946pt;}
.x68{left:281.272400pt;}
.x2{left:282.634160pt;}
.x7b{left:286.412533pt;}
.x69{left:288.982533pt;}
.xa3{left:292.157777pt;}
.xb8{left:294.651724pt;}
.x15{left:305.385733pt;}
.x7c{left:309.014133pt;}
.x26{left:319.294400pt;}
.x48{left:320.503867pt;}
.x2f{left:325.190400pt;}
.x49{left:328.214133pt;}
.x7d{left:329.801467pt;}
.x31{left:332.598267pt;}
.x6f{left:336.226667pt;}
.xac{left:337.436133pt;}
.x6d{left:340.762133pt;}
.x70{left:343.936933pt;}
.xad{left:345.070800pt;}
.x81{left:348.094400pt;}
.x57{left:358.903867pt;}
.x58{left:363.666000pt;}
.x1e{left:367.218833pt;}
.x7e{left:368.503867pt;}
.xa{left:372.812533pt;}
.x4a{left:374.626667pt;}
.x5f{left:375.684933pt;}
.xb{left:380.447200pt;}
.x60{left:383.470800pt;}
.x72{left:389.064400pt;}
.xb6{left:394.658133pt;}
.x7f{left:395.716400pt;}
.x73{left:396.774667pt;}
.x80{left:402.444000pt;}
.x55{left:405.014133pt;}
.xc{left:407.281733pt;}
.xd{left:411.968400pt;}
.x9a{left:417.108533pt;}
.x3a{left:418.695867pt;}
.x9b{left:424.894400pt;}
.x3b{left:426.406133pt;}
.xa4{left:431.470169pt;}
.x56{left:434.040800pt;}
.xa0{left:436.459733pt;}
.xa8{left:440.692800pt;}
.xa1{left:444.170000pt;}
.xaf{left:446.438978pt;}
.x54{left:449.536800pt;}
.x9c{left:462.538400pt;}
.x3c{left:464.503733pt;}
.x3d{left:469.266000pt;}
.x9d{left:470.248667pt;}
.x88{left:476.598267pt;}
.x32{left:482.494400pt;}
.x1f{left:484.232837pt;}
.x6e{left:486.425067pt;}
.x20{left:490.658133pt;}
.xb3{left:492.774667pt;}
.x3e{left:494.362000pt;}
.x71{left:496.100667pt;}
.x17{left:498.519467pt;}
.xb4{left:500.560400pt;}
.x3f{left:502.072267pt;}
.x18{left:503.281733pt;}
.x59{left:505.927467pt;}
.x5a{left:510.765200pt;}
.x40{left:522.330533pt;}
.xe{left:528.528933pt;}
.x41{left:530.116400pt;}
.x52{left:532.381786pt;}
.xf{left:536.163600pt;}
.xb5{left:538.053333pt;}
.x63{left:543.042400pt;}
.x83{left:544.176267pt;}
.x21{left:546.519467pt;}
.x64{left:547.804533pt;}
.xb2{left:550.374667pt;}
.x84{left:551.886533pt;}
.x5b{left:554.229733pt;}
.x42{left:555.817200pt;}
.x27{left:560.050267pt;}
.x6{left:563.829733pt;}
.x30{left:565.946267pt;}
.x10{left:567.684933pt;}
.x6c{left:569.574667pt;}
.xb9{left:572.522667pt;}
.x4b{left:573.656533pt;}
.x65{left:575.999867pt;}
.xa9{left:579.703733pt;}
.x4c{left:581.366800pt;}
.xa2{left:586.884933pt;}
.x4d{left:594.292667pt;}
.x61{left:597.467467pt;}
.x22{left:600.717189pt;}
.x4e{left:602.683333pt;}
.x85{left:604.346267pt;}
.x43{left:605.706933pt;}
.xae{left:610.015600pt;}
.x86{left:612.056533pt;}
.x28{left:613.719467pt;}
.x29{left:618.103733pt;}
.x66{left:621.278533pt;}
.x33{left:624.528933pt;}
.xa5{left:625.434677pt;}
.x97{left:627.854933pt;}
.x34{left:629.291200pt;}
.x44{left:633.751067pt;}
.x98{left:634.658133pt;}
.x45{left:641.461200pt;}
.x62{left:643.880133pt;}
.x93{left:646.299067pt;}
.x35{left:650.910133pt;}
.x2a{left:652.346267pt;}
.x94{left:654.084933pt;}
.x36{left:655.672267pt;}
.x2b{left:656.730533pt;}
.x38{left:663.382533pt;}
.x46{left:667.162000pt;}
.x39{left:671.092800pt;}
.x47{left:671.999867pt;}
.xb0{left:673.739603pt;}
.x37{left:676.686400pt;}
.x11{left:680.692800pt;}
.xa6{left:684.167810pt;}
.x12{left:685.379333pt;}
.x13{left:689.914800pt;}
.x87{left:692.258000pt;}
.x14{left:694.601333pt;}
.x5c{left:697.851867pt;}
.x82{left:705.259600pt;}
.x16{left:711.231981pt;}
.x23{left:717.655461pt;}
.x7{left:721.889600pt;}
.x24{left:724.081733pt;}
.x8{left:726.651867pt;}
.x96{left:729.826533pt;}
.x5d{left:736.327333pt;}
.x9e{left:737.385600pt;}
.x5e{left:741.089467pt;}
.x9{left:743.810800pt;}
.x9f{left:745.095867pt;}
.x67{left:750.084800pt;}
.x95{left:756.736800pt;}
.x6a{left:757.643867pt;}
.x6b{left:762.406133pt;}
}




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