
    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_96f222bcda9875cf26ecc02f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.841000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2e7b6ef9afb8a69fd87a2cdc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f1e09327f30319bc93a9605d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_b2e86321307d8ef9ec110f49.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_292cb85f73cb6345c2d18437.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_792a11c1a4eba9854e79821a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_99c5678e4d2e1e436b2ae4d5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933000;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_8fe1477031e75ded3cc1f675.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f6c788625787ff2e82b760e2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_31133aa44e3bdac2beb5bda7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200195;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_399c7d18ae3626a799c64331.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_471f2c2333b947a0e95f8ea3.woff2')format("woff");}.fff{font-family:fff;line-height:0.703613;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_6604f47b20ae66362c1a84a3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;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_c1ae85add10a14536a1f6c45.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c0dff746e0927ba45bd44d3f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.200195;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_a9012fc46714473e1a1bceee.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_c1ae85add10a14536a1f6c45.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_c0dff746e0927ba45bd44d3f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.200195;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_a9012fc46714473e1a1bceee.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_21714d263135831faae38ce1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.998047;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_667861c7bb7753e3efb74f2f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.982422;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_d4192c92441603005f4ed7e1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.004883;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_1eb580d8dd3b0b71ada91936.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.871094;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_7bf11e1aff96ea676017e5a7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m1{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);}
