
    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_021be67580ef286fea707799.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_1e1ef92e6ac445b79e0d47a9.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_152ee583bd5ebbc282257895.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_3c6b627175120ad82492a1f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000488;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_7746ca69924ad6edc99abdcf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_330246aa694aa8d49a764f42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.206055;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_e5c877a52687abcdf46ac61a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010254;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_ffd9810092548dd961f8f91c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_4678dfeced5828b778b58edb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3c6b627175120ad82492a1f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_39d91be2d69e5a5aa1b08bd9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2b369c84e9e27af81d48efc3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_ffd9810092548dd961f8f91c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_6b73ab43aeb3ea6a2c70be15.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.010254;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_3c6b627175120ad82492a1f5.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_39d91be2d69e5a5aa1b08bd9.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2b369c84e9e27af81d48efc3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_ffd9810092548dd961f8f91c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727539;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_6b73ab43aeb3ea6a2c70be15.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.010254;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_162147cf35e7321ceda01e14.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;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_f68463889a112709eca77fbe.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_97df9847b81f6f72fad700b0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;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_ffd9810092548dd961f8f91c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.727539;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_9f5f333a27885ccb82223fed.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;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_779b6ba2b2d0e9b3531a18f0.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.010254;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_4793fe3125caf9d3b2e1e436.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666000;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_f848fe0800dbb01e3200cecb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000488;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_83424051cfdce14079555a75.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_d67ad52f545dcafb817fa73d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.206055;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_cef3512f356ed38e0de9bb23.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.010254;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_ffd9810092548dd961f8f91c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.727539;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_3c6b627175120ad82492a1f5.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000488;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_339b56a58415011c03692a5c.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_58a5ced81992ee9389bc91b9.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.206055;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_3274de684f4f034db5a7387e.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.010254;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_ffd9810092548dd961f8f91c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.727539;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;}
