
    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_e991294894889c69cde43864.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_2a67bbc51ad945504ce7e50a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_a69e98693a20d61fe7b0f2b5.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_91177c1ec1e01dd6c266fd38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.154000;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_665ecf838f25ca3703759112.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_d7aec80dc3286e0ec65b8891.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_5b2c11daf643b711c3419b9b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.116000;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_8ad4e64f0b7385d8de6e068c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2e4eea892bdcb4c23b38f3c7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_7cef4fd898b6b903d7e85201.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b37fe49ee4202e3afe24b4ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914000;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_8ad4e64f0b7385d8de6e068c.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a12783f326b57c626407045b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006836;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_6e6eb17651fc5f8e720af927.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8ad4e64f0b7385d8de6e068c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_854997d13668328871a3164d.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006836;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_65db3f7d6c7f06aa1b227f04.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a5434fcb35477ebfbd1a358b.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b385d66b5a63e878ad98a4cd.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8539ede32448ab3b636076df.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_61802130f8ef9db4d0fa414d.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_8fd1e4947a5ca5c8ea53fee9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.md{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);}
.m17{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);}
.m11{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);}
.m1b{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);}
.m12{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);}
.m1c{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.mf{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);}
.ma{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);}
.m7{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);}
.m1{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);}
.m22{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);}
.mb{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);}
.m16{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);}
.m9{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);}
.m27{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.mc{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);}
.m18{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);}
.m8{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);}
.m13{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);}
.m21{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);}
.m4{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);}
.m1d{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);}
.m5{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);}
.m24{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);}
.m25{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);}
.m19{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);}
.m28{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);}
.m1f{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);}
.m1a{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);}
.m23{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);}
.m6{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);}
.m29{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);}
.m1e{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);}
.m2{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);}
.me{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:40.677192px;}
.ls38{letter-spacing:-0.342684px;}
.ls53{letter-spacing:-0.324648px;}
.ls56{letter-spacing:-0.216432px;}
.ls55{letter-spacing:-0.210420px;}
.ls3b{letter-spacing:-0.192384px;}
.ls36{letter-spacing:-0.186372px;}
.ls52{letter-spacing:-0.178200px;}
.ls3c{letter-spacing:-0.174348px;}
.ls49{letter-spacing:-0.162324px;}
.ls1e{letter-spacing:-0.150300px;}
.ls30{letter-spacing:-0.144288px;}
.ls37{letter-spacing:-0.138276px;}
.ls34{letter-spacing:-0.132264px;}
.ls31{letter-spacing:-0.120240px;}
.ls2e{letter-spacing:-0.114228px;}
.ls24{letter-spacing:-0.108216px;}
.ls2d{letter-spacing:-0.102204px;}
.ls27{letter-spacing:-0.096192px;}
.ls1d{letter-spacing:-0.090972px;}
.ls3e{letter-spacing:-0.090180px;}
.ls3f{letter-spacing:-0.084168px;}
.ls2f{letter-spacing:-0.078156px;}
.ls3a{letter-spacing:-0.072144px;}
.ls51{letter-spacing:-0.070200px;}
.ls33{letter-spacing:-0.066132px;}
.ls1f{letter-spacing:-0.060120px;}
.ls26{letter-spacing:-0.054108px;}
.ls2b{letter-spacing:-0.048096px;}
.ls20{letter-spacing:-0.042084px;}
.ls21{letter-spacing:-0.036072px;}
.ls35{letter-spacing:-0.030060px;}
.ls39{letter-spacing:-0.024048px;}
.ls2c{letter-spacing:-0.021600px;}
.ls25{letter-spacing:-0.018036px;}
.ls22{letter-spacing:-0.012024px;}
.ls3d{letter-spacing:-0.006012px;}
.ls23{letter-spacing:-0.005400px;}
.ls6{letter-spacing:0.000000px;}
.ls4b{letter-spacing:0.000154px;}
.ls75{letter-spacing:0.000292px;}
.ls43{letter-spacing:0.000309px;}
.ls5e{letter-spacing:0.000422px;}
.ls70{letter-spacing:0.000447px;}
.ls57{letter-spacing:0.000501px;}
.ls44{letter-spacing:0.000649px;}
.ls4f{letter-spacing:0.001193px;}
.ls50{letter-spacing:0.001331px;}
.ls4{letter-spacing:0.001518px;}
.ls6e{letter-spacing:0.001565px;}
.ls8{letter-spacing:0.001673px;}
.ls5a{letter-spacing:0.001902px;}
.ls6c{letter-spacing:0.002074px;}
.ls4c{letter-spacing:0.002181px;}
.ls40{letter-spacing:0.002360px;}
.ls4d{letter-spacing:0.002394px;}
.ls45{letter-spacing:0.002779px;}
.ls9{letter-spacing:0.002958px;}
.ls41{letter-spacing:0.003494px;}
.ls2a{letter-spacing:0.003699px;}
.ls71{letter-spacing:0.003859px;}
.ls42{letter-spacing:0.004435px;}
.ls67{letter-spacing:0.004800px;}
.ls78{letter-spacing:0.005182px;}
.ls12{letter-spacing:0.005400px;}
.ls1c{letter-spacing:0.005472px;}
.ls29{letter-spacing:0.006012px;}
.ls28{letter-spacing:0.012024px;}
.ls18{letter-spacing:0.018036px;}
.ls11{letter-spacing:0.021600px;}
.ls32{letter-spacing:0.024048px;}
.ls46{letter-spacing:0.027000px;}
.lsd{letter-spacing:0.028728px;}
.ls14{letter-spacing:0.030060px;}
.lsb{letter-spacing:0.033516px;}
.ls10{letter-spacing:0.036072px;}
.ls19{letter-spacing:0.042084px;}
.ls47{letter-spacing:0.043200px;}
.lsf{letter-spacing:0.048096px;}
.ls1a{letter-spacing:0.054108px;}
.ls17{letter-spacing:0.060120px;}
.ls15{letter-spacing:0.066132px;}
.ls16{letter-spacing:0.072144px;}
.ls13{letter-spacing:0.078156px;}
.ls48{letter-spacing:0.091800px;}
.ls4e{letter-spacing:0.108216px;}
.ls54{letter-spacing:0.162324px;}
.lse{letter-spacing:0.172368px;}
.lsc{letter-spacing:0.181944px;}
.ls73{letter-spacing:0.276186px;}
.ls72{letter-spacing:0.282308px;}
.ls59{letter-spacing:0.526460px;}
.ls76{letter-spacing:0.530273px;}
.ls6d{letter-spacing:0.530447px;}
.ls5b{letter-spacing:0.532354px;}
.ls77{letter-spacing:0.533963px;}
.ls64{letter-spacing:0.537859px;}
.ls60{letter-spacing:0.541677px;}
.ls68{letter-spacing:0.543714px;}
.ls6a{letter-spacing:0.545573px;}
.ls6b{letter-spacing:0.551696px;}
.ls7{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls1b{letter-spacing:2.988600px;}
.ls4a{letter-spacing:9.090144px;}
.ls62{letter-spacing:11.487135px;}
.ls5{letter-spacing:11.954850px;}
.ls58{letter-spacing:13.443859px;}
.ls5c{letter-spacing:13.448400px;}
.ls1{letter-spacing:13.449859px;}
.ls5d{letter-spacing:13.454400px;}
.ls66{letter-spacing:13.484135px;}
.ls69{letter-spacing:13.601967px;}
.ls63{letter-spacing:13.629830px;}
.ls74{letter-spacing:13.632634px;}
.ls65{letter-spacing:13.989859px;}
.ls61{letter-spacing:14.050768px;}
.lsa{letter-spacing:14.944403px;}
.ls5f{letter-spacing:17.456282px;}
.ls6f{letter-spacing:18.830400px;}
.ls0{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.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;}
}
.ws33{word-spacing:-17.394700px;}
.ws166{word-spacing:-15.655334px;}
.ws1c{word-spacing:-14.943900px;}
.ws1a{word-spacing:-13.915795px;}
.ws15e{word-spacing:-13.449600px;}
.ws44{word-spacing:-12.151944px;}
.ws19{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws1b1{word-spacing:-4.788058px;}
.ws107{word-spacing:-4.244068px;}
.ws8{word-spacing:-4.184292px;}
.ws3b{word-spacing:-4.124516px;}
.ws41{word-spacing:-3.825638px;}
.ws1b2{word-spacing:-3.765888px;}
.ws192{word-spacing:-3.658291px;}
.wsc7{word-spacing:-3.466985px;}
.wsea{word-spacing:-3.408804px;}
.wsd9{word-spacing:-3.372732px;}
.wsd8{word-spacing:-3.348684px;}
.ws149{word-spacing:-3.347434px;}
.ws158{word-spacing:-3.281702px;}
.ws138{word-spacing:-3.198384px;}
.ws132{word-spacing:-3.186360px;}
.wse2{word-spacing:-3.168324px;}
.wse3{word-spacing:-3.156300px;}
.wsb7{word-spacing:-3.108331px;}
.ws159{word-spacing:-3.066509px;}
.ws133{word-spacing:-3.054096px;}
.ws156{word-spacing:-3.048556px;}
.wsbb{word-spacing:-2.988780px;}
.ws26{word-spacing:-2.929004px;}
.ws150{word-spacing:-2.809453px;}
.ws101{word-spacing:-2.510575px;}
.ws4d{word-spacing:-2.476944px;}
.ws9a{word-spacing:-2.470932px;}
.ws163{word-spacing:-2.313331px;}
.ws25{word-spacing:-2.271473px;}
.wsbc{word-spacing:-2.092146px;}
.ws17e{word-spacing:-1.990541px;}
.ws3{word-spacing:-1.908367px;}
.ws191{word-spacing:-1.882944px;}
.ws49{word-spacing:-1.853044px;}
.ws164{word-spacing:-1.775347px;}
.wsd5{word-spacing:-1.737468px;}
.ws180{word-spacing:-1.721549px;}
.wsd4{word-spacing:-1.701396px;}
.wsf6{word-spacing:-1.689372px;}
.ws10e{word-spacing:-1.673717px;}
.wse6{word-spacing:-1.623240px;}
.wsfd{word-spacing:-1.613941px;}
.wsf7{word-spacing:-1.599192px;}
.ws16e{word-spacing:-1.560154px;}
.ws16f{word-spacing:-1.506355px;}
.ws152{word-spacing:-1.434614px;}
.ws42{word-spacing:-1.374839px;}
.wsa7{word-spacing:-1.364724px;}
.ws19b{word-spacing:-1.344960px;}
.ws2{word-spacing:-1.322630px;}
.ws43{word-spacing:-1.315063px;}
.wsb8{word-spacing:-1.255288px;}
.ws2d{word-spacing:-1.195512px;}
.wsbd{word-spacing:-1.075961px;}
.ws8f{word-spacing:-1.028052px;}
.ws7{word-spacing:-1.016185px;}
.ws57{word-spacing:-0.991980px;}
.ws160{word-spacing:-0.963916px;}
.wsde{word-spacing:-0.961920px;}
.ws10{word-spacing:-0.956410px;}
.ws56{word-spacing:-0.955908px;}
.wsdf{word-spacing:-0.949896px;}
.ws161{word-spacing:-0.914573px;}
.ws40{word-spacing:-0.896634px;}
.ws8e{word-spacing:-0.853704px;}
.wsb4{word-spacing:-0.777083px;}
.ws3f{word-spacing:-0.717307px;}
.ws36{word-spacing:-0.657532px;}
.ws3a{word-spacing:-0.597756px;}
.ws15d{word-spacing:-0.591782px;}
.ws199{word-spacing:-0.537984px;}
.ws8c{word-spacing:-0.486972px;}
.ws19a{word-spacing:-0.484186px;}
.ws8d{word-spacing:-0.444888px;}
.ws1b3{word-spacing:-0.430387px;}
.ws14b{word-spacing:-0.418429px;}
.ws23{word-spacing:-0.358654px;}
.ws60{word-spacing:-0.342684px;}
.ws5f{word-spacing:-0.336672px;}
.ws61{word-spacing:-0.330660px;}
.wsf2{word-spacing:-0.324648px;}
.ws165{word-spacing:-0.322790px;}
.ws12e{word-spacing:-0.312624px;}
.wsc{word-spacing:-0.298878px;}
.ws62{word-spacing:-0.288576px;}
.ws4c{word-spacing:-0.263340px;}
.ws58{word-spacing:-0.258516px;}
.ws5b{word-spacing:-0.252504px;}
.wsf1{word-spacing:-0.240480px;}
.ws13{word-spacing:-0.239102px;}
.ws7c{word-spacing:-0.234468px;}
.ws5d{word-spacing:-0.216432px;}
.ws1ad{word-spacing:-0.215194px;}
.wsec{word-spacing:-0.210420px;}
.ws11d{word-spacing:-0.192384px;}
.wsf{word-spacing:-0.179327px;}
.ws15f{word-spacing:-0.161395px;}
.ws7b{word-spacing:-0.156312px;}
.ws12d{word-spacing:-0.138276px;}
.ws4b{word-spacing:-0.119700px;}
.ws9{word-spacing:-0.119551px;}
.ws176{word-spacing:-0.107597px;}
.ws2a{word-spacing:-0.059776px;}
.ws194{word-spacing:-0.053798px;}
.ws189{word-spacing:-0.025584px;}
.ws17a{word-spacing:-0.025526px;}
.ws1a7{word-spacing:-0.025229px;}
.ws19c{word-spacing:-0.024557px;}
.ws177{word-spacing:-0.009350px;}
.ws1a2{word-spacing:-0.004157px;}
.ws18{word-spacing:-0.003082px;}
.ws0{word-spacing:0.000000px;}
.ws186{word-spacing:0.002890px;}
.ws5c{word-spacing:0.012024px;}
.ws77{word-spacing:0.024048px;}
.ws5a{word-spacing:0.042084px;}
.ws168{word-spacing:0.053798px;}
.ws5{word-spacing:0.059776px;}
.ws5e{word-spacing:0.060120px;}
.wsac{word-spacing:0.078156px;}
.wsd0{word-spacing:0.086400px;}
.ws190{word-spacing:0.106918px;}
.ws18e{word-spacing:0.107597px;}
.ws13b{word-spacing:0.108216px;}
.ws96{word-spacing:0.114228px;}
.ws11{word-spacing:0.119551px;}
.wsdb{word-spacing:0.126252px;}
.ws51{word-spacing:0.132264px;}
.ws118{word-spacing:0.135000px;}
.ws76{word-spacing:0.138276px;}
.ws12a{word-spacing:0.144288px;}
.wseb{word-spacing:0.150300px;}
.ws53{word-spacing:0.156600px;}
.ws162{word-spacing:0.161395px;}
.ws54{word-spacing:0.172800px;}
.ws52{word-spacing:0.178200px;}
.ws17{word-spacing:0.179327px;}
.ws59{word-spacing:0.183600px;}
.ws78{word-spacing:0.199800px;}
.ws175{word-spacing:0.212288px;}
.ws16d{word-spacing:0.215194px;}
.ws20{word-spacing:0.239102px;}
.ws117{word-spacing:0.248400px;}
.ws196{word-spacing:0.268992px;}
.ws195{word-spacing:0.294181px;}
.ws1d{word-spacing:0.298878px;}
.ws187{word-spacing:0.322790px;}
.ws144{word-spacing:0.342684px;}
.ws2f{word-spacing:0.358654px;}
.ws2e{word-spacing:0.418429px;}
.ws7a{word-spacing:0.420840px;}
.wsa4{word-spacing:0.456912px;}
.ws6a{word-spacing:0.468936px;}
.ws123{word-spacing:0.474948px;}
.wsc2{word-spacing:0.478205px;}
.ws18d{word-spacing:0.484186px;}
.ws6b{word-spacing:0.486972px;}
.ws83{word-spacing:0.517032px;}
.ws14{word-spacing:0.537980px;}
.ws1a9{word-spacing:0.537984px;}
.ws79{word-spacing:0.553104px;}
.wsa3{word-spacing:0.565128px;}
.ws30{word-spacing:0.597756px;}
.ws3e{word-spacing:0.657532px;}
.ws145{word-spacing:0.667332px;}
.ws71{word-spacing:0.717307px;}
.ws13a{word-spacing:0.769536px;}
.wsed{word-spacing:0.775548px;}
.wsa{word-spacing:0.777083px;}
.ws82{word-spacing:0.787572px;}
.ws140{word-spacing:0.805608px;}
.ws141{word-spacing:0.817632px;}
.ws142{word-spacing:0.835668px;}
.ws6e{word-spacing:0.836858px;}
.ws11b{word-spacing:0.859716px;}
.ws1b0{word-spacing:0.860774px;}
.wsc0{word-spacing:0.896634px;}
.ws119{word-spacing:0.901800px;}
.ws11a{word-spacing:0.931860px;}
.ws84{word-spacing:0.943884px;}
.ws11c{word-spacing:0.949896px;}
.ws47{word-spacing:0.956410px;}
.wsfb{word-spacing:1.016185px;}
.ws15{word-spacing:1.075961px;}
.wsfc{word-spacing:1.135736px;}
.wsbe{word-spacing:1.195512px;}
.ws135{word-spacing:1.202400px;}
.ws185{word-spacing:1.237363px;}
.ws134{word-spacing:1.250496px;}
.ws108{word-spacing:1.255288px;}
.wsc3{word-spacing:1.315063px;}
.ws2c{word-spacing:1.374839px;}
.ws27{word-spacing:1.494390px;}
.ws99{word-spacing:1.509012px;}
.ws128{word-spacing:1.545084px;}
.wsd1{word-spacing:1.551096px;}
.wsdc{word-spacing:1.563120px;}
.ws10a{word-spacing:1.613941px;}
.wsf5{word-spacing:1.647288px;}
.wsdd{word-spacing:1.659312px;}
.ws46{word-spacing:1.673717px;}
.ws129{word-spacing:1.713420px;}
.wsae{word-spacing:1.733492px;}
.ws73{word-spacing:1.793268px;}
.ws122{word-spacing:1.851696px;}
.wscb{word-spacing:1.853044px;}
.ws55{word-spacing:1.887768px;}
.ws151{word-spacing:1.912819px;}
.ws120{word-spacing:1.917828px;}
.ws98{word-spacing:1.929852px;}
.ws4f{word-spacing:1.947888px;}
.ws94{word-spacing:1.959912px;}
.ws10b{word-spacing:1.972595px;}
.ws19e{word-spacing:1.990541px;}
.ws121{word-spacing:1.995984px;}
.ws4a{word-spacing:2.032370px;}
.ws4e{word-spacing:2.038068px;}
.wsaf{word-spacing:2.092146px;}
.ws39{word-spacing:2.151922px;}
.wsb{word-spacing:2.211697px;}
.wsc9{word-spacing:2.271473px;}
.ws137{word-spacing:2.284560px;}
.ws15a{word-spacing:2.313331px;}
.ws111{word-spacing:2.331248px;}
.ws136{word-spacing:2.386764px;}
.ws153{word-spacing:2.391024px;}
.ws1a4{word-spacing:2.420928px;}
.ws95{word-spacing:2.434860px;}
.wsb0{word-spacing:2.450800px;}
.ws28{word-spacing:2.510575px;}
.ws6c{word-spacing:2.555100px;}
.ws72{word-spacing:2.570351px;}
.ws179{word-spacing:2.582323px;}
.wsca{word-spacing:2.630126px;}
.ws178{word-spacing:2.636122px;}
.ws9f{word-spacing:2.687364px;}
.ws45{word-spacing:2.689902px;}
.ws146{word-spacing:2.717424px;}
.ws171{word-spacing:2.743718px;}
.wsc1{word-spacing:2.749678px;}
.ws170{word-spacing:2.757776px;}
.ws106{word-spacing:2.809453px;}
.wsf9{word-spacing:2.869229px;}
.ws15c{word-spacing:2.905114px;}
.ws114{word-spacing:2.929004px;}
.ws13d{word-spacing:2.951892px;}
.ws19d{word-spacing:2.958912px;}
.ws93{word-spacing:2.993976px;}
.ws91{word-spacing:3.012012px;}
.wsf4{word-spacing:3.042072px;}
.ws154{word-spacing:3.048556px;}
.ws13c{word-spacing:3.066120px;}
.wsc4{word-spacing:3.108331px;}
.wsb5{word-spacing:3.168107px;}
.ws17b{word-spacing:3.174106px;}
.wsbf{word-spacing:3.227882px;}
.ws10c{word-spacing:3.287658px;}
.ws90{word-spacing:3.312612px;}
.ws1aa{word-spacing:3.335501px;}
.ws147{word-spacing:3.336660px;}
.ws92{word-spacing:3.342672px;}
.ws148{word-spacing:3.414816px;}
.ws11e{word-spacing:3.426840px;}
.wsb9{word-spacing:3.466985px;}
.wsb1{word-spacing:3.526760px;}
.wsb3{word-spacing:3.586536px;}
.ws109{word-spacing:3.646312px;}
.ws131{word-spacing:3.661308px;}
.ws155{word-spacing:3.706087px;}
.ws7d{word-spacing:3.769524px;}
.ws1a0{word-spacing:3.805013px;}
.ws19f{word-spacing:3.819686px;}
.wsa8{word-spacing:3.823632px;}
.ws3d{word-spacing:3.825638px;}
.ws7e{word-spacing:3.835656px;}
.wsa9{word-spacing:3.841668px;}
.ws6f{word-spacing:3.885414px;}
.wsf8{word-spacing:3.945190px;}
.ws17d{word-spacing:3.981082px;}
.ws38{word-spacing:4.004965px;}
.ws12f{word-spacing:4.034052px;}
.ws8a{word-spacing:4.040064px;}
.ws14f{word-spacing:4.064741px;}
.ws116{word-spacing:4.124516px;}
.wsd3{word-spacing:4.136256px;}
.ws8b{word-spacing:4.148280px;}
.ws1e{word-spacing:4.184292px;}
.ws1af{word-spacing:4.196275px;}
.ws3c{word-spacing:4.244068px;}
.wsc6{word-spacing:4.250074px;}
.ws16{word-spacing:4.303843px;}
.ws17f{word-spacing:4.357670px;}
.ws2b{word-spacing:4.363619px;}
.ws12{word-spacing:4.423394px;}
.ws68{word-spacing:4.424832px;}
.ws67{word-spacing:4.454892px;}
.ws182{word-spacing:4.465267px;}
.ws35{word-spacing:4.483170px;}
.ws34{word-spacing:4.542946px;}
.wsc5{word-spacing:4.572864px;}
.ws115{word-spacing:4.602721px;}
.ws143{word-spacing:4.755492px;}
.ws97{word-spacing:4.761504px;}
.ws89{word-spacing:4.797576px;}
.ws86{word-spacing:4.875732px;}
.ws85{word-spacing:4.881744px;}
.ws88{word-spacing:4.899780px;}
.ws14d{word-spacing:5.021150px;}
.wse1{word-spacing:5.098176px;}
.wsc8{word-spacing:5.140702px;}
.ws9c{word-spacing:5.146272px;}
.wsaa{word-spacing:5.170320px;}
.wsb2{word-spacing:5.200477px;}
.wsab{word-spacing:5.212404px;}
.ws184{word-spacing:5.218445px;}
.ws9b{word-spacing:5.230440px;}
.ws183{word-spacing:5.373840px;}
.ws181{word-spacing:5.374195px;}
.ws173{word-spacing:5.374339px;}
.ws1a3{word-spacing:5.375251px;}
.ws16c{word-spacing:5.375818px;}
.ws1a6{word-spacing:5.377037px;}
.ws15b{word-spacing:5.378822px;}
.ws37{word-spacing:5.379804px;}
.ws174{word-spacing:5.379840px;}
.ws16b{word-spacing:5.381424px;}
.ws193{word-spacing:5.381453px;}
.ws32{word-spacing:5.439580px;}
.wsb6{word-spacing:5.559131px;}
.ws18f{word-spacing:5.595034px;}
.ws4{word-spacing:5.678682px;}
.ws16a{word-spacing:5.702630px;}
.ws169{word-spacing:5.756429px;}
.ws22{word-spacing:5.798233px;}
.wse5{word-spacing:5.855688px;}
.ws1f{word-spacing:5.858009px;}
.ws63{word-spacing:5.867712px;}
.wse4{word-spacing:5.879736px;}
.wscc{word-spacing:5.917784px;}
.ws188{word-spacing:5.917824px;}
.ws64{word-spacing:5.945868px;}
.wse{word-spacing:5.977560px;}
.ws70{word-spacing:6.037336px;}
.ws18a{word-spacing:6.108355px;}
.ws18b{word-spacing:6.133018px;}
.ws10f{word-spacing:6.156887px;}
.ws167{word-spacing:6.186816px;}
.ws105{word-spacing:6.216662px;}
.ws172{word-spacing:6.240614px;}
.ws113{word-spacing:6.276438px;}
.ws1ae{word-spacing:6.294413px;}
.ws139{word-spacing:6.294564px;}
.ws112{word-spacing:6.336214px;}
.ws6{word-spacing:6.515540px;}
.ws18c{word-spacing:6.563405px;}
.wsff{word-spacing:6.694867px;}
.wsad{word-spacing:6.874194px;}
.ws80{word-spacing:6.907788px;}
.ws14e{word-spacing:6.933970px;}
.wsd7{word-spacing:6.967908px;}
.wsce{word-spacing:6.976800px;}
.wscd{word-spacing:6.993000px;}
.ws11f{word-spacing:6.997968px;}
.ws81{word-spacing:7.009992px;}
.wscf{word-spacing:7.014600px;}
.ws7f{word-spacing:7.052076px;}
.wsd6{word-spacing:7.076124px;}
.ws100{word-spacing:7.173072px;}
.ws10d{word-spacing:7.232848px;}
.ws13f{word-spacing:7.334640px;}
.ws21{word-spacing:7.352399px;}
.ws13e{word-spacing:7.364700px;}
.wsfe{word-spacing:7.471950px;}
.ws14c{word-spacing:7.531726px;}
.wsda{word-spacing:7.749468px;}
.ws104{word-spacing:7.830604px;}
.ws87{word-spacing:7.995960px;}
.ws103{word-spacing:8.129482px;}
.ws1a5{word-spacing:8.231155px;}
.ws102{word-spacing:8.249033px;}
.ws1a1{word-spacing:8.284954px;}
.wsa6{word-spacing:8.392752px;}
.wsa5{word-spacing:8.458884px;}
.wsf3{word-spacing:8.705376px;}
.ws14a{word-spacing:8.727238px;}
.wsfa{word-spacing:8.787013px;}
.ws110{word-spacing:8.966340px;}
.ws127{word-spacing:9.024012px;}
.wsd2{word-spacing:9.060084px;}
.wse0{word-spacing:9.126216px;}
.ws29{word-spacing:9.145667px;}
.ws126{word-spacing:9.180324px;}
.ws31{word-spacing:9.862974px;}
.ws6d{word-spacing:9.982525px;}
.wsba{word-spacing:11.118262px;}
.wse9{word-spacing:11.194344px;}
.ws69{word-spacing:11.567088px;}
.wse7{word-spacing:11.603160px;}
.wse8{word-spacing:11.747448px;}
.wsa1{word-spacing:12.102156px;}
.wsa2{word-spacing:12.144240px;}
.ws12b{word-spacing:12.751452px;}
.ws12c{word-spacing:12.901752px;}
.ws1ab{word-spacing:13.664794px;}
.ws157{word-spacing:14.047266px;}
.ws197{word-spacing:14.202778px;}
.wsd{word-spacing:14.884124px;}
.ws75{word-spacing:15.192324px;}
.ws17c{word-spacing:15.278746px;}
.ws198{word-spacing:15.440141px;}
.wsa0{word-spacing:15.559056px;}
.wsef{word-spacing:15.601140px;}
.wsee{word-spacing:15.667272px;}
.wsf0{word-spacing:15.709356px;}
.ws24{word-spacing:16.318739px;}
.ws1ac{word-spacing:17.269286px;}
.ws66{word-spacing:18.829584px;}
.ws65{word-spacing:18.865656px;}
.ws50{word-spacing:19.490904px;}
.ws130{word-spacing:19.845612px;}
.ws124{word-spacing:19.887696px;}
.ws125{word-spacing:19.929780px;}
.ws74{word-spacing:20.503031px;}
.ws9e{word-spacing:25.839576px;}
.ws9d{word-spacing:26.128152px;}
.ws1a8{word-spacing:48.418560px;}
.ws48{word-spacing:129.099043px;}
.ws1b{word-spacing:751.309447px;}
._37{margin-left:-9.162288px;}
._3{margin-left:-7.711052px;}
._0{margin-left:-5.917824px;}
._4{margin-left:-3.981082px;}
._3f{margin-left:-2.958912px;}
._6{margin-left:-1.936742px;}
._8{width:1.091170px;}
._1{width:2.999212px;}
._14{width:4.650607px;}
._15{width:8.105882px;}
._b{width:9.683647px;}
._22{width:10.887732px;}
._3d{width:12.691818px;}
._17{width:13.796234px;}
._f{width:15.685130px;}
._d{width:16.761091px;}
._5{width:17.861069px;}
._7{width:19.797811px;}
._9{width:21.794210px;}
._c{width:23.192972px;}
._12{width:24.531919px;}
._2a{width:26.420815px;}
._e{width:27.974981px;}
._29{width:29.529146px;}
._36{width:30.686418px;}
._19{width:32.936356px;}
._16{width:34.012316px;}
._11{width:35.470854px;}
._10{width:36.618520px;}
._a{width:38.280307px;}
._35{width:40.312678px;}
._3a{width:41.663593px;}
._38{width:42.679778px;}
._3b{width:43.994842px;}
._40{width:46.270173px;}
._18{width:48.836665px;}
._3c{width:61.868160px;}
._3e{width:67.953499px;}
._2{width:69.349868px;}
._23{width:295.922664px;}
._20{width:322.922556px;}
._26{width:334.776979px;}
._1d{width:336.714084px;}
._2b{width:338.752243px;}
._25{width:352.219032px;}
._1f{width:354.960504px;}
._21{width:383.494334px;}
._32{width:388.639642px;}
._2f{width:407.092493px;}
._1e{width:416.531153px;}
._28{width:422.361914px;}
._2d{width:429.365030px;}
._24{width:433.265563px;}
._27{width:436.832798px;}
._31{width:442.814630px;}
._1b{width:444.930962px;}
._2e{width:461.913062px;}
._34{width:467.346701px;}
._1c{width:469.201406px;}
._30{width:476.384832px;}
._33{width:480.581107px;}
._2c{width:510.277824px;}
._1a{width:1536.392592px;}
._39{width:1922.198700px;}
._13{width:1946.108700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y19f{bottom:-717.534711px;}
.y19e{bottom:-697.284792px;}
.y19d{bottom:-677.034873px;}
.y19c{bottom:-656.784954px;}
.ybd{bottom:-644.822481px;}
.y19b{bottom:-636.535035px;}
.ybc{bottom:-624.572562px;}
.y19a{bottom:-616.285116px;}
.y11c{bottom:-605.321724px;}
.ybb{bottom:-604.322643px;}
.y199{bottom:-596.125377px;}
.y11b{bottom:-585.071805px;}
.yba{bottom:-584.072724px;}
.y198{bottom:-575.875458px;}
.y11a{bottom:-564.821886px;}
.yb9{bottom:-563.912985px;}
.y197{bottom:-555.625539px;}
.y119{bottom:-544.662147px;}
.yb8{bottom:-543.663066px;}
.y196{bottom:-535.375620px;}
.y118{bottom:-524.412228px;}
.yb7{bottom:-523.413147px;}
.y195{bottom:-515.125701px;}
.y117{bottom:-504.162309px;}
.yb6{bottom:-503.163228px;}
.y194{bottom:-494.875782px;}
.y81{bottom:-494.362884px;}
.y116{bottom:-483.912390px;}
.yb5{bottom:-482.913309px;}
.y193{bottom:-474.625863px;}
.y80{bottom:-474.112965px;}
.y115{bottom:-463.662471px;}
.yb4{bottom:-462.663390px;}
.y192{bottom:-454.466124px;}
.y7f{bottom:-453.953226px;}
.y114{bottom:-443.412552px;}
.yb3{bottom:-442.413471px;}
.y191{bottom:-434.216205px;}
.y7e{bottom:-433.703307px;}
.y113{bottom:-423.162633px;}
.yb2{bottom:-422.253732px;}
.y190{bottom:-413.966286px;}
.y7d{bottom:-413.453388px;}
.y112{bottom:-403.002894px;}
.yb1{bottom:-402.003813px;}
.y18f{bottom:-393.716367px;}
.y7c{bottom:-393.203469px;}
.y111{bottom:-382.752975px;}
.yb0{bottom:-381.753894px;}
.y18e{bottom:-373.466448px;}
.y7b{bottom:-372.953550px;}
.y110{bottom:-362.503056px;}
.yaf{bottom:-361.503975px;}
.y18d{bottom:-353.216529px;}
.y7a{bottom:-351.263550px;}
.y10f{bottom:-342.253137px;}
.yae{bottom:-341.254056px;}
.y18c{bottom:-332.966610px;}
.y79{bottom:-330.293550px;}
.y10e{bottom:-322.003218px;}
.yad{bottom:-321.004137px;}
.y78{bottom:-309.233550px;}
.y18b{bottom:-303.806907px;}
.y10d{bottom:-301.753299px;}
.yac{bottom:-300.754218px;}
.y77{bottom:-288.263550px;}
.y10c{bottom:-281.503380px;}
.yab{bottom:-280.594479px;}
.y76{bottom:-267.293550px;}
.y18a{bottom:-265.557060px;}
.y10b{bottom:-261.343641px;}
.yaa{bottom:-260.344560px;}
.y75{bottom:-246.323550px;}
.y189{bottom:-245.307141px;}
.y10a{bottom:-241.093722px;}
.ya9{bottom:-240.094641px;}
.y74{bottom:-225.353550px;}
.y188{bottom:-225.057222px;}
.y109{bottom:-220.843803px;}
.ya8{bottom:-219.844722px;}
.y187{bottom:-204.807303px;}
.y73{bottom:-204.293400px;}
.y108{bottom:-200.593884px;}
.ya7{bottom:-199.594803px;}
.y186{bottom:-184.557384px;}
.y71{bottom:-183.234171px;}
.y107{bottom:-180.343965px;}
.ya6{bottom:-179.344884px;}
.y70{bottom:-173.153550px;}
.y185{bottom:-164.307465px;}
.y72{bottom:-162.984252px;}
.y106{bottom:-160.094046px;}
.ya5{bottom:-159.185145px;}
.y184{bottom:-144.147726px;}
.y105{bottom:-139.844127px;}
.ya4{bottom:-138.935226px;}
.y6f{bottom:-132.743550px;}
.y183{bottom:-123.897807px;}
.y104{bottom:-119.684388px;}
.ya3{bottom:-118.685307px;}
.y182{bottom:-103.647888px;}
.y103{bottom:-99.434469px;}
.ya2{bottom:-98.435388px;}
.y6e{bottom:-94.853388px;}
.y181{bottom:-83.397969px;}
.y102{bottom:-79.184550px;}
.ya1{bottom:-78.185469px;}
.y6d{bottom:-74.603469px;}
.y180{bottom:-63.148050px;}
.ya0{bottom:-57.935550px;}
.y6c{bottom:-54.353550px;}
.y101{bottom:-41.385000px;}
.y17f{bottom:-25.348050px;}
.y100{bottom:-21.854550px;}
.y9f{bottom:-20.135550px;}
.y6b{bottom:-16.553550px;}
.y17e{bottom:-0.868050px;}
.y0{bottom:0.000000px;}
.yff{bottom:2.625450px;}
.y10{bottom:3.425340px;}
.y9e{bottom:4.254414px;}
.y6a{bottom:7.926531px;}
.yf{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y30{bottom:63.780000px;}
.y213{bottom:108.957000px;}
.yd7{bottom:111.544500px;}
.y1b9{bottom:112.632000px;}
.yfc{bottom:113.229000px;}
.y99{bottom:114.103500px;}
.y216{bottom:115.810500px;}
.y2f{bottom:115.875000px;}
.y137{bottom:117.942000px;}
.y17b{bottom:119.863500px;}
.y63{bottom:123.121500px;}
.y15a{bottom:125.572500px;}
.y212{bottom:128.325000px;}
.yd6{bottom:131.809500px;}
.y1b8{bottom:132.897000px;}
.yfb{bottom:133.492500px;}
.y1df{bottom:133.927500px;}
.y98{bottom:134.367000px;}
.y215{bottom:135.178500px;}
.y2e{bottom:136.140000px;}
.y136{bottom:138.207000px;}
.y17a{bottom:140.128500px;}
.y62{bottom:143.386500px;}
.y159{bottom:145.837500px;}
.y211{bottom:147.691500px;}
.yd5{bottom:152.073000px;}
.y1b7{bottom:153.160500px;}
.y1de{bottom:153.295500px;}
.yfa{bottom:153.757500px;}
.y214{bottom:154.545000px;}
.y2d{bottom:156.403500px;}
.y135{bottom:158.470500px;}
.y179{bottom:160.392000px;}
.y61{bottom:163.650000px;}
.y158{bottom:166.101000px;}
.y210{bottom:167.059500px;}
.yd4{bottom:172.338000px;}
.y1dd{bottom:172.662000px;}
.y1b6{bottom:173.425500px;}
.yf9{bottom:174.021000px;}
.y2c{bottom:176.667000px;}
.y134{bottom:178.734000px;}
.y178{bottom:180.657000px;}
.y97{bottom:182.727000px;}
.y60{bottom:183.913500px;}
.y157{bottom:186.364500px;}
.y20f{bottom:186.427500px;}
.y1dc{bottom:192.030000px;}
.yd3{bottom:192.601500px;}
.y1b5{bottom:193.689000px;}
.yf8{bottom:194.286000px;}
.y2b{bottom:196.932000px;}
.y133{bottom:198.999000px;}
.y177{bottom:200.920500px;}
.y5f{bottom:204.178500px;}
.y96{bottom:204.784500px;}
.y20e{bottom:205.794000px;}
.y156{bottom:206.629500px;}
.y1db{bottom:211.396500px;}
.yd2{bottom:212.865000px;}
.y1b4{bottom:213.952500px;}
.yf7{bottom:214.549500px;}
.y2a{bottom:217.195500px;}
.y132{bottom:219.262500px;}
.y176{bottom:221.184000px;}
.y5e{bottom:224.442000px;}
.y20d{bottom:225.162000px;}
.y155{bottom:226.893000px;}
.y95{bottom:228.783000px;}
.y1da{bottom:230.764500px;}
.yd1{bottom:233.130000px;}
.y1b3{bottom:234.217500px;}
.yf6{bottom:234.813000px;}
.y29{bottom:237.460500px;}
.y131{bottom:239.527500px;}
.y175{bottom:241.449000px;}
.y20c{bottom:244.528500px;}
.y5d{bottom:244.707000px;}
.y154{bottom:247.158000px;}
.y1d9{bottom:250.132500px;}
.y94{bottom:252.780000px;}
.yd0{bottom:253.393500px;}
.y1b2{bottom:254.481000px;}
.yf5{bottom:255.078000px;}
.y28{bottom:257.724000px;}
.y130{bottom:259.791000px;}
.y174{bottom:261.712500px;}
.y20b{bottom:263.896500px;}
.y5c{bottom:264.970500px;}
.y153{bottom:267.421500px;}
.y1d8{bottom:269.499000px;}
.ycf{bottom:273.658500px;}
.y1b1{bottom:274.746000px;}
.yf4{bottom:275.341500px;}
.y93{bottom:276.778500px;}
.y27{bottom:277.987500px;}
.y12f{bottom:280.054500px;}
.y173{bottom:281.977500px;}
.y20a{bottom:283.264500px;}
.y5b{bottom:285.234000px;}
.y152{bottom:287.685000px;}
.y1d7{bottom:288.867000px;}
.yce{bottom:293.922000px;}
.y1b0{bottom:295.009500px;}
.yf3{bottom:295.606500px;}
.y26{bottom:298.252500px;}
.y12e{bottom:300.319500px;}
.y92{bottom:300.777000px;}
.y172{bottom:302.241000px;}
.y209{bottom:302.631000px;}
.y5a{bottom:305.499000px;}
.y151{bottom:307.950000px;}
.y1d5{bottom:308.233500px;}
.y1d6{bottom:308.235000px;}
.ycd{bottom:314.185500px;}
.y1af{bottom:315.273000px;}
.yf2{bottom:315.870000px;}
.y25{bottom:318.516000px;}
.y12d{bottom:320.583000px;}
.y208{bottom:321.999000px;}
.y171{bottom:322.504500px;}
.y91{bottom:324.774000px;}
.y59{bottom:325.762500px;}
.y1d4{bottom:327.601500px;}
.y150{bottom:328.213500px;}
.ycc{bottom:334.450500px;}
.y1ae{bottom:335.538000px;}
.yf1{bottom:336.133500px;}
.y24{bottom:338.781000px;}
.y17d{bottom:339.061950px;}
.y12c{bottom:340.848000px;}
.y207{bottom:341.367000px;}
.y170{bottom:342.769500px;}
.y58{bottom:346.027500px;}
.y1d3{bottom:346.969500px;}
.y14f{bottom:348.478500px;}
.y90{bottom:348.772500px;}
.y9d{bottom:350.754531px;}
.ycb{bottom:354.714000px;}
.y1ad{bottom:355.801500px;}
.yf0{bottom:356.398500px;}
.y23{bottom:359.044500px;}
.y206{bottom:360.733500px;}
.y12b{bottom:361.111500px;}
.y16f{bottom:363.033000px;}
.y57{bottom:366.291000px;}
.y1d2{bottom:366.336000px;}
.y14e{bottom:368.742000px;}
.y9c{bottom:371.004450px;}
.y8f{bottom:372.769500px;}
.yca{bottom:374.979000px;}
.y1ac{bottom:376.066500px;}
.yef{bottom:376.662000px;}
.y22{bottom:379.308000px;}
.y205{bottom:380.101500px;}
.y12a{bottom:381.375000px;}
.y16e{bottom:383.298000px;}
.y1d1{bottom:385.704000px;}
.y56{bottom:386.554500px;}
.y14d{bottom:389.005500px;}
.yc9{bottom:395.242500px;}
.y1ab{bottom:396.330000px;}
.y8e{bottom:396.768000px;}
.yee{bottom:396.927000px;}
.y204{bottom:399.468000px;}
.y21{bottom:399.573000px;}
.y129{bottom:401.640000px;}
.y16d{bottom:403.561500px;}
.y1d0{bottom:405.072000px;}
.y55{bottom:406.819500px;}
.y9b{bottom:408.444450px;}
.y14c{bottom:409.270500px;}
.yc8{bottom:415.506000px;}
.y1aa{bottom:416.593500px;}
.yed{bottom:417.190500px;}
.y203{bottom:418.836000px;}
.y20{bottom:419.836500px;}
.y128{bottom:421.903500px;}
.y16c{bottom:423.825000px;}
.y1cf{bottom:424.438500px;}
.y54{bottom:427.083000px;}
.y8d{bottom:428.581500px;}
.y14b{bottom:429.534000px;}
.yc7{bottom:435.771000px;}
.y1a9{bottom:436.858500px;}
.yec{bottom:437.454000px;}
.y202{bottom:438.204000px;}
.y127{bottom:442.167000px;}
.y1ce{bottom:443.806500px;}
.y16b{bottom:444.090000px;}
.y53{bottom:447.348000px;}
.y1f{bottom:449.067000px;}
.y14a{bottom:449.799000px;}
.yc6{bottom:456.034500px;}
.y1a8{bottom:457.122000px;}
.y201{bottom:457.570500px;}
.yeb{bottom:457.719000px;}
.y8c{bottom:461.793000px;}
.y126{bottom:462.432000px;}
.y1cd{bottom:463.173000px;}
.y69{bottom:463.506873px;}
.y16a{bottom:464.353500px;}
.yfe{bottom:466.305450px;}
.y52{bottom:467.611500px;}
.y149{bottom:470.062500px;}
.yc5{bottom:476.299500px;}
.y200{bottom:476.938500px;}
.y1a7{bottom:477.387000px;}
.yea{bottom:477.982500px;}
.y8b{bottom:482.058000px;}
.y1cc{bottom:482.541000px;}
.y125{bottom:482.695500px;}
.y68{bottom:483.666612px;}
.y169{bottom:484.618500px;}
.y51{bottom:487.875000px;}
.y148{bottom:490.326000px;}
.y1ff{bottom:496.305000px;}
.yc4{bottom:496.563000px;}
.y1a6{bottom:497.650500px;}
.ye9{bottom:498.247500px;}
.y1cb{bottom:501.909000px;}
.y8a{bottom:502.321500px;}
.y124{bottom:502.960500px;}
.y67{bottom:503.916531px;}
.y168{bottom:504.882000px;}
.y50{bottom:508.140000px;}
.y147{bottom:510.591000px;}
.y1fe{bottom:515.673000px;}
.yc3{bottom:516.826500px;}
.y1a5{bottom:517.914000px;}
.ye8{bottom:518.511000px;}
.y89{bottom:522.586500px;}
.y123{bottom:523.224000px;}
.y66{bottom:524.166450px;}
.y167{bottom:525.145500px;}
.y1e{bottom:525.483000px;}
.y4f{bottom:528.403500px;}
.y1ca{bottom:530.242500px;}
.y146{bottom:530.854500px;}
.y1fd{bottom:535.041000px;}
.yc2{bottom:537.091500px;}
.y1a4{bottom:538.179000px;}
.ye7{bottom:538.774500px;}
.y88{bottom:542.850000px;}
.y122{bottom:543.487500px;}
.y166{bottom:545.410500px;}
.y1d{bottom:545.746500px;}
.y4e{bottom:548.667000px;}
.y145{bottom:551.119500px;}
.y1fc{bottom:554.407500px;}
.yc1{bottom:557.355000px;}
.y1a3{bottom:558.442500px;}
.y65{bottom:561.606450px;}
.y87{bottom:563.113500px;}
.y121{bottom:563.752500px;}
.y165{bottom:565.674000px;}
.y4d{bottom:568.932000px;}
.y1c9{bottom:569.694000px;}
.ye6{bottom:570.994500px;}
.y144{bottom:571.383000px;}
.y1fb{bottom:573.775500px;}
.yc0{bottom:577.620000px;}
.y1a2{bottom:578.706000px;}
.y86{bottom:583.378500px;}
.y1c{bottom:583.944000px;}
.y120{bottom:584.016000px;}
.y164{bottom:585.939000px;}
.y4c{bottom:589.195500px;}
.ye5{bottom:591.258000px;}
.y143{bottom:591.646500px;}
.y1fa{bottom:593.142000px;}
.y1c8{bottom:593.859000px;}
.ybf{bottom:597.883500px;}
.y85{bottom:603.642000px;}
.y1b{bottom:604.207500px;}
.y11f{bottom:604.281000px;}
.y163{bottom:606.202500px;}
.y1a1{bottom:607.936500px;}
.y1c7{bottom:609.057000px;}
.y4b{bottom:609.460500px;}
.ye4{bottom:611.523000px;}
.y142{bottom:611.911500px;}
.y1f9{bottom:612.510000px;}
.y83{bottom:623.907000px;}
.y1c6{bottom:624.255000px;}
.y1a{bottom:624.472500px;}
.y162{bottom:626.466000px;}
.y84{bottom:629.331000px;}
.y4a{bottom:629.724000px;}
.ye3{bottom:631.786500px;}
.y1f8{bottom:631.878000px;}
.y141{bottom:632.175000px;}
.ybe{bottom:632.883000px;}
.y11e{bottom:639.280500px;}
.y1a0{bottom:639.559500px;}
.y19{bottom:644.736000px;}
.y161{bottom:646.731000px;}
.y1c5{bottom:648.418500px;}
.y49{bottom:649.987500px;}
.y1f7{bottom:651.244500px;}
.y140{bottom:652.438500px;}
.ye2{bottom:653.545500px;}
.y9a{bottom:655.312500px;}
.y11d{bottom:658.513500px;}
.y82{bottom:658.906500px;}
.y17c{bottom:661.989000px;}
.y18{bottom:665.001000px;}
.y160{bottom:666.994500px;}
.y48{bottom:670.252500px;}
.y1f6{bottom:670.612500px;}
.y1c4{bottom:672.583500px;}
.y13f{bottom:672.703500px;}
.ye1{bottom:673.809000px;}
.yfd{bottom:680.943000px;}
.y64{bottom:681.336000px;}
.y17{bottom:685.264500px;}
.y15f{bottom:687.258000px;}
.y1c3{bottom:687.781500px;}
.y1f5{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y13e{bottom:692.967000px;}
.ye0{bottom:694.074000px;}
.y1c2{bottom:702.979500px;}
.y16{bottom:705.528000px;}
.y15e{bottom:707.523000px;}
.y1f4{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y13d{bottom:713.232000px;}
.ydf{bottom:715.831500px;}
.y1c1{bottom:718.177500px;}
.y15{bottom:725.793000px;}
.y15d{bottom:727.786500px;}
.y1f3{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y13c{bottom:733.495500px;}
.yde{bottom:736.096500px;}
.y14{bottom:746.056500px;}
.y15c{bottom:748.051500px;}
.y1f2{bottom:748.081500px;}
.y44{bottom:751.308000px;}
.y13b{bottom:753.759000px;}
.ydd{bottom:756.360000px;}
.y13{bottom:766.321500px;}
.y1f1{bottom:767.449500px;}
.y15b{bottom:768.315000px;}
.y43{bottom:771.573000px;}
.y13a{bottom:774.024000px;}
.y12{bottom:786.585000px;}
.y1f0{bottom:786.816000px;}
.ydc{bottom:788.578500px;}
.y42{bottom:791.836500px;}
.y139{bottom:803.254500px;}
.y1ef{bottom:806.184000px;}
.y11{bottom:806.848500px;}
.ydb{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.y1ee{bottom:825.552000px;}
.yda{bottom:829.107000px;}
.y40{bottom:832.365000px;}
.y138{bottom:838.074000px;}
.yd{bottom:838.093500px;}
.y1ed{bottom:844.918500px;}
.ye{bottom:846.404964px;}
.yd9{bottom:849.372000px;}
.y3f{bottom:852.628500px;}
.yc{bottom:856.249500px;}
.y1ec{bottom:864.286500px;}
.y1c0{bottom:869.635500px;}
.y3e{bottom:872.893500px;}
.yd8{bottom:878.602500px;}
.y1eb{bottom:883.653000px;}
.yb{bottom:886.177500px;}
.y1bf{bottom:889.899000px;}
.y3d{bottom:893.157000px;}
.y1ea{bottom:903.021000px;}
.ya{bottom:904.335000px;}
.y1be{bottom:910.164000px;}
.y3c{bottom:913.422000px;}
.y1e9{bottom:922.389000px;}
.y9{bottom:927.373500px;}
.y1bd{bottom:930.427500px;}
.y3b{bottom:933.685500px;}
.y1e8{bottom:941.755500px;}
.y8{bottom:945.531000px;}
.y1bc{bottom:950.692500px;}
.y3a{bottom:953.949000px;}
.y1e7{bottom:961.123500px;}
.y7{bottom:967.771500px;}
.y1bb{bottom:970.956000px;}
.y39{bottom:974.214000px;}
.y1e6{bottom:980.490000px;}
.y38{bottom:994.477500px;}
.y1e5{bottom:999.858000px;}
.y1ba{bottom:1000.186500px;}
.y6{bottom:1010.451000px;}
.y37{bottom:1014.742500px;}
.y1e4{bottom:1019.226000px;}
.y36{bottom:1035.006000px;}
.y1e3{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y35{bottom:1055.269500px;}
.y1e2{bottom:1057.960500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y1e1{bottom:1077.327000px;}
.y33{bottom:1095.798000px;}
.y1e0{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h10{height:6.635092px;}
.h9{height:25.508090px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h7{height:36.445079px;}
.h21{height:37.927872px;}
.h1f{height:38.465856px;}
.h1c{height:38.896243px;}
.h20{height:39.488026px;}
.h18{height:39.569182px;}
.hf{height:41.651743px;}
.hc{height:43.217759px;}
.h1e{height:43.269961px;}
.h4{height:43.875290px;}
.h16{height:44.268047px;}
.h12{height:44.279648px;}
.h8{height:46.858406px;}
.h19{height:49.002344px;}
.h17{height:49.117939px;}
.h14{height:49.939453px;}
.h2{height:50.931027px;}
.hd{height:52.064548px;}
.h6{height:54.547601px;}
.he{height:54.575123px;}
.h13{height:55.599258px;}
.h3{height:69.505289px;}
.h5{height:77.792486px;}
.h15{height:84.945239px;}
.h1d{height:329.104500px;}
.h1a{height:335.781000px;}
.h11{height:449.671500px;}
.h1b{height:450.064500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w5{width:441.817500px;}
.w7{width:567.882000px;}
.w4{width:596.289150px;}
.w6{width:639.358050px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4d{left:-109.668000px;}
.x4e{left:-77.808000px;}
.x80{left:-46.177500px;}
.x2a{left:-31.123350px;}
.x82{left:-14.317500px;}
.x6a{left:-9.261450px;}
.x0{left:0.000000px;}
.x6b{left:22.598550px;}
.x8{left:29.274117px;}
.x81{left:40.942500px;}
.x35{left:44.566650px;}
.x33{left:53.476650px;}
.x2{left:57.111683px;}
.x34{left:60.766650px;}
.x32{left:64.996650px;}
.x37{left:70.216650px;}
.x36{left:74.086650px;}
.x31{left:78.496650px;}
.x2c{left:91.996650px;}
.x2d{left:110.176650px;}
.x21{left:112.561500px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x69{left:126.778950px;}
.x5{left:145.498500px;}
.xb{left:146.692500px;}
.x29{left:148.312350px;}
.x5a{left:149.397000px;}
.xaf{left:154.171500px;}
.xd6{left:155.409000px;}
.x91{left:157.693500px;}
.xb0{left:160.897500px;}
.x7f{left:162.516000px;}
.x92{left:164.418000px;}
.x79{left:166.945500px;}
.xd7{left:169.788000px;}
.xcf{left:171.055500px;}
.x38{left:175.927500px;}
.xc6{left:178.405500px;}
.xcc{left:180.663000px;}
.x7a{left:181.890000px;}
.x52{left:185.494500px;}
.x9{left:188.947500px;}
.xd3{left:191.512500px;}
.x53{left:193.507500px;}
.x43{left:196.762500px;}
.xd2{left:197.955000px;}
.x44{left:203.298000px;}
.x42{left:207.103500px;}
.xa{left:209.763000px;}
.x46{left:211.825500px;}
.x45{left:215.370000px;}
.x41{left:219.195000px;}
.x4c{left:225.549000px;}
.x7d{left:228.952500px;}
.xba{left:231.664500px;}
.x7e{left:237.111000px;}
.x3f{left:238.629000px;}
.x90{left:239.770500px;}
.x20{left:244.014000px;}
.x40{left:247.587000px;}
.x10{left:251.596500px;}
.x76{left:253.917000px;}
.x8f{left:255.228000px;}
.x11{left:259.069500px;}
.xd8{left:267.238500px;}
.x9b{left:271.003500px;}
.x9c{left:274.743000px;}
.xca{left:282.604500px;}
.x3b{left:286.933500px;}
.xa4{left:288.663000px;}
.x3c{left:291.222000px;}
.x4f{left:294.457500px;}
.x6e{left:296.050500px;}
.xc5{left:302.050500px;}
.xc1{left:309.414000px;}
.xc2{left:313.273500px;}
.xd4{left:317.359500px;}
.x2e{left:319.066596px;}
.xc9{left:320.469000px;}
.x72{left:322.776000px;}
.xd5{left:324.084000px;}
.xa7{left:325.998000px;}
.x8d{left:331.044000px;}
.x8e{left:345.988500px;}
.x70{left:350.599500px;}
.x71{left:359.713500px;}
.xbe{left:360.967500px;}
.x12{left:363.096000px;}
.x9d{left:364.135500px;}
.x5f{left:366.645000px;}
.x13{left:370.567500px;}
.x9e{left:371.614500px;}
.xc4{left:374.472000px;}
.x8c{left:376.720500px;}
.x47{left:377.787000px;}
.x60{left:381.589500px;}
.x67{left:392.377500px;}
.xc7{left:394.150500px;}
.x68{left:396.667500px;}
.xc8{left:397.890000px;}
.xbf{left:403.552500px;}
.xd0{left:408.532500px;}
.xb1{left:411.588000px;}
.x14{left:412.603500px;}
.xb2{left:416.820000px;}
.x15{left:420.075000px;}
.x3d{left:422.892000px;}
.x22{left:424.459500px;}
.x61{left:428.475000px;}
.x3e{left:437.836500px;}
.x23{left:439.402500px;}
.x24{left:443.068500px;}
.x25{left:458.011500px;}
.x2f{left:459.197298px;}
.x26{left:460.983000px;}
.x85{left:462.147000px;}
.x54{left:464.023500px;}
.xb3{left:468.336000px;}
.x18{left:471.186000px;}
.x55{left:472.786500px;}
.x39{left:474.619500px;}
.x27{left:475.927500px;}
.x86{left:477.090000px;}
.x28{left:479.607000px;}
.x3a{left:481.045500px;}
.x9f{left:484.320000px;}
.x94{left:490.651500px;}
.x19{left:493.602000px;}
.xb4{left:495.234000px;}
.x95{left:497.376000px;}
.xbb{left:501.882000px;}
.x30{left:507.796803px;}
.xbc{left:508.956000px;}
.x50{left:513.291000px;}
.x51{left:521.608500px;}
.x98{left:529.297500px;}
.xe{left:534.372000px;}
.x62{left:536.860500px;}
.x63{left:540.526500px;}
.xf{left:541.843500px;}
.xcb{left:544.471500px;}
.x48{left:546.871500px;}
.x73{left:551.746500px;}
.x64{left:555.469500px;}
.x49{left:561.816000px;}
.x4a{left:565.533000px;}
.x1e{left:567.301500px;}
.x96{left:569.236500px;}
.x97{left:577.347000px;}
.x4b{left:580.476000px;}
.x1f{left:582.246000px;}
.x2b{left:588.976875px;}
.x65{left:592.392000px;}
.xa8{left:594.543000px;}
.xa5{left:596.152500px;}
.x83{left:597.936000px;}
.x84{left:601.747500px;}
.x66{left:607.336500px;}
.x6c{left:613.146000px;}
.xad{left:615.351000px;}
.x6d{left:617.436000px;}
.x77{left:623.745000px;}
.x89{left:630.268500px;}
.xc3{left:633.012000px;}
.x5b{left:635.817000px;}
.x78{left:638.688000px;}
.x5d{left:640.219500px;}
.xae{left:641.443500px;}
.x8a{left:645.211500px;}
.x5e{left:647.692500px;}
.x5c{left:650.761500px;}
.xa0{left:652.905000px;}
.xa1{left:656.644500px;}
.x16{left:659.782500px;}
.xb7{left:661.624500px;}
.x74{left:662.904000px;}
.xa6{left:664.515000px;}
.x17{left:667.255500px;}
.x75{left:670.846500px;}
.x93{left:675.115500px;}
.x87{left:681.513000px;}
.xb8{left:688.524000px;}
.x88{left:696.456000px;}
.x7{left:701.339982px;}
.xc0{left:703.558500px;}
.xab{left:706.936500px;}
.xc{left:708.417000px;}
.xbd{left:710.133000px;}
.x1a{left:711.201000px;}
.x8b{left:715.369500px;}
.x1b{left:718.672500px;}
.xb9{left:721.054500px;}
.xb5{left:722.743500px;}
.x56{left:727.504500px;}
.x99{left:729.415500px;}
.xd1{left:731.508000px;}
.xac{left:733.836000px;}
.x57{left:734.977500px;}
.xcd{left:736.287000px;}
.x9a{left:737.634000px;}
.x58{left:738.639000px;}
.xa2{left:740.647500px;}
.xa9{left:743.734500px;}
.xa3{left:747.991500px;}
.xb6{left:749.643000px;}
.xaa{left:751.077000px;}
.x59{left:753.582000px;}
.x1c{left:757.174500px;}
.x7b{left:761.080500px;}
.xce{left:763.186500px;}
.x7c{left:769.239000px;}
.x1d{left:772.117500px;}
.xd{left:773.821500px;}
.x6f{left:776.275500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:36.157504pt;}
.ls38{letter-spacing:-0.304608pt;}
.ls53{letter-spacing:-0.288576pt;}
.ls56{letter-spacing:-0.192384pt;}
.ls55{letter-spacing:-0.187040pt;}
.ls3b{letter-spacing:-0.171008pt;}
.ls36{letter-spacing:-0.165664pt;}
.ls52{letter-spacing:-0.158400pt;}
.ls3c{letter-spacing:-0.154976pt;}
.ls49{letter-spacing:-0.144288pt;}
.ls1e{letter-spacing:-0.133600pt;}
.ls30{letter-spacing:-0.128256pt;}
.ls37{letter-spacing:-0.122912pt;}
.ls34{letter-spacing:-0.117568pt;}
.ls31{letter-spacing:-0.106880pt;}
.ls2e{letter-spacing:-0.101536pt;}
.ls24{letter-spacing:-0.096192pt;}
.ls2d{letter-spacing:-0.090848pt;}
.ls27{letter-spacing:-0.085504pt;}
.ls1d{letter-spacing:-0.080864pt;}
.ls3e{letter-spacing:-0.080160pt;}
.ls3f{letter-spacing:-0.074816pt;}
.ls2f{letter-spacing:-0.069472pt;}
.ls3a{letter-spacing:-0.064128pt;}
.ls51{letter-spacing:-0.062400pt;}
.ls33{letter-spacing:-0.058784pt;}
.ls1f{letter-spacing:-0.053440pt;}
.ls26{letter-spacing:-0.048096pt;}
.ls2b{letter-spacing:-0.042752pt;}
.ls20{letter-spacing:-0.037408pt;}
.ls21{letter-spacing:-0.032064pt;}
.ls35{letter-spacing:-0.026720pt;}
.ls39{letter-spacing:-0.021376pt;}
.ls2c{letter-spacing:-0.019200pt;}
.ls25{letter-spacing:-0.016032pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls3d{letter-spacing:-0.005344pt;}
.ls23{letter-spacing:-0.004800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4b{letter-spacing:0.000137pt;}
.ls75{letter-spacing:0.000260pt;}
.ls43{letter-spacing:0.000274pt;}
.ls5e{letter-spacing:0.000375pt;}
.ls70{letter-spacing:0.000397pt;}
.ls57{letter-spacing:0.000445pt;}
.ls44{letter-spacing:0.000577pt;}
.ls4f{letter-spacing:0.001061pt;}
.ls50{letter-spacing:0.001183pt;}
.ls4{letter-spacing:0.001349pt;}
.ls6e{letter-spacing:0.001391pt;}
.ls8{letter-spacing:0.001487pt;}
.ls5a{letter-spacing:0.001691pt;}
.ls6c{letter-spacing:0.001843pt;}
.ls4c{letter-spacing:0.001939pt;}
.ls40{letter-spacing:0.002097pt;}
.ls4d{letter-spacing:0.002128pt;}
.ls45{letter-spacing:0.002471pt;}
.ls9{letter-spacing:0.002630pt;}
.ls41{letter-spacing:0.003106pt;}
.ls2a{letter-spacing:0.003288pt;}
.ls71{letter-spacing:0.003430pt;}
.ls42{letter-spacing:0.003942pt;}
.ls67{letter-spacing:0.004267pt;}
.ls78{letter-spacing:0.004607pt;}
.ls12{letter-spacing:0.004800pt;}
.ls1c{letter-spacing:0.004864pt;}
.ls29{letter-spacing:0.005344pt;}
.ls28{letter-spacing:0.010688pt;}
.ls18{letter-spacing:0.016032pt;}
.ls11{letter-spacing:0.019200pt;}
.ls32{letter-spacing:0.021376pt;}
.ls46{letter-spacing:0.024000pt;}
.lsd{letter-spacing:0.025536pt;}
.ls14{letter-spacing:0.026720pt;}
.lsb{letter-spacing:0.029792pt;}
.ls10{letter-spacing:0.032064pt;}
.ls19{letter-spacing:0.037408pt;}
.ls47{letter-spacing:0.038400pt;}
.lsf{letter-spacing:0.042752pt;}
.ls1a{letter-spacing:0.048096pt;}
.ls17{letter-spacing:0.053440pt;}
.ls15{letter-spacing:0.058784pt;}
.ls16{letter-spacing:0.064128pt;}
.ls13{letter-spacing:0.069472pt;}
.ls48{letter-spacing:0.081600pt;}
.ls4e{letter-spacing:0.096192pt;}
.ls54{letter-spacing:0.144288pt;}
.lse{letter-spacing:0.153216pt;}
.lsc{letter-spacing:0.161728pt;}
.ls73{letter-spacing:0.245498pt;}
.ls72{letter-spacing:0.250941pt;}
.ls59{letter-spacing:0.467965pt;}
.ls76{letter-spacing:0.471354pt;}
.ls6d{letter-spacing:0.471509pt;}
.ls5b{letter-spacing:0.473204pt;}
.ls77{letter-spacing:0.474634pt;}
.ls64{letter-spacing:0.478097pt;}
.ls60{letter-spacing:0.481491pt;}
.ls68{letter-spacing:0.483301pt;}
.ls6a{letter-spacing:0.484954pt;}
.ls6b{letter-spacing:0.490396pt;}
.ls7{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls1b{letter-spacing:2.656533pt;}
.ls4a{letter-spacing:8.080128pt;}
.ls62{letter-spacing:10.210786pt;}
.ls5{letter-spacing:10.626533pt;}
.ls58{letter-spacing:11.950097pt;}
.ls5c{letter-spacing:11.954133pt;}
.ls1{letter-spacing:11.955430pt;}
.ls5d{letter-spacing:11.959467pt;}
.ls66{letter-spacing:11.985898pt;}
.ls69{letter-spacing:12.090638pt;}
.ls63{letter-spacing:12.115404pt;}
.ls74{letter-spacing:12.117896pt;}
.ls65{letter-spacing:12.435430pt;}
.ls61{letter-spacing:12.489572pt;}
.lsa{letter-spacing:13.283914pt;}
.ls5f{letter-spacing:15.516695pt;}
.ls6f{letter-spacing:16.738133pt;}
.ls0{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ws33{word-spacing:-15.461955pt;}
.ws166{word-spacing:-13.915853pt;}
.ws1c{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-12.369595pt;}
.ws15e{word-spacing:-11.955200pt;}
.ws44{word-spacing:-10.801728pt;}
.ws19{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws1b1{word-spacing:-4.256051pt;}
.ws107{word-spacing:-3.772505pt;}
.ws8{word-spacing:-3.719371pt;}
.ws3b{word-spacing:-3.666237pt;}
.ws41{word-spacing:-3.400567pt;}
.ws1b2{word-spacing:-3.347456pt;}
.ws192{word-spacing:-3.251814pt;}
.wsc7{word-spacing:-3.081764pt;}
.wsea{word-spacing:-3.030048pt;}
.wsd9{word-spacing:-2.997984pt;}
.wsd8{word-spacing:-2.976608pt;}
.ws149{word-spacing:-2.975497pt;}
.ws158{word-spacing:-2.917069pt;}
.ws138{word-spacing:-2.843008pt;}
.ws132{word-spacing:-2.832320pt;}
.wse2{word-spacing:-2.816288pt;}
.wse3{word-spacing:-2.805600pt;}
.wsb7{word-spacing:-2.762961pt;}
.ws159{word-spacing:-2.725786pt;}
.ws133{word-spacing:-2.714752pt;}
.ws156{word-spacing:-2.709827pt;}
.wsbb{word-spacing:-2.656693pt;}
.ws26{word-spacing:-2.603559pt;}
.ws150{word-spacing:-2.497292pt;}
.ws101{word-spacing:-2.231622pt;}
.ws4d{word-spacing:-2.201728pt;}
.ws9a{word-spacing:-2.196384pt;}
.ws163{word-spacing:-2.056294pt;}
.ws25{word-spacing:-2.019087pt;}
.wsbc{word-spacing:-1.859685pt;}
.ws17e{word-spacing:-1.769370pt;}
.ws3{word-spacing:-1.696326pt;}
.ws191{word-spacing:-1.673728pt;}
.ws49{word-spacing:-1.647150pt;}
.ws164{word-spacing:-1.578086pt;}
.wsd5{word-spacing:-1.544416pt;}
.ws180{word-spacing:-1.530266pt;}
.wsd4{word-spacing:-1.512352pt;}
.wsf6{word-spacing:-1.501664pt;}
.ws10e{word-spacing:-1.487748pt;}
.wse6{word-spacing:-1.442880pt;}
.wsfd{word-spacing:-1.434614pt;}
.wsf7{word-spacing:-1.421504pt;}
.ws16e{word-spacing:-1.386803pt;}
.ws16f{word-spacing:-1.338982pt;}
.ws152{word-spacing:-1.275213pt;}
.ws42{word-spacing:-1.222079pt;}
.wsa7{word-spacing:-1.213088pt;}
.ws19b{word-spacing:-1.195520pt;}
.ws2{word-spacing:-1.175671pt;}
.ws43{word-spacing:-1.168945pt;}
.wsb8{word-spacing:-1.115811pt;}
.ws2d{word-spacing:-1.062677pt;}
.wsbd{word-spacing:-0.956410pt;}
.ws8f{word-spacing:-0.913824pt;}
.ws7{word-spacing:-0.903276pt;}
.ws57{word-spacing:-0.881760pt;}
.ws160{word-spacing:-0.856814pt;}
.wsde{word-spacing:-0.855040pt;}
.ws10{word-spacing:-0.850142pt;}
.ws56{word-spacing:-0.849696pt;}
.wsdf{word-spacing:-0.844352pt;}
.ws161{word-spacing:-0.812954pt;}
.ws40{word-spacing:-0.797008pt;}
.ws8e{word-spacing:-0.758848pt;}
.wsb4{word-spacing:-0.690740pt;}
.ws3f{word-spacing:-0.637606pt;}
.ws36{word-spacing:-0.584473pt;}
.ws3a{word-spacing:-0.531339pt;}
.ws15d{word-spacing:-0.526029pt;}
.ws199{word-spacing:-0.478208pt;}
.ws8c{word-spacing:-0.432864pt;}
.ws19a{word-spacing:-0.430387pt;}
.ws8d{word-spacing:-0.395456pt;}
.ws1b3{word-spacing:-0.382566pt;}
.ws14b{word-spacing:-0.371937pt;}
.ws23{word-spacing:-0.318803pt;}
.ws60{word-spacing:-0.304608pt;}
.ws5f{word-spacing:-0.299264pt;}
.ws61{word-spacing:-0.293920pt;}
.wsf2{word-spacing:-0.288576pt;}
.ws165{word-spacing:-0.286925pt;}
.ws12e{word-spacing:-0.277888pt;}
.wsc{word-spacing:-0.265669pt;}
.ws62{word-spacing:-0.256512pt;}
.ws4c{word-spacing:-0.234080pt;}
.ws58{word-spacing:-0.229792pt;}
.ws5b{word-spacing:-0.224448pt;}
.wsf1{word-spacing:-0.213760pt;}
.ws13{word-spacing:-0.212535pt;}
.ws7c{word-spacing:-0.208416pt;}
.ws5d{word-spacing:-0.192384pt;}
.ws1ad{word-spacing:-0.191283pt;}
.wsec{word-spacing:-0.187040pt;}
.ws11d{word-spacing:-0.171008pt;}
.wsf{word-spacing:-0.159402pt;}
.ws15f{word-spacing:-0.143462pt;}
.ws7b{word-spacing:-0.138944pt;}
.ws12d{word-spacing:-0.122912pt;}
.ws4b{word-spacing:-0.106400pt;}
.ws9{word-spacing:-0.106268pt;}
.ws176{word-spacing:-0.095642pt;}
.ws2a{word-spacing:-0.053134pt;}
.ws194{word-spacing:-0.047821pt;}
.ws189{word-spacing:-0.022741pt;}
.ws17a{word-spacing:-0.022690pt;}
.ws1a7{word-spacing:-0.022426pt;}
.ws19c{word-spacing:-0.021828pt;}
.ws177{word-spacing:-0.008311pt;}
.ws1a2{word-spacing:-0.003695pt;}
.ws18{word-spacing:-0.002739pt;}
.ws0{word-spacing:0.000000pt;}
.ws186{word-spacing:0.002569pt;}
.ws5c{word-spacing:0.010688pt;}
.ws77{word-spacing:0.021376pt;}
.ws5a{word-spacing:0.037408pt;}
.ws168{word-spacing:0.047821pt;}
.ws5{word-spacing:0.053134pt;}
.ws5e{word-spacing:0.053440pt;}
.wsac{word-spacing:0.069472pt;}
.wsd0{word-spacing:0.076800pt;}
.ws190{word-spacing:0.095038pt;}
.ws18e{word-spacing:0.095642pt;}
.ws13b{word-spacing:0.096192pt;}
.ws96{word-spacing:0.101536pt;}
.ws11{word-spacing:0.106268pt;}
.wsdb{word-spacing:0.112224pt;}
.ws51{word-spacing:0.117568pt;}
.ws118{word-spacing:0.120000pt;}
.ws76{word-spacing:0.122912pt;}
.ws12a{word-spacing:0.128256pt;}
.wseb{word-spacing:0.133600pt;}
.ws53{word-spacing:0.139200pt;}
.ws162{word-spacing:0.143462pt;}
.ws54{word-spacing:0.153600pt;}
.ws52{word-spacing:0.158400pt;}
.ws17{word-spacing:0.159402pt;}
.ws59{word-spacing:0.163200pt;}
.ws78{word-spacing:0.177600pt;}
.ws175{word-spacing:0.188700pt;}
.ws16d{word-spacing:0.191283pt;}
.ws20{word-spacing:0.212535pt;}
.ws117{word-spacing:0.220800pt;}
.ws196{word-spacing:0.239104pt;}
.ws195{word-spacing:0.261494pt;}
.ws1d{word-spacing:0.265669pt;}
.ws187{word-spacing:0.286925pt;}
.ws144{word-spacing:0.304608pt;}
.ws2f{word-spacing:0.318803pt;}
.ws2e{word-spacing:0.371937pt;}
.ws7a{word-spacing:0.374080pt;}
.wsa4{word-spacing:0.406144pt;}
.ws6a{word-spacing:0.416832pt;}
.ws123{word-spacing:0.422176pt;}
.wsc2{word-spacing:0.425071pt;}
.ws18d{word-spacing:0.430387pt;}
.ws6b{word-spacing:0.432864pt;}
.ws83{word-spacing:0.459584pt;}
.ws14{word-spacing:0.478205pt;}
.ws1a9{word-spacing:0.478208pt;}
.ws79{word-spacing:0.491648pt;}
.wsa3{word-spacing:0.502336pt;}
.ws30{word-spacing:0.531339pt;}
.ws3e{word-spacing:0.584473pt;}
.ws145{word-spacing:0.593184pt;}
.ws71{word-spacing:0.637606pt;}
.ws13a{word-spacing:0.684032pt;}
.wsed{word-spacing:0.689376pt;}
.wsa{word-spacing:0.690740pt;}
.ws82{word-spacing:0.700064pt;}
.ws140{word-spacing:0.716096pt;}
.ws141{word-spacing:0.726784pt;}
.ws142{word-spacing:0.742816pt;}
.ws6e{word-spacing:0.743874pt;}
.ws11b{word-spacing:0.764192pt;}
.ws1b0{word-spacing:0.765133pt;}
.wsc0{word-spacing:0.797008pt;}
.ws119{word-spacing:0.801600pt;}
.ws11a{word-spacing:0.828320pt;}
.ws84{word-spacing:0.839008pt;}
.ws11c{word-spacing:0.844352pt;}
.ws47{word-spacing:0.850142pt;}
.wsfb{word-spacing:0.903276pt;}
.ws15{word-spacing:0.956410pt;}
.wsfc{word-spacing:1.009543pt;}
.wsbe{word-spacing:1.062677pt;}
.ws135{word-spacing:1.068800pt;}
.ws185{word-spacing:1.099878pt;}
.ws134{word-spacing:1.111552pt;}
.ws108{word-spacing:1.115811pt;}
.wsc3{word-spacing:1.168945pt;}
.ws2c{word-spacing:1.222079pt;}
.ws27{word-spacing:1.328347pt;}
.ws99{word-spacing:1.341344pt;}
.ws128{word-spacing:1.373408pt;}
.wsd1{word-spacing:1.378752pt;}
.wsdc{word-spacing:1.389440pt;}
.ws10a{word-spacing:1.434614pt;}
.wsf5{word-spacing:1.464256pt;}
.wsdd{word-spacing:1.474944pt;}
.ws46{word-spacing:1.487748pt;}
.ws129{word-spacing:1.523040pt;}
.wsae{word-spacing:1.540882pt;}
.ws73{word-spacing:1.594016pt;}
.ws122{word-spacing:1.645952pt;}
.wscb{word-spacing:1.647150pt;}
.ws55{word-spacing:1.678016pt;}
.ws151{word-spacing:1.700284pt;}
.ws120{word-spacing:1.704736pt;}
.ws98{word-spacing:1.715424pt;}
.ws4f{word-spacing:1.731456pt;}
.ws94{word-spacing:1.742144pt;}
.ws10b{word-spacing:1.753418pt;}
.ws19e{word-spacing:1.769370pt;}
.ws121{word-spacing:1.774208pt;}
.ws4a{word-spacing:1.806551pt;}
.ws4e{word-spacing:1.811616pt;}
.wsaf{word-spacing:1.859685pt;}
.ws39{word-spacing:1.912819pt;}
.wsb{word-spacing:1.965953pt;}
.wsc9{word-spacing:2.019087pt;}
.ws137{word-spacing:2.030720pt;}
.ws15a{word-spacing:2.056294pt;}
.ws111{word-spacing:2.072221pt;}
.ws136{word-spacing:2.121568pt;}
.ws153{word-spacing:2.125355pt;}
.ws1a4{word-spacing:2.151936pt;}
.ws95{word-spacing:2.164320pt;}
.wsb0{word-spacing:2.178489pt;}
.ws28{word-spacing:2.231622pt;}
.ws6c{word-spacing:2.271200pt;}
.ws72{word-spacing:2.284756pt;}
.ws179{word-spacing:2.295398pt;}
.wsca{word-spacing:2.337890pt;}
.ws178{word-spacing:2.343219pt;}
.ws9f{word-spacing:2.388768pt;}
.ws45{word-spacing:2.391024pt;}
.ws146{word-spacing:2.415488pt;}
.ws171{word-spacing:2.438861pt;}
.wsc1{word-spacing:2.444158pt;}
.ws170{word-spacing:2.451357pt;}
.ws106{word-spacing:2.497292pt;}
.wsf9{word-spacing:2.550426pt;}
.ws15c{word-spacing:2.582323pt;}
.ws114{word-spacing:2.603559pt;}
.ws13d{word-spacing:2.623904pt;}
.ws19d{word-spacing:2.630144pt;}
.ws93{word-spacing:2.661312pt;}
.ws91{word-spacing:2.677344pt;}
.wsf4{word-spacing:2.704064pt;}
.ws154{word-spacing:2.709827pt;}
.ws13c{word-spacing:2.725440pt;}
.wsc4{word-spacing:2.762961pt;}
.wsb5{word-spacing:2.816095pt;}
.ws17b{word-spacing:2.821427pt;}
.wsbf{word-spacing:2.869229pt;}
.ws10c{word-spacing:2.922363pt;}
.ws90{word-spacing:2.944544pt;}
.ws1aa{word-spacing:2.964890pt;}
.ws147{word-spacing:2.965920pt;}
.ws92{word-spacing:2.971264pt;}
.ws148{word-spacing:3.035392pt;}
.ws11e{word-spacing:3.046080pt;}
.wsb9{word-spacing:3.081764pt;}
.wsb1{word-spacing:3.134898pt;}
.wsb3{word-spacing:3.188032pt;}
.ws109{word-spacing:3.241166pt;}
.ws131{word-spacing:3.254496pt;}
.ws155{word-spacing:3.294300pt;}
.ws7d{word-spacing:3.350688pt;}
.ws1a0{word-spacing:3.382234pt;}
.ws19f{word-spacing:3.395277pt;}
.wsa8{word-spacing:3.398784pt;}
.ws3d{word-spacing:3.400567pt;}
.ws7e{word-spacing:3.409472pt;}
.wsa9{word-spacing:3.414816pt;}
.ws6f{word-spacing:3.453701pt;}
.wsf8{word-spacing:3.506835pt;}
.ws17d{word-spacing:3.538739pt;}
.ws38{word-spacing:3.559969pt;}
.ws12f{word-spacing:3.585824pt;}
.ws8a{word-spacing:3.591168pt;}
.ws14f{word-spacing:3.613103pt;}
.ws116{word-spacing:3.666237pt;}
.wsd3{word-spacing:3.676672pt;}
.ws8b{word-spacing:3.687360pt;}
.ws1e{word-spacing:3.719371pt;}
.ws1af{word-spacing:3.730022pt;}
.ws3c{word-spacing:3.772505pt;}
.wsc6{word-spacing:3.777843pt;}
.ws16{word-spacing:3.825638pt;}
.ws17f{word-spacing:3.873485pt;}
.ws2b{word-spacing:3.878772pt;}
.ws12{word-spacing:3.931906pt;}
.ws68{word-spacing:3.933184pt;}
.ws67{word-spacing:3.959904pt;}
.ws182{word-spacing:3.969126pt;}
.ws35{word-spacing:3.985040pt;}
.ws34{word-spacing:4.038174pt;}
.wsc5{word-spacing:4.064768pt;}
.ws115{word-spacing:4.091308pt;}
.ws143{word-spacing:4.227104pt;}
.ws97{word-spacing:4.232448pt;}
.ws89{word-spacing:4.264512pt;}
.ws86{word-spacing:4.333984pt;}
.ws85{word-spacing:4.339328pt;}
.ws88{word-spacing:4.355360pt;}
.ws14d{word-spacing:4.463245pt;}
.wse1{word-spacing:4.531712pt;}
.wsc8{word-spacing:4.569513pt;}
.ws9c{word-spacing:4.574464pt;}
.wsaa{word-spacing:4.595840pt;}
.wsb2{word-spacing:4.622646pt;}
.wsab{word-spacing:4.633248pt;}
.ws184{word-spacing:4.638618pt;}
.ws9b{word-spacing:4.649280pt;}
.ws183{word-spacing:4.776747pt;}
.ws181{word-spacing:4.777062pt;}
.ws173{word-spacing:4.777190pt;}
.ws1a3{word-spacing:4.778001pt;}
.ws16c{word-spacing:4.778505pt;}
.ws1a6{word-spacing:4.779588pt;}
.ws15b{word-spacing:4.781175pt;}
.ws37{word-spacing:4.782048pt;}
.ws174{word-spacing:4.782080pt;}
.ws16b{word-spacing:4.783488pt;}
.ws193{word-spacing:4.783514pt;}
.ws32{word-spacing:4.835182pt;}
.wsb6{word-spacing:4.941450pt;}
.ws18f{word-spacing:4.973363pt;}
.ws4{word-spacing:5.047717pt;}
.ws16a{word-spacing:5.069005pt;}
.ws169{word-spacing:5.116826pt;}
.ws22{word-spacing:5.153985pt;}
.wse5{word-spacing:5.205056pt;}
.ws1f{word-spacing:5.207119pt;}
.ws63{word-spacing:5.215744pt;}
.wse4{word-spacing:5.226432pt;}
.wscc{word-spacing:5.260253pt;}
.ws188{word-spacing:5.260288pt;}
.ws64{word-spacing:5.285216pt;}
.wse{word-spacing:5.313387pt;}
.ws70{word-spacing:5.366521pt;}
.ws18a{word-spacing:5.429649pt;}
.ws18b{word-spacing:5.451571pt;}
.ws10f{word-spacing:5.472788pt;}
.ws167{word-spacing:5.499392pt;}
.ws105{word-spacing:5.525922pt;}
.ws172{word-spacing:5.547213pt;}
.ws113{word-spacing:5.579056pt;}
.ws1ae{word-spacing:5.595034pt;}
.ws139{word-spacing:5.595168pt;}
.ws112{word-spacing:5.632190pt;}
.ws6{word-spacing:5.791591pt;}
.ws18c{word-spacing:5.834138pt;}
.wsff{word-spacing:5.950993pt;}
.wsad{word-spacing:6.110395pt;}
.ws80{word-spacing:6.140256pt;}
.ws14e{word-spacing:6.163529pt;}
.wsd7{word-spacing:6.193696pt;}
.wsce{word-spacing:6.201600pt;}
.wscd{word-spacing:6.216000pt;}
.ws11f{word-spacing:6.220416pt;}
.ws81{word-spacing:6.231104pt;}
.wscf{word-spacing:6.235200pt;}
.ws7f{word-spacing:6.268512pt;}
.wsd6{word-spacing:6.289888pt;}
.ws100{word-spacing:6.376064pt;}
.ws10d{word-spacing:6.429198pt;}
.ws13f{word-spacing:6.519680pt;}
.ws21{word-spacing:6.535466pt;}
.ws13e{word-spacing:6.546400pt;}
.wsfe{word-spacing:6.641733pt;}
.ws14c{word-spacing:6.694867pt;}
.wsda{word-spacing:6.888416pt;}
.ws104{word-spacing:6.960537pt;}
.ws87{word-spacing:7.107520pt;}
.ws103{word-spacing:7.226206pt;}
.ws1a5{word-spacing:7.316582pt;}
.ws102{word-spacing:7.332474pt;}
.ws1a1{word-spacing:7.364403pt;}
.wsa6{word-spacing:7.460224pt;}
.wsa5{word-spacing:7.519008pt;}
.wsf3{word-spacing:7.738112pt;}
.ws14a{word-spacing:7.757545pt;}
.wsfa{word-spacing:7.810678pt;}
.ws110{word-spacing:7.970080pt;}
.ws127{word-spacing:8.021344pt;}
.wsd2{word-spacing:8.053408pt;}
.wse0{word-spacing:8.112192pt;}
.ws29{word-spacing:8.129482pt;}
.ws126{word-spacing:8.160288pt;}
.ws31{word-spacing:8.767088pt;}
.ws6d{word-spacing:8.873356pt;}
.wsba{word-spacing:9.882899pt;}
.wse9{word-spacing:9.950528pt;}
.ws69{word-spacing:10.281856pt;}
.wse7{word-spacing:10.313920pt;}
.wse8{word-spacing:10.442176pt;}
.wsa1{word-spacing:10.757472pt;}
.wsa2{word-spacing:10.794880pt;}
.ws12b{word-spacing:11.334624pt;}
.ws12c{word-spacing:11.468224pt;}
.ws1ab{word-spacing:12.146483pt;}
.ws157{word-spacing:12.486459pt;}
.ws197{word-spacing:12.624691pt;}
.wsd{word-spacing:13.230333pt;}
.ws75{word-spacing:13.504288pt;}
.ws17c{word-spacing:13.581107pt;}
.ws198{word-spacing:13.724570pt;}
.wsa0{word-spacing:13.830272pt;}
.wsef{word-spacing:13.867680pt;}
.wsee{word-spacing:13.926464pt;}
.wsf0{word-spacing:13.963872pt;}
.ws24{word-spacing:14.505546pt;}
.ws1ac{word-spacing:15.350477pt;}
.ws66{word-spacing:16.737408pt;}
.ws65{word-spacing:16.769472pt;}
.ws50{word-spacing:17.325248pt;}
.ws130{word-spacing:17.640544pt;}
.ws124{word-spacing:17.677952pt;}
.ws125{word-spacing:17.715360pt;}
.ws74{word-spacing:18.224916pt;}
.ws9e{word-spacing:22.968512pt;}
.ws9d{word-spacing:23.225024pt;}
.ws1a8{word-spacing:43.038720pt;}
.ws48{word-spacing:114.754705pt;}
.ws1b{word-spacing:667.830619pt;}
._37{margin-left:-8.144256pt;}
._3{margin-left:-6.854269pt;}
._0{margin-left:-5.260288pt;}
._4{margin-left:-3.538739pt;}
._3f{margin-left:-2.630144pt;}
._6{margin-left:-1.721549pt;}
._8{width:0.969929pt;}
._1{width:2.665966pt;}
._14{width:4.133873pt;}
._15{width:7.205229pt;}
._b{width:8.607686pt;}
._22{width:9.677984pt;}
._3d{width:11.281616pt;}
._17{width:12.263319pt;}
._f{width:13.942338pt;}
._d{width:14.898748pt;}
._5{width:15.876506pt;}
._7{width:17.598054pt;}
._9{width:19.372631pt;}
._c{width:20.615975pt;}
._12{width:21.806150pt;}
._2a{width:23.485169pt;}
._e{width:24.866650pt;}
._29{width:26.248130pt;}
._36{width:27.276816pt;}
._19{width:29.276761pt;}
._16{width:30.233170pt;}
._11{width:31.529648pt;}
._10{width:32.549795pt;}
._a{width:34.026940pt;}
._35{width:35.833491pt;}
._3a{width:37.034305pt;}
._38{width:37.937581pt;}
._3b{width:39.106526pt;}
._40{width:41.129042pt;}
._18{width:43.410369pt;}
._3c{width:54.993920pt;}
._3e{width:60.403110pt;}
._2{width:61.644327pt;}
._23{width:263.042368pt;}
._20{width:287.042272pt;}
._26{width:297.579537pt;}
._1d{width:299.301408pt;}
._2b{width:301.113105pt;}
._25{width:313.083584pt;}
._1f{width:315.520448pt;}
._21{width:340.883853pt;}
._32{width:345.457459pt;}
._2f{width:361.859994pt;}
._1e{width:370.249914pt;}
._28{width:375.432813pt;}
._2d{width:381.657805pt;}
._24{width:385.124945pt;}
._27{width:388.295821pt;}
._31{width:393.613005pt;}
._1b{width:395.494189pt;}
._2e{width:410.589389pt;}
._34{width:415.419290pt;}
._1c{width:417.067917pt;}
._30{width:423.453184pt;}
._33{width:427.183206pt;}
._2c{width:453.580288pt;}
._1a{width:1365.682304pt;}
._39{width:1708.621067pt;}
._13{width:1729.874400pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y19f{bottom:-637.808632pt;}
.y19e{bottom:-619.808704pt;}
.y19d{bottom:-601.808776pt;}
.y19c{bottom:-583.808848pt;}
.ybd{bottom:-573.175539pt;}
.y19b{bottom:-565.808920pt;}
.ybc{bottom:-555.175611pt;}
.y19a{bottom:-547.808992pt;}
.y11c{bottom:-538.063755pt;}
.ybb{bottom:-537.175683pt;}
.y199{bottom:-529.889224pt;}
.y11b{bottom:-520.063827pt;}
.yba{bottom:-519.175755pt;}
.y198{bottom:-511.889296pt;}
.y11a{bottom:-502.063899pt;}
.yb9{bottom:-501.255987pt;}
.y197{bottom:-493.889368pt;}
.y119{bottom:-484.144131pt;}
.yb8{bottom:-483.256059pt;}
.y196{bottom:-475.889440pt;}
.y118{bottom:-466.144203pt;}
.yb7{bottom:-465.256131pt;}
.y195{bottom:-457.889512pt;}
.y117{bottom:-448.144275pt;}
.yb6{bottom:-447.256203pt;}
.y194{bottom:-439.889584pt;}
.y81{bottom:-439.433675pt;}
.y116{bottom:-430.144347pt;}
.yb5{bottom:-429.256275pt;}
.y193{bottom:-421.889656pt;}
.y80{bottom:-421.433747pt;}
.y115{bottom:-412.144419pt;}
.yb4{bottom:-411.256347pt;}
.y192{bottom:-403.969888pt;}
.y7f{bottom:-403.513979pt;}
.y114{bottom:-394.144491pt;}
.yb3{bottom:-393.256419pt;}
.y191{bottom:-385.969960pt;}
.y7e{bottom:-385.514051pt;}
.y113{bottom:-376.144563pt;}
.yb2{bottom:-375.336651pt;}
.y190{bottom:-367.970032pt;}
.y7d{bottom:-367.514123pt;}
.y112{bottom:-358.224795pt;}
.yb1{bottom:-357.336723pt;}
.y18f{bottom:-349.970104pt;}
.y7c{bottom:-349.514195pt;}
.y111{bottom:-340.224867pt;}
.yb0{bottom:-339.336795pt;}
.y18e{bottom:-331.970176pt;}
.y7b{bottom:-331.514267pt;}
.y110{bottom:-322.224939pt;}
.yaf{bottom:-321.336867pt;}
.y18d{bottom:-313.970248pt;}
.y7a{bottom:-312.234267pt;}
.y10f{bottom:-304.225011pt;}
.yae{bottom:-303.336939pt;}
.y18c{bottom:-295.970320pt;}
.y79{bottom:-293.594267pt;}
.y10e{bottom:-286.225083pt;}
.yad{bottom:-285.337011pt;}
.y78{bottom:-274.874267pt;}
.y18b{bottom:-270.050584pt;}
.y10d{bottom:-268.225155pt;}
.yac{bottom:-267.337083pt;}
.y77{bottom:-256.234267pt;}
.y10c{bottom:-250.225227pt;}
.yab{bottom:-249.417315pt;}
.y76{bottom:-237.594267pt;}
.y18a{bottom:-236.050720pt;}
.y10b{bottom:-232.305459pt;}
.yaa{bottom:-231.417387pt;}
.y75{bottom:-218.954267pt;}
.y189{bottom:-218.050792pt;}
.y10a{bottom:-214.305531pt;}
.ya9{bottom:-213.417459pt;}
.y74{bottom:-200.314267pt;}
.y188{bottom:-200.050864pt;}
.y109{bottom:-196.305603pt;}
.ya8{bottom:-195.417531pt;}
.y187{bottom:-182.050936pt;}
.y73{bottom:-181.594133pt;}
.y108{bottom:-178.305675pt;}
.ya7{bottom:-177.417603pt;}
.y186{bottom:-164.051008pt;}
.y71{bottom:-162.874819pt;}
.y107{bottom:-160.305747pt;}
.ya6{bottom:-159.417675pt;}
.y70{bottom:-153.914267pt;}
.y185{bottom:-146.051080pt;}
.y72{bottom:-144.874891pt;}
.y106{bottom:-142.305819pt;}
.ya5{bottom:-141.497907pt;}
.y184{bottom:-128.131312pt;}
.y105{bottom:-124.305891pt;}
.ya4{bottom:-123.497979pt;}
.y6f{bottom:-117.994267pt;}
.y183{bottom:-110.131384pt;}
.y104{bottom:-106.386123pt;}
.ya3{bottom:-105.498051pt;}
.y182{bottom:-92.131456pt;}
.y103{bottom:-88.386195pt;}
.ya2{bottom:-87.498123pt;}
.y6e{bottom:-84.314123pt;}
.y181{bottom:-74.131528pt;}
.y102{bottom:-70.386267pt;}
.ya1{bottom:-69.498195pt;}
.y6d{bottom:-66.314195pt;}
.y180{bottom:-56.131600pt;}
.ya0{bottom:-51.498267pt;}
.y6c{bottom:-48.314267pt;}
.y101{bottom:-36.786667pt;}
.y17f{bottom:-22.531600pt;}
.y100{bottom:-19.426267pt;}
.y9f{bottom:-17.898267pt;}
.y6b{bottom:-14.714267pt;}
.y17e{bottom:-0.771600pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:2.333733pt;}
.y10{bottom:3.044747pt;}
.y9e{bottom:3.781701pt;}
.y6a{bottom:7.045805pt;}
.yf{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y30{bottom:56.693333pt;}
.y213{bottom:96.850667pt;}
.yd7{bottom:99.150667pt;}
.y1b9{bottom:100.117333pt;}
.yfc{bottom:100.648000pt;}
.y99{bottom:101.425333pt;}
.y216{bottom:102.942667pt;}
.y2f{bottom:103.000000pt;}
.y137{bottom:104.837333pt;}
.y17b{bottom:106.545333pt;}
.y63{bottom:109.441333pt;}
.y15a{bottom:111.620000pt;}
.y212{bottom:114.066667pt;}
.yd6{bottom:117.164000pt;}
.y1b8{bottom:118.130667pt;}
.yfb{bottom:118.660000pt;}
.y1df{bottom:119.046667pt;}
.y98{bottom:119.437333pt;}
.y215{bottom:120.158667pt;}
.y2e{bottom:121.013333pt;}
.y136{bottom:122.850667pt;}
.y17a{bottom:124.558667pt;}
.y62{bottom:127.454667pt;}
.y159{bottom:129.633333pt;}
.y211{bottom:131.281333pt;}
.yd5{bottom:135.176000pt;}
.y1b7{bottom:136.142667pt;}
.y1de{bottom:136.262667pt;}
.yfa{bottom:136.673333pt;}
.y214{bottom:137.373333pt;}
.y2d{bottom:139.025333pt;}
.y135{bottom:140.862667pt;}
.y179{bottom:142.570667pt;}
.y61{bottom:145.466667pt;}
.y158{bottom:147.645333pt;}
.y210{bottom:148.497333pt;}
.yd4{bottom:153.189333pt;}
.y1dd{bottom:153.477333pt;}
.y1b6{bottom:154.156000pt;}
.yf9{bottom:154.685333pt;}
.y2c{bottom:157.037333pt;}
.y134{bottom:158.874667pt;}
.y178{bottom:160.584000pt;}
.y97{bottom:162.424000pt;}
.y60{bottom:163.478667pt;}
.y157{bottom:165.657333pt;}
.y20f{bottom:165.713333pt;}
.y1dc{bottom:170.693333pt;}
.yd3{bottom:171.201333pt;}
.y1b5{bottom:172.168000pt;}
.yf8{bottom:172.698667pt;}
.y2b{bottom:175.050667pt;}
.y133{bottom:176.888000pt;}
.y177{bottom:178.596000pt;}
.y5f{bottom:181.492000pt;}
.y96{bottom:182.030667pt;}
.y20e{bottom:182.928000pt;}
.y156{bottom:183.670667pt;}
.y1db{bottom:187.908000pt;}
.yd2{bottom:189.213333pt;}
.y1b4{bottom:190.180000pt;}
.yf7{bottom:190.710667pt;}
.y2a{bottom:193.062667pt;}
.y132{bottom:194.900000pt;}
.y176{bottom:196.608000pt;}
.y5e{bottom:199.504000pt;}
.y20d{bottom:200.144000pt;}
.y155{bottom:201.682667pt;}
.y95{bottom:203.362667pt;}
.y1da{bottom:205.124000pt;}
.yd1{bottom:207.226667pt;}
.y1b3{bottom:208.193333pt;}
.yf6{bottom:208.722667pt;}
.y29{bottom:211.076000pt;}
.y131{bottom:212.913333pt;}
.y175{bottom:214.621333pt;}
.y20c{bottom:217.358667pt;}
.y5d{bottom:217.517333pt;}
.y154{bottom:219.696000pt;}
.y1d9{bottom:222.340000pt;}
.y94{bottom:224.693333pt;}
.yd0{bottom:225.238667pt;}
.y1b2{bottom:226.205333pt;}
.yf5{bottom:226.736000pt;}
.y28{bottom:229.088000pt;}
.y130{bottom:230.925333pt;}
.y174{bottom:232.633333pt;}
.y20b{bottom:234.574667pt;}
.y5c{bottom:235.529333pt;}
.y153{bottom:237.708000pt;}
.y1d8{bottom:239.554667pt;}
.ycf{bottom:243.252000pt;}
.y1b1{bottom:244.218667pt;}
.yf4{bottom:244.748000pt;}
.y93{bottom:246.025333pt;}
.y27{bottom:247.100000pt;}
.y12f{bottom:248.937333pt;}
.y173{bottom:250.646667pt;}
.y20a{bottom:251.790667pt;}
.y5b{bottom:253.541333pt;}
.y152{bottom:255.720000pt;}
.y1d7{bottom:256.770667pt;}
.yce{bottom:261.264000pt;}
.y1b0{bottom:262.230667pt;}
.yf3{bottom:262.761333pt;}
.y26{bottom:265.113333pt;}
.y12e{bottom:266.950667pt;}
.y92{bottom:267.357333pt;}
.y172{bottom:268.658667pt;}
.y209{bottom:269.005333pt;}
.y5a{bottom:271.554667pt;}
.y151{bottom:273.733333pt;}
.y1d5{bottom:273.985333pt;}
.y1d6{bottom:273.986667pt;}
.ycd{bottom:279.276000pt;}
.y1af{bottom:280.242667pt;}
.yf2{bottom:280.773333pt;}
.y25{bottom:283.125333pt;}
.y12d{bottom:284.962667pt;}
.y208{bottom:286.221333pt;}
.y171{bottom:286.670667pt;}
.y91{bottom:288.688000pt;}
.y59{bottom:289.566667pt;}
.y1d4{bottom:291.201333pt;}
.y150{bottom:291.745333pt;}
.ycc{bottom:297.289333pt;}
.y1ae{bottom:298.256000pt;}
.yf1{bottom:298.785333pt;}
.y24{bottom:301.138667pt;}
.y17d{bottom:301.388400pt;}
.y12c{bottom:302.976000pt;}
.y207{bottom:303.437333pt;}
.y170{bottom:304.684000pt;}
.y58{bottom:307.580000pt;}
.y1d3{bottom:308.417333pt;}
.y14f{bottom:309.758667pt;}
.y90{bottom:310.020000pt;}
.y9d{bottom:311.781805pt;}
.ycb{bottom:315.301333pt;}
.y1ad{bottom:316.268000pt;}
.yf0{bottom:316.798667pt;}
.y23{bottom:319.150667pt;}
.y206{bottom:320.652000pt;}
.y12b{bottom:320.988000pt;}
.y16f{bottom:322.696000pt;}
.y57{bottom:325.592000pt;}
.y1d2{bottom:325.632000pt;}
.y14e{bottom:327.770667pt;}
.y9c{bottom:329.781733pt;}
.y8f{bottom:331.350667pt;}
.yca{bottom:333.314667pt;}
.y1ac{bottom:334.281333pt;}
.yef{bottom:334.810667pt;}
.y22{bottom:337.162667pt;}
.y205{bottom:337.868000pt;}
.y12a{bottom:339.000000pt;}
.y16e{bottom:340.709333pt;}
.y1d1{bottom:342.848000pt;}
.y56{bottom:343.604000pt;}
.y14d{bottom:345.782667pt;}
.yc9{bottom:351.326667pt;}
.y1ab{bottom:352.293333pt;}
.y8e{bottom:352.682667pt;}
.yee{bottom:352.824000pt;}
.y204{bottom:355.082667pt;}
.y21{bottom:355.176000pt;}
.y129{bottom:357.013333pt;}
.y16d{bottom:358.721333pt;}
.y1d0{bottom:360.064000pt;}
.y55{bottom:361.617333pt;}
.y9b{bottom:363.061733pt;}
.y14c{bottom:363.796000pt;}
.yc8{bottom:369.338667pt;}
.y1aa{bottom:370.305333pt;}
.yed{bottom:370.836000pt;}
.y203{bottom:372.298667pt;}
.y20{bottom:373.188000pt;}
.y128{bottom:375.025333pt;}
.y16c{bottom:376.733333pt;}
.y1cf{bottom:377.278667pt;}
.y54{bottom:379.629333pt;}
.y8d{bottom:380.961333pt;}
.y14b{bottom:381.808000pt;}
.yc7{bottom:387.352000pt;}
.y1a9{bottom:388.318667pt;}
.yec{bottom:388.848000pt;}
.y202{bottom:389.514667pt;}
.y127{bottom:393.037333pt;}
.y1ce{bottom:394.494667pt;}
.y16b{bottom:394.746667pt;}
.y53{bottom:397.642667pt;}
.y1f{bottom:399.170667pt;}
.y14a{bottom:399.821333pt;}
.yc6{bottom:405.364000pt;}
.y1a8{bottom:406.330667pt;}
.y201{bottom:406.729333pt;}
.yeb{bottom:406.861333pt;}
.y8c{bottom:410.482667pt;}
.y126{bottom:411.050667pt;}
.y1cd{bottom:411.709333pt;}
.y69{bottom:412.006109pt;}
.y16a{bottom:412.758667pt;}
.yfe{bottom:414.493733pt;}
.y52{bottom:415.654667pt;}
.y149{bottom:417.833333pt;}
.yc5{bottom:423.377333pt;}
.y200{bottom:423.945333pt;}
.y1a7{bottom:424.344000pt;}
.yea{bottom:424.873333pt;}
.y8b{bottom:428.496000pt;}
.y1cc{bottom:428.925333pt;}
.y125{bottom:429.062667pt;}
.y68{bottom:429.925877pt;}
.y169{bottom:430.772000pt;}
.y51{bottom:433.666667pt;}
.y148{bottom:435.845333pt;}
.y1ff{bottom:441.160000pt;}
.yc4{bottom:441.389333pt;}
.y1a6{bottom:442.356000pt;}
.ye9{bottom:442.886667pt;}
.y1cb{bottom:446.141333pt;}
.y8a{bottom:446.508000pt;}
.y124{bottom:447.076000pt;}
.y67{bottom:447.925805pt;}
.y168{bottom:448.784000pt;}
.y50{bottom:451.680000pt;}
.y147{bottom:453.858667pt;}
.y1fe{bottom:458.376000pt;}
.yc3{bottom:459.401333pt;}
.y1a5{bottom:460.368000pt;}
.ye8{bottom:460.898667pt;}
.y89{bottom:464.521333pt;}
.y123{bottom:465.088000pt;}
.y66{bottom:465.925733pt;}
.y167{bottom:466.796000pt;}
.y1e{bottom:467.096000pt;}
.y4f{bottom:469.692000pt;}
.y1ca{bottom:471.326667pt;}
.y146{bottom:471.870667pt;}
.y1fd{bottom:475.592000pt;}
.yc2{bottom:477.414667pt;}
.y1a4{bottom:478.381333pt;}
.ye7{bottom:478.910667pt;}
.y88{bottom:482.533333pt;}
.y122{bottom:483.100000pt;}
.y166{bottom:484.809333pt;}
.y1d{bottom:485.108000pt;}
.y4e{bottom:487.704000pt;}
.y145{bottom:489.884000pt;}
.y1fc{bottom:492.806667pt;}
.yc1{bottom:495.426667pt;}
.y1a3{bottom:496.393333pt;}
.y65{bottom:499.205733pt;}
.y87{bottom:500.545333pt;}
.y121{bottom:501.113333pt;}
.y165{bottom:502.821333pt;}
.y4d{bottom:505.717333pt;}
.y1c9{bottom:506.394667pt;}
.ye6{bottom:507.550667pt;}
.y144{bottom:507.896000pt;}
.y1fb{bottom:510.022667pt;}
.yc0{bottom:513.440000pt;}
.y1a2{bottom:514.405333pt;}
.y86{bottom:518.558667pt;}
.y1c{bottom:519.061333pt;}
.y120{bottom:519.125333pt;}
.y164{bottom:520.834667pt;}
.y4c{bottom:523.729333pt;}
.ye5{bottom:525.562667pt;}
.y143{bottom:525.908000pt;}
.y1fa{bottom:527.237333pt;}
.y1c8{bottom:527.874667pt;}
.ybf{bottom:531.452000pt;}
.y85{bottom:536.570667pt;}
.y1b{bottom:537.073333pt;}
.y11f{bottom:537.138667pt;}
.y163{bottom:538.846667pt;}
.y1a1{bottom:540.388000pt;}
.y1c7{bottom:541.384000pt;}
.y4b{bottom:541.742667pt;}
.ye4{bottom:543.576000pt;}
.y142{bottom:543.921333pt;}
.y1f9{bottom:544.453333pt;}
.y83{bottom:554.584000pt;}
.y1c6{bottom:554.893333pt;}
.y1a{bottom:555.086667pt;}
.y162{bottom:556.858667pt;}
.y84{bottom:559.405333pt;}
.y4a{bottom:559.754667pt;}
.ye3{bottom:561.588000pt;}
.y1f8{bottom:561.669333pt;}
.y141{bottom:561.933333pt;}
.ybe{bottom:562.562667pt;}
.y11e{bottom:568.249333pt;}
.y1a0{bottom:568.497333pt;}
.y19{bottom:573.098667pt;}
.y161{bottom:574.872000pt;}
.y1c5{bottom:576.372000pt;}
.y49{bottom:577.766667pt;}
.y1f7{bottom:578.884000pt;}
.y140{bottom:579.945333pt;}
.ye2{bottom:580.929333pt;}
.y9a{bottom:582.500000pt;}
.y11d{bottom:585.345333pt;}
.y82{bottom:585.694667pt;}
.y17c{bottom:588.434667pt;}
.y18{bottom:591.112000pt;}
.y160{bottom:592.884000pt;}
.y48{bottom:595.780000pt;}
.y1f6{bottom:596.100000pt;}
.y1c4{bottom:597.852000pt;}
.y13f{bottom:597.958667pt;}
.ye1{bottom:598.941333pt;}
.yfd{bottom:605.282667pt;}
.y64{bottom:605.632000pt;}
.y17{bottom:609.124000pt;}
.y15f{bottom:610.896000pt;}
.y1c3{bottom:611.361333pt;}
.y1f5{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y13e{bottom:615.970667pt;}
.ye0{bottom:616.954667pt;}
.y1c2{bottom:624.870667pt;}
.y16{bottom:627.136000pt;}
.y15e{bottom:628.909333pt;}
.y1f4{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y13d{bottom:633.984000pt;}
.ydf{bottom:636.294667pt;}
.y1c1{bottom:638.380000pt;}
.y15{bottom:645.149333pt;}
.y15d{bottom:646.921333pt;}
.y1f3{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y13c{bottom:651.996000pt;}
.yde{bottom:654.308000pt;}
.y14{bottom:663.161333pt;}
.y15c{bottom:664.934667pt;}
.y1f2{bottom:664.961333pt;}
.y44{bottom:667.829333pt;}
.y13b{bottom:670.008000pt;}
.ydd{bottom:672.320000pt;}
.y13{bottom:681.174667pt;}
.y1f1{bottom:682.177333pt;}
.y15b{bottom:682.946667pt;}
.y43{bottom:685.842667pt;}
.y13a{bottom:688.021333pt;}
.y12{bottom:699.186667pt;}
.y1f0{bottom:699.392000pt;}
.ydc{bottom:700.958667pt;}
.y42{bottom:703.854667pt;}
.y139{bottom:714.004000pt;}
.y1ef{bottom:716.608000pt;}
.y11{bottom:717.198667pt;}
.ydb{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.y1ee{bottom:733.824000pt;}
.yda{bottom:736.984000pt;}
.y40{bottom:739.880000pt;}
.y138{bottom:744.954667pt;}
.yd{bottom:744.972000pt;}
.y1ed{bottom:751.038667pt;}
.ye{bottom:752.359968pt;}
.yd9{bottom:754.997333pt;}
.y3f{bottom:757.892000pt;}
.yc{bottom:761.110667pt;}
.y1ec{bottom:768.254667pt;}
.y1c0{bottom:773.009333pt;}
.y3e{bottom:775.905333pt;}
.yd8{bottom:780.980000pt;}
.y1eb{bottom:785.469333pt;}
.yb{bottom:787.713333pt;}
.y1bf{bottom:791.021333pt;}
.y3d{bottom:793.917333pt;}
.y1ea{bottom:802.685333pt;}
.ya{bottom:803.853333pt;}
.y1be{bottom:809.034667pt;}
.y3c{bottom:811.930667pt;}
.y1e9{bottom:819.901333pt;}
.y9{bottom:824.332000pt;}
.y1bd{bottom:827.046667pt;}
.y3b{bottom:829.942667pt;}
.y1e8{bottom:837.116000pt;}
.y8{bottom:840.472000pt;}
.y1bc{bottom:845.060000pt;}
.y3a{bottom:847.954667pt;}
.y1e7{bottom:854.332000pt;}
.y7{bottom:860.241333pt;}
.y1bb{bottom:863.072000pt;}
.y39{bottom:865.968000pt;}
.y1e6{bottom:871.546667pt;}
.y38{bottom:883.980000pt;}
.y1e5{bottom:888.762667pt;}
.y1ba{bottom:889.054667pt;}
.y6{bottom:898.178667pt;}
.y37{bottom:901.993333pt;}
.y1e4{bottom:905.978667pt;}
.y36{bottom:920.005333pt;}
.y1e3{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y35{bottom:938.017333pt;}
.y1e2{bottom:940.409333pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y1e1{bottom:957.624000pt;}
.y33{bottom:974.042667pt;}
.y1e0{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h10{height:5.897859pt;}
.h9{height:22.673858pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h7{height:32.395626pt;}
.h21{height:33.713664pt;}
.h1f{height:34.191872pt;}
.h1c{height:34.574438pt;}
.h20{height:35.100467pt;}
.h18{height:35.172606pt;}
.hf{height:37.023771pt;}
.hc{height:38.415786pt;}
.h1e{height:38.462187pt;}
.h4{height:39.000258pt;}
.h16{height:39.349375pt;}
.h12{height:39.359687pt;}
.h8{height:41.651917pt;}
.h19{height:43.557639pt;}
.h17{height:43.660390pt;}
.h14{height:44.390625pt;}
.h2{height:45.272024pt;}
.hd{height:46.279598pt;}
.h6{height:48.486756pt;}
.he{height:48.511220pt;}
.h13{height:49.421563pt;}
.h3{height:61.782479pt;}
.h5{height:69.148877pt;}
.h15{height:75.506879pt;}
.h1d{height:292.537333pt;}
.h1a{height:298.472000pt;}
.h11{height:399.708000pt;}
.h1b{height:400.057333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w5{width:392.726667pt;}
.w7{width:504.784000pt;}
.w4{width:530.034800pt;}
.w6{width:568.318267pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4d{left:-97.482667pt;}
.x4e{left:-69.162667pt;}
.x80{left:-41.046667pt;}
.x2a{left:-27.665200pt;}
.x82{left:-12.726667pt;}
.x6a{left:-8.232400pt;}
.x0{left:0.000000pt;}
.x6b{left:20.087600pt;}
.x8{left:26.021437pt;}
.x81{left:36.393333pt;}
.x35{left:39.614800pt;}
.x33{left:47.534800pt;}
.x2{left:50.765941pt;}
.x34{left:54.014800pt;}
.x32{left:57.774800pt;}
.x37{left:62.414800pt;}
.x36{left:65.854800pt;}
.x31{left:69.774800pt;}
.x2c{left:81.774800pt;}
.x2d{left:97.934800pt;}
.x21{left:100.054667pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x69{left:112.692400pt;}
.x5{left:129.332000pt;}
.xb{left:130.393333pt;}
.x29{left:131.833200pt;}
.x5a{left:132.797333pt;}
.xaf{left:137.041333pt;}
.xd6{left:138.141333pt;}
.x91{left:140.172000pt;}
.xb0{left:143.020000pt;}
.x7f{left:144.458667pt;}
.x92{left:146.149333pt;}
.x79{left:148.396000pt;}
.xd7{left:150.922667pt;}
.xcf{left:152.049333pt;}
.x38{left:156.380000pt;}
.xc6{left:158.582667pt;}
.xcc{left:160.589333pt;}
.x7a{left:161.680000pt;}
.x52{left:164.884000pt;}
.x9{left:167.953333pt;}
.xd3{left:170.233333pt;}
.x53{left:172.006667pt;}
.x43{left:174.900000pt;}
.xd2{left:175.960000pt;}
.x44{left:180.709333pt;}
.x42{left:184.092000pt;}
.xa{left:186.456000pt;}
.x46{left:188.289333pt;}
.x45{left:191.440000pt;}
.x41{left:194.840000pt;}
.x4c{left:200.488000pt;}
.x7d{left:203.513333pt;}
.xba{left:205.924000pt;}
.x7e{left:210.765333pt;}
.x3f{left:212.114667pt;}
.x90{left:213.129333pt;}
.x20{left:216.901333pt;}
.x40{left:220.077333pt;}
.x10{left:223.641333pt;}
.x76{left:225.704000pt;}
.x8f{left:226.869333pt;}
.x11{left:230.284000pt;}
.xd8{left:237.545333pt;}
.x9b{left:240.892000pt;}
.x9c{left:244.216000pt;}
.xca{left:251.204000pt;}
.x3b{left:255.052000pt;}
.xa4{left:256.589333pt;}
.x3c{left:258.864000pt;}
.x4f{left:261.740000pt;}
.x6e{left:263.156000pt;}
.xc5{left:268.489333pt;}
.xc1{left:275.034667pt;}
.xc2{left:278.465333pt;}
.xd4{left:282.097333pt;}
.x2e{left:283.614752pt;}
.xc9{left:284.861333pt;}
.x72{left:286.912000pt;}
.xd5{left:288.074667pt;}
.xa7{left:289.776000pt;}
.x8d{left:294.261333pt;}
.x8e{left:307.545333pt;}
.x70{left:311.644000pt;}
.x71{left:319.745333pt;}
.xbe{left:320.860000pt;}
.x12{left:322.752000pt;}
.x9d{left:323.676000pt;}
.x5f{left:325.906667pt;}
.x13{left:329.393333pt;}
.x9e{left:330.324000pt;}
.xc4{left:332.864000pt;}
.x8c{left:334.862667pt;}
.x47{left:335.810667pt;}
.x60{left:339.190667pt;}
.x67{left:348.780000pt;}
.xc7{left:350.356000pt;}
.x68{left:352.593333pt;}
.xc8{left:353.680000pt;}
.xbf{left:358.713333pt;}
.xd0{left:363.140000pt;}
.xb1{left:365.856000pt;}
.x14{left:366.758667pt;}
.xb2{left:370.506667pt;}
.x15{left:373.400000pt;}
.x3d{left:375.904000pt;}
.x22{left:377.297333pt;}
.x61{left:380.866667pt;}
.x3e{left:389.188000pt;}
.x23{left:390.580000pt;}
.x24{left:393.838667pt;}
.x25{left:407.121333pt;}
.x2f{left:408.175376pt;}
.x26{left:409.762667pt;}
.x85{left:410.797333pt;}
.x54{left:412.465333pt;}
.xb3{left:416.298667pt;}
.x18{left:418.832000pt;}
.x55{left:420.254667pt;}
.x39{left:421.884000pt;}
.x27{left:423.046667pt;}
.x86{left:424.080000pt;}
.x28{left:426.317333pt;}
.x3a{left:427.596000pt;}
.x9f{left:430.506667pt;}
.x94{left:436.134667pt;}
.x19{left:438.757333pt;}
.xb4{left:440.208000pt;}
.x95{left:442.112000pt;}
.xbb{left:446.117333pt;}
.x30{left:451.374936pt;}
.xbc{left:452.405333pt;}
.x50{left:456.258667pt;}
.x51{left:463.652000pt;}
.x98{left:470.486667pt;}
.xe{left:474.997333pt;}
.x62{left:477.209333pt;}
.x63{left:480.468000pt;}
.xf{left:481.638667pt;}
.xcb{left:483.974667pt;}
.x48{left:486.108000pt;}
.x73{left:490.441333pt;}
.x64{left:493.750667pt;}
.x49{left:499.392000pt;}
.x4a{left:502.696000pt;}
.x1e{left:504.268000pt;}
.x96{left:505.988000pt;}
.x97{left:513.197333pt;}
.x4b{left:515.978667pt;}
.x1f{left:517.552000pt;}
.x2b{left:523.535000pt;}
.x65{left:526.570667pt;}
.xa8{left:528.482667pt;}
.xa5{left:529.913333pt;}
.x83{left:531.498667pt;}
.x84{left:534.886667pt;}
.x66{left:539.854667pt;}
.x6c{left:545.018667pt;}
.xad{left:546.978667pt;}
.x6d{left:548.832000pt;}
.x77{left:554.440000pt;}
.x89{left:560.238667pt;}
.xc3{left:562.677333pt;}
.x5b{left:565.170667pt;}
.x78{left:567.722667pt;}
.x5d{left:569.084000pt;}
.xae{left:570.172000pt;}
.x8a{left:573.521333pt;}
.x5e{left:575.726667pt;}
.x5c{left:578.454667pt;}
.xa0{left:580.360000pt;}
.xa1{left:583.684000pt;}
.x16{left:586.473333pt;}
.xb7{left:588.110667pt;}
.x74{left:589.248000pt;}
.xa6{left:590.680000pt;}
.x17{left:593.116000pt;}
.x75{left:596.308000pt;}
.x93{left:600.102667pt;}
.x87{left:605.789333pt;}
.xb8{left:612.021333pt;}
.x88{left:619.072000pt;}
.x7{left:623.413317pt;}
.xc0{left:625.385333pt;}
.xab{left:628.388000pt;}
.xc{left:629.704000pt;}
.xbd{left:631.229333pt;}
.x1a{left:632.178667pt;}
.x8b{left:635.884000pt;}
.x1b{left:638.820000pt;}
.xb9{left:640.937333pt;}
.xb5{left:642.438667pt;}
.x56{left:646.670667pt;}
.x99{left:648.369333pt;}
.xd1{left:650.229333pt;}
.xac{left:652.298667pt;}
.x57{left:653.313333pt;}
.xcd{left:654.477333pt;}
.x9a{left:655.674667pt;}
.x58{left:656.568000pt;}
.xa2{left:658.353333pt;}
.xa9{left:661.097333pt;}
.xa3{left:664.881333pt;}
.xb6{left:666.349333pt;}
.xaa{left:667.624000pt;}
.x59{left:669.850667pt;}
.x1c{left:673.044000pt;}
.x7b{left:676.516000pt;}
.xce{left:678.388000pt;}
.x7c{left:683.768000pt;}
.x1d{left:686.326667pt;}
.xd{left:687.841333pt;}
.x6f{left:690.022667pt;}
}




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