.m8{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);}
.m1e{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);}
.m19{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);}
.m28{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);}
.m4{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);}
.ma{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);}
.m21{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);}
.m15{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);}
.m14{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);}
.m11{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);}
.m22{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);}
.m1d{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);}
.m9{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);}
.m17{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);}
.m7{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);}
.m18{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);}
.m10{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);}
.m23{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m13{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);}
.m1a{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);}
.m1c{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);}
.mb{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);}
.m1f{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);}
.m20{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m27{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);}
.m12{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);}
.m29{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m24{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);}
.md{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);}
.m3{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);}
.m5{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);}
.mf{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);}
.v4{vertical-align:-10.920000px;}
.va{vertical-align:-9.546000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.vc{vertical-align:19.530000px;}
.v3{vertical-align:21.702000px;}
.vb{vertical-align:24.738000px;}
.vd{vertical-align:26.609023px;}
.v1{vertical-align:30.018000px;}
.v2{vertical-align:32.616000px;}
.v6{vertical-align:40.680600px;}
.v9{vertical-align:56.202000px;}
.v8{vertical-align:65.748000px;}
.v7{vertical-align:81.000600px;}
.ls90{letter-spacing:-3.024276px;}
.ls4d{letter-spacing:-0.402804px;}
.ls51{letter-spacing:-0.228456px;}
.ls61{letter-spacing:-0.226800px;}
.ls52{letter-spacing:-0.180360px;}
.ls7e{letter-spacing:-0.173146px;}
.ls93{letter-spacing:-0.161603px;}
.ls40{letter-spacing:-0.150300px;}
.ls4c{letter-spacing:-0.144288px;}
.ls96{letter-spacing:-0.142491px;}
.ls62{letter-spacing:-0.140400px;}
.ls44{letter-spacing:-0.138276px;}
.ls94{letter-spacing:-0.132745px;}
.ls47{letter-spacing:-0.126252px;}
.ls63{letter-spacing:-0.120240px;}
.ls7d{letter-spacing:-0.115430px;}
.ls53{letter-spacing:-0.114228px;}
.ls3c{letter-spacing:-0.108216px;}
.ls98{letter-spacing:-0.105719px;}
.ls92{letter-spacing:-0.103887px;}
.ls36{letter-spacing:-0.102204px;}
.ls87{letter-spacing:-0.098116px;}
.ls41{letter-spacing:-0.096192px;}
.ls88{letter-spacing:-0.092344px;}
.ls34{letter-spacing:-0.090972px;}
.ls37{letter-spacing:-0.090180px;}
.ls7b{letter-spacing:-0.087333px;}
.ls43{letter-spacing:-0.084168px;}
.ls49{letter-spacing:-0.078156px;}
.ls38{letter-spacing:-0.072144px;}
.ls84{letter-spacing:-0.069258px;}
.ls5e{letter-spacing:-0.066132px;}
.ls60{letter-spacing:-0.060120px;}
.ls3d{letter-spacing:-0.054108px;}
.ls8c{letter-spacing:-0.051944px;}
.ls97{letter-spacing:-0.050561px;}
.ls3f{letter-spacing:-0.048096px;}
.ls85{letter-spacing:-0.046172px;}
.ls3b{letter-spacing:-0.042084px;}
.ls8d{letter-spacing:-0.040401px;}
.ls46{letter-spacing:-0.036072px;}
.ls8b{letter-spacing:-0.034629px;}
.ls42{letter-spacing:-0.030060px;}
.ls8f{letter-spacing:-0.028858px;}
.ls45{letter-spacing:-0.027000px;}
.ls3e{letter-spacing:-0.024048px;}
.ls8e{letter-spacing:-0.023086px;}
.ls8a{letter-spacing:-0.020736px;}
.ls39{letter-spacing:-0.018036px;}
.ls91{letter-spacing:-0.017315px;}
.ls4b{letter-spacing:-0.016200px;}
.ls35{letter-spacing:-0.014364px;}
.ls7c{letter-spacing:-0.013789px;}
.ls5f{letter-spacing:-0.012024px;}
.ls9a{letter-spacing:-0.010575px;}
.ls83{letter-spacing:-0.010368px;}
.ls3a{letter-spacing:-0.006012px;}
.ls86{letter-spacing:-0.005772px;}
.ls4a{letter-spacing:-0.005400px;}
.ls89{letter-spacing:-0.005184px;}
.lsa{letter-spacing:0.000000px;}
.lsb5{letter-spacing:0.000478px;}
.lsa8{letter-spacing:0.000496px;}
.ls3{letter-spacing:0.000583px;}
.lsb4{letter-spacing:0.000705px;}
.lsb2{letter-spacing:0.000800px;}
.ls30{letter-spacing:0.000845px;}
.lsb6{letter-spacing:0.000863px;}
.ls15{letter-spacing:0.000914px;}
.lsb1{letter-spacing:0.001036px;}
.lsb0{letter-spacing:0.001155px;}
.ls6{letter-spacing:0.001573px;}
.lsa9{letter-spacing:0.001584px;}
.lsb3{letter-spacing:0.002334px;}
.ls9f{letter-spacing:0.002460px;}
.ls1{letter-spacing:0.002725px;}
.lsa0{letter-spacing:0.002856px;}
.lsac{letter-spacing:0.002877px;}
.lsa1{letter-spacing:0.003040px;}
.ls2e{letter-spacing:0.003178px;}
.ls9c{letter-spacing:0.003668px;}
.ls0{letter-spacing:0.004200px;}
.lsa7{letter-spacing:0.004800px;}
.ls5b{letter-spacing:0.005400px;}
.lsaa{letter-spacing:0.005402px;}
.ls77{letter-spacing:0.005772px;}
.ls50{letter-spacing:0.006012px;}
.ls72{letter-spacing:0.010368px;}
.ls28{letter-spacing:0.010800px;}
.ls1b{letter-spacing:0.012024px;}
.ls79{letter-spacing:0.012649px;}
.ls78{letter-spacing:0.014100px;}
.ls5a{letter-spacing:0.016200px;}
.ls56{letter-spacing:0.018036px;}
.ls6e{letter-spacing:0.020736px;}
.ls74{letter-spacing:0.023086px;}
.ls1d{letter-spacing:0.024048px;}
.ls70{letter-spacing:0.025920px;}
.ls6a{letter-spacing:0.028858px;}
.ls26{letter-spacing:0.030060px;}
.ls66{letter-spacing:0.032175px;}
.ls17{letter-spacing:0.033516px;}
.ls48{letter-spacing:0.036072px;}
.ls58{letter-spacing:0.037800px;}
.ls6f{letter-spacing:0.040401px;}
.ls71{letter-spacing:0.041472px;}
.ls1a{letter-spacing:0.042084px;}
.ls5c{letter-spacing:0.043200px;}
.ls95{letter-spacing:0.046172px;}
.ls29{letter-spacing:0.046800px;}
.ls27{letter-spacing:0.048096px;}
.ls73{letter-spacing:0.051840px;}
.ls76{letter-spacing:0.051944px;}
.ls55{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.054108px;}
.ls25{letter-spacing:0.060120px;}
.ls75{letter-spacing:0.063487px;}
.ls21{letter-spacing:0.066132px;}
.ls59{letter-spacing:0.070200px;}
.ls1e{letter-spacing:0.072144px;}
.ls6c{letter-spacing:0.072576px;}
.ls20{letter-spacing:0.078156px;}
.ls24{letter-spacing:0.084168px;}
.ls6d{letter-spacing:0.088128px;}
.ls1f{letter-spacing:0.090180px;}
.ls81{letter-spacing:0.098116px;}
.ls23{letter-spacing:0.126252px;}
.ls57{letter-spacing:0.138276px;}
.ls4e{letter-spacing:0.144288px;}
.ls2a{letter-spacing:0.147600px;}
.ls80{letter-spacing:0.155831px;}
.ls82{letter-spacing:0.161603px;}
.ls2b{letter-spacing:0.162324px;}
.ls68{letter-spacing:0.165473px;}
.ls54{letter-spacing:0.168336px;}
.ls19{letter-spacing:0.172368px;}
.ls7f{letter-spacing:0.173146px;}
.ls67{letter-spacing:0.174666px;}
.ls22{letter-spacing:0.180360px;}
.ls18{letter-spacing:0.181944px;}
.ls99{letter-spacing:0.202245px;}
.ls31{letter-spacing:0.528600px;}
.ls13{letter-spacing:0.542815px;}
.ls12{letter-spacing:0.548815px;}
.ls10{letter-spacing:0.565200px;}
.ls11{letter-spacing:0.571200px;}
.lsb{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls2f{letter-spacing:2.988600px;}
.lsf{letter-spacing:2.989200px;}
.ls8{letter-spacing:3.510600px;}
.lse{letter-spacing:3.553200px;}
.ls2c{letter-spacing:3.559200px;}
.ls5{letter-spacing:10.461300px;}
.ls64{letter-spacing:11.951700px;}
.ls9{letter-spacing:11.954850px;}
.ls65{letter-spacing:11.957700px;}
.lsa5{letter-spacing:13.164686px;}
.ls9d{letter-spacing:13.448400px;}
.ls7a{letter-spacing:13.450800px;}
.lsa2{letter-spacing:13.454400px;}
.ls9e{letter-spacing:13.599380px;}
.lsab{letter-spacing:13.629347px;}
.lsb8{letter-spacing:13.642237px;}
.lsa3{letter-spacing:13.656999px;}
.lsaf{letter-spacing:13.891576px;}
.lsa4{letter-spacing:13.920988px;}
.ls32{letter-spacing:14.094088px;}
.ls2d{letter-spacing:14.100088px;}
.lsad{letter-spacing:14.420988px;}
.ls4f{letter-spacing:14.849640px;}
.ls2{letter-spacing:14.944200px;}
.ls5d{letter-spacing:15.063451px;}
.ls33{letter-spacing:15.663483px;}
.lsa6{letter-spacing:16.676400px;}
.lsb7{letter-spacing:16.893085px;}
.lsc{letter-spacing:17.350218px;}
.ls16{letter-spacing:17.929200px;}
.ls14{letter-spacing:17.935200px;}
.lsae{letter-spacing:18.044518px;}
.ls9b{letter-spacing:20.009041px;}
.lsd{letter-spacing:23.144335px;}
.ls7{letter-spacing:28.453654px;}
.ls6b{letter-spacing:231.982756px;}
.ls69{letter-spacing:246.498301px;}
.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;}
}
.ws0{word-spacing:-102.481160px;}
.ws6c{word-spacing:-47.337600px;}
.ws9b{word-spacing:-36.000000px;}
.wse6{word-spacing:-15.210360px;}
.ws9f{word-spacing:-15.174288px;}
.wse7{word-spacing:-15.090120px;}
.ws9d{word-spacing:-15.030000px;}
.ws9e{word-spacing:-15.023988px;}
.ws9c{word-spacing:-14.987916px;}
.wse8{word-spacing:-14.969880px;}
.ws6{word-spacing:-14.943900px;}
.ws13c{word-spacing:-14.457658px;}
.ws13e{word-spacing:-14.428800px;}
.ws13b{word-spacing:-14.313370px;}
.wsa5{word-spacing:-13.449600px;}
.ws13d{word-spacing:-12.960000px;}
.ws99{word-spacing:-12.151944px;}
.ws46{word-spacing:-11.955150px;}
.ws13a{word-spacing:-11.665866px;}
.ws10{word-spacing:-10.460700px;}
.ws142{word-spacing:-10.282326px;}
.ws140{word-spacing:-10.245554px;}
.ws9a{word-spacing:-9.000000px;}
.ws5c{word-spacing:-4.124516px;}
.ws16c{word-spacing:-3.318624px;}
.ws1a4{word-spacing:-3.227882px;}
.ws1f5{word-spacing:-3.012710px;}
.ws172{word-spacing:-3.006962px;}
.ws15d{word-spacing:-2.955018px;}
.ws127{word-spacing:-2.929004px;}
.ws72{word-spacing:-2.869229px;}
.ws8b{word-spacing:-2.689902px;}
.ws10b{word-spacing:-2.681352px;}
.ws1f{word-spacing:-2.636122px;}
.ws74{word-spacing:-2.450800px;}
.ws175{word-spacing:-2.395181px;}
.ws75{word-spacing:-2.391024px;}
.wsfd{word-spacing:-2.333787px;}
.ws3e{word-spacing:-2.331248px;}
.ws15e{word-spacing:-2.262436px;}
.ws9{word-spacing:-1.908367px;}
.ws90{word-spacing:-1.853044px;}
.ws3f{word-spacing:-1.793268px;}
.ws121{word-spacing:-1.659312px;}
.ws19f{word-spacing:-1.613941px;}
.ws122{word-spacing:-1.587168px;}
.wsa1{word-spacing:-1.554166px;}
.ws26{word-spacing:-1.398758px;}
.wsb{word-spacing:-1.338970px;}
.ws8{word-spacing:-1.322630px;}
.wsf8{word-spacing:-1.315063px;}
.ws197{word-spacing:-1.135736px;}
.ws1bf{word-spacing:-1.129766px;}
.ws27{word-spacing:-1.075968px;}
.ws4e{word-spacing:-1.016185px;}
.ws185{word-spacing:-0.992701px;}
.ws17d{word-spacing:-0.981158px;}
.ws50{word-spacing:-0.956410px;}
.ws5d{word-spacing:-0.896634px;}
.ws59{word-spacing:-0.777083px;}
.ws5b{word-spacing:-0.717307px;}
.wsd8{word-spacing:-0.661320px;}
.wsdb{word-spacing:-0.655308px;}
.ws10a{word-spacing:-0.649296px;}
.ws145{word-spacing:-0.597756px;}
.ws1bb{word-spacing:-0.591782px;}
.ws109{word-spacing:-0.571140px;}
.ws147{word-spacing:-0.570521px;}
.ws1ff{word-spacing:-0.537984px;}
.ws67{word-spacing:-0.478205px;}
.wse2{word-spacing:-0.450900px;}
.ws1dd{word-spacing:-0.430387px;}
.ws71{word-spacing:-0.418429px;}
.ws155{word-spacing:-0.404006px;}
.wsd5{word-spacing:-0.396792px;}
.wscf{word-spacing:-0.360720px;}
.ws3b{word-spacing:-0.358654px;}
.ws1f8{word-spacing:-0.322790px;}
.wsde{word-spacing:-0.318636px;}
.wsd9{word-spacing:-0.306612px;}
.ws4d{word-spacing:-0.298878px;}
.ws10e{word-spacing:-0.294588px;}
.wsad{word-spacing:-0.279646px;}
.ws12c{word-spacing:-0.275093px;}
.ws1de{word-spacing:-0.268992px;}
.wsb1{word-spacing:-0.263340px;}
.ws152{word-spacing:-0.252806px;}
.ws11b{word-spacing:-0.252504px;}
.wsda{word-spacing:-0.246492px;}
.ws6f{word-spacing:-0.239102px;}
.ws16b{word-spacing:-0.225089px;}
.ws10f{word-spacing:-0.222444px;}
.ws20{word-spacing:-0.215194px;}
.ws192{word-spacing:-0.207169px;}
.wsdc{word-spacing:-0.192384px;}
.ws7d{word-spacing:-0.191328px;}
.ws10d{word-spacing:-0.180360px;}
.ws3a{word-spacing:-0.179327px;}
.ws10c{word-spacing:-0.162324px;}
.ws1bd{word-spacing:-0.161395px;}
.wscc{word-spacing:-0.132264px;}
.ws42{word-spacing:-0.119551px;}
.wsec{word-spacing:-0.118172px;}
.wse9{word-spacing:-0.116158px;}
.ws143{word-spacing:-0.107597px;}
.ws1aa{word-spacing:-0.105215px;}
.wse5{word-spacing:-0.078156px;}
.wsb0{word-spacing:-0.076608px;}
.ws157{word-spacing:-0.075030px;}
.ws151{word-spacing:-0.073544px;}
.wse1{word-spacing:-0.072144px;}
.ws154{word-spacing:-0.069258px;}
.ws5{word-spacing:-0.059776px;}
.ws153{word-spacing:-0.057715px;}
.ws1b4{word-spacing:-0.053798px;}
.ws47{word-spacing:-0.047821px;}
.wse3{word-spacing:-0.042084px;}
.ws11{word-spacing:-0.041843px;}
.ws204{word-spacing:-0.028810px;}
.ws1e8{word-spacing:-0.025465px;}
.ws6a{word-spacing:-0.018242px;}
.ws156{word-spacing:-0.011543px;}
.ws1e4{word-spacing:-0.006442px;}
.wsef{word-spacing:-0.004291px;}
.ws3{word-spacing:-0.002890px;}
.wsd{word-spacing:-0.000560px;}
.ws1{word-spacing:0.000000px;}
.ws12f{word-spacing:0.001709px;}
.wsd6{word-spacing:0.006012px;}
.ws208{word-spacing:0.029149px;}
.wsd7{word-spacing:0.030060px;}
.ws11d{word-spacing:0.048096px;}
.ws1b2{word-spacing:0.053798px;}
.ws66{word-spacing:0.059776px;}
.wsc8{word-spacing:0.066132px;}
.ws189{word-spacing:0.077337px;}
.ws159{word-spacing:0.082944px;}
.ws214{word-spacing:0.084939px;}
.ws106{word-spacing:0.090180px;}
.ws1c8{word-spacing:0.097156px;}
.ws158{word-spacing:0.098496px;}
.ws108{word-spacing:0.102204px;}
.ws2e{word-spacing:0.107597px;}
.ws115{word-spacing:0.108000px;}
.ws16a{word-spacing:0.119232px;}
.ws40{word-spacing:0.119551px;}
.ws1c6{word-spacing:0.121544px;}
.ws107{word-spacing:0.124200px;}
.ws32{word-spacing:0.126244px;}
.ws119{word-spacing:0.135000px;}
.ws113{word-spacing:0.140400px;}
.ws15b{word-spacing:0.150336px;}
.ws30{word-spacing:0.161395px;}
.ws116{word-spacing:0.162000px;}
.wse0{word-spacing:0.167400px;}
.ws15c{word-spacing:0.171072px;}
.ws117{word-spacing:0.172800px;}
.wscd{word-spacing:0.178200px;}
.ws162{word-spacing:0.178917px;}
.ws38{word-spacing:0.179327px;}
.ws11c{word-spacing:0.180360px;}
.ws15a{word-spacing:0.181440px;}
.wsdf{word-spacing:0.183600px;}
.ws171{word-spacing:0.184689px;}
.ws131{word-spacing:0.191282px;}
.ws118{word-spacing:0.194400px;}
.wse4{word-spacing:0.204408px;}
.wsce{word-spacing:0.205200px;}
.ws13{word-spacing:0.209214px;}
.ws1d3{word-spacing:0.215194px;}
.wsd4{word-spacing:0.216432px;}
.ws1d{word-spacing:0.239103px;}
.ws23{word-spacing:0.262812px;}
.ws21{word-spacing:0.268992px;}
.ws141{word-spacing:0.284982px;}
.ws1ec{word-spacing:0.292649px;}
.ws15{word-spacing:0.292900px;}
.ws4b{word-spacing:0.298878px;}
.ws80{word-spacing:0.307260px;}
.ws81{word-spacing:0.321628px;}
.ws1dc{word-spacing:0.322650px;}
.ws1b3{word-spacing:0.322790px;}
.ws1f2{word-spacing:0.339274px;}
.ws14f{word-spacing:0.358654px;}
.ws1f1{word-spacing:0.376589px;}
.wsc9{word-spacing:0.378756px;}
.wsd3{word-spacing:0.384768px;}
.ws114{word-spacing:0.405000px;}
.wsbb{word-spacing:0.408816px;}
.ws56{word-spacing:0.418429px;}
.ws20c{word-spacing:0.430387px;}
.ws13f{word-spacing:0.468841px;}
.ws120{word-spacing:0.468936px;}
.ws8a{word-spacing:0.478205px;}
.ws1d9{word-spacing:0.484186px;}
.wsba{word-spacing:0.505008px;}
.ws176{word-spacing:0.525208px;}
.ws7b{word-spacing:0.537980px;}
.ws207{word-spacing:0.591782px;}
.ws39{word-spacing:0.597756px;}
.ws1ce{word-spacing:0.645581px;}
.ws1b1{word-spacing:0.657532px;}
.wsa6{word-spacing:0.668400px;}
.wsf6{word-spacing:0.669110px;}
.wsa9{word-spacing:0.672000px;}
.wsa8{word-spacing:0.673200px;}
.wsaa{word-spacing:0.699043px;}
.ws202{word-spacing:0.699379px;}
.ws37{word-spacing:0.717307px;}
.wsd0{word-spacing:0.733464px;}
.wsaf{word-spacing:0.744600px;}
.ws1ef{word-spacing:0.753178px;}
.ws55{word-spacing:0.777083px;}
.ws68{word-spacing:0.836858px;}
.ws168{word-spacing:0.876096px;}
.ws169{word-spacing:0.886464px;}
.ws76{word-spacing:0.956410px;}
.wsfa{word-spacing:0.995496px;}
.ws4c{word-spacing:1.075961px;}
.ws184{word-spacing:1.119675px;}
.ws181{word-spacing:1.148532px;}
.ws183{word-spacing:1.154304px;}
.wsbe{word-spacing:1.160316px;}
.ws3d{word-spacing:1.195512px;}
.ws149{word-spacing:1.255288px;}
.wsdd{word-spacing:1.310616px;}
.ws1f3{word-spacing:1.344960px;}
.ws61{word-spacing:1.367774px;}
.ws5f{word-spacing:1.374839px;}
.ws182{word-spacing:1.414022px;}
.ws180{word-spacing:1.419794px;}
.ws15f{word-spacing:1.425565px;}
.ws52{word-spacing:1.434614px;}
.ws103{word-spacing:1.533060px;}
.ws102{word-spacing:1.557108px;}
.ws173{word-spacing:1.569853px;}
.ws174{word-spacing:1.581396px;}
.ws1a0{word-spacing:1.613941px;}
.ws1b7{word-spacing:1.613952px;}
.ws1fb{word-spacing:1.667750px;}
.ws12d{word-spacing:1.673717px;}
.ws211{word-spacing:1.721549px;}
.wsff{word-spacing:1.733492px;}
.wsc1{word-spacing:1.833660px;}
.ws48{word-spacing:1.853044px;}
.ws53{word-spacing:1.912819px;}
.wsd2{word-spacing:1.917828px;}
.wsd1{word-spacing:1.923840px;}
.ws79{word-spacing:1.972595px;}
.ws14{word-spacing:2.008454px;}
.ws14d{word-spacing:2.032370px;}
.ws1af{word-spacing:2.092146px;}
.ws1ad{word-spacing:2.108950px;}
.ws1a5{word-spacing:2.151922px;}
.ws105{word-spacing:2.182356px;}
.ws110{word-spacing:2.188368px;}
.ws2f{word-spacing:2.205734px;}
.ws100{word-spacing:2.236464px;}
.ws177{word-spacing:2.250893px;}
.wsb6{word-spacing:2.266524px;}
.ws104{word-spacing:2.296584px;}
.ws101{word-spacing:2.314620px;}
.wsb5{word-spacing:2.320632px;}
.ws196{word-spacing:2.331248px;}
.ws1e5{word-spacing:2.367130px;}
.ws111{word-spacing:2.374740px;}
.ws7a{word-spacing:2.391024px;}
.ws51{word-spacing:2.510575px;}
.ws20a{word-spacing:2.528525px;}
.ws165{word-spacing:2.550528px;}
.ws163{word-spacing:2.566080px;}
.ws18d{word-spacing:2.570351px;}
.ws166{word-spacing:2.581632px;}
.ws164{word-spacing:2.592000px;}
.ws167{word-spacing:2.597184px;}
.wsa0{word-spacing:2.630126px;}
.ws18b{word-spacing:2.749678px;}
.ws98{word-spacing:2.809453px;}
.ws1e{word-spacing:2.869236px;}
.wsf4{word-spacing:2.899121px;}
.wsf2{word-spacing:2.905114px;}
.ws7e{word-spacing:2.929004px;}
.ws14b{word-spacing:2.950127px;}
.ws1cb{word-spacing:2.958912px;}
.ws125{word-spacing:2.975940px;}
.ws194{word-spacing:2.988780px;}
.ws124{word-spacing:2.999988px;}
.ws1a8{word-spacing:3.048556px;}
.ws123{word-spacing:3.072132px;}
.wsc3{word-spacing:3.078144px;}
.wsc2{word-spacing:3.120228px;}
.ws150{word-spacing:3.168107px;}
.ws2d{word-spacing:3.174106px;}
.ws34{word-spacing:3.219667px;}
.ws1e2{word-spacing:3.225149px;}
.ws1d6{word-spacing:3.225734px;}
.ws1c3{word-spacing:3.227510px;}
.ws3c{word-spacing:3.227882px;}
.wsf1{word-spacing:3.227904px;}
.ws54{word-spacing:3.287658px;}
.wsc0{word-spacing:3.288564px;}
.ws2c{word-spacing:3.335501px;}
.ws2a{word-spacing:3.352062px;}
.wsbf{word-spacing:3.378744px;}
.wsb4{word-spacing:3.402792px;}
.ws41{word-spacing:3.407209px;}
.wsb3{word-spacing:3.420828px;}
.wsb2{word-spacing:3.432852px;}
.ws87{word-spacing:3.466985px;}
.ws4f{word-spacing:3.526760px;}
.ws17f{word-spacing:3.584114px;}
.ws36{word-spacing:3.586536px;}
.ws17e{word-spacing:3.641829px;}
.ws78{word-spacing:3.646312px;}
.ws28{word-spacing:3.658291px;}
.ws25{word-spacing:3.712090px;}
.ws19b{word-spacing:3.765863px;}
.ws199{word-spacing:3.773482px;}
.ws82{word-spacing:3.795305px;}
.ws84{word-spacing:3.825638px;}
.ws178{word-spacing:3.861147px;}
.ws6e{word-spacing:3.945190px;}
.ws6d{word-spacing:4.004965px;}
.ws179{word-spacing:4.051607px;}
.ws195{word-spacing:4.124516px;}
.ws1d0{word-spacing:4.142477px;}
.ws8c{word-spacing:4.184292px;}
.ws14c{word-spacing:4.244068px;}
.ws187{word-spacing:4.303843px;}
.ws1b8{word-spacing:4.303872px;}
.ws19c{word-spacing:4.355835px;}
.ws19e{word-spacing:4.363619px;}
.ws1b9{word-spacing:4.465267px;}
.ws186{word-spacing:4.483170px;}
.ws5e{word-spacing:4.542946px;}
.ws198{word-spacing:4.662497px;}
.wsc5{word-spacing:4.767516px;}
.ws136{word-spacing:4.841824px;}
.wsc4{word-spacing:4.863708px;}
.ws1ab{word-spacing:4.901599px;}
.ws97{word-spacing:5.021150px;}
.ws96{word-spacing:5.080926px;}
.ws65{word-spacing:5.200477px;}
.wscb{word-spacing:5.212404px;}
.wsca{word-spacing:5.236452px;}
.ws73{word-spacing:5.260253px;}
.ws160{word-spacing:5.275169px;}
.ws138{word-spacing:5.320028px;}
.ws161{word-spacing:5.713805px;}
.ws58{word-spacing:5.798233px;}
.ws57{word-spacing:5.858009px;}
.ws16f{word-spacing:5.938894px;}
.ws89{word-spacing:5.977560px;}
.ws16e{word-spacing:5.985066px;}
.ws170{word-spacing:5.990838px;}
.ws16d{word-spacing:6.002381px;}
.ws1b{word-spacing:6.067206px;}
.ws11f{word-spacing:6.138252px;}
.ws1c{word-spacing:6.150892px;}
.ws12a{word-spacing:6.156887px;}
.ws128{word-spacing:6.185421px;}
.wsc6{word-spacing:6.216408px;}
.wsc7{word-spacing:6.240456px;}
.ws70{word-spacing:6.276438px;}
.ws11e{word-spacing:6.330636px;}
.ws88{word-spacing:6.336214px;}
.ws17a{word-spacing:6.377530px;}
.ws17c{word-spacing:6.406387px;}
.ws17b{word-spacing:6.441016px;}
.ws134{word-spacing:6.455765px;}
.ws205{word-spacing:6.563405px;}
.wsac{word-spacing:6.635092px;}
.ws1d5{word-spacing:6.671002px;}
.ws18e{word-spacing:6.993745px;}
.ws144{word-spacing:7.101389px;}
.ws1c5{word-spacing:7.316582px;}
.ws1b5{word-spacing:7.585574px;}
.ws212{word-spacing:7.639373px;}
.ws44{word-spacing:7.651277px;}
.wsb8{word-spacing:7.689348px;}
.ws43{word-spacing:7.711052px;}
.ws137{word-spacing:7.950155px;}
.wsb7{word-spacing:8.013996px;}
.wsb9{word-spacing:8.116200px;}
.ws94{word-spacing:8.189257px;}
.ws19{word-spacing:8.661460px;}
.wsab{word-spacing:8.787013px;}
.ws1b6{word-spacing:8.930534px;}
.wsbc{word-spacing:10.214388px;}
.wsc{word-spacing:10.414782px;}
.wse{word-spacing:10.421069px;}
.wsf{word-spacing:10.422475px;}
.wsbd{word-spacing:10.551060px;}
.ws112{word-spacing:11.470896px;}
.ws86{word-spacing:11.656242px;}
.ws45{word-spacing:11.904290px;}
.wsfc{word-spacing:12.548215px;}
.wsfe{word-spacing:12.552876px;}
.ws1ba{word-spacing:12.761175px;}
.ws200{word-spacing:12.857818px;}
.ws91{word-spacing:13.031081px;}
.ws1cf{word-spacing:13.180608px;}
.ws1e1{word-spacing:13.301348px;}
.ws1e9{word-spacing:13.342003px;}
.ws1d8{word-spacing:13.382172px;}
.ws1c2{word-spacing:13.384627px;}
.ws1bc{word-spacing:13.384896px;}
.ws1d4{word-spacing:13.385424px;}
.ws1f9{word-spacing:13.386797px;}
.ws1df{word-spacing:13.387546px;}
.ws1f6{word-spacing:13.388534px;}
.ws12e{word-spacing:13.389091px;}
.ws1f4{word-spacing:13.390531px;}
.ws35{word-spacing:13.390790px;}
.wsf0{word-spacing:13.391098px;}
.ws1e0{word-spacing:13.391424px;}
.ws1d7{word-spacing:13.391826px;}
.ws210{word-spacing:13.391923px;}
.ws20e{word-spacing:13.392106px;}
.ws1ca{word-spacing:13.392720px;}
.ws1fc{word-spacing:13.393162px;}
.ws201{word-spacing:13.394246px;}
.wsee{word-spacing:13.395091px;}
.wsf7{word-spacing:13.395802px;}
.ws1f0{word-spacing:13.396531px;}
.ws206{word-spacing:13.398106px;}
.ws20b{word-spacing:13.399402px;}
.ws215{word-spacing:13.449600px;}
.ws213{word-spacing:13.456409px;}
.ws31{word-spacing:13.493324px;}
.ws33{word-spacing:13.503398px;}
.ws1c7{word-spacing:13.505344px;}
.ws1e7{word-spacing:13.557197px;}
.ws1ed{word-spacing:13.568272px;}
.ws1eb{word-spacing:13.584116px;}
.ws1d2{word-spacing:13.588822px;}
.ws22{word-spacing:13.653706px;}
.ws24{word-spacing:13.664794px;}
.ws1db{word-spacing:13.707095px;}
.ws1da{word-spacing:13.718592px;}
.ws20d{word-spacing:13.817839px;}
.ws1e3{word-spacing:13.826189px;}
.ws5a{word-spacing:14.107042px;}
.ws146{word-spacing:14.286368px;}
.ws148{word-spacing:14.310976px;}
.ws12b{word-spacing:14.585246px;}
.wsae{word-spacing:14.624116px;}
.ws191{word-spacing:14.645022px;}
.ws193{word-spacing:14.651298px;}
.ws7c{word-spacing:14.669944px;}
.ws133{word-spacing:14.702356px;}
.ws64{word-spacing:14.704798px;}
.ws139{word-spacing:14.735816px;}
.wsed{word-spacing:14.745782px;}
.ws1a9{word-spacing:14.751139px;}
.wseb{word-spacing:14.752956px;}
.wsea{word-spacing:14.758723px;}
.ws8f{word-spacing:14.764573px;}
.ws135{word-spacing:14.834803px;}
.ws69{word-spacing:14.870731px;}
.ws4a{word-spacing:14.880414px;}
.ws6b{word-spacing:14.884124px;}
.ws8e{word-spacing:14.928036px;}
.ws18a{word-spacing:14.941367px;}
.ws188{word-spacing:14.943900px;}
.ws1a7{word-spacing:14.946542px;}
.ws132{word-spacing:15.049913px;}
.ws92{word-spacing:15.063451px;}
.ws93{word-spacing:15.123227px;}
.ws1a3{word-spacing:15.180265px;}
.ws7f{word-spacing:15.183002px;}
.ws14e{word-spacing:15.242778px;}
.ws190{word-spacing:15.297954px;}
.ws12{word-spacing:15.481836px;}
.wsa{word-spacing:15.483541px;}
.ws1b0{word-spacing:15.541656px;}
.ws1e6{word-spacing:15.762931px;}
.wsf9{word-spacing:15.856123px;}
.ws77{word-spacing:15.860830px;}
.wsfb{word-spacing:15.900310px;}
.ws1d1{word-spacing:16.085722px;}
.ws16{word-spacing:16.142252px;}
.ws17{word-spacing:16.151321px;}
.ws63{word-spacing:16.199188px;}
.ws60{word-spacing:16.237084px;}
.wsf5{word-spacing:16.247117px;}
.ws62{word-spacing:16.258963px;}
.wsf3{word-spacing:16.292801px;}
.ws1cc{word-spacing:16.300915px;}
.ws1a1{word-spacing:16.498066px;}
.ws1c4{word-spacing:16.516109px;}
.ws1fe{word-spacing:16.569907px;}
.ws1c0{word-spacing:16.614691px;}
.ws1be{word-spacing:16.615690px;}
.ws209{word-spacing:16.615776px;}
.ws20f{word-spacing:16.617475px;}
.ws1ee{word-spacing:16.620461px;}
.ws1c9{word-spacing:16.620557px;}
.ws1c1{word-spacing:16.620691px;}
.ws1f7{word-spacing:16.623379px;}
.ws1cd{word-spacing:16.623706px;}
.ws1ea{word-spacing:16.624742px;}
.ws2b{word-spacing:16.731302px;}
.ws49{word-spacing:16.737168px;}
.ws29{word-spacing:16.737496px;}
.ws1fd{word-spacing:16.785101px;}
.ws1fa{word-spacing:16.838899px;}
.ws1ae{word-spacing:16.976270px;}
.ws1a6{word-spacing:17.036046px;}
.ws85{word-spacing:17.390307px;}
.ws18c{word-spacing:17.633802px;}
.ws1a2{word-spacing:17.693578px;}
.ws18{word-spacing:17.699504px;}
.ws14a{word-spacing:17.813129px;}
.ws19a{word-spacing:18.639596px;}
.ws83{word-spacing:18.649987px;}
.ws18f{word-spacing:18.875819px;}
.ws8d{word-spacing:19.068416px;}
.ws19d{word-spacing:19.187968px;}
.ws203{word-spacing:19.259827px;}
.ws1ac{word-spacing:19.845499px;}
.ws129{word-spacing:21.041011px;}
.ws95{word-spacing:23.013606px;}
.ws4{word-spacing:26.772058px;}
.ws2{word-spacing:26.779296px;}
.ws1a{word-spacing:27.448877px;}
.ws7{word-spacing:54.426350px;}
.wsa7{word-spacing:59.770022px;}
.ws126{word-spacing:83.101488px;}
.wsa3{word-spacing:147.345917px;}
.ws130{word-spacing:149.719488px;}
.wsa4{word-spacing:174.993562px;}
.wsa2{word-spacing:225.815510px;}
.ws11a{word-spacing:913.126608px;}
._22{margin-left:-912.958272px;}
._0{margin-left:-11.943245px;}
._16{margin-left:-8.693454px;}
._d{margin-left:-6.832397px;}
._9{margin-left:-5.260266px;}
._4{margin-left:-3.849538px;}
._b{margin-left:-2.630133px;}
._2{margin-left:-1.322630px;}
._3{width:1.091170px;}
._6{width:2.301354px;}
._64{width:3.585596px;}
._63{width:5.667633px;}
._19{width:11.245380px;}
._7{width:12.441899px;}
._5{width:13.717968px;}
._a{width:14.824386px;}
._11{width:15.848108px;}
._e{width:17.838071px;}
._c{width:19.044634px;}
._15{width:21.100787px;}
._10{width:22.864320px;}
._12{width:24.627547px;}
._18{width:26.547934px;}
._f{width:27.969179px;}
._6a{width:29.947576px;}
._17{width:31.143088px;}
._8{width:32.637384px;}
._4f{width:37.885668px;}
._68{width:52.239335px;}
._1e{width:62.097948px;}
._1f{width:63.991728px;}
._1{width:69.360443px;}
._1c{width:72.886248px;}
._69{width:83.115279px;}
._20{width:86.314284px;}
._6c{width:88.767360px;}
._1d{width:96.984072px;}
._67{width:104.893471px;}
._5f{width:134.894611px;}
._1b{width:137.250828px;}
._58{width:140.053709px;}
._57{width:141.080851px;}
._21{width:142.673357px;}
._5d{width:144.261408px;}
._56{width:146.299411px;}
._52{width:147.681811px;}
._5c{width:150.792211px;}
._62{width:153.134327px;}
._5a{width:155.951309px;}
._53{width:156.978451px;}
._60{width:158.424787px;}
._66{width:166.105790px;}
._54{width:174.587981px;}
._65{width:179.582669px;}
._51{width:185.777833px;}
._59{width:212.861188px;}
._61{width:214.399868px;}
._5e{width:226.745583px;}
._5b{width:229.070554px;}
._55{width:230.574605px;}
._37{width:240.209856px;}
._35{width:252.153101px;}
._2d{width:253.659456px;}
._2a{width:255.112013px;}
._31{width:270.067968px;}
._33{width:281.849818px;}
._42{width:284.270746px;}
._4a{width:285.669504px;}
._3c{width:297.720346px;}
._4d{width:299.226701px;}
._49{width:300.625459px;}
._3e{width:302.078016px;}
._48{width:304.229952px;}
._41{width:305.843904px;}
._3b{width:307.296461px;}
._4c{width:310.201574px;}
._3f{width:311.223744px;}
._47{width:312.461107px;}
._40{width:314.021261px;}
._3a{width:315.420019px;}
._45{width:317.033971px;}
._29{width:319.885286px;}
._44{width:322.252416px;}
._34{width:330.429773px;}
._2c{width:331.828531px;}
._39{width:339.521702px;}
._30{width:346.784486px;}
._43{width:352.971302px;}
._4e{width:354.639053px;}
._2f{width:360.987264px;}
._28{width:362.439821px;}
._3d{width:366.420902px;}
._4b{width:367.765862px;}
._46{width:369.326016px;}
._36{width:375.082445px;}
._2e{width:376.588800px;}
._38{width:383.528794px;}
._2b{width:389.930803px;}
._32{width:391.544755px;}
._13{width:720.284621px;}
._24{width:790.042922px;}
._23{width:820.126980px;}
._27{width:832.097722px;}
._26{width:859.450694px;}
._25{width:951.155712px;}
._50{width:2027.261910px;}
._1a{width:2111.776622px;}
._6b{width:2497.620229px;}
._14{width:2521.530229px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(12,11,11);}
.fc0{color:rgb(52,74,39);}
.fs14{font-size:35.251200px;}
.fsf{font-size:36.000000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs8{font-size:43.600200px;}
.fsb{font-size:45.429600px;}
.fs11{font-size:45.964800px;}
.fs3{font-size:47.236800px;}
.fs9{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs13{font-size:51.840000px;}
.fs7{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fs12{font-size:57.715200px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs15{font-size:63.244800px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:131.723856px;}
.y10c{bottom:-754.480050px;}
.y124{bottom:-687.337440px;}
.y123{bottom:-668.168178px;}
.y122{bottom:-648.908736px;}
.y121{bottom:-629.739474px;}
.y120{bottom:-605.980050px;}
.y11f{bottom:-567.100050px;}
.yce{bottom:-549.476550px;}
.y11e{bottom:-546.850050px;}
.y11d{bottom:-525.700050px;}
.y11c{bottom:-495.819150px;}
.y11b{bottom:-478.359600px;}
.yf2{bottom:-451.106469px;}
.y11a{bottom:-443.080050px;}
.y18c{bottom:-433.599408px;}
.yf1{bottom:-430.856550px;}
.y119{bottom:-420.578601px;}
.yf0{bottom:-409.796550px;}
.yed{bottom:-399.626550px;}
.yec{bottom:-389.546550px;}
.yee{bottom:-379.376400px;}
.yef{bottom:-369.296550px;}
.y1af{bottom:-364.299843px;}
.y1ae{bottom:-345.810779px;}
.yeb{bottom:-339.327000px;}
.y1ad{bottom:-327.321714px;}
.y12e{bottom:-326.408550px;}
.yea{bottom:-321.956550px;}
.y1ac{bottom:-308.919223px;}
.y1ab{bottom:-290.430158px;}
.ye9{bottom:-286.225254px;}
.y1aa{bottom:-272.027667px;}
.ye8{bottom:-267.055992px;}
.y146{bottom:-259.265940px;}
.y1a9{bottom:-253.538603px;}
.ye7{bottom:-247.794426px;}
.y145{bottom:-240.096678px;}
.y1a8{bottom:-235.049538px;}
.ye6{bottom:-228.534984px;}
.y144{bottom:-220.837236px;}
.y1a7{bottom:-216.647047px;}
.ye5{bottom:-204.864237px;}
.y143{bottom:-201.667974px;}
.y1a6{bottom:-198.157982px;}
.ye4{bottom:-181.014633px;}
.y1a5{bottom:-179.668918px;}
.y142{bottom:-177.908550px;}
.y1a4{bottom:-161.179854px;}
.y118{bottom:-158.948385px;}
.ye3{bottom:-143.843940px;}
.y1a3{bottom:-142.777362px;}
.y117{bottom:-139.688943px;}
.y141{bottom:-139.028550px;}
.ye2{bottom:-124.674678px;}
.y1a2{bottom:-124.373428px;}
.y116{bottom:-120.429501px;}
.y140{bottom:-118.778550px;}
.ye1{bottom:-105.415236px;}
.y1a1{bottom:-101.477808px;}
.y115{bottom:-101.260239px;}
.y13f{bottom:-97.628550px;}
.ye0{bottom:-86.245974px;}
.y114{bottom:-82.000797px;}
.y13e{bottom:-67.747650px;}
.y1a0{bottom:-66.313728px;}
.ydf{bottom:-62.486550px;}
.y113{bottom:-58.330050px;}
.y13d{bottom:-50.288100px;}
.y19f{bottom:-49.724928px;}
.y19e{bottom:-33.049296px;}
.yde{bottom:-25.676550px;}
.y112{bottom:-21.430050px;}
.y19d{bottom:-16.373664px;}
.y13c{bottom:-15.008550px;}
.ydd{bottom:-3.262302px;}
.y0{bottom:0.000000px;}
.y111{bottom:0.979392px;}
.ya{bottom:3.425340px;}
.y19c{bottom:5.140103px;}
.y13b{bottom:7.492899px;}
.y9{bottom:14.151273px;}
.y2{bottom:16.849635px;}
.y1c0{bottom:17.927136px;}
.y1b8{bottom:28.555177px;}
.y4c{bottom:31.890000px;}
.y1b9{bottom:60.177810px;}
.y1dd{bottom:91.155000px;}
.y1ba{bottom:91.714260px;}
.y261{bottom:99.073500px;}
.ybf{bottom:101.316000px;}
.y188{bottom:101.502000px;}
.y24{bottom:102.823500px;}
.y297{bottom:103.557000px;}
.y209{bottom:106.695000px;}
.y1dc{bottom:109.984500px;}
.y4b{bottom:116.179500px;}
.y260{bottom:116.334000px;}
.ybe{bottom:120.145500px;}
.y187{bottom:120.331500px;}
.y23{bottom:120.711000px;}
.y296{bottom:120.817500px;}
.y1bb{bottom:123.336893px;}
.y1b3{bottom:124.026365px;}
.y155{bottom:125.004000px;}
.y208{bottom:125.524500px;}
.y228{bottom:126.511500px;}
.y1db{bottom:128.814000px;}
.y25f{bottom:133.594500px;}
.y4a{bottom:135.009000px;}
.y1b6{bottom:135.431381px;}
.y295{bottom:138.078000px;}
.y22{bottom:138.600000px;}
.ybd{bottom:138.975000px;}
.y186{bottom:139.161000px;}
.y154{bottom:143.833500px;}
.y207{bottom:144.354000px;}
.y1da{bottom:147.643500px;}
.y25e{bottom:150.855000px;}
.y227{bottom:153.052500px;}
.y49{bottom:153.838500px;}
.y1bc{bottom:154.873342px;}
.y1b2{bottom:155.043412px;}
.y294{bottom:155.338500px;}
.y21{bottom:156.487500px;}
.ybc{bottom:157.804500px;}
.y185{bottom:157.990500px;}
.y108{bottom:162.240000px;}
.y153{bottom:162.663000px;}
.y206{bottom:163.183500px;}
.y80{bottom:164.062500px;}
.y1b7{bottom:165.153370px;}
.y1b5{bottom:165.325738px;}
.y1d9{bottom:166.473000px;}
.y25d{bottom:168.115500px;}
.y226{bottom:170.626500px;}
.y293{bottom:172.599000px;}
.y48{bottom:172.668000px;}
.y20{bottom:174.375000px;}
.ybb{bottom:176.634000px;}
.y184{bottom:176.820000px;}
.y1b1{bottom:180.704411px;}
.y107{bottom:181.069500px;}
.y1b4{bottom:181.396181px;}
.y152{bottom:181.492500px;}
.y205{bottom:182.013000px;}
.y7f{bottom:182.892000px;}
.y1d8{bottom:185.302500px;}
.y25c{bottom:185.376000px;}
.y1bd{bottom:186.495975px;}
.y225{bottom:188.200500px;}
.y292{bottom:189.858000px;}
.y47{bottom:191.497500px;}
.y1f{bottom:192.264000px;}
.yba{bottom:195.463500px;}
.y183{bottom:195.649500px;}
.y106{bottom:199.899000px;}
.y151{bottom:200.322000px;}
.y204{bottom:200.842500px;}
.y7e{bottom:201.721500px;}
.y25b{bottom:202.636500px;}
.y1d7{bottom:204.132000px;}
.y291{bottom:207.118500px;}
.y1e{bottom:210.151500px;}
.y46{bottom:210.327000px;}
.yb9{bottom:214.291500px;}
.y182{bottom:214.479000px;}
.y224{bottom:214.740000px;}
.y1be{bottom:218.032425px;}
.y105{bottom:218.728500px;}
.y150{bottom:219.151500px;}
.y203{bottom:219.672000px;}
.y25a{bottom:219.895500px;}
.y7d{bottom:220.551000px;}
.y1b0{bottom:220.621392px;}
.y1d6{bottom:222.961500px;}
.y290{bottom:224.379000px;}
.y1d{bottom:228.039000px;}
.y45{bottom:229.156500px;}
.yb8{bottom:233.121000px;}
.y181{bottom:233.308500px;}
.y259{bottom:237.156000px;}
.y14f{bottom:237.981000px;}
.y202{bottom:238.501500px;}
.y7c{bottom:239.380500px;}
.y223{bottom:241.281000px;}
.y28f{bottom:241.639500px;}
.y1d5{bottom:241.791000px;}
.y44{bottom:247.986000px;}
.y1bf{bottom:249.655058px;}
.yb7{bottom:251.950500px;}
.y180{bottom:252.138000px;}
.y258{bottom:254.416500px;}
.y14e{bottom:256.810500px;}
.y201{bottom:257.331000px;}
.y7b{bottom:258.210000px;}
.y222{bottom:258.855000px;}
.y28e{bottom:258.900000px;}
.y1d4{bottom:260.620500px;}
.y104{bottom:265.176000px;}
.y43{bottom:266.815500px;}
.y110{bottom:267.292416px;}
.y13a{bottom:269.123115px;}
.yb5{bottom:270.780000px;}
.y17f{bottom:270.967500px;}
.y257{bottom:271.677000px;}
.y1c1{bottom:275.139792px;}
.y200{bottom:276.160500px;}
.yb6{bottom:276.205500px;}
.y7a{bottom:277.039500px;}
.y1d3{bottom:279.450000px;}
.ydc{bottom:280.057707px;}
.y14d{bottom:280.123500px;}
.y221{bottom:285.396000px;}
.y42{bottom:285.645000px;}
.y10f{bottom:286.551858px;}
.y139{bottom:288.382557px;}
.y256{bottom:288.937500px;}
.yb4{bottom:289.609500px;}
.y102{bottom:292.105500px;}
.y28d{bottom:293.421000px;}
.y1ff{bottom:294.990000px;}
.y79{bottom:295.869000px;}
.y1d2{bottom:298.279500px;}
.ydb{bottom:299.228472px;}
.y101{bottom:300.324000px;}
.y220{bottom:302.970000px;}
.y41{bottom:304.474500px;}
.y17e{bottom:305.050500px;}
.y10e{bottom:305.721120px;}
.y255{bottom:306.198000px;}
.y1c{bottom:307.299000px;}
.y138{bottom:307.641999px;}
.yb3{bottom:308.439000px;}
.y103{bottom:308.542500px;}
.y28c{bottom:310.681500px;}
.y1fe{bottom:313.819500px;}
.y78{bottom:314.698500px;}
.y1d1{bottom:317.109000px;}
.yda{bottom:318.487914px;}
.y17d{bottom:319.248000px;}
.y21f{bottom:320.544000px;}
.y19b{bottom:322.487130px;}
.y40{bottom:323.304000px;}
.y254{bottom:323.458500px;}
.yb2{bottom:324.538500px;}
.y10d{bottom:324.980562px;}
.y1b{bottom:325.186500px;}
.y137{bottom:326.811261px;}
.yb0{bottom:327.268500px;}
.y28b{bottom:327.940500px;}
.y14c{bottom:329.410500px;}
.y1fd{bottom:332.649000px;}
.yb1{bottom:332.694000px;}
.y76{bottom:333.528000px;}
.y1d0{bottom:335.938500px;}
.yd9{bottom:337.747356px;}
.y21e{bottom:338.118000px;}
.y77{bottom:338.952000px;}
.y17c{bottom:339.078000px;}
.y253{bottom:340.719000px;}
.y19a{bottom:340.891065px;}
.y3f{bottom:342.133500px;}
.y100{bottom:342.463500px;}
.y1a{bottom:343.074000px;}
.y28a{bottom:345.201000px;}
.y136{bottom:346.070703px;}
.yaf{bottom:346.098000px;}
.y14b{bottom:349.137000px;}
.y1fc{bottom:351.478500px;}
.y75{bottom:352.356000px;}
.y1cf{bottom:354.766500px;}
.y21d{bottom:355.692000px;}
.yd8{bottom:356.916618px;}
.y252{bottom:357.978000px;}
.y17b{bottom:358.804500px;}
.y199{bottom:359.380129px;}
.y19{bottom:360.963000px;}
.y289{bottom:362.461500px;}
.yae{bottom:364.927500px;}
.y135{bottom:369.741450px;}
.y1fb{bottom:370.308000px;}
.y21c{bottom:373.266000px;}
.y1ce{bottom:373.596000px;}
.yff{bottom:374.181000px;}
.y251{bottom:375.238500px;}
.y74{bottom:375.669000px;}
.y14a{bottom:376.065000px;}
.yd7{bottom:376.176060px;}
.y198{bottom:377.784063px;}
.y17a{bottom:378.529500px;}
.y10b{bottom:379.520535px;}
.y288{bottom:379.722000px;}
.y3e{bottom:379.792500px;}
.yad{bottom:383.757000px;}
.y1fa{bottom:389.137500px;}
.y10a{bottom:389.329950px;}
.y21b{bottom:390.840000px;}
.y1cd{bottom:392.425500px;}
.y250{bottom:392.499000px;}
.yfe{bottom:393.010500px;}
.yd6{bottom:395.435502px;}
.y73{bottom:395.844000px;}
.y197{bottom:396.273128px;}
.y287{bottom:396.982500px;}
.y179{bottom:398.256000px;}
.y3d{bottom:398.622000px;}
.y18{bottom:399.024000px;}
.yac{bottom:402.586500px;}
.y134{bottom:406.641450px;}
.y1f9{bottom:407.967000px;}
.yfd{bottom:409.110000px;}
.y24f{bottom:409.759500px;}
.y149{bottom:409.986000px;}
.y1cc{bottom:411.255000px;}
.yfc{bottom:411.840000px;}
.y286{bottom:414.243000px;}
.yd5{bottom:414.606267px;}
.y196{bottom:414.762192px;}
.y17{bottom:416.913000px;}
.y3c{bottom:417.451500px;}
.y178{bottom:417.982500px;}
.yab{bottom:421.416000px;}
.y21a{bottom:426.348000px;}
.y1f8{bottom:426.796500px;}
.y24e{bottom:427.020000px;}
.y133{bottom:429.050892px;}
.y148{bottom:429.219000px;}
.y72{bottom:429.468000px;}
.y1cb{bottom:430.084500px;}
.yfb{bottom:430.669500px;}
.y285{bottom:431.503500px;}
.yd4{bottom:433.865709px;}
.y16{bottom:434.800500px;}
.y3b{bottom:436.281000px;}
.y177{bottom:437.707500px;}
.y24d{bottom:444.280500px;}
.yaa{bottom:444.729000px;}
.y219{bottom:445.177500px;}
.y1f7{bottom:445.626000px;}
.y71{bottom:448.297500px;}
.y284{bottom:448.764000px;}
.y1ca{bottom:448.914000px;}
.y195{bottom:450.013392px;}
.yd3{bottom:453.036474px;}
.yfa{bottom:453.982500px;}
.y176{bottom:457.434000px;}
.y3a{bottom:459.594000px;}
.y24c{bottom:461.541000px;}
.y218{bottom:464.007000px;}
.y1f6{bottom:464.454000px;}
.y283{bottom:466.024500px;}
.y194{bottom:466.602192px;}
.y70{bottom:467.127000px;}
.y1c9{bottom:467.743500px;}
.y147{bottom:467.878500px;}
.y15{bottom:470.622000px;}
.yd2{bottom:472.295916px;}
.yf9{bottom:474.156000px;}
.y175{bottom:477.159000px;}
.ya9{bottom:478.353000px;}
.y24b{bottom:478.801500px;}
.y217{bottom:482.836500px;}
.y1f5{bottom:483.283500px;}
.y193{bottom:485.350992px;}
.y6f{bottom:485.956500px;}
.y1c8{bottom:486.573000px;}
.y14{bottom:488.509500px;}
.y12b{bottom:490.308000px;}
.yd1{bottom:491.555358px;}
.y24a{bottom:496.062000px;}
.y174{bottom:496.885500px;}
.ya8{bottom:497.182500px;}
.y282{bottom:500.544000px;}
.y216{bottom:501.666000px;}
.y1f4{bottom:502.113000px;}
.y6e{bottom:504.786000px;}
.y192{bottom:504.790992px;}
.y1c7{bottom:505.402500px;}
.yf8{bottom:507.780000px;}
.yd0{bottom:510.724620px;}
.y249{bottom:513.321000px;}
.ya7{bottom:516.012000px;}
.y173{bottom:516.612000px;}
.y281{bottom:517.804500px;}
.y215{bottom:520.495500px;}
.y1f3{bottom:520.942500px;}
.y6d{bottom:523.615500px;}
.y191{bottom:524.144592px;}
.y13{bottom:524.329500px;}
.yf7{bottom:526.609500px;}
.y1c6{bottom:528.715500px;}
.ycf{bottom:529.984062px;}
.y248{bottom:530.581500px;}
.y39{bottom:534.744000px;}
.ya5{bottom:534.841500px;}
.y280{bottom:535.065000px;}
.y214{bottom:539.323500px;}
.y1f2{bottom:539.772000px;}
.ya6{bottom:540.265500px;}
.y12{bottom:542.218500px;}
.y6c{bottom:542.445000px;}
.y171{bottom:543.540000px;}
.y190{bottom:543.584592px;}
.yf6{bottom:545.439000px;}
.y247{bottom:547.842000px;}
.y170{bottom:551.758500px;}
.y27f{bottom:552.325500px;}
.ya4{bottom:553.671000px;}
.y213{bottom:558.153000px;}
.y1f1{bottom:558.601500px;}
.y172{bottom:559.978500px;}
.y11{bottom:560.106000px;}
.y6b{bottom:561.274500px;}
.y18f{bottom:563.024592px;}
.yf5{bottom:564.268500px;}
.y246{bottom:565.102500px;}
.y1c5{bottom:565.120500px;}
.y27e{bottom:569.586000px;}
.y38{bottom:572.133000px;}
.ya3{bottom:572.500500px;}
.y212{bottom:576.982500px;}
.y1f0{bottom:577.431000px;}
.y10{bottom:577.993500px;}
.y6a{bottom:580.104000px;}
.y245{bottom:582.363000px;}
.y18e{bottom:582.464592px;}
.y1c4{bottom:584.353500px;}
.ycd{bottom:584.524035px;}
.y27d{bottom:586.846500px;}
.yf4{bottom:587.581500px;}
.ya2{bottom:591.330000px;}
.y37{bottom:591.591000px;}
.y16f{bottom:593.899500px;}
.ycc{bottom:594.333450px;}
.y211{bottom:595.812000px;}
.yf{bottom:595.882500px;}
.y1ef{bottom:596.260500px;}
.y69{bottom:598.932000px;}
.y244{bottom:599.623500px;}
.y18d{bottom:601.904592px;}
.y1c3{bottom:603.586500px;}
.y27c{bottom:604.107000px;}
.ya1{bottom:610.159500px;}
.y36{bottom:611.047500px;}
.ye{bottom:613.770000px;}
.y210{bottom:614.641500px;}
.y1ee{bottom:615.090000px;}
.y243{bottom:616.884000px;}
.y68{bottom:617.761500px;}
.y27b{bottom:621.366000px;}
.y1c2{bottom:622.819500px;}
.yf3{bottom:623.986500px;}
.ya0{bottom:628.989000px;}
.y16e{bottom:629.509500px;}
.y35{bottom:630.504000px;}
.y20f{bottom:630.741000px;}
.yd{bottom:631.657500px;}
.y20e{bottom:633.471000px;}
.y1ed{bottom:633.919500px;}
.y242{bottom:634.144500px;}
.y67{bottom:636.591000px;}
.y27a{bottom:638.626500px;}
.y189{bottom:645.249000px;}
.ycb{bottom:646.416000px;}
.y9f{bottom:647.817000px;}
.y16d{bottom:648.339000px;}
.yc{bottom:649.546500px;}
.y34{bottom:649.962000px;}
.y241{bottom:651.403500px;}
.y20d{bottom:652.300500px;}
.y1ec{bottom:652.749000px;}
.y18b{bottom:655.041154px;}
.y66{bottom:655.420500px;}
.y279{bottom:655.887000px;}
.y18a{bottom:664.458192px;}
.y9e{bottom:666.646500px;}
.y16c{bottom:667.167000px;}
.yb{bottom:667.434000px;}
.y240{bottom:668.664000px;}
.y33{bottom:669.418500px;}
.y20c{bottom:671.130000px;}
.y1eb{bottom:671.578500px;}
.y278{bottom:673.147500px;}
.y65{bottom:674.250000px;}
.y9c{bottom:685.476000px;}
.y23f{bottom:685.924500px;}
.y16b{bottom:685.996500px;}
.y32{bottom:688.875000px;}
.y8{bottom:689.805055px;}
.y20b{bottom:689.959500px;}
.y1ea{bottom:690.408000px;}
.y9d{bottom:690.901500px;}
.y64{bottom:693.079500px;}
.y132{bottom:695.363916px;}
.y23e{bottom:703.185000px;}
.y9b{bottom:704.305500px;}
.y16a{bottom:704.826000px;}
.y277{bottom:707.668500px;}
.y31{bottom:708.333000px;}
.y1e9{bottom:709.237500px;}
.y63{bottom:711.909000px;}
.y20a{bottom:713.272500px;}
.y131{bottom:714.623358px;}
.y23d{bottom:720.445500px;}
.y9a{bottom:723.135000px;}
.y169{bottom:723.655500px;}
.y276{bottom:724.929000px;}
.y30{bottom:727.789500px;}
.y1e8{bottom:728.067000px;}
.y62{bottom:730.738500px;}
.y130{bottom:733.792620px;}
.y12a{bottom:736.690500px;}
.y23c{bottom:737.706000px;}
.y275{bottom:742.189500px;}
.y168{bottom:742.485000px;}
.y99{bottom:746.448000px;}
.y1e7{bottom:746.896500px;}
.y2f{bottom:747.247500px;}
.y61{bottom:749.568000px;}
.y12f{bottom:753.052062px;}
.y23b{bottom:754.966500px;}
.y129{bottom:755.520000px;}
.y274{bottom:759.450000px;}
.y167{bottom:761.314500px;}
.y1e6{bottom:765.726000px;}
.y2e{bottom:766.704000px;}
.y60{bottom:768.397500px;}
.y23a{bottom:772.227000px;}
.y128{bottom:774.349500px;}
.y273{bottom:776.709000px;}
.y98{bottom:780.072000px;}
.y166{bottom:780.144000px;}
.y2d{bottom:783.538500px;}
.y1e5{bottom:784.555500px;}
.y2c{bottom:786.160500px;}
.y5f{bottom:787.227000px;}
.y239{bottom:789.487500px;}
.y127{bottom:793.179000px;}
.y272{bottom:793.969500px;}
.y97{bottom:798.901500px;}
.y1e4{bottom:803.385000px;}
.y2b{bottom:805.618500px;}
.y5e{bottom:806.056500px;}
.y238{bottom:806.746500px;}
.y12d{bottom:807.592035px;}
.y271{bottom:811.230000px;}
.y126{bottom:816.490500px;}
.y165{bottom:817.288500px;}
.y12c{bottom:817.401450px;}
.y96{bottom:817.731000px;}
.y1e3{bottom:822.214500px;}
.y237{bottom:824.007000px;}
.y5d{bottom:824.886000px;}
.y2a{bottom:825.075000px;}
.y270{bottom:828.490500px;}
.y164{bottom:831.486000px;}
.y94{bottom:836.560500px;}
.y1e2{bottom:841.044000px;}
.y236{bottom:841.267500px;}
.y95{bottom:841.984500px;}
.y5c{bottom:843.715500px;}
.y29{bottom:844.531500px;}
.y26f{bottom:845.751000px;}
.y163{bottom:851.316000px;}
.y125{bottom:852.895500px;}
.y93{bottom:855.390000px;}
.y235{bottom:858.528000px;}
.y1e1{bottom:859.873500px;}
.y5b{bottom:862.545000px;}
.y26e{bottom:863.011500px;}
.y162{bottom:871.041000px;}
.y92{bottom:874.219500px;}
.y109{bottom:875.325000px;}
.y234{bottom:875.788500px;}
.y1e0{bottom:878.703000px;}
.y26d{bottom:880.272000px;}
.y5a{bottom:881.374500px;}
.y28{bottom:883.117500px;}
.y161{bottom:890.767500px;}
.y91{bottom:893.049000px;}
.y1df{bottom:897.532500px;}
.y27{bottom:899.257500px;}
.y59{bottom:900.204000px;}
.y233{bottom:910.309500px;}
.y160{bottom:910.494000px;}
.y8f{bottom:911.878500px;}
.y26c{bottom:914.793000px;}
.y26{bottom:915.396000px;}
.yca{bottom:916.362000px;}
.y90{bottom:917.302500px;}
.y58{bottom:919.033500px;}
.y232{bottom:927.570000px;}
.y15f{bottom:930.219000px;}
.y8d{bottom:930.708000px;}
.y25{bottom:931.536000px;}
.y26b{bottom:932.052000px;}
.yc9{bottom:935.191500px;}
.y8e{bottom:936.132000px;}
.y57{bottom:937.863000px;}
.y231{bottom:944.829000px;}
.y26a{bottom:949.312500px;}
.y8b{bottom:949.537500px;}
.y15e{bottom:949.945500px;}
.yc8{bottom:954.021000px;}
.y8c{bottom:954.961500px;}
.y56{bottom:956.692500px;}
.y1de{bottom:959.445000px;}
.y230{bottom:962.089500px;}
.y269{bottom:966.573000px;}
.y8a{bottom:968.367000px;}
.y15d{bottom:969.672000px;}
.yc7{bottom:972.849000px;}
.y55{bottom:975.522000px;}
.y7{bottom:976.069500px;}
.y22f{bottom:979.350000px;}
.y268{bottom:983.833500px;}
.y89{bottom:987.196500px;}
.y15c{bottom:989.397000px;}
.yc6{bottom:991.678500px;}
.y54{bottom:994.351500px;}
.y6{bottom:994.899000px;}
.y22e{bottom:996.610500px;}
.y267{bottom:1001.094000px;}
.y88{bottom:1006.026000px;}
.y15b{bottom:1009.123500px;}
.yc4{bottom:1010.508000px;}
.y53{bottom:1013.181000px;}
.y22d{bottom:1013.871000px;}
.yc5{bottom:1015.933500px;}
.y266{bottom:1018.354500px;}
.y87{bottom:1024.855500px;}
.y15a{bottom:1028.850000px;}
.yc3{bottom:1029.337500px;}
.y22c{bottom:1031.131500px;}
.y52{bottom:1032.010500px;}
.y265{bottom:1035.615000px;}
.y85{bottom:1040.955000px;}
.y5{bottom:1041.199500px;}
.y84{bottom:1043.685000px;}
.yc2{bottom:1048.167000px;}
.y22b{bottom:1048.392000px;}
.y86{bottom:1049.109000px;}
.y51{bottom:1050.840000px;}
.y264{bottom:1052.875500px;}
.y158{bottom:1055.778000px;}
.y83{bottom:1062.513000px;}
.y157{bottom:1063.996500px;}
.y22a{bottom:1065.652500px;}
.yc1{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y50{bottom:1069.669500px;}
.y263{bottom:1070.134500px;}
.y159{bottom:1072.216500px;}
.y82{bottom:1081.342500px;}
.y229{bottom:1082.913000px;}
.yc0{bottom:1085.826000px;}
.y262{bottom:1087.395000px;}
.y4f{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y81{bottom:1104.655500px;}
.y156{bottom:1106.137500px;}
.y4e{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4d{bottom:1173.397500px;}
.h37{height:24.424537px;}
.h8{height:25.508090px;}
.h13{height:31.526842px;}
.h34{height:31.847681px;}
.ha{height:33.112997px;}
.h30{height:33.261638px;}
.h9{height:34.199443px;}
.h2a{height:37.334628px;}
.h32{height:37.513125px;}
.hb{height:37.993262px;}
.he{height:38.896243px;}
.h17{height:41.250077px;}
.h33{height:41.257350px;}
.h14{height:41.482876px;}
.h31{height:41.764613px;}
.h11{height:43.217759px;}
.h1f{height:43.269961px;}
.hc{height:43.421105px;}
.hd{height:43.660208px;}
.h4{height:43.815515px;}
.h38{height:43.820494px;}
.h1c{height:44.279648px;}
.h1b{height:44.536816px;}
.h28{height:45.444344px;}
.hf{height:48.848947px;}
.h3a{height:49.117939px;}
.h29{height:49.782344px;}
.h21{height:49.939453px;}
.h1e{height:50.229492px;}
.h2{height:50.931027px;}
.h12{height:54.276245px;}
.h18{height:54.575123px;}
.h7{height:55.352206px;}
.h1d{height:55.599258px;}
.h20{height:55.922168px;}
.h36{height:58.456704px;}
.h10{height:59.055733px;}
.h35{height:62.607325px;}
.h2b{height:62.946077px;}
.h19{height:62.952077px;}
.h15{height:64.142842px;}
.h39{height:64.148842px;}
.h26{height:71.770243px;}
.h2e{height:71.776243px;}
.h16{height:73.866077px;}
.h5{height:77.792486px;}
.h6{height:78.115277px;}
.h3{height:82.327410px;}
.h25{height:96.276450px;}
.h22{height:96.602768px;}
.h27{height:109.977733px;}
.h24{height:136.598934px;}
.h23{height:136.922768px;}
.h2d{height:231.708000px;}
.h2c{height:244.275000px;}
.h1a{height:255.271500px;}
.h2f{height:306.947520px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:196.723648px;}
.w5{width:730.470000px;}
.w6{width:746.965350px;}
.w7{width:765.835488px;}
.w4{width:768.171750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x9f{left:-27.687000px;}
.xaa{left:-16.690650px;}
.x72{left:-7.265250px;}
.x0{left:0.000000px;}
.xc2{left:5.889888px;}
.xcd{left:15.220354px;}
.xcc{left:21.095804px;}
.x3{left:29.274117px;}
.xc8{left:36.475488px;}
.xa3{left:38.913000px;}
.xaf{left:49.909350px;}
.x1{left:54.000000px;}
.x2{left:58.043648px;}
.xce{left:60.408288px;}
.x71{left:62.372250px;}
.xc1{left:63.536712px;}
.xa9{left:72.975150px;}
.xb9{left:76.072500px;}
.x9e{left:81.222000px;}
.x89{left:83.535000px;}
.xcf{left:85.890000px;}
.x94{left:88.756500px;}
.xb8{left:90.612000px;}
.xc0{left:99.219000px;}
.x95{left:102.373500px;}
.xb2{left:122.877000px;}
.xc9{left:130.046170px;}
.x88{left:137.611500px;}
.x96{left:142.585500px;}
.x8a{left:150.850500px;}
.xa0{left:167.881857px;}
.xac{left:178.878207px;}
.xa1{left:185.793000px;}
.x73{left:188.305110px;}
.xba{left:191.019000px;}
.xc5{left:193.637088px;}
.xae{left:196.789350px;}
.x7e{left:198.924750px;}
.x7f{left:204.594066px;}
.x75{left:206.844750px;}
.xab{left:210.738801px;}
.x74{left:220.165344px;}
.xc6{left:224.222688px;}
.xc4{left:226.641888px;}
.xc3{left:230.270688px;}
.x97{left:239.380500px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x76{left:253.554750px;}
.xb4{left:259.863000px;}
.x80{left:261.563778px;}
.x81{left:263.453049px;}
.x54{left:264.937500px;}
.xa6{left:267.990000px;}
.xca{left:270.877720px;}
.x11{left:282.786000px;}
.x55{left:284.305500px;}
.x1c{left:286.651500px;}
.x20{left:289.518000px;}
.xbb{left:291.583500px;}
.x1d{left:294.124500px;}
.x1e{left:297.934500px;}
.xa5{left:300.993000px;}
.xb1{left:304.339350px;}
.x1f{left:305.406000px;}
.xdb{left:307.573500px;}
.x6{left:309.087000px;}
.xf1{left:310.728000px;}
.x21{left:311.866500px;}
.xf0{left:318.400500px;}
.xdc{left:322.516500px;}
.xa4{left:324.663000px;}
.x22{left:326.811000px;}
.xe7{left:332.677500px;}
.xb0{left:335.659350px;}
.xd5{left:337.609500px;}
.x98{left:340.227000px;}
.xa7{left:344.179500px;}
.x83{left:346.050000px;}
.xb3{left:347.910000px;}
.x5b{left:350.617500px;}
.xd6{left:352.554000px;}
.x6a{left:357.208500px;}
.x62{left:360.682500px;}
.x6b{left:364.014000px;}
.x5e{left:365.484000px;}
.x34{left:368.452500px;}
.x77{left:373.614750px;}
.xf2{left:376.114500px;}
.x5f{left:380.427000px;}
.x35{left:383.397000px;}
.xe5{left:387.180000px;}
.x8c{left:388.314000px;}
.x8b{left:391.522500px;}
.xa8{left:396.147000px;}
.xbc{left:398.838000px;}
.x5c{left:402.804000px;}
.xbd{left:408.906000px;}
.xcb{left:411.536903px;}
.xd7{left:414.388500px;}
.x6e{left:423.102000px;}
.xe3{left:426.831000px;}
.x6c{left:429.637500px;}
.x78{left:432.564750px;}
.x6d{left:436.443000px;}
.x6f{left:438.046500px;}
.x70{left:445.647000px;}
.xd9{left:453.061500px;}
.x99{left:455.422500px;}
.xda{left:460.533000px;}
.xe0{left:470.883000px;}
.x8e{left:472.206000px;}
.x8d{left:477.280500px;}
.xb5{left:489.675000px;}
.x79{left:491.514750px;}
.x36{left:493.153500px;}
.x9a{left:494.392500px;}
.x18{left:497.229000px;}
.xb{left:499.507500px;}
.x82{left:501.053301px;}
.x19{left:504.700500px;}
.x1a{left:508.510500px;}
.xc{left:514.966500px;}
.x1b{left:515.983500px;}
.xe1{left:520.083000px;}
.xe2{left:523.837500px;}
.x26{left:526.903500px;}
.xd{left:530.868000px;}
.xe{left:536.845500px;}
.x2d{left:539.484000px;}
.x2a{left:540.795000px;}
.x27{left:541.848000px;}
.x28{left:545.509500px;}
.x9b{left:547.167000px;}
.x8f{left:549.538500px;}
.x60{left:551.262000px;}
.x2e{left:554.427000px;}
.x2b{left:555.739500px;}
.x61{left:558.067500px;}
.x29{left:560.454000px;}
.x49{left:571.569000px;}
.xe4{left:573.262500px;}
.xea{left:574.477500px;}
.xdd{left:585.634500px;}
.xb6{left:586.804500px;}
.x4a{left:588.225000px;}
.xeb{left:589.420500px;}
.x56{left:592.221000px;}
.x45{left:596.059500px;}
.xf{left:601.002000px;}
.x57{left:607.164000px;}
.x7a{left:609.414750px;}
.x9c{left:612.405000px;}
.x3b{left:613.680000px;}
.x58{left:614.785500px;}
.x4b{left:617.031000px;}
.x37{left:618.325500px;}
.x3c{left:620.485500px;}
.xf7{left:622.572000px;}
.x90{left:623.698500px;}
.x46{left:625.810500px;}
.xee{left:627.640500px;}
.x59{left:629.730000px;}
.x38{left:633.270000px;}
.x3d{left:635.616000px;}
.x39{left:636.987000px;}
.xbe{left:638.566500px;}
.x3e{left:639.765000px;}
.x47{left:642.927000px;}
.x10{left:648.700500px;}
.x3a{left:651.931500px;}
.x3f{left:654.895500px;}
.x7{left:658.816500px;}
.x4c{left:664.476000px;}
.x40{left:666.324000px;}
.x7c{left:668.364750px;}
.xe6{left:670.546500px;}
.x7b{left:672.954750px;}
.xf5{left:678.429000px;}
.x66{left:681.192000px;}
.x9d{left:682.548000px;}
.x92{left:686.079000px;}
.x91{left:689.143500px;}
.x41{left:693.898500px;}
.x33{left:695.287500px;}
.xed{left:698.071500px;}
.x42{left:700.705500px;}
.x67{left:702.378000px;}
.x4d{left:704.044500px;}
.x8{left:705.601500px;}
.x14{left:708.093000px;}
.x52{left:710.500500px;}
.x2f{left:711.780000px;}
.x15{left:715.564500px;}
.x5a{left:716.605500px;}
.x43{left:719.985000px;}
.xb7{left:722.170500px;}
.x7d{left:724.794750px;}
.x30{left:726.723000px;}
.x63{left:728.038500px;}
.x53{left:729.991500px;}
.x9{left:732.172500px;}
.x31{left:734.344500px;}
.xde{left:737.737500px;}
.x44{left:739.050000px;}
.xa2{left:741.720885px;}
.xad{left:743.089035px;}
.xf3{left:745.309500px;}
.x64{left:748.159500px;}
.x32{left:749.289000px;}
.xe8{left:750.687000px;}
.x4e{left:752.427000px;}
.xbf{left:754.080000px;}
.x84{left:757.914000px;}
.xc7{left:759.728843px;}
.xec{left:762.246000px;}
.x65{left:765.144000px;}
.x23{left:766.297500px;}
.x93{left:768.349500px;}
.x4f{left:769.528500px;}
.xf4{left:772.209000px;}
.xd2{left:774.214500px;}
.xa{left:777.100500px;}
.x85{left:779.103000px;}
.x24{left:781.242000px;}
.xef{left:782.856000px;}
.xe9{left:784.318500px;}
.xd3{left:785.437500px;}
.x12{left:788.892000px;}
.xdf{left:790.675500px;}
.xd8{left:792.948000px;}
.x13{left:796.363500px;}
.xd0{left:799.291500px;}
.xd4{left:800.382000px;}
.x25{left:803.508000px;}
.x2c{left:811.528500px;}
.xd1{left:814.236000px;}
.xf6{left:816.339000px;}
.x48{left:817.933500px;}
.x86{left:820.506000px;}
.x50{left:822.024000px;}
.x16{left:825.169500px;}
.x87{left:826.932000px;}
.x5d{left:828.106500px;}
.x68{left:830.544000px;}
.x17{left:832.642500px;}
.x51{left:835.332000px;}
.x69{left:836.970000px;}
@media print{
.v4{vertical-align:-9.706667pt;}
.va{vertical-align:-8.485333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.vc{vertical-align:17.360000pt;}
.v3{vertical-align:19.290667pt;}
.vb{vertical-align:21.989333pt;}
.vd{vertical-align:23.652465pt;}
.v1{vertical-align:26.682667pt;}
.v2{vertical-align:28.992000pt;}
.v6{vertical-align:36.160533pt;}
.v9{vertical-align:49.957333pt;}
.v8{vertical-align:58.442667pt;}
.v7{vertical-align:72.000533pt;}
.ls90{letter-spacing:-2.688246pt;}
.ls4d{letter-spacing:-0.358048pt;}
.ls51{letter-spacing:-0.203072pt;}
.ls61{letter-spacing:-0.201600pt;}
.ls52{letter-spacing:-0.160320pt;}
.ls7e{letter-spacing:-0.153907pt;}
.ls93{letter-spacing:-0.143647pt;}
.ls40{letter-spacing:-0.133600pt;}
.ls4c{letter-spacing:-0.128256pt;}
.ls96{letter-spacing:-0.126659pt;}
.ls62{letter-spacing:-0.124800pt;}
.ls44{letter-spacing:-0.122912pt;}
.ls94{letter-spacing:-0.117996pt;}
.ls47{letter-spacing:-0.112224pt;}
.ls63{letter-spacing:-0.106880pt;}
.ls7d{letter-spacing:-0.102605pt;}
.ls53{letter-spacing:-0.101536pt;}
.ls3c{letter-spacing:-0.096192pt;}
.ls98{letter-spacing:-0.093972pt;}
.ls92{letter-spacing:-0.092344pt;}
.ls36{letter-spacing:-0.090848pt;}
.ls87{letter-spacing:-0.087214pt;}
.ls41{letter-spacing:-0.085504pt;}
.ls88{letter-spacing:-0.082084pt;}
.ls34{letter-spacing:-0.080864pt;}
.ls37{letter-spacing:-0.080160pt;}
.ls7b{letter-spacing:-0.077629pt;}
.ls43{letter-spacing:-0.074816pt;}
.ls49{letter-spacing:-0.069472pt;}
.ls38{letter-spacing:-0.064128pt;}
.ls84{letter-spacing:-0.061563pt;}
.ls5e{letter-spacing:-0.058784pt;}
.ls60{letter-spacing:-0.053440pt;}
.ls3d{letter-spacing:-0.048096pt;}
.ls8c{letter-spacing:-0.046172pt;}
.ls97{letter-spacing:-0.044943pt;}
.ls3f{letter-spacing:-0.042752pt;}
.ls85{letter-spacing:-0.041042pt;}
.ls3b{letter-spacing:-0.037408pt;}
.ls8d{letter-spacing:-0.035912pt;}
.ls46{letter-spacing:-0.032064pt;}
.ls8b{letter-spacing:-0.030781pt;}
.ls42{letter-spacing:-0.026720pt;}
.ls8f{letter-spacing:-0.025651pt;}
.ls45{letter-spacing:-0.024000pt;}
.ls3e{letter-spacing:-0.021376pt;}
.ls8e{letter-spacing:-0.020521pt;}
.ls8a{letter-spacing:-0.018432pt;}
.ls39{letter-spacing:-0.016032pt;}
.ls91{letter-spacing:-0.015391pt;}
.ls4b{letter-spacing:-0.014400pt;}
.ls35{letter-spacing:-0.012768pt;}
.ls7c{letter-spacing:-0.012257pt;}
.ls5f{letter-spacing:-0.010688pt;}
.ls9a{letter-spacing:-0.009400pt;}
.ls83{letter-spacing:-0.009216pt;}
.ls3a{letter-spacing:-0.005344pt;}
.ls86{letter-spacing:-0.005130pt;}
.ls4a{letter-spacing:-0.004800pt;}
.ls89{letter-spacing:-0.004608pt;}
.lsa{letter-spacing:0.000000pt;}
.lsb5{letter-spacing:0.000425pt;}
.lsa8{letter-spacing:0.000441pt;}
.ls3{letter-spacing:0.000518pt;}
.lsb4{letter-spacing:0.000627pt;}
.lsb2{letter-spacing:0.000711pt;}
.ls30{letter-spacing:0.000751pt;}
.lsb6{letter-spacing:0.000767pt;}
.ls15{letter-spacing:0.000813pt;}
.lsb1{letter-spacing:0.000921pt;}
.lsb0{letter-spacing:0.001026pt;}
.ls6{letter-spacing:0.001398pt;}
.lsa9{letter-spacing:0.001408pt;}
.lsb3{letter-spacing:0.002075pt;}
.ls9f{letter-spacing:0.002187pt;}
.ls1{letter-spacing:0.002422pt;}
.lsa0{letter-spacing:0.002538pt;}
.lsac{letter-spacing:0.002557pt;}
.lsa1{letter-spacing:0.002703pt;}
.ls2e{letter-spacing:0.002825pt;}
.ls9c{letter-spacing:0.003261pt;}
.ls0{letter-spacing:0.003733pt;}
.lsa7{letter-spacing:0.004267pt;}
.ls5b{letter-spacing:0.004800pt;}
.lsaa{letter-spacing:0.004802pt;}
.ls77{letter-spacing:0.005130pt;}
.ls50{letter-spacing:0.005344pt;}
.ls72{letter-spacing:0.009216pt;}
.ls28{letter-spacing:0.009600pt;}
.ls1b{letter-spacing:0.010688pt;}
.ls79{letter-spacing:0.011244pt;}
.ls78{letter-spacing:0.012534pt;}
.ls5a{letter-spacing:0.014400pt;}
.ls56{letter-spacing:0.016032pt;}
.ls6e{letter-spacing:0.018432pt;}
.ls74{letter-spacing:0.020521pt;}
.ls1d{letter-spacing:0.021376pt;}
.ls70{letter-spacing:0.023040pt;}
.ls6a{letter-spacing:0.025651pt;}
.ls26{letter-spacing:0.026720pt;}
.ls66{letter-spacing:0.028600pt;}
.ls17{letter-spacing:0.029792pt;}
.ls48{letter-spacing:0.032064pt;}
.ls58{letter-spacing:0.033600pt;}
.ls6f{letter-spacing:0.035912pt;}
.ls71{letter-spacing:0.036864pt;}
.ls1a{letter-spacing:0.037408pt;}
.ls5c{letter-spacing:0.038400pt;}
.ls95{letter-spacing:0.041042pt;}
.ls29{letter-spacing:0.041600pt;}
.ls27{letter-spacing:0.042752pt;}
.ls73{letter-spacing:0.046080pt;}
.ls76{letter-spacing:0.046172pt;}
.ls55{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.048096pt;}
.ls25{letter-spacing:0.053440pt;}
.ls75{letter-spacing:0.056433pt;}
.ls21{letter-spacing:0.058784pt;}
.ls59{letter-spacing:0.062400pt;}
.ls1e{letter-spacing:0.064128pt;}
.ls6c{letter-spacing:0.064512pt;}
.ls20{letter-spacing:0.069472pt;}
.ls24{letter-spacing:0.074816pt;}
.ls6d{letter-spacing:0.078336pt;}
.ls1f{letter-spacing:0.080160pt;}
.ls81{letter-spacing:0.087214pt;}
.ls23{letter-spacing:0.112224pt;}
.ls57{letter-spacing:0.122912pt;}
.ls4e{letter-spacing:0.128256pt;}
.ls2a{letter-spacing:0.131200pt;}
.ls80{letter-spacing:0.138516pt;}
.ls82{letter-spacing:0.143647pt;}
.ls2b{letter-spacing:0.144288pt;}
.ls68{letter-spacing:0.147087pt;}
.ls54{letter-spacing:0.149632pt;}
.ls19{letter-spacing:0.153216pt;}
.ls7f{letter-spacing:0.153907pt;}
.ls67{letter-spacing:0.155259pt;}
.ls22{letter-spacing:0.160320pt;}
.ls18{letter-spacing:0.161728pt;}
.ls99{letter-spacing:0.179773pt;}
.ls31{letter-spacing:0.469867pt;}
.ls13{letter-spacing:0.482502pt;}
.ls12{letter-spacing:0.487835pt;}
.ls10{letter-spacing:0.502400pt;}
.ls11{letter-spacing:0.507733pt;}
.lsb{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls2f{letter-spacing:2.656533pt;}
.lsf{letter-spacing:2.657067pt;}
.ls8{letter-spacing:3.120533pt;}
.lse{letter-spacing:3.158400pt;}
.ls2c{letter-spacing:3.163733pt;}
.ls5{letter-spacing:9.298933pt;}
.ls64{letter-spacing:10.623733pt;}
.ls9{letter-spacing:10.626533pt;}
.ls65{letter-spacing:10.629067pt;}
.lsa5{letter-spacing:11.701943pt;}
.ls9d{letter-spacing:11.954133pt;}
.ls7a{letter-spacing:11.956267pt;}
.lsa2{letter-spacing:11.959467pt;}
.ls9e{letter-spacing:12.088337pt;}
.lsab{letter-spacing:12.114975pt;}
.lsb8{letter-spacing:12.126433pt;}
.lsa3{letter-spacing:12.139555pt;}
.lsaf{letter-spacing:12.348068pt;}
.lsa4{letter-spacing:12.374212pt;}
.ls32{letter-spacing:12.528078pt;}
.ls2d{letter-spacing:12.533411pt;}
.lsad{letter-spacing:12.818656pt;}
.ls4f{letter-spacing:13.199680pt;}
.ls2{letter-spacing:13.283733pt;}
.ls5d{letter-spacing:13.389734pt;}
.ls33{letter-spacing:13.923096pt;}
.lsa6{letter-spacing:14.823467pt;}
.lsb7{letter-spacing:15.016076pt;}
.lsc{letter-spacing:15.422416pt;}
.ls16{letter-spacing:15.937067pt;}
.ls14{letter-spacing:15.942400pt;}
.lsae{letter-spacing:16.039571pt;}
.ls9b{letter-spacing:17.785814pt;}
.lsd{letter-spacing:20.572742pt;}
.ls7{letter-spacing:25.292137pt;}
.ls6b{letter-spacing:206.206894pt;}
.ls69{letter-spacing:219.109601pt;}
.ws0{word-spacing:-91.094364pt;}
.ws6c{word-spacing:-42.077867pt;}
.ws9b{word-spacing:-32.000000pt;}
.wse6{word-spacing:-13.520320pt;}
.ws9f{word-spacing:-13.488256pt;}
.wse7{word-spacing:-13.413440pt;}
.ws9d{word-spacing:-13.360000pt;}
.ws9e{word-spacing:-13.354656pt;}
.ws9c{word-spacing:-13.322592pt;}
.wse8{word-spacing:-13.306560pt;}
.ws6{word-spacing:-13.283467pt;}
.ws13c{word-spacing:-12.851251pt;}
.ws13e{word-spacing:-12.825600pt;}
.ws13b{word-spacing:-12.722995pt;}
.wsa5{word-spacing:-11.955200pt;}
.ws13d{word-spacing:-11.520000pt;}
.ws99{word-spacing:-10.801728pt;}
.ws46{word-spacing:-10.626800pt;}
.ws13a{word-spacing:-10.369659pt;}
.ws10{word-spacing:-9.298400pt;}
.ws142{word-spacing:-9.139845pt;}
.ws140{word-spacing:-9.107159pt;}
.ws9a{word-spacing:-8.000000pt;}
.ws5c{word-spacing:-3.666237pt;}
.ws16c{word-spacing:-2.949888pt;}
.ws1a4{word-spacing:-2.869229pt;}
.ws1f5{word-spacing:-2.677965pt;}
.ws172{word-spacing:-2.672855pt;}
.ws15d{word-spacing:-2.626683pt;}
.ws127{word-spacing:-2.603559pt;}
.ws72{word-spacing:-2.550426pt;}
.ws8b{word-spacing:-2.391024pt;}
.ws10b{word-spacing:-2.383424pt;}
.ws1f{word-spacing:-2.343219pt;}
.ws74{word-spacing:-2.178489pt;}
.ws175{word-spacing:-2.129050pt;}
.ws75{word-spacing:-2.125355pt;}
.wsfd{word-spacing:-2.074477pt;}
.ws3e{word-spacing:-2.072221pt;}
.ws15e{word-spacing:-2.011054pt;}
.ws9{word-spacing:-1.696326pt;}
.ws90{word-spacing:-1.647150pt;}
.ws3f{word-spacing:-1.594016pt;}
.ws121{word-spacing:-1.474944pt;}
.ws19f{word-spacing:-1.434614pt;}
.ws122{word-spacing:-1.410816pt;}
.wsa1{word-spacing:-1.381481pt;}
.ws26{word-spacing:-1.243341pt;}
.wsb{word-spacing:-1.190195pt;}
.ws8{word-spacing:-1.175671pt;}
.wsf8{word-spacing:-1.168945pt;}
.ws197{word-spacing:-1.009543pt;}
.ws1bf{word-spacing:-1.004237pt;}
.ws27{word-spacing:-0.956416pt;}
.ws4e{word-spacing:-0.903276pt;}
.ws185{word-spacing:-0.882401pt;}
.ws17d{word-spacing:-0.872141pt;}
.ws50{word-spacing:-0.850142pt;}
.ws5d{word-spacing:-0.797008pt;}
.ws59{word-spacing:-0.690740pt;}
.ws5b{word-spacing:-0.637606pt;}
.wsd8{word-spacing:-0.587840pt;}
.wsdb{word-spacing:-0.582496pt;}
.ws10a{word-spacing:-0.577152pt;}
.ws145{word-spacing:-0.531339pt;}
.ws1bb{word-spacing:-0.526029pt;}
.ws109{word-spacing:-0.507680pt;}
.ws147{word-spacing:-0.507130pt;}
.ws1ff{word-spacing:-0.478208pt;}
.ws67{word-spacing:-0.425071pt;}
.wse2{word-spacing:-0.400800pt;}
.ws1dd{word-spacing:-0.382566pt;}
.ws71{word-spacing:-0.371937pt;}
.ws155{word-spacing:-0.359117pt;}
.wsd5{word-spacing:-0.352704pt;}
.wscf{word-spacing:-0.320640pt;}
.ws3b{word-spacing:-0.318803pt;}
.ws1f8{word-spacing:-0.286925pt;}
.wsde{word-spacing:-0.283232pt;}
.wsd9{word-spacing:-0.272544pt;}
.ws4d{word-spacing:-0.265669pt;}
.ws10e{word-spacing:-0.261856pt;}
.wsad{word-spacing:-0.248574pt;}
.ws12c{word-spacing:-0.244527pt;}
.ws1de{word-spacing:-0.239104pt;}
.wsb1{word-spacing:-0.234080pt;}
.ws152{word-spacing:-0.224717pt;}
.ws11b{word-spacing:-0.224448pt;}
.wsda{word-spacing:-0.219104pt;}
.ws6f{word-spacing:-0.212535pt;}
.ws16b{word-spacing:-0.200079pt;}
.ws10f{word-spacing:-0.197728pt;}
.ws20{word-spacing:-0.191283pt;}
.ws192{word-spacing:-0.184151pt;}
.wsdc{word-spacing:-0.171008pt;}
.ws7d{word-spacing:-0.170069pt;}
.ws10d{word-spacing:-0.160320pt;}
.ws3a{word-spacing:-0.159402pt;}
.ws10c{word-spacing:-0.144288pt;}
.ws1bd{word-spacing:-0.143462pt;}
.wscc{word-spacing:-0.117568pt;}
.ws42{word-spacing:-0.106268pt;}
.wsec{word-spacing:-0.105041pt;}
.wse9{word-spacing:-0.103251pt;}
.ws143{word-spacing:-0.095642pt;}
.ws1aa{word-spacing:-0.093525pt;}
.wse5{word-spacing:-0.069472pt;}
.wsb0{word-spacing:-0.068096pt;}
.ws157{word-spacing:-0.066693pt;}
.ws151{word-spacing:-0.065372pt;}
.wse1{word-spacing:-0.064128pt;}
.ws154{word-spacing:-0.061563pt;}
.ws5{word-spacing:-0.053134pt;}
.ws153{word-spacing:-0.051302pt;}
.ws1b4{word-spacing:-0.047821pt;}
.ws47{word-spacing:-0.042507pt;}
.wse3{word-spacing:-0.037408pt;}
.ws11{word-spacing:-0.037194pt;}
.ws204{word-spacing:-0.025609pt;}
.ws1e8{word-spacing:-0.022635pt;}
.ws6a{word-spacing:-0.016215pt;}
.ws156{word-spacing:-0.010260pt;}
.ws1e4{word-spacing:-0.005726pt;}
.wsef{word-spacing:-0.003814pt;}
.ws3{word-spacing:-0.002569pt;}
.wsd{word-spacing:-0.000498pt;}
.ws1{word-spacing:0.000000pt;}
.ws12f{word-spacing:0.001519pt;}
.wsd6{word-spacing:0.005344pt;}
.ws208{word-spacing:0.025911pt;}
.wsd7{word-spacing:0.026720pt;}
.ws11d{word-spacing:0.042752pt;}
.ws1b2{word-spacing:0.047821pt;}
.ws66{word-spacing:0.053134pt;}
.wsc8{word-spacing:0.058784pt;}
.ws189{word-spacing:0.068744pt;}
.ws159{word-spacing:0.073728pt;}
.ws214{word-spacing:0.075502pt;}
.ws106{word-spacing:0.080160pt;}
.ws1c8{word-spacing:0.086361pt;}
.ws158{word-spacing:0.087552pt;}
.ws108{word-spacing:0.090848pt;}
.ws2e{word-spacing:0.095642pt;}
.ws115{word-spacing:0.096000pt;}
.ws16a{word-spacing:0.105984pt;}
.ws40{word-spacing:0.106268pt;}
.ws1c6{word-spacing:0.108039pt;}
.ws107{word-spacing:0.110400pt;}
.ws32{word-spacing:0.112217pt;}
.ws119{word-spacing:0.120000pt;}
.ws113{word-spacing:0.124800pt;}
.ws15b{word-spacing:0.133632pt;}
.ws30{word-spacing:0.143462pt;}
.ws116{word-spacing:0.144000pt;}
.wse0{word-spacing:0.148800pt;}
.ws15c{word-spacing:0.152064pt;}
.ws117{word-spacing:0.153600pt;}
.wscd{word-spacing:0.158400pt;}
.ws162{word-spacing:0.159037pt;}
.ws38{word-spacing:0.159402pt;}
.ws11c{word-spacing:0.160320pt;}
.ws15a{word-spacing:0.161280pt;}
.wsdf{word-spacing:0.163200pt;}
.ws171{word-spacing:0.164168pt;}
.ws131{word-spacing:0.170029pt;}
.ws118{word-spacing:0.172800pt;}
.wse4{word-spacing:0.181696pt;}
.wsce{word-spacing:0.182400pt;}
.ws13{word-spacing:0.185968pt;}
.ws1d3{word-spacing:0.191283pt;}
.wsd4{word-spacing:0.192384pt;}
.ws1d{word-spacing:0.212536pt;}
.ws23{word-spacing:0.233611pt;}
.ws21{word-spacing:0.239104pt;}
.ws141{word-spacing:0.253317pt;}
.ws1ec{word-spacing:0.260132pt;}
.ws15{word-spacing:0.260355pt;}
.ws4b{word-spacing:0.265669pt;}
.ws80{word-spacing:0.273120pt;}
.ws81{word-spacing:0.285891pt;}
.ws1dc{word-spacing:0.286800pt;}
.ws1b3{word-spacing:0.286925pt;}
.ws1f2{word-spacing:0.301577pt;}
.ws14f{word-spacing:0.318803pt;}
.ws1f1{word-spacing:0.334746pt;}
.wsc9{word-spacing:0.336672pt;}
.wsd3{word-spacing:0.342016pt;}
.ws114{word-spacing:0.360000pt;}
.wsbb{word-spacing:0.363392pt;}
.ws56{word-spacing:0.371937pt;}
.ws20c{word-spacing:0.382566pt;}
.ws13f{word-spacing:0.416748pt;}
.ws120{word-spacing:0.416832pt;}
.ws8a{word-spacing:0.425071pt;}
.ws1d9{word-spacing:0.430387pt;}
.wsba{word-spacing:0.448896pt;}
.ws176{word-spacing:0.466852pt;}
.ws7b{word-spacing:0.478205pt;}
.ws207{word-spacing:0.526029pt;}
.ws39{word-spacing:0.531339pt;}
.ws1ce{word-spacing:0.573850pt;}
.ws1b1{word-spacing:0.584473pt;}
.wsa6{word-spacing:0.594133pt;}
.wsf6{word-spacing:0.594765pt;}
.wsa9{word-spacing:0.597333pt;}
.wsa8{word-spacing:0.598400pt;}
.wsaa{word-spacing:0.621372pt;}
.ws202{word-spacing:0.621670pt;}
.ws37{word-spacing:0.637606pt;}
.wsd0{word-spacing:0.651968pt;}
.wsaf{word-spacing:0.661867pt;}
.ws1ef{word-spacing:0.669491pt;}
.ws55{word-spacing:0.690740pt;}
.ws68{word-spacing:0.743874pt;}
.ws168{word-spacing:0.778752pt;}
.ws169{word-spacing:0.787968pt;}
.ws76{word-spacing:0.850142pt;}
.wsfa{word-spacing:0.884885pt;}
.ws4c{word-spacing:0.956410pt;}
.ws184{word-spacing:0.995267pt;}
.ws181{word-spacing:1.020918pt;}
.ws183{word-spacing:1.026048pt;}
.wsbe{word-spacing:1.031392pt;}
.ws3d{word-spacing:1.062677pt;}
.ws149{word-spacing:1.115811pt;}
.wsdd{word-spacing:1.164992pt;}
.ws1f3{word-spacing:1.195520pt;}
.ws61{word-spacing:1.215799pt;}
.ws5f{word-spacing:1.222079pt;}
.ws182{word-spacing:1.256909pt;}
.ws180{word-spacing:1.262039pt;}
.ws15f{word-spacing:1.267169pt;}
.ws52{word-spacing:1.275213pt;}
.ws103{word-spacing:1.362720pt;}
.ws102{word-spacing:1.384096pt;}
.ws173{word-spacing:1.395425pt;}
.ws174{word-spacing:1.405686pt;}
.ws1a0{word-spacing:1.434614pt;}
.ws1b7{word-spacing:1.434624pt;}
.ws1fb{word-spacing:1.482445pt;}
.ws12d{word-spacing:1.487748pt;}
.ws211{word-spacing:1.530266pt;}
.wsff{word-spacing:1.540882pt;}
.wsc1{word-spacing:1.629920pt;}
.ws48{word-spacing:1.647150pt;}
.ws53{word-spacing:1.700284pt;}
.wsd2{word-spacing:1.704736pt;}
.wsd1{word-spacing:1.710080pt;}
.ws79{word-spacing:1.753418pt;}
.ws14{word-spacing:1.785293pt;}
.ws14d{word-spacing:1.806551pt;}
.ws1af{word-spacing:1.859685pt;}
.ws1ad{word-spacing:1.874623pt;}
.ws1a5{word-spacing:1.912819pt;}
.ws105{word-spacing:1.939872pt;}
.ws110{word-spacing:1.945216pt;}
.ws2f{word-spacing:1.960653pt;}
.ws100{word-spacing:1.987968pt;}
.ws177{word-spacing:2.000794pt;}
.wsb6{word-spacing:2.014688pt;}
.ws104{word-spacing:2.041408pt;}
.ws101{word-spacing:2.057440pt;}
.wsb5{word-spacing:2.062784pt;}
.ws196{word-spacing:2.072221pt;}
.ws1e5{word-spacing:2.104115pt;}
.ws111{word-spacing:2.110880pt;}
.ws7a{word-spacing:2.125355pt;}
.ws51{word-spacing:2.231622pt;}
.ws20a{word-spacing:2.247578pt;}
.ws165{word-spacing:2.267136pt;}
.ws163{word-spacing:2.280960pt;}
.ws18d{word-spacing:2.284756pt;}
.ws166{word-spacing:2.294784pt;}
.ws164{word-spacing:2.304000pt;}
.ws167{word-spacing:2.308608pt;}
.wsa0{word-spacing:2.337890pt;}
.ws18b{word-spacing:2.444158pt;}
.ws98{word-spacing:2.497292pt;}
.ws1e{word-spacing:2.550432pt;}
.wsf4{word-spacing:2.576996pt;}
.wsf2{word-spacing:2.582323pt;}
.ws7e{word-spacing:2.603559pt;}
.ws14b{word-spacing:2.622335pt;}
.ws1cb{word-spacing:2.630144pt;}
.ws125{word-spacing:2.645280pt;}
.ws194{word-spacing:2.656693pt;}
.ws124{word-spacing:2.666656pt;}
.ws1a8{word-spacing:2.709827pt;}
.ws123{word-spacing:2.730784pt;}
.wsc3{word-spacing:2.736128pt;}
.wsc2{word-spacing:2.773536pt;}
.ws150{word-spacing:2.816095pt;}
.ws2d{word-spacing:2.821427pt;}
.ws34{word-spacing:2.861926pt;}
.ws1e2{word-spacing:2.866799pt;}
.ws1d6{word-spacing:2.867319pt;}
.ws1c3{word-spacing:2.868898pt;}
.ws3c{word-spacing:2.869229pt;}
.wsf1{word-spacing:2.869248pt;}
.ws54{word-spacing:2.922363pt;}
.wsc0{word-spacing:2.923168pt;}
.ws2c{word-spacing:2.964890pt;}
.ws2a{word-spacing:2.979610pt;}
.wsbf{word-spacing:3.003328pt;}
.wsb4{word-spacing:3.024704pt;}
.ws41{word-spacing:3.028630pt;}
.wsb3{word-spacing:3.040736pt;}
.wsb2{word-spacing:3.051424pt;}
.ws87{word-spacing:3.081764pt;}
.ws4f{word-spacing:3.134898pt;}
.ws17f{word-spacing:3.185879pt;}
.ws36{word-spacing:3.188032pt;}
.ws17e{word-spacing:3.237181pt;}
.ws78{word-spacing:3.241166pt;}
.ws28{word-spacing:3.251814pt;}
.ws25{word-spacing:3.299635pt;}
.ws19b{word-spacing:3.347434pt;}
.ws199{word-spacing:3.354206pt;}
.ws82{word-spacing:3.373604pt;}
.ws84{word-spacing:3.400567pt;}
.ws178{word-spacing:3.432131pt;}
.ws6e{word-spacing:3.506835pt;}
.ws6d{word-spacing:3.559969pt;}
.ws179{word-spacing:3.601428pt;}
.ws195{word-spacing:3.666237pt;}
.ws1d0{word-spacing:3.682202pt;}
.ws8c{word-spacing:3.719371pt;}
.ws14c{word-spacing:3.772505pt;}
.ws187{word-spacing:3.825638pt;}
.ws1b8{word-spacing:3.825664pt;}
.ws19c{word-spacing:3.871853pt;}
.ws19e{word-spacing:3.878772pt;}
.ws1b9{word-spacing:3.969126pt;}
.ws186{word-spacing:3.985040pt;}
.ws5e{word-spacing:4.038174pt;}
.ws198{word-spacing:4.144442pt;}
.wsc5{word-spacing:4.237792pt;}
.ws136{word-spacing:4.303843pt;}
.wsc4{word-spacing:4.323296pt;}
.ws1ab{word-spacing:4.356977pt;}
.ws97{word-spacing:4.463245pt;}
.ws96{word-spacing:4.516379pt;}
.ws65{word-spacing:4.622646pt;}
.wscb{word-spacing:4.633248pt;}
.wsca{word-spacing:4.654624pt;}
.ws73{word-spacing:4.675780pt;}
.ws160{word-spacing:4.689039pt;}
.ws138{word-spacing:4.728914pt;}
.ws161{word-spacing:5.078938pt;}
.ws58{word-spacing:5.153985pt;}
.ws57{word-spacing:5.207119pt;}
.ws16f{word-spacing:5.279017pt;}
.ws89{word-spacing:5.313387pt;}
.ws16e{word-spacing:5.320059pt;}
.ws170{word-spacing:5.325189pt;}
.ws16d{word-spacing:5.335450pt;}
.ws1b{word-spacing:5.393072pt;}
.ws11f{word-spacing:5.456224pt;}
.ws1c{word-spacing:5.467459pt;}
.ws12a{word-spacing:5.472788pt;}
.ws128{word-spacing:5.498152pt;}
.wsc6{word-spacing:5.525696pt;}
.wsc7{word-spacing:5.547072pt;}
.ws70{word-spacing:5.579056pt;}
.ws11e{word-spacing:5.627232pt;}
.ws88{word-spacing:5.632190pt;}
.ws17a{word-spacing:5.668915pt;}
.ws17c{word-spacing:5.694566pt;}
.ws17b{word-spacing:5.725348pt;}
.ws134{word-spacing:5.738458pt;}
.ws205{word-spacing:5.834138pt;}
.wsac{word-spacing:5.897859pt;}
.ws1d5{word-spacing:5.929779pt;}
.ws18e{word-spacing:6.216662pt;}
.ws144{word-spacing:6.312346pt;}
.ws1c5{word-spacing:6.503629pt;}
.ws1b5{word-spacing:6.742733pt;}
.ws212{word-spacing:6.790554pt;}
.ws44{word-spacing:6.801135pt;}
.wsb8{word-spacing:6.834976pt;}
.ws43{word-spacing:6.854269pt;}
.ws137{word-spacing:7.066804pt;}
.wsb7{word-spacing:7.123552pt;}
.wsb9{word-spacing:7.214400pt;}
.ws94{word-spacing:7.279340pt;}
.ws19{word-spacing:7.699075pt;}
.wsab{word-spacing:7.810678pt;}
.ws1b6{word-spacing:7.938253pt;}
.wsbc{word-spacing:9.079456pt;}
.wsc{word-spacing:9.257584pt;}
.wse{word-spacing:9.263172pt;}
.wsf{word-spacing:9.264422pt;}
.wsbd{word-spacing:9.378720pt;}
.ws112{word-spacing:10.196352pt;}
.ws86{word-spacing:10.361104pt;}
.ws45{word-spacing:10.581591pt;}
.wsfc{word-spacing:11.153969pt;}
.wsfe{word-spacing:11.158112pt;}
.ws1ba{word-spacing:11.343267pt;}
.ws200{word-spacing:11.429171pt;}
.ws91{word-spacing:11.583183pt;}
.ws1cf{word-spacing:11.716096pt;}
.ws1e1{word-spacing:11.823421pt;}
.ws1e9{word-spacing:11.859558pt;}
.ws1d8{word-spacing:11.895264pt;}
.ws1c2{word-spacing:11.897446pt;}
.ws1bc{word-spacing:11.897685pt;}
.ws1d4{word-spacing:11.898155pt;}
.ws1f9{word-spacing:11.899375pt;}
.ws1df{word-spacing:11.900041pt;}
.ws1f6{word-spacing:11.900919pt;}
.ws12e{word-spacing:11.901414pt;}
.ws1f4{word-spacing:11.902694pt;}
.ws35{word-spacing:11.902925pt;}
.wsf0{word-spacing:11.903198pt;}
.ws1e0{word-spacing:11.903488pt;}
.ws1d7{word-spacing:11.903845pt;}
.ws210{word-spacing:11.903932pt;}
.ws20e{word-spacing:11.904094pt;}
.ws1ca{word-spacing:11.904640pt;}
.ws1fc{word-spacing:11.905033pt;}
.ws201{word-spacing:11.905997pt;}
.wsee{word-spacing:11.906748pt;}
.wsf7{word-spacing:11.907379pt;}
.ws1f0{word-spacing:11.908028pt;}
.ws206{word-spacing:11.909427pt;}
.ws20b{word-spacing:11.910579pt;}
.ws215{word-spacing:11.955200pt;}
.ws213{word-spacing:11.961253pt;}
.ws31{word-spacing:11.994065pt;}
.ws33{word-spacing:12.003021pt;}
.ws1c7{word-spacing:12.004750pt;}
.ws1e7{word-spacing:12.050842pt;}
.ws1ed{word-spacing:12.060686pt;}
.ws1eb{word-spacing:12.074770pt;}
.ws1d2{word-spacing:12.078953pt;}
.ws22{word-spacing:12.136628pt;}
.ws24{word-spacing:12.146483pt;}
.ws1db{word-spacing:12.184085pt;}
.ws1da{word-spacing:12.194304pt;}
.ws20d{word-spacing:12.282524pt;}
.ws1e3{word-spacing:12.289946pt;}
.ws5a{word-spacing:12.539593pt;}
.ws146{word-spacing:12.698994pt;}
.ws148{word-spacing:12.720868pt;}
.ws12b{word-spacing:12.964663pt;}
.wsae{word-spacing:12.999215pt;}
.ws191{word-spacing:13.017797pt;}
.ws193{word-spacing:13.023376pt;}
.ws7c{word-spacing:13.039950pt;}
.ws133{word-spacing:13.068761pt;}
.ws64{word-spacing:13.070931pt;}
.ws139{word-spacing:13.098503pt;}
.wsed{word-spacing:13.107362pt;}
.ws1a9{word-spacing:13.112123pt;}
.wseb{word-spacing:13.113738pt;}
.wsea{word-spacing:13.118865pt;}
.ws8f{word-spacing:13.124065pt;}
.ws135{word-spacing:13.186492pt;}
.ws69{word-spacing:13.218428pt;}
.ws4a{word-spacing:13.227035pt;}
.ws6b{word-spacing:13.230333pt;}
.ws8e{word-spacing:13.269365pt;}
.ws18a{word-spacing:13.281215pt;}
.ws188{word-spacing:13.283467pt;}
.ws1a7{word-spacing:13.285815pt;}
.ws132{word-spacing:13.377701pt;}
.ws92{word-spacing:13.389734pt;}
.ws93{word-spacing:13.442868pt;}
.ws1a3{word-spacing:13.493569pt;}
.ws7f{word-spacing:13.496002pt;}
.ws14e{word-spacing:13.549136pt;}
.ws190{word-spacing:13.598181pt;}
.ws12{word-spacing:13.761632pt;}
.wsa{word-spacing:13.763148pt;}
.ws1b0{word-spacing:13.814805pt;}
.ws1e6{word-spacing:14.011494pt;}
.wsf9{word-spacing:14.094332pt;}
.ws77{word-spacing:14.098516pt;}
.wsfb{word-spacing:14.133609pt;}
.ws1d1{word-spacing:14.298419pt;}
.ws16{word-spacing:14.348669pt;}
.ws17{word-spacing:14.356730pt;}
.ws63{word-spacing:14.399278pt;}
.ws60{word-spacing:14.432964pt;}
.wsf5{word-spacing:14.441882pt;}
.ws62{word-spacing:14.452412pt;}
.wsf3{word-spacing:14.482490pt;}
.ws1cc{word-spacing:14.489702pt;}
.ws1a1{word-spacing:14.664947pt;}
.ws1c4{word-spacing:14.680986pt;}
.ws1fe{word-spacing:14.728806pt;}
.ws1c0{word-spacing:14.768614pt;}
.ws1be{word-spacing:14.769502pt;}
.ws209{word-spacing:14.769579pt;}
.ws20f{word-spacing:14.771089pt;}
.ws1ee{word-spacing:14.773743pt;}
.ws1c9{word-spacing:14.773828pt;}
.ws1c1{word-spacing:14.773948pt;}
.ws1f7{word-spacing:14.776337pt;}
.ws1cd{word-spacing:14.776627pt;}
.ws1ea{word-spacing:14.777549pt;}
.ws2b{word-spacing:14.872269pt;}
.ws49{word-spacing:14.877483pt;}
.ws29{word-spacing:14.877774pt;}
.ws1fd{word-spacing:14.920090pt;}
.ws1fa{word-spacing:14.967910pt;}
.ws1ae{word-spacing:15.090018pt;}
.ws1a6{word-spacing:15.143152pt;}
.ws85{word-spacing:15.458051pt;}
.ws18c{word-spacing:15.674491pt;}
.ws1a2{word-spacing:15.727625pt;}
.ws18{word-spacing:15.732893pt;}
.ws14a{word-spacing:15.833892pt;}
.ws19a{word-spacing:16.568530pt;}
.ws83{word-spacing:16.577766pt;}
.ws18f{word-spacing:16.778506pt;}
.ws8d{word-spacing:16.949703pt;}
.ws19d{word-spacing:17.055971pt;}
.ws203{word-spacing:17.119846pt;}
.ws1ac{word-spacing:17.640444pt;}
.ws129{word-spacing:18.703121pt;}
.ws95{word-spacing:20.456539pt;}
.ws4{word-spacing:23.797385pt;}
.ws2{word-spacing:23.803819pt;}
.ws1a{word-spacing:24.399002pt;}
.ws7{word-spacing:48.378978pt;}
.wsa7{word-spacing:53.128909pt;}
.ws126{word-spacing:73.867989pt;}
.wsa3{word-spacing:130.974148pt;}
.ws130{word-spacing:133.083989pt;}
.wsa4{word-spacing:155.549833pt;}
.wsa2{word-spacing:200.724898pt;}
.ws11a{word-spacing:811.668096pt;}
._22{margin-left:-811.518464pt;}
._0{margin-left:-10.616218pt;}
._16{margin-left:-7.727515pt;}
._d{margin-left:-6.073242pt;}
._9{margin-left:-4.675792pt;}
._4{margin-left:-3.421811pt;}
._b{margin-left:-2.337896pt;}
._2{margin-left:-1.175671pt;}
._3{width:0.969929pt;}
._6{width:2.045648pt;}
._64{width:3.187197pt;}
._63{width:5.037896pt;}
._19{width:9.995893pt;}
._7{width:11.059466pt;}
._5{width:12.193749pt;}
._a{width:13.177232pt;}
._11{width:14.087207pt;}
._e{width:15.856063pt;}
._c{width:16.928563pt;}
._15{width:18.756255pt;}
._10{width:20.323840pt;}
._12{width:21.891153pt;}
._18{width:23.598163pt;}
._f{width:24.861493pt;}
._6a{width:26.620067pt;}
._17{width:27.682745pt;}
._8{width:29.011008pt;}
._4f{width:33.676149pt;}
._68{width:46.434964pt;}
._1e{width:55.198176pt;}
._1f{width:56.881536pt;}
._1{width:61.653727pt;}
._1c{width:64.787776pt;}
._69{width:73.880248pt;}
._20{width:76.723808pt;}
._6c{width:78.904320pt;}
._1d{width:86.208064pt;}
._67{width:93.238641pt;}
._5f{width:119.906321pt;}
._1b{width:122.000736pt;}
._58{width:124.492186pt;}
._57{width:125.405201pt;}
._21{width:126.820762pt;}
._5d{width:128.232363pt;}
._56{width:130.043921pt;}
._52{width:131.272721pt;}
._5c{width:134.037521pt;}
._62{width:136.119402pt;}
._5a{width:138.623386pt;}
._53{width:139.536401pt;}
._60{width:140.822033pt;}
._66{width:147.649591pt;}
._54{width:155.189316pt;}
._65{width:159.629039pt;}
._51{width:165.135852pt;}
._59{width:189.209945pt;}
._61{width:190.577661pt;}
._5e{width:201.551630pt;}
._5b{width:203.618270pt;}
._55{width:204.955204pt;}
._37{width:213.519872pt;}
._35{width:224.136090pt;}
._2d{width:225.475072pt;}
._2a{width:226.766234pt;}
._31{width:240.060416pt;}
._33{width:250.533171pt;}
._42{width:252.685107pt;}
._4a{width:253.928448pt;}
._3c{width:264.640307pt;}
._4d{width:265.979290pt;}
._49{width:267.222630pt;}
._3e{width:268.513792pt;}
._48{width:270.426624pt;}
._41{width:271.861248pt;}
._3b{width:273.152410pt;}
._4c{width:275.734733pt;}
._3f{width:276.643328pt;}
._47{width:277.743206pt;}
._40{width:279.130010pt;}
._3a{width:280.373350pt;}
._45{width:281.807974pt;}
._29{width:284.342477pt;}
._44{width:286.446592pt;}
._34{width:293.715354pt;}
._2c{width:294.958694pt;}
._39{width:301.797069pt;}
._30{width:308.252877pt;}
._43{width:313.752269pt;}
._4e{width:315.234714pt;}
._2f{width:320.877568pt;}
._28{width:322.168730pt;}
._3d{width:325.707469pt;}
._4b{width:326.902989pt;}
._46{width:328.289792pt;}
._36{width:333.406618pt;}
._2e{width:334.745600pt;}
._38{width:340.914483pt;}
._2b{width:346.605158pt;}
._32{width:348.039782pt;}
._13{width:640.252997pt;}
._24{width:702.260375pt;}
._23{width:729.001760pt;}
._27{width:739.642419pt;}
._26{width:763.956173pt;}
._25{width:845.471744pt;}
._50{width:1802.010587pt;}
._1a{width:1877.134775pt;}
._6b{width:2220.106870pt;}
._14{width:2241.360204pt;}
.fs14{font-size:31.334400pt;}
.fsf{font-size:32.000000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs8{font-size:38.755733pt;}
.fsb{font-size:40.381867pt;}
.fs11{font-size:40.857600pt;}
.fs3{font-size:41.988267pt;}
.fs9{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs13{font-size:46.080000pt;}
.fs7{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fs12{font-size:51.302400pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs15{font-size:56.217600pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:117.087872pt;}
.y10c{bottom:-670.648933pt;}
.y124{bottom:-610.966613pt;}
.y123{bottom:-593.927269pt;}
.y122{bottom:-576.807765pt;}
.y121{bottom:-559.768421pt;}
.y120{bottom:-538.648933pt;}
.y11f{bottom:-504.088933pt;}
.yce{bottom:-488.423600pt;}
.y11e{bottom:-486.088933pt;}
.y11d{bottom:-467.288933pt;}
.y11c{bottom:-440.728133pt;}
.y11b{bottom:-425.208533pt;}
.yf2{bottom:-400.983528pt;}
.y11a{bottom:-393.848933pt;}
.y18c{bottom:-385.421696pt;}
.yf1{bottom:-382.983600pt;}
.y119{bottom:-373.847645pt;}
.yf0{bottom:-364.263600pt;}
.yed{bottom:-355.223600pt;}
.yec{bottom:-346.263600pt;}
.yee{bottom:-337.223467pt;}
.yef{bottom:-328.263600pt;}
.y1af{bottom:-323.822083pt;}
.y1ae{bottom:-307.387359pt;}
.yeb{bottom:-301.624000pt;}
.y1ad{bottom:-290.952635pt;}
.y12e{bottom:-290.140933pt;}
.yea{bottom:-286.183600pt;}
.y1ac{bottom:-274.594865pt;}
.y1ab{bottom:-258.160141pt;}
.ye9{bottom:-254.422448pt;}
.y1aa{bottom:-241.802371pt;}
.ye8{bottom:-237.383104pt;}
.y146{bottom:-230.458613pt;}
.y1a9{bottom:-225.367647pt;}
.ye7{bottom:-220.261712pt;}
.y145{bottom:-213.419269pt;}
.y1a8{bottom:-208.932923pt;}
.ye6{bottom:-203.142208pt;}
.y144{bottom:-196.299765pt;}
.y1a7{bottom:-192.575153pt;}
.ye5{bottom:-182.101544pt;}
.y143{bottom:-179.260421pt;}
.y1a6{bottom:-176.140429pt;}
.ye4{bottom:-160.901896pt;}
.y1a5{bottom:-159.705705pt;}
.y142{bottom:-158.140933pt;}
.y1a4{bottom:-143.270981pt;}
.y118{bottom:-141.287453pt;}
.ye3{bottom:-127.861280pt;}
.y1a3{bottom:-126.913211pt;}
.y117{bottom:-124.167949pt;}
.y141{bottom:-123.580933pt;}
.ye2{bottom:-110.821936pt;}
.y1a2{bottom:-110.554158pt;}
.y116{bottom:-107.048445pt;}
.y140{bottom:-105.580933pt;}
.ye1{bottom:-93.702432pt;}
.y1a1{bottom:-90.202496pt;}
.y115{bottom:-90.009101pt;}
.y13f{bottom:-86.780933pt;}
.ye0{bottom:-76.663088pt;}
.y114{bottom:-72.889597pt;}
.y13e{bottom:-60.220133pt;}
.y1a0{bottom:-58.945536pt;}
.ydf{bottom:-55.543600pt;}
.y113{bottom:-51.848933pt;}
.y13d{bottom:-44.700533pt;}
.y19f{bottom:-44.199936pt;}
.y19e{bottom:-29.377152pt;}
.yde{bottom:-22.823600pt;}
.y112{bottom:-19.048933pt;}
.y19d{bottom:-14.554368pt;}
.y13c{bottom:-13.340933pt;}
.ydd{bottom:-2.899824pt;}
.y0{bottom:0.000000pt;}
.y111{bottom:0.870571pt;}
.ya{bottom:3.044747pt;}
.y19c{bottom:4.568980pt;}
.y13b{bottom:6.660355pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.977453pt;}
.y1c0{bottom:15.935232pt;}
.y1b8{bottom:25.382380pt;}
.y4c{bottom:28.346667pt;}
.y1b9{bottom:53.491387pt;}
.y1dd{bottom:81.026667pt;}
.y1ba{bottom:81.523786pt;}
.y261{bottom:88.065333pt;}
.ybf{bottom:90.058667pt;}
.y188{bottom:90.224000pt;}
.y24{bottom:91.398667pt;}
.y297{bottom:92.050667pt;}
.y209{bottom:94.840000pt;}
.y1dc{bottom:97.764000pt;}
.y4b{bottom:103.270667pt;}
.y260{bottom:103.408000pt;}
.ybe{bottom:106.796000pt;}
.y187{bottom:106.961333pt;}
.y23{bottom:107.298667pt;}
.y296{bottom:107.393333pt;}
.y1bb{bottom:109.632794pt;}
.y1b3{bottom:110.245658pt;}
.y155{bottom:111.114667pt;}
.y208{bottom:111.577333pt;}
.y228{bottom:112.454667pt;}
.y1db{bottom:114.501333pt;}
.y25f{bottom:118.750667pt;}
.y4a{bottom:120.008000pt;}
.y1b6{bottom:120.383450pt;}
.y295{bottom:122.736000pt;}
.y22{bottom:123.200000pt;}
.ybd{bottom:123.533333pt;}
.y186{bottom:123.698667pt;}
.y154{bottom:127.852000pt;}
.y207{bottom:128.314667pt;}
.y1da{bottom:131.238667pt;}
.y25e{bottom:134.093333pt;}
.y227{bottom:136.046667pt;}
.y49{bottom:136.745333pt;}
.y1bc{bottom:137.665193pt;}
.y1b2{bottom:137.816366pt;}
.y294{bottom:138.078667pt;}
.y21{bottom:139.100000pt;}
.ybc{bottom:140.270667pt;}
.y185{bottom:140.436000pt;}
.y108{bottom:144.213333pt;}
.y153{bottom:144.589333pt;}
.y206{bottom:145.052000pt;}
.y80{bottom:145.833333pt;}
.y1b7{bottom:146.802995pt;}
.y1b5{bottom:146.956211pt;}
.y1d9{bottom:147.976000pt;}
.y25d{bottom:149.436000pt;}
.y226{bottom:151.668000pt;}
.y293{bottom:153.421333pt;}
.y48{bottom:153.482667pt;}
.y20{bottom:155.000000pt;}
.ybb{bottom:157.008000pt;}
.y184{bottom:157.173333pt;}
.y1b1{bottom:160.626143pt;}
.y107{bottom:160.950667pt;}
.y1b4{bottom:161.241050pt;}
.y152{bottom:161.326667pt;}
.y205{bottom:161.789333pt;}
.y7f{bottom:162.570667pt;}
.y1d8{bottom:164.713333pt;}
.y25c{bottom:164.778667pt;}
.y1bd{bottom:165.774200pt;}
.y225{bottom:167.289333pt;}
.y292{bottom:168.762667pt;}
.y47{bottom:170.220000pt;}
.y1f{bottom:170.901333pt;}
.yba{bottom:173.745333pt;}
.y183{bottom:173.910667pt;}
.y106{bottom:177.688000pt;}
.y151{bottom:178.064000pt;}
.y204{bottom:178.526667pt;}
.y7e{bottom:179.308000pt;}
.y25b{bottom:180.121333pt;}
.y1d7{bottom:181.450667pt;}
.y291{bottom:184.105333pt;}
.y1e{bottom:186.801333pt;}
.y46{bottom:186.957333pt;}
.yb9{bottom:190.481333pt;}
.y182{bottom:190.648000pt;}
.y224{bottom:190.880000pt;}
.y1be{bottom:193.806600pt;}
.y105{bottom:194.425333pt;}
.y150{bottom:194.801333pt;}
.y203{bottom:195.264000pt;}
.y25a{bottom:195.462667pt;}
.y7d{bottom:196.045333pt;}
.y1b0{bottom:196.107904pt;}
.y1d6{bottom:198.188000pt;}
.y290{bottom:199.448000pt;}
.y1d{bottom:202.701333pt;}
.y45{bottom:203.694667pt;}
.yb8{bottom:207.218667pt;}
.y181{bottom:207.385333pt;}
.y259{bottom:210.805333pt;}
.y14f{bottom:211.538667pt;}
.y202{bottom:212.001333pt;}
.y7c{bottom:212.782667pt;}
.y223{bottom:214.472000pt;}
.y28f{bottom:214.790667pt;}
.y1d5{bottom:214.925333pt;}
.y44{bottom:220.432000pt;}
.y1bf{bottom:221.915607pt;}
.yb7{bottom:223.956000pt;}
.y180{bottom:224.122667pt;}
.y258{bottom:226.148000pt;}
.y14e{bottom:228.276000pt;}
.y201{bottom:228.738667pt;}
.y7b{bottom:229.520000pt;}
.y222{bottom:230.093333pt;}
.y28e{bottom:230.133333pt;}
.y1d4{bottom:231.662667pt;}
.y104{bottom:235.712000pt;}
.y43{bottom:237.169333pt;}
.y110{bottom:237.593259pt;}
.y13a{bottom:239.220547pt;}
.yb5{bottom:240.693333pt;}
.y17f{bottom:240.860000pt;}
.y257{bottom:241.490667pt;}
.y1c1{bottom:244.568704pt;}
.y200{bottom:245.476000pt;}
.yb6{bottom:245.516000pt;}
.y7a{bottom:246.257333pt;}
.y1d3{bottom:248.400000pt;}
.ydc{bottom:248.940184pt;}
.y14d{bottom:248.998667pt;}
.y221{bottom:253.685333pt;}
.y42{bottom:253.906667pt;}
.y10f{bottom:254.712763pt;}
.y139{bottom:256.340051pt;}
.y256{bottom:256.833333pt;}
.yb4{bottom:257.430667pt;}
.y102{bottom:259.649333pt;}
.y28d{bottom:260.818667pt;}
.y1ff{bottom:262.213333pt;}
.y79{bottom:262.994667pt;}
.y1d2{bottom:265.137333pt;}
.ydb{bottom:265.980864pt;}
.y101{bottom:266.954667pt;}
.y220{bottom:269.306667pt;}
.y41{bottom:270.644000pt;}
.y17e{bottom:271.156000pt;}
.y10e{bottom:271.752107pt;}
.y255{bottom:272.176000pt;}
.y1c{bottom:273.154667pt;}
.y138{bottom:273.459555pt;}
.yb3{bottom:274.168000pt;}
.y103{bottom:274.260000pt;}
.y28c{bottom:276.161333pt;}
.y1fe{bottom:278.950667pt;}
.y78{bottom:279.732000pt;}
.y1d1{bottom:281.874667pt;}
.yda{bottom:283.100368pt;}
.y17d{bottom:283.776000pt;}
.y21f{bottom:284.928000pt;}
.y19b{bottom:286.655227pt;}
.y40{bottom:287.381333pt;}
.y254{bottom:287.518667pt;}
.yb2{bottom:288.478667pt;}
.y10d{bottom:288.871611pt;}
.y1b{bottom:289.054667pt;}
.y137{bottom:290.498899pt;}
.yb0{bottom:290.905333pt;}
.y28b{bottom:291.502667pt;}
.y14c{bottom:292.809333pt;}
.y1fd{bottom:295.688000pt;}
.yb1{bottom:295.728000pt;}
.y76{bottom:296.469333pt;}
.y1d0{bottom:298.612000pt;}
.yd9{bottom:300.219872pt;}
.y21e{bottom:300.549333pt;}
.y77{bottom:301.290667pt;}
.y17c{bottom:301.402667pt;}
.y253{bottom:302.861333pt;}
.y19a{bottom:303.014280pt;}
.y3f{bottom:304.118667pt;}
.y100{bottom:304.412000pt;}
.y1a{bottom:304.954667pt;}
.y28a{bottom:306.845333pt;}
.y136{bottom:307.618403pt;}
.yaf{bottom:307.642667pt;}
.y14b{bottom:310.344000pt;}
.y1fc{bottom:312.425333pt;}
.y75{bottom:313.205333pt;}
.y1cf{bottom:315.348000pt;}
.y21d{bottom:316.170667pt;}
.yd8{bottom:317.259216pt;}
.y252{bottom:318.202667pt;}
.y17b{bottom:318.937333pt;}
.y199{bottom:319.449004pt;}
.y19{bottom:320.856000pt;}
.y289{bottom:322.188000pt;}
.yae{bottom:324.380000pt;}
.y135{bottom:328.659067pt;}
.y1fb{bottom:329.162667pt;}
.y21c{bottom:331.792000pt;}
.y1ce{bottom:332.085333pt;}
.yff{bottom:332.605333pt;}
.y251{bottom:333.545333pt;}
.y74{bottom:333.928000pt;}
.y14a{bottom:334.280000pt;}
.yd7{bottom:334.378720pt;}
.y198{bottom:335.808056pt;}
.y17a{bottom:336.470667pt;}
.y10b{bottom:337.351587pt;}
.y288{bottom:337.530667pt;}
.y3e{bottom:337.593333pt;}
.yad{bottom:341.117333pt;}
.y1fa{bottom:345.900000pt;}
.y10a{bottom:346.071067pt;}
.y21b{bottom:347.413333pt;}
.y1cd{bottom:348.822667pt;}
.y250{bottom:348.888000pt;}
.yfe{bottom:349.342667pt;}
.yd6{bottom:351.498224pt;}
.y73{bottom:351.861333pt;}
.y197{bottom:352.242780pt;}
.y287{bottom:352.873333pt;}
.y179{bottom:354.005333pt;}
.y3d{bottom:354.330667pt;}
.y18{bottom:354.688000pt;}
.yac{bottom:357.854667pt;}
.y134{bottom:361.459067pt;}
.y1f9{bottom:362.637333pt;}
.yfd{bottom:363.653333pt;}
.y24f{bottom:364.230667pt;}
.y149{bottom:364.432000pt;}
.y1cc{bottom:365.560000pt;}
.yfc{bottom:366.080000pt;}
.y286{bottom:368.216000pt;}
.yd5{bottom:368.538904pt;}
.y196{bottom:368.677504pt;}
.y17{bottom:370.589333pt;}
.y3c{bottom:371.068000pt;}
.y178{bottom:371.540000pt;}
.yab{bottom:374.592000pt;}
.y21a{bottom:378.976000pt;}
.y1f8{bottom:379.374667pt;}
.y24e{bottom:379.573333pt;}
.y133{bottom:381.378571pt;}
.y148{bottom:381.528000pt;}
.y72{bottom:381.749333pt;}
.y1cb{bottom:382.297333pt;}
.yfb{bottom:382.817333pt;}
.y285{bottom:383.558667pt;}
.yd4{bottom:385.658408pt;}
.y16{bottom:386.489333pt;}
.y3b{bottom:387.805333pt;}
.y177{bottom:389.073333pt;}
.y24d{bottom:394.916000pt;}
.yaa{bottom:395.314667pt;}
.y219{bottom:395.713333pt;}
.y1f7{bottom:396.112000pt;}
.y71{bottom:398.486667pt;}
.y284{bottom:398.901333pt;}
.y1ca{bottom:399.034667pt;}
.y195{bottom:400.011904pt;}
.yd3{bottom:402.699088pt;}
.yfa{bottom:403.540000pt;}
.y176{bottom:406.608000pt;}
.y3a{bottom:408.528000pt;}
.y24c{bottom:410.258667pt;}
.y218{bottom:412.450667pt;}
.y1f6{bottom:412.848000pt;}
.y283{bottom:414.244000pt;}
.y194{bottom:414.757504pt;}
.y70{bottom:415.224000pt;}
.y1c9{bottom:415.772000pt;}
.y147{bottom:415.892000pt;}
.y15{bottom:418.330667pt;}
.yd2{bottom:419.818592pt;}
.yf9{bottom:421.472000pt;}
.y175{bottom:424.141333pt;}
.ya9{bottom:425.202667pt;}
.y24b{bottom:425.601333pt;}
.y217{bottom:429.188000pt;}
.y1f5{bottom:429.585333pt;}
.y193{bottom:431.423104pt;}
.y6f{bottom:431.961333pt;}
.y1c8{bottom:432.509333pt;}
.y14{bottom:434.230667pt;}
.y12b{bottom:435.829333pt;}
.yd1{bottom:436.938096pt;}
.y24a{bottom:440.944000pt;}
.y174{bottom:441.676000pt;}
.ya8{bottom:441.940000pt;}
.y282{bottom:444.928000pt;}
.y216{bottom:445.925333pt;}
.y1f4{bottom:446.322667pt;}
.y6e{bottom:448.698667pt;}
.y192{bottom:448.703104pt;}
.y1c7{bottom:449.246667pt;}
.yf8{bottom:451.360000pt;}
.yd0{bottom:453.977440pt;}
.y249{bottom:456.285333pt;}
.ya7{bottom:458.677333pt;}
.y173{bottom:459.210667pt;}
.y281{bottom:460.270667pt;}
.y215{bottom:462.662667pt;}
.y1f3{bottom:463.060000pt;}
.y6d{bottom:465.436000pt;}
.y191{bottom:465.906304pt;}
.y13{bottom:466.070667pt;}
.yf7{bottom:468.097333pt;}
.y1c6{bottom:469.969333pt;}
.ycf{bottom:471.096944pt;}
.y248{bottom:471.628000pt;}
.y39{bottom:475.328000pt;}
.ya5{bottom:475.414667pt;}
.y280{bottom:475.613333pt;}
.y214{bottom:479.398667pt;}
.y1f2{bottom:479.797333pt;}
.ya6{bottom:480.236000pt;}
.y12{bottom:481.972000pt;}
.y6c{bottom:482.173333pt;}
.y171{bottom:483.146667pt;}
.y190{bottom:483.186304pt;}
.yf6{bottom:484.834667pt;}
.y247{bottom:486.970667pt;}
.y170{bottom:490.452000pt;}
.y27f{bottom:490.956000pt;}
.ya4{bottom:492.152000pt;}
.y213{bottom:496.136000pt;}
.y1f1{bottom:496.534667pt;}
.y172{bottom:497.758667pt;}
.y11{bottom:497.872000pt;}
.y6b{bottom:498.910667pt;}
.y18f{bottom:500.466304pt;}
.yf5{bottom:501.572000pt;}
.y246{bottom:502.313333pt;}
.y1c5{bottom:502.329333pt;}
.y27e{bottom:506.298667pt;}
.y38{bottom:508.562667pt;}
.ya3{bottom:508.889333pt;}
.y212{bottom:512.873333pt;}
.y1f0{bottom:513.272000pt;}
.y10{bottom:513.772000pt;}
.y6a{bottom:515.648000pt;}
.y245{bottom:517.656000pt;}
.y18e{bottom:517.746304pt;}
.y1c4{bottom:519.425333pt;}
.ycd{bottom:519.576920pt;}
.y27d{bottom:521.641333pt;}
.yf4{bottom:522.294667pt;}
.ya2{bottom:525.626667pt;}
.y37{bottom:525.858667pt;}
.y16f{bottom:527.910667pt;}
.ycc{bottom:528.296400pt;}
.y211{bottom:529.610667pt;}
.yf{bottom:529.673333pt;}
.y1ef{bottom:530.009333pt;}
.y69{bottom:532.384000pt;}
.y244{bottom:532.998667pt;}
.y18d{bottom:535.026304pt;}
.y1c3{bottom:536.521333pt;}
.y27c{bottom:536.984000pt;}
.ya1{bottom:542.364000pt;}
.y36{bottom:543.153333pt;}
.ye{bottom:545.573333pt;}
.y210{bottom:546.348000pt;}
.y1ee{bottom:546.746667pt;}
.y243{bottom:548.341333pt;}
.y68{bottom:549.121333pt;}
.y27b{bottom:552.325333pt;}
.y1c2{bottom:553.617333pt;}
.yf3{bottom:554.654667pt;}
.ya0{bottom:559.101333pt;}
.y16e{bottom:559.564000pt;}
.y35{bottom:560.448000pt;}
.y20f{bottom:560.658667pt;}
.yd{bottom:561.473333pt;}
.y20e{bottom:563.085333pt;}
.y1ed{bottom:563.484000pt;}
.y242{bottom:563.684000pt;}
.y67{bottom:565.858667pt;}
.y27a{bottom:567.668000pt;}
.y189{bottom:573.554667pt;}
.ycb{bottom:574.592000pt;}
.y9f{bottom:575.837333pt;}
.y16d{bottom:576.301333pt;}
.yc{bottom:577.374667pt;}
.y34{bottom:577.744000pt;}
.y241{bottom:579.025333pt;}
.y20d{bottom:579.822667pt;}
.y1ec{bottom:580.221333pt;}
.y18b{bottom:582.258803pt;}
.y66{bottom:582.596000pt;}
.y279{bottom:583.010667pt;}
.y18a{bottom:590.629504pt;}
.y9e{bottom:592.574667pt;}
.y16c{bottom:593.037333pt;}
.yb{bottom:593.274667pt;}
.y240{bottom:594.368000pt;}
.y33{bottom:595.038667pt;}
.y20c{bottom:596.560000pt;}
.y1eb{bottom:596.958667pt;}
.y278{bottom:598.353333pt;}
.y65{bottom:599.333333pt;}
.y9c{bottom:609.312000pt;}
.y23f{bottom:609.710667pt;}
.y16b{bottom:609.774667pt;}
.y32{bottom:612.333333pt;}
.y8{bottom:613.160048pt;}
.y20b{bottom:613.297333pt;}
.y1ea{bottom:613.696000pt;}
.y9d{bottom:614.134667pt;}
.y64{bottom:616.070667pt;}
.y132{bottom:618.101259pt;}
.y23e{bottom:625.053333pt;}
.y9b{bottom:626.049333pt;}
.y16a{bottom:626.512000pt;}
.y277{bottom:629.038667pt;}
.y31{bottom:629.629333pt;}
.y1e9{bottom:630.433333pt;}
.y63{bottom:632.808000pt;}
.y20a{bottom:634.020000pt;}
.y131{bottom:635.220763pt;}
.y23d{bottom:640.396000pt;}
.y9a{bottom:642.786667pt;}
.y169{bottom:643.249333pt;}
.y276{bottom:644.381333pt;}
.y30{bottom:646.924000pt;}
.y1e8{bottom:647.170667pt;}
.y62{bottom:649.545333pt;}
.y130{bottom:652.260107pt;}
.y12a{bottom:654.836000pt;}
.y23c{bottom:655.738667pt;}
.y275{bottom:659.724000pt;}
.y168{bottom:659.986667pt;}
.y99{bottom:663.509333pt;}
.y1e7{bottom:663.908000pt;}
.y2f{bottom:664.220000pt;}
.y61{bottom:666.282667pt;}
.y12f{bottom:669.379611pt;}
.y23b{bottom:671.081333pt;}
.y129{bottom:671.573333pt;}
.y274{bottom:675.066667pt;}
.y167{bottom:676.724000pt;}
.y1e6{bottom:680.645333pt;}
.y2e{bottom:681.514667pt;}
.y60{bottom:683.020000pt;}
.y23a{bottom:686.424000pt;}
.y128{bottom:688.310667pt;}
.y273{bottom:690.408000pt;}
.y98{bottom:693.397333pt;}
.y166{bottom:693.461333pt;}
.y2d{bottom:696.478667pt;}
.y1e5{bottom:697.382667pt;}
.y2c{bottom:698.809333pt;}
.y5f{bottom:699.757333pt;}
.y239{bottom:701.766667pt;}
.y127{bottom:705.048000pt;}
.y272{bottom:705.750667pt;}
.y97{bottom:710.134667pt;}
.y1e4{bottom:714.120000pt;}
.y2b{bottom:716.105333pt;}
.y5e{bottom:716.494667pt;}
.y238{bottom:717.108000pt;}
.y12d{bottom:717.859587pt;}
.y271{bottom:721.093333pt;}
.y126{bottom:725.769333pt;}
.y165{bottom:726.478667pt;}
.y12c{bottom:726.579067pt;}
.y96{bottom:726.872000pt;}
.y1e3{bottom:730.857333pt;}
.y237{bottom:732.450667pt;}
.y5d{bottom:733.232000pt;}
.y2a{bottom:733.400000pt;}
.y270{bottom:736.436000pt;}
.y164{bottom:739.098667pt;}
.y94{bottom:743.609333pt;}
.y1e2{bottom:747.594667pt;}
.y236{bottom:747.793333pt;}
.y95{bottom:748.430667pt;}
.y5c{bottom:749.969333pt;}
.y29{bottom:750.694667pt;}
.y26f{bottom:751.778667pt;}
.y163{bottom:756.725333pt;}
.y125{bottom:758.129333pt;}
.y93{bottom:760.346667pt;}
.y235{bottom:763.136000pt;}
.y1e1{bottom:764.332000pt;}
.y5b{bottom:766.706667pt;}
.y26e{bottom:767.121333pt;}
.y162{bottom:774.258667pt;}
.y92{bottom:777.084000pt;}
.y109{bottom:778.066667pt;}
.y234{bottom:778.478667pt;}
.y1e0{bottom:781.069333pt;}
.y26d{bottom:782.464000pt;}
.y5a{bottom:783.444000pt;}
.y28{bottom:784.993333pt;}
.y161{bottom:791.793333pt;}
.y91{bottom:793.821333pt;}
.y1df{bottom:797.806667pt;}
.y27{bottom:799.340000pt;}
.y59{bottom:800.181333pt;}
.y233{bottom:809.164000pt;}
.y160{bottom:809.328000pt;}
.y8f{bottom:810.558667pt;}
.y26c{bottom:813.149333pt;}
.y26{bottom:813.685333pt;}
.yca{bottom:814.544000pt;}
.y90{bottom:815.380000pt;}
.y58{bottom:816.918667pt;}
.y232{bottom:824.506667pt;}
.y15f{bottom:826.861333pt;}
.y8d{bottom:827.296000pt;}
.y25{bottom:828.032000pt;}
.y26b{bottom:828.490667pt;}
.yc9{bottom:831.281333pt;}
.y8e{bottom:832.117333pt;}
.y57{bottom:833.656000pt;}
.y231{bottom:839.848000pt;}
.y26a{bottom:843.833333pt;}
.y8b{bottom:844.033333pt;}
.y15e{bottom:844.396000pt;}
.yc8{bottom:848.018667pt;}
.y8c{bottom:848.854667pt;}
.y56{bottom:850.393333pt;}
.y1de{bottom:852.840000pt;}
.y230{bottom:855.190667pt;}
.y269{bottom:859.176000pt;}
.y8a{bottom:860.770667pt;}
.y15d{bottom:861.930667pt;}
.yc7{bottom:864.754667pt;}
.y55{bottom:867.130667pt;}
.y7{bottom:867.617333pt;}
.y22f{bottom:870.533333pt;}
.y268{bottom:874.518667pt;}
.y89{bottom:877.508000pt;}
.y15c{bottom:879.464000pt;}
.yc6{bottom:881.492000pt;}
.y54{bottom:883.868000pt;}
.y6{bottom:884.354667pt;}
.y22e{bottom:885.876000pt;}
.y267{bottom:889.861333pt;}
.y88{bottom:894.245333pt;}
.y15b{bottom:896.998667pt;}
.yc4{bottom:898.229333pt;}
.y53{bottom:900.605333pt;}
.y22d{bottom:901.218667pt;}
.yc5{bottom:903.052000pt;}
.y266{bottom:905.204000pt;}
.y87{bottom:910.982667pt;}
.y15a{bottom:914.533333pt;}
.yc3{bottom:914.966667pt;}
.y22c{bottom:916.561333pt;}
.y52{bottom:917.342667pt;}
.y265{bottom:920.546667pt;}
.y85{bottom:925.293333pt;}
.y5{bottom:925.510667pt;}
.y84{bottom:927.720000pt;}
.yc2{bottom:931.704000pt;}
.y22b{bottom:931.904000pt;}
.y86{bottom:932.541333pt;}
.y51{bottom:934.080000pt;}
.y264{bottom:935.889333pt;}
.y158{bottom:938.469333pt;}
.y83{bottom:944.456000pt;}
.y157{bottom:945.774667pt;}
.y22a{bottom:947.246667pt;}
.yc1{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y50{bottom:950.817333pt;}
.y263{bottom:951.230667pt;}
.y159{bottom:953.081333pt;}
.y82{bottom:961.193333pt;}
.y229{bottom:962.589333pt;}
.yc0{bottom:965.178667pt;}
.y262{bottom:966.573333pt;}
.y4f{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y81{bottom:981.916000pt;}
.y156{bottom:983.233333pt;}
.y4e{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4d{bottom:1043.020000pt;}
.h37{height:21.710700pt;}
.h8{height:22.673858pt;}
.h13{height:28.023859pt;}
.h34{height:28.309050pt;}
.ha{height:29.433775pt;}
.h30{height:29.565900pt;}
.h9{height:30.399505pt;}
.h2a{height:33.186336pt;}
.h32{height:33.345000pt;}
.hb{height:33.771789pt;}
.he{height:34.574438pt;}
.h17{height:36.666735pt;}
.h33{height:36.673200pt;}
.h14{height:36.873667pt;}
.h31{height:37.124100pt;}
.h11{height:38.415786pt;}
.h1f{height:38.462187pt;}
.hc{height:38.596538pt;}
.hd{height:38.809074pt;}
.h4{height:38.947124pt;}
.h38{height:38.951550pt;}
.h1c{height:39.359687pt;}
.h1b{height:39.588281pt;}
.h28{height:40.394973pt;}
.hf{height:43.421286pt;}
.h3a{height:43.660390pt;}
.h29{height:44.250973pt;}
.h21{height:44.390625pt;}
.h1e{height:44.648438pt;}
.h2{height:45.272024pt;}
.h12{height:48.245551pt;}
.h18{height:48.511220pt;}
.h7{height:49.201961pt;}
.h1d{height:49.421563pt;}
.h20{height:49.708594pt;}
.h36{height:51.961515pt;}
.h10{height:52.493985pt;}
.h35{height:55.650956pt;}
.h2b{height:55.952068pt;}
.h19{height:55.957402pt;}
.h15{height:57.015859pt;}
.h39{height:57.021193pt;}
.h26{height:63.795772pt;}
.h2e{height:63.801105pt;}
.h16{height:65.658735pt;}
.h5{height:69.148877pt;}
.h6{height:69.435802pt;}
.h3{height:73.179920pt;}
.h25{height:85.579066pt;}
.h22{height:85.869127pt;}
.h27{height:97.757985pt;}
.h24{height:121.421275pt;}
.h23{height:121.709127pt;}
.h2d{height:205.962667pt;}
.h2c{height:217.133333pt;}
.h1a{height:226.908000pt;}
.h2f{height:272.842240pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:174.865465pt;}
.w5{width:649.306667pt;}
.w6{width:663.969200pt;}
.w7{width:680.742656pt;}
.w4{width:682.819333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x9f{left:-24.610667pt;}
.xaa{left:-14.836133pt;}
.x72{left:-6.458000pt;}
.x0{left:0.000000pt;}
.xc2{left:5.235456pt;}
.xcd{left:13.529203pt;}
.xcc{left:18.751826pt;}
.x3{left:26.021437pt;}
.xc8{left:32.422656pt;}
.xa3{left:34.589333pt;}
.xaf{left:44.363867pt;}
.x1{left:48.000000pt;}
.x2{left:51.594354pt;}
.xce{left:53.696256pt;}
.x71{left:55.442000pt;}
.xc1{left:56.477077pt;}
.xa9{left:64.866800pt;}
.xb9{left:67.620000pt;}
.x9e{left:72.197333pt;}
.x89{left:74.253333pt;}
.xcf{left:76.346667pt;}
.x94{left:78.894667pt;}
.xb8{left:80.544000pt;}
.xc0{left:88.194667pt;}
.x95{left:90.998667pt;}
.xb2{left:109.224000pt;}
.xc9{left:115.596595pt;}
.x88{left:122.321333pt;}
.x96{left:126.742667pt;}
.x8a{left:134.089333pt;}
.xa0{left:149.228317pt;}
.xac{left:159.002851pt;}
.xa1{left:165.149333pt;}
.x73{left:167.382320pt;}
.xba{left:169.794667pt;}
.xc5{left:172.121856pt;}
.xae{left:174.923867pt;}
.x7e{left:176.822000pt;}
.x7f{left:181.861392pt;}
.x75{left:183.862000pt;}
.xab{left:187.323379pt;}
.x74{left:195.702528pt;}
.xc6{left:199.309056pt;}
.xc4{left:201.459456pt;}
.xc3{left:204.685056pt;}
.x97{left:212.782667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x76{left:225.382000pt;}
.xb4{left:230.989333pt;}
.x80{left:232.501136pt;}
.x81{left:234.180488pt;}
.x54{left:235.500000pt;}
.xa6{left:238.213333pt;}
.xca{left:240.780196pt;}
.x11{left:251.365333pt;}
.x55{left:252.716000pt;}
.x1c{left:254.801333pt;}
.x20{left:257.349333pt;}
.xbb{left:259.185333pt;}
.x1d{left:261.444000pt;}
.x1e{left:264.830667pt;}
.xa5{left:267.549333pt;}
.xb1{left:270.523867pt;}
.x1f{left:271.472000pt;}
.xdb{left:273.398667pt;}
.x6{left:274.744000pt;}
.xf1{left:276.202667pt;}
.x21{left:277.214667pt;}
.xf0{left:283.022667pt;}
.xdc{left:286.681333pt;}
.xa4{left:288.589333pt;}
.x22{left:290.498667pt;}
.xe7{left:295.713333pt;}
.xb0{left:298.363867pt;}
.xd5{left:300.097333pt;}
.x98{left:302.424000pt;}
.xa7{left:305.937333pt;}
.x83{left:307.600000pt;}
.xb3{left:309.253333pt;}
.x5b{left:311.660000pt;}
.xd6{left:313.381333pt;}
.x6a{left:317.518667pt;}
.x62{left:320.606667pt;}
.x6b{left:323.568000pt;}
.x5e{left:324.874667pt;}
.x34{left:327.513333pt;}
.x77{left:332.102000pt;}
.xf2{left:334.324000pt;}
.x5f{left:338.157333pt;}
.x35{left:340.797333pt;}
.xe5{left:344.160000pt;}
.x8c{left:345.168000pt;}
.x8b{left:348.020000pt;}
.xa8{left:352.130667pt;}
.xbc{left:354.522667pt;}
.x5c{left:358.048000pt;}
.xbd{left:363.472000pt;}
.xcb{left:365.810580pt;}
.xd7{left:368.345333pt;}
.x6e{left:376.090667pt;}
.xe3{left:379.405333pt;}
.x6c{left:381.900000pt;}
.x78{left:384.502000pt;}
.x6d{left:387.949333pt;}
.x6f{left:389.374667pt;}
.x70{left:396.130667pt;}
.xd9{left:402.721333pt;}
.x99{left:404.820000pt;}
.xda{left:409.362667pt;}
.xe0{left:418.562667pt;}
.x8e{left:419.738667pt;}
.x8d{left:424.249333pt;}
.xb5{left:435.266667pt;}
.x79{left:436.902000pt;}
.x36{left:438.358667pt;}
.x9a{left:439.460000pt;}
.x18{left:441.981333pt;}
.xb{left:444.006667pt;}
.x82{left:445.380712pt;}
.x19{left:448.622667pt;}
.x1a{left:452.009333pt;}
.xc{left:457.748000pt;}
.x1b{left:458.652000pt;}
.xe1{left:462.296000pt;}
.xe2{left:465.633333pt;}
.x26{left:468.358667pt;}
.xd{left:471.882667pt;}
.xe{left:477.196000pt;}
.x2d{left:479.541333pt;}
.x2a{left:480.706667pt;}
.x27{left:481.642667pt;}
.x28{left:484.897333pt;}
.x9b{left:486.370667pt;}
.x8f{left:488.478667pt;}
.x60{left:490.010667pt;}
.x2e{left:492.824000pt;}
.x2b{left:493.990667pt;}
.x61{left:496.060000pt;}
.x29{left:498.181333pt;}
.x49{left:508.061333pt;}
.xe4{left:509.566667pt;}
.xea{left:510.646667pt;}
.xdd{left:520.564000pt;}
.xb6{left:521.604000pt;}
.x4a{left:522.866667pt;}
.xeb{left:523.929333pt;}
.x56{left:526.418667pt;}
.x45{left:529.830667pt;}
.xf{left:534.224000pt;}
.x57{left:539.701333pt;}
.x7a{left:541.702000pt;}
.x9c{left:544.360000pt;}
.x3b{left:545.493333pt;}
.x58{left:546.476000pt;}
.x4b{left:548.472000pt;}
.x37{left:549.622667pt;}
.x3c{left:551.542667pt;}
.xf7{left:553.397333pt;}
.x90{left:554.398667pt;}
.x46{left:556.276000pt;}
.xee{left:557.902667pt;}
.x59{left:559.760000pt;}
.x38{left:562.906667pt;}
.x3d{left:564.992000pt;}
.x39{left:566.210667pt;}
.xbe{left:567.614667pt;}
.x3e{left:568.680000pt;}
.x47{left:571.490667pt;}
.x10{left:576.622667pt;}
.x3a{left:579.494667pt;}
.x3f{left:582.129333pt;}
.x7{left:585.614667pt;}
.x4c{left:590.645333pt;}
.x40{left:592.288000pt;}
.x7c{left:594.102000pt;}
.xe6{left:596.041333pt;}
.x7b{left:598.182000pt;}
.xf5{left:603.048000pt;}
.x66{left:605.504000pt;}
.x9d{left:606.709333pt;}
.x92{left:609.848000pt;}
.x91{left:612.572000pt;}
.x41{left:616.798667pt;}
.x33{left:618.033333pt;}
.xed{left:620.508000pt;}
.x42{left:622.849333pt;}
.x67{left:624.336000pt;}
.x4d{left:625.817333pt;}
.x8{left:627.201333pt;}
.x14{left:629.416000pt;}
.x52{left:631.556000pt;}
.x2f{left:632.693333pt;}
.x15{left:636.057333pt;}
.x5a{left:636.982667pt;}
.x43{left:639.986667pt;}
.xb7{left:641.929333pt;}
.x7d{left:644.262000pt;}
.x30{left:645.976000pt;}
.x63{left:647.145333pt;}
.x53{left:648.881333pt;}
.x9{left:650.820000pt;}
.x31{left:652.750667pt;}
.xde{left:655.766667pt;}
.x44{left:656.933333pt;}
.xa2{left:659.307453pt;}
.xad{left:660.523587pt;}
.xf3{left:662.497333pt;}
.x64{left:665.030667pt;}
.x32{left:666.034667pt;}
.xe8{left:667.277333pt;}
.x4e{left:668.824000pt;}
.xbf{left:670.293333pt;}
.x84{left:673.701333pt;}
.xc7{left:675.314527pt;}
.xec{left:677.552000pt;}
.x65{left:680.128000pt;}
.x23{left:681.153333pt;}
.x93{left:682.977333pt;}
.x4f{left:684.025333pt;}
.xf4{left:686.408000pt;}
.xd2{left:688.190667pt;}
.xa{left:690.756000pt;}
.x85{left:692.536000pt;}
.x24{left:694.437333pt;}
.xef{left:695.872000pt;}
.xe9{left:697.172000pt;}
.xd3{left:698.166667pt;}
.x12{left:701.237333pt;}
.xdf{left:702.822667pt;}
.xd8{left:704.842667pt;}
.x13{left:707.878667pt;}
.xd0{left:710.481333pt;}
.xd4{left:711.450667pt;}
.x25{left:714.229333pt;}
.x2c{left:721.358667pt;}
.xd1{left:723.765333pt;}
.xf6{left:725.634667pt;}
.x48{left:727.052000pt;}
.x86{left:729.338667pt;}
.x50{left:730.688000pt;}
.x16{left:733.484000pt;}
.x87{left:735.050667pt;}
.x5d{left:736.094667pt;}
.x68{left:738.261333pt;}
.x17{left:740.126667pt;}
.x51{left:742.517333pt;}
.x69{left:743.973333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  