.m3{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);}
.m2a{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);}
.m1b{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);}
.m7{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);}
.m1a{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);}
.m14{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);}
.m1{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);}
.m13{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);}
.me{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);}
.m25{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);}
.m12{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);}
.mc{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);}
.m2{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);}
.m18{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);}
.m24{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);}
.m28{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);}
.m29{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);}
.m8{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);}
.m1f{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);}
.mf{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m1e{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);}
.m19{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);}
.m23{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);}
.m2b{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);}
.m1d{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);}
.m5{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);}
.m26{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);}
.m9{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);}
.m20{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);}
.m16{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);}
.m15{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);}
.ma{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);}
.m1c{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);}
.m17{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);}
.m21{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);}
.mb{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);}
.m6{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);}
.m4{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);}
.md{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);}
.v2{vertical-align:-17.364000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.488000px;}
.v5{vertical-align:14.512251px;}
.v4{vertical-align:16.628621px;}
.v1{vertical-align:21.696000px;}
.v6{vertical-align:35.868000px;}
.lsa9{letter-spacing:-0.408816px;}
.ls44{letter-spacing:-0.343886px;}
.ls68{letter-spacing:-0.311662px;}
.ls4e{letter-spacing:-0.300119px;}
.ls62{letter-spacing:-0.242404px;}
.ls99{letter-spacing:-0.234468px;}
.ls26{letter-spacing:-0.231462px;}
.ls46{letter-spacing:-0.218236px;}
.ls47{letter-spacing:-0.198396px;}
.ls55{letter-spacing:-0.190460px;}
.ls2c{letter-spacing:-0.185170px;}
.ls95{letter-spacing:-0.180360px;}
.ls92{letter-spacing:-0.174348px;}
.ls56{letter-spacing:-0.173146px;}
.ls64{letter-spacing:-0.167374px;}
.ls8f{letter-spacing:-0.156312px;}
.ls43{letter-spacing:-0.152104px;}
.ls9f{letter-spacing:-0.150300px;}
.ls9d{letter-spacing:-0.144288px;}
.ls2d{letter-spacing:-0.138877px;}
.ls63{letter-spacing:-0.138516px;}
.ls4d{letter-spacing:-0.132745px;}
.ls6a{letter-spacing:-0.126973px;}
.ls90{letter-spacing:-0.126252px;}
.ls25{letter-spacing:-0.125651px;}
.ls2e{letter-spacing:-0.119038px;}
.ls9e{letter-spacing:-0.114228px;}
.ls51{letter-spacing:-0.109659px;}
.ls45{letter-spacing:-0.105811px;}
.ls1d{letter-spacing:-0.099198px;}
.ls65{letter-spacing:-0.098116px;}
.ls9a{letter-spacing:-0.096192px;}
.ls52{letter-spacing:-0.092344px;}
.ls61{letter-spacing:-0.086573px;}
.ls2a{letter-spacing:-0.085972px;}
.lsaa{letter-spacing:-0.084168px;}
.ls6c{letter-spacing:-0.080801px;}
.ls21{letter-spacing:-0.079358px;}
.ls91{letter-spacing:-0.078156px;}
.ls67{letter-spacing:-0.075030px;}
.ls22{letter-spacing:-0.072745px;}
.ls28{letter-spacing:-0.066132px;}
.ls50{letter-spacing:-0.063487px;}
.ls54{letter-spacing:-0.057715px;}
.ls69{letter-spacing:-0.051944px;}
.ls98{letter-spacing:-0.048096px;}
.ls6b{letter-spacing:-0.046172px;}
.lsab{letter-spacing:-0.042084px;}
.ls27{letter-spacing:-0.039679px;}
.ls96{letter-spacing:-0.036072px;}
.ls53{letter-spacing:-0.034629px;}
.ls24{letter-spacing:-0.033066px;}
.lsa0{letter-spacing:-0.030060px;}
.ls5f{letter-spacing:-0.028858px;}
.lsad{letter-spacing:-0.027000px;}
.ls2b{letter-spacing:-0.026453px;}
.ls94{letter-spacing:-0.024048px;}
.ls4c{letter-spacing:-0.023086px;}
.ls41{letter-spacing:-0.021067px;}
.ls29{letter-spacing:-0.019840px;}
.lsa8{letter-spacing:-0.019152px;}
.ls49{letter-spacing:-0.018386px;}
.ls42{letter-spacing:-0.017820px;}
.ls4f{letter-spacing:-0.017315px;}
.ls93{letter-spacing:-0.016200px;}
.ls4b{letter-spacing:-0.015552px;}
.ls1e{letter-spacing:-0.013226px;}
.ls66{letter-spacing:-0.011543px;}
.ls1c{letter-spacing:-0.010534px;}
.ls8e{letter-spacing:-0.009576px;}
.ls1f{letter-spacing:-0.006613px;}
.ls9c{letter-spacing:-0.006012px;}
.ls57{letter-spacing:-0.005772px;}
.lsac{letter-spacing:-0.005400px;}
.ls7{letter-spacing:0.000000px;}
.ls6d{letter-spacing:0.000612px;}
.ls5d{letter-spacing:0.005184px;}
.ls7a{letter-spacing:0.005400px;}
.ls40{letter-spacing:0.005772px;}
.ls83{letter-spacing:0.006012px;}
.ls12{letter-spacing:0.006613px;}
.ls7b{letter-spacing:0.010800px;}
.ls5e{letter-spacing:0.011543px;}
.ls89{letter-spacing:0.012024px;}
.ls23{letter-spacing:0.013226px;}
.ls38{letter-spacing:0.015552px;}
.ls77{letter-spacing:0.016200px;}
.lsf{letter-spacing:0.017820px;}
.lse{letter-spacing:0.019840px;}
.ls3d{letter-spacing:0.023086px;}
.ls76{letter-spacing:0.024048px;}
.ls5c{letter-spacing:0.025920px;}
.ls19{letter-spacing:0.026453px;}
.lsa6{letter-spacing:0.027000px;}
.ls5b{letter-spacing:0.028858px;}
.ls39{letter-spacing:0.031104px;}
.ls7d{letter-spacing:0.032400px;}
.lsc{letter-spacing:0.033066px;}
.ls3c{letter-spacing:0.034629px;}
.ls33{letter-spacing:0.035640px;}
.ls7f{letter-spacing:0.036072px;}
.lsa7{letter-spacing:0.037800px;}
.ls14{letter-spacing:0.039679px;}
.ls3a{letter-spacing:0.040401px;}
.ls84{letter-spacing:0.042084px;}
.ls7e{letter-spacing:0.043200px;}
.ls3b{letter-spacing:0.046172px;}
.ls18{letter-spacing:0.046292px;}
.ls81{letter-spacing:0.048096px;}
.ls35{letter-spacing:0.050561px;}
.ls3e{letter-spacing:0.051944px;}
.lsa1{letter-spacing:0.052668px;}
.ls16{letter-spacing:0.052906px;}
.ls86{letter-spacing:0.054108px;}
.ls4a{letter-spacing:0.057715px;}
.ls30{letter-spacing:0.057935px;}
.lsd{letter-spacing:0.059519px;}
.ls85{letter-spacing:0.060120px;}
.ls70{letter-spacing:0.062244px;}
.ls59{letter-spacing:0.063487px;}
.ls11{letter-spacing:0.066132px;}
.ls8{letter-spacing:0.068468px;}
.ls7c{letter-spacing:0.070200px;}
.lsa4{letter-spacing:0.072144px;}
.lsb{letter-spacing:0.072745px;}
.ls88{letter-spacing:0.078156px;}
.ls80{letter-spacing:0.084168px;}
.ls15{letter-spacing:0.085972px;}
.ls58{letter-spacing:0.086573px;}
.ls74{letter-spacing:0.090180px;}
.ls1a{letter-spacing:0.092585px;}
.ls48{letter-spacing:0.099198px;}
.ls87{letter-spacing:0.102204px;}
.ls78{letter-spacing:0.113400px;}
.ls75{letter-spacing:0.120240px;}
.ls1b{letter-spacing:0.132264px;}
.ls13{letter-spacing:0.138877px;}
.ls79{letter-spacing:0.140400px;}
.ls8a{letter-spacing:0.150300px;}
.ls37{letter-spacing:0.160877px;}
.ls3f{letter-spacing:0.161603px;}
.ls9b{letter-spacing:0.162324px;}
.ls10{letter-spacing:0.165330px;}
.lsa3{letter-spacing:0.167580px;}
.lsa5{letter-spacing:0.168336px;}
.ls60{letter-spacing:0.173146px;}
.ls36{letter-spacing:0.174666px;}
.ls72{letter-spacing:0.177156px;}
.ls82{letter-spacing:0.180360px;}
.lsa2{letter-spacing:0.181944px;}
.ls32{letter-spacing:0.184338px;}
.ls34{letter-spacing:0.185170px;}
.ls71{letter-spacing:0.191520px;}
.ls73{letter-spacing:0.192384px;}
.lsa{letter-spacing:0.194872px;}
.ls17{letter-spacing:0.198396px;}
.ls31{letter-spacing:0.200138px;}
.ls9{letter-spacing:0.210672px;}
.ls2f{letter-spacing:0.597756px;}
.ls1{letter-spacing:2.989200px;}
.ls97{letter-spacing:5.140260px;}
.ls0{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.lsb8{letter-spacing:13.363086px;}
.lsb0{letter-spacing:13.397553px;}
.lsb2{letter-spacing:13.448400px;}
.lsb1{letter-spacing:13.454400px;}
.lsb7{letter-spacing:14.379812px;}
.ls6f{letter-spacing:14.585246px;}
.lsaf{letter-spacing:14.944200px;}
.lsb4{letter-spacing:15.215106px;}
.lsb6{letter-spacing:15.279812px;}
.lsb3{letter-spacing:15.509224px;}
.ls6e{letter-spacing:15.663483px;}
.ls20{letter-spacing:16.049880px;}
.lsae{letter-spacing:17.653376px;}
.ls3{letter-spacing:17.929200px;}
.ls8d{letter-spacing:20.047494px;}
.ls8c{letter-spacing:20.500435px;}
.lsb5{letter-spacing:21.832753px;}
.ls8b{letter-spacing:21.961982px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5a{letter-spacing:63.100028px;}
.ls5{letter-spacing:64.321654px;}
.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;}
}
.ws29{word-spacing:-66.132000px;}
.ws123{word-spacing:-60.120000px;}
.ws91{word-spacing:-57.715200px;}
.ws87{word-spacing:-16.533000px;}
.ws85{word-spacing:-16.513160px;}
.ws124{word-spacing:-15.120180px;}
.ws125{word-spacing:-15.042024px;}
.ws7c{word-spacing:-14.943900px;}
.wsd7{word-spacing:-14.601946px;}
.ws90{word-spacing:-14.428800px;}
.ws8e{word-spacing:-14.411485px;}
.ws1b0{word-spacing:-13.449600px;}
.ws27{word-spacing:-13.377672px;}
.ws83{word-spacing:-13.367138px;}
.ws28{word-spacing:-13.167000px;}
.ws120{word-spacing:-12.161520px;}
.ws16f{word-spacing:-12.151944px;}
.ws121{word-spacing:-11.970000px;}
.ws25{word-spacing:-11.955150px;}
.ws8a{word-spacing:-11.665866px;}
.ws8b{word-spacing:-11.491200px;}
.ws8{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws86{word-spacing:-9.900000px;}
.ws8f{word-spacing:-8.640000px;}
.ws57{word-spacing:-3.511609px;}
.ws53{word-spacing:-3.425638px;}
.ws52{word-spacing:-3.379345px;}
.ws54{word-spacing:-3.333053px;}
.ws10a{word-spacing:-3.168107px;}
.ws199{word-spacing:-3.048556px;}
.ws62{word-spacing:-2.975940px;}
.wse7{word-spacing:-2.885760px;}
.wse8{word-spacing:-2.856902px;}
.ws16b{word-spacing:-2.825640px;}
.ws1a0{word-spacing:-2.809453px;}
.ws5f{word-spacing:-2.711412px;}
.ws5e{word-spacing:-2.598988px;}
.ws198{word-spacing:-2.510575px;}
.wsf3{word-spacing:-2.366323px;}
.ws5a{word-spacing:-2.235262px;}
.ws5b{word-spacing:-2.228648px;}
.wsf4{word-spacing:-2.198949px;}
.ws17a{word-spacing:-2.104200px;}
.ws2b{word-spacing:-2.098138px;}
.ws12{word-spacing:-2.092146px;}
.ws40{word-spacing:-1.911215px;}
.ws6e{word-spacing:-1.878149px;}
.ws155{word-spacing:-1.869732px;}
.ws18f{word-spacing:-1.853044px;}
.ws157{word-spacing:-1.809612px;}
.ws31{word-spacing:-1.793268px;}
.ws3f{word-spacing:-1.778951px;}
.ws14b{word-spacing:-1.749492px;}
.ws158{word-spacing:-1.641276px;}
.ws89{word-spacing:-1.613941px;}
.wsb5{word-spacing:-1.587168px;}
.ws4a{word-spacing:-1.554102px;}
.ws4b{word-spacing:-1.514423px;}
.wsb4{word-spacing:-1.481357px;}
.ws1a6{word-spacing:-1.452557px;}
.ws156{word-spacing:-1.448892px;}
.wsd5{word-spacing:-1.385165px;}
.ws75{word-spacing:-1.374839px;}
.wsdf{word-spacing:-1.333221px;}
.wsd3{word-spacing:-1.321678px;}
.ws114{word-spacing:-1.315063px;}
.ws18a{word-spacing:-1.296000px;}
.wsd4{word-spacing:-1.292820px;}
.ws136{word-spacing:-1.268532px;}
.ws19a{word-spacing:-1.255288px;}
.ws189{word-spacing:-1.231200px;}
.ws35{word-spacing:-1.195512px;}
.ws137{word-spacing:-1.172340px;}
.ws1b{word-spacing:-1.135736px;}
.ws76{word-spacing:-1.075961px;}
.ws143{word-spacing:-0.961920px;}
.ws112{word-spacing:-0.896634px;}
.ws1a{word-spacing:-0.870729px;}
.wse3{word-spacing:-0.819556px;}
.ws2{word-spacing:-0.795013px;}
.ws1c{word-spacing:-0.777083px;}
.ws7a{word-spacing:-0.717307px;}
.ws178{word-spacing:-0.703404px;}
.ws1d1{word-spacing:-0.699379px;}
.ws14e{word-spacing:-0.685368px;}
.ws144{word-spacing:-0.673344px;}
.ws3{word-spacing:-0.669485px;}
.wsa1{word-spacing:-0.667933px;}
.ws161{word-spacing:-0.667332px;}
.ws79{word-spacing:-0.597756px;}
.ws14d{word-spacing:-0.589176px;}
.wsc0{word-spacing:-0.582924px;}
.ws160{word-spacing:-0.577152px;}
.wsc{word-spacing:-0.537980px;}
.ws7d{word-spacing:-0.478205px;}
.ws15d{word-spacing:-0.456912px;}
.ws74{word-spacing:-0.418429px;}
.ws3d{word-spacing:-0.363726px;}
.ws78{word-spacing:-0.358654px;}
.ws16a{word-spacing:-0.324648px;}
.ws1b5{word-spacing:-0.322790px;}
.ws38{word-spacing:-0.305474px;}
.ws15e{word-spacing:-0.300600px;}
.ws98{word-spacing:-0.300208px;}
.wse1{word-spacing:-0.300119px;}
.wsf{word-spacing:-0.298878px;}
.wsff{word-spacing:-0.288576px;}
.ws131{word-spacing:-0.277704px;}
.ws15b{word-spacing:-0.276552px;}
.ws176{word-spacing:-0.272916px;}
.ws1ba{word-spacing:-0.268992px;}
.wsb6{word-spacing:-0.261999px;}
.ws16{word-spacing:-0.239102px;}
.wse2{word-spacing:-0.230861px;}
.ws179{word-spacing:-0.222444px;}
.ws171{word-spacing:-0.215194px;}
.ws19{word-spacing:-0.179327px;}
.ws1b7{word-spacing:-0.161395px;}
.ws162{word-spacing:-0.150300px;}
.wse0{word-spacing:-0.150060px;}
.ws15f{word-spacing:-0.120240px;}
.ws18{word-spacing:-0.119551px;}
.ws126{word-spacing:-0.107597px;}
.ws39{word-spacing:-0.084269px;}
.ws99{word-spacing:-0.079002px;}
.ws132{word-spacing:-0.076608px;}
.ws177{word-spacing:-0.071820px;}
.wsb7{word-spacing:-0.068947px;}
.ws2a{word-spacing:-0.066132px;}
.ws122{word-spacing:-0.060120px;}
.wse{word-spacing:-0.059776px;}
.ws59{word-spacing:-0.059519px;}
.ws84{word-spacing:-0.059400px;}
.ws8d{word-spacing:-0.057715px;}
.ws170{word-spacing:-0.054000px;}
.ws1ab{word-spacing:-0.053798px;}
.ws8c{word-spacing:-0.051840px;}
.ws26{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws11b{word-spacing:0.003000px;}
.ws56{word-spacing:0.019840px;}
.wsdc{word-spacing:0.023086px;}
.wsba{word-spacing:0.034629px;}
.ws9b{word-spacing:0.039679px;}
.wsbf{word-spacing:0.040401px;}
.ws180{word-spacing:0.042084px;}
.wsa0{word-spacing:0.046292px;}
.ws197{word-spacing:0.047821px;}
.wsca{word-spacing:0.051944px;}
.ws69{word-spacing:0.052906px;}
.ws172{word-spacing:0.053798px;}
.wsab{word-spacing:0.059519px;}
.ws22{word-spacing:0.059776px;}
.ws138{word-spacing:0.072144px;}
.ws72{word-spacing:0.072745px;}
.ws43{word-spacing:0.085972px;}
.ws9{word-spacing:0.095641px;}
.ws14c{word-spacing:0.096192px;}
.ws1a7{word-spacing:0.107597px;}
.ws44{word-spacing:0.112424px;}
.ws32{word-spacing:0.119551px;}
.ws17f{word-spacing:0.126252px;}
.wsfa{word-spacing:0.138516px;}
.wsbd{word-spacing:0.139968px;}
.ws13f{word-spacing:0.140400px;}
.wse4{word-spacing:0.144288px;}
.ws13e{word-spacing:0.151200px;}
.wsbc{word-spacing:0.155520px;}
.ws9e{word-spacing:0.160380px;}
.ws1c0{word-spacing:0.161395px;}
.wsee{word-spacing:0.161603px;}
.wsfe{word-spacing:0.165888px;}
.wsbb{word-spacing:0.171072px;}
.wse5{word-spacing:0.173146px;}
.ws9d{word-spacing:0.178200px;}
.wsc7{word-spacing:0.178917px;}
.ws33{word-spacing:0.179327px;}
.ws46{word-spacing:0.184140px;}
.ws185{word-spacing:0.186372px;}
.wsbe{word-spacing:0.186624px;}
.ws15c{word-spacing:0.192384px;}
.ws9c{word-spacing:0.196020px;}
.wsa8{word-spacing:0.205009px;}
.wsfb{word-spacing:0.213546px;}
.ws9f{word-spacing:0.213840px;}
.ws1a8{word-spacing:0.215194px;}
.ws73{word-spacing:0.224849px;}
.ws11{word-spacing:0.239102px;}
.ws1a5{word-spacing:0.268992px;}
.ws1f{word-spacing:0.298878px;}
.ws1cc{word-spacing:0.322790px;}
.wse6{word-spacing:0.328977px;}
.ws2c{word-spacing:0.358654px;}
.ws13{word-spacing:0.418429px;}
.ws190{word-spacing:0.478205px;}
.ws139{word-spacing:0.529200px;}
.ws96{word-spacing:0.537980px;}
.ws13b{word-spacing:0.540000px;}
.ws13a{word-spacing:0.561600px;}
.ws97{word-spacing:0.597756px;}
.ws6a{word-spacing:0.641480px;}
.wsd9{word-spacing:0.657532px;}
.ws173{word-spacing:0.699379px;}
.ws18e{word-spacing:0.717307px;}
.ws106{word-spacing:0.721440px;}
.wsc2{word-spacing:0.732983px;}
.ws15a{word-spacing:0.739476px;}
.ws165{word-spacing:0.793584px;}
.ws159{word-spacing:0.823644px;}
.ws105{word-spacing:0.825327px;}
.wsa3{word-spacing:0.839876px;}
.ws107{word-spacing:0.859956px;}
.wsc1{word-spacing:0.911900px;}
.ws1e3{word-spacing:0.914573px;}
.ws18d{word-spacing:0.956410px;}
.ws127{word-spacing:0.968371px;}
.ws30{word-spacing:1.016185px;}
.wsa2{word-spacing:1.044886px;}
.ws11e{word-spacing:1.075961px;}
.ws1c2{word-spacing:1.075968px;}
.ws134{word-spacing:1.088172px;}
.wsed{word-spacing:1.096589px;}
.ws16d{word-spacing:1.112220px;}
.ws1e0{word-spacing:1.129766px;}
.ws193{word-spacing:1.135736px;}
.wsec{word-spacing:1.136989px;}
.wsf5{word-spacing:1.154304px;}
.ws16e{word-spacing:1.214424px;}
.wseb{word-spacing:1.223562px;}
.ws6b{word-spacing:1.243282px;}
.ws113{word-spacing:1.255288px;}
.wsf6{word-spacing:1.263963px;}
.ws135{word-spacing:1.304604px;}
.ws175{word-spacing:1.315063px;}
.ws1ce{word-spacing:1.344960px;}
.ws2d{word-spacing:1.374839px;}
.ws1dc{word-spacing:1.398758px;}
.ws111{word-spacing:1.434614px;}
.wsef{word-spacing:1.477509px;}
.ws12f{word-spacing:1.494390px;}
.ws11c{word-spacing:1.554166px;}
.wsf0{word-spacing:1.558310px;}
.ws7f{word-spacing:1.613941px;}
.ws1bc{word-spacing:1.613952px;}
.ws55{word-spacing:1.653300px;}
.ws23{word-spacing:1.673717px;}
.ws10{word-spacing:1.733492px;}
.ws108{word-spacing:1.748771px;}
.ws1d0{word-spacing:1.775347px;}
.ws82{word-spacing:1.793268px;}
.ws109{word-spacing:1.800714px;}
.ws1de{word-spacing:1.829146px;}
.ws14{word-spacing:1.853044px;}
.ws146{word-spacing:1.857708px;}
.ws145{word-spacing:1.917828px;}
.wsda{word-spacing:1.972595px;}
.ws1be{word-spacing:2.044339px;}
.ws11d{word-spacing:2.092146px;}
.ws116{word-spacing:2.151922px;}
.ws192{word-spacing:2.331248px;}
.ws1c6{word-spacing:2.420928px;}
.ws191{word-spacing:2.450800px;}
.ws7{word-spacing:2.510252px;}
.ws2e{word-spacing:2.510575px;}
.ws141{word-spacing:2.531052px;}
.ws49{word-spacing:2.559308px;}
.ws2f{word-spacing:2.570351px;}
.ws187{word-spacing:2.629800px;}
.ws88{word-spacing:2.630126px;}
.ws186{word-spacing:2.673000px;}
.ws174{word-spacing:2.689902px;}
.ws188{word-spacing:2.705400px;}
.ws1ca{word-spacing:2.797517px;}
.ws10d{word-spacing:2.809453px;}
.ws4e{word-spacing:2.810610px;}
.ws48{word-spacing:2.856902px;}
.wsa{word-spacing:2.869236px;}
.ws4f{word-spacing:2.876742px;}
.ws47{word-spacing:2.883355px;}
.ws163{word-spacing:2.933856px;}
.ws142{word-spacing:2.939868px;}
.ws19b{word-spacing:2.988780px;}
.ws164{word-spacing:3.012012px;}
.ws166{word-spacing:3.090168px;}
.ws167{word-spacing:3.126240px;}
.ws17{word-spacing:3.168107px;}
.ws1aa{word-spacing:3.174106px;}
.ws1d2{word-spacing:3.224717px;}
.ws11f{word-spacing:3.227882px;}
.ws1b1{word-spacing:3.227904px;}
.ws1d4{word-spacing:3.281702px;}
.ws1b9{word-spacing:3.335501px;}
.ws10f{word-spacing:3.407209px;}
.ws13c{word-spacing:3.418200px;}
.ws1e8{word-spacing:3.496896px;}
.ws77{word-spacing:3.526760px;}
.wsb{word-spacing:3.539856px;}
.ws1c7{word-spacing:3.550694px;}
.ws10c{word-spacing:3.586536px;}
.ws1b3{word-spacing:3.604493px;}
.ws3e{word-spacing:3.637260px;}
.ws15{word-spacing:3.646312px;}
.ws4d{word-spacing:3.676939px;}
.ws110{word-spacing:3.706087px;}
.ws13d{word-spacing:3.715200px;}
.ws4c{word-spacing:3.743071px;}
.wsdb{word-spacing:3.765863px;}
.ws37{word-spacing:3.825638px;}
.ws19c{word-spacing:3.885414px;}
.ws154{word-spacing:4.003992px;}
.ws1e{word-spacing:4.004965px;}
.ws6f{word-spacing:4.027439px;}
.ws70{word-spacing:4.080344px;}
.ws168{word-spacing:4.082148px;}
.ws169{word-spacing:4.088160px;}
.ws71{word-spacing:4.093571px;}
.ws17d{word-spacing:4.094172px;}
.ws80{word-spacing:4.124516px;}
.ws153{word-spacing:4.154292px;}
.ws1d{word-spacing:4.303872px;}
.wsd{word-spacing:4.363619px;}
.ws1db{word-spacing:4.411469px;}
.ws1a3{word-spacing:4.423394px;}
.ws17e{word-spacing:4.436856px;}
.ws64{word-spacing:4.437457px;}
.ws65{word-spacing:4.490363px;}
.ws17b{word-spacing:4.496976px;}
.ws17c{word-spacing:4.509000px;}
.ws93{word-spacing:4.542946px;}
.ws1a2{word-spacing:4.602721px;}
.ws1a1{word-spacing:4.662497px;}
.ws14a{word-spacing:4.773528px;}
.ws92{word-spacing:4.782048px;}
.ws1c8{word-spacing:4.788058px;}
.ws18b{word-spacing:4.841824px;}
.ws66{word-spacing:4.926834px;}
.wsf2{word-spacing:4.934650px;}
.wsd8{word-spacing:4.949453px;}
.wsf1{word-spacing:4.998136px;}
.ws12d{word-spacing:5.080926px;}
.ws140{word-spacing:5.104188px;}
.ws14f{word-spacing:5.116212px;}
.ws148{word-spacing:5.140260px;}
.ws147{word-spacing:5.164308px;}
.ws149{word-spacing:5.206392px;}
.wsd0{word-spacing:5.228997px;}
.wsf8{word-spacing:5.292484px;}
.wsf7{word-spacing:5.298255px;}
.ws3b{word-spacing:5.356692px;}
.ws19e{word-spacing:5.499355px;}
.ws12c{word-spacing:5.559131px;}
.ws41{word-spacing:5.594767px;}
.wsd2{word-spacing:5.615689px;}
.ws42{word-spacing:5.654286px;}
.ws3c{word-spacing:5.667512px;}
.ws10e{word-spacing:5.738458px;}
.wsd1{word-spacing:5.788835px;}
.ws115{word-spacing:5.798233px;}
.ws34{word-spacing:5.858009px;}
.wsb1{word-spacing:5.991559px;}
.ws18c{word-spacing:6.037336px;}
.ws152{word-spacing:6.126228px;}
.ws19d{word-spacing:6.216662px;}
.wsb3{word-spacing:6.434644px;}
.ws12e{word-spacing:6.451959px;}
.ws21{word-spacing:6.455765px;}
.ws20{word-spacing:6.515540px;}
.wsc3{word-spacing:6.614162px;}
.ws1d9{word-spacing:6.617203px;}
.ws150{word-spacing:6.625224px;}
.wsb2{word-spacing:6.633040px;}
.ws1d5{word-spacing:6.671002px;}
.wsc4{word-spacing:6.718049px;}
.ws151{word-spacing:6.811596px;}
.ws1a4{word-spacing:6.874194px;}
.ws183{word-spacing:6.877728px;}
.wsd6{word-spacing:6.933970px;}
.ws1da{word-spacing:6.939994px;}
.ws181{word-spacing:6.961896px;}
.ws182{word-spacing:6.973920px;}
.ws10b{word-spacing:6.993745px;}
.ws1ae{word-spacing:7.155187px;}
.ws7b{word-spacing:7.292623px;}
.wsc8{word-spacing:7.376003px;}
.wsa4{word-spacing:7.578727px;}
.ws184{word-spacing:7.623216px;}
.ws36{word-spacing:7.651277px;}
.wsa5{word-spacing:7.697765px;}
.wscc{word-spacing:7.982012px;}
.wscf{word-spacing:8.028184px;}
.wsf9{word-spacing:8.062813px;}
.wscd{word-spacing:8.091671px;}
.ws81{word-spacing:8.189257px;}
.wsce{word-spacing:8.224416px;}
.ws1d7{word-spacing:8.392550px;}
.wsa9{word-spacing:8.451670px;}
.ws19f{word-spacing:8.488135px;}
.ws130{word-spacing:8.607686px;}
.wsfc{word-spacing:8.786880px;}
.wsfd{word-spacing:8.797248px;}
.wsad{word-spacing:9.146056px;}
.wsb0{word-spacing:9.198961px;}
.ws94{word-spacing:9.265218px;}
.wsae{word-spacing:9.271706px;}
.wsaf{word-spacing:9.423810px;}
.ws63{word-spacing:9.608980px;}
.ws1a9{word-spacing:9.737646px;}
.ws4{word-spacing:10.415856px;}
.wsdd{word-spacing:10.815828px;}
.wsde{word-spacing:11.087090px;}
.wsb8{word-spacing:11.155657px;}
.wsea{word-spacing:11.179434px;}
.wscb{word-spacing:11.468010px;}
.ws133{word-spacing:11.620476px;}
.ws24{word-spacing:11.904912px;}
.ws1ad{word-spacing:12.266035px;}
.ws3a{word-spacing:12.782524px;}
.ws1b6{word-spacing:13.019213px;}
.wsac{word-spacing:13.140428px;}
.ws1d8{word-spacing:13.234406px;}
.ws1e7{word-spacing:13.288205px;}
.ws1d3{word-spacing:13.386499px;}
.ws1c9{word-spacing:13.387459px;}
.ws1cd{word-spacing:13.387968px;}
.ws1e4{word-spacing:13.389245px;}
.ws1c3{word-spacing:13.389341px;}
.ws1b4{word-spacing:13.390157px;}
.ws1cb{word-spacing:13.392941px;}
.ws1e5{word-spacing:13.393968px;}
.ws1b8{word-spacing:13.395802px;}
.ws1e6{word-spacing:13.395830px;}
.ws1c1{word-spacing:13.557197px;}
.wsc9{word-spacing:13.563072px;}
.wsb9{word-spacing:13.851648px;}
.ws1e2{word-spacing:14.095181px;}
.ws95{word-spacing:14.226593px;}
.ws103{word-spacing:14.249883px;}
.ws104{word-spacing:14.255654px;}
.wse9{word-spacing:14.267197px;}
.ws61{word-spacing:14.754049px;}
.ws60{word-spacing:14.780502px;}
.ws1dd{word-spacing:14.794560px;}
.ws16c{word-spacing:14.819580px;}
.ws7e{word-spacing:14.884124px;}
.ws1bd{word-spacing:14.955955px;}
.wsaa{word-spacing:15.541020px;}
.ws9a{word-spacing:15.871680px;}
.ws51{word-spacing:15.878293px;}
.ws50{word-spacing:15.944425px;}
.ws45{word-spacing:16.032060px;}
.wsc6{word-spacing:16.281458px;}
.ws1af{word-spacing:16.569907px;}
.ws1bb{word-spacing:16.614854px;}
.ws1bf{word-spacing:16.618320px;}
.ws1c5{word-spacing:16.623581px;}
.ws1b2{word-spacing:16.623706px;}
.wsc5{word-spacing:16.783580px;}
.ws1df{word-spacing:16.838899px;}
.ws1c4{word-spacing:17.000294px;}
.ws6d{word-spacing:17.048830px;}
.ws6c{word-spacing:17.207546px;}
.wsa7{word-spacing:18.655837px;}
.wsa6{word-spacing:19.231186px;}
.ws1d6{word-spacing:20.066803px;}
.ws1e1{word-spacing:20.443392px;}
.ws1cf{word-spacing:21.142771px;}
.ws101{word-spacing:24.298099px;}
.ws102{word-spacing:24.569361px;}
.ws58{word-spacing:24.607717px;}
.ws100{word-spacing:24.667476px;}
.ws5c{word-spacing:26.651196px;}
.ws5d{word-spacing:26.684262px;}
.ws1ac{word-spacing:28.002458px;}
.ws1{word-spacing:28.455541px;}
.ws67{word-spacing:35.400460px;}
.ws68{word-spacing:35.942742px;}
.ws196{word-spacing:187.874711px;}
.ws194{word-spacing:264.333904px;}
.ws12a{word-spacing:303.873611px;}
.ws129{word-spacing:351.898957px;}
.ws12b{word-spacing:381.786757px;}
.ws128{word-spacing:396.730657px;}
.ws195{word-spacing:423.629677px;}
.ws117{word-spacing:888.086089px;}
.ws118{word-spacing:922.337508px;}
.ws119{word-spacing:954.795659px;}
.ws11a{word-spacing:1005.784246px;}
._56{margin-left:-23.407425px;}
._54{margin-left:-21.598562px;}
._55{margin-left:-20.486677px;}
._14{margin-left:-16.263720px;}
._15{margin-left:-15.147000px;}
._6{margin-left:-11.943245px;}
._8{margin-left:-9.683712px;}
._7{margin-left:-7.232940px;}
._3{margin-left:-5.397721px;}
._e{margin-left:-4.303843px;}
._1{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._12{width:1.132362px;}
._9{width:3.002197px;}
._16{width:4.235220px;}
._1f{width:5.552202px;}
._4{width:8.954359px;}
._4f{width:11.046559px;}
._0{width:12.971268px;}
._52{width:14.041382px;}
._a{width:15.380255px;}
._18{width:16.510016px;}
._20{width:17.526202px;}
._d{width:18.566288px;}
._c{width:20.407381px;}
._19{width:21.877870px;}
._1a{width:24.053693px;}
._5{width:25.109280px;}
._17{width:26.659918px;}
._22{width:29.050942px;}
._b{width:31.262639px;}
._51{width:33.055907px;}
._21{width:34.251419px;}
._50{width:35.566482px;}
._2b{width:37.180423px;}
._f{width:38.495486px;}
._53{width:61.868160px;}
._2a{width:83.506513px;}
._1e{width:91.217566px;}
._1b{width:94.206346px;}
._40{width:160.444517px;}
._26{width:172.093952px;}
._4b{width:207.002903px;}
._37{width:221.032243px;}
._3a{width:222.843437px;}
._36{width:241.798300px;}
._39{width:256.538950px;}
._4c{width:264.208152px;}
._47{width:272.516960px;}
._43{width:281.662627px;}
._42{width:322.369811px;}
._25{width:324.760835px;}
._41{width:333.616286px;}
._3b{width:336.955057px;}
._3c{width:351.898957px;}
._4e{width:353.333572px;}
._28{width:355.264308px;}
._3d{width:366.842857px;}
._4d{width:379.754387px;}
._38{width:381.786757px;}
._46{width:385.492844px;}
._4a{width:399.420559px;}
._3f{width:407.191387px;}
._24{width:408.685777px;}
._45{width:426.977111px;}
._2e{width:447.199181px;}
._27{width:452.859946px;}
._29{width:493.585046px;}
._49{width:535.768703px;}
._48{width:546.528311px;}
._23{width:569.781019px;}
._44{width:617.422172px;}
._2f{width:699.792949px;}
._34{width:717.080048px;}
._30{width:812.410180px;}
._33{width:828.609367px;}
._31{width:913.670046px;}
._2c{width:930.598492px;}
._2d{width:934.950160px;}
._32{width:936.444550px;}
._10{width:1974.726588px;}
._1d{width:2088.330920px;}
._35{width:2176.339914px;}
._1c{width:2393.044315px;}
._13{width:2394.087142px;}
._3e{width:2587.548588px;}
._11{width:2611.458588px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:34.560000px;}
.fs4{font-size:35.865600px;}
.fsb{font-size:39.600000px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:45.964800px;}
.fs10{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs12{font-size:47.880000px;}
.fse{font-size:51.840000px;}
.fs7{font-size:52.668000px;}
.fsa{font-size:53.798400px;}
.fs14{font-size:54.000000px;}
.fsd{font-size:57.715200px;}
.fs9{font-size:59.400000px;}
.fs1{font-size:59.775600px;}
.fs13{font-size:60.120000px;}
.fs11{font-size:62.286600px;}
.fs8{font-size:66.132000px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.ybd{bottom:-797.507205px;}
.yd1{bottom:-761.471205px;}
.y49{bottom:-740.276955px;}
.yd0{bottom:-732.859862px;}
.y18a{bottom:-690.808050px;}
.y6d{bottom:-689.982619px;}
.y6c{bottom:-666.816579px;}
.y1ac{bottom:-656.245926px;}
.y6b{bottom:-643.749737px;}
.y1ab{bottom:-635.276070px;}
.y6a{bottom:-620.682896px;}
.y1aa{bottom:-614.216034px;}
.y69{bottom:-597.516856px;}
.y1a9{bottom:-593.246178px;}
.y68{bottom:-574.450015px;}
.y1a8{bottom:-572.276322px;}
.y67{bottom:-551.383173px;}
.y1a7{bottom:-551.216286px;}
.y1a6{bottom:-530.246430px;}
.y66{bottom:-528.217133px;}
.y1a5{bottom:-509.276574px;}
.y65{bottom:-505.150292px;}
.y1a4{bottom:-488.216538px;}
.y64{bottom:-482.083450px;}
.y1a3{bottom:-467.246682px;}
.y63{bottom:-458.917411px;}
.y1a2{bottom:-446.276826px;}
.y62{bottom:-435.850569px;}
.y1a1{bottom:-425.216790px;}
.y61{bottom:-412.783727px;}
.y1a0{bottom:-404.246934px;}
.y60{bottom:-389.617688px;}
.y19f{bottom:-383.277078px;}
.ycf{bottom:-370.816921px;}
.y5f{bottom:-366.550846px;}
.y19e{bottom:-362.217042px;}
.yce{bottom:-347.750080px;}
.y5e{bottom:-343.484005px;}
.y19d{bottom:-341.247186px;}
.ycd{bottom:-324.584047px;}
.y5d{bottom:-320.317965px;}
.y19c{bottom:-320.277330px;}
.ycc{bottom:-301.516195px;}
.y19b{bottom:-299.217294px;}
.y5c{bottom:-297.251123px;}
.ycb{bottom:-278.449354px;}
.y19a{bottom:-278.247438px;}
.y5b{bottom:-274.184282px;}
.y199{bottom:-257.277582px;}
.yca{bottom:-255.283314px;}
.y5a{bottom:-251.018242px;}
.y198{bottom:-236.217546px;}
.yc9{bottom:-232.216472px;}
.y59{bottom:-227.951401px;}
.y197{bottom:-215.247690px;}
.yc8{bottom:-209.149631px;}
.y58{bottom:-204.884559px;}
.y196{bottom:-194.277834px;}
.y106{bottom:-190.646928px;}
.yc7{bottom:-185.983591px;}
.y57{bottom:-181.718519px;}
.y195{bottom:-173.217798px;}
.yc6{bottom:-162.916750px;}
.y123{bottom:-162.480131px;}
.y56{bottom:-158.651678px;}
.y194{bottom:-152.247942px;}
.y122{bottom:-142.349069px;}
.yc5{bottom:-139.849908px;}
.y55{bottom:-135.584836px;}
.y193{bottom:-131.278086px;}
.y121{bottom:-122.218007px;}
.yc4{bottom:-116.683868px;}
.y54{bottom:-112.418797px;}
.y192{bottom:-110.218050px;}
.y120{bottom:-102.000372px;}
.yc3{bottom:-93.617027px;}
.y53{bottom:-89.351955px;}
.y11f{bottom:-77.549328px;}
.y1cd{bottom:-76.191150px;}
.y191{bottom:-71.697600px;}
.yc2{bottom:-65.600205px;}
.ydc{bottom:-52.248672px;}
.y190{bottom:-50.728050px;}
.y52{bottom:-46.979955px;}
.y1d7{bottom:-42.080700px;}
.y11e{bottom:-40.570128px;}
.y18f{bottom:-29.668050px;}
.y51{bottom:-23.813955px;}
.yc1{bottom:-23.129205px;}
.y1d6{bottom:-21.111150px;}
.yf0{bottom:-20.799072px;}
.y11d{bottom:-20.352528px;}
.y18e{bottom:-3.747672px;}
.y0{bottom:0.000000px;}
.yef{bottom:4.170828px;}
.y11c{bottom:4.532054px;}
.y50{bottom:4.698372px;}
.y1d5{bottom:4.810029px;}
.yc0{bottom:5.383221px;}
.y42{bottom:45.921000px;}
.y8d{bottom:99.720000px;}
.y18{bottom:100.260000px;}
.y15f{bottom:101.209500px;}
.y228{bottom:102.558000px;}
.y160{bottom:106.633500px;}
.y186{bottom:109.384500px;}
.y24f{bottom:112.617000px;}
.y1df{bottom:113.548500px;}
.y1fc{bottom:116.407500px;}
.y17{bottom:118.147500px;}
.y8c{bottom:120.610500px;}
.y15e{bottom:122.101500px;}
.y227{bottom:123.450000px;}
.y41{bottom:124.987500px;}
.y185{bottom:130.276500px;}
.y24e{bottom:132.115500px;}
.yfa{bottom:132.255000px;}
.y1de{bottom:134.440500px;}
.y16{bottom:136.035000px;}
.y1fb{bottom:137.298000px;}
.y283{bottom:139.779000px;}
.y8b{bottom:141.502500px;}
.y15d{bottom:142.992000px;}
.y226{bottom:144.340500px;}
.y40{bottom:145.879500px;}
.y24d{bottom:151.614000px;}
.yf8{bottom:153.145500px;}
.y15{bottom:153.924000px;}
.y1dd{bottom:155.331000px;}
.y184{bottom:155.650500px;}
.y1fa{bottom:158.190000px;}
.yf9{bottom:158.571000px;}
.y282{bottom:158.929500px;}
.y8a{bottom:162.394500px;}
.y15c{bottom:163.884000px;}
.y225{bottom:165.232500px;}
.y132{bottom:165.987000px;}
.y3f{bottom:166.771500px;}
.y24c{bottom:171.114000px;}
.y14{bottom:171.811500px;}
.yf6{bottom:174.037500px;}
.y1dc{bottom:176.223000px;}
.y281{bottom:178.080000px;}
.y1f9{bottom:179.082000px;}
.yf7{bottom:179.463000px;}
.y183{bottom:180.082500px;}
.y89{bottom:183.285000px;}
.y15b{bottom:184.776000px;}
.y224{bottom:186.124500px;}
.y131{bottom:186.877500px;}
.y3e{bottom:187.662000px;}
.y1c9{bottom:187.812000px;}
.yb9{bottom:187.899000px;}
.y13{bottom:189.699000px;}
.yf5{bottom:194.929500px;}
.y280{bottom:197.230500px;}
.y24b{bottom:199.578000px;}
.y1f8{bottom:199.972500px;}
.y88{bottom:204.177000px;}
.y15a{bottom:205.666500px;}
.y223{bottom:207.016500px;}
.y12{bottom:207.586500px;}
.y130{bottom:207.769500px;}
.y3d{bottom:208.554000px;}
.y1c8{bottom:208.702500px;}
.yb8{bottom:208.791000px;}
.y1db{bottom:211.851000px;}
.yf4{bottom:215.821500px;}
.y27f{bottom:216.381000px;}
.y182{bottom:218.907000px;}
.y24a{bottom:219.078000px;}
.y1f7{bottom:220.864500px;}
.y87{bottom:225.069000px;}
.y11{bottom:225.475500px;}
.y159{bottom:226.558500px;}
.y222{bottom:227.907000px;}
.y12f{bottom:228.661500px;}
.y3c{bottom:229.446000px;}
.y1c7{bottom:229.594500px;}
.yb7{bottom:229.683000px;}
.y1da{bottom:231.084000px;}
.y27e{bottom:235.531500px;}
.yf3{bottom:236.712000px;}
.y249{bottom:238.576500px;}
.y181{bottom:239.799000px;}
.y1f6{bottom:241.756500px;}
.y86{bottom:245.961000px;}
.y158{bottom:247.450500px;}
.y221{bottom:248.799000px;}
.y12e{bottom:249.552000px;}
.y1d9{bottom:250.317000px;}
.y3b{bottom:250.336500px;}
.y1c6{bottom:250.486500px;}
.yb5{bottom:250.573500px;}
.y10{bottom:252.330000px;}
.y27d{bottom:254.682000px;}
.yb6{bottom:255.999000px;}
.yf2{bottom:257.604000px;}
.y248{bottom:258.075000px;}
.y180{bottom:260.689500px;}
.y1f5{bottom:262.647000px;}
.y85{bottom:266.851500px;}
.y157{bottom:268.342500px;}
.y1d8{bottom:269.550000px;}
.y220{bottom:269.691000px;}
.yf{bottom:270.217500px;}
.y12d{bottom:270.444000px;}
.y3a{bottom:271.228500px;}
.y1c5{bottom:271.377000px;}
.yb3{bottom:271.465500px;}
.y27c{bottom:273.832500px;}
.yb4{bottom:276.891000px;}
.y247{bottom:277.573500px;}
.y17f{bottom:281.581500px;}
.y1f4{bottom:283.539000px;}
.y84{bottom:287.743500px;}
.ye{bottom:288.105000px;}
.y156{bottom:289.233000px;}
.y21e{bottom:290.581500px;}
.y12c{bottom:291.336000px;}
.y39{bottom:292.120500px;}
.y1c4{bottom:292.269000px;}
.y27b{bottom:292.984500px;}
.yf1{bottom:293.232000px;}
.y1ca{bottom:294.968100px;}
.y21f{bottom:296.007000px;}
.yb2{bottom:296.841000px;}
.y17e{bottom:302.473500px;}
.y1f3{bottom:304.431000px;}
.yd{bottom:305.994000px;}
.y246{bottom:306.039000px;}
.y83{bottom:308.635500px;}
.y155{bottom:310.125000px;}
.y21d{bottom:311.473500px;}
.y27a{bottom:312.135000px;}
.y12b{bottom:312.228000px;}
.y1c3{bottom:313.161000px;}
.y38{bottom:317.494500px;}
.yb1{bottom:317.731500px;}
.yd9{bottom:318.649644px;}
.yee{bottom:320.135576px;}
.y17d{bottom:323.364000px;}
.yc{bottom:323.881500px;}
.y1f2{bottom:325.323000px;}
.y245{bottom:325.537500px;}
.y82{bottom:329.526000px;}
.y154{bottom:331.017000px;}
.y2a9{bottom:331.038000px;}
.y279{bottom:331.285500px;}
.y4f{bottom:332.289847px;}
.y21c{bottom:332.365500px;}
.y12a{bottom:333.118500px;}
.y1c2{bottom:334.051500px;}
.yb0{bottom:338.623500px;}
.yed{bottom:340.266637px;}
.yb{bottom:341.769000px;}
.y17c{bottom:344.256000px;}
.y1f1{bottom:346.213500px;}
.y18d{bottom:347.252427px;}
.y2a8{bottom:350.188500px;}
.y81{bottom:350.418000px;}
.y278{bottom:350.436000px;}
.y153{bottom:351.907500px;}
.y21b{bottom:353.256000px;}
.y244{bottom:354.003000px;}
.y129{bottom:354.010500px;}
.y1c1{bottom:354.943500px;}
.y4e{bottom:355.356688px;}
.ya{bottom:359.658000px;}
.yec{bottom:360.484266px;}
.yaf{bottom:363.999000px;}
.y1f0{bottom:367.105500px;}
.ybf{bottom:367.426161px;}
.y18c{bottom:368.222283px;}
.y2a7{bottom:369.339000px;}
.y277{bottom:369.586500px;}
.y17b{bottom:369.630000px;}
.y80{bottom:371.310000px;}
.y243{bottom:373.501500px;}
.y21a{bottom:374.148000px;}
.y128{bottom:374.902500px;}
.y1c0{bottom:375.835500px;}
.y152{bottom:377.283000px;}
.y9{bottom:377.545500px;}
.y4d{bottom:378.522728px;}
.yeb{bottom:380.616209px;}
.yae{bottom:384.889500px;}
.y1ef{bottom:387.997500px;}
.y276{bottom:388.737000px;}
.y18b{bottom:389.282319px;}
.ybe{bottom:390.592201px;}
.y7f{bottom:392.200500px;}
.y242{bottom:393.000000px;}
.y218{bottom:395.040000px;}
.y8{bottom:395.433000px;}
.y127{bottom:395.793000px;}
.y37{bottom:396.706500px;}
.y1bf{bottom:396.726000px;}
.y219{bottom:400.464000px;}
.yea{bottom:400.747271px;}
.y4c{bottom:401.589570px;}
.y17a{bottom:404.973000px;}
.yad{bottom:405.781500px;}
.y275{bottom:407.887500px;}
.y1ee{bottom:408.888000px;}
.y2a6{bottom:412.371000px;}
.y241{bottom:412.498500px;}
.y151{bottom:412.624500px;}
.y7e{bottom:413.092500px;}
.y7{bottom:413.322000px;}
.y217{bottom:415.930500px;}
.y126{bottom:416.685000px;}
.y36{bottom:417.598500px;}
.y1be{bottom:417.618000px;}
.ye9{bottom:420.964906px;}
.y4b{bottom:424.656411px;}
.y179{bottom:425.865000px;}
.yac{bottom:426.673500px;}
.y274{bottom:427.038000px;}
.y1ed{bottom:429.780000px;}
.y11b{bottom:430.051795px;}
.y2a5{bottom:431.521500px;}
.y240{bottom:431.997000px;}
.y150{bottom:433.516500px;}
.y7d{bottom:433.984500px;}
.y216{bottom:436.822500px;}
.y6{bottom:437.187000px;}
.y1bd{bottom:438.510000px;}
.ye8{bottom:441.095967px;}
.y189{bottom:445.442085px;}
.y273{bottom:446.188500px;}
.y178{bottom:446.755500px;}
.yab{bottom:447.564000px;}
.y4a{bottom:447.822451px;}
.y11a{bottom:450.182857px;}
.y1ec{bottom:450.672000px;}
.y125{bottom:452.313000px;}
.ybc{bottom:452.367944px;}
.y14f{bottom:454.408500px;}
.y7c{bottom:454.875000px;}
.y188{bottom:455.071950px;}
.y5{bottom:455.074500px;}
.y35{bottom:456.423000px;}
.y215{bottom:457.714500px;}
.y1bc{bottom:459.402000px;}
.y23f{bottom:460.462500px;}
.ye7{bottom:461.227029px;}
.ybb{bottom:462.960795px;}
.y272{bottom:465.339000px;}
.y177{bottom:467.647500px;}
.y2a4{bottom:469.822500px;}
.y119{bottom:470.400492px;}
.y124{bottom:471.546000px;}
.y1eb{bottom:471.562500px;}
.yaa{bottom:472.939500px;}
.y4{bottom:472.963500px;}
.y14e{bottom:475.299000px;}
.y7b{bottom:475.767000px;}
.y34{bottom:477.313500px;}
.y214{bottom:478.605000px;}
.y23e{bottom:479.961000px;}
.y1bb{bottom:480.292500px;}
.ye6{bottom:481.444664px;}
.y271{bottom:484.489500px;}
.y176{bottom:488.539500px;}
.y2a3{bottom:488.973000px;}
.y118{bottom:490.531553px;}
.y3{bottom:490.851000px;}
.y1ea{bottom:492.454500px;}
.y14d{bottom:496.191000px;}
.y7a{bottom:496.659000px;}
.y103{bottom:496.963500px;}
.y33{bottom:498.205500px;}
.y23d{bottom:499.459500px;}
.y213{bottom:499.497000px;}
.ye5{bottom:501.575725px;}
.y270{bottom:503.640000px;}
.y2a2{bottom:508.123500px;}
.ya9{bottom:508.281000px;}
.y48{bottom:509.598194px;}
.y117{bottom:510.662615px;}
.y1e9{bottom:513.346500px;}
.y2{bottom:514.716000px;}
.y14c{bottom:517.083000px;}
.y79{bottom:517.551000px;}
.y23c{bottom:518.959500px;}
.y32{bottom:519.097500px;}
.y47{bottom:520.191045px;}
.y212{bottom:520.389000px;}
.ye4{bottom:521.706787px;}
.y26f{bottom:522.790500px;}
.y2a1{bottom:527.274000px;}
.y1ba{bottom:528.265500px;}
.ya8{bottom:529.173000px;}
.y116{bottom:530.880250px;}
.y1{bottom:532.605000px;}
.y1e8{bottom:534.237000px;}
.y175{bottom:536.511000px;}
.y14b{bottom:537.975000px;}
.y78{bottom:538.441500px;}
.y23b{bottom:538.458000px;}
.y31{bottom:539.988000px;}
.y211{bottom:541.281000px;}
.ye3{bottom:541.924422px;}
.y26e{bottom:541.941000px;}
.y1b9{bottom:546.198000px;}
.y2a0{bottom:546.424500px;}
.ya7{bottom:550.065000px;}
.y115{bottom:551.011311px;}
.y174{bottom:554.443500px;}
.y1e7{bottom:555.129000px;}
.y23a{bottom:557.956500px;}
.y14a{bottom:558.865500px;}
.y77{bottom:559.333500px;}
.y30{bottom:560.880000px;}
.y26d{bottom:561.091500px;}
.ye2{bottom:562.055484px;}
.y20f{bottom:562.171500px;}
.y1b8{bottom:564.130500px;}
.y29f{bottom:565.575000px;}
.y210{bottom:567.597000px;}
.ya6{bottom:570.955500px;}
.y114{bottom:571.142373px;}
.y173{bottom:572.377500px;}
.y1e6{bottom:576.021000px;}
.y149{bottom:579.757500px;}
.y76{bottom:580.225500px;}
.y26c{bottom:580.242000px;}
.y2f{bottom:581.772000px;}
.y1b7{bottom:582.063000px;}
.y20d{bottom:583.063500px;}
.y29e{bottom:584.725500px;}
.ye1{bottom:586.506528px;}
.y20e{bottom:588.487500px;}
.y172{bottom:590.310000px;}
.y113{bottom:591.360008px;}
.ya5{bottom:591.847500px;}
.y239{bottom:595.387500px;}
.y1e5{bottom:596.913000px;}
.y26b{bottom:599.392500px;}
.y1b6{bottom:599.997000px;}
.y75{bottom:601.116000px;}
.y2e{bottom:602.662500px;}
.y29d{bottom:603.876000px;}
.y171{bottom:608.242500px;}
.y112{bottom:611.491069px;}
.ya4{bottom:612.739500px;}
.y238{bottom:616.279500px;}
.y1e4{bottom:617.803500px;}
.y1b5{bottom:617.929500px;}
.y26a{bottom:618.543000px;}
.y74{bottom:622.008000px;}
.y20c{bottom:622.144500px;}
.y29c{bottom:623.026500px;}
.y2d{bottom:623.554500px;}
.ye0{bottom:623.572128px;}
.y170{bottom:626.175000px;}
.y148{bottom:630.718500px;}
.y111{bottom:631.622131px;}
.ya3{bottom:633.631500px;}
.y1b4{bottom:635.862000px;}
.y20a{bottom:636.342000px;}
.y237{bottom:637.171500px;}
.y269{bottom:637.693500px;}
.y1e3{bottom:638.695500px;}
.y20b{bottom:640.681500px;}
.yd8{bottom:641.310000px;}
.y29b{bottom:642.177000px;}
.y73{bottom:642.900000px;}
.y16f{bottom:644.107500px;}
.y2c{bottom:644.446500px;}
.ydf{bottom:648.455700px;}
.y147{bottom:648.651000px;}
.y110{bottom:651.839766px;}
.y268{bottom:656.844000px;}
.y236{bottom:658.062000px;}
.ya2{bottom:659.005500px;}
.y1e2{bottom:659.587500px;}
.y209{bottom:660.526500px;}
.y1b3{bottom:660.997500px;}
.y29a{bottom:661.327500px;}
.y16e{bottom:662.041500px;}
.yd7{bottom:662.200500px;}
.y72{bottom:663.790500px;}
.y2b{bottom:665.338500px;}
.y146{bottom:666.583500px;}
.y10f{bottom:671.970828px;}
.y267{bottom:675.996000px;}
.y208{bottom:678.459000px;}
.y1b2{bottom:678.930000px;}
.y235{bottom:678.954000px;}
.y16d{bottom:679.974000px;}
.y1e1{bottom:680.478000px;}
.yd6{bottom:683.092500px;}
.ya1{bottom:683.437500px;}
.y145{bottom:684.517500px;}
.y71{bottom:684.682500px;}
.y2a{bottom:686.229000px;}
.y266{bottom:695.146500px;}
.y205{bottom:696.391500px;}
.y10e{bottom:696.421837px;}
.y207{bottom:696.763500px;}
.y16c{bottom:697.906500px;}
.y299{bottom:699.628500px;}
.y234{bottom:699.846000px;}
.y1e0{bottom:701.370000px;}
.y206{bottom:701.817000px;}
.yd5{bottom:703.984500px;}
.y70{bottom:705.574500px;}
.y29{bottom:707.121000px;}
.y144{bottom:709.651500px;}
.y1b1{bottom:711.595500px;}
.y265{bottom:714.297000px;}
.y204{bottom:715.066500px;}
.y16b{bottom:715.839000px;}
.y10d{bottom:716.640345px;}
.y298{bottom:718.779000px;}
.y233{bottom:720.736500px;}
.ya0{bottom:722.262000px;}
.yd4{bottom:724.875000px;}
.y28{bottom:728.013000px;}
.y1b0{bottom:730.828500px;}
.y203{bottom:732.999000px;}
.y264{bottom:733.447500px;}
.y16a{bottom:733.771500px;}
.y297{bottom:737.929500px;}
.y6f{bottom:739.855500px;}
.y10c{bottom:741.091389px;}
.y232{bottom:741.628500px;}
.y9f{bottom:743.152500px;}
.y143{bottom:745.306500px;}
.y27{bottom:748.903500px;}
.yd3{bottom:750.250500px;}
.y263{bottom:752.598000px;}
.y296{bottom:757.081500px;}
.y202{bottom:758.877000px;}
.y169{bottom:758.907000px;}
.y6e{bottom:759.088500px;}
.y10b{bottom:761.222451px;}
.y231{bottom:762.520500px;}
.y9e{bottom:764.044500px;}
.y201{bottom:767.844000px;}
.y1af{bottom:769.488000px;}
.y26{bottom:769.795500px;}
.y262{bottom:771.748500px;}
.y295{bottom:776.232000px;}
.y10a{bottom:781.440085px;}
.yd2{bottom:782.395500px;}
.y142{bottom:782.410500px;}
.y230{bottom:783.411000px;}
.y46{bottom:784.507500px;}
.y9d{bottom:784.936500px;}
.y1ae{bottom:788.721000px;}
.y25{bottom:790.687500px;}
.y261{bottom:790.899000px;}
.y168{bottom:791.572500px;}
.y294{bottom:795.382500px;}
.y109{bottom:801.571147px;}
.y141{bottom:803.302500px;}
.y22f{bottom:804.303000px;}
.y9c{bottom:805.827000px;}
.yba{bottom:807.814500px;}
.y1ad{bottom:807.954000px;}
.y260{bottom:810.049500px;}
.y24{bottom:811.578000px;}
.y200{bottom:812.464500px;}
.y293{bottom:814.533000px;}
.y108{bottom:821.702209px;}
.y140{bottom:824.193000px;}
.y22e{bottom:825.195000px;}
.y9b{bottom:826.719000px;}
.y167{bottom:828.676500px;}
.y25f{bottom:829.200000px;}
.y187{bottom:830.383500px;}
.y292{bottom:833.683500px;}
.y13f{bottom:845.085000px;}
.y22d{bottom:846.087000px;}
.y107{bottom:846.239826px;}
.y9a{bottom:847.611000px;}
.y25e{bottom:848.350500px;}
.y166{bottom:849.568500px;}
.y23{bottom:851.598000px;}
.y291{bottom:852.834000px;}
.y13e{bottom:865.977000px;}
.y22c{bottom:866.977500px;}
.y25d{bottom:867.501000px;}
.y22{bottom:867.738000px;}
.y99{bottom:868.503000px;}
.y165{bottom:870.460500px;}
.y290{bottom:871.984500px;}
.y1ff{bottom:875.884500px;}
.y1d4{bottom:877.899723px;}
.y21{bottom:883.878000px;}
.y25c{bottom:886.651500px;}
.y13d{bottom:886.867500px;}
.y22b{bottom:887.869500px;}
.y20{bottom:888.217500px;}
.y98{bottom:889.393500px;}
.y28f{bottom:891.135000px;}
.y164{bottom:891.351000px;}
.y1d3{bottom:898.869579px;}
.y105{bottom:900.153202px;}
.y1f{bottom:904.357500px;}
.y25b{bottom:905.802000px;}
.y13c{bottom:907.759500px;}
.y22a{bottom:908.761500px;}
.y104{bottom:909.397872px;}
.y97{bottom:910.285500px;}
.y163{bottom:912.243000px;}
.y1d2{bottom:919.839435px;}
.y25a{bottom:924.952500px;}
.y102{bottom:928.651500px;}
.y28e{bottom:929.436000px;}
.y96{bottom:931.177500px;}
.y13b{bottom:933.135000px;}
.y229{bottom:934.135500px;}
.y162{bottom:937.617000px;}
.y1d1{bottom:940.899471px;}
.y259{bottom:944.103000px;}
.y28d{bottom:948.586500px;}
.y1e{bottom:949.033500px;}
.y101{bottom:949.543500px;}
.y95{bottom:952.068000px;}
.y1fe{bottom:954.025500px;}
.y1d0{bottom:961.869327px;}
.y258{bottom:963.253500px;}
.yde{bottom:964.420448px;}
.y28c{bottom:967.737000px;}
.y13a{bottom:968.476500px;}
.y1d{bottom:969.925500px;}
.y94{bottom:972.960000px;}
.y100{bottom:974.917500px;}
.y257{bottom:982.404000px;}
.y1cf{bottom:982.839183px;}
.ydd{bottom:984.638082px;}
.y28b{bottom:986.887500px;}
.y139{bottom:989.368500px;}
.y93{bottom:993.852000px;}
.yff{bottom:995.809500px;}
.y161{bottom:999.276000px;}
.y256{bottom:1001.554500px;}
.y1ce{bottom:1003.899219px;}
.y28a{bottom:1006.038000px;}
.y1c{bottom:1008.748500px;}
.y138{bottom:1010.260500px;}
.y92{bottom:1014.742500px;}
.yfe{bottom:1016.700000px;}
.y255{bottom:1020.705000px;}
.y289{bottom:1025.188500px;}
.y137{bottom:1031.151000px;}
.y91{bottom:1035.634500px;}
.yfd{bottom:1037.592000px;}
.ydb{bottom:1038.551458px;}
.y254{bottom:1039.855500px;}
.y1b{bottom:1040.086500px;}
.y1fd{bottom:1042.075500px;}
.y288{bottom:1044.339000px;}
.yda{bottom:1047.796128px;}
.y136{bottom:1052.043000px;}
.y90{bottom:1056.526500px;}
.yfc{bottom:1058.484000px;}
.y253{bottom:1059.007500px;}
.y1cc{bottom:1060.058985px;}
.y287{bottom:1063.489500px;}
.y1cb{bottom:1069.688850px;}
.y1a{bottom:1071.424500px;}
.y135{bottom:1072.935000px;}
.y8f{bottom:1077.417000px;}
.y252{bottom:1078.158000px;}
.y286{bottom:1082.640000px;}
.yfb{bottom:1083.858000px;}
.y134{bottom:1093.825500px;}
.y251{bottom:1097.308500px;}
.y8e{bottom:1098.309000px;}
.y285{bottom:1101.790500px;}
.y19{bottom:1102.761000px;}
.y133{bottom:1114.717500px;}
.y250{bottom:1116.459000px;}
.y45{bottom:1119.201000px;}
.y284{bottom:1120.941000px;}
.y44{bottom:1140.091500px;}
.y43{bottom:1200.543000px;}
.hf{height:27.855430px;}
.h1d{height:31.526842px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.h10{height:41.250077px;}
.h1e{height:41.482876px;}
.h1b{height:41.539163px;}
.h14{height:42.508463px;}
.h1c{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.h20{height:44.279648px;}
.h16{height:47.941875px;}
.hb{height:48.707613px;}
.he{height:48.848947px;}
.h22{height:49.939453px;}
.h9{height:51.646464px;}
.h15{height:53.375288px;}
.h17{height:53.375311px;}
.h1a{height:53.375426px;}
.h8{height:54.276245px;}
.h5{height:54.405312px;}
.hd{height:54.933398px;}
.h21{height:55.599258px;}
.hc{height:61.159184px;}
.h12{height:61.159210px;}
.h18{height:62.946077px;}
.h26{height:62.952077px;}
.h4{height:77.469696px;}
.h25{height:78.900432px;}
.h23{height:90.144245px;}
.h13{height:303.500016px;}
.ha{height:312.397800px;}
.h1f{height:324.654000px;}
.h11{height:347.221050px;}
.h19{height:413.462880px;}
.h24{height:860.070900px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:463.417500px;}
.w2{width:652.482600px;}
.w3{width:655.020135px;}
.w7{width:657.817050px;}
.w4{width:760.633200px;}
.w5{width:761.574384px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xf{left:-208.069950px;}
.x63{left:-198.654000px;}
.x2a{left:-105.299865px;}
.x78{left:-63.817950px;}
.x64{left:-3.085090px;}
.x0{left:0.000000px;}
.x30{left:4.241520px;}
.x10{left:7.055851px;}
.x66{left:28.776000px;}
.x12{left:42.103050px;}
.x1{left:53.574000px;}
.x49{left:62.541000px;}
.x2f{left:65.925720px;}
.x8f{left:85.590000px;}
.x2b{left:109.827531px;}
.x77{left:117.336450px;}
.x29{left:118.732665px;}
.xe{left:120.001500px;}
.x79{left:131.752410px;}
.x93{left:136.167000px;}
.x2d{left:144.873788px;}
.x90{left:160.788000px;}
.x91{left:179.121000px;}
.x92{left:185.545500px;}
.x4a{left:187.191000px;}
.x31{left:191.989066px;}
.x4b{left:196.422000px;}
.x32{left:222.574890px;}
.x4c{left:232.378500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x62{left:258.556500px;}
.x6e{left:263.175000px;}
.x6c{left:264.393000px;}
.x5c{left:268.474500px;}
.x3{left:269.764500px;}
.x5e{left:275.380500px;}
.x5d{left:277.705500px;}
.x6d{left:279.703500px;}
.x5{left:281.479500px;}
.x1f{left:283.351500px;}
.x7b{left:286.138500px;}
.x9d{left:289.620000px;}
.x20{left:298.296000px;}
.x70{left:299.601000px;}
.x7c{left:301.081500px;}
.x9e{left:304.563000px;}
.x38{left:308.148000px;}
.x50{left:312.675000px;}
.x40{left:318.322500px;}
.x27{left:326.802000px;}
.x51{left:331.389000px;}
.x28{left:333.228000px;}
.x6{left:334.231500px;}
.x41{left:337.446000px;}
.x6f{left:340.389000px;}
.x7{left:341.703000px;}
.x13{left:344.785500px;}
.x52{left:346.333500px;}
.x14{left:352.257000px;}
.x95{left:353.767500px;}
.x96{left:359.997000px;}
.xc{left:363.876000px;}
.xa1{left:368.886000px;}
.xd{left:371.347500px;}
.x8a{left:373.549500px;}
.x67{left:380.517000px;}
.x60{left:393.858000px;}
.x4d{left:407.616000px;}
.x61{left:410.506500px;}
.x68{left:416.427000px;}
.x4e{left:419.341500px;}
.x8d{left:430.536000px;}
.x4f{left:434.286000px;}
.x9c{left:436.984500px;}
.x46{left:442.006500px;}
.x75{left:443.947500px;}
.x94{left:447.322500px;}
.x47{left:451.236000px;}
.x76{left:458.890500px;}
.x65{left:464.915515px;}
.x82{left:481.320000px;}
.x36{left:492.178500px;}
.x83{left:496.264500px;}
.x37{left:498.736500px;}
.x19{left:500.151000px;}
.x3a{left:512.253000px;}
.x1a{left:515.095500px;}
.x3b{left:527.496000px;}
.x3c{left:531.459000px;}
.x69{left:534.291000px;}
.x55{left:536.307000px;}
.x56{left:542.916000px;}
.x3d{left:546.702000px;}
.x3e{left:550.665000px;}
.x1e{left:552.024000px;}
.x48{left:555.177000px;}
.x15{left:560.430000px;}
.x3f{left:565.908000px;}
.x16{left:567.901500px;}
.x25{left:570.910500px;}
.x26{left:577.336500px;}
.x23{left:580.825500px;}
.x7f{left:590.112000px;}
.x53{left:594.336000px;}
.x24{left:596.068500px;}
.x84{left:602.367000px;}
.x54{left:603.565500px;}
.x85{left:609.840000px;}
.x86{left:613.617000px;}
.x6a{left:617.494500px;}
.x71{left:621.558000px;}
.x87{left:628.560000px;}
.x88{left:632.337000px;}
.x72{left:636.501000px;}
.x89{left:638.731500px;}
.x7a{left:641.440500px;}
.x8c{left:644.958000px;}
.x17{left:646.911000px;}
.x8b{left:648.883500px;}
.x2c{left:651.852016px;}
.x11{left:653.028206px;}
.x18{left:656.142000px;}
.x8{left:658.213500px;}
.x42{left:660.313500px;}
.x73{left:663.126000px;}
.x9{left:665.686500px;}
.xa{left:669.496500px;}
.x33{left:672.640500px;}
.x43{left:675.555000px;}
.xb{left:676.969500px;}
.x74{left:678.069000px;}
.x97{left:709.732500px;}
.x44{left:713.217000px;}
.x98{left:716.158500px;}
.x57{left:725.209500px;}
.x45{left:728.161500px;}
.x8e{left:732.406500px;}
.x99{left:733.857000px;}
.x80{left:738.817500px;}
.x58{left:740.154000px;}
.x59{left:743.830500px;}
.x6b{left:747.604500px;}
.x81{left:753.760500px;}
.x39{left:757.297405px;}
.x2e{left:758.474105px;}
.x5a{left:762.450000px;}
.x1d{left:768.453000px;}
.x21{left:774.963000px;}
.x5b{left:777.394500px;}
.x34{left:780.489000px;}
.x9a{left:782.503500px;}
.x7d{left:783.981000px;}
.x35{left:787.047000px;}
.x22{left:789.906000px;}
.x9f{left:795.780000px;}
.x9b{left:797.448000px;}
.x7e{left:798.924000px;}
.xa0{left:810.724500px;}
.x1b{left:818.046000px;}
.x5f{left:831.375000px;}
.x1c{left:832.990500px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.322667pt;}
.v5{vertical-align:12.899779pt;}
.v4{vertical-align:14.780996pt;}
.v1{vertical-align:19.285333pt;}
.v6{vertical-align:31.882667pt;}
.lsa9{letter-spacing:-0.363392pt;}
.ls44{letter-spacing:-0.305677pt;}
.ls68{letter-spacing:-0.277033pt;}
.ls4e{letter-spacing:-0.266772pt;}
.ls62{letter-spacing:-0.215470pt;}
.ls99{letter-spacing:-0.208416pt;}
.ls26{letter-spacing:-0.205744pt;}
.ls46{letter-spacing:-0.193987pt;}
.ls47{letter-spacing:-0.176352pt;}
.ls55{letter-spacing:-0.169298pt;}
.ls2c{letter-spacing:-0.164595pt;}
.ls95{letter-spacing:-0.160320pt;}
.ls92{letter-spacing:-0.154976pt;}
.ls56{letter-spacing:-0.153907pt;}
.ls64{letter-spacing:-0.148777pt;}
.ls8f{letter-spacing:-0.138944pt;}
.ls43{letter-spacing:-0.135203pt;}
.ls9f{letter-spacing:-0.133600pt;}
.ls9d{letter-spacing:-0.128256pt;}
.ls2d{letter-spacing:-0.123446pt;}
.ls63{letter-spacing:-0.123126pt;}
.ls4d{letter-spacing:-0.117996pt;}
.ls6a{letter-spacing:-0.112865pt;}
.ls90{letter-spacing:-0.112224pt;}
.ls25{letter-spacing:-0.111690pt;}
.ls2e{letter-spacing:-0.105811pt;}
.ls9e{letter-spacing:-0.101536pt;}
.ls51{letter-spacing:-0.097475pt;}
.ls45{letter-spacing:-0.094054pt;}
.ls1d{letter-spacing:-0.088176pt;}
.ls65{letter-spacing:-0.087214pt;}
.ls9a{letter-spacing:-0.085504pt;}
.ls52{letter-spacing:-0.082084pt;}
.ls61{letter-spacing:-0.076954pt;}
.ls2a{letter-spacing:-0.076419pt;}
.lsaa{letter-spacing:-0.074816pt;}
.ls6c{letter-spacing:-0.071823pt;}
.ls21{letter-spacing:-0.070541pt;}
.ls91{letter-spacing:-0.069472pt;}
.ls67{letter-spacing:-0.066693pt;}
.ls22{letter-spacing:-0.064662pt;}
.ls28{letter-spacing:-0.058784pt;}
.ls50{letter-spacing:-0.056433pt;}
.ls54{letter-spacing:-0.051302pt;}
.ls69{letter-spacing:-0.046172pt;}
.ls98{letter-spacing:-0.042752pt;}
.ls6b{letter-spacing:-0.041042pt;}
.lsab{letter-spacing:-0.037408pt;}
.ls27{letter-spacing:-0.035270pt;}
.ls96{letter-spacing:-0.032064pt;}
.ls53{letter-spacing:-0.030781pt;}
.ls24{letter-spacing:-0.029392pt;}
.lsa0{letter-spacing:-0.026720pt;}
.ls5f{letter-spacing:-0.025651pt;}
.lsad{letter-spacing:-0.024000pt;}
.ls2b{letter-spacing:-0.023514pt;}
.ls94{letter-spacing:-0.021376pt;}
.ls4c{letter-spacing:-0.020521pt;}
.ls41{letter-spacing:-0.018726pt;}
.ls29{letter-spacing:-0.017635pt;}
.lsa8{letter-spacing:-0.017024pt;}
.ls49{letter-spacing:-0.016343pt;}
.ls42{letter-spacing:-0.015840pt;}
.ls4f{letter-spacing:-0.015391pt;}
.ls93{letter-spacing:-0.014400pt;}
.ls4b{letter-spacing:-0.013824pt;}
.ls1e{letter-spacing:-0.011757pt;}
.ls66{letter-spacing:-0.010260pt;}
.ls1c{letter-spacing:-0.009363pt;}
.ls8e{letter-spacing:-0.008512pt;}
.ls1f{letter-spacing:-0.005878pt;}
.ls9c{letter-spacing:-0.005344pt;}
.ls57{letter-spacing:-0.005130pt;}
.lsac{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6d{letter-spacing:0.000544pt;}
.ls5d{letter-spacing:0.004608pt;}
.ls7a{letter-spacing:0.004800pt;}
.ls40{letter-spacing:0.005130pt;}
.ls83{letter-spacing:0.005344pt;}
.ls12{letter-spacing:0.005878pt;}
.ls7b{letter-spacing:0.009600pt;}
.ls5e{letter-spacing:0.010260pt;}
.ls89{letter-spacing:0.010688pt;}
.ls23{letter-spacing:0.011757pt;}
.ls38{letter-spacing:0.013824pt;}
.ls77{letter-spacing:0.014400pt;}
.lsf{letter-spacing:0.015840pt;}
.lse{letter-spacing:0.017635pt;}
.ls3d{letter-spacing:0.020521pt;}
.ls76{letter-spacing:0.021376pt;}
.ls5c{letter-spacing:0.023040pt;}
.ls19{letter-spacing:0.023514pt;}
.lsa6{letter-spacing:0.024000pt;}
.ls5b{letter-spacing:0.025651pt;}
.ls39{letter-spacing:0.027648pt;}
.ls7d{letter-spacing:0.028800pt;}
.lsc{letter-spacing:0.029392pt;}
.ls3c{letter-spacing:0.030781pt;}
.ls33{letter-spacing:0.031680pt;}
.ls7f{letter-spacing:0.032064pt;}
.lsa7{letter-spacing:0.033600pt;}
.ls14{letter-spacing:0.035270pt;}
.ls3a{letter-spacing:0.035912pt;}
.ls84{letter-spacing:0.037408pt;}
.ls7e{letter-spacing:0.038400pt;}
.ls3b{letter-spacing:0.041042pt;}
.ls18{letter-spacing:0.041149pt;}
.ls81{letter-spacing:0.042752pt;}
.ls35{letter-spacing:0.044943pt;}
.ls3e{letter-spacing:0.046172pt;}
.lsa1{letter-spacing:0.046816pt;}
.ls16{letter-spacing:0.047027pt;}
.ls86{letter-spacing:0.048096pt;}
.ls4a{letter-spacing:0.051302pt;}
.ls30{letter-spacing:0.051498pt;}
.lsd{letter-spacing:0.052906pt;}
.ls85{letter-spacing:0.053440pt;}
.ls70{letter-spacing:0.055328pt;}
.ls59{letter-spacing:0.056433pt;}
.ls11{letter-spacing:0.058784pt;}
.ls8{letter-spacing:0.060861pt;}
.ls7c{letter-spacing:0.062400pt;}
.lsa4{letter-spacing:0.064128pt;}
.lsb{letter-spacing:0.064662pt;}
.ls88{letter-spacing:0.069472pt;}
.ls80{letter-spacing:0.074816pt;}
.ls15{letter-spacing:0.076419pt;}
.ls58{letter-spacing:0.076954pt;}
.ls74{letter-spacing:0.080160pt;}
.ls1a{letter-spacing:0.082298pt;}
.ls48{letter-spacing:0.088176pt;}
.ls87{letter-spacing:0.090848pt;}
.ls78{letter-spacing:0.100800pt;}
.ls75{letter-spacing:0.106880pt;}
.ls1b{letter-spacing:0.117568pt;}
.ls13{letter-spacing:0.123446pt;}
.ls79{letter-spacing:0.124800pt;}
.ls8a{letter-spacing:0.133600pt;}
.ls37{letter-spacing:0.143002pt;}
.ls3f{letter-spacing:0.143647pt;}
.ls9b{letter-spacing:0.144288pt;}
.ls10{letter-spacing:0.146960pt;}
.lsa3{letter-spacing:0.148960pt;}
.lsa5{letter-spacing:0.149632pt;}
.ls60{letter-spacing:0.153907pt;}
.ls36{letter-spacing:0.155259pt;}
.ls72{letter-spacing:0.157472pt;}
.ls82{letter-spacing:0.160320pt;}
.lsa2{letter-spacing:0.161728pt;}
.ls32{letter-spacing:0.163856pt;}
.ls34{letter-spacing:0.164595pt;}
.ls71{letter-spacing:0.170240pt;}
.ls73{letter-spacing:0.171008pt;}
.lsa{letter-spacing:0.173219pt;}
.ls17{letter-spacing:0.176352pt;}
.ls31{letter-spacing:0.177901pt;}
.ls9{letter-spacing:0.187264pt;}
.ls2f{letter-spacing:0.531339pt;}
.ls1{letter-spacing:2.657067pt;}
.ls97{letter-spacing:4.569120pt;}
.ls0{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.lsb8{letter-spacing:11.878299pt;}
.lsb0{letter-spacing:11.908936pt;}
.lsb2{letter-spacing:11.954133pt;}
.lsb1{letter-spacing:11.959467pt;}
.lsb7{letter-spacing:12.782055pt;}
.ls6f{letter-spacing:12.964663pt;}
.lsaf{letter-spacing:13.283733pt;}
.lsb4{letter-spacing:13.524539pt;}
.lsb6{letter-spacing:13.582055pt;}
.lsb3{letter-spacing:13.785976pt;}
.ls6e{letter-spacing:13.923096pt;}
.ls20{letter-spacing:14.266560pt;}
.lsae{letter-spacing:15.691890pt;}
.ls3{letter-spacing:15.937067pt;}
.ls8d{letter-spacing:17.819995pt;}
.ls8c{letter-spacing:18.222609pt;}
.lsb5{letter-spacing:19.406892pt;}
.ls8b{letter-spacing:19.521762pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5a{letter-spacing:56.088914pt;}
.ls5{letter-spacing:57.174803pt;}
.ws29{word-spacing:-58.784000pt;}
.ws123{word-spacing:-53.440000pt;}
.ws91{word-spacing:-51.302400pt;}
.ws87{word-spacing:-14.696000pt;}
.ws85{word-spacing:-14.678365pt;}
.ws124{word-spacing:-13.440160pt;}
.ws125{word-spacing:-13.370688pt;}
.ws7c{word-spacing:-13.283467pt;}
.wsd7{word-spacing:-12.979507pt;}
.ws90{word-spacing:-12.825600pt;}
.ws8e{word-spacing:-12.810209pt;}
.ws1b0{word-spacing:-11.955200pt;}
.ws27{word-spacing:-11.891264pt;}
.ws83{word-spacing:-11.881901pt;}
.ws28{word-spacing:-11.704000pt;}
.ws120{word-spacing:-10.810240pt;}
.ws16f{word-spacing:-10.801728pt;}
.ws121{word-spacing:-10.640000pt;}
.ws25{word-spacing:-10.626800pt;}
.ws8a{word-spacing:-10.369659pt;}
.ws8b{word-spacing:-10.214400pt;}
.ws8{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws86{word-spacing:-8.800000pt;}
.ws8f{word-spacing:-7.680000pt;}
.ws57{word-spacing:-3.121430pt;}
.ws53{word-spacing:-3.045011pt;}
.ws52{word-spacing:-3.003862pt;}
.ws54{word-spacing:-2.962714pt;}
.ws10a{word-spacing:-2.816095pt;}
.ws199{word-spacing:-2.709827pt;}
.ws62{word-spacing:-2.645280pt;}
.wse7{word-spacing:-2.565120pt;}
.wse8{word-spacing:-2.539469pt;}
.ws16b{word-spacing:-2.511680pt;}
.ws1a0{word-spacing:-2.497292pt;}
.ws5f{word-spacing:-2.410144pt;}
.ws5e{word-spacing:-2.310211pt;}
.ws198{word-spacing:-2.231622pt;}
.wsf3{word-spacing:-2.103398pt;}
.ws5a{word-spacing:-1.986899pt;}
.ws5b{word-spacing:-1.981021pt;}
.wsf4{word-spacing:-1.954621pt;}
.ws17a{word-spacing:-1.870400pt;}
.ws2b{word-spacing:-1.865011pt;}
.ws12{word-spacing:-1.859685pt;}
.ws40{word-spacing:-1.698858pt;}
.ws6e{word-spacing:-1.669466pt;}
.ws155{word-spacing:-1.661984pt;}
.ws18f{word-spacing:-1.647150pt;}
.ws157{word-spacing:-1.608544pt;}
.ws31{word-spacing:-1.594016pt;}
.ws3f{word-spacing:-1.581290pt;}
.ws14b{word-spacing:-1.555104pt;}
.ws158{word-spacing:-1.458912pt;}
.ws89{word-spacing:-1.434614pt;}
.wsb5{word-spacing:-1.410816pt;}
.ws4a{word-spacing:-1.381424pt;}
.ws4b{word-spacing:-1.346154pt;}
.wsb4{word-spacing:-1.316762pt;}
.ws1a6{word-spacing:-1.291162pt;}
.ws156{word-spacing:-1.287904pt;}
.wsd5{word-spacing:-1.231258pt;}
.ws75{word-spacing:-1.222079pt;}
.wsdf{word-spacing:-1.185085pt;}
.wsd3{word-spacing:-1.174825pt;}
.ws114{word-spacing:-1.168945pt;}
.ws18a{word-spacing:-1.152000pt;}
.wsd4{word-spacing:-1.149174pt;}
.ws136{word-spacing:-1.127584pt;}
.ws19a{word-spacing:-1.115811pt;}
.ws189{word-spacing:-1.094400pt;}
.ws35{word-spacing:-1.062677pt;}
.ws137{word-spacing:-1.042080pt;}
.ws1b{word-spacing:-1.009543pt;}
.ws76{word-spacing:-0.956410pt;}
.ws143{word-spacing:-0.855040pt;}
.ws112{word-spacing:-0.797008pt;}
.ws1a{word-spacing:-0.773982pt;}
.wse3{word-spacing:-0.728494pt;}
.ws2{word-spacing:-0.706678pt;}
.ws1c{word-spacing:-0.690740pt;}
.ws7a{word-spacing:-0.637606pt;}
.ws178{word-spacing:-0.625248pt;}
.ws1d1{word-spacing:-0.621670pt;}
.ws14e{word-spacing:-0.609216pt;}
.ws144{word-spacing:-0.598528pt;}
.ws3{word-spacing:-0.595098pt;}
.wsa1{word-spacing:-0.593718pt;}
.ws161{word-spacing:-0.593184pt;}
.ws79{word-spacing:-0.531339pt;}
.ws14d{word-spacing:-0.523712pt;}
.wsc0{word-spacing:-0.518154pt;}
.ws160{word-spacing:-0.513024pt;}
.wsc{word-spacing:-0.478205pt;}
.ws7d{word-spacing:-0.425071pt;}
.ws15d{word-spacing:-0.406144pt;}
.ws74{word-spacing:-0.371937pt;}
.ws3d{word-spacing:-0.323312pt;}
.ws78{word-spacing:-0.318803pt;}
.ws16a{word-spacing:-0.288576pt;}
.ws1b5{word-spacing:-0.286925pt;}
.ws38{word-spacing:-0.271533pt;}
.ws15e{word-spacing:-0.267200pt;}
.ws98{word-spacing:-0.266851pt;}
.wse1{word-spacing:-0.266772pt;}
.wsf{word-spacing:-0.265669pt;}
.wsff{word-spacing:-0.256512pt;}
.ws131{word-spacing:-0.246848pt;}
.ws15b{word-spacing:-0.245824pt;}
.ws176{word-spacing:-0.242592pt;}
.ws1ba{word-spacing:-0.239104pt;}
.wsb6{word-spacing:-0.232888pt;}
.ws16{word-spacing:-0.212535pt;}
.wse2{word-spacing:-0.205210pt;}
.ws179{word-spacing:-0.197728pt;}
.ws171{word-spacing:-0.191283pt;}
.ws19{word-spacing:-0.159402pt;}
.ws1b7{word-spacing:-0.143462pt;}
.ws162{word-spacing:-0.133600pt;}
.wse0{word-spacing:-0.133386pt;}
.ws15f{word-spacing:-0.106880pt;}
.ws18{word-spacing:-0.106268pt;}
.ws126{word-spacing:-0.095642pt;}
.ws39{word-spacing:-0.074906pt;}
.ws99{word-spacing:-0.070224pt;}
.ws132{word-spacing:-0.068096pt;}
.ws177{word-spacing:-0.063840pt;}
.wsb7{word-spacing:-0.061286pt;}
.ws2a{word-spacing:-0.058784pt;}
.ws122{word-spacing:-0.053440pt;}
.wse{word-spacing:-0.053134pt;}
.ws59{word-spacing:-0.052906pt;}
.ws84{word-spacing:-0.052800pt;}
.ws8d{word-spacing:-0.051302pt;}
.ws170{word-spacing:-0.048000pt;}
.ws1ab{word-spacing:-0.047821pt;}
.ws8c{word-spacing:-0.046080pt;}
.ws26{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws11b{word-spacing:0.002667pt;}
.ws56{word-spacing:0.017635pt;}
.wsdc{word-spacing:0.020521pt;}
.wsba{word-spacing:0.030781pt;}
.ws9b{word-spacing:0.035270pt;}
.wsbf{word-spacing:0.035912pt;}
.ws180{word-spacing:0.037408pt;}
.wsa0{word-spacing:0.041149pt;}
.ws197{word-spacing:0.042507pt;}
.wsca{word-spacing:0.046172pt;}
.ws69{word-spacing:0.047027pt;}
.ws172{word-spacing:0.047821pt;}
.wsab{word-spacing:0.052906pt;}
.ws22{word-spacing:0.053134pt;}
.ws138{word-spacing:0.064128pt;}
.ws72{word-spacing:0.064662pt;}
.ws43{word-spacing:0.076419pt;}
.ws9{word-spacing:0.085014pt;}
.ws14c{word-spacing:0.085504pt;}
.ws1a7{word-spacing:0.095642pt;}
.ws44{word-spacing:0.099933pt;}
.ws32{word-spacing:0.106268pt;}
.ws17f{word-spacing:0.112224pt;}
.wsfa{word-spacing:0.123126pt;}
.wsbd{word-spacing:0.124416pt;}
.ws13f{word-spacing:0.124800pt;}
.wse4{word-spacing:0.128256pt;}
.ws13e{word-spacing:0.134400pt;}
.wsbc{word-spacing:0.138240pt;}
.ws9e{word-spacing:0.142560pt;}
.ws1c0{word-spacing:0.143462pt;}
.wsee{word-spacing:0.143647pt;}
.wsfe{word-spacing:0.147456pt;}
.wsbb{word-spacing:0.152064pt;}
.wse5{word-spacing:0.153907pt;}
.ws9d{word-spacing:0.158400pt;}
.wsc7{word-spacing:0.159037pt;}
.ws33{word-spacing:0.159402pt;}
.ws46{word-spacing:0.163680pt;}
.ws185{word-spacing:0.165664pt;}
.wsbe{word-spacing:0.165888pt;}
.ws15c{word-spacing:0.171008pt;}
.ws9c{word-spacing:0.174240pt;}
.wsa8{word-spacing:0.182230pt;}
.wsfb{word-spacing:0.189819pt;}
.ws9f{word-spacing:0.190080pt;}
.ws1a8{word-spacing:0.191283pt;}
.ws73{word-spacing:0.199866pt;}
.ws11{word-spacing:0.212535pt;}
.ws1a5{word-spacing:0.239104pt;}
.ws1f{word-spacing:0.265669pt;}
.ws1cc{word-spacing:0.286925pt;}
.wse6{word-spacing:0.292424pt;}
.ws2c{word-spacing:0.318803pt;}
.ws13{word-spacing:0.371937pt;}
.ws190{word-spacing:0.425071pt;}
.ws139{word-spacing:0.470400pt;}
.ws96{word-spacing:0.478205pt;}
.ws13b{word-spacing:0.480000pt;}
.ws13a{word-spacing:0.499200pt;}
.ws97{word-spacing:0.531339pt;}
.ws6a{word-spacing:0.570205pt;}
.wsd9{word-spacing:0.584473pt;}
.ws173{word-spacing:0.621670pt;}
.ws18e{word-spacing:0.637606pt;}
.ws106{word-spacing:0.641280pt;}
.wsc2{word-spacing:0.651540pt;}
.ws15a{word-spacing:0.657312pt;}
.ws165{word-spacing:0.705408pt;}
.ws159{word-spacing:0.732128pt;}
.ws105{word-spacing:0.733624pt;}
.wsa3{word-spacing:0.746557pt;}
.ws107{word-spacing:0.764406pt;}
.wsc1{word-spacing:0.810578pt;}
.ws1e3{word-spacing:0.812954pt;}
.ws18d{word-spacing:0.850142pt;}
.ws127{word-spacing:0.860774pt;}
.ws30{word-spacing:0.903276pt;}
.wsa2{word-spacing:0.928787pt;}
.ws11e{word-spacing:0.956410pt;}
.ws1c2{word-spacing:0.956416pt;}
.ws134{word-spacing:0.967264pt;}
.wsed{word-spacing:0.974746pt;}
.ws16d{word-spacing:0.988640pt;}
.ws1e0{word-spacing:1.004237pt;}
.ws193{word-spacing:1.009543pt;}
.wsec{word-spacing:1.010657pt;}
.wsf5{word-spacing:1.026048pt;}
.ws16e{word-spacing:1.079488pt;}
.wseb{word-spacing:1.087611pt;}
.ws6b{word-spacing:1.105139pt;}
.ws113{word-spacing:1.115811pt;}
.wsf6{word-spacing:1.123523pt;}
.ws135{word-spacing:1.159648pt;}
.ws175{word-spacing:1.168945pt;}
.ws1ce{word-spacing:1.195520pt;}
.ws2d{word-spacing:1.222079pt;}
.ws1dc{word-spacing:1.243341pt;}
.ws111{word-spacing:1.275213pt;}
.wsef{word-spacing:1.313341pt;}
.ws12f{word-spacing:1.328347pt;}
.ws11c{word-spacing:1.381481pt;}
.wsf0{word-spacing:1.385165pt;}
.ws7f{word-spacing:1.434614pt;}
.ws1bc{word-spacing:1.434624pt;}
.ws55{word-spacing:1.469600pt;}
.ws23{word-spacing:1.487748pt;}
.ws10{word-spacing:1.540882pt;}
.ws108{word-spacing:1.554463pt;}
.ws1d0{word-spacing:1.578086pt;}
.ws82{word-spacing:1.594016pt;}
.ws109{word-spacing:1.600635pt;}
.ws1de{word-spacing:1.625907pt;}
.ws14{word-spacing:1.647150pt;}
.ws146{word-spacing:1.651296pt;}
.ws145{word-spacing:1.704736pt;}
.wsda{word-spacing:1.753418pt;}
.ws1be{word-spacing:1.817190pt;}
.ws11d{word-spacing:1.859685pt;}
.ws116{word-spacing:1.912819pt;}
.ws192{word-spacing:2.072221pt;}
.ws1c6{word-spacing:2.151936pt;}
.ws191{word-spacing:2.178489pt;}
.ws7{word-spacing:2.231335pt;}
.ws2e{word-spacing:2.231622pt;}
.ws141{word-spacing:2.249824pt;}
.ws49{word-spacing:2.274941pt;}
.ws2f{word-spacing:2.284756pt;}
.ws187{word-spacing:2.337600pt;}
.ws88{word-spacing:2.337890pt;}
.ws186{word-spacing:2.376000pt;}
.ws174{word-spacing:2.391024pt;}
.ws188{word-spacing:2.404800pt;}
.ws1ca{word-spacing:2.486682pt;}
.ws10d{word-spacing:2.497292pt;}
.ws4e{word-spacing:2.498320pt;}
.ws48{word-spacing:2.539469pt;}
.wsa{word-spacing:2.550432pt;}
.ws4f{word-spacing:2.557104pt;}
.ws47{word-spacing:2.562982pt;}
.ws163{word-spacing:2.607872pt;}
.ws142{word-spacing:2.613216pt;}
.ws19b{word-spacing:2.656693pt;}
.ws164{word-spacing:2.677344pt;}
.ws166{word-spacing:2.746816pt;}
.ws167{word-spacing:2.778880pt;}
.ws17{word-spacing:2.816095pt;}
.ws1aa{word-spacing:2.821427pt;}
.ws1d2{word-spacing:2.866415pt;}
.ws11f{word-spacing:2.869229pt;}
.ws1b1{word-spacing:2.869248pt;}
.ws1d4{word-spacing:2.917069pt;}
.ws1b9{word-spacing:2.964890pt;}
.ws10f{word-spacing:3.028630pt;}
.ws13c{word-spacing:3.038400pt;}
.ws1e8{word-spacing:3.108352pt;}
.ws77{word-spacing:3.134898pt;}
.wsb{word-spacing:3.146539pt;}
.ws1c7{word-spacing:3.156173pt;}
.ws10c{word-spacing:3.188032pt;}
.ws1b3{word-spacing:3.203994pt;}
.ws3e{word-spacing:3.233120pt;}
.ws15{word-spacing:3.241166pt;}
.ws4d{word-spacing:3.268390pt;}
.ws110{word-spacing:3.294300pt;}
.ws13d{word-spacing:3.302400pt;}
.ws4c{word-spacing:3.327174pt;}
.wsdb{word-spacing:3.347434pt;}
.ws37{word-spacing:3.400567pt;}
.ws19c{word-spacing:3.453701pt;}
.ws154{word-spacing:3.559104pt;}
.ws1e{word-spacing:3.559969pt;}
.ws6f{word-spacing:3.579946pt;}
.ws70{word-spacing:3.626973pt;}
.ws168{word-spacing:3.628576pt;}
.ws169{word-spacing:3.633920pt;}
.ws71{word-spacing:3.638730pt;}
.ws17d{word-spacing:3.639264pt;}
.ws80{word-spacing:3.666237pt;}
.ws153{word-spacing:3.692704pt;}
.ws1d{word-spacing:3.825664pt;}
.wsd{word-spacing:3.878772pt;}
.ws1db{word-spacing:3.921306pt;}
.ws1a3{word-spacing:3.931906pt;}
.ws17e{word-spacing:3.943872pt;}
.ws64{word-spacing:3.944406pt;}
.ws65{word-spacing:3.991434pt;}
.ws17b{word-spacing:3.997312pt;}
.ws17c{word-spacing:4.008000pt;}
.ws93{word-spacing:4.038174pt;}
.ws1a2{word-spacing:4.091308pt;}
.ws1a1{word-spacing:4.144442pt;}
.ws14a{word-spacing:4.243136pt;}
.ws92{word-spacing:4.250709pt;}
.ws1c8{word-spacing:4.256051pt;}
.ws18b{word-spacing:4.303843pt;}
.ws66{word-spacing:4.379408pt;}
.wsf2{word-spacing:4.386355pt;}
.wsd8{word-spacing:4.399514pt;}
.wsf1{word-spacing:4.442788pt;}
.ws12d{word-spacing:4.516379pt;}
.ws140{word-spacing:4.537056pt;}
.ws14f{word-spacing:4.547744pt;}
.ws148{word-spacing:4.569120pt;}
.ws147{word-spacing:4.590496pt;}
.ws149{word-spacing:4.627904pt;}
.wsd0{word-spacing:4.647997pt;}
.wsf8{word-spacing:4.704430pt;}
.wsf7{word-spacing:4.709560pt;}
.ws3b{word-spacing:4.761504pt;}
.ws19e{word-spacing:4.888316pt;}
.ws12c{word-spacing:4.941450pt;}
.ws41{word-spacing:4.973126pt;}
.wsd2{word-spacing:4.991724pt;}
.ws42{word-spacing:5.026032pt;}
.ws3c{word-spacing:5.037789pt;}
.ws10e{word-spacing:5.100851pt;}
.wsd1{word-spacing:5.145631pt;}
.ws115{word-spacing:5.153985pt;}
.ws34{word-spacing:5.207119pt;}
.wsb1{word-spacing:5.325830pt;}
.ws18c{word-spacing:5.366521pt;}
.ws152{word-spacing:5.445536pt;}
.ws19d{word-spacing:5.525922pt;}
.wsb3{word-spacing:5.719683pt;}
.ws12e{word-spacing:5.735075pt;}
.ws21{word-spacing:5.738458pt;}
.ws20{word-spacing:5.791591pt;}
.wsc3{word-spacing:5.879255pt;}
.ws1d9{word-spacing:5.881958pt;}
.ws150{word-spacing:5.889088pt;}
.wsb2{word-spacing:5.896035pt;}
.ws1d5{word-spacing:5.929779pt;}
.wsc4{word-spacing:5.971599pt;}
.ws151{word-spacing:6.054752pt;}
.ws1a4{word-spacing:6.110395pt;}
.ws183{word-spacing:6.113536pt;}
.wsd6{word-spacing:6.163529pt;}
.ws1da{word-spacing:6.168883pt;}
.ws181{word-spacing:6.188352pt;}
.ws182{word-spacing:6.199040pt;}
.ws10b{word-spacing:6.216662pt;}
.ws1ae{word-spacing:6.360166pt;}
.ws7b{word-spacing:6.482332pt;}
.wsc8{word-spacing:6.556447pt;}
.wsa4{word-spacing:6.736646pt;}
.ws184{word-spacing:6.776192pt;}
.ws36{word-spacing:6.801135pt;}
.wsa5{word-spacing:6.842458pt;}
.wscc{word-spacing:7.095122pt;}
.wscf{word-spacing:7.136164pt;}
.wsf9{word-spacing:7.166945pt;}
.wscd{word-spacing:7.192596pt;}
.ws81{word-spacing:7.279340pt;}
.wsce{word-spacing:7.310592pt;}
.ws1d7{word-spacing:7.460045pt;}
.wsa9{word-spacing:7.512595pt;}
.ws19f{word-spacing:7.545009pt;}
.ws130{word-spacing:7.651277pt;}
.wsfc{word-spacing:7.810560pt;}
.wsfd{word-spacing:7.819776pt;}
.wsad{word-spacing:8.129827pt;}
.wsb0{word-spacing:8.176854pt;}
.ws94{word-spacing:8.235749pt;}
.wsae{word-spacing:8.241517pt;}
.wsaf{word-spacing:8.376720pt;}
.ws63{word-spacing:8.541315pt;}
.ws1a9{word-spacing:8.655685pt;}
.ws4{word-spacing:9.258539pt;}
.wsdd{word-spacing:9.614070pt;}
.wsde{word-spacing:9.855191pt;}
.wsb8{word-spacing:9.916140pt;}
.wsea{word-spacing:9.937275pt;}
.wscb{word-spacing:10.193787pt;}
.ws133{word-spacing:10.329312pt;}
.ws24{word-spacing:10.582144pt;}
.ws1ad{word-spacing:10.903142pt;}
.ws3a{word-spacing:11.362243pt;}
.ws1b6{word-spacing:11.572634pt;}
.wsac{word-spacing:11.680381pt;}
.ws1d8{word-spacing:11.763917pt;}
.ws1e7{word-spacing:11.811738pt;}
.ws1d3{word-spacing:11.899110pt;}
.ws1c9{word-spacing:11.899964pt;}
.ws1cd{word-spacing:11.900416pt;}
.ws1e4{word-spacing:11.901551pt;}
.ws1c3{word-spacing:11.901636pt;}
.ws1b4{word-spacing:11.902362pt;}
.ws1cb{word-spacing:11.904836pt;}
.ws1e5{word-spacing:11.905749pt;}
.ws1b8{word-spacing:11.907379pt;}
.ws1e6{word-spacing:11.907405pt;}
.ws1c1{word-spacing:12.050842pt;}
.wsc9{word-spacing:12.056064pt;}
.wsb9{word-spacing:12.312576pt;}
.ws1e2{word-spacing:12.529050pt;}
.ws95{word-spacing:12.645860pt;}
.ws103{word-spacing:12.666563pt;}
.ws104{word-spacing:12.671693pt;}
.wse9{word-spacing:12.681953pt;}
.ws61{word-spacing:13.114710pt;}
.ws60{word-spacing:13.138224pt;}
.ws1dd{word-spacing:13.150720pt;}
.ws16c{word-spacing:13.172960pt;}
.ws7e{word-spacing:13.230333pt;}
.ws1bd{word-spacing:13.294182pt;}
.wsaa{word-spacing:13.814240pt;}
.ws9a{word-spacing:14.108160pt;}
.ws51{word-spacing:14.114038pt;}
.ws50{word-spacing:14.172822pt;}
.ws45{word-spacing:14.250720pt;}
.wsc6{word-spacing:14.472407pt;}
.ws1af{word-spacing:14.728806pt;}
.ws1bb{word-spacing:14.768759pt;}
.ws1bf{word-spacing:14.771840pt;}
.ws1c5{word-spacing:14.776516pt;}
.ws1b2{word-spacing:14.776627pt;}
.wsc5{word-spacing:14.918738pt;}
.ws1df{word-spacing:14.967910pt;}
.ws1c4{word-spacing:15.111373pt;}
.ws6d{word-spacing:15.154515pt;}
.ws6c{word-spacing:15.295597pt;}
.wsa7{word-spacing:16.582966pt;}
.wsa6{word-spacing:17.094387pt;}
.ws1d6{word-spacing:17.837158pt;}
.ws1e1{word-spacing:18.171904pt;}
.ws1cf{word-spacing:18.793574pt;}
.ws101{word-spacing:21.598310pt;}
.ws102{word-spacing:21.839432pt;}
.ws58{word-spacing:21.873526pt;}
.ws100{word-spacing:21.926646pt;}
.ws5c{word-spacing:23.689952pt;}
.ws5d{word-spacing:23.719344pt;}
.ws1ac{word-spacing:24.891074pt;}
.ws1{word-spacing:25.293814pt;}
.ws67{word-spacing:31.467075pt;}
.ws68{word-spacing:31.949104pt;}
.ws196{word-spacing:166.999743pt;}
.ws194{word-spacing:234.963470pt;}
.ws12a{word-spacing:270.109876pt;}
.ws129{word-spacing:312.799073pt;}
.ws12b{word-spacing:339.366006pt;}
.ws128{word-spacing:352.649473pt;}
.ws195{word-spacing:376.559713pt;}
.ws117{word-spacing:789.409857pt;}
.ws118{word-spacing:819.855563pt;}
.ws119{word-spacing:848.707252pt;}
.ws11a{word-spacing:894.030441pt;}
._56{margin-left:-20.806600pt;}
._54{margin-left:-19.198722pt;}
._55{margin-left:-18.210380pt;}
._14{margin-left:-14.456640pt;}
._15{margin-left:-13.464000pt;}
._6{margin-left:-10.616218pt;}
._8{margin-left:-8.607744pt;}
._7{margin-left:-6.429280pt;}
._3{margin-left:-4.797974pt;}
._e{margin-left:-3.825638pt;}
._1{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._12{width:1.006544pt;}
._9{width:2.668620pt;}
._16{width:3.764640pt;}
._1f{width:4.935291pt;}
._4{width:7.959430pt;}
._4f{width:9.819163pt;}
._0{width:11.530016pt;}
._52{width:12.481229pt;}
._a{width:13.671338pt;}
._18{width:14.675570pt;}
._20{width:15.578846pt;}
._d{width:16.503367pt;}
._c{width:18.139894pt;}
._19{width:19.446995pt;}
._1a{width:21.381060pt;}
._5{width:22.319360pt;}
._17{width:23.697705pt;}
._22{width:25.823059pt;}
._b{width:27.789012pt;}
._51{width:29.383028pt;}
._21{width:30.445706pt;}
._50{width:31.614651pt;}
._2b{width:33.049265pt;}
._f{width:34.218210pt;}
._53{width:54.993920pt;}
._2a{width:74.228012pt;}
._1e{width:81.082281pt;}
._1b{width:83.738974pt;}
._40{width:142.617348pt;}
._26{width:152.972402pt;}
._4b{width:184.002580pt;}
._37{width:196.473105pt;}
._3a{width:198.083055pt;}
._36{width:214.931822pt;}
._39{width:228.034622pt;}
._4c{width:234.851691pt;}
._47{width:242.237298pt;}
._43{width:250.366780pt;}
._42{width:286.550943pt;}
._25{width:288.676298pt;}
._41{width:296.547810pt;}
._3b{width:299.515606pt;}
._3c{width:312.799073pt;}
._4e{width:314.074286pt;}
._28{width:315.790496pt;}
._3d{width:326.082540pt;}
._4d{width:337.559455pt;}
._38{width:339.366006pt;}
._46{width:342.660306pt;}
._4a{width:355.040497pt;}
._3f{width:361.947900pt;}
._24{width:363.276246pt;}
._45{width:379.535210pt;}
._2e{width:397.510383pt;}
._27{width:402.542174pt;}
._29{width:438.742263pt;}
._49{width:476.238847pt;}
._48{width:485.802943pt;}
._23{width:506.472017pt;}
._44{width:548.819709pt;}
._2f{width:622.038177pt;}
._34{width:637.404487pt;}
._30{width:722.142382pt;}
._33{width:736.541660pt;}
._31{width:812.151152pt;}
._2c{width:827.198659pt;}
._2d{width:831.066809pt;}
._32{width:832.395155pt;}
._10{width:1755.312523pt;}
._1d{width:1856.294151pt;}
._35{width:1934.524368pt;}
._1c{width:2127.150502pt;}
._13{width:2128.077459pt;}
._3e{width:2300.043189pt;}
._11{width:2321.296523pt;}
.fsf{font-size:30.720000pt;}
.fs4{font-size:31.880533pt;}
.fsb{font-size:35.200000pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:40.857600pt;}
.fs10{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs12{font-size:42.560000pt;}
.fse{font-size:46.080000pt;}
.fs7{font-size:46.816000pt;}
.fsa{font-size:47.820800pt;}
.fs14{font-size:48.000000pt;}
.fsd{font-size:51.302400pt;}
.fs9{font-size:52.800000pt;}
.fs1{font-size:53.133867pt;}
.fs13{font-size:53.440000pt;}
.fs11{font-size:55.365867pt;}
.fs8{font-size:58.784000pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.ybd{bottom:-708.895293pt;}
.yd1{bottom:-676.863293pt;}
.y49{bottom:-658.023960pt;}
.yd0{bottom:-651.430988pt;}
.y18a{bottom:-614.051600pt;}
.y6d{bottom:-613.317883pt;}
.y6c{bottom:-592.725848pt;}
.y1ac{bottom:-583.329712pt;}
.y6b{bottom:-572.221989pt;}
.y1ab{bottom:-564.689840pt;}
.y6a{bottom:-551.718130pt;}
.y1aa{bottom:-545.969808pt;}
.y69{bottom:-531.126094pt;}
.y1a9{bottom:-527.329936pt;}
.y68{bottom:-510.622235pt;}
.y1a8{bottom:-508.690064pt;}
.y67{bottom:-490.118376pt;}
.y1a7{bottom:-489.970032pt;}
.y1a6{bottom:-471.330160pt;}
.y66{bottom:-469.526341pt;}
.y1a5{bottom:-452.690288pt;}
.y65{bottom:-449.022482pt;}
.y1a4{bottom:-433.970256pt;}
.y64{bottom:-428.518622pt;}
.y1a3{bottom:-415.330384pt;}
.y63{bottom:-407.926587pt;}
.y1a2{bottom:-396.690512pt;}
.y62{bottom:-387.422728pt;}
.y1a1{bottom:-377.970480pt;}
.y61{bottom:-366.918869pt;}
.y1a0{bottom:-359.330608pt;}
.y60{bottom:-346.326834pt;}
.y19f{bottom:-340.690736pt;}
.ycf{bottom:-329.615041pt;}
.y5f{bottom:-325.822974pt;}
.y19e{bottom:-321.970704pt;}
.yce{bottom:-309.111182pt;}
.y5e{bottom:-305.319115pt;}
.y19d{bottom:-303.330832pt;}
.ycd{bottom:-288.519153pt;}
.y5d{bottom:-284.727080pt;}
.y19c{bottom:-284.690960pt;}
.ycc{bottom:-268.014396pt;}
.y19b{bottom:-265.970928pt;}
.y5c{bottom:-264.223221pt;}
.ycb{bottom:-247.510537pt;}
.y19a{bottom:-247.331056pt;}
.y5b{bottom:-243.719362pt;}
.y199{bottom:-228.691184pt;}
.yca{bottom:-226.918501pt;}
.y5a{bottom:-223.127326pt;}
.y198{bottom:-209.971152pt;}
.yc9{bottom:-206.414642pt;}
.y59{bottom:-202.623467pt;}
.y197{bottom:-191.331280pt;}
.yc8{bottom:-185.910783pt;}
.y58{bottom:-182.119608pt;}
.y196{bottom:-172.691408pt;}
.y106{bottom:-169.463936pt;}
.yc7{bottom:-165.318748pt;}
.y57{bottom:-161.527573pt;}
.y195{bottom:-153.971376pt;}
.yc6{bottom:-144.814889pt;}
.y123{bottom:-144.426783pt;}
.y56{bottom:-141.023714pt;}
.y194{bottom:-135.331504pt;}
.y122{bottom:-126.532506pt;}
.yc5{bottom:-124.311029pt;}
.y55{bottom:-120.519854pt;}
.y193{bottom:-116.691632pt;}
.y121{bottom:-108.638228pt;}
.yc4{bottom:-103.718994pt;}
.y54{bottom:-99.927819pt;}
.y192{bottom:-97.971600pt;}
.y120{bottom:-90.666998pt;}
.yc3{bottom:-83.215135pt;}
.y53{bottom:-79.423960pt;}
.y11f{bottom:-68.932736pt;}
.y1cd{bottom:-67.725467pt;}
.y191{bottom:-63.731200pt;}
.yc2{bottom:-58.311293pt;}
.ydc{bottom:-46.443264pt;}
.y190{bottom:-45.091600pt;}
.y52{bottom:-41.759960pt;}
.y1d7{bottom:-37.405067pt;}
.y11e{bottom:-36.062336pt;}
.y18f{bottom:-26.371600pt;}
.y51{bottom:-21.167960pt;}
.yc1{bottom:-20.559293pt;}
.y1d6{bottom:-18.765467pt;}
.yf0{bottom:-18.488064pt;}
.y11d{bottom:-18.091136pt;}
.y18e{bottom:-3.331264pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:3.707402pt;}
.y11c{bottom:4.028493pt;}
.y50{bottom:4.176330pt;}
.y1d5{bottom:4.275581pt;}
.yc0{bottom:4.785085pt;}
.y42{bottom:40.818667pt;}
.y8d{bottom:88.640000pt;}
.y18{bottom:89.120000pt;}
.y15f{bottom:89.964000pt;}
.y228{bottom:91.162667pt;}
.y160{bottom:94.785333pt;}
.y186{bottom:97.230667pt;}
.y24f{bottom:100.104000pt;}
.y1df{bottom:100.932000pt;}
.y1fc{bottom:103.473333pt;}
.y17{bottom:105.020000pt;}
.y8c{bottom:107.209333pt;}
.y15e{bottom:108.534667pt;}
.y227{bottom:109.733333pt;}
.y41{bottom:111.100000pt;}
.y185{bottom:115.801333pt;}
.y24e{bottom:117.436000pt;}
.yfa{bottom:117.560000pt;}
.y1de{bottom:119.502667pt;}
.y16{bottom:120.920000pt;}
.y1fb{bottom:122.042667pt;}
.y283{bottom:124.248000pt;}
.y8b{bottom:125.780000pt;}
.y15d{bottom:127.104000pt;}
.y226{bottom:128.302667pt;}
.y40{bottom:129.670667pt;}
.y24d{bottom:134.768000pt;}
.yf8{bottom:136.129333pt;}
.y15{bottom:136.821333pt;}
.y1dd{bottom:138.072000pt;}
.y184{bottom:138.356000pt;}
.y1fa{bottom:140.613333pt;}
.yf9{bottom:140.952000pt;}
.y282{bottom:141.270667pt;}
.y8a{bottom:144.350667pt;}
.y15c{bottom:145.674667pt;}
.y225{bottom:146.873333pt;}
.y132{bottom:147.544000pt;}
.y3f{bottom:148.241333pt;}
.y24c{bottom:152.101333pt;}
.y14{bottom:152.721333pt;}
.yf6{bottom:154.700000pt;}
.y1dc{bottom:156.642667pt;}
.y281{bottom:158.293333pt;}
.y1f9{bottom:159.184000pt;}
.yf7{bottom:159.522667pt;}
.y183{bottom:160.073333pt;}
.y89{bottom:162.920000pt;}
.y15b{bottom:164.245333pt;}
.y224{bottom:165.444000pt;}
.y131{bottom:166.113333pt;}
.y3e{bottom:166.810667pt;}
.y1c9{bottom:166.944000pt;}
.yb9{bottom:167.021333pt;}
.y13{bottom:168.621333pt;}
.yf5{bottom:173.270667pt;}
.y280{bottom:175.316000pt;}
.y24b{bottom:177.402667pt;}
.y1f8{bottom:177.753333pt;}
.y88{bottom:181.490667pt;}
.y15a{bottom:182.814667pt;}
.y223{bottom:184.014667pt;}
.y12{bottom:184.521333pt;}
.y130{bottom:184.684000pt;}
.y3d{bottom:185.381333pt;}
.y1c8{bottom:185.513333pt;}
.yb8{bottom:185.592000pt;}
.y1db{bottom:188.312000pt;}
.yf4{bottom:191.841333pt;}
.y27f{bottom:192.338667pt;}
.y182{bottom:194.584000pt;}
.y24a{bottom:194.736000pt;}
.y1f7{bottom:196.324000pt;}
.y87{bottom:200.061333pt;}
.y11{bottom:200.422667pt;}
.y159{bottom:201.385333pt;}
.y222{bottom:202.584000pt;}
.y12f{bottom:203.254667pt;}
.y3c{bottom:203.952000pt;}
.y1c7{bottom:204.084000pt;}
.yb7{bottom:204.162667pt;}
.y1da{bottom:205.408000pt;}
.y27e{bottom:209.361333pt;}
.yf3{bottom:210.410667pt;}
.y249{bottom:212.068000pt;}
.y181{bottom:213.154667pt;}
.y1f6{bottom:214.894667pt;}
.y86{bottom:218.632000pt;}
.y158{bottom:219.956000pt;}
.y221{bottom:221.154667pt;}
.y12e{bottom:221.824000pt;}
.y1d9{bottom:222.504000pt;}
.y3b{bottom:222.521333pt;}
.y1c6{bottom:222.654667pt;}
.yb5{bottom:222.732000pt;}
.y10{bottom:224.293333pt;}
.y27d{bottom:226.384000pt;}
.yb6{bottom:227.554667pt;}
.yf2{bottom:228.981333pt;}
.y248{bottom:229.400000pt;}
.y180{bottom:231.724000pt;}
.y1f5{bottom:233.464000pt;}
.y85{bottom:237.201333pt;}
.y157{bottom:238.526667pt;}
.y1d8{bottom:239.600000pt;}
.y220{bottom:239.725333pt;}
.yf{bottom:240.193333pt;}
.y12d{bottom:240.394667pt;}
.y3a{bottom:241.092000pt;}
.y1c5{bottom:241.224000pt;}
.yb3{bottom:241.302667pt;}
.y27c{bottom:243.406667pt;}
.yb4{bottom:246.125333pt;}
.y247{bottom:246.732000pt;}
.y17f{bottom:250.294667pt;}
.y1f4{bottom:252.034667pt;}
.y84{bottom:255.772000pt;}
.ye{bottom:256.093333pt;}
.y156{bottom:257.096000pt;}
.y21e{bottom:258.294667pt;}
.y12c{bottom:258.965333pt;}
.y39{bottom:259.662667pt;}
.y1c4{bottom:259.794667pt;}
.y27b{bottom:260.430667pt;}
.yf1{bottom:260.650667pt;}
.y1ca{bottom:262.193867pt;}
.y21f{bottom:263.117333pt;}
.yb2{bottom:263.858667pt;}
.y17e{bottom:268.865333pt;}
.y1f3{bottom:270.605333pt;}
.yd{bottom:271.994667pt;}
.y246{bottom:272.034667pt;}
.y83{bottom:274.342667pt;}
.y155{bottom:275.666667pt;}
.y21d{bottom:276.865333pt;}
.y27a{bottom:277.453333pt;}
.y12b{bottom:277.536000pt;}
.y1c3{bottom:278.365333pt;}
.y38{bottom:282.217333pt;}
.yb1{bottom:282.428000pt;}
.yd9{bottom:283.244128pt;}
.yee{bottom:284.564956pt;}
.y17d{bottom:287.434667pt;}
.yc{bottom:287.894667pt;}
.y1f2{bottom:289.176000pt;}
.y245{bottom:289.366667pt;}
.y82{bottom:292.912000pt;}
.y154{bottom:294.237333pt;}
.y2a9{bottom:294.256000pt;}
.y279{bottom:294.476000pt;}
.y4f{bottom:295.368753pt;}
.y21c{bottom:295.436000pt;}
.y12a{bottom:296.105333pt;}
.y1c2{bottom:296.934667pt;}
.yb0{bottom:300.998667pt;}
.yed{bottom:302.459233pt;}
.yb{bottom:303.794667pt;}
.y17c{bottom:306.005333pt;}
.y1f1{bottom:307.745333pt;}
.y18d{bottom:308.668824pt;}
.y2a8{bottom:311.278667pt;}
.y81{bottom:311.482667pt;}
.y278{bottom:311.498667pt;}
.y153{bottom:312.806667pt;}
.y21b{bottom:314.005333pt;}
.y244{bottom:314.669333pt;}
.y129{bottom:314.676000pt;}
.y1c1{bottom:315.505333pt;}
.y4e{bottom:315.872612pt;}
.ya{bottom:319.696000pt;}
.yec{bottom:320.430459pt;}
.yaf{bottom:323.554667pt;}
.y1f0{bottom:326.316000pt;}
.ybf{bottom:326.601032pt;}
.y18c{bottom:327.308696pt;}
.y2a7{bottom:328.301333pt;}
.y277{bottom:328.521333pt;}
.y17b{bottom:328.560000pt;}
.y80{bottom:330.053333pt;}
.y243{bottom:332.001333pt;}
.y21a{bottom:332.576000pt;}
.y128{bottom:333.246667pt;}
.y1c0{bottom:334.076000pt;}
.y152{bottom:335.362667pt;}
.y9{bottom:335.596000pt;}
.y4d{bottom:336.464647pt;}
.yeb{bottom:338.325519pt;}
.yae{bottom:342.124000pt;}
.y1ef{bottom:344.886667pt;}
.y276{bottom:345.544000pt;}
.y18b{bottom:346.028728pt;}
.ybe{bottom:347.193067pt;}
.y7f{bottom:348.622667pt;}
.y242{bottom:349.333333pt;}
.y218{bottom:351.146667pt;}
.y8{bottom:351.496000pt;}
.y127{bottom:351.816000pt;}
.y37{bottom:352.628000pt;}
.y1bf{bottom:352.645333pt;}
.y219{bottom:355.968000pt;}
.yea{bottom:356.219796pt;}
.y4c{bottom:356.968506pt;}
.y17a{bottom:359.976000pt;}
.yad{bottom:360.694667pt;}
.y275{bottom:362.566667pt;}
.y1ee{bottom:363.456000pt;}
.y2a6{bottom:366.552000pt;}
.y241{bottom:366.665333pt;}
.y151{bottom:366.777333pt;}
.y7e{bottom:367.193333pt;}
.y7{bottom:367.397333pt;}
.y217{bottom:369.716000pt;}
.y126{bottom:370.386667pt;}
.y36{bottom:371.198667pt;}
.y1be{bottom:371.216000pt;}
.ye9{bottom:374.191027pt;}
.y4b{bottom:377.472366pt;}
.y179{bottom:378.546667pt;}
.yac{bottom:379.265333pt;}
.y274{bottom:379.589333pt;}
.y1ed{bottom:382.026667pt;}
.y11b{bottom:382.268262pt;}
.y2a5{bottom:383.574667pt;}
.y240{bottom:383.997333pt;}
.y150{bottom:385.348000pt;}
.y7d{bottom:385.764000pt;}
.y216{bottom:388.286667pt;}
.y6{bottom:388.610667pt;}
.y1bd{bottom:389.786667pt;}
.ye8{bottom:392.085304pt;}
.y189{bottom:395.948520pt;}
.y273{bottom:396.612000pt;}
.y178{bottom:397.116000pt;}
.yab{bottom:397.834667pt;}
.y4a{bottom:398.064401pt;}
.y11a{bottom:400.162540pt;}
.y1ec{bottom:400.597333pt;}
.y125{bottom:402.056000pt;}
.ybc{bottom:402.104839pt;}
.y14f{bottom:403.918667pt;}
.y7c{bottom:404.333333pt;}
.y188{bottom:404.508400pt;}
.y5{bottom:404.510667pt;}
.y35{bottom:405.709333pt;}
.y215{bottom:406.857333pt;}
.y1bc{bottom:408.357333pt;}
.y23f{bottom:409.300000pt;}
.ye7{bottom:409.979581pt;}
.ybb{bottom:411.520707pt;}
.y272{bottom:413.634667pt;}
.y177{bottom:415.686667pt;}
.y2a4{bottom:417.620000pt;}
.y119{bottom:418.133770pt;}
.y124{bottom:419.152000pt;}
.y1eb{bottom:419.166667pt;}
.yaa{bottom:420.390667pt;}
.y4{bottom:420.412000pt;}
.y14e{bottom:422.488000pt;}
.y7b{bottom:422.904000pt;}
.y34{bottom:424.278667pt;}
.y214{bottom:425.426667pt;}
.y23e{bottom:426.632000pt;}
.y1bb{bottom:426.926667pt;}
.ye6{bottom:427.950812pt;}
.y271{bottom:430.657333pt;}
.y176{bottom:434.257333pt;}
.y2a3{bottom:434.642667pt;}
.y118{bottom:436.028047pt;}
.y3{bottom:436.312000pt;}
.y1ea{bottom:437.737333pt;}
.y14d{bottom:441.058667pt;}
.y7a{bottom:441.474667pt;}
.y103{bottom:441.745333pt;}
.y33{bottom:442.849333pt;}
.y23d{bottom:443.964000pt;}
.y213{bottom:443.997333pt;}
.ye5{bottom:445.845089pt;}
.y270{bottom:447.680000pt;}
.y2a2{bottom:451.665333pt;}
.ya9{bottom:451.805333pt;}
.y48{bottom:452.976172pt;}
.y117{bottom:453.922324pt;}
.y1e9{bottom:456.308000pt;}
.y2{bottom:457.525333pt;}
.y14c{bottom:459.629333pt;}
.y79{bottom:460.045333pt;}
.y23c{bottom:461.297333pt;}
.y32{bottom:461.420000pt;}
.y47{bottom:462.392040pt;}
.y212{bottom:462.568000pt;}
.ye4{bottom:463.739366pt;}
.y26f{bottom:464.702667pt;}
.y2a1{bottom:468.688000pt;}
.y1ba{bottom:469.569333pt;}
.ya8{bottom:470.376000pt;}
.y116{bottom:471.893555pt;}
.y1{bottom:473.426667pt;}
.y1e8{bottom:474.877333pt;}
.y175{bottom:476.898667pt;}
.y14b{bottom:478.200000pt;}
.y78{bottom:478.614667pt;}
.y23b{bottom:478.629333pt;}
.y31{bottom:479.989333pt;}
.y211{bottom:481.138667pt;}
.ye3{bottom:481.710597pt;}
.y26e{bottom:481.725333pt;}
.y1b9{bottom:485.509333pt;}
.y2a0{bottom:485.710667pt;}
.ya7{bottom:488.946667pt;}
.y115{bottom:489.787832pt;}
.y174{bottom:492.838667pt;}
.y1e7{bottom:493.448000pt;}
.y23a{bottom:495.961333pt;}
.y14a{bottom:496.769333pt;}
.y77{bottom:497.185333pt;}
.y30{bottom:498.560000pt;}
.y26d{bottom:498.748000pt;}
.ye2{bottom:499.604874pt;}
.y20f{bottom:499.708000pt;}
.y1b8{bottom:501.449333pt;}
.y29f{bottom:502.733333pt;}
.y210{bottom:504.530667pt;}
.ya6{bottom:507.516000pt;}
.y114{bottom:507.682109pt;}
.y173{bottom:508.780000pt;}
.y1e6{bottom:512.018667pt;}
.y149{bottom:515.340000pt;}
.y76{bottom:515.756000pt;}
.y26c{bottom:515.770667pt;}
.y2f{bottom:517.130667pt;}
.y1b7{bottom:517.389333pt;}
.y20d{bottom:518.278667pt;}
.y29e{bottom:519.756000pt;}
.ye1{bottom:521.339136pt;}
.y20e{bottom:523.100000pt;}
.y172{bottom:524.720000pt;}
.y113{bottom:525.653340pt;}
.ya5{bottom:526.086667pt;}
.y239{bottom:529.233333pt;}
.y1e5{bottom:530.589333pt;}
.y26b{bottom:532.793333pt;}
.y1b6{bottom:533.330667pt;}
.y75{bottom:534.325333pt;}
.y2e{bottom:535.700000pt;}
.y29d{bottom:536.778667pt;}
.y171{bottom:540.660000pt;}
.y112{bottom:543.547617pt;}
.ya4{bottom:544.657333pt;}
.y238{bottom:547.804000pt;}
.y1e4{bottom:549.158667pt;}
.y1b5{bottom:549.270667pt;}
.y26a{bottom:549.816000pt;}
.y74{bottom:552.896000pt;}
.y20c{bottom:553.017333pt;}
.y29c{bottom:553.801333pt;}
.y2d{bottom:554.270667pt;}
.ye0{bottom:554.286336pt;}
.y170{bottom:556.600000pt;}
.y148{bottom:560.638667pt;}
.y111{bottom:561.441894pt;}
.ya3{bottom:563.228000pt;}
.y1b4{bottom:565.210667pt;}
.y20a{bottom:565.637333pt;}
.y237{bottom:566.374667pt;}
.y269{bottom:566.838667pt;}
.y1e3{bottom:567.729333pt;}
.y20b{bottom:569.494667pt;}
.yd8{bottom:570.053333pt;}
.y29b{bottom:570.824000pt;}
.y73{bottom:571.466667pt;}
.y16f{bottom:572.540000pt;}
.y2c{bottom:572.841333pt;}
.ydf{bottom:576.405066pt;}
.y147{bottom:576.578667pt;}
.y110{bottom:579.413125pt;}
.y268{bottom:583.861333pt;}
.y236{bottom:584.944000pt;}
.ya2{bottom:585.782667pt;}
.y1e2{bottom:586.300000pt;}
.y209{bottom:587.134667pt;}
.y1b3{bottom:587.553333pt;}
.y29a{bottom:587.846667pt;}
.y16e{bottom:588.481333pt;}
.yd7{bottom:588.622667pt;}
.y72{bottom:590.036000pt;}
.y2b{bottom:591.412000pt;}
.y146{bottom:592.518667pt;}
.y10f{bottom:597.307402pt;}
.y267{bottom:600.885333pt;}
.y208{bottom:603.074667pt;}
.y1b2{bottom:603.493333pt;}
.y235{bottom:603.514667pt;}
.y16d{bottom:604.421333pt;}
.y1e1{bottom:604.869333pt;}
.yd6{bottom:607.193333pt;}
.ya1{bottom:607.500000pt;}
.y145{bottom:608.460000pt;}
.y71{bottom:608.606667pt;}
.y2a{bottom:609.981333pt;}
.y266{bottom:617.908000pt;}
.y205{bottom:619.014667pt;}
.y10e{bottom:619.041633pt;}
.y207{bottom:619.345333pt;}
.y16c{bottom:620.361333pt;}
.y299{bottom:621.892000pt;}
.y234{bottom:622.085333pt;}
.y1e0{bottom:623.440000pt;}
.y206{bottom:623.837333pt;}
.yd5{bottom:625.764000pt;}
.y70{bottom:627.177333pt;}
.y29{bottom:628.552000pt;}
.y144{bottom:630.801333pt;}
.y1b1{bottom:632.529333pt;}
.y265{bottom:634.930667pt;}
.y204{bottom:635.614667pt;}
.y16b{bottom:636.301333pt;}
.y10d{bottom:637.013640pt;}
.y298{bottom:638.914667pt;}
.y233{bottom:640.654667pt;}
.ya0{bottom:642.010667pt;}
.yd4{bottom:644.333333pt;}
.y28{bottom:647.122667pt;}
.y1b0{bottom:649.625333pt;}
.y203{bottom:651.554667pt;}
.y264{bottom:651.953333pt;}
.y16a{bottom:652.241333pt;}
.y297{bottom:655.937333pt;}
.y6f{bottom:657.649333pt;}
.y10c{bottom:658.747901pt;}
.y232{bottom:659.225333pt;}
.y9f{bottom:660.580000pt;}
.y143{bottom:662.494667pt;}
.y27{bottom:665.692000pt;}
.yd3{bottom:666.889333pt;}
.y263{bottom:668.976000pt;}
.y296{bottom:672.961333pt;}
.y202{bottom:674.557333pt;}
.y169{bottom:674.584000pt;}
.y6e{bottom:674.745333pt;}
.y10b{bottom:676.642179pt;}
.y231{bottom:677.796000pt;}
.y9e{bottom:679.150667pt;}
.y201{bottom:682.528000pt;}
.y1af{bottom:683.989333pt;}
.y26{bottom:684.262667pt;}
.y262{bottom:685.998667pt;}
.y295{bottom:689.984000pt;}
.y10a{bottom:694.613409pt;}
.yd2{bottom:695.462667pt;}
.y142{bottom:695.476000pt;}
.y230{bottom:696.365333pt;}
.y46{bottom:697.340000pt;}
.y9d{bottom:697.721333pt;}
.y1ae{bottom:701.085333pt;}
.y25{bottom:702.833333pt;}
.y261{bottom:703.021333pt;}
.y168{bottom:703.620000pt;}
.y294{bottom:707.006667pt;}
.y109{bottom:712.507686pt;}
.y141{bottom:714.046667pt;}
.y22f{bottom:714.936000pt;}
.y9c{bottom:716.290667pt;}
.yba{bottom:718.057333pt;}
.y1ad{bottom:718.181333pt;}
.y260{bottom:720.044000pt;}
.y24{bottom:721.402667pt;}
.y200{bottom:722.190667pt;}
.y293{bottom:724.029333pt;}
.y108{bottom:730.401964pt;}
.y140{bottom:732.616000pt;}
.y22e{bottom:733.506667pt;}
.y9b{bottom:734.861333pt;}
.y167{bottom:736.601333pt;}
.y25f{bottom:737.066667pt;}
.y187{bottom:738.118667pt;}
.y292{bottom:741.052000pt;}
.y13f{bottom:751.186667pt;}
.y22d{bottom:752.077333pt;}
.y107{bottom:752.213179pt;}
.y9a{bottom:753.432000pt;}
.y25e{bottom:754.089333pt;}
.y166{bottom:755.172000pt;}
.y23{bottom:756.976000pt;}
.y291{bottom:758.074667pt;}
.y13e{bottom:769.757333pt;}
.y22c{bottom:770.646667pt;}
.y25d{bottom:771.112000pt;}
.y22{bottom:771.322667pt;}
.y99{bottom:772.002667pt;}
.y165{bottom:773.742667pt;}
.y290{bottom:775.097333pt;}
.y1ff{bottom:778.564000pt;}
.y1d4{bottom:780.355309pt;}
.y21{bottom:785.669333pt;}
.y25c{bottom:788.134667pt;}
.y13d{bottom:788.326667pt;}
.y22b{bottom:789.217333pt;}
.y20{bottom:789.526667pt;}
.y98{bottom:790.572000pt;}
.y28f{bottom:792.120000pt;}
.y164{bottom:792.312000pt;}
.y1d3{bottom:798.995181pt;}
.y105{bottom:800.136179pt;}
.y1f{bottom:803.873333pt;}
.y25b{bottom:805.157333pt;}
.y13c{bottom:806.897333pt;}
.y22a{bottom:807.788000pt;}
.y104{bottom:808.353664pt;}
.y97{bottom:809.142667pt;}
.y163{bottom:810.882667pt;}
.y1d2{bottom:817.635053pt;}
.y25a{bottom:822.180000pt;}
.y102{bottom:825.468000pt;}
.y28e{bottom:826.165333pt;}
.y96{bottom:827.713333pt;}
.y13b{bottom:829.453333pt;}
.y229{bottom:830.342667pt;}
.y162{bottom:833.437333pt;}
.y1d1{bottom:836.355085pt;}
.y259{bottom:839.202667pt;}
.y28d{bottom:843.188000pt;}
.y1e{bottom:843.585333pt;}
.y101{bottom:844.038667pt;}
.y95{bottom:846.282667pt;}
.y1fe{bottom:848.022667pt;}
.y1d0{bottom:854.994957pt;}
.y258{bottom:856.225333pt;}
.yde{bottom:857.262620pt;}
.y28c{bottom:860.210667pt;}
.y13a{bottom:860.868000pt;}
.y1d{bottom:862.156000pt;}
.y94{bottom:864.853333pt;}
.y100{bottom:866.593333pt;}
.y257{bottom:873.248000pt;}
.y1cf{bottom:873.634829pt;}
.ydd{bottom:875.233851pt;}
.y28b{bottom:877.233333pt;}
.y139{bottom:879.438667pt;}
.y93{bottom:883.424000pt;}
.yff{bottom:885.164000pt;}
.y161{bottom:888.245333pt;}
.y256{bottom:890.270667pt;}
.y1ce{bottom:892.354861pt;}
.y28a{bottom:894.256000pt;}
.y1c{bottom:896.665333pt;}
.y138{bottom:898.009333pt;}
.y92{bottom:901.993333pt;}
.yfe{bottom:903.733333pt;}
.y255{bottom:907.293333pt;}
.y289{bottom:911.278667pt;}
.y137{bottom:916.578667pt;}
.y91{bottom:920.564000pt;}
.yfd{bottom:922.304000pt;}
.ydb{bottom:923.156851pt;}
.y254{bottom:924.316000pt;}
.y1b{bottom:924.521333pt;}
.y1fd{bottom:926.289333pt;}
.y288{bottom:928.301333pt;}
.yda{bottom:931.374336pt;}
.y136{bottom:935.149333pt;}
.y90{bottom:939.134667pt;}
.yfc{bottom:940.874667pt;}
.y253{bottom:941.340000pt;}
.y1cc{bottom:942.274653pt;}
.y287{bottom:945.324000pt;}
.y1cb{bottom:950.834533pt;}
.y1a{bottom:952.377333pt;}
.y135{bottom:953.720000pt;}
.y8f{bottom:957.704000pt;}
.y252{bottom:958.362667pt;}
.y286{bottom:962.346667pt;}
.yfb{bottom:963.429333pt;}
.y134{bottom:972.289333pt;}
.y251{bottom:975.385333pt;}
.y8e{bottom:976.274667pt;}
.y285{bottom:979.369333pt;}
.y19{bottom:980.232000pt;}
.y133{bottom:990.860000pt;}
.y250{bottom:992.408000pt;}
.y45{bottom:994.845333pt;}
.y284{bottom:996.392000pt;}
.y44{bottom:1013.414667pt;}
.y43{bottom:1067.149333pt;}
.hf{height:24.760382pt;}
.h1d{height:28.023859pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.h10{height:36.666735pt;}
.h1e{height:36.873667pt;}
.h1b{height:36.923700pt;}
.h14{height:37.785300pt;}
.h1c{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.h20{height:39.359687pt;}
.h16{height:42.615000pt;}
.hb{height:43.295656pt;}
.he{height:43.421286pt;}
.h22{height:44.390625pt;}
.h9{height:45.907968pt;}
.h15{height:47.444700pt;}
.h17{height:47.444720pt;}
.h1a{height:47.444823pt;}
.h8{height:48.245551pt;}
.h5{height:48.360277pt;}
.hd{height:48.829687pt;}
.h21{height:49.421563pt;}
.hc{height:54.363719pt;}
.h12{height:54.363742pt;}
.h18{height:55.952068pt;}
.h26{height:55.957402pt;}
.h4{height:68.861952pt;}
.h25{height:70.133717pt;}
.h23{height:80.128218pt;}
.h13{height:269.777792pt;}
.ha{height:277.686933pt;}
.h1f{height:288.581333pt;}
.h11{height:308.640933pt;}
.h19{height:367.522560pt;}
.h24{height:764.507467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:411.926667pt;}
.w2{width:579.984533pt;}
.w3{width:582.240120pt;}
.w7{width:584.726267pt;}
.w4{width:676.118400pt;}
.w5{width:676.955008pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xf{left:-184.951067pt;}
.x63{left:-176.581333pt;}
.x2a{left:-93.599880pt;}
.x78{left:-56.727067pt;}
.x64{left:-2.742302pt;}
.x0{left:0.000000pt;}
.x30{left:3.770240pt;}
.x10{left:6.271868pt;}
.x66{left:25.578667pt;}
.x12{left:37.424933pt;}
.x1{left:47.621333pt;}
.x49{left:55.592000pt;}
.x2f{left:58.600640pt;}
.x8f{left:76.080000pt;}
.x2b{left:97.624472pt;}
.x77{left:104.299067pt;}
.x29{left:105.540147pt;}
.xe{left:106.668000pt;}
.x79{left:117.113253pt;}
.x93{left:121.037333pt;}
.x2d{left:128.776701pt;}
.x90{left:142.922667pt;}
.x91{left:159.218667pt;}
.x92{left:164.929333pt;}
.x4a{left:166.392000pt;}
.x31{left:170.656947pt;}
.x4b{left:174.597333pt;}
.x32{left:197.844347pt;}
.x4c{left:206.558667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x62{left:229.828000pt;}
.x6e{left:233.933333pt;}
.x6c{left:235.016000pt;}
.x5c{left:238.644000pt;}
.x3{left:239.790667pt;}
.x5e{left:244.782667pt;}
.x5d{left:246.849333pt;}
.x6d{left:248.625333pt;}
.x5{left:250.204000pt;}
.x1f{left:251.868000pt;}
.x7b{left:254.345333pt;}
.x9d{left:257.440000pt;}
.x20{left:265.152000pt;}
.x70{left:266.312000pt;}
.x7c{left:267.628000pt;}
.x9e{left:270.722667pt;}
.x38{left:273.909333pt;}
.x50{left:277.933333pt;}
.x40{left:282.953333pt;}
.x27{left:290.490667pt;}
.x51{left:294.568000pt;}
.x28{left:296.202667pt;}
.x6{left:297.094667pt;}
.x41{left:299.952000pt;}
.x6f{left:302.568000pt;}
.x7{left:303.736000pt;}
.x13{left:306.476000pt;}
.x52{left:307.852000pt;}
.x14{left:313.117333pt;}
.x95{left:314.460000pt;}
.x96{left:319.997333pt;}
.xc{left:323.445333pt;}
.xa1{left:327.898667pt;}
.xd{left:330.086667pt;}
.x8a{left:332.044000pt;}
.x67{left:338.237333pt;}
.x60{left:350.096000pt;}
.x4d{left:362.325333pt;}
.x61{left:364.894667pt;}
.x68{left:370.157333pt;}
.x4e{left:372.748000pt;}
.x8d{left:382.698667pt;}
.x4f{left:386.032000pt;}
.x9c{left:388.430667pt;}
.x46{left:392.894667pt;}
.x75{left:394.620000pt;}
.x94{left:397.620000pt;}
.x47{left:401.098667pt;}
.x76{left:407.902667pt;}
.x65{left:413.258236pt;}
.x82{left:427.840000pt;}
.x36{left:437.492000pt;}
.x83{left:441.124000pt;}
.x37{left:443.321333pt;}
.x19{left:444.578667pt;}
.x3a{left:455.336000pt;}
.x1a{left:457.862667pt;}
.x3b{left:468.885333pt;}
.x3c{left:472.408000pt;}
.x69{left:474.925333pt;}
.x55{left:476.717333pt;}
.x56{left:482.592000pt;}
.x3d{left:485.957333pt;}
.x3e{left:489.480000pt;}
.x1e{left:490.688000pt;}
.x48{left:493.490667pt;}
.x15{left:498.160000pt;}
.x3f{left:503.029333pt;}
.x16{left:504.801333pt;}
.x25{left:507.476000pt;}
.x26{left:513.188000pt;}
.x23{left:516.289333pt;}
.x7f{left:524.544000pt;}
.x53{left:528.298667pt;}
.x24{left:529.838667pt;}
.x84{left:535.437333pt;}
.x54{left:536.502667pt;}
.x85{left:542.080000pt;}
.x86{left:545.437333pt;}
.x6a{left:548.884000pt;}
.x71{left:552.496000pt;}
.x87{left:558.720000pt;}
.x88{left:562.077333pt;}
.x72{left:565.778667pt;}
.x89{left:567.761333pt;}
.x7a{left:570.169333pt;}
.x8c{left:573.296000pt;}
.x17{left:575.032000pt;}
.x8b{left:576.785333pt;}
.x2c{left:579.424014pt;}
.x11{left:580.469517pt;}
.x18{left:583.237333pt;}
.x8{left:585.078667pt;}
.x42{left:586.945333pt;}
.x73{left:589.445333pt;}
.x9{left:591.721333pt;}
.xa{left:595.108000pt;}
.x33{left:597.902667pt;}
.x43{left:600.493333pt;}
.xb{left:601.750667pt;}
.x74{left:602.728000pt;}
.x97{left:630.873333pt;}
.x44{left:633.970667pt;}
.x98{left:636.585333pt;}
.x57{left:644.630667pt;}
.x45{left:647.254667pt;}
.x8e{left:651.028000pt;}
.x99{left:652.317333pt;}
.x80{left:656.726667pt;}
.x58{left:657.914667pt;}
.x59{left:661.182667pt;}
.x6b{left:664.537333pt;}
.x81{left:670.009333pt;}
.x39{left:673.153249pt;}
.x2e{left:674.199205pt;}
.x5a{left:677.733333pt;}
.x1d{left:683.069333pt;}
.x21{left:688.856000pt;}
.x5b{left:691.017333pt;}
.x34{left:693.768000pt;}
.x9a{left:695.558667pt;}
.x7d{left:696.872000pt;}
.x35{left:699.597333pt;}
.x22{left:702.138667pt;}
.x9f{left:707.360000pt;}
.x9b{left:708.842667pt;}
.x7e{left:710.154667pt;}
.xa0{left:720.644000pt;}
.x1b{left:727.152000pt;}
.x5f{left:739.000000pt;}
.x1c{left:740.436000pt;}
}




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