
    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_219426e0f064230633ccacf0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_ba9001a4a3cbd57358df830c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_dcde0d9901af779014f445d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_50510322fcfd828d9395383e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_c776baffa56825c223c1867b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008301;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_59b6a0010c24892c193279e4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_fe4f93939205ff09790fb6e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cfae42fd246f7b0d655b25cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.710000;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_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.008301;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_49cac0ad19bb4ed279f8acf7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_d88b6e6d3c05fdd5d2ed4492.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722000;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_8ff4410ba5176b9ca0848b57.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.262000;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_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.008301;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_122220828602904a4a86a078.woff2')format("woff");}.fff{font-family:fff;line-height:0.580000;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_f1301b46fb79a48aba561b69.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.709473;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_6ad6f13ed5c3418dd7a6e6b5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.008301;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_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008301;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_2a235d34dc7f3aac54f4107c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.665000;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_2a372c376bdf5eb90f93a38e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.709473;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_4f7cddc1180e7836662222de.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;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:ff17;src:url('chunks/assets/font_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.008301;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:ff18;src:url('chunks/assets/font_c776baffa56825c223c1867b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.008301;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:ff19;src:url('chunks/assets/font_3515fa6877d21f98613c870e.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006348;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:ff1a;src:url('chunks/assets/font_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.008301;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:ff1b;src:url('chunks/assets/font_c776baffa56825c223c1867b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.008301;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:ff1c;src:url('chunks/assets/font_3515fa6877d21f98613c870e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.006348;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:ff1d;src:url('chunks/assets/font_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.008301;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:ff1e;src:url('chunks/assets/font_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.008301;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:ff1f;src:url('chunks/assets/font_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.008301;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:ff20;src:url('chunks/assets/font_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.008301;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:ff21;src:url('chunks/assets/font_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.008301;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:ff22;src:url('chunks/assets/font_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.008301;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:ff23;src:url('chunks/assets/font_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.008301;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:ff24;src:url('chunks/assets/font_ecd6c25dc53c2183b9a9ef43.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.008301;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:ff25;src:url('chunks/assets/font_4fedabbc8ae8e79e35aca54b.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.008301;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.va{vertical-align:-42.708000px;}
.v6{vertical-align:-20.190000px;}
.vb{vertical-align:-18.498000px;}
.v3{vertical-align:-17.358000px;}
.vd{vertical-align:-14.964000px;}
.v27{vertical-align:-13.332000px;}
.v4{vertical-align:-11.952000px;}
.v5{vertical-align:-10.920000px;}
.v9{vertical-align:-8.964000px;}
.v1e{vertical-align:-4.242000px;}
.ve{vertical-align:-2.658000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:1.836000px;}
.v10{vertical-align:3.816000px;}
.v1a{vertical-align:8.340000px;}
.v11{vertical-align:11.148000px;}
.vc{vertical-align:12.306000px;}
.vf{vertical-align:14.964000px;}
.v20{vertical-align:17.274000px;}
.v2{vertical-align:21.702000px;}
.v1c{vertical-align:23.550000px;}
.v19{vertical-align:29.550000px;}
.v1f{vertical-align:32.040000px;}
.v1{vertical-align:39.060000px;}
.v7{vertical-align:40.470000px;}
.v8{vertical-align:41.634000px;}
.v21{vertical-align:42.702000px;}
.v15{vertical-align:45.570000px;}
.v17{vertical-align:47.100000px;}
.v24{vertical-align:48.660000px;}
.v26{vertical-align:50.574000px;}
.v12{vertical-align:51.612000px;}
.v14{vertical-align:52.770000px;}
.v25{vertical-align:57.186000px;}
.v18{vertical-align:62.964000px;}
.v1b{vertical-align:66.378000px;}
.v23{vertical-align:70.554000px;}
.v16{vertical-align:74.724000px;}
.v22{vertical-align:81.474000px;}
.v1d{vertical-align:87.000000px;}
.lsbf{letter-spacing:-0.679670px;}
.lsdb{letter-spacing:-0.667397px;}
.lsbc{letter-spacing:-0.427090px;}
.lsdc{letter-spacing:-0.412638px;}
.lsbd{letter-spacing:-0.264060px;}
.ls1c{letter-spacing:-0.182408px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000306px;}
.lsfb{letter-spacing:0.000422px;}
.lsd2{letter-spacing:0.000612px;}
.lse4{letter-spacing:0.000786px;}
.lsd{letter-spacing:0.000800px;}
.lsae{letter-spacing:0.000868px;}
.ls7b{letter-spacing:0.001746px;}
.lse{letter-spacing:0.003178px;}
.lsff{letter-spacing:0.016200px;}
.lsf7{letter-spacing:0.018000px;}
.lsd7{letter-spacing:0.111233px;}
.ls100{letter-spacing:0.113341px;}
.lsf8{letter-spacing:0.125934px;}
.ls101{letter-spacing:0.129705px;}
.lsc{letter-spacing:0.140135px;}
.lsf9{letter-spacing:0.144117px;}
.ls1b{letter-spacing:0.328334px;}
.lsbe{letter-spacing:0.339835px;}
.lsb2{letter-spacing:0.355908px;}
.lsd6{letter-spacing:0.361122px;}
.lsab{letter-spacing:0.414583px;}
.ls52{letter-spacing:0.508407px;}
.lsdd{letter-spacing:0.531048px;}
.ls53{letter-spacing:0.542815px;}
.lsf2{letter-spacing:0.547615px;}
.ls22{letter-spacing:0.548815px;}
.ls67{letter-spacing:0.565200px;}
.ls93{letter-spacing:0.565973px;}
.lsa3{letter-spacing:0.567886px;}
.lse3{letter-spacing:0.567943px;}
.ls54{letter-spacing:0.571200px;}
.ls6e{letter-spacing:0.571973px;}
.lsc4{letter-spacing:0.668045px;}
.ls7a{letter-spacing:0.670800px;}
.lsd8{letter-spacing:0.674045px;}
.lsb6{letter-spacing:0.676741px;}
.lsc1{letter-spacing:0.717483px;}
.ls8c{letter-spacing:0.720783px;}
.lsd0{letter-spacing:0.723483px;}
.lsd3{letter-spacing:0.728576px;}
.ls2d{letter-spacing:0.742200px;}
.ls24{letter-spacing:0.743675px;}
.lsda{letter-spacing:0.744583px;}
.lsa6{letter-spacing:0.744775px;}
.ls107{letter-spacing:0.745694px;}
.ls10{letter-spacing:0.746383px;}
.ls48{letter-spacing:0.746725px;}
.ls88{letter-spacing:0.747292px;}
.ls9{letter-spacing:0.748200px;}
.ls62{letter-spacing:0.748766px;}
.ls36{letter-spacing:0.749675px;}
.lsfe{letter-spacing:0.750476px;}
.lsdf{letter-spacing:0.750583px;}
.ls3a{letter-spacing:0.752383px;}
.ls1f{letter-spacing:1.044783px;}
.lsc9{letter-spacing:1.047483px;}
.ls80{letter-spacing:1.050783px;}
.ls61{letter-spacing:1.078407px;}
.ls6f{letter-spacing:1.112815px;}
.ls21{letter-spacing:1.135142px;}
.lse2{letter-spacing:1.137943px;}
.lsca{letter-spacing:1.166383px;}
.lseb{letter-spacing:1.180741px;}
.lse5{letter-spacing:1.298012px;}
.lse7{letter-spacing:1.312200px;}
.lsd4{letter-spacing:1.313675px;}
.ls51{letter-spacing:1.316725px;}
.ls7f{letter-spacing:1.344017px;}
.ls40{letter-spacing:1.344583px;}
.ls19{letter-spacing:1.350017px;}
.ls17{letter-spacing:1.414741px;}
.ls11{letter-spacing:1.420741px;}
.ls66{letter-spacing:1.461483px;}
.ls32{letter-spacing:1.464783px;}
.ls9a{letter-spacing:1.470783px;}
.lsb{letter-spacing:1.489694px;}
.ls26{letter-spacing:1.490725px;}
.ls14{letter-spacing:1.491292px;}
.ls28{letter-spacing:1.492200px;}
.ls99{letter-spacing:1.492766px;}
.ls70{letter-spacing:1.494775px;}
.ls8{letter-spacing:1.495694px;}
.ls8b{letter-spacing:1.496383px;}
.ls3e{letter-spacing:1.496725px;}
.ls12{letter-spacing:1.497292px;}
.ls97{letter-spacing:1.498766px;}
.ls9e{letter-spacing:1.703675px;}
.ls105{letter-spacing:2.012045px;}
.lsc5{letter-spacing:2.018045px;}
.ls18{letter-spacing:2.064783px;}
.ls47{letter-spacing:2.088583px;}
.lsd9{letter-spacing:2.089694px;}
.ls25{letter-spacing:2.094583px;}
.lsde{letter-spacing:2.095694px;}
.ls87{letter-spacing:2.240383px;}
.lsad{letter-spacing:2.246383px;}
.ls38{letter-spacing:2.614741px;}
.ls3b{letter-spacing:2.620741px;}
.ls35{letter-spacing:2.658783px;}
.lsac{letter-spacing:2.927108px;}
.lsa7{letter-spacing:2.985850px;}
.ls3d{letter-spacing:2.986514px;}
.ls104{letter-spacing:2.988600px;}
.ls43{letter-spacing:2.989200px;}
.ls8d{letter-spacing:2.990143px;}
.lsaa{letter-spacing:2.991850px;}
.ls6b{letter-spacing:2.992514px;}
.lsb3{letter-spacing:2.993431px;}
.lsd5{letter-spacing:3.716383px;}
.ls74{letter-spacing:3.730514px;}
.ls31{letter-spacing:3.733200px;}
.ls4d{letter-spacing:3.733973px;}
.lsd1{letter-spacing:3.734810px;}
.ls63{letter-spacing:3.735986px;}
.lsee{letter-spacing:3.736414px;}
.ls34{letter-spacing:3.736514px;}
.lsb5{letter-spacing:3.737431px;}
.ls39{letter-spacing:3.739200px;}
.ls72{letter-spacing:3.739973px;}
.ls79{letter-spacing:4.018200px;}
.ls6a{letter-spacing:4.024200px;}
.ls95{letter-spacing:4.280815px;}
.ls94{letter-spacing:4.286815px;}
.ls4b{letter-spacing:7.922725px;}
.ls0{letter-spacing:8.367300px;}
.ls20{letter-spacing:8.590741px;}
.ls4c{letter-spacing:8.596741px;}
.ls6c{letter-spacing:8.634783px;}
.ls8e{letter-spacing:9.234783px;}
.lsef{letter-spacing:9.240783px;}
.lse6{letter-spacing:9.758725px;}
.ls44{letter-spacing:10.706100px;}
.ls41{letter-spacing:10.712100px;}
.ls2e{letter-spacing:10.731483px;}
.ls60{letter-spacing:10.843200px;}
.lsa4{letter-spacing:10.909200px;}
.ls90{letter-spacing:11.078383px;}
.ls5{letter-spacing:11.954850px;}
.ls10a{letter-spacing:12.264686px;}
.lsb8{letter-spacing:12.345483px;}
.ls84{letter-spacing:12.370200px;}
.lsc8{letter-spacing:12.669483px;}
.lsec{letter-spacing:12.849483px;}
.ls92{letter-spacing:13.042741px;}
.ls29{letter-spacing:13.048741px;}
.ls42{letter-spacing:13.083483px;}
.ls56{letter-spacing:13.089483px;}
.ls64{letter-spacing:13.112725px;}
.ls71{letter-spacing:13.118725px;}
.lsa1{letter-spacing:13.149483px;}
.ls111{letter-spacing:13.230873px;}
.lsfc{letter-spacing:13.276766px;}
.ls110{letter-spacing:13.432753px;}
.ls109{letter-spacing:13.448400px;}
.lsfa{letter-spacing:13.449600px;}
.ls10d{letter-spacing:13.454400px;}
.ls10b{letter-spacing:13.562521px;}
.ls85{letter-spacing:13.683483px;}
.ls102{letter-spacing:14.117530px;}
.ls2a{letter-spacing:14.283483px;}
.ls10c{letter-spacing:14.450400px;}
.ls10e{letter-spacing:14.785694px;}
.lsf{letter-spacing:14.824349px;}
.ls7{letter-spacing:14.943900px;}
.ls46{letter-spacing:15.242778px;}
.ls9b{letter-spacing:15.355200px;}
.ls76{letter-spacing:15.357986px;}
.ls55{letter-spacing:15.358514px;}
.ls98{letter-spacing:15.361200px;}
.lsf6{letter-spacing:15.442766px;}
.ls1d{letter-spacing:15.616741px;}
.lsf4{letter-spacing:15.666783px;}
.lsf3{letter-spacing:15.688766px;}
.lsfd{letter-spacing:15.690476px;}
.ls3c{letter-spacing:15.694200px;}
.ls10f{letter-spacing:15.879812px;}
.lsb7{letter-spacing:15.925771px;}
.ls33{letter-spacing:16.077483px;}
.ls108{letter-spacing:16.218476px;}
.ls65{letter-spacing:16.360741px;}
.ls106{letter-spacing:16.410653px;}
.ls13{letter-spacing:17.272741px;}
.ls30{letter-spacing:17.319483px;}
.ls82{letter-spacing:17.325483px;}
.ls16{letter-spacing:17.649483px;}
.lsc6{letter-spacing:17.655483px;}
.lsf5{letter-spacing:17.806766px;}
.ls75{letter-spacing:17.889483px;}
.ls103{letter-spacing:17.929200px;}
.lsf0{letter-spacing:17.929258px;}
.ls4a{letter-spacing:17.929973px;}
.lsaf{letter-spacing:17.932414px;}
.ls4f{letter-spacing:17.932514px;}
.ls49{letter-spacing:17.935200px;}
.ls3f{letter-spacing:18.022741px;}
.ls15{letter-spacing:18.028741px;}
.ls27{letter-spacing:18.069483px;}
.ls91{letter-spacing:18.663483px;}
.ls7c{letter-spacing:18.669483px;}
.ls69{letter-spacing:18.676514px;}
.lsa2{letter-spacing:18.938012px;}
.lsa{letter-spacing:19.427070px;}
.ls8a{letter-spacing:20.157483px;}
.ls57{letter-spacing:20.335200px;}
.lse0{letter-spacing:20.338414px;}
.ls50{letter-spacing:20.338514px;}
.ls89{letter-spacing:20.341200px;}
.lsf1{letter-spacing:20.341258px;}
.ls78{letter-spacing:20.622582px;}
.ls96{letter-spacing:20.882815px;}
.lsa8{letter-spacing:24.495483px;}
.lsc7{letter-spacing:24.825483px;}
.lse1{letter-spacing:25.219609px;}
.ls59{letter-spacing:25.239483px;}
.ls5c{letter-spacing:25.245483px;}
.ls9f{letter-spacing:25.299483px;}
.lsba{letter-spacing:25.839483px;}
.ls2f{letter-spacing:27.333483px;}
.lsce{letter-spacing:32.038741px;}
.ls5f{letter-spacing:32.743609px;}
.lsc2{letter-spacing:33.009483px;}
.lsc0{letter-spacing:34.305483px;}
.lsb0{letter-spacing:38.392414px;}
.ls6d{letter-spacing:45.460200px;}
.lse9{letter-spacing:45.607258px;}
.ls58{letter-spacing:57.153483px;}
.ls1{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.ls83{letter-spacing:78.405483px;}
.ls5b{letter-spacing:95.349483px;}
.ls9c{letter-spacing:110.595483px;}
.ls68{letter-spacing:137.803142px;}
.ls1e{letter-spacing:144.651483px;}
.lsb4{letter-spacing:154.965483px;}
.lscc{letter-spacing:157.312741px;}
.lscd{letter-spacing:544.972741px;}
.lscf{letter-spacing:586.054741px;}
.ls5d{letter-spacing:632.752200px;}
.ls73{letter-spacing:654.154741px;}
.ls45{letter-spacing:660.340741px;}
.ls5a{letter-spacing:687.148200px;}
.ls81{letter-spacing:691.846741px;}
.lsed{letter-spacing:699.940741px;}
.ls23{letter-spacing:707.038741px;}
.ls7e{letter-spacing:725.800741px;}
.lse8{letter-spacing:743.342725px;}
.lsb1{letter-spacing:751.624741px;}
.ls86{letter-spacing:767.698741px;}
.ls9d{letter-spacing:774.898741px;}
.lsa5{letter-spacing:776.576012px;}
.ls77{letter-spacing:777.928741px;}
.ls7d{letter-spacing:791.626741px;}
.ls1a{letter-spacing:800.944741px;}
.lscb{letter-spacing:826.510741px;}
.ls37{letter-spacing:827.847986px;}
.lsb9{letter-spacing:827.896741px;}
.lsea{letter-spacing:874.745431px;}
.ls2b{letter-spacing:889.495200px;}
.lsbb{letter-spacing:902.476766px;}
.ls5e{letter-spacing:905.947973px;}
.ls8f{letter-spacing:906.525850px;}
.ls4e{letter-spacing:920.614741px;}
.lsa0{letter-spacing:938.727292px;}
.lsa9{letter-spacing:946.599850px;}
.lsc3{letter-spacing:949.880143px;}
.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;}
}
.ws48{word-spacing:-60.120000px;}
.wse1{word-spacing:-54.000000px;}
.wsea{word-spacing:-48.600000px;}
.wse4{word-spacing:-26.899200px;}
.wsc5{word-spacing:-20.631899px;}
.ws47{word-spacing:-15.030000px;}
.ws53{word-spacing:-14.943900px;}
.wsc6{word-spacing:-14.015332px;}
.wse0{word-spacing:-13.500000px;}
.ws4a{word-spacing:-13.449600px;}
.wse9{word-spacing:-12.150000px;}
.ws22{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.wsa0{word-spacing:-10.619850px;}
.ws3{word-spacing:-10.460700px;}
.ws9f{word-spacing:-9.940179px;}
.ws9e{word-spacing:-9.253608px;}
.ws4f{word-spacing:-8.937967px;}
.ws9d{word-spacing:-8.897700px;}
.ws38{word-spacing:-3.347434px;}
.ws88{word-spacing:-3.227882px;}
.wsed{word-spacing:-3.048556px;}
.wsc8{word-spacing:-2.809453px;}
.ws104{word-spacing:-2.749678px;}
.ws33{word-spacing:-2.391024px;}
.wsa2{word-spacing:-2.367130px;}
.ws37{word-spacing:-2.211697px;}
.ws0{word-spacing:-2.092140px;}
.ws87{word-spacing:-1.990541px;}
.wsc4{word-spacing:-1.972595px;}
.wse7{word-spacing:-1.912819px;}
.wse8{word-spacing:-1.911338px;}
.ws52{word-spacing:-1.673717px;}
.ws109{word-spacing:-1.560154px;}
.wsf6{word-spacing:-1.321346px;}
.wsf5{word-spacing:-1.315063px;}
.ws5b{word-spacing:-1.255288px;}
.ws5a{word-spacing:-1.195512px;}
.ws10b{word-spacing:-1.183565px;}
.ws86{word-spacing:-1.135736px;}
.ws112{word-spacing:-0.968371px;}
.ws1f{word-spacing:-0.956410px;}
.ws32{word-spacing:-0.896634px;}
.wsf2{word-spacing:-0.836858px;}
.ws31{word-spacing:-0.777083px;}
.ws12d{word-spacing:-0.699379px;}
.ws5d{word-spacing:-0.657532px;}
.wse6{word-spacing:-0.597756px;}
.ws24{word-spacing:-0.537980px;}
.wscb{word-spacing:-0.531048px;}
.ws55{word-spacing:-0.478205px;}
.wsc1{word-spacing:-0.358654px;}
.wsa8{word-spacing:-0.339835px;}
.ws110{word-spacing:-0.322790px;}
.ws1d{word-spacing:-0.298878px;}
.wse2{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.wsfd{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.179327px;}
.wsc7{word-spacing:-0.161395px;}
.ws1c{word-spacing:-0.119551px;}
.ws57{word-spacing:-0.107597px;}
.wsf{word-spacing:-0.059776px;}
.ws58{word-spacing:-0.053798px;}
.wsdd{word-spacing:-0.049085px;}
.ws23{word-spacing:-0.047821px;}
.ws98{word-spacing:-0.045430px;}
.ws4{word-spacing:-0.041843px;}
.ws12e{word-spacing:-0.022291px;}
.wsd5{word-spacing:-0.003300px;}
.wsd2{word-spacing:-0.000943px;}
.ws8{word-spacing:-0.000630px;}
.ws7{word-spacing:0.000000px;}
.ws108{word-spacing:0.053798px;}
.ws4b{word-spacing:0.059776px;}
.wsb{word-spacing:0.095641px;}
.ws10d{word-spacing:0.107597px;}
.ws19{word-spacing:0.119551px;}
.ws10e{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws96{word-spacing:0.215194px;}
.wsc{word-spacing:0.239102px;}
.wsd8{word-spacing:0.243297px;}
.wsa7{word-spacing:0.264060px;}
.ws119{word-spacing:0.268992px;}
.ws27{word-spacing:0.298878px;}
.ws10f{word-spacing:0.322790px;}
.wse5{word-spacing:0.326597px;}
.wsb5{word-spacing:0.328009px;}
.ws6a{word-spacing:0.358654px;}
.wse3{word-spacing:0.376589px;}
.wsca{word-spacing:0.412638px;}
.ws6{word-spacing:0.422252px;}
.wsa6{word-spacing:0.427090px;}
.wsc3{word-spacing:0.478205px;}
.wsdf{word-spacing:0.512132px;}
.wsde{word-spacing:0.528513px;}
.ws89{word-spacing:0.537980px;}
.ws10{word-spacing:0.597756px;}
.ws3a{word-spacing:0.657532px;}
.wsc9{word-spacing:0.667397px;}
.wsf0{word-spacing:0.699379px;}
.ws56{word-spacing:0.742067px;}
.ws6e{word-spacing:0.745348px;}
.wscc{word-spacing:0.746027px;}
.ws8a{word-spacing:0.746305px;}
.ws6d{word-spacing:0.748009px;}
.ws117{word-spacing:0.753178px;}
.ws63{word-spacing:0.777083px;}
.ws29{word-spacing:0.896634px;}
.wsd6{word-spacing:0.956410px;}
.wsd7{word-spacing:0.967774px;}
.ws3e{word-spacing:1.016185px;}
.ws118{word-spacing:1.022170px;}
.ws44{word-spacing:1.075961px;}
.wsbd{word-spacing:1.135736px;}
.wsbc{word-spacing:1.195512px;}
.wsfc{word-spacing:1.237363px;}
.wsdc{word-spacing:1.255288px;}
.ws68{word-spacing:1.315063px;}
.ws84{word-spacing:1.337951px;}
.ws80{word-spacing:1.344386px;}
.ws11e{word-spacing:1.344960px;}
.ws94{word-spacing:1.374839px;}
.ws3d{word-spacing:1.494390px;}
.ws17{word-spacing:1.554166px;}
.ws2f{word-spacing:1.613941px;}
.ws3f{word-spacing:1.673717px;}
.ws7b{word-spacing:1.733492px;}
.wsf1{word-spacing:1.745069px;}
.ws18{word-spacing:1.793268px;}
.ws16{word-spacing:1.853044px;}
.ws125{word-spacing:1.882944px;}
.ws9c{word-spacing:1.940093px;}
.ws51{word-spacing:1.972595px;}
.wsda{word-spacing:2.032370px;}
.ws121{word-spacing:2.044339px;}
.ws30{word-spacing:2.092146px;}
.wseb{word-spacing:2.151936px;}
.ws62{word-spacing:2.211697px;}
.ws105{word-spacing:2.259533px;}
.ws92{word-spacing:2.271473px;}
.ws102{word-spacing:2.391024px;}
.ws115{word-spacing:2.420928px;}
.ws13{word-spacing:2.450800px;}
.ws10c{word-spacing:2.474726px;}
.wsf3{word-spacing:2.510575px;}
.ws128{word-spacing:2.528525px;}
.wsdb{word-spacing:2.570351px;}
.wsb0{word-spacing:2.689902px;}
.ws124{word-spacing:2.689920px;}
.ws28{word-spacing:2.809453px;}
.ws3c{word-spacing:2.869229px;}
.wsa{word-spacing:2.869236px;}
.ws4c{word-spacing:2.929004px;}
.ws3b{word-spacing:2.988780px;}
.ws11b{word-spacing:3.012710px;}
.wsc2{word-spacing:3.048556px;}
.ws106{word-spacing:3.091063px;}
.ws74{word-spacing:3.108331px;}
.wsd9{word-spacing:3.168107px;}
.ws59{word-spacing:3.174106px;}
.ws130{word-spacing:3.221078px;}
.ws129{word-spacing:3.223286px;}
.ws12b{word-spacing:3.223670px;}
.ws122{word-spacing:3.223862px;}
.wsef{word-spacing:3.227882px;}
.ws127{word-spacing:3.227904px;}
.ws132{word-spacing:3.281702px;}
.ws1e{word-spacing:3.287658px;}
.wsd0{word-spacing:3.347434px;}
.ws7d{word-spacing:3.443098px;}
.wsb1{word-spacing:3.466985px;}
.ws7c{word-spacing:3.496896px;}
.ws69{word-spacing:3.526760px;}
.ws35{word-spacing:3.586536px;}
.ws26{word-spacing:3.646312px;}
.ws5c{word-spacing:3.765863px;}
.ws11{word-spacing:3.825638px;}
.ws2b{word-spacing:3.885414px;}
.ws113{word-spacing:3.981082px;}
.wscd{word-spacing:3.999516px;}
.ws67{word-spacing:4.002943px;}
.ws2c{word-spacing:4.004965px;}
.ws70{word-spacing:4.005773px;}
.ws42{word-spacing:4.064741px;}
.ws20{word-spacing:4.184292px;}
.wsd{word-spacing:4.244068px;}
.wsa1{word-spacing:4.303843px;}
.ws14{word-spacing:4.303872px;}
.ws6b{word-spacing:4.325188px;}
.ws11a{word-spacing:4.411469px;}
.ws41{word-spacing:4.423394px;}
.ws7a{word-spacing:4.483170px;}
.ws85{word-spacing:4.602721px;}
.ws116{word-spacing:4.626662px;}
.ws101{word-spacing:4.722272px;}
.ws2e{word-spacing:4.782048px;}
.ws83{word-spacing:4.841824px;}
.ws95{word-spacing:4.901599px;}
.wsb3{word-spacing:4.961375px;}
.wsb2{word-spacing:5.021150px;}
.ws54{word-spacing:5.080926px;}
.wsf7{word-spacing:5.140702px;}
.wsf8{word-spacing:5.200477px;}
.wsf9{word-spacing:5.260253px;}
.wsfa{word-spacing:5.320028px;}
.ws114{word-spacing:5.487437px;}
.ws100{word-spacing:5.499355px;}
.ws78{word-spacing:5.678682px;}
.ws64{word-spacing:5.738458px;}
.ws65{word-spacing:5.798233px;}
.ws103{word-spacing:5.917784px;}
.ws15{word-spacing:5.977560px;}
.wsaf{word-spacing:5.978920px;}
.ws1a{word-spacing:6.037336px;}
.ws1b{word-spacing:6.097111px;}
.wsf4{word-spacing:6.156887px;}
.ws123{word-spacing:6.186816px;}
.wsfb{word-spacing:6.276438px;}
.ws43{word-spacing:6.336214px;}
.ws4d{word-spacing:6.512736px;}
.ws7f{word-spacing:6.572736px;}
.ws93{word-spacing:6.573000px;}
.ws81{word-spacing:6.573120px;}
.wsac{word-spacing:6.573516px;}
.ws8c{word-spacing:6.573528px;}
.ws6c{word-spacing:6.573773px;}
.wsa3{word-spacing:6.574080px;}
.wsa9{word-spacing:6.574123px;}
.ws6f{word-spacing:6.574366px;}
.wsb4{word-spacing:6.574474px;}
.wsbb{word-spacing:6.575714px;}
.wsb6{word-spacing:6.576497px;}
.ws8d{word-spacing:6.576605px;}
.ws99{word-spacing:6.577572px;}
.ws8b{word-spacing:6.579449px;}
.ws45{word-spacing:6.694867px;}
.wsee{word-spacing:6.754643px;}
.ws11c{word-spacing:6.832397px;}
.ws36{word-spacing:6.933970px;}
.wsec{word-spacing:7.531726px;}
.ws50{word-spacing:7.591501px;}
.ws91{word-spacing:7.711052px;}
.ws90{word-spacing:7.770828px;}
.wse{word-spacing:7.830604px;}
.ws2d{word-spacing:8.249033px;}
.ws2{word-spacing:8.323685px;}
.ws7e{word-spacing:8.368584px;}
.ws97{word-spacing:8.428360px;}
.ws46{word-spacing:8.488135px;}
.ws8f{word-spacing:8.515348px;}
.ws12{word-spacing:8.692416px;}
.wsb7{word-spacing:8.975714px;}
.ws71{word-spacing:8.978287px;}
.wsb9{word-spacing:8.978695px;}
.ws72{word-spacing:8.979773px;}
.wsaa{word-spacing:8.980123px;}
.ws60{word-spacing:8.980366px;}
.wsa5{word-spacing:8.980430px;}
.ws66{word-spacing:8.981002px;}
.wsab{word-spacing:8.981647px;}
.ws5e{word-spacing:8.982274px;}
.ws8e{word-spacing:8.982605px;}
.ws5f{word-spacing:8.984909px;}
.ws73{word-spacing:8.985773px;}
.wsa4{word-spacing:8.986080px;}
.wsce{word-spacing:8.986123px;}
.ws40{word-spacing:9.085891px;}
.wsd3{word-spacing:11.175000px;}
.ws5{word-spacing:11.297556px;}
.ws49{word-spacing:11.405261px;}
.wsae{word-spacing:11.453741px;}
.wsad{word-spacing:11.459059px;}
.ws10a{word-spacing:11.835648px;}
.ws21{word-spacing:11.905030px;}
.ws12c{word-spacing:13.180608px;}
.ws12f{word-spacing:13.392374px;}
.ws107{word-spacing:13.395802px;}
.ws120{word-spacing:13.449600px;}
.ws111{word-spacing:13.503398px;}
.ws131{word-spacing:13.557197px;}
.wsfe{word-spacing:14.095181px;}
.wsff{word-spacing:14.148979px;}
.ws11d{word-spacing:14.417971px;}
.ws79{word-spacing:14.704798px;}
.ws39{word-spacing:14.884124px;}
.ws11f{word-spacing:16.623706px;}
.ws12a{word-spacing:16.892698px;}
.ws76{word-spacing:18.042760px;}
.ws1{word-spacing:22.179541px;}
.ws126{word-spacing:22.756723px;}
.ws9a{word-spacing:23.930534px;}
.ws75{word-spacing:27.838366px;}
.wsd4{word-spacing:27.939000px;}
.ws4e{word-spacing:248.724259px;}
.wsbf{word-spacing:378.738202px;}
.ws77{word-spacing:508.842760px;}
.wsbe{word-spacing:511.738912px;}
.wsc0{word-spacing:536.722883px;}
.ws61{word-spacing:764.709251px;}
.wsb8{word-spacing:800.950474px;}
.ws9b{word-spacing:810.691572px;}
.wscf{word-spacing:827.956123px;}
.wsba{word-spacing:846.196474px;}
.ws82{word-spacing:894.302752px;}
.wsd1{word-spacing:947.861689px;}
._40{margin-left:-13.465805px;}
._1b{margin-left:-7.699102px;}
._b{margin-left:-6.694867px;}
._6{margin-left:-5.523287px;}
._5{margin-left:-4.426069px;}
._2{margin-left:-3.096367px;}
._1{margin-left:-1.506341px;}
._19{width:1.272514px;}
._37{width:2.289764px;}
._3{width:3.429364px;}
._17{width:4.483170px;}
._36{width:9.646484px;}
._0{width:10.879128px;}
._41{width:12.427430px;}
._12{width:13.927715px;}
._11{width:15.266710px;}
._18{width:16.276226px;}
._13{width:17.693578px;}
._a{width:18.709763px;}
._35{width:19.965050px;}
._8{width:20.981236px;}
._d{width:22.595177px;}
._c{width:24.591673px;}
._1e{width:26.630208px;}
._10{width:27.747829px;}
._9{width:29.612854px;}
._14{width:32.792881px;}
._1c{width:34.801350px;}
._43{width:36.881545px;}
._15{width:38.447662px;}
._44{width:40.300705px;}
._1a{width:41.436442px;}
._7{width:43.169934px;}
._16{width:51.371816px;}
._4{width:53.979716px;}
._42{width:59.506225px;}
._45{width:61.868160px;}
._1d{width:167.227838px;}
._2d{width:172.404781px;}
._30{width:220.630693px;}
._2a{width:251.601009px;}
._2e{width:295.482742px;}
._28{width:301.241098px;}
._2b{width:327.689839px;}
._32{width:335.950823px;}
._33{width:360.267820px;}
._21{width:368.468749px;}
._34{width:377.004709px;}
._2f{width:381.069450px;}
._31{width:418.704788px;}
._26{width:422.656452px;}
._25{width:432.476466px;}
._27{width:454.552921px;}
._2c{width:496.795012px;}
._29{width:500.261996px;}
._24{width:514.679867px;}
._22{width:528.117426px;}
._23{width:531.536586px;}
._20{width:573.307780px;}
._3b{width:602.458914px;}
._3c{width:649.194542px;}
._3f{width:722.328350px;}
._38{width:824.855455px;}
._3a{width:853.009763px;}
._3e{width:902.790887px;}
._39{width:936.324998px;}
._3d{width:939.851759px;}
._e{width:1891.283929px;}
._1f{width:2514.959929px;}
._f{width:2538.869929px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:35.590799px;}
.fs5{font-size:35.865600px;}
.fsc{font-size:36.481500px;}
.fs0{font-size:41.842800px;}
.fs11{font-size:42.479399px;}
.fs4{font-size:45.429600px;}
.fse{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs16{font-size:48.600000px;}
.fsf{font-size:52.812000px;}
.fs9{font-size:53.798400px;}
.fs15{font-size:54.000000px;}
.fs13{font-size:55.616398px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fsb{font-size:66.132000px;}
.fs14{font-size:66.381000px;}
.fs7{font-size:71.731200px;}
.fs3{font-size:81.772800px;}
.fs12{font-size:82.527597px;}
.fsd{font-size:83.686200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y165{bottom:0.089996px;}
.y73{bottom:1.169952px;}
.y211{bottom:3.644996px;}
.y20e{bottom:3.645016px;}
.y214{bottom:3.725999px;}
.y20b{bottom:3.726013px;}
.y200{bottom:4.049995px;}
.y1fd{bottom:4.050018px;}
.y1fa{bottom:4.139923px;}
.y177{bottom:4.369365px;}
.y75{bottom:4.500000px;}
.y157{bottom:4.982391px;}
.y85{bottom:5.089260px;}
.y15e{bottom:6.130463px;}
.y1c1{bottom:7.079272px;}
.y156{bottom:29.092163px;}
.y15d{bottom:30.527435px;}
.y40{bottom:45.921000px;}
.y1bf{bottom:46.549212px;}
.y87{bottom:62.782839px;}
.y154{bottom:71.571259px;}
.y153{bottom:74.441528px;}
.y1bc{bottom:74.805910px;}
.y1c0{bottom:76.151552px;}
.y150{bottom:83.626373px;}
.y14f{bottom:86.496460px;}
.y256{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y15b{bottom:102.282623px;}
.y2a8{bottom:102.538500px;}
.y283{bottom:103.264500px;}
.y155{bottom:104.004730px;}
.y272{bottom:105.057000px;}
.y15a{bottom:105.152893px;}
.y15c{bottom:105.152985px;}
.y1be{bottom:105.753893px;}
.y1f5{bottom:108.051000px;}
.ydd{bottom:110.305500px;}
.y207{bottom:111.055500px;}
.y245{bottom:111.060000px;}
.y1b0{bottom:111.153000px;}
.y71{bottom:116.839500px;}
.y14{bottom:118.147500px;}
.y255{bottom:120.610500px;}
.y282{bottom:122.496000px;}
.y2a7{bottom:123.430500px;}
.y28f{bottom:123.808500px;}
.y3f{bottom:124.584000px;}
.y271{bottom:125.947500px;}
.y1f4{bottom:128.941500px;}
.y137{bottom:130.525500px;}
.y159{bottom:130.984772px;}
.y218{bottom:131.187000px;}
.ydb{bottom:131.196000px;}
.y152{bottom:131.558807px;}
.y206{bottom:131.946000px;}
.y244{bottom:131.952000px;}
.y1af{bottom:132.045000px;}
.y158{bottom:133.855042px;}
.y151{bottom:134.429077px;}
.y13{bottom:136.035000px;}
.y1bb{bottom:136.701922px;}
.y70{bottom:137.731500px;}
.y1bd{bottom:138.047381px;}
.y8b{bottom:141.099000px;}
.ydc{bottom:141.411000px;}
.y254{bottom:141.502500px;}
.yee{bottom:141.586500px;}
.y281{bottom:141.729000px;}
.y2fd{bottom:144.262500px;}
.y2a6{bottom:144.321000px;}
.y28e{bottom:144.700500px;}
.y188{bottom:144.862500px;}
.y3e{bottom:145.476000px;}
.y270{bottom:146.839500px;}
.y2cc{bottom:148.045500px;}
.y1f3{bottom:149.833500px;}
.y217{bottom:150.420000px;}
.y136{bottom:151.417500px;}
.yda{bottom:152.088000px;}
.y205{bottom:152.838000px;}
.y243{bottom:152.844000px;}
.y1ae{bottom:152.937000px;}
.y12{bottom:153.922500px;}
.y187{bottom:155.115000px;}
.y6f{bottom:158.623500px;}
.y8a{bottom:161.991000px;}
.yed{bottom:162.478500px;}
.y2fc{bottom:163.413000px;}
.y2a5{bottom:165.213000px;}
.y28d{bottom:165.591000px;}
.y3d{bottom:166.366500px;}
.y2cb{bottom:167.196000px;}
.y26f{bottom:167.731500px;}
.y1cb{bottom:168.555000px;}
.y280{bottom:168.572980px;}
.y14b{bottom:169.582500px;}
.y216{bottom:169.653000px;}
.y1f2{bottom:170.725500px;}
.y11{bottom:171.811500px;}
.y135{bottom:172.308000px;}
.ya9{bottom:172.381500px;}
.yd9{bottom:172.980000px;}
.y242{bottom:173.734500px;}
.y1ad{bottom:173.827500px;}
.y16e{bottom:175.282500px;}
.y253{bottom:177.030000px;}
.y300{bottom:177.834000px;}
.y6e{bottom:179.514000px;}
.y234{bottom:181.039500px;}
.y2fb{bottom:182.563500px;}
.y89{bottom:182.883000px;}
.y2ca{bottom:186.346500px;}
.y28c{bottom:186.483000px;}
.y3c{bottom:187.258500px;}
.y204{bottom:188.466000px;}
.y26e{bottom:188.622000px;}
.y215{bottom:188.886000px;}
.y1ca{bottom:189.445500px;}
.y10{bottom:189.699000px;}
.y14a{bottom:190.474500px;}
.y2a4{bottom:190.587000px;}
.y1f1{bottom:191.616000px;}
.y134{bottom:193.200000px;}
.ya8{bottom:193.273500px;}
.yec{bottom:193.816500px;}
.yd8{bottom:193.870500px;}
.y241{bottom:194.626500px;}
.y1ac{bottom:194.719500px;}
.y16d{bottom:196.173000px;}
.y252{bottom:196.261500px;}
.y2ff{bottom:196.984500px;}
.y186{bottom:200.143500px;}
.y6d{bottom:200.406000px;}
.y2fa{bottom:201.714000px;}
.y233{bottom:201.930000px;}
.y2c9{bottom:205.497000px;}
.y28b{bottom:207.375000px;}
.yf{bottom:207.586500px;}
.y203{bottom:207.699000px;}
.y3b{bottom:208.150500px;}
.y26d{bottom:209.514000px;}
.y1c9{bottom:210.337500px;}
.y105{bottom:211.173000px;}
.y208{bottom:211.315500px;}
.y149{bottom:211.365000px;}
.y1f0{bottom:212.508000px;}
.y133{bottom:214.092000px;}
.ya7{bottom:214.165500px;}
.yeb{bottom:214.707000px;}
.yd7{bottom:214.762500px;}
.y240{bottom:215.518500px;}
.y1ab{bottom:215.611500px;}
.y213{bottom:215.877150px;}
.y2fe{bottom:216.135000px;}
.y16c{bottom:217.065000px;}
.y88{bottom:218.511000px;}
.y2f9{bottom:220.864500px;}
.y6c{bottom:221.298000px;}
.y251{bottom:221.856000px;}
.y232{bottom:222.822000px;}
.y2c8{bottom:224.649000px;}
.ye{bottom:225.475500px;}
.y202{bottom:226.932000px;}
.y28a{bottom:228.267000px;}
.y3a{bottom:229.041000px;}
.y2a3{bottom:229.411500px;}
.y26c{bottom:230.406000px;}
.y104{bottom:232.063500px;}
.y212{bottom:232.320152px;}
.y1ef{bottom:233.400000px;}
.y185{bottom:233.916000px;}
.y132{bottom:234.982500px;}
.yea{bottom:235.599000px;}
.yd6{bottom:235.654500px;}
.y1c8{bottom:235.713000px;}
.y23f{bottom:236.410500px;}
.y1aa{bottom:236.502000px;}
.y2f8{bottom:240.015000px;}
.y84{bottom:240.939840px;}
.y6b{bottom:242.190000px;}
.y231{bottom:243.714000px;}
.y2c7{bottom:243.799500px;}
.y184{bottom:244.168500px;}
.ya6{bottom:245.502000px;}
.y201{bottom:246.165000px;}
.y86{bottom:247.248448px;}
.y148{bottom:249.666000px;}
.y39{bottom:249.933000px;}
.y2a2{bottom:250.303500px;}
.y16b{bottom:250.906500px;}
.y26b{bottom:251.298000px;}
.yd{bottom:252.330000px;}
.y103{bottom:252.955500px;}
.y1ee{bottom:254.290500px;}
.y131{bottom:255.874500px;}
.y23e{bottom:257.301000px;}
.y1a9{bottom:257.394000px;}
.y2f7{bottom:259.165500px;}
.y16a{bottom:261.582000px;}
.y2c6{bottom:262.950000px;}
.y6a{bottom:263.080500px;}
.y289{bottom:263.893500px;}
.y230{bottom:264.606000px;}
.ya5{bottom:266.394000px;}
.y1f6{bottom:268.594500px;}
.yc{bottom:270.217500px;}
.y38{bottom:270.825000px;}
.y1c7{bottom:271.054500px;}
.y2a1{bottom:271.195500px;}
.y26a{bottom:272.188500px;}
.y1ff{bottom:272.566502px;}
.ye9{bottom:273.900000px;}
.yd5{bottom:273.955500px;}
.y1ed{bottom:275.182500px;}
.y130{bottom:276.766500px;}
.y23d{bottom:278.193000px;}
.y2f6{bottom:278.316000px;}
.y2c5{bottom:282.100500px;}
.y288{bottom:283.126500px;}
.y22f{bottom:285.496500px;}
.ya4{bottom:287.286000px;}
.y147{bottom:287.968500px;}
.yb{bottom:288.105000px;}
.y69{bottom:288.456000px;}
.y183{bottom:289.683000px;}
.y1fe{bottom:290.746495px;}
.y102{bottom:291.256500px;}
.y37{bottom:291.715500px;}
.y1c6{bottom:291.946500px;}
.y2a0{bottom:292.086000px;}
.y269{bottom:293.080500px;}
.y1ec{bottom:296.074500px;}
.y2f5{bottom:297.466500px;}
.y12f{bottom:297.657000px;}
.y2c4{bottom:301.251000px;}
.y1a8{bottom:305.367000px;}
.y169{bottom:305.512500px;}
.ya{bottom:305.994000px;}
.y22e{bottom:306.388500px;}
.ya3{bottom:308.176500px;}
.y146{bottom:308.859000px;}
.y287{bottom:310.517993px;}
.ye8{bottom:312.201000px;}
.yd4{bottom:312.256500px;}
.y36{bottom:312.607500px;}
.y1c5{bottom:312.837000px;}
.y29f{bottom:312.978000px;}
.y23c{bottom:313.821000px;}
.y268{bottom:313.972500px;}
.y2f4{bottom:316.617000px;}
.y1a7{bottom:317.488500px;}
.y12e{bottom:318.549000px;}
.y2c3{bottom:320.401500px;}
.y182{bottom:321.019500px;}
.y68{bottom:323.797500px;}
.y9{bottom:323.881500px;}
.y168{bottom:326.404500px;}
.y22d{bottom:327.280500px;}
.ya2{bottom:329.068500px;}
.y101{bottom:329.557500px;}
.y145{bottom:329.751000px;}
.y23b{bottom:333.054000px;}
.ye7{bottom:333.093000px;}
.y35{bottom:333.499500px;}
.y1c4{bottom:333.729000px;}
.y29e{bottom:333.870000px;}
.y267{bottom:334.863000px;}
.y2f3{bottom:335.767500px;}
.y12d{bottom:339.441000px;}
.y2c2{bottom:339.552000px;}
.y8{bottom:341.769000px;}
.y1eb{bottom:344.046000px;}
.y67{bottom:344.689500px;}
.y22c{bottom:348.171000px;}
.y27f{bottom:348.573026px;}
.yd3{bottom:349.668000px;}
.y100{bottom:350.449500px;}
.y144{bottom:350.643000px;}
.y34{bottom:354.390000px;}
.yd0{bottom:354.484500px;}
.y29d{bottom:354.760500px;}
.y2f2{bottom:354.918000px;}
.y1a6{bottom:355.636500px;}
.y266{bottom:355.755000px;}
.y2c1{bottom:358.702500px;}
.y181{bottom:359.322000px;}
.y7{bottom:359.658000px;}
.y12c{bottom:360.331500px;}
.ya1{bottom:360.406500px;}
.y23a{bottom:360.504009px;}
.yd2{bottom:361.627500px;}
.y167{bottom:362.032500px;}
.ycf{bottom:364.735500px;}
.y66{bottom:365.581500px;}
.y1a5{bottom:367.759500px;}
.ye6{bottom:368.721000px;}
.y22b{bottom:369.063000px;}
.y1ea{bottom:369.181500px;}
.y1c3{bottom:369.357000px;}
.y143{bottom:371.533500px;}
.y2f1{bottom:374.070000px;}
.yce{bottom:374.950500px;}
.y33{bottom:375.282000px;}
.y29c{bottom:375.652500px;}
.y265{bottom:376.647000px;}
.y6{bottom:377.545500px;}
.y2c0{bottom:377.853000px;}
.yd1{bottom:380.875500px;}
.y12b{bottom:381.223500px;}
.y166{bottom:381.265500px;}
.ya0{bottom:381.297000px;}
.yff{bottom:386.077500px;}
.y65{bottom:386.472000px;}
.ye5{bottom:387.954000px;}
.y1c2{bottom:388.590000px;}
.y22a{bottom:389.955000px;}
.y142{bottom:392.425500px;}
.y2f0{bottom:393.220500px;}
.y1e9{bottom:394.317000px;}
.y32{bottom:396.174000px;}
.y29b{bottom:396.544500px;}
.y2bf{bottom:397.003500px;}
.y264{bottom:397.537500px;}
.y180{bottom:397.623000px;}
.y5{bottom:401.410500px;}
.y250{bottom:401.885996px;}
.y12a{bottom:402.115500px;}
.y9e{bottom:402.189000px;}
.y1a4{bottom:406.743000px;}
.ye4{bottom:407.187000px;}
.y64{bottom:407.364000px;}
.y229{bottom:410.845500px;}
.ycd{bottom:410.859000px;}
.y1ba{bottom:411.019500px;}
.y2ef{bottom:412.371000px;}
.y9f{bottom:412.402500px;}
.yfe{bottom:412.753492px;}
.y141{bottom:413.317500px;}
.y1e8{bottom:414.316500px;}
.y2be{bottom:416.154000px;}
.y31{bottom:417.064500px;}
.y29a{bottom:417.436500px;}
.y263{bottom:418.429500px;}
.y17f{bottom:418.513500px;}
.y4{bottom:419.299500px;}
.y1e7{bottom:420.325500px;}
.y129{bottom:423.007500px;}
.y9c{bottom:423.081000px;}
.ye3{bottom:426.418500px;}
.y2ee{bottom:431.521500px;}
.y228{bottom:431.737500px;}
.y1a3{bottom:432.715500px;}
.y63{bottom:432.739500px;}
.y9d{bottom:433.294500px;}
.y140{bottom:434.208000px;}
.y2bd{bottom:435.304500px;}
.y3{bottom:437.187000px;}
.y30{bottom:437.956500px;}
.y299{bottom:438.327000px;}
.yc9{bottom:438.889500px;}
.y262{bottom:439.321500px;}
.y17e{bottom:439.405500px;}
.y1e6{bottom:440.745000px;}
.ycc{bottom:443.238000px;}
.y128{bottom:443.898000px;}
.y9b{bottom:443.971500px;}
.ye2{bottom:445.651500px;}
.y1e5{bottom:446.754000px;}
.yc8{bottom:447.330000px;}
.y2ed{bottom:450.672000px;}
.y227{bottom:452.629500px;}
.ycb{bottom:453.451500px;}
.y2bc{bottom:454.455000px;}
.y210{bottom:455.070152px;}
.y2{bottom:455.074500px;}
.y13f{bottom:455.100000px;}
.y1a2{bottom:457.851000px;}
.y2f{bottom:458.848500px;}
.y298{bottom:459.219000px;}
.y17d{bottom:460.297500px;}
.y261{bottom:464.695500px;}
.yca{bottom:464.748000px;}
.y127{bottom:464.790000px;}
.ye1{bottom:464.884500px;}
.yc7{bottom:464.961000px;}
.y19e{bottom:467.341500px;}
.y2ec{bottom:469.822500px;}
.y20f{bottom:471.432145px;}
.y62{bottom:471.562500px;}
.y1e4{bottom:472.521000px;}
.yc6{bottom:473.311500px;}
.y226{bottom:473.520000px;}
.y2bb{bottom:473.605500px;}
.y13e{bottom:475.992000px;}
.y1{bottom:478.941000px;}
.y9a{bottom:479.599500px;}
.y297{bottom:480.111000px;}
.y17c{bottom:481.188000px;}
.y1a1{bottom:482.986500px;}
.y2e{bottom:484.222500px;}
.yc5{bottom:485.310000px;}
.y126{bottom:485.682000px;}
.y2eb{bottom:488.973000px;}
.y286{bottom:490.517993px;}
.y61{bottom:492.454500px;}
.y2ba{bottom:492.756000px;}
.y225{bottom:494.412000px;}
.y83{bottom:494.680500px;}
.y13d{bottom:496.882500px;}
.y1e3{bottom:497.655000px;}
.y99{bottom:498.832500px;}
.y296{bottom:501.001500px;}
.y17b{bottom:502.080000px;}
.y260{bottom:503.520000px;}
.yc4{bottom:506.202000px;}
.y125{bottom:506.572500px;}
.y20c{bottom:507.490632px;}
.y1a0{bottom:508.120500px;}
.y2ea{bottom:508.123500px;}
.y2b9{bottom:511.906500px;}
.y60{bottom:513.346500px;}
.y224{bottom:515.304000px;}
.y209{bottom:515.671670px;}
.y13c{bottom:517.774500px;}
.y98{bottom:518.065500px;}
.y295{bottom:521.893500px;}
.y1e2{bottom:522.790500px;}
.y17a{bottom:522.972000px;}
.y25f{bottom:524.412000px;}
.yc3{bottom:527.094000px;}
.y2e9{bottom:527.274000px;}
.y124{bottom:527.464500px;}
.y2b8{bottom:531.057000px;}
.y82{bottom:532.981500px;}
.y19f{bottom:533.256000px;}
.y5f{bottom:534.237000px;}
.y223{bottom:536.194500px;}
.y1fc{bottom:538.246495px;}
.y239{bottom:540.504009px;}
.y13b{bottom:543.150000px;}
.y25e{bottom:545.302500px;}
.y2e8{bottom:546.424500px;}
.y294{bottom:547.267500px;}
.y1e1{bottom:547.926000px;}
.y2b7{bottom:550.207500px;}
.y81{bottom:553.873500px;}
.y27e{bottom:554.139000px;}
.y5e{bottom:555.129000px;}
.y1fb{bottom:556.426487px;}
.y222{bottom:557.086500px;}
.y123{bottom:557.269500px;}
.y19d{bottom:558.391500px;}
.y179{bottom:558.600000px;}
.y2d{bottom:563.434500px;}
.yc2{bottom:565.395000px;}
.y2e7{bottom:565.575000px;}
.y25d{bottom:566.194500px;}
.y122{bottom:567.522000px;}
.y2b6{bottom:569.358000px;}
.y164{bottom:570.257982px;}
.y80{bottom:574.764000px;}
.y27d{bottom:575.031000px;}
.yfd{bottom:575.323499px;}
.y5d{bottom:576.021000px;}
.y178{bottom:577.831500px;}
.y221{bottom:577.978500px;}
.y1e0{bottom:580.591500px;}
.y293{bottom:582.895500px;}
.y19c{bottom:583.527000px;}
.y19a{bottom:583.839000px;}
.y2c{bottom:584.326500px;}
.y2e6{bottom:584.725500px;}
.y25c{bottom:587.086500px;}
.y13a{bottom:587.743500px;}
.y2b5{bottom:588.508500px;}
.y1b9{bottom:592.081500px;}
.y7f{bottom:595.656000px;}
.y27c{bottom:595.923000px;}
.y5c{bottom:596.913000px;}
.y220{bottom:598.870500px;}
.y176{bottom:600.261000px;}
.y292{bottom:602.128500px;}
.yc1{bottom:603.696000px;}
.y2e5{bottom:603.876000px;}
.y24f{bottom:604.882500px;}
.y139{bottom:606.976500px;}
.y25b{bottom:607.978500px;}
.y19b{bottom:608.661000px;}
.y121{bottom:611.187000px;}
.y2b4{bottom:612.142500px;}
.y1b8{bottom:612.972000px;}
.y7e{bottom:616.548000px;}
.y27b{bottom:616.815000px;}
.y1df{bottom:617.695500px;}
.y5b{bottom:617.803500px;}
.y21f{bottom:619.761000px;}
.y2e4{bottom:623.026500px;}
.y2b{bottom:623.151000px;}
.y24e{bottom:625.774500px;}
.y138{bottom:626.209500px;}
.y291{bottom:630.406493px;}
.ybe{bottom:631.273500px;}
.y120{bottom:632.079000px;}
.yc0{bottom:632.415000px;}
.y199{bottom:633.796500px;}
.y1b7{bottom:633.864000px;}
.y7d{bottom:637.438500px;}
.y27a{bottom:637.705500px;}
.y1de{bottom:638.587500px;}
.y5a{bottom:638.695500px;}
.y21e{bottom:640.653000px;}
.ybf{bottom:641.487000px;}
.y2e3{bottom:642.177000px;}
.ybd{bottom:642.666000px;}
.y25a{bottom:643.605000px;}
.y2a{bottom:644.041500px;}
.y24d{bottom:646.665000px;}
.y2b3{bottom:650.967000px;}
.y11f{bottom:652.971000px;}
.y1b6{bottom:654.756000px;}
.y7c{bottom:658.330500px;}
.y279{bottom:658.597500px;}
.y198{bottom:658.932000px;}
.y1dd{bottom:659.479500px;}
.y59{bottom:659.587500px;}
.y2e2{bottom:661.327500px;}
.y21d{bottom:661.545000px;}
.y259{bottom:662.838000px;}
.y29{bottom:664.933500px;}
.y24c{bottom:667.557000px;}
.ybc{bottom:669.372000px;}
.y195{bottom:673.113000px;}
.y1b5{bottom:675.646500px;}
.y1f7{bottom:677.352022px;}
.y7b{bottom:679.222500px;}
.y2b2{bottom:679.432500px;}
.y278{bottom:679.489500px;}
.y1dc{bottom:680.370000px;}
.y58{bottom:680.478000px;}
.y21c{bottom:682.435500px;}
.y197{bottom:684.132000px;}
.y28{bottom:685.825500px;}
.y11e{bottom:687.304500px;}
.y24b{bottom:688.449000px;}
.y258{bottom:689.232009px;}
.ybb{bottom:690.262500px;}
.y11d{bottom:692.460000px;}
.y20d{bottom:694.182145px;}
.y1b4{bottom:696.538500px;}
.y285{bottom:697.575000px;}
.y2b1{bottom:698.931000px;}
.y2e1{bottom:699.628500px;}
.y7a{bottom:700.114500px;}
.y277{bottom:700.380000px;}
.y1db{bottom:701.262000px;}
.y57{bottom:701.370000px;}
.y21b{bottom:703.327500px;}
.y27{bottom:706.716000px;}
.y11a{bottom:707.994000px;}
.y196{bottom:709.266000px;}
.y24a{bottom:709.341000px;}
.y20a{bottom:710.544138px;}
.y11c{bottom:713.929500px;}
.y284{bottom:716.808000px;}
.y1b3{bottom:717.430500px;}
.y2e0{bottom:718.779000px;}
.y79{bottom:721.005000px;}
.y276{bottom:721.272000px;}
.y56{bottom:722.262000px;}
.yb9{bottom:722.464500px;}
.yba{bottom:723.606000px;}
.y21a{bottom:724.219500px;}
.y11b{bottom:724.974000px;}
.y2b0{bottom:727.396500px;}
.y26{bottom:727.608000px;}
.yb8{bottom:732.678000px;}
.yb7{bottom:733.858500px;}
.y1d9{bottom:733.951500px;}
.y194{bottom:734.401500px;}
.y2df{bottom:737.929500px;}
.y1b2{bottom:742.804500px;}
.y55{bottom:743.152500px;}
.y1da{bottom:744.202500px;}
.y1d8{bottom:744.204000px;}
.y249{bottom:744.867000px;}
.y78{bottom:746.380500px;}
.y2af{bottom:746.895000px;}
.y238{bottom:747.484500px;}
.y25{bottom:748.500000px;}
.y219{bottom:749.593500px;}
.y119{bottom:755.944500px;}
.y275{bottom:756.900000px;}
.y2de{bottom:757.081500px;}
.y163{bottom:759.496500px;}
.y193{bottom:759.537000px;}
.yfc{bottom:762.039000px;}
.y54{bottom:764.044500px;}
.y248{bottom:764.100000px;}
.y2ae{bottom:766.393500px;}
.y237{bottom:766.717500px;}
.y24{bottom:769.392000px;}
.y2dd{bottom:776.232000px;}
.y118{bottom:776.836500px;}
.yb6{bottom:777.972000px;}
.y1b1{bottom:778.432500px;}
.y77{bottom:778.525500px;}
.y162{bottom:780.387000px;}
.yfb{bottom:782.931000px;}
.y1d7{bottom:784.089000px;}
.y192{bottom:784.671000px;}
.y274{bottom:784.687456px;}
.y53{bottom:784.936500px;}
.y18f{bottom:785.338500px;}
.y2ad{bottom:785.892000px;}
.y247{bottom:791.335480px;}
.y236{bottom:792.977993px;}
.y2dc{bottom:795.382500px;}
.y76{bottom:797.758500px;}
.yb5{bottom:798.864000px;}
.y23{bottom:799.249500px;}
.y161{bottom:801.279000px;}
.yfa{bottom:803.821500px;}
.y1f9{bottom:803.926533px;}
.y52{bottom:805.827000px;}
.y117{bottom:806.694000px;}
.y191{bottom:809.806500px;}
.y290{bottom:810.406493px;}
.y2ac{bottom:814.357500px;}
.y2db{bottom:814.533000px;}
.y116{bottom:816.946500px;}
.y160{bottom:822.171000px;}
.y1f8{bottom:822.196522px;}
.y1d6{bottom:822.390000px;}
.y74{bottom:823.762515px;}
.yf9{bottom:824.713500px;}
.y51{bottom:826.719000px;}
.y2da{bottom:833.683500px;}
.y2ab{bottom:833.856000px;}
.y190{bottom:834.942000px;}
.yb4{bottom:837.165000px;}
.y22{bottom:839.269500px;}
.y72{bottom:843.922518px;}
.y50{bottom:847.611000px;}
.yf8{bottom:851.523000px;}
.y2d9{bottom:852.834000px;}
.y2aa{bottom:853.354500px;}
.y21{bottom:855.408000px;}
.y15f{bottom:857.799000px;}
.y18e{bottom:860.077500px;}
.y115{bottom:860.515500px;}
.y1d5{bottom:860.691000px;}
.yf7{bottom:861.774000px;}
.y4f{bottom:868.503000px;}
.y257{bottom:869.261993px;}
.y20{bottom:871.548000px;}
.y2d8{bottom:871.984500px;}
.y2a9{bottom:872.854500px;}
.yb3{bottom:875.466000px;}
.y1f{bottom:875.887500px;}
.y14e{bottom:880.920002px;}
.y114{bottom:881.406000px;}
.y1e{bottom:887.688000px;}
.y4e{bottom:889.393500px;}
.y2d7{bottom:891.135000px;}
.y18d{bottom:892.743000px;}
.yb2{bottom:896.358000px;}
.y1d4{bottom:898.992000px;}
.y113{bottom:902.298000px;}
.y1d{bottom:903.828000px;}
.y4d{bottom:910.285500px;}
.yb1{bottom:917.248500px;}
.y97{bottom:922.282500px;}
.y1c{bottom:924.306000px;}
.y18c{bottom:925.954500px;}
.y2d6{bottom:929.436000px;}
.y112{bottom:930.246000px;}
.y4c{bottom:931.177500px;}
.y1b{bottom:936.106500px;}
.y1d3{bottom:937.293000px;}
.yb0{bottom:938.140500px;}
.y111{bottom:940.498500px;}
.yf6{bottom:941.622000px;}
.y96{bottom:943.174500px;}
.y18b{bottom:946.845000px;}
.y2d5{bottom:948.586500px;}
.y4b{bottom:952.068000px;}
.y175{bottom:954.577500px;}
.y1a{bottom:956.586000px;}
.yaf{bottom:959.032500px;}
.yf5{bottom:962.514000px;}
.y110{bottom:963.960000px;}
.y95{bottom:964.065000px;}
.y2d4{bottom:967.737000px;}
.y1d2{bottom:969.495000px;}
.y273{bottom:969.817522px;}
.y246{bottom:971.365509px;}
.y4a{bottom:972.960000px;}
.y235{bottom:972.977993px;}
.y174{bottom:977.470500px;}
.y1d1{bottom:979.746000px;}
.yae{bottom:979.924500px;}
.y18a{bottom:980.619000px;}
.yf4{bottom:983.406000px;}
.y10f{bottom:984.852000px;}
.y94{bottom:984.957000px;}
.y2d3{bottom:986.887500px;}
.y173{bottom:987.723000px;}
.y189{bottom:990.870000px;}
.y49{bottom:993.852000px;}
.yad{bottom:1000.815000px;}
.y19{bottom:1001.262000px;}
.yf3{bottom:1004.298000px;}
.y93{bottom:1005.849000px;}
.y2d2{bottom:1006.038000px;}
.y172{bottom:1011.498000px;}
.y48{bottom:1014.742500px;}
.y1d0{bottom:1019.631000px;}
.y10d{bottom:1020.834000px;}
.yac{bottom:1021.707000px;}
.yf2{bottom:1025.188500px;}
.y92{bottom:1026.741000px;}
.y171{bottom:1032.390000px;}
.y47{bottom:1035.634500px;}
.y18{bottom:1040.086500px;}
.y10c{bottom:1041.726000px;}
.yab{bottom:1042.599000px;}
.y2d1{bottom:1044.339000px;}
.yf1{bottom:1046.080500px;}
.y91{bottom:1047.631500px;}
.y10e{bottom:1049.338500px;}
.y1cd{bottom:1050.309000px;}
.y1cf{bottom:1051.833000px;}
.y46{bottom:1056.526500px;}
.y10b{bottom:1058.026500px;}
.y1cc{bottom:1062.084000px;}
.y2d0{bottom:1063.489500px;}
.y170{bottom:1065.283500px;}
.yef{bottom:1066.972500px;}
.y14d{bottom:1068.489000px;}
.y10a{bottom:1070.116500px;}
.y108{bottom:1071.267000px;}
.y17{bottom:1071.424500px;}
.y90{bottom:1071.985500px;}
.y16f{bottom:1075.534500px;}
.yf0{bottom:1077.186000px;}
.y45{bottom:1077.417000px;}
.y1ce{bottom:1077.618000px;}
.y8d{bottom:1077.837000px;}
.y14c{bottom:1078.740000px;}
.yaa{bottom:1080.900000px;}
.y2cf{bottom:1082.640000px;}
.y109{bottom:1084.717500px;}
.y8f{bottom:1084.980000px;}
.y8c{bottom:1088.088000px;}
.y44{bottom:1098.309000px;}
.y2ce{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.y8e{bottom:1104.228000px;}
.y107{bottom:1114.701000px;}
.ye0{bottom:1118.109000px;}
.y43{bottom:1119.201000px;}
.y2cd{bottom:1120.941000px;}
.y106{bottom:1135.593000px;}
.yde{bottom:1139.001000px;}
.y42{bottom:1140.091500px;}
.ydf{bottom:1149.214500px;}
.y41{bottom:1200.196500px;}
.h5b{height:16.362000px;}
.h5e{height:16.444350px;}
.h56{height:18.180000px;}
.h54{height:18.271500px;}
.h11{height:20.161500px;}
.h3d{height:24.711971px;}
.h57{height:25.070054px;}
.h1a{height:25.330417px;}
.h8{height:26.110157px;}
.h2a{height:26.289485px;}
.h28{height:26.649485px;}
.h3e{height:29.494973px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h1e{height:33.072749px;}
.h35{height:33.299897px;}
.h9{height:34.813397px;}
.hd{height:35.052500px;}
.h2f{height:35.298799px;}
.h59{height:35.334668px;}
.h20{height:35.503200px;}
.h5c{height:35.785547px;}
.h3c{height:36.669270px;}
.h31{height:38.250662px;}
.h13{height:39.165235px;}
.h52{height:39.260742px;}
.h14{height:39.434227px;}
.h55{height:39.761719px;}
.h5f{height:41.801357px;}
.h22{height:42.500452px;}
.ha{height:43.038432px;}
.hb{height:43.516637px;}
.h10{height:43.710293px;}
.h4{height:43.815515px;}
.h3a{height:43.821515px;}
.h12{height:44.268047px;}
.h50{height:45.910950px;}
.h15{height:46.084950px;}
.h4a{height:46.090714px;}
.h1b{height:46.090950px;}
.he{height:46.445641px;}
.h16{height:46.714950px;}
.h18{height:48.081322px;}
.h2b{height:49.163897px;}
.h29{height:51.367200px;}
.hc{height:51.646464px;}
.h4f{height:54.096749px;}
.h4e{height:54.102749px;}
.h7{height:54.411312px;}
.h49{height:57.301877px;}
.h1f{height:65.024177px;}
.h36{height:68.769024px;}
.h4d{height:68.775024px;}
.h21{height:73.926749px;}
.h23{height:73.932749px;}
.h30{height:76.357200px;}
.h2e{height:76.363200px;}
.h5{height:77.469696px;}
.h38{height:83.980637px;}
.h1c{height:83.986637px;}
.h24{height:84.279515px;}
.h26{height:84.285515px;}
.h27{height:84.520637px;}
.h25{height:84.526637px;}
.h39{height:84.825515px;}
.h4c{height:86.077200px;}
.h40{height:86.218637px;}
.h32{height:86.554950px;}
.h43{height:87.178950px;}
.h44{height:87.184950px;}
.h1d{height:87.718950px;}
.h42{height:89.554950px;}
.h4b{height:92.689200px;}
.h46{height:95.374950px;}
.h47{height:95.566637px;}
.h6{height:97.936416px;}
.h2d{height:106.779515px;}
.hf{height:124.379997px;}
.h37{height:126.274637px;}
.h45{height:127.558950px;}
.h2c{height:146.943485px;}
.h3b{height:147.757498px;}
.h48{height:158.661000px;}
.h34{height:162.569996px;}
.h33{height:162.629997px;}
.h3f{height:162.930004px;}
.h61{height:180.000000px;}
.h62{height:180.001499px;}
.h60{height:180.029995px;}
.h63{height:184.500000px;}
.h64{height:185.129997px;}
.h19{height:213.914257px;}
.h5d{height:222.750000px;}
.h17{height:222.910710px;}
.h5a{height:238.781262px;}
.h53{height:247.500000px;}
.h41{height:330.675000px;}
.h58{height:738.009900px;}
.h51{height:806.076000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.wf{width:263.595600px;}
.w10{width:265.088693px;}
.w2{width:289.741500px;}
.w3{width:291.400493px;}
.wc{width:291.900000px;}
.wd{width:294.155993px;}
.w5{width:327.348459px;}
.w4{width:337.822650px;}
.w8{width:375.006000px;}
.w6{width:378.000000px;}
.w9{width:396.654000px;}
.w17{width:416.406000px;}
.w14{width:416.944500px;}
.w12{width:417.075000px;}
.w18{width:417.369000px;}
.w11{width:417.600000px;}
.w15{width:418.252500px;}
.w13{width:420.217500px;}
.w16{width:426.763500px;}
.w7{width:493.149007px;}
.wa{width:523.794022px;}
.we{width:528.766650px;}
.wb{width:586.147500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xeb{left:12.643066px;}
.x111{left:17.945709px;}
.x114{left:42.447144px;}
.x1{left:53.574000px;}
.xed{left:56.577003px;}
.x4f{left:64.422938px;}
.x112{left:68.845047px;}
.x140{left:85.848000px;}
.xec{left:94.340857px;}
.x113{left:120.983551px;}
.x136{left:123.871960px;}
.x139{left:126.197974px;}
.x135{left:130.999958px;}
.x43{left:133.682998px;}
.x12f{left:136.651511px;}
.x44{left:137.699982px;}
.x130{left:140.219971px;}
.xe9{left:151.172401px;}
.xea{left:157.100716px;}
.xe7{left:159.573738px;}
.xe8{left:163.196388px;}
.x110{left:168.483147px;}
.x10f{left:183.882774px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.xf0{left:250.701439px;}
.xf6{left:251.719500px;}
.xe5{left:254.417993px;}
.x4e{left:257.341050px;}
.x138{left:259.280997px;}
.x107{left:261.543000px;}
.x3{left:269.914500px;}
.x127{left:275.539500px;}
.x10b{left:277.600500px;}
.x11e{left:279.112500px;}
.x5{left:281.479500px;}
.x10e{left:285.007500px;}
.x42{left:289.079956px;}
.x84{left:290.445000px;}
.x132{left:292.384500px;}
.xac{left:293.856000px;}
.x11f{left:295.095000px;}
.x6c{left:296.553000px;}
.x2e{left:298.872000px;}
.xc0{left:300.628500px;}
.xee{left:303.217644px;}
.x3d{left:304.617000px;}
.xef{left:306.840477px;}
.x85{left:309.520500px;}
.x106{left:310.783500px;}
.xe6{left:312.410545px;}
.x2f{left:313.816500px;}
.x30{left:317.626500px;}
.x117{left:321.573000px;}
.xb3{left:322.992000px;}
.x57{left:326.446500px;}
.xfb{left:328.732500px;}
.xc2{left:329.764500px;}
.x31{left:332.571000px;}
.xb8{left:333.759000px;}
.x4d{left:335.044026px;}
.x3e{left:336.418500px;}
.x86{left:337.962000px;}
.xc3{left:339.715500px;}
.x9f{left:341.728500px;}
.x4b{left:343.221000px;}
.x34{left:344.233500px;}
.x3f{left:346.384500px;}
.xa0{left:348.759000px;}
.x119{left:352.396500px;}
.x12d{left:353.755500px;}
.x35{left:359.176500px;}
.x11d{left:360.249000px;}
.x11c{left:362.467500px;}
.xb9{left:364.230000px;}
.x83{left:365.863500px;}
.x48{left:367.408500px;}
.x4c{left:368.448000px;}
.x12e{left:371.293500px;}
.x1b{left:372.825000px;}
.xf1{left:374.587500px;}
.xb6{left:377.022000px;}
.xa5{left:383.253000px;}
.xc4{left:385.773000px;}
.x1c{left:387.769500px;}
.x11a{left:389.911500px;}
.x1d{left:391.579500px;}
.x40{left:394.183500px;}
.x3b{left:396.001500px;}
.xa{left:397.095000px;}
.x95{left:400.218000px;}
.x21{left:401.623500px;}
.x73{left:402.952500px;}
.xb{left:404.566500px;}
.x1e{left:406.524000px;}
.xb7{left:407.959500px;}
.x8a{left:409.845000px;}
.xc{left:412.188000px;}
.xa6{left:413.989500px;}
.x22{left:416.568000px;}
.x10c{left:418.180500px;}
.x23{left:420.378000px;}
.x8f{left:421.915500px;}
.xd6{left:422.950500px;}
.x74{left:425.119500px;}
.xd{left:427.132500px;}
.x58{left:428.965500px;}
.x7b{left:430.624500px;}
.x24{left:435.322500px;}
.x9a{left:436.504500px;}
.x25{left:439.134000px;}
.x102{left:440.814000px;}
.x53{left:442.449000px;}
.xa7{left:444.184500px;}
.x5b{left:446.436000px;}
.xe2{left:448.077000px;}
.x32{left:450.696000px;}
.x7a{left:452.710500px;}
.x26{left:454.077000px;}
.x45{left:455.526000px;}
.xca{left:457.423500px;}
.x92{left:458.874000px;}
.x69{left:460.620000px;}
.xbd{left:463.291500px;}
.xf7{left:464.443500px;}
.x33{left:465.639000px;}
.x97{left:467.269500px;}
.x46{left:468.757500px;}
.x96{left:470.005500px;}
.x72{left:472.222500px;}
.x7d{left:474.912000px;}
.x13f{left:476.001000px;}
.x93{left:478.233000px;}
.xc6{left:480.058500px;}
.x11b{left:482.155500px;}
.x108{left:483.253500px;}
.xfc{left:485.392500px;}
.x109{left:486.592500px;}
.x5d{left:487.633500px;}
.xde{left:489.627000px;}
.xd9{left:491.104500px;}
.xcd{left:493.162500px;}
.xf8{left:494.187000px;}
.x120{left:495.666000px;}
.x87{left:497.487000px;}
.x91{left:498.919500px;}
.xbc{left:500.634000px;}
.xc9{left:503.076000px;}
.x7e{left:504.597000px;}
.x10a{left:505.600500px;}
.xff{left:508.026000px;}
.x54{left:510.373500px;}
.x105{left:511.861500px;}
.x137{left:513.268957px;}
.xba{left:514.443000px;}
.x118{left:516.766500px;}
.xd5{left:517.827000px;}
.x77{left:519.058500px;}
.x9c{left:520.210500px;}
.x103{left:521.508000px;}
.xfd{left:522.886500px;}
.x6a{left:525.003000px;}
.x6{left:527.127000px;}
.x104{left:528.286500px;}
.xf9{left:530.824500px;}
.xe{left:532.123500px;}
.xad{left:533.491500px;}
.x7{left:534.600000px;}
.x6f{left:535.672500px;}
.xc7{left:536.851500px;}
.xa1{left:538.203000px;}
.x41{left:539.424007px;}
.xcf{left:541.039500px;}
.x8{left:542.101500px;}
.xb4{left:543.166500px;}
.xbb{left:545.403000px;}
.xf{left:547.066500px;}
.xd0{left:548.071500px;}
.x9{left:549.573000px;}
.xbe{left:550.909500px;}
.xa2{left:553.450500px;}
.x10{left:554.658000px;}
.x14{left:556.797000px;}
.xc5{left:558.310500px;}
.xa3{left:559.539000px;}
.x70{left:561.727500px;}
.xc8{left:563.193000px;}
.xbf{left:564.478500px;}
.xf5{left:566.110500px;}
.x7f{left:567.235500px;}
.x11{left:569.602500px;}
.x9b{left:570.645000px;}
.x15{left:571.740000px;}
.x94{left:574.593000px;}
.x6b{left:576.205500px;}
.x16{left:579.361500px;}
.xae{left:581.713500px;}
.xd7{left:583.351500px;}
.x18{left:584.671500px;}
.x56{left:587.266500px;}
.x55{left:589.612500px;}
.x90{left:590.733000px;}
.x19{left:592.293000px;}
.x17{left:594.306000px;}
.x88{left:595.387500px;}
.x131{left:596.598000px;}
.x71{left:598.597500px;}
.xb0{left:600.723000px;}
.x13c{left:601.726500px;}
.x10d{left:602.982000px;}
.x59{left:606.063000px;}
.x1a{left:607.237500px;}
.x29{left:608.655000px;}
.x121{left:611.331000px;}
.x2a{left:612.331500px;}
.x98{left:614.214000px;}
.xd8{left:616.162500px;}
.x12a{left:617.719500px;}
.x134{left:618.772500px;}
.x8c{left:619.785000px;}
.x47{left:622.830000px;}
.x5a{left:624.613500px;}
.x2b{left:627.274500px;}
.x2c{left:630.951000px;}
.xab{left:633.655500px;}
.x75{left:636.015000px;}
.x12b{left:637.786500px;}
.x61{left:638.821500px;}
.x5e{left:640.401000px;}
.x8b{left:643.723500px;}
.x2d{left:645.895500px;}
.x100{left:647.185500px;}
.x7c{left:649.722000px;}
.x3c{left:652.122000px;}
.x36{left:657.910500px;}
.x13d{left:659.860500px;}
.x122{left:662.398500px;}
.x8d{left:665.560500px;}
.x5f{left:667.378500px;}
.x37{left:669.457500px;}
.xdf{left:670.797000px;}
.x62{left:673.492500px;}
.xce{left:675.810000px;}
.x123{left:677.965500px;}
.xfe{left:678.997500px;}
.x82{left:682.485000px;}
.x27{left:683.758500px;}
.xdc{left:685.140000px;}
.x13b{left:686.938500px;}
.x8e{left:688.765500px;}
.xcb{left:692.031000px;}
.x101{left:693.469500px;}
.xa8{left:695.859000px;}
.x28{left:698.703000px;}
.x5c{left:700.888500px;}
.x66{left:702.322500px;}
.xb5{left:704.679000px;}
.x13e{left:705.898500px;}
.x76{left:708.858000px;}
.xf2{left:711.789000px;}
.x99{left:715.048500px;}
.xd2{left:718.017000px;}
.xcc{left:720.120000px;}
.x50{left:723.271500px;}
.xa9{left:726.099000px;}
.x124{left:728.644500px;}
.x68{left:730.807500px;}
.x67{left:733.123500px;}
.xf3{left:737.890500px;}
.x78{left:740.775000px;}
.x12c{left:742.899000px;}
.x125{left:743.955000px;}
.x51{left:746.230500px;}
.xaa{left:748.213500px;}
.xf4{left:750.081000px;}
.x128{left:751.969500px;}
.x1f{left:753.292500px;}
.x13a{left:755.514000px;}
.xd3{left:756.613500px;}
.x116{left:757.906500px;}
.x49{left:761.419500px;}
.x6d{left:763.626000px;}
.x3a{left:764.728500px;}
.xda{left:767.082000px;}
.x20{left:768.235500px;}
.xe3{left:772.132500px;}
.x79{left:773.353500px;}
.x12{left:775.248000px;}
.x80{left:776.991000px;}
.x133{left:778.230000px;}
.x6e{left:779.964000px;}
.xb1{left:782.200500px;}
.x4a{left:784.233000px;}
.x64{left:786.735000px;}
.x63{left:789.051000px;}
.x13{left:790.192500px;}
.xdb{left:791.419500px;}
.x81{left:792.697500px;}
.x52{left:794.848500px;}
.xd1{left:796.929000px;}
.xa4{left:799.510500px;}
.xaf{left:801.435000px;}
.x38{left:803.346000px;}
.x126{left:804.823500px;}
.xfa{left:805.908000px;}
.x115{left:808.020000px;}
.xe4{left:809.523000px;}
.x39{left:811.005000px;}
.x129{left:812.221500px;}
.xd4{left:813.942000px;}
.x60{left:815.527500px;}
.x65{left:816.969000px;}
.xe0{left:818.046000px;}
.x89{left:824.479500px;}
.xb2{left:826.237500px;}
.xc1{left:827.697000px;}
.x9d{left:829.287000px;}
.xe1{left:832.990500px;}
.x9e{left:836.317500px;}
.xdd{left:837.717000px;}
@media print{
.va{vertical-align:-37.962667pt;}
.v6{vertical-align:-17.946667pt;}
.vb{vertical-align:-16.442667pt;}
.v3{vertical-align:-15.429333pt;}
.vd{vertical-align:-13.301333pt;}
.v27{vertical-align:-11.850667pt;}
.v4{vertical-align:-10.624000pt;}
.v5{vertical-align:-9.706667pt;}
.v9{vertical-align:-7.968000pt;}
.v1e{vertical-align:-3.770667pt;}
.ve{vertical-align:-2.362667pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:1.632000pt;}
.v10{vertical-align:3.392000pt;}
.v1a{vertical-align:7.413333pt;}
.v11{vertical-align:9.909333pt;}
.vc{vertical-align:10.938667pt;}
.vf{vertical-align:13.301333pt;}
.v20{vertical-align:15.354667pt;}
.v2{vertical-align:19.290667pt;}
.v1c{vertical-align:20.933333pt;}
.v19{vertical-align:26.266667pt;}
.v1f{vertical-align:28.480000pt;}
.v1{vertical-align:34.720000pt;}
.v7{vertical-align:35.973333pt;}
.v8{vertical-align:37.008000pt;}
.v21{vertical-align:37.957333pt;}
.v15{vertical-align:40.506667pt;}
.v17{vertical-align:41.866667pt;}
.v24{vertical-align:43.253333pt;}
.v26{vertical-align:44.954667pt;}
.v12{vertical-align:45.877333pt;}
.v14{vertical-align:46.906667pt;}
.v25{vertical-align:50.832000pt;}
.v18{vertical-align:55.968000pt;}
.v1b{vertical-align:59.002667pt;}
.v23{vertical-align:62.714667pt;}
.v16{vertical-align:66.421333pt;}
.v22{vertical-align:72.421333pt;}
.v1d{vertical-align:77.333333pt;}
.lsbf{letter-spacing:-0.604151pt;}
.lsdb{letter-spacing:-0.593242pt;}
.lsbc{letter-spacing:-0.379635pt;}
.lsdc{letter-spacing:-0.366789pt;}
.lsbd{letter-spacing:-0.234720pt;}
.ls1c{letter-spacing:-0.162140pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000272pt;}
.lsfb{letter-spacing:0.000375pt;}
.lsd2{letter-spacing:0.000544pt;}
.lse4{letter-spacing:0.000699pt;}
.lsd{letter-spacing:0.000711pt;}
.lsae{letter-spacing:0.000772pt;}
.ls7b{letter-spacing:0.001552pt;}
.lse{letter-spacing:0.002825pt;}
.lsff{letter-spacing:0.014400pt;}
.lsf7{letter-spacing:0.016000pt;}
.lsd7{letter-spacing:0.098874pt;}
.ls100{letter-spacing:0.100747pt;}
.lsf8{letter-spacing:0.111941pt;}
.ls101{letter-spacing:0.115294pt;}
.lsc{letter-spacing:0.124565pt;}
.lsf9{letter-spacing:0.128104pt;}
.ls1b{letter-spacing:0.291852pt;}
.lsbe{letter-spacing:0.302076pt;}
.lsb2{letter-spacing:0.316363pt;}
.lsd6{letter-spacing:0.320998pt;}
.lsab{letter-spacing:0.368518pt;}
.ls52{letter-spacing:0.451918pt;}
.lsdd{letter-spacing:0.472043pt;}
.ls53{letter-spacing:0.482502pt;}
.lsf2{letter-spacing:0.486769pt;}
.ls22{letter-spacing:0.487835pt;}
.ls67{letter-spacing:0.502400pt;}
.ls93{letter-spacing:0.503087pt;}
.lsa3{letter-spacing:0.504787pt;}
.lse3{letter-spacing:0.504838pt;}
.ls54{letter-spacing:0.507733pt;}
.ls6e{letter-spacing:0.508420pt;}
.lsc4{letter-spacing:0.593818pt;}
.ls7a{letter-spacing:0.596267pt;}
.lsd8{letter-spacing:0.599151pt;}
.lsb6{letter-spacing:0.601548pt;}
.lsc1{letter-spacing:0.637762pt;}
.ls8c{letter-spacing:0.640696pt;}
.lsd0{letter-spacing:0.643096pt;}
.lsd3{letter-spacing:0.647623pt;}
.ls2d{letter-spacing:0.659733pt;}
.ls24{letter-spacing:0.661044pt;}
.lsda{letter-spacing:0.661852pt;}
.lsa6{letter-spacing:0.662022pt;}
.ls107{letter-spacing:0.662839pt;}
.ls10{letter-spacing:0.663452pt;}
.ls48{letter-spacing:0.663756pt;}
.ls88{letter-spacing:0.664259pt;}
.ls9{letter-spacing:0.665067pt;}
.ls62{letter-spacing:0.665570pt;}
.ls36{letter-spacing:0.666378pt;}
.lsfe{letter-spacing:0.667090pt;}
.lsdf{letter-spacing:0.667185pt;}
.ls3a{letter-spacing:0.668785pt;}
.ls1f{letter-spacing:0.928696pt;}
.lsc9{letter-spacing:0.931096pt;}
.ls80{letter-spacing:0.934029pt;}
.ls61{letter-spacing:0.958584pt;}
.ls6f{letter-spacing:0.989169pt;}
.ls21{letter-spacing:1.009015pt;}
.lse2{letter-spacing:1.011505pt;}
.lsca{letter-spacing:1.036785pt;}
.lseb{letter-spacing:1.049548pt;}
.lse5{letter-spacing:1.153788pt;}
.lse7{letter-spacing:1.166400pt;}
.lsd4{letter-spacing:1.167711pt;}
.ls51{letter-spacing:1.170422pt;}
.ls7f{letter-spacing:1.194682pt;}
.ls40{letter-spacing:1.195185pt;}
.ls19{letter-spacing:1.200015pt;}
.ls17{letter-spacing:1.257548pt;}
.ls11{letter-spacing:1.262881pt;}
.ls66{letter-spacing:1.299096pt;}
.ls32{letter-spacing:1.302029pt;}
.ls9a{letter-spacing:1.307362pt;}
.lsb{letter-spacing:1.324173pt;}
.ls26{letter-spacing:1.325089pt;}
.ls14{letter-spacing:1.325593pt;}
.ls28{letter-spacing:1.326400pt;}
.ls99{letter-spacing:1.326903pt;}
.ls70{letter-spacing:1.328689pt;}
.ls8{letter-spacing:1.329506pt;}
.ls8b{letter-spacing:1.330118pt;}
.ls3e{letter-spacing:1.330422pt;}
.ls12{letter-spacing:1.330926pt;}
.ls97{letter-spacing:1.332237pt;}
.ls9e{letter-spacing:1.514378pt;}
.ls105{letter-spacing:1.788484pt;}
.lsc5{letter-spacing:1.793818pt;}
.ls18{letter-spacing:1.835362pt;}
.ls47{letter-spacing:1.856518pt;}
.lsd9{letter-spacing:1.857506pt;}
.ls25{letter-spacing:1.861852pt;}
.lsde{letter-spacing:1.862839pt;}
.ls87{letter-spacing:1.991452pt;}
.lsad{letter-spacing:1.996785pt;}
.ls38{letter-spacing:2.324214pt;}
.ls3b{letter-spacing:2.329548pt;}
.ls35{letter-spacing:2.363362pt;}
.lsac{letter-spacing:2.601874pt;}
.lsa7{letter-spacing:2.654089pt;}
.ls3d{letter-spacing:2.654679pt;}
.ls104{letter-spacing:2.656533pt;}
.ls43{letter-spacing:2.657067pt;}
.ls8d{letter-spacing:2.657905pt;}
.lsaa{letter-spacing:2.659422pt;}
.ls6b{letter-spacing:2.660013pt;}
.lsb3{letter-spacing:2.660828pt;}
.lsd5{letter-spacing:3.303452pt;}
.ls74{letter-spacing:3.316013pt;}
.ls31{letter-spacing:3.318400pt;}
.ls4d{letter-spacing:3.319087pt;}
.lsd1{letter-spacing:3.319831pt;}
.ls63{letter-spacing:3.320877pt;}
.lsee{letter-spacing:3.321257pt;}
.ls34{letter-spacing:3.321346pt;}
.lsb5{letter-spacing:3.322161pt;}
.ls39{letter-spacing:3.323733pt;}
.ls72{letter-spacing:3.324420pt;}
.ls79{letter-spacing:3.571733pt;}
.ls6a{letter-spacing:3.577067pt;}
.ls95{letter-spacing:3.805169pt;}
.ls94{letter-spacing:3.810502pt;}
.ls4b{letter-spacing:7.042422pt;}
.ls0{letter-spacing:7.437600pt;}
.ls20{letter-spacing:7.636214pt;}
.ls4c{letter-spacing:7.641548pt;}
.ls6c{letter-spacing:7.675362pt;}
.ls8e{letter-spacing:8.208696pt;}
.lsef{letter-spacing:8.214029pt;}
.lse6{letter-spacing:8.674422pt;}
.ls44{letter-spacing:9.516533pt;}
.ls41{letter-spacing:9.521867pt;}
.ls2e{letter-spacing:9.539096pt;}
.ls60{letter-spacing:9.638400pt;}
.lsa4{letter-spacing:9.697067pt;}
.ls90{letter-spacing:9.847452pt;}
.ls5{letter-spacing:10.626533pt;}
.ls10a{letter-spacing:10.901943pt;}
.lsb8{letter-spacing:10.973762pt;}
.ls84{letter-spacing:10.995733pt;}
.lsc8{letter-spacing:11.261762pt;}
.lsec{letter-spacing:11.421762pt;}
.ls92{letter-spacing:11.593548pt;}
.ls29{letter-spacing:11.598881pt;}
.ls42{letter-spacing:11.629762pt;}
.ls56{letter-spacing:11.635096pt;}
.ls64{letter-spacing:11.655756pt;}
.ls71{letter-spacing:11.661089pt;}
.lsa1{letter-spacing:11.688429pt;}
.ls111{letter-spacing:11.760776pt;}
.lsfc{letter-spacing:11.801570pt;}
.ls110{letter-spacing:11.940225pt;}
.ls109{letter-spacing:11.954133pt;}
.lsfa{letter-spacing:11.955200pt;}
.ls10d{letter-spacing:11.959467pt;}
.ls10b{letter-spacing:12.055574pt;}
.ls85{letter-spacing:12.163096pt;}
.ls102{letter-spacing:12.548915pt;}
.ls2a{letter-spacing:12.696429pt;}
.ls10c{letter-spacing:12.844800pt;}
.ls10e{letter-spacing:13.142839pt;}
.lsf{letter-spacing:13.177199pt;}
.ls7{letter-spacing:13.283467pt;}
.ls46{letter-spacing:13.549136pt;}
.ls9b{letter-spacing:13.649067pt;}
.ls76{letter-spacing:13.651543pt;}
.ls55{letter-spacing:13.652013pt;}
.ls98{letter-spacing:13.654400pt;}
.lsf6{letter-spacing:13.726903pt;}
.ls1d{letter-spacing:13.881548pt;}
.lsf4{letter-spacing:13.926029pt;}
.lsf3{letter-spacing:13.945570pt;}
.lsfd{letter-spacing:13.947090pt;}
.ls3c{letter-spacing:13.950400pt;}
.ls10f{letter-spacing:14.115388pt;}
.lsb7{letter-spacing:14.156241pt;}
.ls33{letter-spacing:14.291096pt;}
.ls108{letter-spacing:14.416423pt;}
.ls65{letter-spacing:14.542881pt;}
.ls106{letter-spacing:14.587247pt;}
.ls13{letter-spacing:15.353548pt;}
.ls30{letter-spacing:15.395096pt;}
.ls82{letter-spacing:15.400429pt;}
.ls16{letter-spacing:15.688429pt;}
.lsc6{letter-spacing:15.693762pt;}
.lsf5{letter-spacing:15.828237pt;}
.ls75{letter-spacing:15.901762pt;}
.ls103{letter-spacing:15.937067pt;}
.lsf0{letter-spacing:15.937118pt;}
.ls4a{letter-spacing:15.937754pt;}
.lsaf{letter-spacing:15.939923pt;}
.ls4f{letter-spacing:15.940013pt;}
.ls49{letter-spacing:15.942400pt;}
.ls3f{letter-spacing:16.020214pt;}
.ls15{letter-spacing:16.025548pt;}
.ls27{letter-spacing:16.061762pt;}
.ls91{letter-spacing:16.589762pt;}
.ls7c{letter-spacing:16.595096pt;}
.ls69{letter-spacing:16.601346pt;}
.lsa2{letter-spacing:16.833788pt;}
.lsa{letter-spacing:17.268507pt;}
.ls8a{letter-spacing:17.917762pt;}
.ls57{letter-spacing:18.075733pt;}
.lse0{letter-spacing:18.078590pt;}
.ls50{letter-spacing:18.078679pt;}
.ls89{letter-spacing:18.081067pt;}
.lsf1{letter-spacing:18.081118pt;}
.ls78{letter-spacing:18.331184pt;}
.ls96{letter-spacing:18.562502pt;}
.lsa8{letter-spacing:21.773762pt;}
.lsc7{letter-spacing:22.067096pt;}
.lse1{letter-spacing:22.417430pt;}
.ls59{letter-spacing:22.435096pt;}
.ls5c{letter-spacing:22.440429pt;}
.ls9f{letter-spacing:22.488429pt;}
.lsba{letter-spacing:22.968429pt;}
.ls2f{letter-spacing:24.296429pt;}
.lsce{letter-spacing:28.478881pt;}
.ls5f{letter-spacing:29.105430pt;}
.lsc2{letter-spacing:29.341762pt;}
.lsc0{letter-spacing:30.493762pt;}
.lsb0{letter-spacing:34.126590pt;}
.ls6d{letter-spacing:40.409067pt;}
.lse9{letter-spacing:40.539785pt;}
.ls58{letter-spacing:50.803096pt;}
.ls1{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ls83{letter-spacing:69.693762pt;}
.ls5b{letter-spacing:84.755096pt;}
.ls9c{letter-spacing:98.307096pt;}
.ls68{letter-spacing:122.491682pt;}
.ls1e{letter-spacing:128.579096pt;}
.lsb4{letter-spacing:137.747096pt;}
.lscc{letter-spacing:139.833548pt;}
.lscd{letter-spacing:484.420214pt;}
.lscf{letter-spacing:520.937548pt;}
.ls5d{letter-spacing:562.446400pt;}
.ls73{letter-spacing:581.470881pt;}
.ls45{letter-spacing:586.969548pt;}
.ls5a{letter-spacing:610.798400pt;}
.ls81{letter-spacing:614.974881pt;}
.lsed{letter-spacing:622.169548pt;}
.ls23{letter-spacing:628.478881pt;}
.ls7e{letter-spacing:645.156214pt;}
.lse8{letter-spacing:660.749089pt;}
.lsb1{letter-spacing:668.110881pt;}
.ls86{letter-spacing:682.398881pt;}
.ls9d{letter-spacing:688.798881pt;}
.lsa5{letter-spacing:690.289788pt;}
.ls77{letter-spacing:691.492214pt;}
.ls7d{letter-spacing:703.668214pt;}
.ls1a{letter-spacing:711.950881pt;}
.lscb{letter-spacing:734.676214pt;}
.ls37{letter-spacing:735.864877pt;}
.lsb9{letter-spacing:735.908214pt;}
.lsea{letter-spacing:777.551494pt;}
.ls2b{letter-spacing:790.662400pt;}
.lsbb{letter-spacing:802.201570pt;}
.ls5e{letter-spacing:805.287087pt;}
.ls8f{letter-spacing:805.800755pt;}
.ls4e{letter-spacing:818.324214pt;}
.lsa0{letter-spacing:834.424259pt;}
.lsa9{letter-spacing:841.422089pt;}
.lsc3{letter-spacing:844.337905pt;}
.ws48{word-spacing:-53.440000pt;}
.wse1{word-spacing:-48.000000pt;}
.wsea{word-spacing:-43.200000pt;}
.wse4{word-spacing:-23.910400pt;}
.wsc5{word-spacing:-18.339466pt;}
.ws47{word-spacing:-13.360000pt;}
.ws53{word-spacing:-13.283467pt;}
.wsc6{word-spacing:-12.458073pt;}
.wse0{word-spacing:-12.000000pt;}
.ws4a{word-spacing:-11.955200pt;}
.wse9{word-spacing:-10.800000pt;}
.ws22{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.wsa0{word-spacing:-9.439866pt;}
.ws3{word-spacing:-9.298400pt;}
.ws9f{word-spacing:-8.835715pt;}
.ws9e{word-spacing:-8.225429pt;}
.ws4f{word-spacing:-7.944860pt;}
.ws9d{word-spacing:-7.909067pt;}
.ws38{word-spacing:-2.975497pt;}
.ws88{word-spacing:-2.869229pt;}
.wsed{word-spacing:-2.709827pt;}
.wsc8{word-spacing:-2.497292pt;}
.ws104{word-spacing:-2.444158pt;}
.ws33{word-spacing:-2.125355pt;}
.wsa2{word-spacing:-2.104115pt;}
.ws37{word-spacing:-1.965953pt;}
.ws0{word-spacing:-1.859680pt;}
.ws87{word-spacing:-1.769370pt;}
.wsc4{word-spacing:-1.753418pt;}
.wse7{word-spacing:-1.700284pt;}
.wse8{word-spacing:-1.698967pt;}
.ws52{word-spacing:-1.487748pt;}
.ws109{word-spacing:-1.386803pt;}
.wsf6{word-spacing:-1.174530pt;}
.wsf5{word-spacing:-1.168945pt;}
.ws5b{word-spacing:-1.115811pt;}
.ws5a{word-spacing:-1.062677pt;}
.ws10b{word-spacing:-1.052058pt;}
.ws86{word-spacing:-1.009543pt;}
.ws112{word-spacing:-0.860774pt;}
.ws1f{word-spacing:-0.850142pt;}
.ws32{word-spacing:-0.797008pt;}
.wsf2{word-spacing:-0.743874pt;}
.ws31{word-spacing:-0.690740pt;}
.ws12d{word-spacing:-0.621670pt;}
.ws5d{word-spacing:-0.584473pt;}
.wse6{word-spacing:-0.531339pt;}
.ws24{word-spacing:-0.478205pt;}
.wscb{word-spacing:-0.472043pt;}
.ws55{word-spacing:-0.425071pt;}
.wsc1{word-spacing:-0.318803pt;}
.wsa8{word-spacing:-0.302076pt;}
.ws110{word-spacing:-0.286925pt;}
.ws1d{word-spacing:-0.265669pt;}
.wse2{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.wsfd{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.159402pt;}
.wsc7{word-spacing:-0.143462pt;}
.ws1c{word-spacing:-0.106268pt;}
.ws57{word-spacing:-0.095642pt;}
.wsf{word-spacing:-0.053134pt;}
.ws58{word-spacing:-0.047821pt;}
.wsdd{word-spacing:-0.043631pt;}
.ws23{word-spacing:-0.042507pt;}
.ws98{word-spacing:-0.040382pt;}
.ws4{word-spacing:-0.037194pt;}
.ws12e{word-spacing:-0.019814pt;}
.wsd5{word-spacing:-0.002933pt;}
.wsd2{word-spacing:-0.000838pt;}
.ws8{word-spacing:-0.000560pt;}
.ws7{word-spacing:0.000000pt;}
.ws108{word-spacing:0.047821pt;}
.ws4b{word-spacing:0.053134pt;}
.wsb{word-spacing:0.085014pt;}
.ws10d{word-spacing:0.095642pt;}
.ws19{word-spacing:0.106268pt;}
.ws10e{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws96{word-spacing:0.191283pt;}
.wsc{word-spacing:0.212535pt;}
.wsd8{word-spacing:0.216264pt;}
.wsa7{word-spacing:0.234720pt;}
.ws119{word-spacing:0.239104pt;}
.ws27{word-spacing:0.265669pt;}
.ws10f{word-spacing:0.286925pt;}
.wse5{word-spacing:0.290309pt;}
.wsb5{word-spacing:0.291564pt;}
.ws6a{word-spacing:0.318803pt;}
.wse3{word-spacing:0.334746pt;}
.wsca{word-spacing:0.366789pt;}
.ws6{word-spacing:0.375335pt;}
.wsa6{word-spacing:0.379635pt;}
.wsc3{word-spacing:0.425071pt;}
.wsdf{word-spacing:0.455229pt;}
.wsde{word-spacing:0.469790pt;}
.ws89{word-spacing:0.478205pt;}
.ws10{word-spacing:0.531339pt;}
.ws3a{word-spacing:0.584473pt;}
.wsc9{word-spacing:0.593242pt;}
.wsf0{word-spacing:0.621670pt;}
.ws56{word-spacing:0.659615pt;}
.ws6e{word-spacing:0.662531pt;}
.wscc{word-spacing:0.663135pt;}
.ws8a{word-spacing:0.663382pt;}
.ws6d{word-spacing:0.664897pt;}
.ws117{word-spacing:0.669491pt;}
.ws63{word-spacing:0.690740pt;}
.ws29{word-spacing:0.797008pt;}
.wsd6{word-spacing:0.850142pt;}
.wsd7{word-spacing:0.860243pt;}
.ws3e{word-spacing:0.903276pt;}
.ws118{word-spacing:0.908595pt;}
.ws44{word-spacing:0.956410pt;}
.wsbd{word-spacing:1.009543pt;}
.wsbc{word-spacing:1.062677pt;}
.wsfc{word-spacing:1.099878pt;}
.wsdc{word-spacing:1.115811pt;}
.ws68{word-spacing:1.168945pt;}
.ws84{word-spacing:1.189290pt;}
.ws80{word-spacing:1.195010pt;}
.ws11e{word-spacing:1.195520pt;}
.ws94{word-spacing:1.222079pt;}
.ws3d{word-spacing:1.328347pt;}
.ws17{word-spacing:1.381481pt;}
.ws2f{word-spacing:1.434614pt;}
.ws3f{word-spacing:1.487748pt;}
.ws7b{word-spacing:1.540882pt;}
.wsf1{word-spacing:1.551172pt;}
.ws18{word-spacing:1.594016pt;}
.ws16{word-spacing:1.647150pt;}
.ws125{word-spacing:1.673728pt;}
.ws9c{word-spacing:1.724527pt;}
.ws51{word-spacing:1.753418pt;}
.wsda{word-spacing:1.806551pt;}
.ws121{word-spacing:1.817190pt;}
.ws30{word-spacing:1.859685pt;}
.wseb{word-spacing:1.912832pt;}
.ws62{word-spacing:1.965953pt;}
.ws105{word-spacing:2.008474pt;}
.ws92{word-spacing:2.019087pt;}
.ws102{word-spacing:2.125355pt;}
.ws115{word-spacing:2.151936pt;}
.ws13{word-spacing:2.178489pt;}
.ws10c{word-spacing:2.199757pt;}
.wsf3{word-spacing:2.231622pt;}
.ws128{word-spacing:2.247578pt;}
.wsdb{word-spacing:2.284756pt;}
.wsb0{word-spacing:2.391024pt;}
.ws124{word-spacing:2.391040pt;}
.ws28{word-spacing:2.497292pt;}
.ws3c{word-spacing:2.550426pt;}
.wsa{word-spacing:2.550432pt;}
.ws4c{word-spacing:2.603559pt;}
.ws3b{word-spacing:2.656693pt;}
.ws11b{word-spacing:2.677965pt;}
.wsc2{word-spacing:2.709827pt;}
.ws106{word-spacing:2.747612pt;}
.ws74{word-spacing:2.762961pt;}
.wsd9{word-spacing:2.816095pt;}
.ws59{word-spacing:2.821427pt;}
.ws130{word-spacing:2.863181pt;}
.ws129{word-spacing:2.865143pt;}
.ws12b{word-spacing:2.865485pt;}
.ws122{word-spacing:2.865655pt;}
.wsef{word-spacing:2.869229pt;}
.ws127{word-spacing:2.869248pt;}
.ws132{word-spacing:2.917069pt;}
.ws1e{word-spacing:2.922363pt;}
.wsd0{word-spacing:2.975497pt;}
.ws7d{word-spacing:3.060531pt;}
.wsb1{word-spacing:3.081764pt;}
.ws7c{word-spacing:3.108352pt;}
.ws69{word-spacing:3.134898pt;}
.ws35{word-spacing:3.188032pt;}
.ws26{word-spacing:3.241166pt;}
.ws5c{word-spacing:3.347434pt;}
.ws11{word-spacing:3.400567pt;}
.ws2b{word-spacing:3.453701pt;}
.ws113{word-spacing:3.538739pt;}
.wscd{word-spacing:3.555125pt;}
.ws67{word-spacing:3.558172pt;}
.ws2c{word-spacing:3.559969pt;}
.ws70{word-spacing:3.560687pt;}
.ws42{word-spacing:3.613103pt;}
.ws20{word-spacing:3.719371pt;}
.wsd{word-spacing:3.772505pt;}
.wsa1{word-spacing:3.825638pt;}
.ws14{word-spacing:3.825664pt;}
.ws6b{word-spacing:3.844611pt;}
.ws11a{word-spacing:3.921306pt;}
.ws41{word-spacing:3.931906pt;}
.ws7a{word-spacing:3.985040pt;}
.ws85{word-spacing:4.091308pt;}
.ws116{word-spacing:4.112589pt;}
.ws101{word-spacing:4.197575pt;}
.ws2e{word-spacing:4.250709pt;}
.ws83{word-spacing:4.303843pt;}
.ws95{word-spacing:4.356977pt;}
.wsb3{word-spacing:4.410111pt;}
.wsb2{word-spacing:4.463245pt;}
.ws54{word-spacing:4.516379pt;}
.wsf7{word-spacing:4.569513pt;}
.wsf8{word-spacing:4.622646pt;}
.wsf9{word-spacing:4.675780pt;}
.wsfa{word-spacing:4.728914pt;}
.ws114{word-spacing:4.877722pt;}
.ws100{word-spacing:4.888316pt;}
.ws78{word-spacing:5.047717pt;}
.ws64{word-spacing:5.100851pt;}
.ws65{word-spacing:5.153985pt;}
.ws103{word-spacing:5.260253pt;}
.ws15{word-spacing:5.313387pt;}
.wsaf{word-spacing:5.314595pt;}
.ws1a{word-spacing:5.366521pt;}
.ws1b{word-spacing:5.419654pt;}
.wsf4{word-spacing:5.472788pt;}
.ws123{word-spacing:5.499392pt;}
.wsfb{word-spacing:5.579056pt;}
.ws43{word-spacing:5.632190pt;}
.ws4d{word-spacing:5.789099pt;}
.ws7f{word-spacing:5.842432pt;}
.ws93{word-spacing:5.842667pt;}
.ws81{word-spacing:5.842773pt;}
.wsac{word-spacing:5.843125pt;}
.ws8c{word-spacing:5.843136pt;}
.ws6c{word-spacing:5.843354pt;}
.wsa3{word-spacing:5.843627pt;}
.wsa9{word-spacing:5.843665pt;}
.ws6f{word-spacing:5.843881pt;}
.wsb4{word-spacing:5.843977pt;}
.wsbb{word-spacing:5.845079pt;}
.wsb6{word-spacing:5.845775pt;}
.ws8d{word-spacing:5.845871pt;}
.ws99{word-spacing:5.846731pt;}
.ws8b{word-spacing:5.848399pt;}
.ws45{word-spacing:5.950993pt;}
.wsee{word-spacing:6.004127pt;}
.ws11c{word-spacing:6.073242pt;}
.ws36{word-spacing:6.163529pt;}
.wsec{word-spacing:6.694867pt;}
.ws50{word-spacing:6.748001pt;}
.ws91{word-spacing:6.854269pt;}
.ws90{word-spacing:6.907403pt;}
.wse{word-spacing:6.960537pt;}
.ws2d{word-spacing:7.332474pt;}
.ws2{word-spacing:7.398831pt;}
.ws7e{word-spacing:7.438741pt;}
.ws97{word-spacing:7.491875pt;}
.ws46{word-spacing:7.545009pt;}
.ws8f{word-spacing:7.569198pt;}
.ws12{word-spacing:7.726592pt;}
.wsb7{word-spacing:7.978413pt;}
.ws71{word-spacing:7.980700pt;}
.wsb9{word-spacing:7.981062pt;}
.ws72{word-spacing:7.982020pt;}
.wsaa{word-spacing:7.982332pt;}
.ws60{word-spacing:7.982547pt;}
.wsa5{word-spacing:7.982605pt;}
.ws66{word-spacing:7.983113pt;}
.wsab{word-spacing:7.983686pt;}
.ws5e{word-spacing:7.984243pt;}
.ws8e{word-spacing:7.984538pt;}
.ws5f{word-spacing:7.986586pt;}
.ws73{word-spacing:7.987354pt;}
.wsa4{word-spacing:7.987627pt;}
.wsce{word-spacing:7.987665pt;}
.ws40{word-spacing:8.076348pt;}
.wsd3{word-spacing:9.933333pt;}
.ws5{word-spacing:10.042272pt;}
.ws49{word-spacing:10.138010pt;}
.wsae{word-spacing:10.181103pt;}
.wsad{word-spacing:10.185830pt;}
.ws10a{word-spacing:10.520576pt;}
.ws21{word-spacing:10.582249pt;}
.ws12c{word-spacing:11.716096pt;}
.ws12f{word-spacing:11.904333pt;}
.ws107{word-spacing:11.907379pt;}
.ws120{word-spacing:11.955200pt;}
.ws111{word-spacing:12.003021pt;}
.ws131{word-spacing:12.050842pt;}
.wsfe{word-spacing:12.529050pt;}
.wsff{word-spacing:12.576870pt;}
.ws11d{word-spacing:12.815974pt;}
.ws79{word-spacing:13.070931pt;}
.ws39{word-spacing:13.230333pt;}
.ws11f{word-spacing:14.776627pt;}
.ws12a{word-spacing:15.015731pt;}
.ws76{word-spacing:16.038009pt;}
.ws1{word-spacing:19.715148pt;}
.ws126{word-spacing:20.228198pt;}
.ws9a{word-spacing:21.271586pt;}
.ws75{word-spacing:24.745214pt;}
.wsd4{word-spacing:24.834667pt;}
.ws4e{word-spacing:221.088230pt;}
.wsbf{word-spacing:336.656179pt;}
.ws77{word-spacing:452.304675pt;}
.wsbe{word-spacing:454.879033pt;}
.wsc0{word-spacing:477.087007pt;}
.ws61{word-spacing:679.741556pt;}
.wsb8{word-spacing:711.955977pt;}
.ws9b{word-spacing:720.614731pt;}
.wscf{word-spacing:735.960998pt;}
.wsba{word-spacing:752.174643pt;}
.ws82{word-spacing:794.935779pt;}
.wsd1{word-spacing:842.543724pt;}
._40{margin-left:-11.969604pt;}
._1b{margin-left:-6.843646pt;}
._b{margin-left:-5.950993pt;}
._6{margin-left:-4.909589pt;}
._5{margin-left:-3.934284pt;}
._2{margin-left:-2.752326pt;}
._1{margin-left:-1.338970pt;}
._19{width:1.131124pt;}
._37{width:2.035346pt;}
._3{width:3.048323pt;}
._17{width:3.985040pt;}
._36{width:8.574652pt;}
._0{width:9.670336pt;}
._41{width:11.046605pt;}
._12{width:12.380191pt;}
._11{width:13.570409pt;}
._18{width:14.467757pt;}
._13{width:15.727625pt;}
._a{width:16.630900pt;}
._35{width:17.746711pt;}
._8{width:18.649987pt;}
._d{width:20.084602pt;}
._c{width:21.859265pt;}
._1e{width:23.671296pt;}
._10{width:24.664737pt;}
._9{width:26.322537pt;}
._14{width:29.149228pt;}
._1c{width:30.934533pt;}
._43{width:32.783596pt;}
._15{width:34.175699pt;}
._44{width:35.822849pt;}
._1a{width:36.832393pt;}
._7{width:38.373275pt;}
._16{width:45.663836pt;}
._4{width:47.981970pt;}
._42{width:52.894423pt;}
._45{width:54.993920pt;}
._1d{width:148.646967pt;}
._2d{width:153.248694pt;}
._30{width:196.116172pt;}
._2a{width:223.645341pt;}
._2e{width:262.651326pt;}
._28{width:267.769865pt;}
._2b{width:291.279857pt;}
._32{width:298.622954pt;}
._33{width:320.238062pt;}
._21{width:327.527777pt;}
._34{width:335.115297pt;}
._2f{width:338.728400pt;}
._31{width:372.182034pt;}
._26{width:375.694624pt;}
._25{width:384.423525pt;}
._27{width:404.047041pt;}
._2c{width:441.595566pt;}
._29{width:444.677330pt;}
._24{width:457.493215pt;}
._22{width:469.437712pt;}
._23{width:472.476965pt;}
._20{width:509.606915pt;}
._3b{width:535.519035pt;}
._3c{width:577.061815pt;}
._3f{width:642.069645pt;}
._38{width:733.204849pt;}
._3a{width:758.230900pt;}
._3e{width:802.480788pt;}
._39{width:832.288887pt;}
._3d{width:835.423786pt;}
._e{width:1681.141270pt;}
._1f{width:2235.519937pt;}
._f{width:2256.773270pt;}
.fs10{font-size:31.636266pt;}
.fs5{font-size:31.880533pt;}
.fsc{font-size:32.428000pt;}
.fs0{font-size:37.193600pt;}
.fs11{font-size:37.759466pt;}
.fs4{font-size:40.381867pt;}
.fse{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs16{font-size:43.200000pt;}
.fsf{font-size:46.944000pt;}
.fs9{font-size:47.820800pt;}
.fs15{font-size:48.000000pt;}
.fs13{font-size:49.436798pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fsb{font-size:58.784000pt;}
.fs14{font-size:59.005333pt;}
.fs7{font-size:63.761067pt;}
.fs3{font-size:72.686933pt;}
.fs12{font-size:73.357864pt;}
.fsd{font-size:74.387733pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y165{bottom:0.079997pt;}
.y73{bottom:1.039958pt;}
.y211{bottom:3.239996pt;}
.y20e{bottom:3.240015pt;}
.y214{bottom:3.311999pt;}
.y20b{bottom:3.312012pt;}
.y200{bottom:3.599996pt;}
.y1fd{bottom:3.600016pt;}
.y1fa{bottom:3.679932pt;}
.y177{bottom:3.883880pt;}
.y75{bottom:4.000000pt;}
.y157{bottom:4.428792pt;}
.y85{bottom:4.523787pt;}
.y15e{bottom:5.449300pt;}
.y1c1{bottom:6.292686pt;}
.y156{bottom:25.859701pt;}
.y15d{bottom:27.135498pt;}
.y40{bottom:40.818667pt;}
.y1bf{bottom:41.377077pt;}
.y87{bottom:55.806968pt;}
.y154{bottom:63.618896pt;}
.y153{bottom:66.170247pt;}
.y1bc{bottom:66.494143pt;}
.y1c0{bottom:67.690269pt;}
.y150{bottom:74.334554pt;}
.y14f{bottom:76.885742pt;}
.y256{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y15b{bottom:90.917887pt;}
.y2a8{bottom:91.145333pt;}
.y283{bottom:91.790667pt;}
.y155{bottom:92.448649pt;}
.y272{bottom:93.384000pt;}
.y15a{bottom:93.469238pt;}
.y15c{bottom:93.469320pt;}
.y1be{bottom:94.003461pt;}
.y1f5{bottom:96.045333pt;}
.ydd{bottom:98.049333pt;}
.y207{bottom:98.716000pt;}
.y245{bottom:98.720000pt;}
.y1b0{bottom:98.802667pt;}
.y71{bottom:103.857333pt;}
.y14{bottom:105.020000pt;}
.y255{bottom:107.209333pt;}
.y282{bottom:108.885333pt;}
.y2a7{bottom:109.716000pt;}
.y28f{bottom:110.052000pt;}
.y3f{bottom:110.741333pt;}
.y271{bottom:111.953333pt;}
.y1f4{bottom:114.614667pt;}
.y137{bottom:116.022667pt;}
.y159{bottom:116.430908pt;}
.y218{bottom:116.610667pt;}
.ydb{bottom:116.618667pt;}
.y152{bottom:116.941162pt;}
.y206{bottom:117.285333pt;}
.y244{bottom:117.290667pt;}
.y1af{bottom:117.373333pt;}
.y158{bottom:118.982259pt;}
.y151{bottom:119.492513pt;}
.y13{bottom:120.920000pt;}
.y1bb{bottom:121.512819pt;}
.y70{bottom:122.428000pt;}
.y1bd{bottom:122.708783pt;}
.y8b{bottom:125.421333pt;}
.ydc{bottom:125.698667pt;}
.y254{bottom:125.780000pt;}
.yee{bottom:125.854667pt;}
.y281{bottom:125.981333pt;}
.y2fd{bottom:128.233333pt;}
.y2a6{bottom:128.285333pt;}
.y28e{bottom:128.622667pt;}
.y188{bottom:128.766667pt;}
.y3e{bottom:129.312000pt;}
.y270{bottom:130.524000pt;}
.y2cc{bottom:131.596000pt;}
.y1f3{bottom:133.185333pt;}
.y217{bottom:133.706667pt;}
.y136{bottom:134.593333pt;}
.yda{bottom:135.189333pt;}
.y205{bottom:135.856000pt;}
.y243{bottom:135.861333pt;}
.y1ae{bottom:135.944000pt;}
.y12{bottom:136.820000pt;}
.y187{bottom:137.880000pt;}
.y6f{bottom:140.998667pt;}
.y8a{bottom:143.992000pt;}
.yed{bottom:144.425333pt;}
.y2fc{bottom:145.256000pt;}
.y2a5{bottom:146.856000pt;}
.y28d{bottom:147.192000pt;}
.y3d{bottom:147.881333pt;}
.y2cb{bottom:148.618667pt;}
.y26f{bottom:149.094667pt;}
.y1cb{bottom:149.826667pt;}
.y280{bottom:149.842649pt;}
.y14b{bottom:150.740000pt;}
.y216{bottom:150.802667pt;}
.y1f2{bottom:151.756000pt;}
.y11{bottom:152.721333pt;}
.y135{bottom:153.162667pt;}
.ya9{bottom:153.228000pt;}
.yd9{bottom:153.760000pt;}
.y242{bottom:154.430667pt;}
.y1ad{bottom:154.513333pt;}
.y16e{bottom:155.806667pt;}
.y253{bottom:157.360000pt;}
.y300{bottom:158.074667pt;}
.y6e{bottom:159.568000pt;}
.y234{bottom:160.924000pt;}
.y2fb{bottom:162.278667pt;}
.y89{bottom:162.562667pt;}
.y2ca{bottom:165.641333pt;}
.y28c{bottom:165.762667pt;}
.y3c{bottom:166.452000pt;}
.y204{bottom:167.525333pt;}
.y26e{bottom:167.664000pt;}
.y215{bottom:167.898667pt;}
.y1ca{bottom:168.396000pt;}
.y10{bottom:168.621333pt;}
.y14a{bottom:169.310667pt;}
.y2a4{bottom:169.410667pt;}
.y1f1{bottom:170.325333pt;}
.y134{bottom:171.733333pt;}
.ya8{bottom:171.798667pt;}
.yec{bottom:172.281333pt;}
.yd8{bottom:172.329333pt;}
.y241{bottom:173.001333pt;}
.y1ac{bottom:173.084000pt;}
.y16d{bottom:174.376000pt;}
.y252{bottom:174.454667pt;}
.y2ff{bottom:175.097333pt;}
.y186{bottom:177.905333pt;}
.y6d{bottom:178.138667pt;}
.y2fa{bottom:179.301333pt;}
.y233{bottom:179.493333pt;}
.y2c9{bottom:182.664000pt;}
.y28b{bottom:184.333333pt;}
.yf{bottom:184.521333pt;}
.y203{bottom:184.621333pt;}
.y3b{bottom:185.022667pt;}
.y26d{bottom:186.234667pt;}
.y1c9{bottom:186.966667pt;}
.y105{bottom:187.709333pt;}
.y208{bottom:187.836000pt;}
.y149{bottom:187.880000pt;}
.y1f0{bottom:188.896000pt;}
.y133{bottom:190.304000pt;}
.ya7{bottom:190.369333pt;}
.yeb{bottom:190.850667pt;}
.yd7{bottom:190.900000pt;}
.y240{bottom:191.572000pt;}
.y1ab{bottom:191.654667pt;}
.y213{bottom:191.890800pt;}
.y2fe{bottom:192.120000pt;}
.y16c{bottom:192.946667pt;}
.y88{bottom:194.232000pt;}
.y2f9{bottom:196.324000pt;}
.y6c{bottom:196.709333pt;}
.y251{bottom:197.205333pt;}
.y232{bottom:198.064000pt;}
.y2c8{bottom:199.688000pt;}
.ye{bottom:200.422667pt;}
.y202{bottom:201.717333pt;}
.y28a{bottom:202.904000pt;}
.y3a{bottom:203.592000pt;}
.y2a3{bottom:203.921333pt;}
.y26c{bottom:204.805333pt;}
.y104{bottom:206.278667pt;}
.y212{bottom:206.506801pt;}
.y1ef{bottom:207.466667pt;}
.y185{bottom:207.925333pt;}
.y132{bottom:208.873333pt;}
.yea{bottom:209.421333pt;}
.yd6{bottom:209.470667pt;}
.y1c8{bottom:209.522667pt;}
.y23f{bottom:210.142667pt;}
.y1aa{bottom:210.224000pt;}
.y2f8{bottom:213.346667pt;}
.y84{bottom:214.168747pt;}
.y6b{bottom:215.280000pt;}
.y231{bottom:216.634667pt;}
.y2c7{bottom:216.710667pt;}
.y184{bottom:217.038667pt;}
.ya6{bottom:218.224000pt;}
.y201{bottom:218.813333pt;}
.y86{bottom:219.776398pt;}
.y148{bottom:221.925333pt;}
.y39{bottom:222.162667pt;}
.y2a2{bottom:222.492000pt;}
.y16b{bottom:223.028000pt;}
.y26b{bottom:223.376000pt;}
.yd{bottom:224.293333pt;}
.y103{bottom:224.849333pt;}
.y1ee{bottom:226.036000pt;}
.y131{bottom:227.444000pt;}
.y23e{bottom:228.712000pt;}
.y1a9{bottom:228.794667pt;}
.y2f7{bottom:230.369333pt;}
.y16a{bottom:232.517333pt;}
.y2c6{bottom:233.733333pt;}
.y6a{bottom:233.849333pt;}
.y289{bottom:234.572000pt;}
.y230{bottom:235.205333pt;}
.ya5{bottom:236.794667pt;}
.y1f6{bottom:238.750667pt;}
.yc{bottom:240.193333pt;}
.y38{bottom:240.733333pt;}
.y1c7{bottom:240.937333pt;}
.y2a1{bottom:241.062667pt;}
.y26a{bottom:241.945333pt;}
.y1ff{bottom:242.281335pt;}
.ye9{bottom:243.466667pt;}
.yd5{bottom:243.516000pt;}
.y1ed{bottom:244.606667pt;}
.y130{bottom:246.014667pt;}
.y23d{bottom:247.282667pt;}
.y2f6{bottom:247.392000pt;}
.y2c5{bottom:250.756000pt;}
.y288{bottom:251.668000pt;}
.y22f{bottom:253.774667pt;}
.ya4{bottom:255.365333pt;}
.y147{bottom:255.972000pt;}
.yb{bottom:256.093333pt;}
.y69{bottom:256.405333pt;}
.y183{bottom:257.496000pt;}
.y1fe{bottom:258.441328pt;}
.y102{bottom:258.894667pt;}
.y37{bottom:259.302667pt;}
.y1c6{bottom:259.508000pt;}
.y2a0{bottom:259.632000pt;}
.y269{bottom:260.516000pt;}
.y1ec{bottom:263.177333pt;}
.y2f5{bottom:264.414667pt;}
.y12f{bottom:264.584000pt;}
.y2c4{bottom:267.778667pt;}
.y1a8{bottom:271.437333pt;}
.y169{bottom:271.566667pt;}
.ya{bottom:271.994667pt;}
.y22e{bottom:272.345333pt;}
.ya3{bottom:273.934667pt;}
.y146{bottom:274.541333pt;}
.y287{bottom:276.015993pt;}
.ye8{bottom:277.512000pt;}
.yd4{bottom:277.561333pt;}
.y36{bottom:277.873333pt;}
.y1c5{bottom:278.077333pt;}
.y29f{bottom:278.202667pt;}
.y23c{bottom:278.952000pt;}
.y268{bottom:279.086667pt;}
.y2f4{bottom:281.437333pt;}
.y1a7{bottom:282.212000pt;}
.y12e{bottom:283.154667pt;}
.y2c3{bottom:284.801333pt;}
.y182{bottom:285.350667pt;}
.y68{bottom:287.820000pt;}
.y9{bottom:287.894667pt;}
.y168{bottom:290.137333pt;}
.y22d{bottom:290.916000pt;}
.ya2{bottom:292.505333pt;}
.y101{bottom:292.940000pt;}
.y145{bottom:293.112000pt;}
.y23b{bottom:296.048000pt;}
.ye7{bottom:296.082667pt;}
.y35{bottom:296.444000pt;}
.y1c4{bottom:296.648000pt;}
.y29e{bottom:296.773333pt;}
.y267{bottom:297.656000pt;}
.y2f3{bottom:298.460000pt;}
.y12d{bottom:301.725333pt;}
.y2c2{bottom:301.824000pt;}
.y8{bottom:303.794667pt;}
.y1eb{bottom:305.818667pt;}
.y67{bottom:306.390667pt;}
.y22c{bottom:309.485333pt;}
.y27f{bottom:309.842689pt;}
.yd3{bottom:310.816000pt;}
.y100{bottom:311.510667pt;}
.y144{bottom:311.682667pt;}
.y34{bottom:315.013333pt;}
.yd0{bottom:315.097333pt;}
.y29d{bottom:315.342667pt;}
.y2f2{bottom:315.482667pt;}
.y1a6{bottom:316.121333pt;}
.y266{bottom:316.226667pt;}
.y2c1{bottom:318.846667pt;}
.y181{bottom:319.397333pt;}
.y7{bottom:319.696000pt;}
.y12c{bottom:320.294667pt;}
.ya1{bottom:320.361333pt;}
.y23a{bottom:320.448008pt;}
.yd2{bottom:321.446667pt;}
.y167{bottom:321.806667pt;}
.ycf{bottom:324.209333pt;}
.y66{bottom:324.961333pt;}
.y1a5{bottom:326.897333pt;}
.ye6{bottom:327.752000pt;}
.y22b{bottom:328.056000pt;}
.y1ea{bottom:328.161333pt;}
.y1c3{bottom:328.317333pt;}
.y143{bottom:330.252000pt;}
.y2f1{bottom:332.506667pt;}
.yce{bottom:333.289333pt;}
.y33{bottom:333.584000pt;}
.y29c{bottom:333.913333pt;}
.y265{bottom:334.797333pt;}
.y6{bottom:335.596000pt;}
.y2c0{bottom:335.869333pt;}
.yd1{bottom:338.556000pt;}
.y12b{bottom:338.865333pt;}
.y166{bottom:338.902667pt;}
.ya0{bottom:338.930667pt;}
.yff{bottom:343.180000pt;}
.y65{bottom:343.530667pt;}
.ye5{bottom:344.848000pt;}
.y1c2{bottom:345.413333pt;}
.y22a{bottom:346.626667pt;}
.y142{bottom:348.822667pt;}
.y2f0{bottom:349.529333pt;}
.y1e9{bottom:350.504000pt;}
.y32{bottom:352.154667pt;}
.y29b{bottom:352.484000pt;}
.y2bf{bottom:352.892000pt;}
.y264{bottom:353.366667pt;}
.y180{bottom:353.442667pt;}
.y5{bottom:356.809333pt;}
.y250{bottom:357.231997pt;}
.y12a{bottom:357.436000pt;}
.y9e{bottom:357.501333pt;}
.y1a4{bottom:361.549333pt;}
.ye4{bottom:361.944000pt;}
.y64{bottom:362.101333pt;}
.y229{bottom:365.196000pt;}
.ycd{bottom:365.208000pt;}
.y1ba{bottom:365.350667pt;}
.y2ef{bottom:366.552000pt;}
.y9f{bottom:366.580000pt;}
.yfe{bottom:366.891993pt;}
.y141{bottom:367.393333pt;}
.y1e8{bottom:368.281333pt;}
.y2be{bottom:369.914667pt;}
.y31{bottom:370.724000pt;}
.y29a{bottom:371.054667pt;}
.y263{bottom:371.937333pt;}
.y17f{bottom:372.012000pt;}
.y4{bottom:372.710667pt;}
.y1e7{bottom:373.622667pt;}
.y129{bottom:376.006667pt;}
.y9c{bottom:376.072000pt;}
.ye3{bottom:379.038667pt;}
.y2ee{bottom:383.574667pt;}
.y228{bottom:383.766667pt;}
.y1a3{bottom:384.636000pt;}
.y63{bottom:384.657333pt;}
.y9d{bottom:385.150667pt;}
.y140{bottom:385.962667pt;}
.y2bd{bottom:386.937333pt;}
.y3{bottom:388.610667pt;}
.y30{bottom:389.294667pt;}
.y299{bottom:389.624000pt;}
.yc9{bottom:390.124000pt;}
.y262{bottom:390.508000pt;}
.y17e{bottom:390.582667pt;}
.y1e6{bottom:391.773333pt;}
.ycc{bottom:393.989333pt;}
.y128{bottom:394.576000pt;}
.y9b{bottom:394.641333pt;}
.ye2{bottom:396.134667pt;}
.y1e5{bottom:397.114667pt;}
.yc8{bottom:397.626667pt;}
.y2ed{bottom:400.597333pt;}
.y227{bottom:402.337333pt;}
.ycb{bottom:403.068000pt;}
.y2bc{bottom:403.960000pt;}
.y210{bottom:404.506801pt;}
.y2{bottom:404.510667pt;}
.y13f{bottom:404.533333pt;}
.y1a2{bottom:406.978667pt;}
.y2f{bottom:407.865333pt;}
.y298{bottom:408.194667pt;}
.y17d{bottom:409.153333pt;}
.y261{bottom:413.062667pt;}
.yca{bottom:413.109333pt;}
.y127{bottom:413.146667pt;}
.ye1{bottom:413.230667pt;}
.yc7{bottom:413.298667pt;}
.y19e{bottom:415.414667pt;}
.y2ec{bottom:417.620000pt;}
.y20f{bottom:419.050796pt;}
.y62{bottom:419.166667pt;}
.y1e4{bottom:420.018667pt;}
.yc6{bottom:420.721333pt;}
.y226{bottom:420.906667pt;}
.y2bb{bottom:420.982667pt;}
.y13e{bottom:423.104000pt;}
.y1{bottom:425.725333pt;}
.y9a{bottom:426.310667pt;}
.y297{bottom:426.765333pt;}
.y17c{bottom:427.722667pt;}
.y1a1{bottom:429.321333pt;}
.y2e{bottom:430.420000pt;}
.yc5{bottom:431.386667pt;}
.y126{bottom:431.717333pt;}
.y2eb{bottom:434.642667pt;}
.y286{bottom:436.015993pt;}
.y61{bottom:437.737333pt;}
.y2ba{bottom:438.005333pt;}
.y225{bottom:439.477333pt;}
.y83{bottom:439.716000pt;}
.y13d{bottom:441.673333pt;}
.y1e3{bottom:442.360000pt;}
.y99{bottom:443.406667pt;}
.y296{bottom:445.334667pt;}
.y17b{bottom:446.293333pt;}
.y260{bottom:447.573333pt;}
.yc4{bottom:449.957333pt;}
.y125{bottom:450.286667pt;}
.y20c{bottom:451.102784pt;}
.y1a0{bottom:451.662667pt;}
.y2ea{bottom:451.665333pt;}
.y2b9{bottom:455.028000pt;}
.y60{bottom:456.308000pt;}
.y224{bottom:458.048000pt;}
.y209{bottom:458.374818pt;}
.y13c{bottom:460.244000pt;}
.y98{bottom:460.502667pt;}
.y295{bottom:463.905333pt;}
.y1e2{bottom:464.702667pt;}
.y17a{bottom:464.864000pt;}
.y25f{bottom:466.144000pt;}
.yc3{bottom:468.528000pt;}
.y2e9{bottom:468.688000pt;}
.y124{bottom:468.857333pt;}
.y2b8{bottom:472.050667pt;}
.y82{bottom:473.761333pt;}
.y19f{bottom:474.005333pt;}
.y5f{bottom:474.877333pt;}
.y223{bottom:476.617333pt;}
.y1fc{bottom:478.441328pt;}
.y239{bottom:480.448008pt;}
.y13b{bottom:482.800000pt;}
.y25e{bottom:484.713333pt;}
.y2e8{bottom:485.710667pt;}
.y294{bottom:486.460000pt;}
.y1e1{bottom:487.045333pt;}
.y2b7{bottom:489.073333pt;}
.y81{bottom:492.332000pt;}
.y27e{bottom:492.568000pt;}
.y5e{bottom:493.448000pt;}
.y1fb{bottom:494.601322pt;}
.y222{bottom:495.188000pt;}
.y123{bottom:495.350667pt;}
.y19d{bottom:496.348000pt;}
.y179{bottom:496.533333pt;}
.y2d{bottom:500.830667pt;}
.yc2{bottom:502.573333pt;}
.y2e7{bottom:502.733333pt;}
.y25d{bottom:503.284000pt;}
.y122{bottom:504.464000pt;}
.y2b6{bottom:506.096000pt;}
.y164{bottom:506.895984pt;}
.y80{bottom:510.901333pt;}
.y27d{bottom:511.138667pt;}
.yfd{bottom:511.398666pt;}
.y5d{bottom:512.018667pt;}
.y178{bottom:513.628000pt;}
.y221{bottom:513.758667pt;}
.y1e0{bottom:516.081333pt;}
.y293{bottom:518.129333pt;}
.y19c{bottom:518.690667pt;}
.y19a{bottom:518.968000pt;}
.y2c{bottom:519.401333pt;}
.y2e6{bottom:519.756000pt;}
.y25c{bottom:521.854667pt;}
.y13a{bottom:522.438667pt;}
.y2b5{bottom:523.118667pt;}
.y1b9{bottom:526.294667pt;}
.y7f{bottom:529.472000pt;}
.y27c{bottom:529.709333pt;}
.y5c{bottom:530.589333pt;}
.y220{bottom:532.329333pt;}
.y176{bottom:533.565333pt;}
.y292{bottom:535.225333pt;}
.yc1{bottom:536.618667pt;}
.y2e5{bottom:536.778667pt;}
.y24f{bottom:537.673333pt;}
.y139{bottom:539.534667pt;}
.y25b{bottom:540.425333pt;}
.y19b{bottom:541.032000pt;}
.y121{bottom:543.277333pt;}
.y2b4{bottom:544.126667pt;}
.y1b8{bottom:544.864000pt;}
.y7e{bottom:548.042667pt;}
.y27b{bottom:548.280000pt;}
.y1df{bottom:549.062667pt;}
.y5b{bottom:549.158667pt;}
.y21f{bottom:550.898667pt;}
.y2e4{bottom:553.801333pt;}
.y2b{bottom:553.912000pt;}
.y24e{bottom:556.244000pt;}
.y138{bottom:556.630667pt;}
.y291{bottom:560.361327pt;}
.ybe{bottom:561.132000pt;}
.y120{bottom:561.848000pt;}
.yc0{bottom:562.146667pt;}
.y199{bottom:563.374667pt;}
.y1b7{bottom:563.434667pt;}
.y7d{bottom:566.612000pt;}
.y27a{bottom:566.849333pt;}
.y1de{bottom:567.633333pt;}
.y5a{bottom:567.729333pt;}
.y21e{bottom:569.469333pt;}
.ybf{bottom:570.210667pt;}
.y2e3{bottom:570.824000pt;}
.ybd{bottom:571.258667pt;}
.y25a{bottom:572.093333pt;}
.y2a{bottom:572.481333pt;}
.y24d{bottom:574.813333pt;}
.y2b3{bottom:578.637333pt;}
.y11f{bottom:580.418667pt;}
.y1b6{bottom:582.005333pt;}
.y7c{bottom:585.182667pt;}
.y279{bottom:585.420000pt;}
.y198{bottom:585.717333pt;}
.y1dd{bottom:586.204000pt;}
.y59{bottom:586.300000pt;}
.y2e2{bottom:587.846667pt;}
.y21d{bottom:588.040000pt;}
.y259{bottom:589.189333pt;}
.y29{bottom:591.052000pt;}
.y24c{bottom:593.384000pt;}
.ybc{bottom:594.997333pt;}
.y195{bottom:598.322667pt;}
.y1b5{bottom:600.574667pt;}
.y1f7{bottom:602.090686pt;}
.y7b{bottom:603.753333pt;}
.y2b2{bottom:603.940000pt;}
.y278{bottom:603.990667pt;}
.y1dc{bottom:604.773333pt;}
.y58{bottom:604.869333pt;}
.y21c{bottom:606.609333pt;}
.y197{bottom:608.117333pt;}
.y28{bottom:609.622667pt;}
.y11e{bottom:610.937333pt;}
.y24b{bottom:611.954667pt;}
.y258{bottom:612.650675pt;}
.ybb{bottom:613.566667pt;}
.y11d{bottom:615.520000pt;}
.y20d{bottom:617.050796pt;}
.y1b4{bottom:619.145333pt;}
.y285{bottom:620.066667pt;}
.y2b1{bottom:621.272000pt;}
.y2e1{bottom:621.892000pt;}
.y7a{bottom:622.324000pt;}
.y277{bottom:622.560000pt;}
.y1db{bottom:623.344000pt;}
.y57{bottom:623.440000pt;}
.y21b{bottom:625.180000pt;}
.y27{bottom:628.192000pt;}
.y11a{bottom:629.328000pt;}
.y196{bottom:630.458667pt;}
.y24a{bottom:630.525333pt;}
.y20a{bottom:631.594790pt;}
.y11c{bottom:634.604000pt;}
.y284{bottom:637.162667pt;}
.y1b3{bottom:637.716000pt;}
.y2e0{bottom:638.914667pt;}
.y79{bottom:640.893333pt;}
.y276{bottom:641.130667pt;}
.y56{bottom:642.010667pt;}
.yb9{bottom:642.190667pt;}
.yba{bottom:643.205333pt;}
.y21a{bottom:643.750667pt;}
.y11b{bottom:644.421333pt;}
.y2b0{bottom:646.574667pt;}
.y26{bottom:646.762667pt;}
.yb8{bottom:651.269333pt;}
.yb7{bottom:652.318667pt;}
.y1d9{bottom:652.401333pt;}
.y194{bottom:652.801333pt;}
.y2df{bottom:655.937333pt;}
.y1b2{bottom:660.270667pt;}
.y55{bottom:660.580000pt;}
.y1da{bottom:661.513333pt;}
.y1d8{bottom:661.514667pt;}
.y249{bottom:662.104000pt;}
.y78{bottom:663.449333pt;}
.y2af{bottom:663.906667pt;}
.y238{bottom:664.430667pt;}
.y25{bottom:665.333333pt;}
.y219{bottom:666.305333pt;}
.y119{bottom:671.950667pt;}
.y275{bottom:672.800000pt;}
.y2de{bottom:672.961333pt;}
.y163{bottom:675.108000pt;}
.y193{bottom:675.144000pt;}
.yfc{bottom:677.368000pt;}
.y54{bottom:679.150667pt;}
.y248{bottom:679.200000pt;}
.y2ae{bottom:681.238667pt;}
.y237{bottom:681.526667pt;}
.y24{bottom:683.904000pt;}
.y2dd{bottom:689.984000pt;}
.y118{bottom:690.521333pt;}
.yb6{bottom:691.530667pt;}
.y1b1{bottom:691.940000pt;}
.y77{bottom:692.022667pt;}
.y162{bottom:693.677333pt;}
.yfb{bottom:695.938667pt;}
.y1d7{bottom:696.968000pt;}
.y192{bottom:697.485333pt;}
.y274{bottom:697.499961pt;}
.y53{bottom:697.721333pt;}
.y18f{bottom:698.078667pt;}
.y2ad{bottom:698.570667pt;}
.y247{bottom:703.409315pt;}
.y236{bottom:704.869327pt;}
.y2dc{bottom:707.006667pt;}
.y76{bottom:709.118667pt;}
.yb5{bottom:710.101333pt;}
.y23{bottom:710.444000pt;}
.y161{bottom:712.248000pt;}
.yfa{bottom:714.508000pt;}
.y1f9{bottom:714.601363pt;}
.y52{bottom:716.290667pt;}
.y117{bottom:717.061333pt;}
.y191{bottom:719.828000pt;}
.y290{bottom:720.361327pt;}
.y2ac{bottom:723.873333pt;}
.y2db{bottom:724.029333pt;}
.y116{bottom:726.174667pt;}
.y160{bottom:730.818667pt;}
.y1f8{bottom:730.841353pt;}
.y1d6{bottom:731.013333pt;}
.y74{bottom:732.233346pt;}
.yf9{bottom:733.078667pt;}
.y51{bottom:734.861333pt;}
.y2da{bottom:741.052000pt;}
.y2ab{bottom:741.205333pt;}
.y190{bottom:742.170667pt;}
.yb4{bottom:744.146667pt;}
.y22{bottom:746.017333pt;}
.y72{bottom:750.153350pt;}
.y50{bottom:753.432000pt;}
.yf8{bottom:756.909333pt;}
.y2d9{bottom:758.074667pt;}
.y2aa{bottom:758.537333pt;}
.y21{bottom:760.362667pt;}
.y15f{bottom:762.488000pt;}
.y18e{bottom:764.513333pt;}
.y115{bottom:764.902667pt;}
.y1d5{bottom:765.058667pt;}
.yf7{bottom:766.021333pt;}
.y4f{bottom:772.002667pt;}
.y257{bottom:772.677327pt;}
.y20{bottom:774.709333pt;}
.y2d8{bottom:775.097333pt;}
.y2a9{bottom:775.870667pt;}
.yb3{bottom:778.192000pt;}
.y1f{bottom:778.566667pt;}
.y14e{bottom:783.040002pt;}
.y114{bottom:783.472000pt;}
.y1e{bottom:789.056000pt;}
.y4e{bottom:790.572000pt;}
.y2d7{bottom:792.120000pt;}
.y18d{bottom:793.549333pt;}
.yb2{bottom:796.762667pt;}
.y1d4{bottom:799.104000pt;}
.y113{bottom:802.042667pt;}
.y1d{bottom:803.402667pt;}
.y4d{bottom:809.142667pt;}
.yb1{bottom:815.332000pt;}
.y97{bottom:819.806667pt;}
.y1c{bottom:821.605333pt;}
.y18c{bottom:823.070667pt;}
.y2d6{bottom:826.165333pt;}
.y112{bottom:826.885333pt;}
.y4c{bottom:827.713333pt;}
.y1b{bottom:832.094667pt;}
.y1d3{bottom:833.149333pt;}
.yb0{bottom:833.902667pt;}
.y111{bottom:835.998667pt;}
.yf6{bottom:836.997333pt;}
.y96{bottom:838.377333pt;}
.y18b{bottom:841.640000pt;}
.y2d5{bottom:843.188000pt;}
.y4b{bottom:846.282667pt;}
.y175{bottom:848.513333pt;}
.y1a{bottom:850.298667pt;}
.yaf{bottom:852.473333pt;}
.yf5{bottom:855.568000pt;}
.y110{bottom:856.853333pt;}
.y95{bottom:856.946667pt;}
.y2d4{bottom:860.210667pt;}
.y1d2{bottom:861.773333pt;}
.y273{bottom:862.060020pt;}
.y246{bottom:863.436008pt;}
.y4a{bottom:864.853333pt;}
.y235{bottom:864.869327pt;}
.y174{bottom:868.862667pt;}
.y1d1{bottom:870.885333pt;}
.yae{bottom:871.044000pt;}
.y18a{bottom:871.661333pt;}
.yf4{bottom:874.138667pt;}
.y10f{bottom:875.424000pt;}
.y94{bottom:875.517333pt;}
.y2d3{bottom:877.233333pt;}
.y173{bottom:877.976000pt;}
.y189{bottom:880.773333pt;}
.y49{bottom:883.424000pt;}
.yad{bottom:889.613333pt;}
.y19{bottom:890.010667pt;}
.yf3{bottom:892.709333pt;}
.y93{bottom:894.088000pt;}
.y2d2{bottom:894.256000pt;}
.y172{bottom:899.109333pt;}
.y48{bottom:901.993333pt;}
.y1d0{bottom:906.338667pt;}
.y10d{bottom:907.408000pt;}
.yac{bottom:908.184000pt;}
.yf2{bottom:911.278667pt;}
.y92{bottom:912.658667pt;}
.y171{bottom:917.680000pt;}
.y47{bottom:920.564000pt;}
.y18{bottom:924.521333pt;}
.y10c{bottom:925.978667pt;}
.yab{bottom:926.754667pt;}
.y2d1{bottom:928.301333pt;}
.yf1{bottom:929.849333pt;}
.y91{bottom:931.228000pt;}
.y10e{bottom:932.745333pt;}
.y1cd{bottom:933.608000pt;}
.y1cf{bottom:934.962667pt;}
.y46{bottom:939.134667pt;}
.y10b{bottom:940.468000pt;}
.y1cc{bottom:944.074667pt;}
.y2d0{bottom:945.324000pt;}
.y170{bottom:946.918667pt;}
.yef{bottom:948.420000pt;}
.y14d{bottom:949.768000pt;}
.y10a{bottom:951.214667pt;}
.y108{bottom:952.237333pt;}
.y17{bottom:952.377333pt;}
.y90{bottom:952.876000pt;}
.y16f{bottom:956.030667pt;}
.yf0{bottom:957.498667pt;}
.y45{bottom:957.704000pt;}
.y1ce{bottom:957.882667pt;}
.y8d{bottom:958.077333pt;}
.y14c{bottom:958.880000pt;}
.yaa{bottom:960.800000pt;}
.y2cf{bottom:962.346667pt;}
.y109{bottom:964.193333pt;}
.y8f{bottom:964.426667pt;}
.y8c{bottom:967.189333pt;}
.y44{bottom:976.274667pt;}
.y2ce{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.y8e{bottom:981.536000pt;}
.y107{bottom:990.845333pt;}
.ye0{bottom:993.874667pt;}
.y43{bottom:994.845333pt;}
.y2cd{bottom:996.392000pt;}
.y106{bottom:1009.416000pt;}
.yde{bottom:1012.445333pt;}
.y42{bottom:1013.414667pt;}
.ydf{bottom:1021.524000pt;}
.y41{bottom:1066.841333pt;}
.h5b{height:14.544000pt;}
.h5e{height:14.617200pt;}
.h56{height:16.160000pt;}
.h54{height:16.241333pt;}
.h11{height:17.921333pt;}
.h3d{height:21.966196pt;}
.h57{height:22.284493pt;}
.h1a{height:22.515926pt;}
.h8{height:23.209028pt;}
.h2a{height:23.368431pt;}
.h28{height:23.688431pt;}
.h3e{height:26.217754pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h1e{height:29.397999pt;}
.h35{height:29.599908pt;}
.h9{height:30.945242pt;}
.hd{height:31.157778pt;}
.h2f{height:31.376710pt;}
.h59{height:31.408594pt;}
.h20{height:31.558400pt;}
.h5c{height:31.809375pt;}
.h3c{height:32.594906pt;}
.h31{height:34.000589pt;}
.h13{height:34.813542pt;}
.h52{height:34.898438pt;}
.h14{height:35.052646pt;}
.h55{height:35.343750pt;}
.h5f{height:37.156762pt;}
.h22{height:37.778179pt;}
.ha{height:38.256384pt;}
.hb{height:38.681455pt;}
.h10{height:38.853594pt;}
.h4{height:38.947124pt;}
.h3a{height:38.952458pt;}
.h12{height:39.349375pt;}
.h50{height:40.809733pt;}
.h15{height:40.964400pt;}
.h4a{height:40.969523pt;}
.h1b{height:40.969733pt;}
.he{height:41.285014pt;}
.h16{height:41.524400pt;}
.h18{height:42.738953pt;}
.h2b{height:43.701242pt;}
.h29{height:45.659733pt;}
.hc{height:45.907968pt;}
.h4f{height:48.085999pt;}
.h4e{height:48.091332pt;}
.h7{height:48.365611pt;}
.h49{height:50.935002pt;}
.h1f{height:57.799269pt;}
.h36{height:61.128021pt;}
.h4d{height:61.133355pt;}
.h21{height:65.712666pt;}
.h23{height:65.717999pt;}
.h30{height:67.873067pt;}
.h2e{height:67.878400pt;}
.h5{height:68.861952pt;}
.h38{height:74.649455pt;}
.h1c{height:74.654788pt;}
.h24{height:74.915124pt;}
.h26{height:74.920458pt;}
.h27{height:75.129455pt;}
.h25{height:75.134788pt;}
.h39{height:75.400458pt;}
.h4c{height:76.513067pt;}
.h40{height:76.638788pt;}
.h32{height:76.937733pt;}
.h43{height:77.492400pt;}
.h44{height:77.497733pt;}
.h1d{height:77.972400pt;}
.h42{height:79.604400pt;}
.h4b{height:82.390400pt;}
.h46{height:84.777733pt;}
.h47{height:84.948122pt;}
.h6{height:87.054592pt;}
.h2d{height:94.915124pt;}
.hf{height:110.559998pt;}
.h37{height:112.244122pt;}
.h45{height:113.385733pt;}
.h2c{height:130.616431pt;}
.h3b{height:131.339998pt;}
.h48{height:141.032000pt;}
.h34{height:144.506663pt;}
.h33{height:144.559998pt;}
.h3f{height:144.826670pt;}
.h61{height:160.000000pt;}
.h62{height:160.001333pt;}
.h60{height:160.026662pt;}
.h63{height:164.000000pt;}
.h64{height:164.559998pt;}
.h19{height:190.146006pt;}
.h5d{height:198.000000pt;}
.h17{height:198.142853pt;}
.h5a{height:212.250010pt;}
.h53{height:220.000000pt;}
.h41{height:293.933333pt;}
.h58{height:656.008800pt;}
.h51{height:716.512000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.wf{width:234.307200pt;}
.w10{width:235.634394pt;}
.w2{width:257.548000pt;}
.w3{width:259.022660pt;}
.wc{width:259.466667pt;}
.wd{width:261.471993pt;}
.w5{width:290.976408pt;}
.w4{width:300.286800pt;}
.w8{width:333.338667pt;}
.w6{width:336.000000pt;}
.w9{width:352.581333pt;}
.w17{width:370.138667pt;}
.w14{width:370.617333pt;}
.w12{width:370.733333pt;}
.w18{width:370.994667pt;}
.w11{width:371.200000pt;}
.w15{width:371.780000pt;}
.w13{width:373.526667pt;}
.w16{width:379.345333pt;}
.w7{width:438.354673pt;}
.wa{width:465.594686pt;}
.we{width:470.014800pt;}
.wb{width:521.020000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xeb{left:11.238281pt;}
.x111{left:15.951742pt;}
.x114{left:37.730794pt;}
.x1{left:47.621333pt;}
.xed{left:50.290670pt;}
.x4f{left:57.264834pt;}
.x112{left:61.195597pt;}
.x140{left:76.309333pt;}
.xec{left:83.858540pt;}
.x113{left:107.540934pt;}
.x136{left:110.108409pt;}
.x139{left:112.175977pt;}
.x135{left:116.444407pt;}
.x43{left:118.829332pt;}
.x12f{left:121.468010pt;}
.x44{left:122.399984pt;}
.x130{left:124.639974pt;}
.xe9{left:134.375468pt;}
.xea{left:139.645081pt;}
.xe7{left:141.843323pt;}
.xe8{left:145.063456pt;}
.x110{left:149.762797pt;}
.x10f{left:163.451355pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.xf0{left:222.845723pt;}
.xf6{left:223.750667pt;}
.xe5{left:226.149327pt;}
.x4e{left:228.747600pt;}
.x138{left:230.471997pt;}
.x107{left:232.482667pt;}
.x3{left:239.924000pt;}
.x127{left:244.924000pt;}
.x10b{left:246.756000pt;}
.x11e{left:248.100000pt;}
.x5{left:250.204000pt;}
.x10e{left:253.340000pt;}
.x42{left:256.959961pt;}
.x84{left:258.173333pt;}
.x132{left:259.897333pt;}
.xac{left:261.205333pt;}
.x11f{left:262.306667pt;}
.x6c{left:263.602667pt;}
.x2e{left:265.664000pt;}
.xc0{left:267.225333pt;}
.xee{left:269.526794pt;}
.x3d{left:270.770667pt;}
.xef{left:272.747091pt;}
.x85{left:275.129333pt;}
.x106{left:276.252000pt;}
.xe6{left:277.698263pt;}
.x2f{left:278.948000pt;}
.x30{left:282.334667pt;}
.x117{left:285.842667pt;}
.xb3{left:287.104000pt;}
.x57{left:290.174667pt;}
.xfb{left:292.206667pt;}
.xc2{left:293.124000pt;}
.x31{left:295.618667pt;}
.xb8{left:296.674667pt;}
.x4d{left:297.816912pt;}
.x3e{left:299.038667pt;}
.x86{left:300.410667pt;}
.xc3{left:301.969333pt;}
.x9f{left:303.758667pt;}
.x4b{left:305.085333pt;}
.x34{left:305.985333pt;}
.x3f{left:307.897333pt;}
.xa0{left:310.008000pt;}
.x119{left:313.241333pt;}
.x12d{left:314.449333pt;}
.x35{left:319.268000pt;}
.x11d{left:320.221333pt;}
.x11c{left:322.193333pt;}
.xb9{left:323.760000pt;}
.x83{left:325.212000pt;}
.x48{left:326.585333pt;}
.x4c{left:327.509333pt;}
.x12e{left:330.038667pt;}
.x1b{left:331.400000pt;}
.xf1{left:332.966667pt;}
.xb6{left:335.130667pt;}
.xa5{left:340.669333pt;}
.xc4{left:342.909333pt;}
.x1c{left:344.684000pt;}
.x11a{left:346.588000pt;}
.x1d{left:348.070667pt;}
.x40{left:350.385333pt;}
.x3b{left:352.001333pt;}
.xa{left:352.973333pt;}
.x95{left:355.749333pt;}
.x21{left:356.998667pt;}
.x73{left:358.180000pt;}
.xb{left:359.614667pt;}
.x1e{left:361.354667pt;}
.xb7{left:362.630667pt;}
.x8a{left:364.306667pt;}
.xc{left:366.389333pt;}
.xa6{left:367.990667pt;}
.x22{left:370.282667pt;}
.x10c{left:371.716000pt;}
.x23{left:373.669333pt;}
.x8f{left:375.036000pt;}
.xd6{left:375.956000pt;}
.x74{left:377.884000pt;}
.xd{left:379.673333pt;}
.x58{left:381.302667pt;}
.x7b{left:382.777333pt;}
.x24{left:386.953333pt;}
.x9a{left:388.004000pt;}
.x25{left:390.341333pt;}
.x102{left:391.834667pt;}
.x53{left:393.288000pt;}
.xa7{left:394.830667pt;}
.x5b{left:396.832000pt;}
.xe2{left:398.290667pt;}
.x32{left:400.618667pt;}
.x7a{left:402.409333pt;}
.x26{left:403.624000pt;}
.x45{left:404.912000pt;}
.xca{left:406.598667pt;}
.x92{left:407.888000pt;}
.x69{left:409.440000pt;}
.xbd{left:411.814667pt;}
.xf7{left:412.838667pt;}
.x33{left:413.901333pt;}
.x97{left:415.350667pt;}
.x46{left:416.673333pt;}
.x96{left:417.782667pt;}
.x72{left:419.753333pt;}
.x7d{left:422.144000pt;}
.x13f{left:423.112000pt;}
.x93{left:425.096000pt;}
.xc6{left:426.718667pt;}
.x11b{left:428.582667pt;}
.x108{left:429.558667pt;}
.xfc{left:431.460000pt;}
.x109{left:432.526667pt;}
.x5d{left:433.452000pt;}
.xde{left:435.224000pt;}
.xd9{left:436.537333pt;}
.xcd{left:438.366667pt;}
.xf8{left:439.277333pt;}
.x120{left:440.592000pt;}
.x87{left:442.210667pt;}
.x91{left:443.484000pt;}
.xbc{left:445.008000pt;}
.xc9{left:447.178667pt;}
.x7e{left:448.530667pt;}
.x10a{left:449.422667pt;}
.xff{left:451.578667pt;}
.x54{left:453.665333pt;}
.x105{left:454.988000pt;}
.x137{left:456.239073pt;}
.xba{left:457.282667pt;}
.x118{left:459.348000pt;}
.xd5{left:460.290667pt;}
.x77{left:461.385333pt;}
.x9c{left:462.409333pt;}
.x103{left:463.562667pt;}
.xfd{left:464.788000pt;}
.x6a{left:466.669333pt;}
.x6{left:468.557333pt;}
.x104{left:469.588000pt;}
.xf9{left:471.844000pt;}
.xe{left:472.998667pt;}
.xad{left:474.214667pt;}
.x7{left:475.200000pt;}
.x6f{left:476.153333pt;}
.xc7{left:477.201333pt;}
.xa1{left:478.402667pt;}
.x41{left:479.488007pt;}
.xcf{left:480.924000pt;}
.x8{left:481.868000pt;}
.xb4{left:482.814667pt;}
.xbb{left:484.802667pt;}
.xf{left:486.281333pt;}
.xd0{left:487.174667pt;}
.x9{left:488.509333pt;}
.xbe{left:489.697333pt;}
.xa2{left:491.956000pt;}
.x10{left:493.029333pt;}
.x14{left:494.930667pt;}
.xc5{left:496.276000pt;}
.xa3{left:497.368000pt;}
.x70{left:499.313333pt;}
.xc8{left:500.616000pt;}
.xbf{left:501.758667pt;}
.xf5{left:503.209333pt;}
.x7f{left:504.209333pt;}
.x11{left:506.313333pt;}
.x9b{left:507.240000pt;}
.x15{left:508.213333pt;}
.x94{left:510.749333pt;}
.x6b{left:512.182667pt;}
.x16{left:514.988000pt;}
.xae{left:517.078667pt;}
.xd7{left:518.534667pt;}
.x18{left:519.708000pt;}
.x56{left:522.014667pt;}
.x55{left:524.100000pt;}
.x90{left:525.096000pt;}
.x19{left:526.482667pt;}
.x17{left:528.272000pt;}
.x88{left:529.233333pt;}
.x131{left:530.309333pt;}
.x71{left:532.086667pt;}
.xb0{left:533.976000pt;}
.x13c{left:534.868000pt;}
.x10d{left:535.984000pt;}
.x59{left:538.722667pt;}
.x1a{left:539.766667pt;}
.x29{left:541.026667pt;}
.x121{left:543.405333pt;}
.x2a{left:544.294667pt;}
.x98{left:545.968000pt;}
.xd8{left:547.700000pt;}
.x12a{left:549.084000pt;}
.x134{left:550.020000pt;}
.x8c{left:550.920000pt;}
.x47{left:553.626667pt;}
.x5a{left:555.212000pt;}
.x2b{left:557.577333pt;}
.x2c{left:560.845333pt;}
.xab{left:563.249333pt;}
.x75{left:565.346667pt;}
.x12b{left:566.921333pt;}
.x61{left:567.841333pt;}
.x5e{left:569.245333pt;}
.x8b{left:572.198667pt;}
.x2d{left:574.129333pt;}
.x100{left:575.276000pt;}
.x7c{left:577.530667pt;}
.x3c{left:579.664000pt;}
.x36{left:584.809333pt;}
.x13d{left:586.542667pt;}
.x122{left:588.798667pt;}
.x8d{left:591.609333pt;}
.x5f{left:593.225333pt;}
.x37{left:595.073333pt;}
.xdf{left:596.264000pt;}
.x62{left:598.660000pt;}
.xce{left:600.720000pt;}
.x123{left:602.636000pt;}
.xfe{left:603.553333pt;}
.x82{left:606.653333pt;}
.x27{left:607.785333pt;}
.xdc{left:609.013333pt;}
.x13b{left:610.612000pt;}
.x8e{left:612.236000pt;}
.xcb{left:615.138667pt;}
.x101{left:616.417333pt;}
.xa8{left:618.541333pt;}
.x28{left:621.069333pt;}
.x5c{left:623.012000pt;}
.x66{left:624.286667pt;}
.xb5{left:626.381333pt;}
.x13e{left:627.465333pt;}
.x76{left:630.096000pt;}
.xf2{left:632.701333pt;}
.x99{left:635.598667pt;}
.xd2{left:638.237333pt;}
.xcc{left:640.106667pt;}
.x50{left:642.908000pt;}
.xa9{left:645.421333pt;}
.x124{left:647.684000pt;}
.x68{left:649.606667pt;}
.x67{left:651.665333pt;}
.xf3{left:655.902667pt;}
.x78{left:658.466667pt;}
.x12c{left:660.354667pt;}
.x125{left:661.293333pt;}
.x51{left:663.316000pt;}
.xaa{left:665.078667pt;}
.xf4{left:666.738667pt;}
.x128{left:668.417333pt;}
.x1f{left:669.593333pt;}
.x13a{left:671.568000pt;}
.xd3{left:672.545333pt;}
.x116{left:673.694667pt;}
.x49{left:676.817333pt;}
.x6d{left:678.778667pt;}
.x3a{left:679.758667pt;}
.xda{left:681.850667pt;}
.x20{left:682.876000pt;}
.xe3{left:686.340000pt;}
.x79{left:687.425333pt;}
.x12{left:689.109333pt;}
.x80{left:690.658667pt;}
.x133{left:691.760000pt;}
.x6e{left:693.301333pt;}
.xb1{left:695.289333pt;}
.x4a{left:697.096000pt;}
.x64{left:699.320000pt;}
.x63{left:701.378667pt;}
.x13{left:702.393333pt;}
.xdb{left:703.484000pt;}
.x81{left:704.620000pt;}
.x52{left:706.532000pt;}
.xd1{left:708.381333pt;}
.xa4{left:710.676000pt;}
.xaf{left:712.386667pt;}
.x38{left:714.085333pt;}
.x126{left:715.398667pt;}
.xfa{left:716.362667pt;}
.x115{left:718.240000pt;}
.xe4{left:719.576000pt;}
.x39{left:720.893333pt;}
.x129{left:721.974667pt;}
.xd4{left:723.504000pt;}
.x60{left:724.913333pt;}
.x65{left:726.194667pt;}
.xe0{left:727.152000pt;}
.x89{left:732.870667pt;}
.xb2{left:734.433333pt;}
.xc1{left:735.730667pt;}
.x9d{left:737.144000pt;}
.xe1{left:740.436000pt;}
.x9e{left:743.393333pt;}
.xdd{left:744.637333pt;}
}




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