
    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_ac42edf0607a39c0882b82c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_93d358be0cca0b57e0d65996.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_7bc38a1b8f31e9bc6e97c2dd.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_a0f864005151495ad149e1cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.743000;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_b5e0affbcf76c09ac2307f8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_b5711b08949e4d5e1a898b50.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_8f17da48a451cb7c4f4aae88.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_37e018c9111f89f364364fc6.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_7ec264142f838cfc6f4ef29f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_38c710c26958556ae30d05a3.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_51d51d9d2e9f987dc66a82e3.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_7b202757d6653ebb34b1c7f4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_371bec0132a5d2c5b03cf093.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;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_0542870253532c421eecd8bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;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_f41fd80436644c4383286882.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_940de9a53cfc3dc072eef211.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.003418;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_cc156ab003135f741cb3cfa4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.011230;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_a43685f019c99a5b00c4817c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.745117;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_98b843b0ee393aa0f23a1a48.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.914062;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_7077a0ad0cc9b3ea7b7f1225.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.808105;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_e265f1221adbc77177c8acb5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.703000;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_666b0a5c4b2bc1655faaa71b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.689000;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;}
.m28{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{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);}
.m22{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);}
.ma{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);}
.m13{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);}
.m2b{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);}
.mb{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);}
.m14{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);}
.m8{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);}
.m4{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);}
.m2d{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);}
.m1b{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);}
.m29{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);}
.m23{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);}
.m1f{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);}
.m7{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);}
.m21{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m1e{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);}
.m20{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);}
.m18{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m25{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);}
.m27{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);}
.m2a{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);}
.m3{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);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.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);}
.m11{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);}
.m26{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);}
.m1c{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);}
.m2c{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);}
.m1d{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);}
.m24{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.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);}
.m16{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);}
.mf{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);}
.me{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);}
.m5{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);}
.m1{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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-11.268000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.880000px;}
.ls4f{letter-spacing:-0.302400px;}
.ls23{letter-spacing:-0.199899px;}
.ls5a{letter-spacing:-0.144288px;}
.ls1d{letter-spacing:-0.142785px;}
.ls5c{letter-spacing:-0.134064px;}
.ls20{letter-spacing:-0.131362px;}
.ls56{letter-spacing:-0.126252px;}
.ls26{letter-spacing:-0.119939px;}
.ls1f{letter-spacing:-0.114228px;}
.ls22{letter-spacing:-0.097094px;}
.ls54{letter-spacing:-0.091800px;}
.ls1a{letter-spacing:-0.091382px;}
.ls4a{letter-spacing:-0.090972px;}
.ls5d{letter-spacing:-0.086184px;}
.ls55{letter-spacing:-0.084168px;}
.ls18{letter-spacing:-0.081875px;}
.ls1b{letter-spacing:-0.079960px;}
.ls53{letter-spacing:-0.075600px;}
.ls58{letter-spacing:-0.072144px;}
.ls2a{letter-spacing:-0.071820px;}
.ls27{letter-spacing:-0.068537px;}
.ls25{letter-spacing:-0.057114px;}
.ls2b{letter-spacing:-0.051300px;}
.ls59{letter-spacing:-0.048096px;}
.ls50{letter-spacing:-0.042084px;}
.ls4e{letter-spacing:-0.037800px;}
.ls21{letter-spacing:-0.034268px;}
.ls52{letter-spacing:-0.027000px;}
.ls4c{letter-spacing:-0.021600px;}
.ls4b{letter-spacing:-0.019152px;}
.ls1e{letter-spacing:-0.017134px;}
.ls49{letter-spacing:-0.014364px;}
.ls1c{letter-spacing:-0.011423px;}
.ls19{letter-spacing:-0.009097px;}
.ls57{letter-spacing:-0.006012px;}
.ls24{letter-spacing:-0.005711px;}
.ls51{letter-spacing:-0.005400px;}
.ls29{letter-spacing:-0.005130px;}
.ls17{letter-spacing:-0.004549px;}
.lsa{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.000030px;}
.ls65{letter-spacing:0.001036px;}
.ls6d{letter-spacing:0.001102px;}
.ls66{letter-spacing:0.001155px;}
.ls6f{letter-spacing:0.001357px;}
.ls6{letter-spacing:0.001952px;}
.ls6c{letter-spacing:0.002463px;}
.ls0{letter-spacing:0.002725px;}
.ls70{letter-spacing:0.003437px;}
.ls7{letter-spacing:0.003488px;}
.ls32{letter-spacing:0.005400px;}
.lsf{letter-spacing:0.005711px;}
.ls3c{letter-spacing:0.010800px;}
.ls10{letter-spacing:0.011423px;}
.ls36{letter-spacing:0.012024px;}
.ls11{letter-spacing:0.015390px;}
.ls3a{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.020520px;}
.ls39{letter-spacing:0.021600px;}
.ls16{letter-spacing:0.025650px;}
.ls3d{letter-spacing:0.027000px;}
.ls3e{letter-spacing:0.032400px;}
.lse{letter-spacing:0.034268px;}
.ls15{letter-spacing:0.035910px;}
.ls35{letter-spacing:0.036072px;}
.ls33{letter-spacing:0.037800px;}
.ls38{letter-spacing:0.048096px;}
.ls3b{letter-spacing:0.048600px;}
.ls40{letter-spacing:0.054108px;}
.ls43{letter-spacing:0.057456px;}
.ls3f{letter-spacing:0.059400px;}
.ls37{letter-spacing:0.060120px;}
.ls12{letter-spacing:0.061560px;}
.ls28{letter-spacing:0.074248px;}
.ls34{letter-spacing:0.084168px;}
.ls41{letter-spacing:0.124488px;}
.ls31{letter-spacing:0.172368px;}
.lsd{letter-spacing:0.172847px;}
.lsc{letter-spacing:0.181944px;}
.ls42{letter-spacing:0.210672px;}
.ls13{letter-spacing:0.518130px;}
.ls4d{letter-spacing:0.540000px;}
.ls46{letter-spacing:0.642088px;}
.ls45{letter-spacing:0.648088px;}
.ls61{letter-spacing:0.669878px;}
.ls5e{letter-spacing:0.904282px;}
.lsb{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls64{letter-spacing:3.559200px;}
.ls4{letter-spacing:10.461300px;}
.ls9{letter-spacing:11.954850px;}
.ls72{letter-spacing:13.226871px;}
.ls69{letter-spacing:13.379571px;}
.ls5f{letter-spacing:13.401746px;}
.ls68{letter-spacing:13.448400px;}
.ls44{letter-spacing:13.450800px;}
.ls67{letter-spacing:13.454400px;}
.ls6a{letter-spacing:13.556473px;}
.ls2e{letter-spacing:13.567700px;}
.ls71{letter-spacing:13.586764px;}
.ls30{letter-spacing:13.710610px;}
.ls48{letter-spacing:14.623560px;}
.ls2d{letter-spacing:14.943292px;}
.ls2c{letter-spacing:14.943986px;}
.ls1{letter-spacing:14.944200px;}
.ls2f{letter-spacing:15.249835px;}
.ls63{letter-spacing:15.663483px;}
.ls62{letter-spacing:15.694200px;}
.ls6e{letter-spacing:16.676400px;}
.ls6b{letter-spacing:17.216388px;}
.ls5{letter-spacing:62.761200px;}
.ls8{letter-spacing:64.321654px;}
.ls60{letter-spacing:190.420090px;}
.ls5b{letter-spacing:848.972556px;}
.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;}
}
.wsf1{word-spacing:-60.120000px;}
.wsf0{word-spacing:-54.000000px;}
.wsf4{word-spacing:-48.090672px;}
.wsf2{word-spacing:-15.030000px;}
.ws4{word-spacing:-14.943900px;}
.ws15b{word-spacing:-13.449600px;}
.wsef{word-spacing:-12.151944px;}
.ws18{word-spacing:-11.955150px;}
.ws6f{word-spacing:-11.553444px;}
.ws3{word-spacing:-11.357400px;}
.wsf3{word-spacing:-10.945368px;}
.wsf5{word-spacing:-10.734696px;}
.wsc{word-spacing:-10.460700px;}
.wscb{word-spacing:-3.586536px;}
.ws10b{word-spacing:-3.099600px;}
.ws10c{word-spacing:-3.083400px;}
.ws82{word-spacing:-3.021331px;}
.ws83{word-spacing:-2.929948px;}
.ws139{word-spacing:-2.869229px;}
.ws12d{word-spacing:-2.809453px;}
.ws60{word-spacing:-2.689902px;}
.ws8b{word-spacing:-2.655801px;}
.ws8a{word-spacing:-2.650090px;}
.ws87{word-spacing:-2.301694px;}
.ws86{word-spacing:-2.181755px;}
.ws7{word-spacing:-1.908367px;}
.ws138{word-spacing:-1.733492px;}
.wsb6{word-spacing:-1.673717px;}
.ws131{word-spacing:-1.636162px;}
.ws12f{word-spacing:-1.613941px;}
.ws15a{word-spacing:-1.560154px;}
.ws142{word-spacing:-1.494390px;}
.ws47{word-spacing:-1.434614px;}
.wsb3{word-spacing:-1.400861px;}
.wsb4{word-spacing:-1.374839px;}
.ws6{word-spacing:-1.322630px;}
.wsbe{word-spacing:-1.315063px;}
.ws10e{word-spacing:-1.306800px;}
.ws10d{word-spacing:-1.274400px;}
.wsca{word-spacing:-1.255288px;}
.ws10f{word-spacing:-1.252800px;}
.ws9e{word-spacing:-1.195512px;}
.wsc9{word-spacing:-1.135736px;}
.ws6c{word-spacing:-1.016185px;}
.wsa2{word-spacing:-0.896634px;}
.ws159{word-spacing:-0.806976px;}
.ws14b{word-spacing:-0.777083px;}
.ws4e{word-spacing:-0.717307px;}
.ws6e{word-spacing:-0.657532px;}
.ws123{word-spacing:-0.625248px;}
.ws122{word-spacing:-0.505008px;}
.ws14e{word-spacing:-0.478205px;}
.ws5c{word-spacing:-0.358654px;}
.ws105{word-spacing:-0.354708px;}
.ws125{word-spacing:-0.330660px;}
.ws29{word-spacing:-0.322790px;}
.ws62{word-spacing:-0.312659px;}
.ws65{word-spacing:-0.298878px;}
.ws64{word-spacing:-0.289223px;}
.ws26{word-spacing:-0.268992px;}
.wsff{word-spacing:-0.263340px;}
.ws72{word-spacing:-0.254722px;}
.ws45{word-spacing:-0.239102px;}
.ws158{word-spacing:-0.215194px;}
.ws124{word-spacing:-0.198396px;}
.ws141{word-spacing:-0.182906px;}
.ws36{word-spacing:-0.179327px;}
.ws143{word-spacing:-0.172480px;}
.ws144{word-spacing:-0.167627px;}
.ws9{word-spacing:-0.167371px;}
.ws152{word-spacing:-0.161395px;}
.ws150{word-spacing:-0.142748px;}
.ws129{word-spacing:-0.126252px;}
.ws58{word-spacing:-0.119551px;}
.wsf6{word-spacing:-0.107597px;}
.ws71{word-spacing:-0.072778px;}
.wsfe{word-spacing:-0.071820px;}
.ws5{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.047821px;}
.wsd{word-spacing:-0.041843px;}
.ws17a{word-spacing:-0.024413px;}
.ws1f{word-spacing:-0.015321px;}
.ws1{word-spacing:-0.004176px;}
.wsad{word-spacing:-0.001088px;}
.ws0{word-spacing:0.000000px;}
.ws172{word-spacing:0.001709px;}
.ws8c{word-spacing:0.017134px;}
.ws109{word-spacing:0.030060px;}
.ws10a{word-spacing:0.042084px;}
.ws2a{word-spacing:0.053798px;}
.ws32{word-spacing:0.059776px;}
.ws30{word-spacing:0.072171px;}
.ws7d{word-spacing:0.085671px;}
.ws16e{word-spacing:0.101820px;}
.ws156{word-spacing:0.107597px;}
.ws170{word-spacing:0.116586px;}
.ws11e{word-spacing:0.118800px;}
.ws2f{word-spacing:0.119551px;}
.ws103{word-spacing:0.140400px;}
.ws11b{word-spacing:0.145800px;}
.ws96{word-spacing:0.148770px;}
.ws118{word-spacing:0.151200px;}
.ws95{word-spacing:0.153900px;}
.ws115{word-spacing:0.156600px;}
.ws22{word-spacing:0.161395px;}
.ws110{word-spacing:0.162000px;}
.ws111{word-spacing:0.167400px;}
.ws102{word-spacing:0.172800px;}
.ws54{word-spacing:0.179327px;}
.ws7e{word-spacing:0.188476px;}
.ws112{word-spacing:0.205200px;}
.wse{word-spacing:0.209214px;}
.ws2b{word-spacing:0.215194px;}
.ws3f{word-spacing:0.239102px;}
.ws113{word-spacing:0.253800px;}
.ws27{word-spacing:0.268992px;}
.ws116{word-spacing:0.270000px;}
.ws10{word-spacing:0.292900px;}
.ws3a{word-spacing:0.298878px;}
.ws15c{word-spacing:0.322790px;}
.ws164{word-spacing:0.323704px;}
.ws56{word-spacing:0.358654px;}
.ws99{word-spacing:0.418429px;}
.ws15d{word-spacing:0.430387px;}
.ws8e{word-spacing:0.456570px;}
.wsa8{word-spacing:0.478205px;}
.ws104{word-spacing:0.480600px;}
.ws154{word-spacing:0.484186px;}
.ws8d{word-spacing:0.502740px;}
.ws8f{word-spacing:0.518130px;}
.ws90{word-spacing:0.523260px;}
.wsfd{word-spacing:0.537980px;}
.ws100{word-spacing:0.561600px;}
.ws14d{word-spacing:0.564600px;}
.ws101{word-spacing:0.577800px;}
.wscd{word-spacing:0.645581px;}
.ws49{word-spacing:0.717307px;}
.ws12c{word-spacing:0.777083px;}
.wsaa{word-spacing:0.836858px;}
.ws11f{word-spacing:0.895788px;}
.wsc8{word-spacing:0.896634px;}
.wscc{word-spacing:0.914573px;}
.ws148{word-spacing:0.956410px;}
.ws33{word-spacing:1.013348px;}
.ws35{word-spacing:1.016185px;}
.ws74{word-spacing:1.085166px;}
.ws37{word-spacing:1.135736px;}
.ws108{word-spacing:1.160316px;}
.ws75{word-spacing:1.199394px;}
.ws73{word-spacing:1.210817px;}
.ws5b{word-spacing:1.255288px;}
.wsa4{word-spacing:1.315063px;}
.ws69{word-spacing:1.374839px;}
.ws39{word-spacing:1.434614px;}
.ws52{word-spacing:1.494390px;}
.ws153{word-spacing:1.613952px;}
.wsa9{word-spacing:1.793268px;}
.ws76{word-spacing:1.810514px;}
.ws4b{word-spacing:1.912819px;}
.ws77{word-spacing:1.941876px;}
.wsf{word-spacing:2.008454px;}
.wsa3{word-spacing:2.032370px;}
.ws55{word-spacing:2.092146px;}
.ws92{word-spacing:2.195640px;}
.ws91{word-spacing:2.211030px;}
.ws4f{word-spacing:2.271473px;}
.ws94{word-spacing:2.282850px;}
.ws93{word-spacing:2.303370px;}
.wsbf{word-spacing:2.331248px;}
.ws9f{word-spacing:2.391024px;}
.ws13a{word-spacing:2.450800px;}
.ws134{word-spacing:2.510575px;}
.ws2c{word-spacing:2.582323px;}
.ws88{word-spacing:2.615821px;}
.ws9d{word-spacing:2.630126px;}
.ws155{word-spacing:2.636122px;}
.wsc0{word-spacing:2.689902px;}
.wsa7{word-spacing:2.749678px;}
.wsc5{word-spacing:2.809453px;}
.ws85{word-spacing:2.815720px;}
.ws84{word-spacing:2.844277px;}
.ws42{word-spacing:2.869229px;}
.ws12a{word-spacing:2.880050px;}
.wsa5{word-spacing:2.929004px;}
.ws120{word-spacing:2.933856px;}
.ws162{word-spacing:2.958912px;}
.ws5d{word-spacing:2.988780px;}
.wsbb{word-spacing:3.168107px;}
.ws2d{word-spacing:3.219667px;}
.ws17e{word-spacing:3.224045px;}
.ws174{word-spacing:3.224525px;}
.ws12e{word-spacing:3.227904px;}
.ws126{word-spacing:3.276540px;}
.ws17d{word-spacing:3.281702px;}
.wsc2{word-spacing:3.287658px;}
.ws121{word-spacing:3.294576px;}
.ws136{word-spacing:3.347434px;}
.ws6a{word-spacing:3.407209px;}
.ws13d{word-spacing:3.466985px;}
.ws6d{word-spacing:3.526760px;}
.ws177{word-spacing:3.559501px;}
.ws2e{word-spacing:3.586536px;}
.ws128{word-spacing:3.655296px;}
.ws7f{word-spacing:3.712410px;}
.ws127{word-spacing:3.739464px;}
.ws3c{word-spacing:3.825638px;}
.ws61{word-spacing:4.004965px;}
.ws157{word-spacing:4.196275px;}
.ws78{word-spacing:4.215013px;}
.ws79{word-spacing:4.220725px;}
.ws44{word-spacing:4.244068px;}
.ws140{word-spacing:4.303843px;}
.ws7a{word-spacing:4.312107px;}
.ws43{word-spacing:4.483170px;}
.wsa6{word-spacing:4.662497px;}
.ws13c{word-spacing:4.722272px;}
.ws5a{word-spacing:4.782048px;}
.ws48{word-spacing:4.841824px;}
.ws147{word-spacing:5.021150px;}
.ws51{word-spacing:5.080926px;}
.wsab{word-spacing:5.200477px;}
.ws1b{word-spacing:5.218445px;}
.ws14f{word-spacing:5.320028px;}
.wsc7{word-spacing:5.379804px;}
.wsc6{word-spacing:5.439580px;}
.wsc4{word-spacing:5.499355px;}
.wsc1{word-spacing:5.559131px;}
.ws1a{word-spacing:5.595034px;}
.wsfc{word-spacing:5.618906px;}
.wsa1{word-spacing:5.678682px;}
.wsa0{word-spacing:5.738458px;}
.ws24{word-spacing:5.756429px;}
.ws16{word-spacing:6.067206px;}
.ws17{word-spacing:6.150892px;}
.ws13b{word-spacing:6.216662px;}
.wsb7{word-spacing:6.336214px;}
.ws7b{word-spacing:6.379634px;}
.ws98{word-spacing:6.455765px;}
.ws80{word-spacing:6.596667px;}
.ws81{word-spacing:6.608090px;}
.ws7c{word-spacing:6.625224px;}
.ws89{word-spacing:6.659492px;}
.ws5e{word-spacing:6.754643px;}
.wsf7{word-spacing:6.814418px;}
.ws4c{word-spacing:6.993745px;}
.ws137{word-spacing:7.053521px;}
.ws14c{word-spacing:7.352399px;}
.ws9b{word-spacing:7.531726px;}
.ws135{word-spacing:7.890379px;}
.ws14a{word-spacing:7.950155px;}
.ws14{word-spacing:8.661460px;}
.ws107{word-spacing:9.054072px;}
.ws106{word-spacing:9.132228px;}
.wsa{word-spacing:10.414912px;}
.wsb{word-spacing:10.418606px;}
.ws40{word-spacing:11.904593px;}
.ws17b{word-spacing:13.180608px;}
.ws130{word-spacing:13.219502px;}
.ws15f{word-spacing:13.234406px;}
.ws132{word-spacing:13.270183px;}
.ws21{word-spacing:13.342003px;}
.ws1e{word-spacing:13.352005px;}
.ws1c{word-spacing:13.357764px;}
.ws179{word-spacing:13.388794px;}
.ws169{word-spacing:13.389293px;}
.ws16a{word-spacing:13.390531px;}
.ws173{word-spacing:13.391386px;}
.ws15e{word-spacing:13.394995px;}
.ws20{word-spacing:13.395802px;}
.ws16c{word-spacing:13.396925px;}
.ws16b{word-spacing:13.448467px;}
.ws171{word-spacing:13.489960px;}
.ws16d{word-spacing:13.491606px;}
.ws16f{word-spacing:13.503398px;}
.ws23{word-spacing:13.557197px;}
.ws70{word-spacing:13.581457px;}
.ws176{word-spacing:13.610995px;}
.ws28{word-spacing:13.647617px;}
.ws163{word-spacing:13.711203px;}
.ws165{word-spacing:13.718592px;}
.ws4d{word-spacing:14.127676px;}
.wsb9{word-spacing:14.578633px;}
.ws63{word-spacing:14.585246px;}
.ws133{word-spacing:14.617278px;}
.ws67{word-spacing:14.644535px;}
.ws46{word-spacing:14.645022px;}
.ws4a{word-spacing:14.656642px;}
.wsc3{word-spacing:14.704798px;}
.ws151{word-spacing:14.715439px;}
.ws145{word-spacing:14.722664px;}
.ws59{word-spacing:14.764573px;}
.wsb2{word-spacing:14.879024px;}
.wsb0{word-spacing:14.881082px;}
.wsb1{word-spacing:14.881666px;}
.wsae{word-spacing:14.882768px;}
.wsac{word-spacing:14.883216px;}
.ws66{word-spacing:14.884124px;}
.wsbd{word-spacing:14.884807px;}
.wsaf{word-spacing:14.885024px;}
.ws50{word-spacing:14.942074px;}
.ws31{word-spacing:14.943900px;}
.wsb5{word-spacing:14.989556px;}
.ws9a{word-spacing:15.003676px;}
.ws53{word-spacing:15.063451px;}
.ws6b{word-spacing:15.108066px;}
.ws3b{word-spacing:15.183002px;}
.ws57{word-spacing:15.242778px;}
.ws8{word-spacing:15.261541px;}
.ws149{word-spacing:15.840534px;}
.ws34{word-spacing:15.878221px;}
.ws11{word-spacing:16.142252px;}
.ws12{word-spacing:16.151321px;}
.ws68{word-spacing:16.258963px;}
.ws38{word-spacing:16.318739px;}
.ws167{word-spacing:16.354714px;}
.ws17c{word-spacing:16.408512px;}
.ws160{word-spacing:16.569907px;}
.ws166{word-spacing:16.620787px;}
.ws175{word-spacing:16.623706px;}
.ws168{word-spacing:16.624090px;}
.ws161{word-spacing:16.785101px;}
.ws178{word-spacing:16.946496px;}
.ws13e{word-spacing:17.081301px;}
.ws13{word-spacing:17.699504px;}
.wsbc{word-spacing:18.071377px;}
.wsba{word-spacing:18.072136px;}
.ws41{word-spacing:18.464042px;}
.ws3d{word-spacing:18.692297px;}
.ws3e{word-spacing:18.709763px;}
.ws25{word-spacing:19.152230px;}
.ws13f{word-spacing:19.187968px;}
.ws146{word-spacing:20.287469px;}
.wsb8{word-spacing:21.224319px;}
.ws5f{word-spacing:21.607700px;}
.ws9c{word-spacing:26.719693px;}
.ws2{word-spacing:26.777424px;}
.ws15{word-spacing:27.448877px;}
.wse2{word-spacing:54.132836px;}
.wscf{word-spacing:64.228882px;}
.wsce{word-spacing:65.073929px;}
.wsd9{word-spacing:65.340836px;}
.wsd1{word-spacing:69.190257px;}
.wsd5{word-spacing:71.244836px;}
.ws12b{word-spacing:73.165824px;}
.wsd0{word-spacing:74.211407px;}
.wse9{word-spacing:80.398182px;}
.ws97{word-spacing:86.160288px;}
.wsdd{word-spacing:87.756836px;}
.wsd2{word-spacing:89.123387px;}
.wse8{word-spacing:91.606107px;}
.wseb{word-spacing:91.616700px;}
.wsec{word-spacing:91.619246px;}
.wsed{word-spacing:91.622700px;}
.wsea{word-spacing:91.635995px;}
.wsd3{word-spacing:91.638750px;}
.wsd4{word-spacing:96.627257px;}
.wsd7{word-spacing:99.078057px;}
.wse5{word-spacing:99.090600px;}
.wsdb{word-spacing:99.092700px;}
.wsdc{word-spacing:106.550007px;}
.wse1{word-spacing:106.553305px;}
.wse0{word-spacing:106.576968px;}
.wsd8{word-spacing:106.579895px;}
.wse4{word-spacing:117.757932px;}
.wse6{word-spacing:117.774600px;}
.wsde{word-spacing:117.787820px;}
.wse3{word-spacing:128.995745px;}
.wse7{word-spacing:140.203670px;}
.wsd6{word-spacing:140.801426px;}
.wsee{word-spacing:151.411595px;}
.wsda{word-spacing:173.797557px;}
.wsdf{word-spacing:173.827445px;}
.ws117{word-spacing:247.471200px;}
.wsf8{word-spacing:274.425638px;}
.ws11c{word-spacing:284.191200px;}
.ws114{word-spacing:290.682000px;}
.ws119{word-spacing:338.218200px;}
.wsfa{word-spacing:344.202163px;}
.wsfb{word-spacing:357.651763px;}
.wsf9{word-spacing:398.000563px;}
.ws11d{word-spacing:399.745800px;}
.ws11a{word-spacing:440.100000px;}
._81{margin-left:-20.914522px;}
._1{margin-left:-11.943245px;}
._0{margin-left:-7.962163px;}
._4{margin-left:-6.635092px;}
._43{margin-left:-5.618906px;}
._9{margin-left:-4.602708px;}
._7{margin-left:-3.096367px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._2{width:2.999654px;}
._80{width:10.653758px;}
._1a{width:11.663269px;}
._8{width:12.971268px;}
._11{width:14.828586px;}
._c{width:16.715542px;}
._f{width:18.134695px;}
._e{width:19.268679px;}
._b{width:20.550989px;}
._15{width:21.713677px;}
._18{width:22.894055px;}
._d{width:23.940288px;}
._16{width:25.823059px;}
._14{width:27.676103px;}
._46{width:29.237836px;}
._10{width:30.545332px;}
._a{width:32.637384px;}
._17{width:34.251419px;}
._44{width:36.224014px;}
._45{width:38.622592px;}
._6b{width:39.698566px;}
._3{width:54.351052px;}
._67{width:62.747260px;}
._69{width:72.365400px;}
._47{width:75.885124px;}
._49{width:89.168529px;}
._77{width:90.289130px;}
._4b{width:91.623683px;}
._61{width:92.908041px;}
._58{width:99.047947px;}
._48{width:102.395603px;}
._4a{width:106.550007px;}
._56{width:113.030554px;}
._4e{width:114.923697px;}
._1e{width:116.312141px;}
._57{width:118.055830px;}
._62{width:122.023800px;}
._50{width:123.765380px;}
._4c{width:126.041959px;}
._78{width:129.106548px;}
._1d{width:130.245926px;}
._2b{width:131.537088px;}
._1f{width:136.392864px;}
._39{width:137.939098px;}
._54{width:140.984681px;}
._4d{width:142.355591px;}
._51{width:146.833655px;}
._4f{width:148.243488px;}
._33{width:151.012109px;}
._76{width:153.863424px;}
._59{width:155.529790px;}
._2e{width:157.252723px;}
._55{width:158.839426px;}
._28{width:159.888845px;}
._52{width:164.771441px;}
._32{width:166.237056px;}
._23{width:168.873178px;}
._2f{width:174.199219px;}
._29{width:176.835341px;}
._25{width:180.278438px;}
._53{width:181.299395px;}
._2d{width:182.699366px;}
._2c{width:187.756416px;}
._79{width:192.759667px;}
._22{width:197.440128px;}
._24{width:199.269274px;}
._5e{width:203.666400px;}
._3f{width:212.772672px;}
._37{width:215.408794px;}
._31{width:217.668326px;}
._3b{width:227.352038px;}
._40{width:229.665370px;}
._21{width:231.709709px;}
._74{width:236.646648px;}
._34{width:241.285824px;}
._3c{width:243.951790px;}
._1b{width:255.452692px;}
._1c{width:267.780422px;}
._63{width:272.824200px;}
._26{width:273.887654px;}
._5f{width:275.653800px;}
._2a{width:287.337254px;}
._70{width:300.840653px;}
._60{width:305.548200px;}
._7a{width:308.910413px;}
._64{width:310.656600px;}
._6e{width:317.894746px;}
._6a{width:330.636600px;}
._75{width:343.814902px;}
._72{width:351.138077px;}
._3a{width:357.006182px;}
._5c{width:363.603600px;}
._7d{width:365.990515px;}
._3e{width:377.610970px;}
._41{width:381.269261px;}
._65{width:383.378400px;}
._73{width:385.214432px;}
._30{width:386.702899px;}
._6f{width:393.589094px;}
._68{width:397.078200px;}
._35{width:411.450163px;}
._66{width:412.538400px;}
._38{width:415.861632px;}
._71{width:417.142550px;}
._6c{width:418.730836px;}
._42{width:423.232013px;}
._3d{width:429.580224px;}
._20{width:447.979277px;}
._36{width:449.324237px;}
._27{width:480.957696px;}
._5d{width:486.723600px;}
._7c{width:519.638746px;}
._6d{width:521.109191px;}
._7b{width:579.916826px;}
._7e{width:614.485325px;}
._5b{width:733.320000px;}
._12{width:953.351482px;}
._19{width:2085.801961px;}
._5a{width:2194.695206px;}
._7f{width:2555.816700px;}
._13{width:2579.726700px;}
.fc4{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(8,117,183);}
.fc0{color:rgb(72,113,53);}
.fsf{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsc{font-size:45.486000px;}
.fs4{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fse{font-size:51.300000px;}
.fs9{font-size:53.798400px;}
.fs12{font-size:54.000000px;}
.fs13{font-size:56.058000px;}
.fsd{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fs11{font-size:60.120000px;}
.fsa{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y142{bottom:-703.490550px;}
.y15e{bottom:-586.486797px;}
.y15d{bottom:-564.346104px;}
.y15c{bottom:-545.086662px;}
.y15b{bottom:-525.917400px;}
.y15a{bottom:-506.657958px;}
.y159{bottom:-487.398516px;}
.y158{bottom:-468.229254px;}
.y157{bottom:-448.969812px;}
.y156{bottom:-429.800550px;}
.y155{bottom:-392.990550px;}
.y154{bottom:-374.000550px;}
.y153{bottom:-355.100550px;}
.y152{bottom:-336.110550px;}
.y151{bottom:-317.120550px;}
.y150{bottom:-298.130400px;}
.y14f{bottom:-279.140400px;}
.y14e{bottom:-260.151450px;}
.y96{bottom:-250.521698px;}
.y14d{bottom:-231.711000px;}
.y14c{bottom:-214.431000px;}
.y14b{bottom:-197.060550px;}
.y14a{bottom:-161.329443px;}
.y149{bottom:-142.070001px;}
.y148{bottom:-122.899236px;}
.y147{bottom:-103.639794px;}
.ya9{bottom:-92.346697px;}
.y146{bottom:-79.970550px;}
.ya8{bottom:-55.154625px;}
.y145{bottom:-43.161000px;}
.ya7{bottom:-38.738625px;}
.y144{bottom:-25.790550px;}
.ya6{bottom:-22.236697px;}
.y143{bottom:-3.290946px;}
.ya5{bottom:-0.943512px;}
.y0{bottom:0.000000px;}
.y173{bottom:2.919450px;}
.yc{bottom:3.425340px;}
.yb{bottom:14.151273px;}
.y2{bottom:15.332677px;}
.y50{bottom:31.890000px;}
.y16b{bottom:62.950341px;}
.y16a{bottom:90.310170px;}
.ye5{bottom:92.038500px;}
.y161{bottom:92.109261px;}
.y164{bottom:100.749207px;}
.y1ee{bottom:102.211500px;}
.y28{bottom:102.823500px;}
.y4f{bottom:103.621500px;}
.y15f{bottom:109.749450px;}
.y16c{bottom:110.200719px;}
.ye4{bottom:110.868000px;}
.y162{bottom:113.079504px;}
.y24f{bottom:114.990000px;}
.y27{bottom:120.711000px;}
.y1ed{bottom:121.041000px;}
.y165{bottom:121.179603px;}
.y4e{bottom:122.449500px;}
.ye3{bottom:129.697500px;}
.y24e{bottom:132.249000px;}
.y160{bottom:135.129441px;}
.y21a{bottom:137.271000px;}
.y26{bottom:138.600000px;}
.y1ec{bottom:139.870500px;}
.y4d{bottom:141.279000px;}
.y163{bottom:142.329396px;}
.y169{bottom:144.579756px;}
.ye2{bottom:148.527000px;}
.y24d{bottom:149.509500px;}
.y116{bottom:150.183000px;}
.y219{bottom:154.845000px;}
.y25{bottom:156.487500px;}
.y16d{bottom:157.451097px;}
.y1eb{bottom:158.700000px;}
.y4c{bottom:160.108500px;}
.y13e{bottom:161.640000px;}
.y24c{bottom:166.770000px;}
.y18d{bottom:166.972500px;}
.ye1{bottom:167.355000px;}
.y115{bottom:169.012500px;}
.y172{bottom:170.679450px;}
.y218{bottom:172.419000px;}
.y24{bottom:174.375000px;}
.y166{bottom:174.640017px;}
.y13d{bottom:176.490000px;}
.y1ea{bottom:177.529500px;}
.y4b{bottom:178.938000px;}
.y1b9{bottom:182.325000px;}
.y24b{bottom:184.030500px;}
.y18c{bottom:185.802000px;}
.ye0{bottom:186.184500px;}
.y114{bottom:187.842000px;}
.y217{bottom:189.993000px;}
.y13c{bottom:191.340000px;}
.y23{bottom:192.264000px;}
.y1e9{bottom:196.359000px;}
.y4a{bottom:197.767500px;}
.y1b8{bottom:201.168000px;}
.y24a{bottom:201.291000px;}
.y16e{bottom:204.610503px;}
.y18b{bottom:204.631500px;}
.ydf{bottom:205.014000px;}
.y13b{bottom:206.190000px;}
.y113{bottom:206.670000px;}
.y216{bottom:207.567000px;}
.y22{bottom:210.151500px;}
.y1e8{bottom:215.188500px;}
.y49{bottom:216.597000px;}
.y249{bottom:218.551500px;}
.y13a{bottom:221.040000px;}
.y82{bottom:222.343500px;}
.y18a{bottom:223.461000px;}
.ydd{bottom:223.843500px;}
.y1b7{bottom:224.809500px;}
.y215{bottom:225.141000px;}
.y112{bottom:225.499500px;}
.yac{bottom:225.564000px;}
.y21{bottom:228.039000px;}
.yde{bottom:229.269000px;}
.y1e7{bottom:234.018000px;}
.y48{bottom:235.426500px;}
.y248{bottom:235.812000px;}
.y139{bottom:235.890000px;}
.y81{bottom:241.173000px;}
.y168{bottom:241.419450px;}
.y189{bottom:242.290500px;}
.ydc{bottom:242.673000px;}
.y214{bottom:242.715000px;}
.y111{bottom:244.329000px;}
.yab{bottom:244.797000px;}
.y1b6{bottom:248.449500px;}
.y138{bottom:250.740000px;}
.y16f{bottom:251.860881px;}
.y1e6{bottom:252.847500px;}
.y247{bottom:253.072500px;}
.y47{bottom:254.256000px;}
.y80{bottom:260.002500px;}
.y213{bottom:260.290500px;}
.y188{bottom:261.120000px;}
.yda{bottom:261.502500px;}
.y110{bottom:263.158500px;}
.yaa{bottom:264.030000px;}
.y137{bottom:265.590000px;}
.ydb{bottom:266.928000px;}
.y246{bottom:270.333000px;}
.y1e5{bottom:271.677000px;}
.y1b5{bottom:272.091000px;}
.y46{bottom:277.569000px;}
.y212{bottom:277.864500px;}
.y7f{bottom:278.832000px;}
.y187{bottom:279.949500px;}
.yd9{bottom:280.332000px;}
.y136{bottom:280.440000px;}
.y10f{bottom:281.988000px;}
.y93{bottom:286.459500px;}
.y245{bottom:287.592000px;}
.y1e4{bottom:290.506500px;}
.y135{bottom:295.290000px;}
.y7e{bottom:297.661500px;}
.y186{bottom:298.779000px;}
.y170{bottom:299.111259px;}
.yd8{bottom:299.161500px;}
.y10e{bottom:300.817500px;}
.y1b4{bottom:303.709500px;}
.y244{bottom:304.852500px;}
.y20{bottom:307.299000px;}
.y1e3{bottom:309.336000px;}
.y134{bottom:310.140000px;}
.y211{bottom:313.371000px;}
.y7d{bottom:316.491000px;}
.yd7{bottom:317.991000px;}
.y10d{bottom:319.647000px;}
.y243{bottom:322.113000px;}
.y133{bottom:324.990000px;}
.y1f{bottom:325.186500px;}
.y1e2{bottom:328.165500px;}
.y210{bottom:332.200500px;}
.y185{bottom:334.429500px;}
.y7c{bottom:335.320500px;}
.y1b3{bottom:336.921000px;}
.y10c{bottom:338.476500px;}
.y167{bottom:338.979738px;}
.y242{bottom:339.373500px;}
.y132{bottom:339.838500px;}
.yd6{bottom:341.304000px;}
.y1e{bottom:343.074000px;}
.y171{bottom:346.271862px;}
.y1e1{bottom:346.995000px;}
.y20f{bottom:351.030000px;}
.y45{bottom:352.719000px;}
.y7b{bottom:354.150000px;}
.y131{bottom:354.688500px;}
.y1b2{bottom:355.750500px;}
.y241{bottom:356.634000px;}
.y184{bottom:357.177000px;}
.y10b{bottom:357.306000px;}
.y1d{bottom:360.963000px;}
.y1e0{bottom:365.824500px;}
.y130{bottom:369.538500px;}
.y20e{bottom:369.859500px;}
.y7a{bottom:372.979500px;}
.y240{bottom:373.894500px;}
.y1b1{bottom:374.580000px;}
.yd5{bottom:374.928000px;}
.y10a{bottom:376.135500px;}
.y183{bottom:380.817000px;}
.y12f{bottom:384.388500px;}
.y1df{bottom:384.654000px;}
.y20d{bottom:388.689000px;}
.y44{bottom:390.109500px;}
.y23f{bottom:391.155000px;}
.y79{bottom:391.809000px;}
.y1b0{bottom:393.409500px;}
.yd4{bottom:393.757500px;}
.y109{bottom:394.965000px;}
.y1c{bottom:399.024000px;}
.y12e{bottom:399.238500px;}
.y1de{bottom:403.483500px;}
.y182{bottom:404.458500px;}
.y20c{bottom:407.518500px;}
.y23e{bottom:408.415500px;}
.y43{bottom:409.566000px;}
.y78{bottom:410.638500px;}
.y1af{bottom:412.239000px;}
.yd3{bottom:412.587000px;}
.y108{bottom:413.794500px;}
.y12d{bottom:414.088500px;}
.y1b{bottom:416.913000px;}
.y1dd{bottom:422.313000px;}
.y23d{bottom:425.674500px;}
.y20b{bottom:426.348000px;}
.y181{bottom:428.098500px;}
.y12c{bottom:428.938500px;}
.y42{bottom:429.022500px;}
.y77{bottom:429.468000px;}
.y141{bottom:430.510035px;}
.y1ae{bottom:431.068500px;}
.yd2{bottom:431.416500px;}
.y107{bottom:432.624000px;}
.y1a{bottom:434.800500px;}
.y140{bottom:440.319450px;}
.y1dc{bottom:441.142500px;}
.y23c{bottom:442.935000px;}
.y12b{bottom:443.788500px;}
.y20a{bottom:445.177500px;}
.y76{bottom:448.297500px;}
.y41{bottom:448.480500px;}
.y1ad{bottom:449.898000px;}
.yd0{bottom:450.246000px;}
.y106{bottom:451.453500px;}
.y180{bottom:451.740000px;}
.yd1{bottom:455.670000px;}
.y12a{bottom:458.638500px;}
.y1db{bottom:459.972000px;}
.y23b{bottom:460.195500px;}
.y75{bottom:467.127000px;}
.y40{bottom:467.937000px;}
.y209{bottom:468.489000px;}
.y1ac{bottom:468.727500px;}
.ycf{bottom:469.075500px;}
.y105{bottom:470.283000px;}
.y19{bottom:470.622000px;}
.y129{bottom:473.488500px;}
.y17f{bottom:475.380000px;}
.y23a{bottom:477.456000px;}
.y1da{bottom:478.801500px;}
.y74{bottom:485.956500px;}
.y3f{bottom:487.393500px;}
.y1ab{bottom:487.557000px;}
.yce{bottom:487.905000px;}
.y128{bottom:488.338500px;}
.y18{bottom:488.509500px;}
.y104{bottom:489.112500px;}
.y239{bottom:494.716500px;}
.y1d9{bottom:497.631000px;}
.y17e{bottom:499.021500px;}
.y208{bottom:502.113000px;}
.y127{bottom:503.188500px;}
.y73{bottom:504.786000px;}
.y1aa{bottom:506.386500px;}
.y17{bottom:506.397000px;}
.ycd{bottom:506.734500px;}
.y3e{bottom:506.851500px;}
.y103{bottom:507.942000px;}
.y238{bottom:511.977000px;}
.y1d8{bottom:516.460500px;}
.y126{bottom:518.038500px;}
.y207{bottom:520.942500px;}
.y72{bottom:523.615500px;}
.y1a9{bottom:525.216000px;}
.ycc{bottom:525.564000px;}
.y3d{bottom:526.308000px;}
.y102{bottom:526.771500px;}
.y237{bottom:529.237500px;}
.y17d{bottom:530.640000px;}
.y125{bottom:532.888500px;}
.y1d7{bottom:535.290000px;}
.ya4{bottom:537.535847px;}
.y206{bottom:539.772000px;}
.y16{bottom:542.218500px;}
.y71{bottom:542.445000px;}
.y1a8{bottom:544.045500px;}
.ycb{bottom:544.393500px;}
.y101{bottom:545.601000px;}
.y3c{bottom:545.766000px;}
.y236{bottom:546.498000px;}
.y124{bottom:547.738500px;}
.y17c{bottom:549.873000px;}
.y1d6{bottom:554.118000px;}
.ya3{bottom:555.748073px;}
.y205{bottom:558.601500px;}
.y15{bottom:560.106000px;}
.y70{bottom:561.274500px;}
.y1a7{bottom:562.875000px;}
.yca{bottom:563.223000px;}
.y235{bottom:563.758500px;}
.y100{bottom:564.430500px;}
.y3b{bottom:565.222500px;}
.y17b{bottom:569.106000px;}
.y1d5{bottom:572.947500px;}
.y123{bottom:573.249000px;}
.ya2{bottom:574.044543px;}
.y204{bottom:577.431000px;}
.y14{bottom:577.993500px;}
.y6f{bottom:580.104000px;}
.y234{bottom:581.017500px;}
.y1a6{bottom:581.704500px;}
.yc9{bottom:582.052500px;}
.yff{bottom:583.260000px;}
.y3a{bottom:584.679000px;}
.y1d4{bottom:591.777000px;}
.ya1{bottom:592.341013px;}
.y122{bottom:592.482000px;}
.y13{bottom:595.882500px;}
.y203{bottom:596.260500px;}
.y233{bottom:598.278000px;}
.y6e{bottom:598.932000px;}
.y1a5{bottom:600.534000px;}
.yc8{bottom:600.880500px;}
.yfe{bottom:602.089500px;}
.y39{bottom:604.137000px;}
.y17a{bottom:604.716000px;}
.ya0{bottom:610.551812px;}
.y1d3{bottom:610.606500px;}
.y12{bottom:613.770000px;}
.y202{bottom:615.090000px;}
.y232{bottom:615.538500px;}
.y6d{bottom:617.761500px;}
.y1a4{bottom:619.363500px;}
.yc7{bottom:619.710000px;}
.y179{bottom:623.545500px;}
.y38{bottom:623.593500px;}
.y121{bottom:628.092000px;}
.y9f{bottom:628.848282px;}
.y1d2{bottom:629.436000px;}
.y11{bottom:631.657500px;}
.y231{bottom:632.799000px;}
.y201{bottom:633.919500px;}
.y6c{bottom:636.591000px;}
.yfd{bottom:636.609000px;}
.y1a3{bottom:638.193000px;}
.yc6{bottom:638.539500px;}
.y178{bottom:642.375000px;}
.y120{bottom:646.921500px;}
.y9e{bottom:647.144752px;}
.y1d1{bottom:648.265500px;}
.y10{bottom:649.546500px;}
.y230{bottom:650.059500px;}
.y200{bottom:652.749000px;}
.y6b{bottom:655.420500px;}
.y1a2{bottom:657.021000px;}
.yc5{bottom:657.369000px;}
.y37{bottom:660.546000px;}
.y177{bottom:661.204500px;}
.y9d{bottom:665.356979px;}
.y11f{bottom:665.751000px;}
.y1d0{bottom:667.095000px;}
.y22f{bottom:667.320000px;}
.yf{bottom:667.434000px;}
.yfc{bottom:671.130000px;}
.y1ff{bottom:671.578500px;}
.y6a{bottom:674.250000px;}
.yc4{bottom:676.198500px;}
.y36{bottom:676.686000px;}
.y9c{bottom:683.653449px;}
.y176{bottom:684.517500px;}
.y11e{bottom:684.580500px;}
.ye{bottom:685.321500px;}
.y1cf{bottom:685.924500px;}
.yfb{bottom:689.959500px;}
.y1fe{bottom:690.408000px;}
.y1a1{bottom:692.671500px;}
.y69{bottom:693.079500px;}
.yc3{bottom:695.028000px;}
.y35{bottom:697.164000px;}
.y22e{bottom:701.841000px;}
.y9b{bottom:701.865675px;}
.yd{bottom:703.210500px;}
.y11d{bottom:703.410000px;}
.y1ce{bottom:704.754000px;}
.yfa{bottom:708.789000px;}
.y1fc{bottom:709.237500px;}
.y68{bottom:711.909000px;}
.y34{bottom:713.304000px;}
.yc2{bottom:713.857500px;}
.y1fd{bottom:714.661500px;}
.y1a0{bottom:715.419000px;}
.y22d{bottom:719.100000px;}
.y9a{bottom:720.162145px;}
.y175{bottom:720.922500px;}
.y11c{bottom:722.239500px;}
.y1cd{bottom:723.583500px;}
.y19f{bottom:723.639000px;}
.y33{bottom:725.104500px;}
.ya{bottom:725.581464px;}
.yf9{bottom:727.618500px;}
.y1fb{bottom:728.067000px;}
.y67{bottom:730.738500px;}
.yc1{bottom:732.687000px;}
.y22c{bottom:736.360500px;}
.y99{bottom:738.458615px;}
.y174{bottom:740.155500px;}
.y11b{bottom:741.067500px;}
.y1cc{bottom:742.413000px;}
.y32{bottom:745.584000px;}
.yf8{bottom:746.448000px;}
.y1fa{bottom:746.896500px;}
.y66{bottom:749.568000px;}
.y22b{bottom:753.621000px;}
.y19e{bottom:755.497500px;}
.yc0{bottom:756.000000px;}
.y98{bottom:756.669414px;}
.y11a{bottom:759.897000px;}
.y1cb{bottom:761.242500px;}
.y31{bottom:761.722500px;}
.y13f{bottom:762.583500px;}
.y19d{bottom:763.717500px;}
.yf7{bottom:765.277500px;}
.y1f8{bottom:765.726000px;}
.y65{bottom:768.397500px;}
.y22a{bottom:770.881500px;}
.y1f9{bottom:771.150000px;}
.y30{bottom:773.523000px;}
.y97{bottom:774.965884px;}
.y118{bottom:778.726500px;}
.y1ca{bottom:780.072000px;}
.yf6{bottom:784.107000px;}
.y119{bottom:784.152000px;}
.y1f7{bottom:784.555500px;}
.y64{bottom:787.227000px;}
.y229{bottom:788.142000px;}
.y2f{bottom:794.002500px;}
.y19c{bottom:795.577500px;}
.y117{bottom:797.556000px;}
.y1c9{bottom:798.901500px;}
.yf5{bottom:802.936500px;}
.y1f6{bottom:803.385000px;}
.y19b{bottom:803.796000px;}
.ybf{bottom:804.301500px;}
.y228{bottom:805.402500px;}
.y2e{bottom:805.801500px;}
.y63{bottom:806.056500px;}
.y92{bottom:816.385500px;}
.y1c8{bottom:817.731000px;}
.ybe{bottom:820.740000px;}
.yf4{bottom:821.766000px;}
.y1f5{bottom:822.214500px;}
.y227{bottom:822.663000px;}
.y62{bottom:824.886000px;}
.y2d{bottom:826.281000px;}
.y95{bottom:826.778858px;}
.y91{bottom:835.215000px;}
.y19a{bottom:835.656000px;}
.y94{bottom:836.097802px;}
.y1c7{bottom:836.560500px;}
.ybd{bottom:837.178500px;}
.y2c{bottom:838.081500px;}
.y226{bottom:839.923500px;}
.yf3{bottom:840.595500px;}
.y1f4{bottom:841.044000px;}
.y61{bottom:843.715500px;}
.y199{bottom:843.876000px;}
.ybc{bottom:853.617000px;}
.y90{bottom:854.044500px;}
.y1c6{bottom:855.390000px;}
.y225{bottom:857.184000px;}
.y2b{bottom:858.559500px;}
.yf2{bottom:859.425000px;}
.y1f3{bottom:859.873500px;}
.y60{bottom:862.545000px;}
.ybb{bottom:870.055500px;}
.y2a{bottom:870.360000px;}
.y8f{bottom:872.874000px;}
.y1c5{bottom:874.219500px;}
.y224{bottom:874.443000px;}
.y198{bottom:875.736000px;}
.yf1{bottom:878.254500px;}
.y1f2{bottom:878.703000px;}
.y5f{bottom:881.374500px;}
.y197{bottom:883.954500px;}
.yba{bottom:886.492500px;}
.y29{bottom:890.839500px;}
.y8e{bottom:891.703500px;}
.y1c4{bottom:893.049000px;}
.yf0{bottom:897.084000px;}
.y1f1{bottom:897.532500px;}
.y5e{bottom:900.204000px;}
.yb9{bottom:902.931000px;}
.y223{bottom:908.964000px;}
.y8d{bottom:910.533000px;}
.y1c3{bottom:911.878500px;}
.y196{bottom:915.814500px;}
.y1f0{bottom:916.362000px;}
.y5d{bottom:919.033500px;}
.yb8{bottom:919.369500px;}
.yef{bottom:920.397000px;}
.y195{bottom:924.033000px;}
.y222{bottom:926.224500px;}
.y8c{bottom:929.362500px;}
.y9{bottom:929.400000px;}
.y1c2{bottom:930.708000px;}
.y1ef{bottom:935.191500px;}
.yb7{bottom:935.808000px;}
.y5c{bottom:937.863000px;}
.y221{bottom:943.485000px;}
.y8b{bottom:948.192000px;}
.y8{bottom:948.228000px;}
.y1c1{bottom:949.537500px;}
.yb6{bottom:952.246500px;}
.yee{bottom:954.021000px;}
.y194{bottom:955.893000px;}
.y5b{bottom:956.692500px;}
.y193{bottom:964.113000px;}
.y220{bottom:965.229000px;}
.y8a{bottom:967.021500px;}
.y7{bottom:967.057500px;}
.y1c0{bottom:968.367000px;}
.yb5{bottom:968.685000px;}
.yec{bottom:972.849000px;}
.y59{bottom:975.522000px;}
.yed{bottom:978.274500px;}
.y5a{bottom:980.946000px;}
.yb4{bottom:985.123500px;}
.y89{bottom:985.851000px;}
.y1bf{bottom:987.196500px;}
.yeb{bottom:991.678500px;}
.y58{bottom:994.351500px;}
.y192{bottom:995.973000px;}
.y21f{bottom:998.853000px;}
.yb3{bottom:1001.562000px;}
.y191{bottom:1004.191500px;}
.y88{bottom:1004.680500px;}
.y1be{bottom:1006.026000px;}
.yea{bottom:1010.508000px;}
.y6{bottom:1012.954500px;}
.y57{bottom:1013.181000px;}
.yb2{bottom:1018.000500px;}
.y87{bottom:1023.510000px;}
.y1bd{bottom:1024.855500px;}
.y21e{bottom:1025.392500px;}
.ye9{bottom:1029.337500px;}
.y56{bottom:1032.010500px;}
.yb1{bottom:1034.439000px;}
.y253{bottom:1035.615000px;}
.y190{bottom:1036.051500px;}
.y5{bottom:1041.199500px;}
.y86{bottom:1042.339500px;}
.y1bc{bottom:1043.685000px;}
.ye8{bottom:1048.167000px;}
.y55{bottom:1050.840000px;}
.y21d{bottom:1051.933500px;}
.y252{bottom:1052.875500px;}
.yaf{bottom:1058.079000px;}
.y85{bottom:1061.169000px;}
.y1bb{bottom:1062.513000px;}
.yae{bottom:1066.297500px;}
.ye7{bottom:1066.996500px;}
.y18f{bottom:1067.671500px;}
.y4{bottom:1069.443000px;}
.y21c{bottom:1069.507500px;}
.y54{bottom:1069.669500px;}
.y251{bottom:1070.134500px;}
.yb0{bottom:1074.517500px;}
.y1ba{bottom:1081.342500px;}
.y84{bottom:1084.482000px;}
.ye6{bottom:1085.826000px;}
.y18e{bottom:1086.904500px;}
.y21b{bottom:1087.081500px;}
.y250{bottom:1087.395000px;}
.y53{bottom:1088.497500px;}
.y3{bottom:1097.688000px;}
.y83{bottom:1104.655500px;}
.yad{bottom:1106.137500px;}
.y52{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y51{bottom:1173.397500px;}
.h22{height:21.944879px;}
.h23{height:22.106318px;}
.h24{height:22.112318px;}
.h9{height:25.508090px;}
.he{height:26.110157px;}
.hc{height:30.461558px;}
.hd{height:30.670772px;}
.h17{height:31.526842px;}
.h2d{height:31.912207px;}
.h20{height:33.072749px;}
.hb{height:33.112997px;}
.h1a{height:33.203892px;}
.h19{height:33.359361px;}
.ha{height:34.199443px;}
.hf{height:34.813397px;}
.h27{height:34.951465px;}
.h15{height:35.052500px;}
.h26{height:35.115117px;}
.h2c{height:35.278770px;}
.h1d{height:37.447998px;}
.h1c{height:37.623340px;}
.h2f{height:37.658880px;}
.h10{height:38.896243px;}
.h30{height:39.057638px;}
.h11{height:39.165235px;}
.h2a{height:39.418945px;}
.h12{height:39.434227px;}
.h29{height:39.603516px;}
.h16{height:41.482876px;}
.h1b{height:41.692104px;}
.h2e{height:41.842920px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.h2b{height:43.622227px;}
.h4{height:43.815515px;}
.h28{height:43.886426px;}
.h2{height:50.930649px;}
.h33{height:53.228842px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h21{height:54.774749px;}
.h1e{height:71.776243px;}
.h32{height:72.039235px;}
.h31{height:72.045235px;}
.h5{height:77.792486px;}
.h6{height:78.115277px;}
.h3{height:102.503837px;}
.h1f{height:104.650243px;}
.h25{height:357.016500px;}
.h18{height:518.244000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:158.602199px;}
.w5{width:587.158500px;}
.w4{width:695.984677px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6d{left:-99.429000px;}
.x75{left:-71.529000px;}
.x6f{left:-67.569000px;}
.x74{left:-64.869000px;}
.x73{left:-60.639000px;}
.x77{left:-46.959000px;}
.x76{left:-35.439000px;}
.x41{left:-24.589373px;}
.x0{left:0.000000px;}
.x72{left:4.341000px;}
.x45{left:5.677627px;}
.x83{left:11.901000px;}
.x82{left:19.642026px;}
.x81{left:25.672512px;}
.x4{left:29.274117px;}
.x71{left:30.981000px;}
.x3{left:52.654500px;}
.x1{left:54.000000px;}
.x4e{left:62.967000px;}
.x2{left:64.073402px;}
.x93{left:66.682500px;}
.x80{left:68.152845px;}
.x89{left:73.665000px;}
.x88{left:80.262000px;}
.x94{left:83.494500px;}
.x87{left:84.517500px;}
.x47{left:85.890000px;}
.x4a{left:95.532000px;}
.x40{left:98.466998px;}
.x78{left:100.011000px;}
.x8a{left:109.494000px;}
.x6b{left:112.023000px;}
.x70{left:128.001594px;}
.x6a{left:137.617500px;}
.x79{left:141.591189px;}
.x48{left:143.157000px;}
.x86{left:149.916000px;}
.x6c{left:152.878500px;}
.x43{left:161.202520px;}
.x46{left:180.610628px;}
.x7a{left:186.320685px;}
.x8b{left:189.070500px;}
.x42{left:191.467992px;}
.x7b{left:222.140910px;}
.x91{left:248.434500px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.x95{left:258.792000px;}
.x92{left:261.612000px;}
.x11{left:263.374500px;}
.x7c{left:267.951297px;}
.x6{left:271.221000px;}
.x49{left:272.851500px;}
.x96{left:275.529000px;}
.x9{left:282.786000px;}
.x84{left:285.231000px;}
.x12{left:287.464500px;}
.x13{left:294.271500px;}
.x5c{left:297.690000px;}
.x5a{left:306.561000px;}
.x5d{left:308.043000px;}
.x5f{left:309.316500px;}
.xaa{left:310.602000px;}
.x8{left:312.436500px;}
.x97{left:316.755000px;}
.x8e{left:325.458000px;}
.x9c{left:328.576500px;}
.x98{left:329.829000px;}
.x8f{left:335.748000px;}
.x7d{left:346.881477px;}
.x14{left:348.436500px;}
.x35{left:350.496000px;}
.x15{left:355.243500px;}
.x36{left:357.967500px;}
.x37{left:361.651500px;}
.x85{left:371.685000px;}
.x16{left:376.021500px;}
.x38{left:380.280000px;}
.x17{left:383.493000px;}
.x3c{left:387.124500px;}
.x7e{left:388.461666px;}
.x4c{left:392.443500px;}
.x39{left:395.223000px;}
.x2d{left:398.457000px;}
.x3d{left:402.069000px;}
.x2e{left:405.928500px;}
.x4b{left:425.536500px;}
.x7f{left:433.011612px;}
.x58{left:452.875500px;}
.x59{left:459.681000px;}
.xc{left:478.815000px;}
.x67{left:484.258500px;}
.xd{left:486.286500px;}
.xe{left:494.070000px;}
.xf{left:497.881500px;}
.x1a{left:501.273000px;}
.x10{left:505.353000px;}
.x9f{left:507.220500px;}
.x1b{left:508.744500px;}
.x28{left:512.221500px;}
.x31{left:515.292000px;}
.xa{left:518.806500px;}
.x50{left:521.167500px;}
.xb{left:526.278000px;}
.x32{left:530.235000px;}
.x33{left:534.034500px;}
.x60{left:536.538000px;}
.x34{left:548.979000px;}
.x20{left:553.156500px;}
.x21{left:560.628000px;}
.x18{left:563.352000px;}
.x61{left:564.447000px;}
.x19{left:570.159000px;}
.x29{left:574.830000px;}
.x62{left:580.642500px;}
.x2a{left:582.303000px;}
.x9b{left:583.743000px;}
.x2b{left:586.072500px;}
.x5e{left:588.879000px;}
.x63{left:592.356000px;}
.x1c{left:596.143500px;}
.x6e{left:597.981036px;}
.x9d{left:599.022000px;}
.x2c{left:601.015500px;}
.x1d{left:603.615000px;}
.xa2{left:605.595000px;}
.x64{left:608.551500px;}
.x1e{left:610.938000px;}
.xa3{left:612.402000px;}
.x1f{left:618.409500px;}
.x65{left:620.265000px;}
.x9e{left:621.270000px;}
.x22{left:624.373500px;}
.x23{left:631.846500px;}
.x66{left:636.460500px;}
.x3e{left:639.814500px;}
.x3f{left:647.287500px;}
.x2f{left:651.163500px;}
.xa4{left:655.104000px;}
.x30{left:658.635000px;}
.xa5{left:661.911000px;}
.x99{left:665.340000px;}
.x9a{left:672.811500px;}
.xa6{left:681.349500px;}
.x3a{left:687.817500px;}
.xa7{left:696.294000px;}
.x44{left:697.714217px;}
.x3b{left:702.762000px;}
.x5b{left:712.837500px;}
.x68{left:717.645000px;}
.x69{left:724.071000px;}
.x8c{left:726.592500px;}
.x4d{left:728.439000px;}
.x8d{left:736.881000px;}
.xac{left:737.908500px;}
.xa8{left:741.703500px;}
.xa0{left:751.207500px;}
.xa1{left:758.014500px;}
.xad{left:764.808000px;}
.x51{left:767.653500px;}
.x52{left:775.126500px;}
.x53{left:778.936500px;}
.x90{left:785.134500px;}
.xab{left:790.152000px;}
.xaf{left:791.268000px;}
.x54{left:793.881000px;}
.x57{left:799.216500px;}
.x55{left:802.414500px;}
.xae{left:810.370500px;}
.x56{left:812.589000px;}
.x24{left:813.886500px;}
.xb0{left:816.643500px;}
.x4f{left:817.959000px;}
.x25{left:821.359500px;}
.x26{left:825.169500px;}
.x27{left:832.642500px;}
.xa9{left:837.717000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-10.016000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.226667pt;}
.ls4f{letter-spacing:-0.268800pt;}
.ls23{letter-spacing:-0.177688pt;}
.ls5a{letter-spacing:-0.128256pt;}
.ls1d{letter-spacing:-0.126920pt;}
.ls5c{letter-spacing:-0.119168pt;}
.ls20{letter-spacing:-0.116766pt;}
.ls56{letter-spacing:-0.112224pt;}
.ls26{letter-spacing:-0.106613pt;}
.ls1f{letter-spacing:-0.101536pt;}
.ls22{letter-spacing:-0.086306pt;}
.ls54{letter-spacing:-0.081600pt;}
.ls1a{letter-spacing:-0.081229pt;}
.ls4a{letter-spacing:-0.080864pt;}
.ls5d{letter-spacing:-0.076608pt;}
.ls55{letter-spacing:-0.074816pt;}
.ls18{letter-spacing:-0.072778pt;}
.ls1b{letter-spacing:-0.071075pt;}
.ls53{letter-spacing:-0.067200pt;}
.ls58{letter-spacing:-0.064128pt;}
.ls2a{letter-spacing:-0.063840pt;}
.ls27{letter-spacing:-0.060922pt;}
.ls25{letter-spacing:-0.050768pt;}
.ls2b{letter-spacing:-0.045600pt;}
.ls59{letter-spacing:-0.042752pt;}
.ls50{letter-spacing:-0.037408pt;}
.ls4e{letter-spacing:-0.033600pt;}
.ls21{letter-spacing:-0.030461pt;}
.ls52{letter-spacing:-0.024000pt;}
.ls4c{letter-spacing:-0.019200pt;}
.ls4b{letter-spacing:-0.017024pt;}
.ls1e{letter-spacing:-0.015230pt;}
.ls49{letter-spacing:-0.012768pt;}
.ls1c{letter-spacing:-0.010154pt;}
.ls19{letter-spacing:-0.008086pt;}
.ls57{letter-spacing:-0.005344pt;}
.ls24{letter-spacing:-0.005077pt;}
.ls51{letter-spacing:-0.004800pt;}
.ls29{letter-spacing:-0.004560pt;}
.ls17{letter-spacing:-0.004043pt;}
.lsa{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.000027pt;}
.ls65{letter-spacing:0.000921pt;}
.ls6d{letter-spacing:0.000980pt;}
.ls66{letter-spacing:0.001026pt;}
.ls6f{letter-spacing:0.001207pt;}
.ls6{letter-spacing:0.001735pt;}
.ls6c{letter-spacing:0.002189pt;}
.ls0{letter-spacing:0.002422pt;}
.ls70{letter-spacing:0.003055pt;}
.ls7{letter-spacing:0.003100pt;}
.ls32{letter-spacing:0.004800pt;}
.lsf{letter-spacing:0.005077pt;}
.ls3c{letter-spacing:0.009600pt;}
.ls10{letter-spacing:0.010154pt;}
.ls36{letter-spacing:0.010688pt;}
.ls11{letter-spacing:0.013680pt;}
.ls3a{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.018240pt;}
.ls39{letter-spacing:0.019200pt;}
.ls16{letter-spacing:0.022800pt;}
.ls3d{letter-spacing:0.024000pt;}
.ls3e{letter-spacing:0.028800pt;}
.lse{letter-spacing:0.030461pt;}
.ls15{letter-spacing:0.031920pt;}
.ls35{letter-spacing:0.032064pt;}
.ls33{letter-spacing:0.033600pt;}
.ls38{letter-spacing:0.042752pt;}
.ls3b{letter-spacing:0.043200pt;}
.ls40{letter-spacing:0.048096pt;}
.ls43{letter-spacing:0.051072pt;}
.ls3f{letter-spacing:0.052800pt;}
.ls37{letter-spacing:0.053440pt;}
.ls12{letter-spacing:0.054720pt;}
.ls28{letter-spacing:0.065998pt;}
.ls34{letter-spacing:0.074816pt;}
.ls41{letter-spacing:0.110656pt;}
.ls31{letter-spacing:0.153216pt;}
.lsd{letter-spacing:0.153642pt;}
.lsc{letter-spacing:0.161728pt;}
.ls42{letter-spacing:0.187264pt;}
.ls13{letter-spacing:0.460560pt;}
.ls4d{letter-spacing:0.480000pt;}
.ls46{letter-spacing:0.570745pt;}
.ls45{letter-spacing:0.576078pt;}
.ls61{letter-spacing:0.595447pt;}
.ls5e{letter-spacing:0.803806pt;}
.lsb{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls64{letter-spacing:3.163733pt;}
.ls4{letter-spacing:9.298933pt;}
.ls9{letter-spacing:10.626533pt;}
.ls72{letter-spacing:11.757218pt;}
.ls69{letter-spacing:11.892952pt;}
.ls5f{letter-spacing:11.912663pt;}
.ls68{letter-spacing:11.954133pt;}
.ls44{letter-spacing:11.956267pt;}
.ls67{letter-spacing:11.959467pt;}
.ls6a{letter-spacing:12.050198pt;}
.ls2e{letter-spacing:12.060178pt;}
.ls71{letter-spacing:12.077123pt;}
.ls30{letter-spacing:12.187208pt;}
.ls48{letter-spacing:12.998720pt;}
.ls2d{letter-spacing:13.282926pt;}
.ls2c{letter-spacing:13.283543pt;}
.ls1{letter-spacing:13.283733pt;}
.ls2f{letter-spacing:13.555409pt;}
.ls63{letter-spacing:13.923096pt;}
.ls62{letter-spacing:13.950400pt;}
.ls6e{letter-spacing:14.823467pt;}
.ls6b{letter-spacing:15.303456pt;}
.ls5{letter-spacing:55.787733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls60{letter-spacing:169.262302pt;}
.ls5b{letter-spacing:754.642272pt;}
.wsf1{word-spacing:-53.440000pt;}
.wsf0{word-spacing:-48.000000pt;}
.wsf4{word-spacing:-42.747264pt;}
.wsf2{word-spacing:-13.360000pt;}
.ws4{word-spacing:-13.283467pt;}
.ws15b{word-spacing:-11.955200pt;}
.wsef{word-spacing:-10.801728pt;}
.ws18{word-spacing:-10.626800pt;}
.ws6f{word-spacing:-10.269728pt;}
.ws3{word-spacing:-10.095467pt;}
.wsf3{word-spacing:-9.729216pt;}
.wsf5{word-spacing:-9.541952pt;}
.wsc{word-spacing:-9.298400pt;}
.wscb{word-spacing:-3.188032pt;}
.ws10b{word-spacing:-2.755200pt;}
.ws10c{word-spacing:-2.740800pt;}
.ws82{word-spacing:-2.685627pt;}
.ws83{word-spacing:-2.604398pt;}
.ws139{word-spacing:-2.550426pt;}
.ws12d{word-spacing:-2.497292pt;}
.ws60{word-spacing:-2.391024pt;}
.ws8b{word-spacing:-2.360712pt;}
.ws8a{word-spacing:-2.355635pt;}
.ws87{word-spacing:-2.045950pt;}
.ws86{word-spacing:-1.939338pt;}
.ws7{word-spacing:-1.696326pt;}
.ws138{word-spacing:-1.540882pt;}
.wsb6{word-spacing:-1.487748pt;}
.ws131{word-spacing:-1.454366pt;}
.ws12f{word-spacing:-1.434614pt;}
.ws15a{word-spacing:-1.386803pt;}
.ws142{word-spacing:-1.328347pt;}
.ws47{word-spacing:-1.275213pt;}
.wsb3{word-spacing:-1.245210pt;}
.wsb4{word-spacing:-1.222079pt;}
.ws6{word-spacing:-1.175671pt;}
.wsbe{word-spacing:-1.168945pt;}
.ws10e{word-spacing:-1.161600pt;}
.ws10d{word-spacing:-1.132800pt;}
.wsca{word-spacing:-1.115811pt;}
.ws10f{word-spacing:-1.113600pt;}
.ws9e{word-spacing:-1.062677pt;}
.wsc9{word-spacing:-1.009543pt;}
.ws6c{word-spacing:-0.903276pt;}
.wsa2{word-spacing:-0.797008pt;}
.ws159{word-spacing:-0.717312pt;}
.ws14b{word-spacing:-0.690740pt;}
.ws4e{word-spacing:-0.637606pt;}
.ws6e{word-spacing:-0.584473pt;}
.ws123{word-spacing:-0.555776pt;}
.ws122{word-spacing:-0.448896pt;}
.ws14e{word-spacing:-0.425071pt;}
.ws5c{word-spacing:-0.318803pt;}
.ws105{word-spacing:-0.315296pt;}
.ws125{word-spacing:-0.293920pt;}
.ws29{word-spacing:-0.286925pt;}
.ws62{word-spacing:-0.277919pt;}
.ws65{word-spacing:-0.265669pt;}
.ws64{word-spacing:-0.257087pt;}
.ws26{word-spacing:-0.239104pt;}
.wsff{word-spacing:-0.234080pt;}
.ws72{word-spacing:-0.226419pt;}
.ws45{word-spacing:-0.212535pt;}
.ws158{word-spacing:-0.191283pt;}
.ws124{word-spacing:-0.176352pt;}
.ws141{word-spacing:-0.162583pt;}
.ws36{word-spacing:-0.159402pt;}
.ws143{word-spacing:-0.153316pt;}
.ws144{word-spacing:-0.149002pt;}
.ws9{word-spacing:-0.148774pt;}
.ws152{word-spacing:-0.143462pt;}
.ws150{word-spacing:-0.126887pt;}
.ws129{word-spacing:-0.112224pt;}
.ws58{word-spacing:-0.106268pt;}
.wsf6{word-spacing:-0.095642pt;}
.ws71{word-spacing:-0.064691pt;}
.wsfe{word-spacing:-0.063840pt;}
.ws5{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.042507pt;}
.wsd{word-spacing:-0.037194pt;}
.ws17a{word-spacing:-0.021700pt;}
.ws1f{word-spacing:-0.013619pt;}
.ws1{word-spacing:-0.003712pt;}
.wsad{word-spacing:-0.000967pt;}
.ws0{word-spacing:0.000000pt;}
.ws172{word-spacing:0.001519pt;}
.ws8c{word-spacing:0.015230pt;}
.ws109{word-spacing:0.026720pt;}
.ws10a{word-spacing:0.037408pt;}
.ws2a{word-spacing:0.047821pt;}
.ws32{word-spacing:0.053134pt;}
.ws30{word-spacing:0.064152pt;}
.ws7d{word-spacing:0.076152pt;}
.ws16e{word-spacing:0.090507pt;}
.ws156{word-spacing:0.095642pt;}
.ws170{word-spacing:0.103632pt;}
.ws11e{word-spacing:0.105600pt;}
.ws2f{word-spacing:0.106268pt;}
.ws103{word-spacing:0.124800pt;}
.ws11b{word-spacing:0.129600pt;}
.ws96{word-spacing:0.132240pt;}
.ws118{word-spacing:0.134400pt;}
.ws95{word-spacing:0.136800pt;}
.ws115{word-spacing:0.139200pt;}
.ws22{word-spacing:0.143462pt;}
.ws110{word-spacing:0.144000pt;}
.ws111{word-spacing:0.148800pt;}
.ws102{word-spacing:0.153600pt;}
.ws54{word-spacing:0.159402pt;}
.ws7e{word-spacing:0.167534pt;}
.ws112{word-spacing:0.182400pt;}
.wse{word-spacing:0.185968pt;}
.ws2b{word-spacing:0.191283pt;}
.ws3f{word-spacing:0.212535pt;}
.ws113{word-spacing:0.225600pt;}
.ws27{word-spacing:0.239104pt;}
.ws116{word-spacing:0.240000pt;}
.ws10{word-spacing:0.260355pt;}
.ws3a{word-spacing:0.265669pt;}
.ws15c{word-spacing:0.286925pt;}
.ws164{word-spacing:0.287737pt;}
.ws56{word-spacing:0.318803pt;}
.ws99{word-spacing:0.371937pt;}
.ws15d{word-spacing:0.382566pt;}
.ws8e{word-spacing:0.405840pt;}
.wsa8{word-spacing:0.425071pt;}
.ws104{word-spacing:0.427200pt;}
.ws154{word-spacing:0.430387pt;}
.ws8d{word-spacing:0.446880pt;}
.ws8f{word-spacing:0.460560pt;}
.ws90{word-spacing:0.465120pt;}
.wsfd{word-spacing:0.478205pt;}
.ws100{word-spacing:0.499200pt;}
.ws14d{word-spacing:0.501867pt;}
.ws101{word-spacing:0.513600pt;}
.wscd{word-spacing:0.573850pt;}
.ws49{word-spacing:0.637606pt;}
.ws12c{word-spacing:0.690740pt;}
.wsaa{word-spacing:0.743874pt;}
.ws11f{word-spacing:0.796256pt;}
.wsc8{word-spacing:0.797008pt;}
.wscc{word-spacing:0.812954pt;}
.ws148{word-spacing:0.850142pt;}
.ws33{word-spacing:0.900753pt;}
.ws35{word-spacing:0.903276pt;}
.ws74{word-spacing:0.964592pt;}
.ws37{word-spacing:1.009543pt;}
.ws108{word-spacing:1.031392pt;}
.ws75{word-spacing:1.066128pt;}
.ws73{word-spacing:1.076282pt;}
.ws5b{word-spacing:1.115811pt;}
.wsa4{word-spacing:1.168945pt;}
.ws69{word-spacing:1.222079pt;}
.ws39{word-spacing:1.275213pt;}
.ws52{word-spacing:1.328347pt;}
.ws153{word-spacing:1.434624pt;}
.wsa9{word-spacing:1.594016pt;}
.ws76{word-spacing:1.609346pt;}
.ws4b{word-spacing:1.700284pt;}
.ws77{word-spacing:1.726112pt;}
.wsf{word-spacing:1.785293pt;}
.wsa3{word-spacing:1.806551pt;}
.ws55{word-spacing:1.859685pt;}
.ws92{word-spacing:1.951680pt;}
.ws91{word-spacing:1.965360pt;}
.ws4f{word-spacing:2.019087pt;}
.ws94{word-spacing:2.029200pt;}
.ws93{word-spacing:2.047440pt;}
.wsbf{word-spacing:2.072221pt;}
.ws9f{word-spacing:2.125355pt;}
.ws13a{word-spacing:2.178489pt;}
.ws134{word-spacing:2.231622pt;}
.ws2c{word-spacing:2.295398pt;}
.ws88{word-spacing:2.325174pt;}
.ws9d{word-spacing:2.337890pt;}
.ws155{word-spacing:2.343219pt;}
.wsc0{word-spacing:2.391024pt;}
.wsa7{word-spacing:2.444158pt;}
.wsc5{word-spacing:2.497292pt;}
.ws85{word-spacing:2.502862pt;}
.ws84{word-spacing:2.528246pt;}
.ws42{word-spacing:2.550426pt;}
.ws12a{word-spacing:2.560045pt;}
.wsa5{word-spacing:2.603559pt;}
.ws120{word-spacing:2.607872pt;}
.ws162{word-spacing:2.630144pt;}
.ws5d{word-spacing:2.656693pt;}
.wsbb{word-spacing:2.816095pt;}
.ws2d{word-spacing:2.861926pt;}
.ws17e{word-spacing:2.865818pt;}
.ws174{word-spacing:2.866244pt;}
.ws12e{word-spacing:2.869248pt;}
.ws126{word-spacing:2.912480pt;}
.ws17d{word-spacing:2.917069pt;}
.wsc2{word-spacing:2.922363pt;}
.ws121{word-spacing:2.928512pt;}
.ws136{word-spacing:2.975497pt;}
.ws6a{word-spacing:3.028630pt;}
.ws13d{word-spacing:3.081764pt;}
.ws6d{word-spacing:3.134898pt;}
.ws177{word-spacing:3.164001pt;}
.ws2e{word-spacing:3.188032pt;}
.ws128{word-spacing:3.249152pt;}
.ws7f{word-spacing:3.299920pt;}
.ws127{word-spacing:3.323968pt;}
.ws3c{word-spacing:3.400567pt;}
.ws61{word-spacing:3.559969pt;}
.ws157{word-spacing:3.730022pt;}
.ws78{word-spacing:3.746678pt;}
.ws79{word-spacing:3.751755pt;}
.ws44{word-spacing:3.772505pt;}
.ws140{word-spacing:3.825638pt;}
.ws7a{word-spacing:3.832984pt;}
.ws43{word-spacing:3.985040pt;}
.wsa6{word-spacing:4.144442pt;}
.ws13c{word-spacing:4.197575pt;}
.ws5a{word-spacing:4.250709pt;}
.ws48{word-spacing:4.303843pt;}
.ws147{word-spacing:4.463245pt;}
.ws51{word-spacing:4.516379pt;}
.wsab{word-spacing:4.622646pt;}
.ws1b{word-spacing:4.638618pt;}
.ws14f{word-spacing:4.728914pt;}
.wsc7{word-spacing:4.782048pt;}
.wsc6{word-spacing:4.835182pt;}
.wsc4{word-spacing:4.888316pt;}
.wsc1{word-spacing:4.941450pt;}
.ws1a{word-spacing:4.973363pt;}
.wsfc{word-spacing:4.994583pt;}
.wsa1{word-spacing:5.047717pt;}
.wsa0{word-spacing:5.100851pt;}
.ws24{word-spacing:5.116826pt;}
.ws16{word-spacing:5.393072pt;}
.ws17{word-spacing:5.467459pt;}
.ws13b{word-spacing:5.525922pt;}
.wsb7{word-spacing:5.632190pt;}
.ws7b{word-spacing:5.670786pt;}
.ws98{word-spacing:5.738458pt;}
.ws80{word-spacing:5.863704pt;}
.ws81{word-spacing:5.873858pt;}
.ws7c{word-spacing:5.889088pt;}
.ws89{word-spacing:5.919549pt;}
.ws5e{word-spacing:6.004127pt;}
.wsf7{word-spacing:6.057261pt;}
.ws4c{word-spacing:6.216662pt;}
.ws137{word-spacing:6.269796pt;}
.ws14c{word-spacing:6.535466pt;}
.ws9b{word-spacing:6.694867pt;}
.ws135{word-spacing:7.013670pt;}
.ws14a{word-spacing:7.066804pt;}
.ws14{word-spacing:7.699075pt;}
.ws107{word-spacing:8.048064pt;}
.ws106{word-spacing:8.117536pt;}
.wsa{word-spacing:9.257699pt;}
.wsb{word-spacing:9.260983pt;}
.ws40{word-spacing:10.581860pt;}
.ws17b{word-spacing:11.716096pt;}
.ws130{word-spacing:11.750668pt;}
.ws15f{word-spacing:11.763917pt;}
.ws132{word-spacing:11.795718pt;}
.ws21{word-spacing:11.859558pt;}
.ws1e{word-spacing:11.868449pt;}
.ws1c{word-spacing:11.873568pt;}
.ws179{word-spacing:11.901150pt;}
.ws169{word-spacing:11.901594pt;}
.ws16a{word-spacing:11.902694pt;}
.ws173{word-spacing:11.903454pt;}
.ws15e{word-spacing:11.906662pt;}
.ws20{word-spacing:11.907379pt;}
.ws16c{word-spacing:11.908378pt;}
.ws16b{word-spacing:11.954193pt;}
.ws171{word-spacing:11.991075pt;}
.ws16d{word-spacing:11.992538pt;}
.ws16f{word-spacing:12.003021pt;}
.ws23{word-spacing:12.050842pt;}
.ws70{word-spacing:12.072407pt;}
.ws176{word-spacing:12.098662pt;}
.ws28{word-spacing:12.131215pt;}
.ws163{word-spacing:12.187736pt;}
.ws165{word-spacing:12.194304pt;}
.ws4d{word-spacing:12.557935pt;}
.wsb9{word-spacing:12.958785pt;}
.ws63{word-spacing:12.964663pt;}
.ws133{word-spacing:12.993136pt;}
.ws67{word-spacing:13.017364pt;}
.ws46{word-spacing:13.017797pt;}
.ws4a{word-spacing:13.028126pt;}
.wsc3{word-spacing:13.070931pt;}
.ws151{word-spacing:13.080391pt;}
.ws145{word-spacing:13.086812pt;}
.ws59{word-spacing:13.124065pt;}
.wsb2{word-spacing:13.225799pt;}
.wsb0{word-spacing:13.227629pt;}
.wsb1{word-spacing:13.228147pt;}
.wsae{word-spacing:13.229127pt;}
.wsac{word-spacing:13.229525pt;}
.ws66{word-spacing:13.230333pt;}
.wsbd{word-spacing:13.230939pt;}
.wsaf{word-spacing:13.231133pt;}
.ws50{word-spacing:13.281843pt;}
.ws31{word-spacing:13.283467pt;}
.wsb5{word-spacing:13.324050pt;}
.ws9a{word-spacing:13.336601pt;}
.ws53{word-spacing:13.389734pt;}
.ws6b{word-spacing:13.429392pt;}
.ws3b{word-spacing:13.496002pt;}
.ws57{word-spacing:13.549136pt;}
.ws8{word-spacing:13.565814pt;}
.ws149{word-spacing:14.080475pt;}
.ws34{word-spacing:14.113974pt;}
.ws11{word-spacing:14.348669pt;}
.ws12{word-spacing:14.356730pt;}
.ws68{word-spacing:14.452412pt;}
.ws38{word-spacing:14.505546pt;}
.ws167{word-spacing:14.537523pt;}
.ws17c{word-spacing:14.585344pt;}
.ws160{word-spacing:14.728806pt;}
.ws166{word-spacing:14.774033pt;}
.ws175{word-spacing:14.776627pt;}
.ws168{word-spacing:14.776969pt;}
.ws161{word-spacing:14.920090pt;}
.ws178{word-spacing:15.063552pt;}
.ws13e{word-spacing:15.183378pt;}
.ws13{word-spacing:15.732893pt;}
.wsbc{word-spacing:16.063447pt;}
.wsba{word-spacing:16.064121pt;}
.ws41{word-spacing:16.412482pt;}
.ws3d{word-spacing:16.615375pt;}
.ws3e{word-spacing:16.630900pt;}
.ws25{word-spacing:17.024205pt;}
.ws13f{word-spacing:17.055971pt;}
.ws146{word-spacing:18.033306pt;}
.wsb8{word-spacing:18.866061pt;}
.ws5f{word-spacing:19.206845pt;}
.ws9c{word-spacing:23.750838pt;}
.ws2{word-spacing:23.802155pt;}
.ws15{word-spacing:24.399002pt;}
.wse2{word-spacing:48.118077pt;}
.wscf{word-spacing:57.092340pt;}
.wsce{word-spacing:57.843493pt;}
.wsd9{word-spacing:58.080743pt;}
.wsd1{word-spacing:61.502451pt;}
.wsd5{word-spacing:63.328743pt;}
.ws12b{word-spacing:65.036288pt;}
.wsd0{word-spacing:65.965695pt;}
.wse9{word-spacing:71.465051pt;}
.ws97{word-spacing:76.586923pt;}
.wsdd{word-spacing:78.006077pt;}
.wsd2{word-spacing:79.220789pt;}
.wse8{word-spacing:81.427651pt;}
.wseb{word-spacing:81.437067pt;}
.wsec{word-spacing:81.439330pt;}
.wsed{word-spacing:81.442400pt;}
.wsea{word-spacing:81.454218pt;}
.wsd3{word-spacing:81.456667pt;}
.wsd4{word-spacing:85.890895pt;}
.wsd7{word-spacing:88.069384pt;}
.wse5{word-spacing:88.080533pt;}
.wsdb{word-spacing:88.082400pt;}
.wsdc{word-spacing:94.711117pt;}
.wse1{word-spacing:94.714049pt;}
.wse0{word-spacing:94.735083pt;}
.wsd8{word-spacing:94.737684pt;}
.wse4{word-spacing:104.673717pt;}
.wse6{word-spacing:104.688533pt;}
.wsde{word-spacing:104.700284pt;}
.wse3{word-spacing:114.662884pt;}
.wse7{word-spacing:124.625484pt;}
.wsd6{word-spacing:125.156823pt;}
.wsee{word-spacing:134.588084pt;}
.wsda{word-spacing:154.486717pt;}
.wsdf{word-spacing:154.513284pt;}
.ws117{word-spacing:219.974400pt;}
.wsf8{word-spacing:243.933901pt;}
.ws11c{word-spacing:252.614400pt;}
.ws114{word-spacing:258.384000pt;}
.ws119{word-spacing:300.638400pt;}
.wsfa{word-spacing:305.957478pt;}
.wsfb{word-spacing:317.912678pt;}
.wsf9{word-spacing:353.778278pt;}
.ws11d{word-spacing:355.329600pt;}
.ws11a{word-spacing:391.200000pt;}
._81{margin-left:-18.590686pt;}
._1{margin-left:-10.616218pt;}
._0{margin-left:-7.077478pt;}
._4{margin-left:-5.897859pt;}
._43{margin-left:-4.994583pt;}
._9{margin-left:-4.091296pt;}
._7{margin-left:-2.752326pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._2{width:2.666359pt;}
._80{width:9.470007pt;}
._1a{width:10.367350pt;}
._8{width:11.530016pt;}
._11{width:13.180965pt;}
._c{width:14.858259pt;}
._f{width:16.119729pt;}
._e{width:17.127715pt;}
._b{width:18.267546pt;}
._15{width:19.301046pt;}
._18{width:20.350271pt;}
._d{width:21.280256pt;}
._16{width:22.953830pt;}
._14{width:24.600980pt;}
._46{width:25.989187pt;}
._10{width:27.151406pt;}
._a{width:29.011008pt;}
._17{width:30.445706pt;}
._44{width:32.199123pt;}
._45{width:34.331193pt;}
._6b{width:35.287614pt;}
._3{width:48.312046pt;}
._67{width:55.775342pt;}
._69{width:64.324800pt;}
._47{width:67.453444pt;}
._49{width:79.260915pt;}
._77{width:80.257004pt;}
._4b{width:81.443274pt;}
._61{width:82.584925pt;}
._58{width:88.042619pt;}
._48{width:91.018314pt;}
._4a{width:94.711117pt;}
._56{width:100.471603pt;}
._4e{width:102.154397pt;}
._1e{width:103.388570pt;}
._57{width:104.938516pt;}
._62{width:108.465600pt;}
._50{width:110.013671pt;}
._4c{width:112.037297pt;}
._78{width:114.761376pt;}
._1d{width:115.774157pt;}
._2b{width:116.921856pt;}
._1f{width:121.238101pt;}
._39{width:122.612531pt;}
._54{width:125.319717pt;}
._4d{width:126.538303pt;}
._51{width:130.518805pt;}
._4f{width:131.771989pt;}
._33{width:134.232986pt;}
._76{width:136.767488pt;}
._59{width:138.248702pt;}
._2e{width:139.780198pt;}
._55{width:141.190601pt;}
._28{width:142.123418pt;}
._52{width:146.463503pt;}
._32{width:147.766272pt;}
._23{width:150.109491pt;}
._2f{width:154.843750pt;}
._29{width:157.186970pt;}
._25{width:160.247501pt;}
._53{width:161.155018pt;}
._2d{width:162.399437pt;}
._2c{width:166.894592pt;}
._79{width:171.341926pt;}
._22{width:175.502336pt;}
._24{width:177.128243pt;}
._5e{width:181.036800pt;}
._3f{width:189.131264pt;}
._37{width:191.474483pt;}
._31{width:193.482957pt;}
._3b{width:202.090701pt;}
._40{width:204.146995pt;}
._21{width:205.964186pt;}
._74{width:210.352576pt;}
._34{width:214.476288pt;}
._3c{width:216.846035pt;}
._1b{width:227.069059pt;}
._1c{width:238.027042pt;}
._63{width:242.510400pt;}
._26{width:243.455693pt;}
._5f{width:245.025600pt;}
._2a{width:255.410893pt;}
._70{width:267.413914pt;}
._60{width:271.598400pt;}
._7a{width:274.587034pt;}
._64{width:276.139200pt;}
._6e{width:282.573107pt;}
._6a{width:293.899200pt;}
._75{width:305.613246pt;}
._72{width:312.122735pt;}
._3a{width:317.338829pt;}
._5c{width:323.203200pt;}
._7d{width:325.324902pt;}
._3e{width:335.654195pt;}
._41{width:338.906010pt;}
._65{width:340.780800pt;}
._73{width:342.412829pt;}
._30{width:343.735910pt;}
._6f{width:349.856973pt;}
._68{width:352.958400pt;}
._35{width:365.733478pt;}
._66{width:366.700800pt;}
._38{width:369.654784pt;}
._71{width:370.793378pt;}
._6c{width:372.205187pt;}
._42{width:376.206234pt;}
._3d{width:381.849088pt;}
._20{width:398.203802pt;}
._36{width:399.399322pt;}
._27{width:427.517952pt;}
._5d{width:432.643200pt;}
._7c{width:461.901107pt;}
._6d{width:463.208170pt;}
._7b{width:515.481623pt;}
._7e{width:546.209178pt;}
._5b{width:651.840000pt;}
._12{width:847.423539pt;}
._19{width:1854.046188pt;}
._5a{width:1950.840183pt;}
._7f{width:2271.837067pt;}
._13{width:2293.090400pt;}
.fsf{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsc{font-size:40.432000pt;}
.fs4{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fse{font-size:45.600000pt;}
.fs9{font-size:47.820800pt;}
.fs12{font-size:48.000000pt;}
.fs13{font-size:49.829333pt;}
.fsd{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fs11{font-size:53.440000pt;}
.fsa{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y142{bottom:-625.324933pt;}
.y15e{bottom:-521.321597pt;}
.y15d{bottom:-501.640981pt;}
.y15c{bottom:-484.521477pt;}
.y15b{bottom:-467.482133pt;}
.y15a{bottom:-450.362629pt;}
.y159{bottom:-433.243125pt;}
.y158{bottom:-416.203781pt;}
.y157{bottom:-399.084277pt;}
.y156{bottom:-382.044933pt;}
.y155{bottom:-349.324933pt;}
.y154{bottom:-332.444933pt;}
.y153{bottom:-315.644933pt;}
.y152{bottom:-298.764933pt;}
.y151{bottom:-281.884933pt;}
.y150{bottom:-265.004800pt;}
.y14f{bottom:-248.124800pt;}
.y14e{bottom:-231.245733pt;}
.y96{bottom:-222.685953pt;}
.y14d{bottom:-205.965333pt;}
.y14c{bottom:-190.605333pt;}
.y14b{bottom:-175.164933pt;}
.y14a{bottom:-143.403949pt;}
.y149{bottom:-126.284445pt;}
.y148{bottom:-109.243765pt;}
.y147{bottom:-92.124261pt;}
.ya9{bottom:-82.085953pt;}
.y146{bottom:-71.084933pt;}
.ya8{bottom:-49.026333pt;}
.y145{bottom:-38.365333pt;}
.ya7{bottom:-34.434333pt;}
.y144{bottom:-22.924933pt;}
.ya6{bottom:-19.765953pt;}
.y143{bottom:-2.925285pt;}
.ya5{bottom:-0.838678pt;}
.y0{bottom:0.000000pt;}
.y173{bottom:2.595067pt;}
.yc{bottom:3.044747pt;}
.yb{bottom:12.578910pt;}
.y2{bottom:13.629046pt;}
.y50{bottom:28.346667pt;}
.y16b{bottom:55.955859pt;}
.y16a{bottom:80.275707pt;}
.ye5{bottom:81.812000pt;}
.y161{bottom:81.874899pt;}
.y164{bottom:89.554851pt;}
.y1ee{bottom:90.854667pt;}
.y28{bottom:91.398667pt;}
.y4f{bottom:92.108000pt;}
.y15f{bottom:97.555067pt;}
.y16c{bottom:97.956195pt;}
.ye4{bottom:98.549333pt;}
.y162{bottom:100.515115pt;}
.y24f{bottom:102.213333pt;}
.y27{bottom:107.298667pt;}
.y1ed{bottom:107.592000pt;}
.y165{bottom:107.715203pt;}
.y4e{bottom:108.844000pt;}
.ye3{bottom:115.286667pt;}
.y24e{bottom:117.554667pt;}
.y160{bottom:120.115059pt;}
.y21a{bottom:122.018667pt;}
.y26{bottom:123.200000pt;}
.y1ec{bottom:124.329333pt;}
.y4d{bottom:125.581333pt;}
.y163{bottom:126.515019pt;}
.y169{bottom:128.515339pt;}
.ye2{bottom:132.024000pt;}
.y24d{bottom:132.897333pt;}
.y116{bottom:133.496000pt;}
.y219{bottom:137.640000pt;}
.y25{bottom:139.100000pt;}
.y16d{bottom:139.956531pt;}
.y1eb{bottom:141.066667pt;}
.y4c{bottom:142.318667pt;}
.y13e{bottom:143.680000pt;}
.y24c{bottom:148.240000pt;}
.y18d{bottom:148.420000pt;}
.ye1{bottom:148.760000pt;}
.y115{bottom:150.233333pt;}
.y172{bottom:151.715067pt;}
.y218{bottom:153.261333pt;}
.y24{bottom:155.000000pt;}
.y166{bottom:155.235571pt;}
.y13d{bottom:156.880000pt;}
.y1ea{bottom:157.804000pt;}
.y4b{bottom:159.056000pt;}
.y1b9{bottom:162.066667pt;}
.y24b{bottom:163.582667pt;}
.y18c{bottom:165.157333pt;}
.ye0{bottom:165.497333pt;}
.y114{bottom:166.970667pt;}
.y217{bottom:168.882667pt;}
.y13c{bottom:170.080000pt;}
.y23{bottom:170.901333pt;}
.y1e9{bottom:174.541333pt;}
.y4a{bottom:175.793333pt;}
.y1b8{bottom:178.816000pt;}
.y24a{bottom:178.925333pt;}
.y16e{bottom:181.876003pt;}
.y18b{bottom:181.894667pt;}
.ydf{bottom:182.234667pt;}
.y13b{bottom:183.280000pt;}
.y113{bottom:183.706667pt;}
.y216{bottom:184.504000pt;}
.y22{bottom:186.801333pt;}
.y1e8{bottom:191.278667pt;}
.y49{bottom:192.530667pt;}
.y249{bottom:194.268000pt;}
.y13a{bottom:196.480000pt;}
.y82{bottom:197.638667pt;}
.y18a{bottom:198.632000pt;}
.ydd{bottom:198.972000pt;}
.y1b7{bottom:199.830667pt;}
.y215{bottom:200.125333pt;}
.y112{bottom:200.444000pt;}
.yac{bottom:200.501333pt;}
.y21{bottom:202.701333pt;}
.yde{bottom:203.794667pt;}
.y1e7{bottom:208.016000pt;}
.y48{bottom:209.268000pt;}
.y248{bottom:209.610667pt;}
.y139{bottom:209.680000pt;}
.y81{bottom:214.376000pt;}
.y168{bottom:214.595067pt;}
.y189{bottom:215.369333pt;}
.ydc{bottom:215.709333pt;}
.y214{bottom:215.746667pt;}
.y111{bottom:217.181333pt;}
.yab{bottom:217.597333pt;}
.y1b6{bottom:220.844000pt;}
.y138{bottom:222.880000pt;}
.y16f{bottom:223.876339pt;}
.y1e6{bottom:224.753333pt;}
.y247{bottom:224.953333pt;}
.y47{bottom:226.005333pt;}
.y80{bottom:231.113333pt;}
.y213{bottom:231.369333pt;}
.y188{bottom:232.106667pt;}
.yda{bottom:232.446667pt;}
.y110{bottom:233.918667pt;}
.yaa{bottom:234.693333pt;}
.y137{bottom:236.080000pt;}
.ydb{bottom:237.269333pt;}
.y246{bottom:240.296000pt;}
.y1e5{bottom:241.490667pt;}
.y1b5{bottom:241.858667pt;}
.y46{bottom:246.728000pt;}
.y212{bottom:246.990667pt;}
.y7f{bottom:247.850667pt;}
.y187{bottom:248.844000pt;}
.yd9{bottom:249.184000pt;}
.y136{bottom:249.280000pt;}
.y10f{bottom:250.656000pt;}
.y93{bottom:254.630667pt;}
.y245{bottom:255.637333pt;}
.y1e4{bottom:258.228000pt;}
.y135{bottom:262.480000pt;}
.y7e{bottom:264.588000pt;}
.y186{bottom:265.581333pt;}
.y170{bottom:265.876675pt;}
.yd8{bottom:265.921333pt;}
.y10e{bottom:267.393333pt;}
.y1b4{bottom:269.964000pt;}
.y244{bottom:270.980000pt;}
.y20{bottom:273.154667pt;}
.y1e3{bottom:274.965333pt;}
.y134{bottom:275.680000pt;}
.y211{bottom:278.552000pt;}
.y7d{bottom:281.325333pt;}
.yd7{bottom:282.658667pt;}
.y10d{bottom:284.130667pt;}
.y243{bottom:286.322667pt;}
.y133{bottom:288.880000pt;}
.y1f{bottom:289.054667pt;}
.y1e2{bottom:291.702667pt;}
.y210{bottom:295.289333pt;}
.y185{bottom:297.270667pt;}
.y7c{bottom:298.062667pt;}
.y1b3{bottom:299.485333pt;}
.y10c{bottom:300.868000pt;}
.y167{bottom:301.315323pt;}
.y242{bottom:301.665333pt;}
.y132{bottom:302.078667pt;}
.yd6{bottom:303.381333pt;}
.y1e{bottom:304.954667pt;}
.y171{bottom:307.797211pt;}
.y1e1{bottom:308.440000pt;}
.y20f{bottom:312.026667pt;}
.y45{bottom:313.528000pt;}
.y7b{bottom:314.800000pt;}
.y131{bottom:315.278667pt;}
.y1b2{bottom:316.222667pt;}
.y241{bottom:317.008000pt;}
.y184{bottom:317.490667pt;}
.y10b{bottom:317.605333pt;}
.y1d{bottom:320.856000pt;}
.y1e0{bottom:325.177333pt;}
.y130{bottom:328.478667pt;}
.y20e{bottom:328.764000pt;}
.y7a{bottom:331.537333pt;}
.y240{bottom:332.350667pt;}
.y1b1{bottom:332.960000pt;}
.yd5{bottom:333.269333pt;}
.y10a{bottom:334.342667pt;}
.y183{bottom:338.504000pt;}
.y12f{bottom:341.678667pt;}
.y1df{bottom:341.914667pt;}
.y20d{bottom:345.501333pt;}
.y44{bottom:346.764000pt;}
.y23f{bottom:347.693333pt;}
.y79{bottom:348.274667pt;}
.y1b0{bottom:349.697333pt;}
.yd4{bottom:350.006667pt;}
.y109{bottom:351.080000pt;}
.y1c{bottom:354.688000pt;}
.y12e{bottom:354.878667pt;}
.y1de{bottom:358.652000pt;}
.y182{bottom:359.518667pt;}
.y20c{bottom:362.238667pt;}
.y23e{bottom:363.036000pt;}
.y43{bottom:364.058667pt;}
.y78{bottom:365.012000pt;}
.y1af{bottom:366.434667pt;}
.yd3{bottom:366.744000pt;}
.y108{bottom:367.817333pt;}
.y12d{bottom:368.078667pt;}
.y1b{bottom:370.589333pt;}
.y1dd{bottom:375.389333pt;}
.y23d{bottom:378.377333pt;}
.y20b{bottom:378.976000pt;}
.y181{bottom:380.532000pt;}
.y12c{bottom:381.278667pt;}
.y42{bottom:381.353333pt;}
.y77{bottom:381.749333pt;}
.y141{bottom:382.675587pt;}
.y1ae{bottom:383.172000pt;}
.yd2{bottom:383.481333pt;}
.y107{bottom:384.554667pt;}
.y1a{bottom:386.489333pt;}
.y140{bottom:391.395067pt;}
.y1dc{bottom:392.126667pt;}
.y23c{bottom:393.720000pt;}
.y12b{bottom:394.478667pt;}
.y20a{bottom:395.713333pt;}
.y76{bottom:398.486667pt;}
.y41{bottom:398.649333pt;}
.y1ad{bottom:399.909333pt;}
.yd0{bottom:400.218667pt;}
.y106{bottom:401.292000pt;}
.y180{bottom:401.546667pt;}
.yd1{bottom:405.040000pt;}
.y12a{bottom:407.678667pt;}
.y1db{bottom:408.864000pt;}
.y23b{bottom:409.062667pt;}
.y75{bottom:415.224000pt;}
.y40{bottom:415.944000pt;}
.y209{bottom:416.434667pt;}
.y1ac{bottom:416.646667pt;}
.ycf{bottom:416.956000pt;}
.y105{bottom:418.029333pt;}
.y19{bottom:418.330667pt;}
.y129{bottom:420.878667pt;}
.y17f{bottom:422.560000pt;}
.y23a{bottom:424.405333pt;}
.y1da{bottom:425.601333pt;}
.y74{bottom:431.961333pt;}
.y3f{bottom:433.238667pt;}
.y1ab{bottom:433.384000pt;}
.yce{bottom:433.693333pt;}
.y128{bottom:434.078667pt;}
.y18{bottom:434.230667pt;}
.y104{bottom:434.766667pt;}
.y239{bottom:439.748000pt;}
.y1d9{bottom:442.338667pt;}
.y17e{bottom:443.574667pt;}
.y208{bottom:446.322667pt;}
.y127{bottom:447.278667pt;}
.y73{bottom:448.698667pt;}
.y1aa{bottom:450.121333pt;}
.y17{bottom:450.130667pt;}
.ycd{bottom:450.430667pt;}
.y3e{bottom:450.534667pt;}
.y103{bottom:451.504000pt;}
.y238{bottom:455.090667pt;}
.y1d8{bottom:459.076000pt;}
.y126{bottom:460.478667pt;}
.y207{bottom:463.060000pt;}
.y72{bottom:465.436000pt;}
.y1a9{bottom:466.858667pt;}
.ycc{bottom:467.168000pt;}
.y3d{bottom:467.829333pt;}
.y102{bottom:468.241333pt;}
.y237{bottom:470.433333pt;}
.y17d{bottom:471.680000pt;}
.y125{bottom:473.678667pt;}
.y1d7{bottom:475.813333pt;}
.ya4{bottom:477.809641pt;}
.y206{bottom:479.797333pt;}
.y16{bottom:481.972000pt;}
.y71{bottom:482.173333pt;}
.y1a8{bottom:483.596000pt;}
.ycb{bottom:483.905333pt;}
.y101{bottom:484.978667pt;}
.y3c{bottom:485.125333pt;}
.y236{bottom:485.776000pt;}
.y124{bottom:486.878667pt;}
.y17c{bottom:488.776000pt;}
.y1d6{bottom:492.549333pt;}
.ya3{bottom:493.998287pt;}
.y205{bottom:496.534667pt;}
.y15{bottom:497.872000pt;}
.y70{bottom:498.910667pt;}
.y1a7{bottom:500.333333pt;}
.yca{bottom:500.642667pt;}
.y235{bottom:501.118667pt;}
.y100{bottom:501.716000pt;}
.y3b{bottom:502.420000pt;}
.y17b{bottom:505.872000pt;}
.y1d5{bottom:509.286667pt;}
.y123{bottom:509.554667pt;}
.ya2{bottom:510.261816pt;}
.y204{bottom:513.272000pt;}
.y14{bottom:513.772000pt;}
.y6f{bottom:515.648000pt;}
.y234{bottom:516.460000pt;}
.y1a6{bottom:517.070667pt;}
.yc9{bottom:517.380000pt;}
.yff{bottom:518.453333pt;}
.y3a{bottom:519.714667pt;}
.y1d4{bottom:526.024000pt;}
.ya1{bottom:526.525345pt;}
.y122{bottom:526.650667pt;}
.y13{bottom:529.673333pt;}
.y203{bottom:530.009333pt;}
.y233{bottom:531.802667pt;}
.y6e{bottom:532.384000pt;}
.y1a5{bottom:533.808000pt;}
.yc8{bottom:534.116000pt;}
.yfe{bottom:535.190667pt;}
.y39{bottom:537.010667pt;}
.y17a{bottom:537.525333pt;}
.ya0{bottom:542.712722pt;}
.y1d3{bottom:542.761333pt;}
.y12{bottom:545.573333pt;}
.y202{bottom:546.746667pt;}
.y232{bottom:547.145333pt;}
.y6d{bottom:549.121333pt;}
.y1a4{bottom:550.545333pt;}
.yc7{bottom:550.853333pt;}
.y179{bottom:554.262667pt;}
.y38{bottom:554.305333pt;}
.y121{bottom:558.304000pt;}
.y9f{bottom:558.976251pt;}
.y1d2{bottom:559.498667pt;}
.y11{bottom:561.473333pt;}
.y231{bottom:562.488000pt;}
.y201{bottom:563.484000pt;}
.y6c{bottom:565.858667pt;}
.yfd{bottom:565.874667pt;}
.y1a3{bottom:567.282667pt;}
.yc6{bottom:567.590667pt;}
.y178{bottom:571.000000pt;}
.y120{bottom:575.041333pt;}
.y9e{bottom:575.239779pt;}
.y1d1{bottom:576.236000pt;}
.y10{bottom:577.374667pt;}
.y230{bottom:577.830667pt;}
.y200{bottom:580.221333pt;}
.y6b{bottom:582.596000pt;}
.y1a2{bottom:584.018667pt;}
.yc5{bottom:584.328000pt;}
.y37{bottom:587.152000pt;}
.y177{bottom:587.737333pt;}
.y9d{bottom:591.428425pt;}
.y11f{bottom:591.778667pt;}
.y1d0{bottom:592.973333pt;}
.y22f{bottom:593.173333pt;}
.yf{bottom:593.274667pt;}
.yfc{bottom:596.560000pt;}
.y1ff{bottom:596.958667pt;}
.y6a{bottom:599.333333pt;}
.yc4{bottom:601.065333pt;}
.y36{bottom:601.498667pt;}
.y9c{bottom:607.691954pt;}
.y176{bottom:608.460000pt;}
.y11e{bottom:608.516000pt;}
.ye{bottom:609.174667pt;}
.y1cf{bottom:609.710667pt;}
.yfb{bottom:613.297333pt;}
.y1fe{bottom:613.696000pt;}
.y1a1{bottom:615.708000pt;}
.y69{bottom:616.070667pt;}
.yc3{bottom:617.802667pt;}
.y35{bottom:619.701333pt;}
.y22e{bottom:623.858667pt;}
.y9b{bottom:623.880600pt;}
.yd{bottom:625.076000pt;}
.y11d{bottom:625.253333pt;}
.y1ce{bottom:626.448000pt;}
.yfa{bottom:630.034667pt;}
.y1fc{bottom:630.433333pt;}
.y68{bottom:632.808000pt;}
.y34{bottom:634.048000pt;}
.yc2{bottom:634.540000pt;}
.y1fd{bottom:635.254667pt;}
.y1a0{bottom:635.928000pt;}
.y22d{bottom:639.200000pt;}
.y9a{bottom:640.144129pt;}
.y175{bottom:640.820000pt;}
.y11c{bottom:641.990667pt;}
.y1cd{bottom:643.185333pt;}
.y19f{bottom:643.234667pt;}
.y33{bottom:644.537333pt;}
.ya{bottom:644.961301pt;}
.yf9{bottom:646.772000pt;}
.y1fb{bottom:647.170667pt;}
.y67{bottom:649.545333pt;}
.yc1{bottom:651.277333pt;}
.y22c{bottom:654.542667pt;}
.y99{bottom:656.407658pt;}
.y174{bottom:657.916000pt;}
.y11b{bottom:658.726667pt;}
.y1cc{bottom:659.922667pt;}
.y32{bottom:662.741333pt;}
.yf8{bottom:663.509333pt;}
.y1fa{bottom:663.908000pt;}
.y66{bottom:666.282667pt;}
.y22b{bottom:669.885333pt;}
.y19e{bottom:671.553333pt;}
.yc0{bottom:672.000000pt;}
.y98{bottom:672.595035pt;}
.y11a{bottom:675.464000pt;}
.y1cb{bottom:676.660000pt;}
.y31{bottom:677.086667pt;}
.y13f{bottom:677.852000pt;}
.y19d{bottom:678.860000pt;}
.yf7{bottom:680.246667pt;}
.y1f8{bottom:680.645333pt;}
.y65{bottom:683.020000pt;}
.y22a{bottom:685.228000pt;}
.y1f9{bottom:685.466667pt;}
.y30{bottom:687.576000pt;}
.y97{bottom:688.858563pt;}
.y118{bottom:692.201333pt;}
.y1ca{bottom:693.397333pt;}
.yf6{bottom:696.984000pt;}
.y119{bottom:697.024000pt;}
.y1f7{bottom:697.382667pt;}
.y64{bottom:699.757333pt;}
.y229{bottom:700.570667pt;}
.y2f{bottom:705.780000pt;}
.y19c{bottom:707.180000pt;}
.y117{bottom:708.938667pt;}
.y1c9{bottom:710.134667pt;}
.yf5{bottom:713.721333pt;}
.y1f6{bottom:714.120000pt;}
.y19b{bottom:714.485333pt;}
.ybf{bottom:714.934667pt;}
.y228{bottom:715.913333pt;}
.y2e{bottom:716.268000pt;}
.y63{bottom:716.494667pt;}
.y92{bottom:725.676000pt;}
.y1c8{bottom:726.872000pt;}
.ybe{bottom:729.546667pt;}
.yf4{bottom:730.458667pt;}
.y1f5{bottom:730.857333pt;}
.y227{bottom:731.256000pt;}
.y62{bottom:733.232000pt;}
.y2d{bottom:734.472000pt;}
.y95{bottom:734.914541pt;}
.y91{bottom:742.413333pt;}
.y19a{bottom:742.805333pt;}
.y94{bottom:743.198047pt;}
.y1c7{bottom:743.609333pt;}
.ybd{bottom:744.158667pt;}
.y2c{bottom:744.961333pt;}
.y226{bottom:746.598667pt;}
.yf3{bottom:747.196000pt;}
.y1f4{bottom:747.594667pt;}
.y61{bottom:749.969333pt;}
.y199{bottom:750.112000pt;}
.ybc{bottom:758.770667pt;}
.y90{bottom:759.150667pt;}
.y1c6{bottom:760.346667pt;}
.y225{bottom:761.941333pt;}
.y2b{bottom:763.164000pt;}
.yf2{bottom:763.933333pt;}
.y1f3{bottom:764.332000pt;}
.y60{bottom:766.706667pt;}
.ybb{bottom:773.382667pt;}
.y2a{bottom:773.653333pt;}
.y8f{bottom:775.888000pt;}
.y1c5{bottom:777.084000pt;}
.y224{bottom:777.282667pt;}
.y198{bottom:778.432000pt;}
.yf1{bottom:780.670667pt;}
.y1f2{bottom:781.069333pt;}
.y5f{bottom:783.444000pt;}
.y197{bottom:785.737333pt;}
.yba{bottom:787.993333pt;}
.y29{bottom:791.857333pt;}
.y8e{bottom:792.625333pt;}
.y1c4{bottom:793.821333pt;}
.yf0{bottom:797.408000pt;}
.y1f1{bottom:797.806667pt;}
.y5e{bottom:800.181333pt;}
.yb9{bottom:802.605333pt;}
.y223{bottom:807.968000pt;}
.y8d{bottom:809.362667pt;}
.y1c3{bottom:810.558667pt;}
.y196{bottom:814.057333pt;}
.y1f0{bottom:814.544000pt;}
.y5d{bottom:816.918667pt;}
.yb8{bottom:817.217333pt;}
.yef{bottom:818.130667pt;}
.y195{bottom:821.362667pt;}
.y222{bottom:823.310667pt;}
.y8c{bottom:826.100000pt;}
.y9{bottom:826.133333pt;}
.y1c2{bottom:827.296000pt;}
.y1ef{bottom:831.281333pt;}
.yb7{bottom:831.829333pt;}
.y5c{bottom:833.656000pt;}
.y221{bottom:838.653333pt;}
.y8b{bottom:842.837333pt;}
.y8{bottom:842.869333pt;}
.y1c1{bottom:844.033333pt;}
.yb6{bottom:846.441333pt;}
.yee{bottom:848.018667pt;}
.y194{bottom:849.682667pt;}
.y5b{bottom:850.393333pt;}
.y193{bottom:856.989333pt;}
.y220{bottom:857.981333pt;}
.y8a{bottom:859.574667pt;}
.y7{bottom:859.606667pt;}
.y1c0{bottom:860.770667pt;}
.yb5{bottom:861.053333pt;}
.yec{bottom:864.754667pt;}
.y59{bottom:867.130667pt;}
.yed{bottom:869.577333pt;}
.y5a{bottom:871.952000pt;}
.yb4{bottom:875.665333pt;}
.y89{bottom:876.312000pt;}
.y1bf{bottom:877.508000pt;}
.yeb{bottom:881.492000pt;}
.y58{bottom:883.868000pt;}
.y192{bottom:885.309333pt;}
.y21f{bottom:887.869333pt;}
.yb3{bottom:890.277333pt;}
.y191{bottom:892.614667pt;}
.y88{bottom:893.049333pt;}
.y1be{bottom:894.245333pt;}
.yea{bottom:898.229333pt;}
.y6{bottom:900.404000pt;}
.y57{bottom:900.605333pt;}
.yb2{bottom:904.889333pt;}
.y87{bottom:909.786667pt;}
.y1bd{bottom:910.982667pt;}
.y21e{bottom:911.460000pt;}
.ye9{bottom:914.966667pt;}
.y56{bottom:917.342667pt;}
.yb1{bottom:919.501333pt;}
.y253{bottom:920.546667pt;}
.y190{bottom:920.934667pt;}
.y5{bottom:925.510667pt;}
.y86{bottom:926.524000pt;}
.y1bc{bottom:927.720000pt;}
.ye8{bottom:931.704000pt;}
.y55{bottom:934.080000pt;}
.y21d{bottom:935.052000pt;}
.y252{bottom:935.889333pt;}
.yaf{bottom:940.514667pt;}
.y85{bottom:943.261333pt;}
.y1bb{bottom:944.456000pt;}
.yae{bottom:947.820000pt;}
.ye7{bottom:948.441333pt;}
.y18f{bottom:949.041333pt;}
.y4{bottom:950.616000pt;}
.y21c{bottom:950.673333pt;}
.y54{bottom:950.817333pt;}
.y251{bottom:951.230667pt;}
.yb0{bottom:955.126667pt;}
.y1ba{bottom:961.193333pt;}
.y84{bottom:963.984000pt;}
.ye6{bottom:965.178667pt;}
.y18e{bottom:966.137333pt;}
.y21b{bottom:966.294667pt;}
.y250{bottom:966.573333pt;}
.y53{bottom:967.553333pt;}
.y3{bottom:975.722667pt;}
.y83{bottom:981.916000pt;}
.yad{bottom:983.233333pt;}
.y52{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y51{bottom:1043.020000pt;}
.h22{height:19.506559pt;}
.h23{height:19.650061pt;}
.h24{height:19.655394pt;}
.h9{height:22.673858pt;}
.he{height:23.209028pt;}
.hc{height:27.076941pt;}
.hd{height:27.262909pt;}
.h17{height:28.023859pt;}
.h2d{height:28.366406pt;}
.h20{height:29.397999pt;}
.hb{height:29.433775pt;}
.h1a{height:29.514570pt;}
.h19{height:29.652766pt;}
.ha{height:30.399505pt;}
.hf{height:30.945242pt;}
.h27{height:31.067969pt;}
.h15{height:31.157778pt;}
.h26{height:31.213438pt;}
.h2c{height:31.358906pt;}
.h1d{height:33.287109pt;}
.h1c{height:33.442969pt;}
.h2f{height:33.474560pt;}
.h10{height:34.574438pt;}
.h30{height:34.717901pt;}
.h11{height:34.813542pt;}
.h2a{height:35.039062pt;}
.h12{height:35.052646pt;}
.h29{height:35.203125pt;}
.h16{height:36.873667pt;}
.h1b{height:37.059648pt;}
.h2e{height:37.193707pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.h2b{height:38.775312pt;}
.h4{height:38.947124pt;}
.h28{height:39.010156pt;}
.h2{height:45.271688pt;}
.h33{height:47.314526pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h21{height:48.688666pt;}
.h1e{height:63.801105pt;}
.h32{height:64.034876pt;}
.h31{height:64.040209pt;}
.h5{height:69.148877pt;}
.h6{height:69.435802pt;}
.h3{height:91.114522pt;}
.h1f{height:93.022438pt;}
.h25{height:317.348000pt;}
.h18{height:460.661333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:140.979732pt;}
.w5{width:521.918667pt;}
.w4{width:618.653047pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6d{left:-88.381333pt;}
.x75{left:-63.581333pt;}
.x6f{left:-60.061333pt;}
.x74{left:-57.661333pt;}
.x73{left:-53.901333pt;}
.x77{left:-41.741333pt;}
.x76{left:-31.501333pt;}
.x41{left:-21.857220pt;}
.x0{left:0.000000pt;}
.x72{left:3.858667pt;}
.x45{left:5.046780pt;}
.x83{left:10.578667pt;}
.x82{left:17.459579pt;}
.x81{left:22.820011pt;}
.x4{left:26.021437pt;}
.x71{left:27.538667pt;}
.x3{left:46.804000pt;}
.x1{left:48.000000pt;}
.x4e{left:55.970667pt;}
.x2{left:56.954135pt;}
.x93{left:59.273333pt;}
.x80{left:60.580307pt;}
.x89{left:65.480000pt;}
.x88{left:71.344000pt;}
.x94{left:74.217333pt;}
.x87{left:75.126667pt;}
.x47{left:76.346667pt;}
.x4a{left:84.917333pt;}
.x40{left:87.526220pt;}
.x78{left:88.898667pt;}
.x8a{left:97.328000pt;}
.x6b{left:99.576000pt;}
.x70{left:113.779195pt;}
.x6a{left:122.326667pt;}
.x79{left:125.858835pt;}
.x48{left:127.250667pt;}
.x86{left:133.258667pt;}
.x6c{left:135.892000pt;}
.x43{left:143.291129pt;}
.x46{left:160.542780pt;}
.x7a{left:165.618387pt;}
.x8b{left:168.062667pt;}
.x42{left:170.193771pt;}
.x7b{left:197.458587pt;}
.x91{left:220.830667pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.x95{left:230.037333pt;}
.x92{left:232.544000pt;}
.x11{left:234.110667pt;}
.x7c{left:238.178931pt;}
.x6{left:241.085333pt;}
.x49{left:242.534667pt;}
.x96{left:244.914667pt;}
.x9{left:251.365333pt;}
.x84{left:253.538667pt;}
.x12{left:255.524000pt;}
.x13{left:261.574667pt;}
.x5c{left:264.613333pt;}
.x5a{left:272.498667pt;}
.x5d{left:273.816000pt;}
.x5f{left:274.948000pt;}
.xaa{left:276.090667pt;}
.x8{left:277.721333pt;}
.x97{left:281.560000pt;}
.x8e{left:289.296000pt;}
.x9c{left:292.068000pt;}
.x98{left:293.181333pt;}
.x8f{left:298.442667pt;}
.x7d{left:308.339091pt;}
.x14{left:309.721333pt;}
.x35{left:311.552000pt;}
.x15{left:315.772000pt;}
.x36{left:318.193333pt;}
.x37{left:321.468000pt;}
.x85{left:330.386667pt;}
.x16{left:334.241333pt;}
.x38{left:338.026667pt;}
.x17{left:340.882667pt;}
.x3c{left:344.110667pt;}
.x7e{left:345.299259pt;}
.x4c{left:348.838667pt;}
.x39{left:351.309333pt;}
.x2d{left:354.184000pt;}
.x3d{left:357.394667pt;}
.x2e{left:360.825333pt;}
.x4b{left:378.254667pt;}
.x7f{left:384.899211pt;}
.x58{left:402.556000pt;}
.x59{left:408.605333pt;}
.xc{left:425.613333pt;}
.x67{left:430.452000pt;}
.xd{left:432.254667pt;}
.xe{left:439.173333pt;}
.xf{left:442.561333pt;}
.x1a{left:445.576000pt;}
.x10{left:449.202667pt;}
.x9f{left:450.862667pt;}
.x1b{left:452.217333pt;}
.x28{left:455.308000pt;}
.x31{left:458.037333pt;}
.xa{left:461.161333pt;}
.x50{left:463.260000pt;}
.xb{left:467.802667pt;}
.x32{left:471.320000pt;}
.x33{left:474.697333pt;}
.x60{left:476.922667pt;}
.x34{left:487.981333pt;}
.x20{left:491.694667pt;}
.x21{left:498.336000pt;}
.x18{left:500.757333pt;}
.x61{left:501.730667pt;}
.x19{left:506.808000pt;}
.x29{left:510.960000pt;}
.x62{left:516.126667pt;}
.x2a{left:517.602667pt;}
.x9b{left:518.882667pt;}
.x2b{left:520.953333pt;}
.x5e{left:523.448000pt;}
.x63{left:526.538667pt;}
.x1c{left:529.905333pt;}
.x6e{left:531.538699pt;}
.x9d{left:532.464000pt;}
.x2c{left:534.236000pt;}
.x1d{left:536.546667pt;}
.xa2{left:538.306667pt;}
.x64{left:540.934667pt;}
.x1e{left:543.056000pt;}
.xa3{left:544.357333pt;}
.x1f{left:549.697333pt;}
.x65{left:551.346667pt;}
.x9e{left:552.240000pt;}
.x22{left:554.998667pt;}
.x23{left:561.641333pt;}
.x66{left:565.742667pt;}
.x3e{left:568.724000pt;}
.x3f{left:575.366667pt;}
.x2f{left:578.812000pt;}
.xa4{left:582.314667pt;}
.x30{left:585.453333pt;}
.xa5{left:588.365333pt;}
.x99{left:591.413333pt;}
.x9a{left:598.054667pt;}
.xa6{left:605.644000pt;}
.x3a{left:611.393333pt;}
.xa7{left:618.928000pt;}
.x44{left:620.190415pt;}
.x3b{left:624.677333pt;}
.x5b{left:633.633333pt;}
.x68{left:637.906667pt;}
.x69{left:643.618667pt;}
.x8c{left:645.860000pt;}
.x4d{left:647.501333pt;}
.x8d{left:655.005333pt;}
.xac{left:655.918667pt;}
.xa8{left:659.292000pt;}
.xa0{left:667.740000pt;}
.xa1{left:673.790667pt;}
.xad{left:679.829333pt;}
.x51{left:682.358667pt;}
.x52{left:689.001333pt;}
.x53{left:692.388000pt;}
.x90{left:697.897333pt;}
.xab{left:702.357333pt;}
.xaf{left:703.349333pt;}
.x54{left:705.672000pt;}
.x57{left:710.414667pt;}
.x55{left:713.257333pt;}
.xae{left:720.329333pt;}
.x56{left:722.301333pt;}
.x24{left:723.454667pt;}
.xb0{left:725.905333pt;}
.x4f{left:727.074667pt;}
.x25{left:730.097333pt;}
.x26{left:733.484000pt;}
.x27{left:740.126667pt;}
.xa9{left:744.637333pt;}
}




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