
    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_238e7e70545870c0f235b614.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2d86e383d1fe8d5d9a40666b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.693000;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_10695de02b9d112a6e40fee1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b892d869b2ce8a7ceb15923f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7d37fd6181772ec190b06213.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_177914a50f86f085d4c232d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9fbda7e010a89297b012a19f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_955a5e3a8dc83665f74e2206.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f662ee8794690b694116b336.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6063c87097853bb51cda1b5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58873550b59165b7463c6eec.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_30f990e64ba7209cfebcdd5a.woff2')format("woff");}.fff{font-family:fff;line-height:0.740000;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_c7a7bf8baa4c19da763ffd1e.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b7fe793c7ae232d00364aba0.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0d8310e4456dd447743ddbcb.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a110547f42b4a409c7e47218.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.054688;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_3986c0b796d4c2276720b3b3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_02d46b846b0b181f96d3ae04.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4374e6ffd99c22054a3c81af.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_dc432cf7041c2c14680cca9a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.054688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m9{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.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);}
.mc{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);}
.m12{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);}
.m2a{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);}
.m17{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);}
.m1d{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);}
.mb{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);}
.m24{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);}
.m18{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);}
.md{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);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m27{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);}
.m21{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);}
.me{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);}
.m1e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m8{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);}
.m22{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);}
.m2{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);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m14{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);}
.ma{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);}
.m23{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);}
.m25{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);}
.m6{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m26{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);}
.m5{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);}
.m15{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.488000px;}
.v5{vertical-align:17.999928px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:35.868000px;}
.v6{vertical-align:40.677192px;}
.v7{vertical-align:42.174000px;}
.ls83{letter-spacing:-0.775548px;}
.ls81{letter-spacing:-0.751500px;}
.ls87{letter-spacing:-0.697392px;}
.ls86{letter-spacing:-0.691380px;}
.ls80{letter-spacing:-0.673344px;}
.ls84{letter-spacing:-0.667332px;}
.ls7e{letter-spacing:-0.655308px;}
.ls7f{letter-spacing:-0.637272px;}
.ls82{letter-spacing:-0.631260px;}
.ls85{letter-spacing:-0.625248px;}
.ls88{letter-spacing:-0.577152px;}
.ls59{letter-spacing:-0.502200px;}
.ls5f{letter-spacing:-0.351000px;}
.ls33{letter-spacing:-0.222444px;}
.ls5b{letter-spacing:-0.205200px;}
.ls64{letter-spacing:-0.174348px;}
.ls3d{letter-spacing:-0.162324px;}
.ls5e{letter-spacing:-0.140400px;}
.ls5c{letter-spacing:-0.138276px;}
.ls7d{letter-spacing:-0.132264px;}
.ls3e{letter-spacing:-0.126252px;}
.ls60{letter-spacing:-0.118800px;}
.ls63{letter-spacing:-0.114228px;}
.ls34{letter-spacing:-0.102204px;}
.ls40{letter-spacing:-0.090180px;}
.ls31{letter-spacing:-0.086184px;}
.ls7b{letter-spacing:-0.084168px;}
.ls39{letter-spacing:-0.081000px;}
.ls3b{letter-spacing:-0.075600px;}
.ls3f{letter-spacing:-0.072144px;}
.ls7c{letter-spacing:-0.048096px;}
.ls65{letter-spacing:-0.030060px;}
.ls3c{letter-spacing:-0.024048px;}
.ls5d{letter-spacing:-0.021600px;}
.ls36{letter-spacing:-0.018036px;}
.ls3a{letter-spacing:-0.016200px;}
.ls41{letter-spacing:-0.012024px;}
.ls38{letter-spacing:-0.010800px;}
.ls37{letter-spacing:-0.006012px;}
.ls61{letter-spacing:-0.005400px;}
.lse{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000178px;}
.ls2f{letter-spacing:0.000435px;}
.ls94{letter-spacing:0.000566px;}
.ls44{letter-spacing:0.000608px;}
.ls2e{letter-spacing:0.001077px;}
.ls47{letter-spacing:0.001133px;}
.lsb{letter-spacing:0.001933px;}
.ls8a{letter-spacing:0.002074px;}
.ls8c{letter-spacing:0.002276px;}
.ls2d{letter-spacing:0.002372px;}
.ls2{letter-spacing:0.002725px;}
.ls8e{letter-spacing:0.002877px;}
.ls30{letter-spacing:0.002939px;}
.ls9{letter-spacing:0.003488px;}
.ls49{letter-spacing:0.003986px;}
.ls3{letter-spacing:0.004200px;}
.ls23{letter-spacing:0.005400px;}
.ls15{letter-spacing:0.009576px;}
.ls20{letter-spacing:0.010800px;}
.ls26{letter-spacing:0.012024px;}
.ls1e{letter-spacing:0.016200px;}
.ls2b{letter-spacing:0.018036px;}
.ls24{letter-spacing:0.021600px;}
.ls29{letter-spacing:0.024048px;}
.ls21{letter-spacing:0.027000px;}
.ls52{letter-spacing:0.030060px;}
.ls19{letter-spacing:0.036072px;}
.ls50{letter-spacing:0.037800px;}
.ls2a{letter-spacing:0.042084px;}
.ls54{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.048096px;}
.ls22{letter-spacing:0.048600px;}
.ls17{letter-spacing:0.052668px;}
.ls1d{letter-spacing:0.054000px;}
.ls77{letter-spacing:0.054108px;}
.ls1c{letter-spacing:0.059400px;}
.ls27{letter-spacing:0.060120px;}
.ls53{letter-spacing:0.064800px;}
.ls32{letter-spacing:0.066132px;}
.ls51{letter-spacing:0.070200px;}
.ls76{letter-spacing:0.072144px;}
.ls1f{letter-spacing:0.075600px;}
.ls28{letter-spacing:0.078156px;}
.ls25{letter-spacing:0.084168px;}
.ls7a{letter-spacing:0.090180px;}
.ls1b{letter-spacing:0.096192px;}
.ls35{letter-spacing:0.114228px;}
.ls62{letter-spacing:0.150300px;}
.ls18{letter-spacing:0.177156px;}
.ls75{letter-spacing:0.181944px;}
.ls16{letter-spacing:0.191520px;}
.ls5a{letter-spacing:0.221400px;}
.ls6d{letter-spacing:0.717483px;}
.ls73{letter-spacing:0.723483px;}
.ls45{letter-spacing:0.896634px;}
.lsf{letter-spacing:1.275394px;}
.ls6{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.ls7{letter-spacing:10.461300px;}
.lsd{letter-spacing:11.954850px;}
.ls93{letter-spacing:13.291576px;}
.ls67{letter-spacing:13.311619px;}
.ls66{letter-spacing:13.317501px;}
.ls8f{letter-spacing:13.339718px;}
.ls79{letter-spacing:13.444090px;}
.ls8b{letter-spacing:13.448400px;}
.ls57{letter-spacing:13.450090px;}
.ls12{letter-spacing:13.450800px;}
.ls8d{letter-spacing:13.454400px;}
.ls90{letter-spacing:13.475023px;}
.ls92{letter-spacing:13.679812px;}
.ls6b{letter-spacing:13.728527px;}
.ls6a{letter-spacing:13.734649px;}
.ls46{letter-spacing:14.100088px;}
.ls6f{letter-spacing:14.426486px;}
.ls78{letter-spacing:14.541031px;}
.ls6e{letter-spacing:14.596916px;}
.ls42{letter-spacing:14.728032px;}
.ls13{letter-spacing:14.800800px;}
.ls2c{letter-spacing:14.938766px;}
.ls4{letter-spacing:14.944200px;}
.ls91{letter-spacing:14.944518px;}
.ls56{letter-spacing:14.946913px;}
.ls58{letter-spacing:15.003676px;}
.ls4f{letter-spacing:15.242778px;}
.ls14{letter-spacing:15.406682px;}
.ls4d{letter-spacing:15.657483px;}
.ls4b{letter-spacing:15.663483px;}
.ls43{letter-spacing:15.758884px;}
.ls6c{letter-spacing:16.329847px;}
.ls10{letter-spacing:17.546913px;}
.ls69{letter-spacing:17.852795px;}
.ls89{letter-spacing:18.611825px;}
.ls11{letter-spacing:19.605737px;}
.ls0{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsc{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.361200px;}
.ls72{letter-spacing:149.418017px;}
.ls70{letter-spacing:173.628017px;}
.ls71{letter-spacing:178.588766px;}
.ls74{letter-spacing:193.534766px;}
.ls55{letter-spacing:295.772364px;}
.ls68{letter-spacing:498.370766px;}
.ls4c{letter-spacing:500.467200px;}
.ls4e{letter-spacing:533.410200px;}
.ls4a{letter-spacing:614.158766px;}
.ls48{letter-spacing:889.606766px;}
.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;}
}
.ws5f{word-spacing:-15.144228px;}
.ws60{word-spacing:-15.126192px;}
.ws7{word-spacing:-14.943900px;}
.wsb5{word-spacing:-13.449600px;}
.ws5e{word-spacing:-12.161520px;}
.ws1d{word-spacing:-11.955150px;}
.ws6{word-spacing:-11.357400px;}
.ws12{word-spacing:-10.460700px;}
.ws5b{word-spacing:-3.048556px;}
.ws39{word-spacing:-2.988780px;}
.ws6c{word-spacing:-2.929004px;}
.ws128{word-spacing:-2.749678px;}
.ws4f{word-spacing:-2.689902px;}
.ws15d{word-spacing:-2.510575px;}
.ws150{word-spacing:-2.507004px;}
.ws151{word-spacing:-2.470932px;}
.ws51{word-spacing:-2.391024px;}
.ws165{word-spacing:-2.271473px;}
.ws15c{word-spacing:-2.128248px;}
.ws3a{word-spacing:-2.032370px;}
.ws8c{word-spacing:-2.025000px;}
.ws8b{word-spacing:-1.981800px;}
.ws140{word-spacing:-1.971936px;}
.wsf{word-spacing:-1.908367px;}
.wscd{word-spacing:-1.719432px;}
.ws13f{word-spacing:-1.695384px;}
.wsce{word-spacing:-1.683360px;}
.ws65{word-spacing:-1.667750px;}
.wsa3{word-spacing:-1.434614px;}
.ws5d{word-spacing:-1.374839px;}
.wse{word-spacing:-1.322630px;}
.ws192{word-spacing:-1.291162px;}
.ws107{word-spacing:-1.255288px;}
.ws106{word-spacing:-1.195512px;}
.ws16d{word-spacing:-1.135736px;}
.ws154{word-spacing:-1.076148px;}
.wsc2{word-spacing:-1.075961px;}
.ws14a{word-spacing:-1.052100px;}
.ws5a{word-spacing:-1.016185px;}
.ws18b{word-spacing:-0.968371px;}
.wsa0{word-spacing:-0.956410px;}
.ws11{word-spacing:-0.920542px;}
.ws13a{word-spacing:-0.901800px;}
.ws105{word-spacing:-0.896634px;}
.ws139{word-spacing:-0.891000px;}
.ws64{word-spacing:-0.860774px;}
.wsb0{word-spacing:-0.836858px;}
.ws173{word-spacing:-0.806976px;}
.ws41{word-spacing:-0.777083px;}
.ws20{word-spacing:-0.765130px;}
.ws168{word-spacing:-0.717307px;}
.ws68{word-spacing:-0.699379px;}
.ws59{word-spacing:-0.657532px;}
.ws83{word-spacing:-0.610200px;}
.ws85{word-spacing:-0.588600px;}
.ws155{word-spacing:-0.571140px;}
.ws23{word-spacing:-0.537984px;}
.ws3b{word-spacing:-0.537980px;}
.ws84{word-spacing:-0.523800px;}
.ws3c{word-spacing:-0.418429px;}
.ws1e{word-spacing:-0.382565px;}
.ws4c{word-spacing:-0.358654px;}
.ws4d{word-spacing:-0.342873px;}
.wse3{word-spacing:-0.322790px;}
.wsd3{word-spacing:-0.312624px;}
.ws47{word-spacing:-0.298878px;}
.ws33{word-spacing:-0.268992px;}
.ws13d{word-spacing:-0.240480px;}
.ws3e{word-spacing:-0.239102px;}
.wse2{word-spacing:-0.234468px;}
.ws32{word-spacing:-0.215194px;}
.ws4e{word-spacing:-0.179327px;}
.ws24{word-spacing:-0.161395px;}
.ws71{word-spacing:-0.138852px;}
.ws3f{word-spacing:-0.119551px;}
.ws66{word-spacing:-0.107597px;}
.ws70{word-spacing:-0.095760px;}
.ws3{word-spacing:-0.059776px;}
.ws175{word-spacing:-0.053798px;}
.ws15b{word-spacing:-0.048096px;}
.ws21{word-spacing:-0.047821px;}
.ws4a{word-spacing:-0.011141px;}
.ws10a{word-spacing:-0.010013px;}
.ws193{word-spacing:-0.007210px;}
.ws183{word-spacing:-0.006643px;}
.ws4{word-spacing:-0.005958px;}
.ws104{word-spacing:-0.005611px;}
.wsd{word-spacing:-0.004408px;}
.ws9{word-spacing:-0.003816px;}
.ws1{word-spacing:-0.003600px;}
.ws8{word-spacing:-0.003283px;}
.wsc{word-spacing:-0.002857px;}
.wsa{word-spacing:-0.002700px;}
.ws2{word-spacing:-0.002440px;}
.ws2a{word-spacing:-0.002403px;}
.ws17a{word-spacing:-0.002304px;}
.ws5{word-spacing:-0.000008px;}
.ws0{word-spacing:0.000000px;}
.wsbe{word-spacing:0.000389px;}
.wsb8{word-spacing:0.000931px;}
.wsa1{word-spacing:0.001158px;}
.ws138{word-spacing:0.006012px;}
.ws135{word-spacing:0.036072px;}
.ws136{word-spacing:0.048096px;}
.ws63{word-spacing:0.053798px;}
.ws9b{word-spacing:0.054108px;}
.ws37{word-spacing:0.059776px;}
.wscc{word-spacing:0.066132px;}
.ws15a{word-spacing:0.072144px;}
.wsf9{word-spacing:0.107597px;}
.ws147{word-spacing:0.108216px;}
.ws7b{word-spacing:0.114228px;}
.ws42{word-spacing:0.119551px;}
.ws142{word-spacing:0.120240px;}
.ws8e{word-spacing:0.124200px;}
.wse0{word-spacing:0.129600px;}
.wsfb{word-spacing:0.161395px;}
.ws8d{word-spacing:0.162000px;}
.wsc9{word-spacing:0.167400px;}
.wsca{word-spacing:0.178200px;}
.ws35{word-spacing:0.179327px;}
.ws148{word-spacing:0.180360px;}
.ws7c{word-spacing:0.194400px;}
.ws7e{word-spacing:0.199800px;}
.ws13{word-spacing:0.209214px;}
.ws177{word-spacing:0.215194px;}
.ws3d{word-spacing:0.239102px;}
.ws7d{word-spacing:0.264600px;}
.ws109{word-spacing:0.268992px;}
.wse1{word-spacing:0.270540px;}
.ws15{word-spacing:0.292900px;}
.ws38{word-spacing:0.298878px;}
.ws178{word-spacing:0.322790px;}
.ws40{word-spacing:0.358654px;}
.ws17f{word-spacing:0.376589px;}
.wscb{word-spacing:0.388800px;}
.ws13e{word-spacing:0.390780px;}
.ws98{word-spacing:0.414828px;}
.ws160{word-spacing:0.418429px;}
.wsf8{word-spacing:0.430387px;}
.wsd6{word-spacing:0.469800px;}
.ws130{word-spacing:0.478205px;}
.ws7f{word-spacing:0.486000px;}
.wsd5{word-spacing:0.507600px;}
.ws9a{word-spacing:0.529056px;}
.ws194{word-spacing:0.537984px;}
.wsd4{word-spacing:0.540000px;}
.wsd7{word-spacing:0.556200px;}
.ws141{word-spacing:0.571140px;}
.ws2b{word-spacing:0.591782px;}
.ws80{word-spacing:0.621000px;}
.ws53{word-spacing:0.657532px;}
.wsb4{word-spacing:0.669110px;}
.ws52{word-spacing:0.717307px;}
.ws8f{word-spacing:0.733464px;}
.wsf3{word-spacing:0.742800px;}
.wsee{word-spacing:0.744900px;}
.wse7{word-spacing:0.746700px;}
.ws101{word-spacing:0.746730px;}
.wsec{word-spacing:0.748500px;}
.wsbb{word-spacing:0.748800px;}
.wsbc{word-spacing:0.750600px;}
.wsea{word-spacing:0.750900px;}
.wse6{word-spacing:0.752700px;}
.ws143{word-spacing:0.763524px;}
.wsbd{word-spacing:0.770336px;}
.ws103{word-spacing:0.771913px;}
.wsa8{word-spacing:0.777083px;}
.ws76{word-spacing:0.781560px;}
.wsa7{word-spacing:0.836858px;}
.ws89{word-spacing:0.858600px;}
.wsc6{word-spacing:0.869400px;}
.wsc8{word-spacing:0.885600px;}
.wsc7{word-spacing:0.891000px;}
.ws161{word-spacing:0.896634px;}
.ws27{word-spacing:0.914573px;}
.ws75{word-spacing:0.919836px;}
.ws56{word-spacing:0.956410px;}
.ws16f{word-spacing:1.022170px;}
.wsaa{word-spacing:1.075961px;}
.ws12a{word-spacing:1.075968px;}
.ws144{word-spacing:1.118232px;}
.ws18d{word-spacing:1.129766px;}
.ws12e{word-spacing:1.135736px;}
.ws54{word-spacing:1.195512px;}
.ws171{word-spacing:1.237363px;}
.ws8a{word-spacing:1.263600px;}
.ws16e{word-spacing:1.291162px;}
.ws2f{word-spacing:1.344960px;}
.wsa9{word-spacing:1.374839px;}
.ws129{word-spacing:1.398758px;}
.wsac{word-spacing:1.434614px;}
.ws2e{word-spacing:1.452557px;}
.wsc4{word-spacing:1.506355px;}
.ws95{word-spacing:1.515024px;}
.ws6a{word-spacing:1.554166px;}
.ws6d{word-spacing:1.613941px;}
.ws162{word-spacing:1.673717px;}
.ws179{word-spacing:1.721549px;}
.wsc3{word-spacing:1.775347px;}
.ws36{word-spacing:1.793268px;}
.ws108{word-spacing:1.799453px;}
.ws94{word-spacing:1.815624px;}
.wsc5{word-spacing:1.853044px;}
.ws26{word-spacing:1.882944px;}
.ws12f{word-spacing:1.912819px;}
.ws30{word-spacing:1.936742px;}
.ws15f{word-spacing:1.972595px;}
.ws14{word-spacing:2.008454px;}
.ws58{word-spacing:2.032370px;}
.ws57{word-spacing:2.092146px;}
.wsc1{word-spacing:2.151922px;}
.ws73{word-spacing:2.188368px;}
.ws62{word-spacing:2.205734px;}
.ws181{word-spacing:2.259533px;}
.ws169{word-spacing:2.271473px;}
.ws13c{word-spacing:2.305800px;}
.wsfc{word-spacing:2.313331px;}
.wsa4{word-spacing:2.331248px;}
.ws13b{word-spacing:2.338200px;}
.ws9e{word-spacing:2.391024px;}
.ws61{word-spacing:2.474726px;}
.ws167{word-spacing:2.510575px;}
.ws31{word-spacing:2.513224px;}
.ws14e{word-spacing:2.549088px;}
.ws14f{word-spacing:2.555100px;}
.ws176{word-spacing:2.582323px;}
.ws7a{word-spacing:2.621232px;}
.ws145{word-spacing:2.627244px;}
.ws4b{word-spacing:2.630126px;}
.ws79{word-spacing:2.633256px;}
.ws146{word-spacing:2.645280px;}
.wsdd{word-spacing:2.662200px;}
.ws88{word-spacing:2.678400px;}
.wsdf{word-spacing:2.683800px;}
.wsae{word-spacing:2.689902px;}
.ws86{word-spacing:2.694600px;}
.wsde{word-spacing:2.710800px;}
.ws87{word-spacing:2.716200px;}
.ws16a{word-spacing:2.749678px;}
.ws74{word-spacing:2.837664px;}
.ws15e{word-spacing:2.869229px;}
.ws22{word-spacing:2.869236px;}
.ws5c{word-spacing:2.929004px;}
.wsd0{word-spacing:2.975940px;}
.wscf{word-spacing:2.981952px;}
.ws9f{word-spacing:2.988780px;}
.wsd9{word-spacing:3.002400px;}
.wsda{word-spacing:3.007800px;}
.ws149{word-spacing:3.060108px;}
.ws185{word-spacing:3.066509px;}
.wsd8{word-spacing:3.088800px;}
.ws184{word-spacing:3.120307px;}
.wsdc{word-spacing:3.186000px;}
.ws18a{word-spacing:3.220042px;}
.ws180{word-spacing:3.222154px;}
.ws182{word-spacing:3.223430px;}
.ws17e{word-spacing:3.223651px;}
.ws186{word-spacing:3.224102px;}
.ws18f{word-spacing:3.225600px;}
.ws189{word-spacing:3.226877px;}
.ws187{word-spacing:3.227194px;}
.ws191{word-spacing:3.227568px;}
.ws17c{word-spacing:3.227904px;}
.ws157{word-spacing:3.240468px;}
.ws153{word-spacing:3.246480px;}
.ws18c{word-spacing:3.281702px;}
.ws156{word-spacing:3.282552px;}
.ws69{word-spacing:3.335501px;}
.wsaf{word-spacing:3.347434px;}
.ws152{word-spacing:3.366720px;}
.ws81{word-spacing:3.375000px;}
.ws190{word-spacing:3.389299px;}
.ws16b{word-spacing:3.407209px;}
.ws82{word-spacing:3.412800px;}
.wsdb{word-spacing:3.418200px;}
.ws29{word-spacing:3.443098px;}
.wsbf{word-spacing:3.466985px;}
.ws188{word-spacing:3.496896px;}
.ws17b{word-spacing:3.550694px;}
.ws34{word-spacing:3.586536px;}
.ws16c{word-spacing:3.646312px;}
.ws17d{word-spacing:3.712090px;}
.ws91{word-spacing:3.715416px;}
.ws90{word-spacing:3.721428px;}
.ws43{word-spacing:3.765863px;}
.ws49{word-spacing:3.945190px;}
.ws50{word-spacing:4.064741px;}
.ws2c{word-spacing:4.088678px;}
.ws55{word-spacing:4.124516px;}
.ws97{word-spacing:4.184352px;}
.ws14d{word-spacing:4.190364px;}
.ws96{word-spacing:4.220424px;}
.wsa5{word-spacing:4.244068px;}
.ws44{word-spacing:4.363619px;}
.ws78{word-spacing:4.370724px;}
.ws92{word-spacing:4.406796px;}
.wsfa{word-spacing:4.411469px;}
.ws132{word-spacing:4.423394px;}
.wsd1{word-spacing:4.436856px;}
.ws28{word-spacing:4.465267px;}
.ws166{word-spacing:4.483170px;}
.ws67{word-spacing:4.519066px;}
.ws48{word-spacing:4.542946px;}
.wsd2{word-spacing:4.557096px;}
.ws12b{word-spacing:4.662497px;}
.wsa6{word-spacing:4.782048px;}
.ws9d{word-spacing:4.791564px;}
.ws9c{word-spacing:4.869720px;}
.wsa2{word-spacing:4.961375px;}
.ws134{word-spacing:5.074128px;}
.ws159{word-spacing:5.092164px;}
.ws158{word-spacing:5.110200px;}
.ws174{word-spacing:5.110848px;}
.ws131{word-spacing:5.200477px;}
.ws46{word-spacing:5.260253px;}
.ws137{word-spacing:5.428836px;}
.ws99{word-spacing:5.476932px;}
.ws6b{word-spacing:5.738458px;}
.ws93{word-spacing:5.795568px;}
.ws25{word-spacing:5.971622px;}
.wsf7{word-spacing:6.037336px;}
.ws1b{word-spacing:6.067206px;}
.wsc0{word-spacing:6.097111px;}
.ws2d{word-spacing:6.133018px;}
.ws1c{word-spacing:6.150892px;}
.ws6e{word-spacing:6.276438px;}
.ws6f{word-spacing:6.336214px;}
.wsad{word-spacing:6.515540px;}
.ws77{word-spacing:6.535044px;}
.wsb6{word-spacing:6.671002px;}
.ws164{word-spacing:6.814418px;}
.ws163{word-spacing:6.874194px;}
.ws12d{word-spacing:6.933970px;}
.ws12c{word-spacing:6.993745px;}
.ws18e{word-spacing:7.155187px;}
.wsab{word-spacing:7.173072px;}
.ws14b{word-spacing:7.346664px;}
.ws14c{word-spacing:7.388748px;}
.ws170{word-spacing:7.639373px;}
.ws172{word-spacing:7.854566px;}
.wsb3{word-spacing:8.553946px;}
.wsb1{word-spacing:8.607686px;}
.ws19{word-spacing:8.661460px;}
.wsb2{word-spacing:8.984333px;}
.ws133{word-spacing:11.615688px;}
.ws72{word-spacing:11.620476px;}
.ws10{word-spacing:15.483541px;}
.ws16{word-spacing:16.142252px;}
.ws17{word-spacing:16.151321px;}
.ws45{word-spacing:17.215373px;}
.ws18{word-spacing:17.699504px;}
.ws1a{word-spacing:27.448877px;}
.ws1f{word-spacing:41.844000px;}
.wsb{word-spacing:46.059000px;}
.ws10c{word-spacing:111.364225px;}
.ws115{word-spacing:114.681317px;}
.ws110{word-spacing:119.671842px;}
.ws117{word-spacing:150.243000px;}
.ws116{word-spacing:150.249000px;}
.wse5{word-spacing:153.462523px;}
.ws120{word-spacing:155.211625px;}
.wsf2{word-spacing:164.459089px;}
.ws125{word-spacing:167.826334px;}
.ws102{word-spacing:169.665648px;}
.ws127{word-spacing:171.849000px;}
.ws11c{word-spacing:172.787083px;}
.ws126{word-spacing:174.484976px;}
.ws114{word-spacing:181.296986px;}
.ws113{word-spacing:181.299000px;}
.wsed{word-spacing:181.398950px;}
.ws123{word-spacing:189.369101px;}
.ws122{word-spacing:190.143000px;}
.ws118{word-spacing:196.063968px;}
.wse9{word-spacing:196.344950px;}
.wseb{word-spacing:198.294523px;}
.ws11f{word-spacing:199.407000px;}
.ws10d{word-spacing:199.411402px;}
.ws112{word-spacing:204.249000px;}
.wsef{word-spacing:204.759350px;}
.wsf4{word-spacing:211.292750px;}
.ws11e{word-spacing:214.354800px;}
.ws111{word-spacing:214.355302px;}
.ws10e{word-spacing:215.043000px;}
.wse8{word-spacing:219.701150px;}
.wsba{word-spacing:222.723886px;}
.wsf1{word-spacing:222.873350px;}
.ws124{word-spacing:228.462343px;}
.wsfd{word-spacing:233.629876px;}
.wsf0{word-spacing:237.815150px;}
.ws119{word-spacing:239.221951px;}
.ws121{word-spacing:239.991557px;}
.ws11d{word-spacing:244.932600px;}
.ws10f{word-spacing:264.207000px;}
.wsf6{word-spacing:267.704750px;}
.wsff{word-spacing:268.062523px;}
.ws11a{word-spacing:268.353000px;}
.ws11b{word-spacing:279.152052px;}
.wsfe{word-spacing:283.008523px;}
.ws100{word-spacing:312.894523px;}
.ws10b{word-spacing:316.796734px;}
.wsf5{word-spacing:330.552098px;}
.wsb9{word-spacing:473.602079px;}
.wse4{word-spacing:491.773861px;}
.wsb7{word-spacing:818.208413px;}
._0{margin-left:-11.943245px;}
._83{margin-left:-7.811884px;}
._4{margin-left:-6.635092px;}
._7{margin-left:-5.104822px;}
._2{margin-left:-3.285064px;}
._5{margin-left:-2.245443px;}
._1{margin-left:-1.076152px;}
._6{width:1.091170px;}
._3{width:2.987874px;}
._42{width:9.674503px;}
._81{width:11.377671px;}
._8{width:12.635585px;}
._a{width:13.717812px;}
._10{width:14.826789px;}
._15{width:16.394422px;}
._1b{width:17.394700px;}
._13{width:18.506650px;}
._e{width:19.582618px;}
._c{width:20.604787px;}
._14{width:21.774262px;}
._17{width:22.894055px;}
._16{width:24.448220px;}
._9{width:25.946136px;}
._18{width:27.676103px;}
._1c{width:28.987640px;}
._f{width:30.331569px;}
._19{width:31.561517px;}
._b{width:32.637384px;}
._d{width:34.807565px;}
._1e{width:37.228493px;}
._82{width:39.989876px;}
._1d{width:43.186025px;}
._84{width:61.868160px;}
._57{width:81.256342px;}
._47{width:88.228786px;}
._56{width:92.257646px;}
._72{width:98.151535px;}
._51{width:103.866455px;}
._6d{width:106.460344px;}
._71{width:109.748002px;}
._45{width:118.116586px;}
._58{width:120.575476px;}
._70{width:124.297368px;}
._50{width:126.357096px;}
._55{width:133.138320px;}
._5d{width:137.364329px;}
._53{width:147.131647px;}
._4f{width:151.710473px;}
._4d{width:152.846209px;}
._6f{width:154.856103px;}
._6b{width:157.959888px;}
._52{width:160.272241px;}
._6e{width:161.597342px;}
._4b{width:163.679450px;}
._59{width:166.235944px;}
._5a{width:173.585366px;}
._48{width:176.094415px;}
._49{width:177.892186px;}
._6c{width:181.292251px;}
._4e{width:185.067772px;}
._4c{width:190.311350px;}
._46{width:191.817158px;}
._4a{width:193.569350px;}
._63{width:196.891351px;}
._66{width:202.302321px;}
._64{width:203.471366px;}
._60{width:206.847472px;}
._62{width:210.790067px;}
._6a{width:211.842479px;}
._75{width:214.355302px;}
._54{width:219.627306px;}
._61{width:225.568036px;}
._7b{width:226.691695px;}
._79{width:229.299202px;}
._73{width:235.934293px;}
._5f{width:241.697084px;}
._29{width:243.580324px;}
._5c{width:248.299166px;}
._76{width:250.878193px;}
._7e{width:255.921688px;}
._38{width:257.648464px;}
._74{width:268.378302px;}
._5b{width:270.843244px;}
._35{width:272.425663px;}
._7a{width:274.054302px;}
._3e{width:275.760149px;}
._7d{width:279.152052px;}
._37{width:280.168237px;}
._69{width:281.244198px;}
._7c{width:283.336344px;}
._24{width:290.704049px;}
._77{width:298.280244px;}
._44{width:301.569334px;}
._3b{width:305.647949px;}
._5e{width:306.768379px;}
._78{width:309.039852px;}
._3d{width:310.828553px;}
._32{width:317.428740px;}
._27{width:320.592149px;}
._2d{width:323.111014px;}
._2c{width:335.535749px;}
._23{width:340.716844px;}
._26{width:355.626090px;}
._43{width:357.695964px;}
._20{width:358.973246px;}
._3a{width:370.576484px;}
._2a{width:383.099686px;}
._40{width:385.513967px;}
._65{width:387.883868px;}
._36{width:393.407119px;}
._39{width:403.100616px;}
._30{width:415.410506px;}
._68{width:427.813969px;}
._2b{width:430.377619px;}
._2e{width:433.326545px;}
._3f{width:450.468922px;}
._28{width:468.521153px;}
._3c{width:491.355432px;}
._25{width:502.198711px;}
._67{width:506.538434px;}
._34{width:507.996944px;}
._22{width:532.779923px;}
._33{width:538.362949px;}
._31{width:542.941775px;}
._2f{width:551.549461px;}
._1f{width:604.869296px;}
._21{width:736.756932px;}
._11{width:936.663889px;}
._80{width:2023.203410px;}
._1a{width:2046.975830px;}
._7f{width:2427.896700px;}
._12{width:2451.806700px;}
._41{width:2793.722292px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:transparent;}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(46,92,87);}
.fc0{color:rgb(14,15,14);}
.fs8{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:41.936104px;}
.fs4{font-size:45.429600px;}
.fs5{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fsb{font-size:56.058000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:75.592800px;}
.fs3{font-size:107.596800px;}
.y1d2{bottom:-564.325050px;}
.y1f0{bottom:-478.463196px;}
.y1ef{bottom:-459.203754px;}
.ybc{bottom:-447.649050px;}
.y1ee{bottom:-439.944312px;}
.y1ed{bottom:-420.775050px;}
.y1ec{bottom:-401.511342px;}
.y14b{bottom:-394.042050px;}
.y1eb{bottom:-382.251900px;}
.yd6{bottom:-372.942750px;}
.y1ea{bottom:-363.082638px;}
.yd5{bottom:-353.683308px;}
.y1e9{bottom:-343.823196px;}
.yd4{bottom:-334.514046px;}
.y1e8{bottom:-324.653934px;}
.y15a{bottom:-319.071987px;}
.yd3{bottom:-315.254604px;}
.y1e7{bottom:-305.394492px;}
.y159{bottom:-303.322050px;}
.y15b{bottom:-298.822068px;}
.yd2{bottom:-296.085342px;}
.y1e6{bottom:-286.135050px;}
.yd1{bottom:-276.825900px;}
.y158{bottom:-268.762950px;}
.y1e5{bottom:-266.964492px;}
.yd0{bottom:-257.566458px;}
.y157{bottom:-251.392500px;}
.y1e4{bottom:-247.705050px;}
.ycf{bottom:-238.397196px;}
.y156{bottom:-234.112500px;}
.y1e3{bottom:-228.533934px;}
.yce{bottom:-219.137754px;}
.y155{bottom:-216.742050px;}
.y1e2{bottom:-209.274492px;}
.ycd{bottom:-199.968492px;}
.y1e1{bottom:-190.015050px;}
.y154{bottom:-181.098882px;}
.ycc{bottom:-180.709050px;}
.y1e0{bottom:-170.844492px;}
.y153{bottom:-161.929620px;}
.y1df{bottom:-151.585050px;}
.ycb{bottom:-143.900400px;}
.y152{bottom:-142.670178px;}
.y1de{bottom:-132.415089px;}
.yca{bottom:-126.529950px;}
.y151{bottom:-123.500916px;}
.y1dd{bottom:-113.155647px;}
.yc9{bottom:-109.249950px;}
.y150{bottom:-99.741492px;}
.yc8{bottom:-91.879500px;}
.y1dc{bottom:-89.484900px;}
.y14f{bottom:-80.482050px;}
.yc7{bottom:-74.599500px;}
.yc6{bottom:-57.319500px;}
.y1db{bottom:-52.585500px;}
.y14e{bottom:-43.672500px;}
.yc5{bottom:-40.039500px;}
.y1da{bottom:-35.215050px;}
.y14d{bottom:-26.302050px;}
.yc4{bottom:-22.669050px;}
.y1d9{bottom:-17.935050px;}
.y14c{bottom:-3.891807px;}
.yc3{bottom:-0.257052px;}
.y0{bottom:0.000000px;}
.ye{bottom:3.425340px;}
.y1d8{bottom:4.474950px;}
.y3{bottom:10.988264px;}
.yd{bottom:14.151273px;}
.y2{bottom:30.831374px;}
.y59{bottom:31.890000px;}
.yf0{bottom:93.757500px;}
.y8c{bottom:101.259000px;}
.y28{bottom:102.823500px;}
.y262{bottom:103.557000px;}
.y11d{bottom:104.005500px;}
.y203{bottom:106.395000px;}
.y58{bottom:106.660500px;}
.y20e{bottom:106.695000px;}
.yef{bottom:112.587000px;}
.y8b{bottom:120.088500px;}
.y22c{bottom:120.100500px;}
.y27{bottom:120.711000px;}
.y261{bottom:120.817500px;}
.y11c{bottom:122.835000px;}
.y202{bottom:125.224500px;}
.y20d{bottom:125.524500px;}
.y57{bottom:126.117000px;}
.yee{bottom:131.416500px;}
.y22b{bottom:137.361000px;}
.y1cd{bottom:137.962500px;}
.y260{bottom:138.078000px;}
.y26{bottom:138.600000px;}
.y8a{bottom:138.918000px;}
.y11b{bottom:141.664500px;}
.y201{bottom:144.054000px;}
.y20c{bottom:144.354000px;}
.y56{bottom:145.575000px;}
.y1cc{bottom:145.740000px;}
.y199{bottom:148.449000px;}
.yed{bottom:150.246000px;}
.y22a{bottom:154.621500px;}
.y25f{bottom:155.338500px;}
.y25{bottom:156.487500px;}
.y89{bottom:157.747500px;}
.y147{bottom:158.079000px;}
.y11a{bottom:160.494000px;}
.y200{bottom:162.883500px;}
.y20b{bottom:163.183500px;}
.y55{bottom:165.031500px;}
.y198{bottom:166.381500px;}
.yec{bottom:169.075500px;}
.y229{bottom:171.882000px;}
.y25e{bottom:172.599000px;}
.y1c9{bottom:173.008500px;}
.y1cb{bottom:173.827500px;}
.y24{bottom:174.375000px;}
.y88{bottom:176.577000px;}
.y146{bottom:176.908500px;}
.y119{bottom:179.323500px;}
.y1ff{bottom:181.713000px;}
.y20a{bottom:182.013000px;}
.y197{bottom:184.314000px;}
.y54{bottom:184.488000px;}
.yeb{bottom:187.905000px;}
.y228{bottom:189.142500px;}
.y25d{bottom:189.858000px;}
.y1c8{bottom:190.942500px;}
.y1ca{bottom:191.760000px;}
.y23{bottom:192.264000px;}
.y87{bottom:195.406500px;}
.y145{bottom:195.738000px;}
.y118{bottom:198.153000px;}
.y1fe{bottom:200.542500px;}
.y209{bottom:200.842500px;}
.y195{bottom:202.246500px;}
.y53{bottom:203.946000px;}
.y227{bottom:206.401500px;}
.yea{bottom:206.734500px;}
.y25c{bottom:207.118500px;}
.y1c5{bottom:208.875000px;}
.y1c7{bottom:209.692500px;}
.y22{bottom:210.151500px;}
.y196{bottom:211.213500px;}
.y86{bottom:214.236000px;}
.y144{bottom:214.567500px;}
.y117{bottom:216.982500px;}
.y1fd{bottom:219.372000px;}
.y208{bottom:219.672000px;}
.y194{bottom:220.179000px;}
.y52{bottom:223.402500px;}
.y226{bottom:223.662000px;}
.y25b{bottom:224.379000px;}
.ye9{bottom:225.564000px;}
.y1c4{bottom:226.807500px;}
.y1c6{bottom:227.626500px;}
.y21{bottom:228.039000px;}
.y85{bottom:233.065500px;}
.y143{bottom:233.397000px;}
.y116{bottom:235.812000px;}
.y193{bottom:238.113000px;}
.y1fc{bottom:238.201500px;}
.y207{bottom:238.501500px;}
.y225{bottom:240.922500px;}
.y25a{bottom:241.639500px;}
.y51{bottom:242.859000px;}
.ye8{bottom:244.393500px;}
.y1c3{bottom:245.559000px;}
.y163{bottom:247.225500px;}
.y84{bottom:251.895000px;}
.y142{bottom:252.226500px;}
.y1c2{bottom:253.116000px;}
.y115{bottom:254.641500px;}
.y192{bottom:256.045500px;}
.y1fb{bottom:257.031000px;}
.y206{bottom:257.331000px;}
.y224{bottom:258.183000px;}
.y259{bottom:258.900000px;}
.ye7{bottom:263.223000px;}
.y162{bottom:266.055000px;}
.y83{bottom:270.724500px;}
.y141{bottom:271.056000px;}
.y114{bottom:273.471000px;}
.y223{bottom:275.443500px;}
.y1fa{bottom:275.860500px;}
.y205{bottom:276.160500px;}
.y191{bottom:281.181000px;}
.y50{bottom:281.445000px;}
.ye6{bottom:282.052500px;}
.y161{bottom:284.884500px;}
.y1c1{bottom:288.627000px;}
.y82{bottom:289.554000px;}
.y113{bottom:292.300500px;}
.y222{bottom:292.704000px;}
.y258{bottom:293.421000px;}
.y140{bottom:294.369000px;}
.y1f9{bottom:294.690000px;}
.y204{bottom:294.990000px;}
.y190{bottom:299.113500px;}
.ye5{bottom:300.882000px;}
.y4f{bottom:301.924500px;}
.y160{bottom:303.714000px;}
.y1c0{bottom:306.559500px;}
.y20{bottom:307.299000px;}
.y81{bottom:308.383500px;}
.y257{bottom:310.681500px;}
.y112{bottom:311.130000px;}
.y1f8{bottom:313.519500px;}
.yb8{bottom:313.819500px;}
.y221{bottom:314.446500px;}
.y4e{bottom:318.064500px;}
.ye4{bottom:319.710000px;}
.y1f{bottom:325.186500px;}
.y15f{bottom:327.027000px;}
.y80{bottom:327.213000px;}
.y256{bottom:327.940500px;}
.y13f{bottom:327.993000px;}
.y4d{bottom:329.863500px;}
.y1bf{bottom:331.693500px;}
.y18f{bottom:331.779000px;}
.yb7{bottom:332.649000px;}
.y111{bottom:334.443000px;}
.y1f7{bottom:336.831000px;}
.ye3{bottom:338.539500px;}
.y1be{bottom:339.252000px;}
.y15e{bottom:342.718500px;}
.y1e{bottom:343.074000px;}
.y255{bottom:345.201000px;}
.y7f{bottom:346.042500px;}
.y13e{bottom:346.822500px;}
.y220{bottom:348.070500px;}
.y4c{bottom:350.343000px;}
.y18e{bottom:351.012000px;}
.yb6{bottom:351.478500px;}
.y1d{bottom:360.963000px;}
.ye2{bottom:361.852500px;}
.y4b{bottom:362.143500px;}
.y254{bottom:362.461500px;}
.y7e{bottom:364.872000px;}
.y13d{bottom:365.652000px;}
.y1bd{bottom:367.560000px;}
.y110{bottom:368.065500px;}
.y18d{bottom:370.245000px;}
.yb5{bottom:370.308000px;}
.y1f6{bottom:370.455000px;}
.y21f{bottom:374.611500px;}
.y1bc{bottom:374.949000px;}
.y253{bottom:379.722000px;}
.ye1{bottom:382.027500px;}
.y15d{bottom:382.111500px;}
.y4a{bottom:382.621500px;}
.y7d{bottom:383.701500px;}
.y13c{bottom:384.481500px;}
.y10f{bottom:386.895000px;}
.yb4{bottom:389.137500px;}
.y1f5{bottom:389.284500px;}
.y18c{bottom:389.476500px;}
.y21e{bottom:392.185500px;}
.y49{bottom:394.422000px;}
.y252{bottom:396.982500px;}
.y1c{bottom:399.024000px;}
.y15c{bottom:401.344500px;}
.y7c{bottom:402.531000px;}
.y1bb{bottom:403.425000px;}
.y10e{bottom:405.724500px;}
.yb3{bottom:407.967000px;}
.y1f4{bottom:408.114000px;}
.y18b{bottom:408.709500px;}
.y21d{bottom:409.759500px;}
.y48{bottom:410.562000px;}
.y1ba{bottom:410.983500px;}
.ye0{bottom:412.455000px;}
.y251{bottom:414.243000px;}
.y1b{bottom:416.913000px;}
.y13b{bottom:420.132000px;}
.y7b{bottom:421.360500px;}
.y148{bottom:423.774000px;}
.y10d{bottom:424.554000px;}
.y47{bottom:426.700500px;}
.yb2{bottom:426.796500px;}
.y21c{bottom:427.333500px;}
.y250{bottom:431.503500px;}
.ydf{bottom:431.688000px;}
.y1a{bottom:434.800500px;}
.y1d7{bottom:438.186471px;}
.y1b9{bottom:439.291500px;}
.y7a{bottom:440.188500px;}
.y1f3{bottom:441.679500px;}
.y13a{bottom:443.326500px;}
.y10c{bottom:443.383500px;}
.y21b{bottom:444.907500px;}
.yb1{bottom:445.626000px;}
.y18a{bottom:445.815000px;}
.y1b8{bottom:447.069000px;}
.y46{bottom:447.180000px;}
.y24f{bottom:448.764000px;}
.yde{bottom:450.921000px;}
.y1d6{bottom:457.355733px;}
.y45{bottom:458.980500px;}
.y79{bottom:459.018000px;}
.y1f2{bottom:460.912500px;}
.y139{bottom:461.259000px;}
.y10b{bottom:462.213000px;}
.y21a{bottom:462.483000px;}
.yb0{bottom:464.454000px;}
.y189{bottom:464.643000px;}
.y24e{bottom:466.024500px;}
.ydd{bottom:470.152500px;}
.y19{bottom:470.622000px;}
.y1d5{bottom:476.615175px;}
.y78{bottom:477.847500px;}
.y138{bottom:479.191500px;}
.y44{bottom:479.460000px;}
.y219{bottom:480.057000px;}
.y1f1{bottom:480.145500px;}
.y10a{bottom:481.042500px;}
.y1b7{bottom:482.358000px;}
.yaf{bottom:483.283500px;}
.y188{bottom:483.472500px;}
.ydc{bottom:489.385500px;}
.y43{bottom:491.259000px;}
.y1d4{bottom:495.874617px;}
.y77{bottom:496.677000px;}
.y137{bottom:497.125500px;}
.y109{bottom:499.872000px;}
.y1b6{bottom:500.292000px;}
.y24d{bottom:500.544000px;}
.yae{bottom:502.113000px;}
.y1cf{bottom:502.575000px;}
.y18{bottom:506.442000px;}
.y218{bottom:506.596500px;}
.ydb{bottom:508.618500px;}
.y42{bottom:511.738500px;}
.y1d3{bottom:515.045382px;}
.y136{bottom:515.058000px;}
.y76{bottom:515.506500px;}
.y24c{bottom:517.804500px;}
.y108{bottom:518.701500px;}
.y187{bottom:519.123000px;}
.yad{bottom:520.942500px;}
.y41{bottom:523.539000px;}
.y217{bottom:524.170500px;}
.y17{bottom:524.329500px;}
.yda{bottom:527.851500px;}
.y1b5{bottom:532.957500px;}
.y135{bottom:532.990500px;}
.y75{bottom:534.336000px;}
.y24b{bottom:535.065000px;}
.yc2{bottom:535.603029px;}
.y107{bottom:537.531000px;}
.yac{bottom:539.772000px;}
.y16{bottom:542.218500px;}
.y185{bottom:542.319000px;}
.y40{bottom:544.017000px;}
.yd9{bottom:547.084500px;}
.y216{bottom:550.711500px;}
.y134{bottom:550.923000px;}
.y184{bottom:551.284500px;}
.y1b4{bottom:552.190500px;}
.y24a{bottom:552.325500px;}
.y74{bottom:553.165500px;}
.yc1{bottom:554.862471px;}
.y3f{bottom:555.817500px;}
.yab{bottom:558.601500px;}
.y15{bottom:560.106000px;}
.y3e{bottom:560.157000px;}
.y186{bottom:560.251500px;}
.y106{bottom:560.844000px;}
.yd8{bottom:566.317500px;}
.y215{bottom:568.285500px;}
.y133{bottom:568.855500px;}
.y249{bottom:569.586000px;}
.y1d1{bottom:569.765085px;}
.y1b3{bottom:571.422000px;}
.y73{bottom:571.995000px;}
.yc0{bottom:574.031733px;}
.y3d{bottom:576.297000px;}
.yaa{bottom:577.431000px;}
.y14{bottom:577.993500px;}
.y183{bottom:578.184000px;}
.y1d0{bottom:579.394950px;}
.yd7{bottom:585.550500px;}
.y214{bottom:585.859500px;}
.y132{bottom:586.789500px;}
.y248{bottom:586.846500px;}
.y182{bottom:587.151000px;}
.y3c{bottom:588.096000px;}
.y72{bottom:590.824500px;}
.ybf{bottom:593.291175px;}
.y105{bottom:594.468000px;}
.y13{bottom:595.882500px;}
.ya9{bottom:596.260500px;}
.y213{bottom:603.433500px;}
.y247{bottom:604.107000px;}
.y3b{bottom:604.236000px;}
.y131{bottom:604.722000px;}
.y1b2{bottom:606.942000px;}
.yb9{bottom:607.980000px;}
.y71{bottom:609.654000px;}
.ybe{bottom:612.550617px;}
.y104{bottom:613.297500px;}
.y130{bottom:613.687500px;}
.y12{bottom:613.770000px;}
.y181{bottom:614.049000px;}
.ya8{bottom:615.090000px;}
.y212{bottom:621.007500px;}
.y246{bottom:621.366000px;}
.y3a{bottom:624.715500px;}
.y1b1{bottom:625.771500px;}
.y70{bottom:628.483500px;}
.y11{bottom:631.657500px;}
.ybd{bottom:631.721382px;}
.y180{bottom:631.983000px;}
.y103{bottom:632.127000px;}
.ya7{bottom:633.919500px;}
.y39{bottom:636.514500px;}
.y211{bottom:638.583000px;}
.y245{bottom:638.626500px;}
.y12f{bottom:640.587000px;}
.y1b0{bottom:644.601000px;}
.y6f{bottom:647.313000px;}
.y10{bottom:649.546500px;}
.y17e{bottom:649.915500px;}
.y102{bottom:650.956500px;}
.y38{bottom:652.654500px;}
.ya6{bottom:652.749000px;}
.y244{bottom:655.887000px;}
.y210{bottom:656.157000px;}
.y12e{bottom:658.519500px;}
.y17d{bottom:658.881000px;}
.y1af{bottom:663.430500px;}
.y6e{bottom:666.142500px;}
.yf{bottom:667.434000px;}
.y17f{bottom:667.848000px;}
.y37{bottom:668.794500px;}
.y101{bottom:669.786000px;}
.ya5{bottom:671.578500px;}
.y243{bottom:673.147500px;}
.y20f{bottom:673.731000px;}
.y12d{bottom:677.194500px;}
.y1ae{bottom:682.260000px;}
.y6d{bottom:684.972000px;}
.y17c{bottom:685.780500px;}
.ybb{bottom:686.441085px;}
.y100{bottom:688.615500px;}
.y36{bottom:689.274000px;}
.yc{bottom:689.805055px;}
.ya4{bottom:690.408000px;}
.y12c{bottom:695.127000px;}
.yba{bottom:696.070950px;}
.y35{bottom:701.073000px;}
.y1ad{bottom:701.089500px;}
.y17b{bottom:703.713000px;}
.y6c{bottom:703.801500px;}
.yff{bottom:707.445000px;}
.y242{bottom:707.668500px;}
.ya3{bottom:709.237500px;}
.y12b{bottom:713.061000px;}
.y1ac{bottom:719.919000px;}
.y34{bottom:721.552500px;}
.y179{bottom:721.647000px;}
.y6b{bottom:722.631000px;}
.y241{bottom:724.929000px;}
.yfe{bottom:726.274500px;}
.ya2{bottom:728.067000px;}
.y178{bottom:730.612500px;}
.y12a{bottom:730.993500px;}
.y33{bottom:733.353000px;}
.y17a{bottom:739.579500px;}
.y14a{bottom:740.048085px;}
.y6a{bottom:741.460500px;}
.y240{bottom:742.189500px;}
.y1ab{bottom:743.232000px;}
.ya1{bottom:746.896500px;}
.y129{bottom:748.926000px;}
.y32{bottom:749.491500px;}
.yfd{bottom:749.586000px;}
.y149{bottom:749.677950px;}
.y31{bottom:753.832500px;}
.y177{bottom:757.512000px;}
.y1aa{bottom:758.923500px;}
.y23f{bottom:759.450000px;}
.y69{bottom:760.290000px;}
.y30{bottom:765.631500px;}
.ya0{bottom:765.726000px;}
.y128{bottom:774.061500px;}
.y176{bottom:775.444500px;}
.y23e{bottom:776.709000px;}
.y68{bottom:779.119500px;}
.yfc{bottom:783.210000px;}
.y9f{bottom:784.555500px;}
.y2f{bottom:786.111000px;}
.y174{bottom:793.377000px;}
.y23d{bottom:793.969500px;}
.y1a9{bottom:795.918000px;}
.y2e{bottom:797.910000px;}
.y67{bottom:797.949000px;}
.yfb{bottom:802.039500px;}
.y173{bottom:802.344000px;}
.y9e{bottom:803.385000px;}
.y127{bottom:806.727000px;}
.y23c{bottom:811.230000px;}
.y175{bottom:811.309500px;}
.y1a8{bottom:815.211000px;}
.y2d{bottom:818.389500px;}
.y66{bottom:821.262000px;}
.y9c{bottom:822.214500px;}
.yfa{bottom:825.352500px;}
.y126{bottom:825.960000px;}
.y9d{bottom:827.638500px;}
.y23b{bottom:828.490500px;}
.y172{bottom:829.243500px;}
.y2c{bottom:830.190000px;}
.y1a7{bottom:833.143500px;}
.y9b{bottom:841.044000px;}
.y125{bottom:845.193000px;}
.y23a{bottom:845.751000px;}
.y171{bottom:847.176000px;}
.y2b{bottom:850.669500px;}
.y1a6{bottom:851.076000px;}
.yf9{bottom:858.976500px;}
.y9a{bottom:859.873500px;}
.y239{bottom:863.011500px;}
.y170{bottom:865.108500px;}
.y2a{bottom:866.808000px;}
.y1a5{bottom:869.008500px;}
.y124{bottom:876.909000px;}
.yf8{bottom:877.806000px;}
.y99{bottom:878.703000px;}
.y238{bottom:880.272000px;}
.y29{bottom:882.948000px;}
.y16f{bottom:883.041000px;}
.y1a4{bottom:886.941000px;}
.y65{bottom:894.825000px;}
.y123{bottom:895.738500px;}
.y98{bottom:897.532500px;}
.y16e{bottom:900.973500px;}
.yf7{bottom:901.119000px;}
.y1a3{bottom:904.873500px;}
.y64{bottom:914.281500px;}
.y122{bottom:914.568000px;}
.y237{bottom:914.793000px;}
.y97{bottom:916.362000px;}
.y16d{bottom:918.906000px;}
.y1a2{bottom:922.807500px;}
.yb{bottom:923.142000px;}
.y236{bottom:932.052000px;}
.y121{bottom:933.397500px;}
.yf6{bottom:934.743000px;}
.y96{bottom:935.191500px;}
.y16c{bottom:936.840000px;}
.y1a1{bottom:940.740000px;}
.ya{bottom:941.971500px;}
.y235{bottom:949.312500px;}
.y63{bottom:951.670500px;}
.y120{bottom:952.227000px;}
.yf5{bottom:953.572500px;}
.y95{bottom:954.021000px;}
.y16b{bottom:954.772500px;}
.y1a0{bottom:958.672500px;}
.y9{bottom:960.801000px;}
.y234{bottom:966.573000px;}
.y62{bottom:971.128500px;}
.yf4{bottom:972.402000px;}
.y16a{bottom:972.705000px;}
.y94{bottom:972.849000px;}
.y11f{bottom:975.540000px;}
.y19f{bottom:976.605000px;}
.y8{bottom:979.630500px;}
.y233{bottom:983.833500px;}
.y61{bottom:990.585000px;}
.yf3{bottom:991.231500px;}
.y93{bottom:991.678500px;}
.y19e{bottom:994.537500px;}
.y11e{bottom:995.713500px;}
.y169{bottom:997.840500px;}
.y7{bottom:998.460000px;}
.y232{bottom:1001.094000px;}
.y60{bottom:1010.043000px;}
.yf2{bottom:1010.061000px;}
.y92{bottom:1010.508000px;}
.y19d{bottom:1012.470000px;}
.y1ce{bottom:1014.543000px;}
.y168{bottom:1015.773000px;}
.y231{bottom:1018.354500px;}
.y91{bottom:1029.337500px;}
.y5f{bottom:1029.499500px;}
.y19c{bottom:1030.404000px;}
.yf1{bottom:1033.372500px;}
.y230{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y90{bottom:1048.167000px;}
.y167{bottom:1048.438500px;}
.y5e{bottom:1048.956000px;}
.y22f{bottom:1052.875500px;}
.y19b{bottom:1055.538000px;}
.y8f{bottom:1066.996500px;}
.y166{bottom:1067.671500px;}
.y5d{bottom:1068.414000px;}
.y5{bottom:1069.443000px;}
.y22e{bottom:1070.134500px;}
.y19a{bottom:1073.472000px;}
.y8e{bottom:1085.826000px;}
.y165{bottom:1086.904500px;}
.y22d{bottom:1087.395000px;}
.y5c{bottom:1087.870500px;}
.y4{bottom:1097.688000px;}
.y8d{bottom:1104.655500px;}
.y164{bottom:1106.137500px;}
.y5b{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y5a{bottom:1173.397500px;}
.h8{height:25.508090px;}
.hd{height:26.110157px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h16{height:33.072749px;}
.ha{height:33.112997px;}
.h9{height:34.199443px;}
.he{height:34.813397px;}
.h19{height:34.951465px;}
.h11{height:35.052500px;}
.h18{height:35.255391px;}
.h13{height:37.334628px;}
.hf{height:38.896243px;}
.h10{height:39.165235px;}
.h3{height:39.402747px;}
.h1c{height:39.418945px;}
.h12{height:39.434227px;}
.h1b{height:39.761719px;}
.h1d{height:41.482876px;}
.h30{height:41.897461px;}
.h14{height:43.217759px;}
.h22{height:43.269961px;}
.h15{height:43.516637px;}
.h5{height:43.815515px;}
.h1a{height:43.886426px;}
.h24{height:44.268047px;}
.h2{height:50.931027px;}
.h4{height:51.251918px;}
.h7{height:54.541601px;}
.h1e{height:54.774749px;}
.h23{height:62.267975px;}
.h26{height:63.896756px;}
.h6{height:77.792486px;}
.h20{height:79.079759px;}
.h28{height:79.085759px;}
.h29{height:79.378637px;}
.h1f{height:79.384637px;}
.h2b{height:84.136637px;}
.h2c{height:85.012637px;}
.h2e{height:85.018637px;}
.h2d{height:85.690637px;}
.h25{height:87.323032px;}
.h2a{height:114.953759px;}
.h27{height:115.246637px;}
.h2f{height:417.493500px;}
.h17{height:511.621500px;}
.h21{height:695.827500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:209.166223px;}
.w4{width:545.521500px;}
.w6{width:581.464500px;}
.w5{width:697.929600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x40{left:-193.533000px;}
.x43{left:-161.673000px;}
.xab{left:-106.186500px;}
.xae{left:-74.327405px;}
.x66{left:-45.854400px;}
.x68{left:-13.994400px;}
.x67{left:-4.364122px;}
.x0{left:0.000000px;}
.x41{left:2.035910px;}
.x6b{left:19.665600px;}
.x3{left:29.274117px;}
.x44{left:33.897000px;}
.x1{left:54.000000px;}
.x2{left:58.055459px;}
.x8d{left:64.170000px;}
.x8f{left:65.275500px;}
.x7d{left:68.982000px;}
.x87{left:70.401000px;}
.x7f{left:71.724000px;}
.xa6{left:75.609000px;}
.x86{left:77.962500px;}
.x85{left:79.038000px;}
.x83{left:81.183000px;}
.x5c{left:83.608500px;}
.x51{left:85.446000px;}
.x7e{left:86.451000px;}
.xac{left:89.382410px;}
.x5f{left:91.207500px;}
.x65{left:97.493400px;}
.x5b{left:98.859000px;}
.x90{left:105.690000px;}
.x61{left:111.075000px;}
.x7c{left:115.255500px;}
.x56{left:118.098000px;}
.xad{left:121.242305px;}
.x6c{left:122.354640px;}
.x60{left:123.874500px;}
.xaf{left:125.812500px;}
.x5e{left:130.105500px;}
.x72{left:136.701000px;}
.x5a{left:138.579000px;}
.x5d{left:140.887500px;}
.x59{left:142.554000px;}
.x58{left:143.593500px;}
.x52{left:145.689000px;}
.x57{left:147.411000px;}
.x69{left:149.715600px;}
.xaa{left:155.725500px;}
.xa9{left:157.824000px;}
.xa8{left:159.064500px;}
.x55{left:174.960000px;}
.x6a{left:181.575494px;}
.x53{left:194.719500px;}
.x75{left:202.510500px;}
.x81{left:219.501000px;}
.x88{left:220.518000px;}
.x80{left:223.611000px;}
.x76{left:225.487500px;}
.x91{left:227.989500px;}
.x6d{left:243.943872px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xa4{left:255.280500px;}
.x9c{left:266.322000px;}
.xa0{left:270.171000px;}
.x5{left:271.221000px;}
.x9e{left:279.795000px;}
.x9f{left:281.065500px;}
.xf{left:282.786000px;}
.x97{left:284.770500px;}
.xa2{left:286.191000px;}
.x98{left:287.512500px;}
.xc6{left:291.343500px;}
.x73{left:292.831500px;}
.xa1{left:294.828000px;}
.x9d{left:297.466500px;}
.xa3{left:299.580000px;}
.x93{left:302.104500px;}
.x31{left:303.823500px;}
.x74{left:307.234500px;}
.x7{left:309.345000px;}
.x45{left:310.627500px;}
.xbd{left:313.557000px;}
.x63{left:315.955500px;}
.x8{left:318.220500px;}
.xe{left:321.186000px;}
.xb0{left:322.203000px;}
.xa5{left:327.892500px;}
.xb1{left:329.824500px;}
.x64{left:331.977000px;}
.xc2{left:336.198000px;}
.x62{left:339.691500px;}
.xb2{left:344.769000px;}
.x77{left:359.478000px;}
.x8e{left:361.120500px;}
.x8a{left:362.137500px;}
.x78{left:363.468000px;}
.x89{left:364.857000px;}
.x9{left:370.081500px;}
.xc0{left:373.024500px;}
.x6e{left:374.712768px;}
.x6f{left:377.053507px;}
.x2d{left:382.410000px;}
.x54{left:383.673000px;}
.x2f{left:385.380000px;}
.xc1{left:387.967500px;}
.x49{left:392.947500px;}
.x10{left:394.497000px;}
.x2e{left:397.353000px;}
.xba{left:398.799000px;}
.x30{left:400.323000px;}
.x11{left:401.968500px;}
.x4b{left:405.516000px;}
.x4a{left:407.890500px;}
.x4c{left:420.460500px;}
.x4e{left:425.556000px;}
.x3b{left:430.869000px;}
.x4f{left:440.500500px;}
.x3c{left:445.813500px;}
.x46{left:448.005000px;}
.x38{left:453.489000px;}
.x95{left:461.668500px;}
.x47{left:462.949500px;}
.x96{left:466.450500px;}
.xc7{left:467.802000px;}
.x19{left:469.308000px;}
.x1a{left:476.779500px;}
.xb7{left:491.775000px;}
.xb8{left:495.436500px;}
.x3d{left:496.590000px;}
.x79{left:501.097500px;}
.x7a{left:502.135500px;}
.x8c{left:503.757000px;}
.x70{left:505.393022px;}
.x8b{left:506.476500px;}
.x82{left:507.492000px;}
.x71{left:509.353349px;}
.xb9{left:510.379500px;}
.x3e{left:511.533000px;}
.x3f{left:519.079500px;}
.x94{left:523.917000px;}
.x48{left:529.567500px;}
.x16{left:530.922000px;}
.xa{left:534.934500px;}
.x17{left:538.393500px;}
.x42{left:544.554053px;}
.xb{left:545.997000px;}
.x18{left:553.419000px;}
.x20{left:573.345000px;}
.x21{left:580.818000px;}
.x1d{left:592.147500px;}
.x99{left:597.070500px;}
.x1e{left:599.619000px;}
.xc3{left:600.634500px;}
.xc4{left:615.577500px;}
.x50{left:617.413500px;}
.x34{left:621.366000px;}
.x4d{left:627.285000px;}
.x9a{left:630.294000px;}
.x39{left:633.414000px;}
.x35{left:634.674000px;}
.x32{left:641.146500px;}
.x29{left:642.321000px;}
.x84{left:644.359500px;}
.x7b{left:645.414000px;}
.x3a{left:648.358500px;}
.x92{left:652.848000px;}
.x33{left:656.091000px;}
.x2a{left:657.265500px;}
.xc8{left:666.787500px;}
.xbb{left:680.734500px;}
.xc9{left:693.687000px;}
.xbc{left:695.679000px;}
.x36{left:699.153000px;}
.x1b{left:701.455500px;}
.x1c{left:708.927000px;}
.x37{left:714.096000px;}
.x2b{left:728.494500px;}
.xc{left:729.943500px;}
.xbe{left:732.039000px;}
.xcc{left:734.724000px;}
.xd{left:741.004500px;}
.x2c{left:743.437500px;}
.xbf{left:746.983500px;}
.x22{left:747.994500px;}
.xb3{left:749.989500px;}
.x23{left:755.466000px;}
.x24{left:760.462500px;}
.xcd{left:761.623500px;}
.xb4{left:764.932500px;}
.x25{left:767.934000px;}
.xa7{left:768.946500px;}
.x26{left:771.618000px;}
.x27{left:779.089500px;}
.x9b{left:780.997500px;}
.xc5{left:782.449500px;}
.x1f{left:783.528000px;}
.xb5{left:787.498500px;}
.xce{left:789.628500px;}
.x12{left:791.043000px;}
.x13{left:798.514500px;}
.xb6{left:802.441500px;}
.xca{left:810.400500px;}
.x28{left:817.299000px;}
.x14{left:825.501000px;}
.x15{left:832.972500px;}
.xcb{left:837.300000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.322667pt;}
.v5{vertical-align:15.999936pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:31.882667pt;}
.v6{vertical-align:36.157504pt;}
.v7{vertical-align:37.488000pt;}
.ls83{letter-spacing:-0.689376pt;}
.ls81{letter-spacing:-0.668000pt;}
.ls87{letter-spacing:-0.619904pt;}
.ls86{letter-spacing:-0.614560pt;}
.ls80{letter-spacing:-0.598528pt;}
.ls84{letter-spacing:-0.593184pt;}
.ls7e{letter-spacing:-0.582496pt;}
.ls7f{letter-spacing:-0.566464pt;}
.ls82{letter-spacing:-0.561120pt;}
.ls85{letter-spacing:-0.555776pt;}
.ls88{letter-spacing:-0.513024pt;}
.ls59{letter-spacing:-0.446400pt;}
.ls5f{letter-spacing:-0.312000pt;}
.ls33{letter-spacing:-0.197728pt;}
.ls5b{letter-spacing:-0.182400pt;}
.ls64{letter-spacing:-0.154976pt;}
.ls3d{letter-spacing:-0.144288pt;}
.ls5e{letter-spacing:-0.124800pt;}
.ls5c{letter-spacing:-0.122912pt;}
.ls7d{letter-spacing:-0.117568pt;}
.ls3e{letter-spacing:-0.112224pt;}
.ls60{letter-spacing:-0.105600pt;}
.ls63{letter-spacing:-0.101536pt;}
.ls34{letter-spacing:-0.090848pt;}
.ls40{letter-spacing:-0.080160pt;}
.ls31{letter-spacing:-0.076608pt;}
.ls7b{letter-spacing:-0.074816pt;}
.ls39{letter-spacing:-0.072000pt;}
.ls3b{letter-spacing:-0.067200pt;}
.ls3f{letter-spacing:-0.064128pt;}
.ls7c{letter-spacing:-0.042752pt;}
.ls65{letter-spacing:-0.026720pt;}
.ls3c{letter-spacing:-0.021376pt;}
.ls5d{letter-spacing:-0.019200pt;}
.ls36{letter-spacing:-0.016032pt;}
.ls3a{letter-spacing:-0.014400pt;}
.ls41{letter-spacing:-0.010688pt;}
.ls38{letter-spacing:-0.009600pt;}
.ls37{letter-spacing:-0.005344pt;}
.ls61{letter-spacing:-0.004800pt;}
.lse{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000158pt;}
.ls2f{letter-spacing:0.000387pt;}
.ls94{letter-spacing:0.000503pt;}
.ls44{letter-spacing:0.000540pt;}
.ls2e{letter-spacing:0.000957pt;}
.ls47{letter-spacing:0.001007pt;}
.lsb{letter-spacing:0.001718pt;}
.ls8a{letter-spacing:0.001843pt;}
.ls8c{letter-spacing:0.002023pt;}
.ls2d{letter-spacing:0.002108pt;}
.ls2{letter-spacing:0.002422pt;}
.ls8e{letter-spacing:0.002557pt;}
.ls30{letter-spacing:0.002613pt;}
.ls9{letter-spacing:0.003100pt;}
.ls49{letter-spacing:0.003543pt;}
.ls3{letter-spacing:0.003733pt;}
.ls23{letter-spacing:0.004800pt;}
.ls15{letter-spacing:0.008512pt;}
.ls20{letter-spacing:0.009600pt;}
.ls26{letter-spacing:0.010688pt;}
.ls1e{letter-spacing:0.014400pt;}
.ls2b{letter-spacing:0.016032pt;}
.ls24{letter-spacing:0.019200pt;}
.ls29{letter-spacing:0.021376pt;}
.ls21{letter-spacing:0.024000pt;}
.ls52{letter-spacing:0.026720pt;}
.ls19{letter-spacing:0.032064pt;}
.ls50{letter-spacing:0.033600pt;}
.ls2a{letter-spacing:0.037408pt;}
.ls54{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.042752pt;}
.ls22{letter-spacing:0.043200pt;}
.ls17{letter-spacing:0.046816pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls77{letter-spacing:0.048096pt;}
.ls1c{letter-spacing:0.052800pt;}
.ls27{letter-spacing:0.053440pt;}
.ls53{letter-spacing:0.057600pt;}
.ls32{letter-spacing:0.058784pt;}
.ls51{letter-spacing:0.062400pt;}
.ls76{letter-spacing:0.064128pt;}
.ls1f{letter-spacing:0.067200pt;}
.ls28{letter-spacing:0.069472pt;}
.ls25{letter-spacing:0.074816pt;}
.ls7a{letter-spacing:0.080160pt;}
.ls1b{letter-spacing:0.085504pt;}
.ls35{letter-spacing:0.101536pt;}
.ls62{letter-spacing:0.133600pt;}
.ls18{letter-spacing:0.157472pt;}
.ls75{letter-spacing:0.161728pt;}
.ls16{letter-spacing:0.170240pt;}
.ls5a{letter-spacing:0.196800pt;}
.ls6d{letter-spacing:0.637762pt;}
.ls73{letter-spacing:0.643096pt;}
.ls45{letter-spacing:0.797008pt;}
.lsf{letter-spacing:1.133683pt;}
.ls6{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.ls7{letter-spacing:9.298933pt;}
.lsd{letter-spacing:10.626533pt;}
.ls93{letter-spacing:11.814735pt;}
.ls67{letter-spacing:11.832550pt;}
.ls66{letter-spacing:11.837779pt;}
.ls8f{letter-spacing:11.857527pt;}
.ls79{letter-spacing:11.950302pt;}
.ls8b{letter-spacing:11.954133pt;}
.ls57{letter-spacing:11.955635pt;}
.ls12{letter-spacing:11.956267pt;}
.ls8d{letter-spacing:11.959467pt;}
.ls90{letter-spacing:11.977798pt;}
.ls92{letter-spacing:12.159833pt;}
.ls6b{letter-spacing:12.203135pt;}
.ls6a{letter-spacing:12.208577pt;}
.ls46{letter-spacing:12.533411pt;}
.ls6f{letter-spacing:12.823543pt;}
.ls78{letter-spacing:12.925361pt;}
.ls6e{letter-spacing:12.975037pt;}
.ls42{letter-spacing:13.091584pt;}
.ls13{letter-spacing:13.156267pt;}
.ls2c{letter-spacing:13.278903pt;}
.ls4{letter-spacing:13.283733pt;}
.ls91{letter-spacing:13.284016pt;}
.ls56{letter-spacing:13.286145pt;}
.ls58{letter-spacing:13.336601pt;}
.ls4f{letter-spacing:13.549136pt;}
.ls14{letter-spacing:13.694829pt;}
.ls4d{letter-spacing:13.917762pt;}
.ls4b{letter-spacing:13.923096pt;}
.ls43{letter-spacing:14.007897pt;}
.ls6c{letter-spacing:14.515420pt;}
.ls10{letter-spacing:15.597256pt;}
.ls69{letter-spacing:15.869152pt;}
.ls89{letter-spacing:16.543845pt;}
.ls11{letter-spacing:17.427321pt;}
.ls0{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsc{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.321067pt;}
.ls72{letter-spacing:132.816015pt;}
.ls70{letter-spacing:154.336015pt;}
.ls71{letter-spacing:158.745570pt;}
.ls74{letter-spacing:172.030903pt;}
.ls55{letter-spacing:262.908768pt;}
.ls68{letter-spacing:442.996237pt;}
.ls4c{letter-spacing:444.859733pt;}
.ls4e{letter-spacing:474.142400pt;}
.ls4a{letter-spacing:545.918903pt;}
.ls48{letter-spacing:790.761570pt;}
.ws5f{word-spacing:-13.461536pt;}
.ws60{word-spacing:-13.445504pt;}
.ws7{word-spacing:-13.283467pt;}
.wsb5{word-spacing:-11.955200pt;}
.ws5e{word-spacing:-10.810240pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws6{word-spacing:-10.095467pt;}
.ws12{word-spacing:-9.298400pt;}
.ws5b{word-spacing:-2.709827pt;}
.ws39{word-spacing:-2.656693pt;}
.ws6c{word-spacing:-2.603559pt;}
.ws128{word-spacing:-2.444158pt;}
.ws4f{word-spacing:-2.391024pt;}
.ws15d{word-spacing:-2.231622pt;}
.ws150{word-spacing:-2.228448pt;}
.ws151{word-spacing:-2.196384pt;}
.ws51{word-spacing:-2.125355pt;}
.ws165{word-spacing:-2.019087pt;}
.ws15c{word-spacing:-1.891776pt;}
.ws3a{word-spacing:-1.806551pt;}
.ws8c{word-spacing:-1.800000pt;}
.ws8b{word-spacing:-1.761600pt;}
.ws140{word-spacing:-1.752832pt;}
.wsf{word-spacing:-1.696326pt;}
.wscd{word-spacing:-1.528384pt;}
.ws13f{word-spacing:-1.507008pt;}
.wsce{word-spacing:-1.496320pt;}
.ws65{word-spacing:-1.482445pt;}
.wsa3{word-spacing:-1.275213pt;}
.ws5d{word-spacing:-1.222079pt;}
.wse{word-spacing:-1.175671pt;}
.ws192{word-spacing:-1.147699pt;}
.ws107{word-spacing:-1.115811pt;}
.ws106{word-spacing:-1.062677pt;}
.ws16d{word-spacing:-1.009543pt;}
.ws154{word-spacing:-0.956576pt;}
.wsc2{word-spacing:-0.956410pt;}
.ws14a{word-spacing:-0.935200pt;}
.ws5a{word-spacing:-0.903276pt;}
.ws18b{word-spacing:-0.860774pt;}
.wsa0{word-spacing:-0.850142pt;}
.ws11{word-spacing:-0.818259pt;}
.ws13a{word-spacing:-0.801600pt;}
.ws105{word-spacing:-0.797008pt;}
.ws139{word-spacing:-0.792000pt;}
.ws64{word-spacing:-0.765133pt;}
.wsb0{word-spacing:-0.743874pt;}
.ws173{word-spacing:-0.717312pt;}
.ws41{word-spacing:-0.690740pt;}
.ws20{word-spacing:-0.680115pt;}
.ws168{word-spacing:-0.637606pt;}
.ws68{word-spacing:-0.621670pt;}
.ws59{word-spacing:-0.584473pt;}
.ws83{word-spacing:-0.542400pt;}
.ws85{word-spacing:-0.523200pt;}
.ws155{word-spacing:-0.507680pt;}
.ws23{word-spacing:-0.478208pt;}
.ws3b{word-spacing:-0.478205pt;}
.ws84{word-spacing:-0.465600pt;}
.ws3c{word-spacing:-0.371937pt;}
.ws1e{word-spacing:-0.340058pt;}
.ws4c{word-spacing:-0.318803pt;}
.ws4d{word-spacing:-0.304776pt;}
.wse3{word-spacing:-0.286925pt;}
.wsd3{word-spacing:-0.277888pt;}
.ws47{word-spacing:-0.265669pt;}
.ws33{word-spacing:-0.239104pt;}
.ws13d{word-spacing:-0.213760pt;}
.ws3e{word-spacing:-0.212535pt;}
.wse2{word-spacing:-0.208416pt;}
.ws32{word-spacing:-0.191283pt;}
.ws4e{word-spacing:-0.159402pt;}
.ws24{word-spacing:-0.143462pt;}
.ws71{word-spacing:-0.123424pt;}
.ws3f{word-spacing:-0.106268pt;}
.ws66{word-spacing:-0.095642pt;}
.ws70{word-spacing:-0.085120pt;}
.ws3{word-spacing:-0.053134pt;}
.ws175{word-spacing:-0.047821pt;}
.ws15b{word-spacing:-0.042752pt;}
.ws21{word-spacing:-0.042507pt;}
.ws4a{word-spacing:-0.009903pt;}
.ws10a{word-spacing:-0.008900pt;}
.ws193{word-spacing:-0.006409pt;}
.ws183{word-spacing:-0.005905pt;}
.ws4{word-spacing:-0.005296pt;}
.ws104{word-spacing:-0.004988pt;}
.wsd{word-spacing:-0.003918pt;}
.ws9{word-spacing:-0.003392pt;}
.ws1{word-spacing:-0.003200pt;}
.ws8{word-spacing:-0.002918pt;}
.wsc{word-spacing:-0.002540pt;}
.wsa{word-spacing:-0.002400pt;}
.ws2{word-spacing:-0.002169pt;}
.ws2a{word-spacing:-0.002136pt;}
.ws17a{word-spacing:-0.002048pt;}
.ws5{word-spacing:-0.000007pt;}
.ws0{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.000346pt;}
.wsb8{word-spacing:0.000828pt;}
.wsa1{word-spacing:0.001029pt;}
.ws138{word-spacing:0.005344pt;}
.ws135{word-spacing:0.032064pt;}
.ws136{word-spacing:0.042752pt;}
.ws63{word-spacing:0.047821pt;}
.ws9b{word-spacing:0.048096pt;}
.ws37{word-spacing:0.053134pt;}
.wscc{word-spacing:0.058784pt;}
.ws15a{word-spacing:0.064128pt;}
.wsf9{word-spacing:0.095642pt;}
.ws147{word-spacing:0.096192pt;}
.ws7b{word-spacing:0.101536pt;}
.ws42{word-spacing:0.106268pt;}
.ws142{word-spacing:0.106880pt;}
.ws8e{word-spacing:0.110400pt;}
.wse0{word-spacing:0.115200pt;}
.wsfb{word-spacing:0.143462pt;}
.ws8d{word-spacing:0.144000pt;}
.wsc9{word-spacing:0.148800pt;}
.wsca{word-spacing:0.158400pt;}
.ws35{word-spacing:0.159402pt;}
.ws148{word-spacing:0.160320pt;}
.ws7c{word-spacing:0.172800pt;}
.ws7e{word-spacing:0.177600pt;}
.ws13{word-spacing:0.185968pt;}
.ws177{word-spacing:0.191283pt;}
.ws3d{word-spacing:0.212535pt;}
.ws7d{word-spacing:0.235200pt;}
.ws109{word-spacing:0.239104pt;}
.wse1{word-spacing:0.240480pt;}
.ws15{word-spacing:0.260355pt;}
.ws38{word-spacing:0.265669pt;}
.ws178{word-spacing:0.286925pt;}
.ws40{word-spacing:0.318803pt;}
.ws17f{word-spacing:0.334746pt;}
.wscb{word-spacing:0.345600pt;}
.ws13e{word-spacing:0.347360pt;}
.ws98{word-spacing:0.368736pt;}
.ws160{word-spacing:0.371937pt;}
.wsf8{word-spacing:0.382566pt;}
.wsd6{word-spacing:0.417600pt;}
.ws130{word-spacing:0.425071pt;}
.ws7f{word-spacing:0.432000pt;}
.wsd5{word-spacing:0.451200pt;}
.ws9a{word-spacing:0.470272pt;}
.ws194{word-spacing:0.478208pt;}
.wsd4{word-spacing:0.480000pt;}
.wsd7{word-spacing:0.494400pt;}
.ws141{word-spacing:0.507680pt;}
.ws2b{word-spacing:0.526029pt;}
.ws80{word-spacing:0.552000pt;}
.ws53{word-spacing:0.584473pt;}
.wsb4{word-spacing:0.594765pt;}
.ws52{word-spacing:0.637606pt;}
.ws8f{word-spacing:0.651968pt;}
.wsf3{word-spacing:0.660267pt;}
.wsee{word-spacing:0.662133pt;}
.wse7{word-spacing:0.663733pt;}
.ws101{word-spacing:0.663760pt;}
.wsec{word-spacing:0.665333pt;}
.wsbb{word-spacing:0.665600pt;}
.wsbc{word-spacing:0.667200pt;}
.wsea{word-spacing:0.667467pt;}
.wse6{word-spacing:0.669067pt;}
.ws143{word-spacing:0.678688pt;}
.wsbd{word-spacing:0.684743pt;}
.ws103{word-spacing:0.686145pt;}
.wsa8{word-spacing:0.690740pt;}
.ws76{word-spacing:0.694720pt;}
.wsa7{word-spacing:0.743874pt;}
.ws89{word-spacing:0.763200pt;}
.wsc6{word-spacing:0.772800pt;}
.wsc8{word-spacing:0.787200pt;}
.wsc7{word-spacing:0.792000pt;}
.ws161{word-spacing:0.797008pt;}
.ws27{word-spacing:0.812954pt;}
.ws75{word-spacing:0.817632pt;}
.ws56{word-spacing:0.850142pt;}
.ws16f{word-spacing:0.908595pt;}
.wsaa{word-spacing:0.956410pt;}
.ws12a{word-spacing:0.956416pt;}
.ws144{word-spacing:0.993984pt;}
.ws18d{word-spacing:1.004237pt;}
.ws12e{word-spacing:1.009543pt;}
.ws54{word-spacing:1.062677pt;}
.ws171{word-spacing:1.099878pt;}
.ws8a{word-spacing:1.123200pt;}
.ws16e{word-spacing:1.147699pt;}
.ws2f{word-spacing:1.195520pt;}
.wsa9{word-spacing:1.222079pt;}
.ws129{word-spacing:1.243341pt;}
.wsac{word-spacing:1.275213pt;}
.ws2e{word-spacing:1.291162pt;}
.wsc4{word-spacing:1.338982pt;}
.ws95{word-spacing:1.346688pt;}
.ws6a{word-spacing:1.381481pt;}
.ws6d{word-spacing:1.434614pt;}
.ws162{word-spacing:1.487748pt;}
.ws179{word-spacing:1.530266pt;}
.wsc3{word-spacing:1.578086pt;}
.ws36{word-spacing:1.594016pt;}
.ws108{word-spacing:1.599514pt;}
.ws94{word-spacing:1.613888pt;}
.wsc5{word-spacing:1.647150pt;}
.ws26{word-spacing:1.673728pt;}
.ws12f{word-spacing:1.700284pt;}
.ws30{word-spacing:1.721549pt;}
.ws15f{word-spacing:1.753418pt;}
.ws14{word-spacing:1.785293pt;}
.ws58{word-spacing:1.806551pt;}
.ws57{word-spacing:1.859685pt;}
.wsc1{word-spacing:1.912819pt;}
.ws73{word-spacing:1.945216pt;}
.ws62{word-spacing:1.960653pt;}
.ws181{word-spacing:2.008474pt;}
.ws169{word-spacing:2.019087pt;}
.ws13c{word-spacing:2.049600pt;}
.wsfc{word-spacing:2.056294pt;}
.wsa4{word-spacing:2.072221pt;}
.ws13b{word-spacing:2.078400pt;}
.ws9e{word-spacing:2.125355pt;}
.ws61{word-spacing:2.199757pt;}
.ws167{word-spacing:2.231622pt;}
.ws31{word-spacing:2.233976pt;}
.ws14e{word-spacing:2.265856pt;}
.ws14f{word-spacing:2.271200pt;}
.ws176{word-spacing:2.295398pt;}
.ws7a{word-spacing:2.329984pt;}
.ws145{word-spacing:2.335328pt;}
.ws4b{word-spacing:2.337890pt;}
.ws79{word-spacing:2.340672pt;}
.ws146{word-spacing:2.351360pt;}
.wsdd{word-spacing:2.366400pt;}
.ws88{word-spacing:2.380800pt;}
.wsdf{word-spacing:2.385600pt;}
.wsae{word-spacing:2.391024pt;}
.ws86{word-spacing:2.395200pt;}
.wsde{word-spacing:2.409600pt;}
.ws87{word-spacing:2.414400pt;}
.ws16a{word-spacing:2.444158pt;}
.ws74{word-spacing:2.522368pt;}
.ws15e{word-spacing:2.550426pt;}
.ws22{word-spacing:2.550432pt;}
.ws5c{word-spacing:2.603559pt;}
.wsd0{word-spacing:2.645280pt;}
.wscf{word-spacing:2.650624pt;}
.ws9f{word-spacing:2.656693pt;}
.wsd9{word-spacing:2.668800pt;}
.wsda{word-spacing:2.673600pt;}
.ws149{word-spacing:2.720096pt;}
.ws185{word-spacing:2.725786pt;}
.wsd8{word-spacing:2.745600pt;}
.ws184{word-spacing:2.773606pt;}
.wsdc{word-spacing:2.832000pt;}
.ws18a{word-spacing:2.862259pt;}
.ws180{word-spacing:2.864137pt;}
.ws182{word-spacing:2.865271pt;}
.ws17e{word-spacing:2.865468pt;}
.ws186{word-spacing:2.865869pt;}
.ws18f{word-spacing:2.867200pt;}
.ws189{word-spacing:2.868335pt;}
.ws187{word-spacing:2.868617pt;}
.ws191{word-spacing:2.868949pt;}
.ws17c{word-spacing:2.869248pt;}
.ws157{word-spacing:2.880416pt;}
.ws153{word-spacing:2.885760pt;}
.ws18c{word-spacing:2.917069pt;}
.ws156{word-spacing:2.917824pt;}
.ws69{word-spacing:2.964890pt;}
.wsaf{word-spacing:2.975497pt;}
.ws152{word-spacing:2.992640pt;}
.ws81{word-spacing:3.000000pt;}
.ws190{word-spacing:3.012710pt;}
.ws16b{word-spacing:3.028630pt;}
.ws82{word-spacing:3.033600pt;}
.wsdb{word-spacing:3.038400pt;}
.ws29{word-spacing:3.060531pt;}
.wsbf{word-spacing:3.081764pt;}
.ws188{word-spacing:3.108352pt;}
.ws17b{word-spacing:3.156173pt;}
.ws34{word-spacing:3.188032pt;}
.ws16c{word-spacing:3.241166pt;}
.ws17d{word-spacing:3.299635pt;}
.ws91{word-spacing:3.302592pt;}
.ws90{word-spacing:3.307936pt;}
.ws43{word-spacing:3.347434pt;}
.ws49{word-spacing:3.506835pt;}
.ws50{word-spacing:3.613103pt;}
.ws2c{word-spacing:3.634381pt;}
.ws55{word-spacing:3.666237pt;}
.ws97{word-spacing:3.719424pt;}
.ws14d{word-spacing:3.724768pt;}
.ws96{word-spacing:3.751488pt;}
.wsa5{word-spacing:3.772505pt;}
.ws44{word-spacing:3.878772pt;}
.ws78{word-spacing:3.885088pt;}
.ws92{word-spacing:3.917152pt;}
.wsfa{word-spacing:3.921306pt;}
.ws132{word-spacing:3.931906pt;}
.wsd1{word-spacing:3.943872pt;}
.ws28{word-spacing:3.969126pt;}
.ws166{word-spacing:3.985040pt;}
.ws67{word-spacing:4.016947pt;}
.ws48{word-spacing:4.038174pt;}
.wsd2{word-spacing:4.050752pt;}
.ws12b{word-spacing:4.144442pt;}
.wsa6{word-spacing:4.250709pt;}
.ws9d{word-spacing:4.259168pt;}
.ws9c{word-spacing:4.328640pt;}
.wsa2{word-spacing:4.410111pt;}
.ws134{word-spacing:4.510336pt;}
.ws159{word-spacing:4.526368pt;}
.ws158{word-spacing:4.542400pt;}
.ws174{word-spacing:4.542976pt;}
.ws131{word-spacing:4.622646pt;}
.ws46{word-spacing:4.675780pt;}
.ws137{word-spacing:4.825632pt;}
.ws99{word-spacing:4.868384pt;}
.ws6b{word-spacing:5.100851pt;}
.ws93{word-spacing:5.151616pt;}
.ws25{word-spacing:5.308109pt;}
.wsf7{word-spacing:5.366521pt;}
.ws1b{word-spacing:5.393072pt;}
.wsc0{word-spacing:5.419654pt;}
.ws2d{word-spacing:5.451571pt;}
.ws1c{word-spacing:5.467459pt;}
.ws6e{word-spacing:5.579056pt;}
.ws6f{word-spacing:5.632190pt;}
.wsad{word-spacing:5.791591pt;}
.ws77{word-spacing:5.808928pt;}
.wsb6{word-spacing:5.929779pt;}
.ws164{word-spacing:6.057261pt;}
.ws163{word-spacing:6.110395pt;}
.ws12d{word-spacing:6.163529pt;}
.ws12c{word-spacing:6.216662pt;}
.ws18e{word-spacing:6.360166pt;}
.wsab{word-spacing:6.376064pt;}
.ws14b{word-spacing:6.530368pt;}
.ws14c{word-spacing:6.567776pt;}
.ws170{word-spacing:6.790554pt;}
.ws172{word-spacing:6.981837pt;}
.wsb3{word-spacing:7.603507pt;}
.wsb1{word-spacing:7.651277pt;}
.ws19{word-spacing:7.699075pt;}
.wsb2{word-spacing:7.986074pt;}
.ws133{word-spacing:10.325056pt;}
.ws72{word-spacing:10.329312pt;}
.ws10{word-spacing:13.763148pt;}
.ws16{word-spacing:14.348669pt;}
.ws17{word-spacing:14.356730pt;}
.ws45{word-spacing:15.302554pt;}
.ws18{word-spacing:15.732893pt;}
.ws1a{word-spacing:24.399002pt;}
.ws1f{word-spacing:37.194667pt;}
.wsb{word-spacing:40.941333pt;}
.ws10c{word-spacing:98.990422pt;}
.ws115{word-spacing:101.938948pt;}
.ws110{word-spacing:106.374971pt;}
.ws117{word-spacing:133.549333pt;}
.ws116{word-spacing:133.554667pt;}
.wse5{word-spacing:136.411132pt;}
.ws120{word-spacing:137.965889pt;}
.wsf2{word-spacing:146.185857pt;}
.ws125{word-spacing:149.178963pt;}
.ws102{word-spacing:150.813909pt;}
.ws127{word-spacing:152.754667pt;}
.ws11c{word-spacing:153.588518pt;}
.ws126{word-spacing:155.097757pt;}
.ws114{word-spacing:161.152877pt;}
.ws113{word-spacing:161.154667pt;}
.wsed{word-spacing:161.243511pt;}
.ws123{word-spacing:168.328090pt;}
.ws122{word-spacing:169.016000pt;}
.ws118{word-spacing:174.279083pt;}
.wse9{word-spacing:174.528845pt;}
.wseb{word-spacing:176.261798pt;}
.ws11f{word-spacing:177.250667pt;}
.ws10d{word-spacing:177.254579pt;}
.ws112{word-spacing:181.554667pt;}
.wsef{word-spacing:182.008311pt;}
.wsf4{word-spacing:187.815778pt;}
.ws11e{word-spacing:190.537600pt;}
.ws111{word-spacing:190.538046pt;}
.ws10e{word-spacing:191.149333pt;}
.wse8{word-spacing:195.289911pt;}
.wsba{word-spacing:197.976787pt;}
.wsf1{word-spacing:198.109645pt;}
.ws124{word-spacing:203.077638pt;}
.wsfd{word-spacing:207.671001pt;}
.wsf0{word-spacing:211.391245pt;}
.ws119{word-spacing:212.641734pt;}
.ws121{word-spacing:213.325828pt;}
.ws11d{word-spacing:217.717867pt;}
.ws10f{word-spacing:234.850667pt;}
.wsf6{word-spacing:237.959778pt;}
.wsff{word-spacing:238.277798pt;}
.ws11a{word-spacing:238.536000pt;}
.ws11b{word-spacing:248.135157pt;}
.wsfe{word-spacing:251.563132pt;}
.ws100{word-spacing:278.128465pt;}
.ws10b{word-spacing:281.597097pt;}
.wsf5{word-spacing:293.824087pt;}
.wsb9{word-spacing:420.979626pt;}
.wse4{word-spacing:437.132321pt;}
.wsb7{word-spacing:727.296367pt;}
._0{margin-left:-10.616218pt;}
._83{margin-left:-6.943897pt;}
._4{margin-left:-5.897859pt;}
._7{margin-left:-4.537619pt;}
._2{margin-left:-2.920057pt;}
._5{margin-left:-1.995949pt;}
._1{margin-left:-0.956579pt;}
._6{width:0.969929pt;}
._3{width:2.655888pt;}
._42{width:8.599558pt;}
._81{width:10.113485pt;}
._8{width:11.231631pt;}
._a{width:12.193611pt;}
._10{width:13.179368pt;}
._15{width:14.572820pt;}
._1b{width:15.461955pt;}
._13{width:16.450355pt;}
._e{width:17.406771pt;}
._c{width:18.315366pt;}
._14{width:19.354900pt;}
._17{width:20.350271pt;}
._16{width:21.731751pt;}
._9{width:23.063232pt;}
._18{width:24.600980pt;}
._1c{width:25.766791pt;}
._f{width:26.961395pt;}
._19{width:28.054682pt;}
._b{width:29.011008pt;}
._d{width:30.940058pt;}
._1e{width:33.091994pt;}
._82{width:35.546557pt;}
._1d{width:38.387578pt;}
._84{width:54.993920pt;}
._57{width:72.227859pt;}
._47{width:78.425587pt;}
._56{width:82.006797pt;}
._72{width:87.245809pt;}
._51{width:92.325738pt;}
._6d{width:94.631417pt;}
._71{width:97.553779pt;}
._45{width:104.992521pt;}
._58{width:107.178201pt;}
._70{width:110.486549pt;}
._50{width:112.317419pt;}
._55{width:118.345173pt;}
._5d{width:122.101626pt;}
._53{width:130.783686pt;}
._4f{width:134.853754pt;}
._4d{width:135.863297pt;}
._6f{width:137.649869pt;}
._6b{width:140.408789pt;}
._52{width:142.464214pt;}
._6e{width:143.642082pt;}
._4b{width:145.492845pt;}
._59{width:147.765283pt;}
._5a{width:154.298103pt;}
._48{width:156.528369pt;}
._49{width:158.126387pt;}
._6c{width:161.148668pt;}
._4e{width:164.504686pt;}
._4c{width:169.165645pt;}
._46{width:170.504140pt;}
._4a{width:172.061645pt;}
._63{width:175.014534pt;}
._66{width:179.824285pt;}
._64{width:180.863437pt;}
._60{width:183.864419pt;}
._62{width:187.368948pt;}
._6a{width:188.304426pt;}
._75{width:190.538046pt;}
._54{width:195.224272pt;}
._61{width:200.504921pt;}
._7b{width:201.503729pt;}
._79{width:203.821513pt;}
._73{width:209.719372pt;}
._5f{width:214.841853pt;}
._29{width:216.515843pt;}
._5c{width:220.710370pt;}
._76{width:223.002838pt;}
._7e{width:227.485945pt;}
._38{width:229.020857pt;}
._74{width:238.558491pt;}
._5b{width:240.749550pt;}
._35{width:242.156145pt;}
._7a{width:243.603824pt;}
._3e{width:245.120132pt;}
._7d{width:248.135157pt;}
._37{width:249.038433pt;}
._69{width:249.994843pt;}
._7c{width:251.854528pt;}
._24{width:258.403599pt;}
._77{width:265.137995pt;}
._44{width:268.061630pt;}
._3b{width:271.687066pt;}
._5e{width:272.683004pt;}
._78{width:274.702091pt;}
._3d{width:276.292047pt;}
._32{width:282.158880pt;}
._27{width:284.970799pt;}
._2d{width:287.209790pt;}
._2c{width:298.253999pt;}
._23{width:302.859417pt;}
._26{width:316.112080pt;}
._43{width:317.951968pt;}
._20{width:319.087330pt;}
._3a{width:329.401319pt;}
._2a{width:340.533054pt;}
._40{width:342.679082pt;}
._65{width:344.785661pt;}
._36{width:349.695217pt;}
._39{width:358.311659pt;}
._30{width:369.253783pt;}
._68{width:380.279084pt;}
._2b{width:382.557884pt;}
._2e{width:385.179151pt;}
._3f{width:400.416819pt;}
._28{width:416.463247pt;}
._3c{width:436.760384pt;}
._25{width:446.398854pt;}
._67{width:450.256386pt;}
._34{width:451.552839pt;}
._22{width:473.582154pt;}
._33{width:478.544844pt;}
._31{width:482.614911pt;}
._2f{width:490.266188pt;}
._1f{width:537.661597pt;}
._21{width:654.895051pt;}
._11{width:832.590124pt;}
._80{width:1798.403031pt;}
._1a{width:1819.534071pt;}
._7f{width:2158.130400pt;}
._12{width:2179.383733pt;}
._41{width:2483.308704pt;}
.fs8{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:37.276537pt;}
.fs4{font-size:40.381867pt;}
.fs5{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fsb{font-size:49.829333pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:67.193600pt;}
.fs3{font-size:95.641600pt;}
.y1d2{bottom:-501.622267pt;}
.y1f0{bottom:-425.300619pt;}
.y1ef{bottom:-408.181115pt;}
.ybc{bottom:-397.910267pt;}
.y1ee{bottom:-391.061611pt;}
.y1ed{bottom:-374.022267pt;}
.y1ec{bottom:-356.898971pt;}
.y14b{bottom:-350.259600pt;}
.y1eb{bottom:-339.779467pt;}
.yd6{bottom:-331.504667pt;}
.y1ea{bottom:-322.740123pt;}
.yd5{bottom:-314.385163pt;}
.y1e9{bottom:-305.620619pt;}
.yd4{bottom:-297.345819pt;}
.y1e8{bottom:-288.581275pt;}
.y15a{bottom:-283.619544pt;}
.yd3{bottom:-280.226315pt;}
.y1e7{bottom:-271.461771pt;}
.y159{bottom:-269.619600pt;}
.y15b{bottom:-265.619616pt;}
.yd2{bottom:-263.186971pt;}
.y1e6{bottom:-254.342267pt;}
.yd1{bottom:-246.067467pt;}
.y158{bottom:-238.900400pt;}
.y1e5{bottom:-237.301771pt;}
.yd0{bottom:-228.947963pt;}
.y157{bottom:-223.460000pt;}
.y1e4{bottom:-220.182267pt;}
.ycf{bottom:-211.908619pt;}
.y156{bottom:-208.100000pt;}
.y1e3{bottom:-203.141275pt;}
.yce{bottom:-194.789115pt;}
.y155{bottom:-192.659600pt;}
.y1e2{bottom:-186.021771pt;}
.ycd{bottom:-177.749771pt;}
.y1e1{bottom:-168.902267pt;}
.y154{bottom:-160.976784pt;}
.ycc{bottom:-160.630267pt;}
.y1e0{bottom:-151.861771pt;}
.y153{bottom:-143.937440pt;}
.y1df{bottom:-134.742267pt;}
.ycb{bottom:-127.911467pt;}
.y152{bottom:-126.817936pt;}
.y1de{bottom:-117.702301pt;}
.yca{bottom:-112.471067pt;}
.y151{bottom:-109.778592pt;}
.y1dd{bottom:-100.582797pt;}
.yc9{bottom:-97.111067pt;}
.y150{bottom:-88.659104pt;}
.yc8{bottom:-81.670667pt;}
.y1dc{bottom:-79.542133pt;}
.y14f{bottom:-71.539600pt;}
.yc7{bottom:-66.310667pt;}
.yc6{bottom:-50.950667pt;}
.y1db{bottom:-46.742667pt;}
.y14e{bottom:-38.820000pt;}
.yc5{bottom:-35.590667pt;}
.y1da{bottom:-31.302267pt;}
.y14d{bottom:-23.379600pt;}
.yc4{bottom:-20.150267pt;}
.y1d9{bottom:-15.942267pt;}
.y14c{bottom:-3.459384pt;}
.yc3{bottom:-0.228491pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.044747pt;}
.y1d8{bottom:3.977733pt;}
.y3{bottom:9.767346pt;}
.yd{bottom:12.578910pt;}
.y2{bottom:27.405666pt;}
.y59{bottom:28.346667pt;}
.yf0{bottom:83.340000pt;}
.y8c{bottom:90.008000pt;}
.y28{bottom:91.398667pt;}
.y262{bottom:92.050667pt;}
.y11d{bottom:92.449333pt;}
.y203{bottom:94.573333pt;}
.y58{bottom:94.809333pt;}
.y20e{bottom:94.840000pt;}
.yef{bottom:100.077333pt;}
.y8b{bottom:106.745333pt;}
.y22c{bottom:106.756000pt;}
.y27{bottom:107.298667pt;}
.y261{bottom:107.393333pt;}
.y11c{bottom:109.186667pt;}
.y202{bottom:111.310667pt;}
.y20d{bottom:111.577333pt;}
.y57{bottom:112.104000pt;}
.yee{bottom:116.814667pt;}
.y22b{bottom:122.098667pt;}
.y1cd{bottom:122.633333pt;}
.y260{bottom:122.736000pt;}
.y26{bottom:123.200000pt;}
.y8a{bottom:123.482667pt;}
.y11b{bottom:125.924000pt;}
.y201{bottom:128.048000pt;}
.y20c{bottom:128.314667pt;}
.y56{bottom:129.400000pt;}
.y1cc{bottom:129.546667pt;}
.y199{bottom:131.954667pt;}
.yed{bottom:133.552000pt;}
.y22a{bottom:137.441333pt;}
.y25f{bottom:138.078667pt;}
.y25{bottom:139.100000pt;}
.y89{bottom:140.220000pt;}
.y147{bottom:140.514667pt;}
.y11a{bottom:142.661333pt;}
.y200{bottom:144.785333pt;}
.y20b{bottom:145.052000pt;}
.y55{bottom:146.694667pt;}
.y198{bottom:147.894667pt;}
.yec{bottom:150.289333pt;}
.y229{bottom:152.784000pt;}
.y25e{bottom:153.421333pt;}
.y1c9{bottom:153.785333pt;}
.y1cb{bottom:154.513333pt;}
.y24{bottom:155.000000pt;}
.y88{bottom:156.957333pt;}
.y146{bottom:157.252000pt;}
.y119{bottom:159.398667pt;}
.y1ff{bottom:161.522667pt;}
.y20a{bottom:161.789333pt;}
.y197{bottom:163.834667pt;}
.y54{bottom:163.989333pt;}
.yeb{bottom:167.026667pt;}
.y228{bottom:168.126667pt;}
.y25d{bottom:168.762667pt;}
.y1c8{bottom:169.726667pt;}
.y1ca{bottom:170.453333pt;}
.y23{bottom:170.901333pt;}
.y87{bottom:173.694667pt;}
.y145{bottom:173.989333pt;}
.y118{bottom:176.136000pt;}
.y1fe{bottom:178.260000pt;}
.y209{bottom:178.526667pt;}
.y195{bottom:179.774667pt;}
.y53{bottom:181.285333pt;}
.y227{bottom:183.468000pt;}
.yea{bottom:183.764000pt;}
.y25c{bottom:184.105333pt;}
.y1c5{bottom:185.666667pt;}
.y1c7{bottom:186.393333pt;}
.y22{bottom:186.801333pt;}
.y196{bottom:187.745333pt;}
.y86{bottom:190.432000pt;}
.y144{bottom:190.726667pt;}
.y117{bottom:192.873333pt;}
.y1fd{bottom:194.997333pt;}
.y208{bottom:195.264000pt;}
.y194{bottom:195.714667pt;}
.y52{bottom:198.580000pt;}
.y226{bottom:198.810667pt;}
.y25b{bottom:199.448000pt;}
.ye9{bottom:200.501333pt;}
.y1c4{bottom:201.606667pt;}
.y1c6{bottom:202.334667pt;}
.y21{bottom:202.701333pt;}
.y85{bottom:207.169333pt;}
.y143{bottom:207.464000pt;}
.y116{bottom:209.610667pt;}
.y193{bottom:211.656000pt;}
.y1fc{bottom:211.734667pt;}
.y207{bottom:212.001333pt;}
.y225{bottom:214.153333pt;}
.y25a{bottom:214.790667pt;}
.y51{bottom:215.874667pt;}
.ye8{bottom:217.238667pt;}
.y1c3{bottom:218.274667pt;}
.y163{bottom:219.756000pt;}
.y84{bottom:223.906667pt;}
.y142{bottom:224.201333pt;}
.y1c2{bottom:224.992000pt;}
.y115{bottom:226.348000pt;}
.y192{bottom:227.596000pt;}
.y1fb{bottom:228.472000pt;}
.y206{bottom:228.738667pt;}
.y224{bottom:229.496000pt;}
.y259{bottom:230.133333pt;}
.ye7{bottom:233.976000pt;}
.y162{bottom:236.493333pt;}
.y83{bottom:240.644000pt;}
.y141{bottom:240.938667pt;}
.y114{bottom:243.085333pt;}
.y223{bottom:244.838667pt;}
.y1fa{bottom:245.209333pt;}
.y205{bottom:245.476000pt;}
.y191{bottom:249.938667pt;}
.y50{bottom:250.173333pt;}
.ye6{bottom:250.713333pt;}
.y161{bottom:253.230667pt;}
.y1c1{bottom:256.557333pt;}
.y82{bottom:257.381333pt;}
.y113{bottom:259.822667pt;}
.y222{bottom:260.181333pt;}
.y258{bottom:260.818667pt;}
.y140{bottom:261.661333pt;}
.y1f9{bottom:261.946667pt;}
.y204{bottom:262.213333pt;}
.y190{bottom:265.878667pt;}
.ye5{bottom:267.450667pt;}
.y4f{bottom:268.377333pt;}
.y160{bottom:269.968000pt;}
.y1c0{bottom:272.497333pt;}
.y20{bottom:273.154667pt;}
.y81{bottom:274.118667pt;}
.y257{bottom:276.161333pt;}
.y112{bottom:276.560000pt;}
.y1f8{bottom:278.684000pt;}
.yb8{bottom:278.950667pt;}
.y221{bottom:279.508000pt;}
.y4e{bottom:282.724000pt;}
.ye4{bottom:284.186667pt;}
.y1f{bottom:289.054667pt;}
.y15f{bottom:290.690667pt;}
.y80{bottom:290.856000pt;}
.y256{bottom:291.502667pt;}
.y13f{bottom:291.549333pt;}
.y4d{bottom:293.212000pt;}
.y1bf{bottom:294.838667pt;}
.y18f{bottom:294.914667pt;}
.yb7{bottom:295.688000pt;}
.y111{bottom:297.282667pt;}
.y1f7{bottom:299.405333pt;}
.ye3{bottom:300.924000pt;}
.y1be{bottom:301.557333pt;}
.y15e{bottom:304.638667pt;}
.y1e{bottom:304.954667pt;}
.y255{bottom:306.845333pt;}
.y7f{bottom:307.593333pt;}
.y13e{bottom:308.286667pt;}
.y220{bottom:309.396000pt;}
.y4c{bottom:311.416000pt;}
.y18e{bottom:312.010667pt;}
.yb6{bottom:312.425333pt;}
.y1d{bottom:320.856000pt;}
.ye2{bottom:321.646667pt;}
.y4b{bottom:321.905333pt;}
.y254{bottom:322.188000pt;}
.y7e{bottom:324.330667pt;}
.y13d{bottom:325.024000pt;}
.y1bd{bottom:326.720000pt;}
.y110{bottom:327.169333pt;}
.y18d{bottom:329.106667pt;}
.yb5{bottom:329.162667pt;}
.y1f6{bottom:329.293333pt;}
.y21f{bottom:332.988000pt;}
.y1bc{bottom:333.288000pt;}
.y253{bottom:337.530667pt;}
.ye1{bottom:339.580000pt;}
.y15d{bottom:339.654667pt;}
.y4a{bottom:340.108000pt;}
.y7d{bottom:341.068000pt;}
.y13c{bottom:341.761333pt;}
.y10f{bottom:343.906667pt;}
.yb4{bottom:345.900000pt;}
.y1f5{bottom:346.030667pt;}
.y18c{bottom:346.201333pt;}
.y21e{bottom:348.609333pt;}
.y49{bottom:350.597333pt;}
.y252{bottom:352.873333pt;}
.y1c{bottom:354.688000pt;}
.y15c{bottom:356.750667pt;}
.y7c{bottom:357.805333pt;}
.y1bb{bottom:358.600000pt;}
.y10e{bottom:360.644000pt;}
.yb3{bottom:362.637333pt;}
.y1f4{bottom:362.768000pt;}
.y18b{bottom:363.297333pt;}
.y21d{bottom:364.230667pt;}
.y48{bottom:364.944000pt;}
.y1ba{bottom:365.318667pt;}
.ye0{bottom:366.626667pt;}
.y251{bottom:368.216000pt;}
.y1b{bottom:370.589333pt;}
.y13b{bottom:373.450667pt;}
.y7b{bottom:374.542667pt;}
.y148{bottom:376.688000pt;}
.y10d{bottom:377.381333pt;}
.y47{bottom:379.289333pt;}
.yb2{bottom:379.374667pt;}
.y21c{bottom:379.852000pt;}
.y250{bottom:383.558667pt;}
.ydf{bottom:383.722667pt;}
.y1a{bottom:386.489333pt;}
.y1d7{bottom:389.499085pt;}
.y1b9{bottom:390.481333pt;}
.y7a{bottom:391.278667pt;}
.y1f3{bottom:392.604000pt;}
.y13a{bottom:394.068000pt;}
.y10c{bottom:394.118667pt;}
.y21b{bottom:395.473333pt;}
.yb1{bottom:396.112000pt;}
.y18a{bottom:396.280000pt;}
.y1b8{bottom:397.394667pt;}
.y46{bottom:397.493333pt;}
.y24f{bottom:398.901333pt;}
.yde{bottom:400.818667pt;}
.y1d6{bottom:406.538429pt;}
.y45{bottom:407.982667pt;}
.y79{bottom:408.016000pt;}
.y1f2{bottom:409.700000pt;}
.y139{bottom:410.008000pt;}
.y10b{bottom:410.856000pt;}
.y21a{bottom:411.096000pt;}
.yb0{bottom:412.848000pt;}
.y189{bottom:413.016000pt;}
.y24e{bottom:414.244000pt;}
.ydd{bottom:417.913333pt;}
.y19{bottom:418.330667pt;}
.y1d5{bottom:423.657933pt;}
.y78{bottom:424.753333pt;}
.y138{bottom:425.948000pt;}
.y44{bottom:426.186667pt;}
.y219{bottom:426.717333pt;}
.y1f1{bottom:426.796000pt;}
.y10a{bottom:427.593333pt;}
.y1b7{bottom:428.762667pt;}
.yaf{bottom:429.585333pt;}
.y188{bottom:429.753333pt;}
.ydc{bottom:435.009333pt;}
.y43{bottom:436.674667pt;}
.y1d4{bottom:440.777437pt;}
.y77{bottom:441.490667pt;}
.y137{bottom:441.889333pt;}
.y109{bottom:444.330667pt;}
.y1b6{bottom:444.704000pt;}
.y24d{bottom:444.928000pt;}
.yae{bottom:446.322667pt;}
.y1cf{bottom:446.733333pt;}
.y18{bottom:450.170667pt;}
.y218{bottom:450.308000pt;}
.ydb{bottom:452.105333pt;}
.y42{bottom:454.878667pt;}
.y1d3{bottom:457.818117pt;}
.y136{bottom:457.829333pt;}
.y76{bottom:458.228000pt;}
.y24c{bottom:460.270667pt;}
.y108{bottom:461.068000pt;}
.y187{bottom:461.442667pt;}
.yad{bottom:463.060000pt;}
.y41{bottom:465.368000pt;}
.y217{bottom:465.929333pt;}
.y17{bottom:466.070667pt;}
.yda{bottom:469.201333pt;}
.y1b5{bottom:473.740000pt;}
.y135{bottom:473.769333pt;}
.y75{bottom:474.965333pt;}
.y24b{bottom:475.613333pt;}
.yc2{bottom:476.091581pt;}
.y107{bottom:477.805333pt;}
.yac{bottom:479.797333pt;}
.y16{bottom:481.972000pt;}
.y185{bottom:482.061333pt;}
.y40{bottom:483.570667pt;}
.yd9{bottom:486.297333pt;}
.y216{bottom:489.521333pt;}
.y134{bottom:489.709333pt;}
.y184{bottom:490.030667pt;}
.y1b4{bottom:490.836000pt;}
.y24a{bottom:490.956000pt;}
.y74{bottom:491.702667pt;}
.yc1{bottom:493.211085pt;}
.y3f{bottom:494.060000pt;}
.yab{bottom:496.534667pt;}
.y15{bottom:497.872000pt;}
.y3e{bottom:497.917333pt;}
.y186{bottom:498.001333pt;}
.y106{bottom:498.528000pt;}
.yd8{bottom:503.393333pt;}
.y215{bottom:505.142667pt;}
.y133{bottom:505.649333pt;}
.y249{bottom:506.298667pt;}
.y1d1{bottom:506.457853pt;}
.y1b3{bottom:507.930667pt;}
.y73{bottom:508.440000pt;}
.yc0{bottom:510.250429pt;}
.y3d{bottom:512.264000pt;}
.yaa{bottom:513.272000pt;}
.y14{bottom:513.772000pt;}
.y183{bottom:513.941333pt;}
.y1d0{bottom:515.017733pt;}
.yd7{bottom:520.489333pt;}
.y214{bottom:520.764000pt;}
.y132{bottom:521.590667pt;}
.y248{bottom:521.641333pt;}
.y182{bottom:521.912000pt;}
.y3c{bottom:522.752000pt;}
.y72{bottom:525.177333pt;}
.ybf{bottom:527.369933pt;}
.y105{bottom:528.416000pt;}
.y13{bottom:529.673333pt;}
.ya9{bottom:530.009333pt;}
.y213{bottom:536.385333pt;}
.y247{bottom:536.984000pt;}
.y3b{bottom:537.098667pt;}
.y131{bottom:537.530667pt;}
.y1b2{bottom:539.504000pt;}
.yb9{bottom:540.426667pt;}
.y71{bottom:541.914667pt;}
.ybe{bottom:544.489437pt;}
.y104{bottom:545.153333pt;}
.y130{bottom:545.500000pt;}
.y12{bottom:545.573333pt;}
.y181{bottom:545.821333pt;}
.ya8{bottom:546.746667pt;}
.y212{bottom:552.006667pt;}
.y246{bottom:552.325333pt;}
.y3a{bottom:555.302667pt;}
.y1b1{bottom:556.241333pt;}
.y70{bottom:558.652000pt;}
.y11{bottom:561.473333pt;}
.ybd{bottom:561.530117pt;}
.y180{bottom:561.762667pt;}
.y103{bottom:561.890667pt;}
.ya7{bottom:563.484000pt;}
.y39{bottom:565.790667pt;}
.y211{bottom:567.629333pt;}
.y245{bottom:567.668000pt;}
.y12f{bottom:569.410667pt;}
.y1b0{bottom:572.978667pt;}
.y6f{bottom:575.389333pt;}
.y10{bottom:577.374667pt;}
.y17e{bottom:577.702667pt;}
.y102{bottom:578.628000pt;}
.y38{bottom:580.137333pt;}
.ya6{bottom:580.221333pt;}
.y244{bottom:583.010667pt;}
.y210{bottom:583.250667pt;}
.y12e{bottom:585.350667pt;}
.y17d{bottom:585.672000pt;}
.y1af{bottom:589.716000pt;}
.y6e{bottom:592.126667pt;}
.yf{bottom:593.274667pt;}
.y17f{bottom:593.642667pt;}
.y37{bottom:594.484000pt;}
.y101{bottom:595.365333pt;}
.ya5{bottom:596.958667pt;}
.y243{bottom:598.353333pt;}
.y20f{bottom:598.872000pt;}
.y12d{bottom:601.950667pt;}
.y1ae{bottom:606.453333pt;}
.y6d{bottom:608.864000pt;}
.y17c{bottom:609.582667pt;}
.ybb{bottom:610.169853pt;}
.y100{bottom:612.102667pt;}
.y36{bottom:612.688000pt;}
.yc{bottom:613.160048pt;}
.ya4{bottom:613.696000pt;}
.y12c{bottom:617.890667pt;}
.yba{bottom:618.729733pt;}
.y35{bottom:623.176000pt;}
.y1ad{bottom:623.190667pt;}
.y17b{bottom:625.522667pt;}
.y6c{bottom:625.601333pt;}
.yff{bottom:628.840000pt;}
.y242{bottom:629.038667pt;}
.ya3{bottom:630.433333pt;}
.y12b{bottom:633.832000pt;}
.y1ac{bottom:639.928000pt;}
.y34{bottom:641.380000pt;}
.y179{bottom:641.464000pt;}
.y6b{bottom:642.338667pt;}
.y241{bottom:644.381333pt;}
.yfe{bottom:645.577333pt;}
.ya2{bottom:647.170667pt;}
.y178{bottom:649.433333pt;}
.y12a{bottom:649.772000pt;}
.y33{bottom:651.869333pt;}
.y17a{bottom:657.404000pt;}
.y14a{bottom:657.820520pt;}
.y6a{bottom:659.076000pt;}
.y240{bottom:659.724000pt;}
.y1ab{bottom:660.650667pt;}
.ya1{bottom:663.908000pt;}
.y129{bottom:665.712000pt;}
.y32{bottom:666.214667pt;}
.yfd{bottom:666.298667pt;}
.y149{bottom:666.380400pt;}
.y31{bottom:670.073333pt;}
.y177{bottom:673.344000pt;}
.y1aa{bottom:674.598667pt;}
.y23f{bottom:675.066667pt;}
.y69{bottom:675.813333pt;}
.y30{bottom:680.561333pt;}
.ya0{bottom:680.645333pt;}
.y128{bottom:688.054667pt;}
.y176{bottom:689.284000pt;}
.y23e{bottom:690.408000pt;}
.y68{bottom:692.550667pt;}
.yfc{bottom:696.186667pt;}
.y9f{bottom:697.382667pt;}
.y2f{bottom:698.765333pt;}
.y174{bottom:705.224000pt;}
.y23d{bottom:705.750667pt;}
.y1a9{bottom:707.482667pt;}
.y2e{bottom:709.253333pt;}
.y67{bottom:709.288000pt;}
.yfb{bottom:712.924000pt;}
.y173{bottom:713.194667pt;}
.y9e{bottom:714.120000pt;}
.y127{bottom:717.090667pt;}
.y23c{bottom:721.093333pt;}
.y175{bottom:721.164000pt;}
.y1a8{bottom:724.632000pt;}
.y2d{bottom:727.457333pt;}
.y66{bottom:730.010667pt;}
.y9c{bottom:730.857333pt;}
.yfa{bottom:733.646667pt;}
.y126{bottom:734.186667pt;}
.y9d{bottom:735.678667pt;}
.y23b{bottom:736.436000pt;}
.y172{bottom:737.105333pt;}
.y2c{bottom:737.946667pt;}
.y1a7{bottom:740.572000pt;}
.y9b{bottom:747.594667pt;}
.y125{bottom:751.282667pt;}
.y23a{bottom:751.778667pt;}
.y171{bottom:753.045333pt;}
.y2b{bottom:756.150667pt;}
.y1a6{bottom:756.512000pt;}
.yf9{bottom:763.534667pt;}
.y9a{bottom:764.332000pt;}
.y239{bottom:767.121333pt;}
.y170{bottom:768.985333pt;}
.y2a{bottom:770.496000pt;}
.y1a5{bottom:772.452000pt;}
.y124{bottom:779.474667pt;}
.yf8{bottom:780.272000pt;}
.y99{bottom:781.069333pt;}
.y238{bottom:782.464000pt;}
.y29{bottom:784.842667pt;}
.y16f{bottom:784.925333pt;}
.y1a4{bottom:788.392000pt;}
.y65{bottom:795.400000pt;}
.y123{bottom:796.212000pt;}
.y98{bottom:797.806667pt;}
.y16e{bottom:800.865333pt;}
.yf7{bottom:800.994667pt;}
.y1a3{bottom:804.332000pt;}
.y64{bottom:812.694667pt;}
.y122{bottom:812.949333pt;}
.y237{bottom:813.149333pt;}
.y97{bottom:814.544000pt;}
.y16d{bottom:816.805333pt;}
.y1a2{bottom:820.273333pt;}
.yb{bottom:820.570667pt;}
.y236{bottom:828.490667pt;}
.y121{bottom:829.686667pt;}
.yf6{bottom:830.882667pt;}
.y96{bottom:831.281333pt;}
.y16c{bottom:832.746667pt;}
.y1a1{bottom:836.213333pt;}
.ya{bottom:837.308000pt;}
.y235{bottom:843.833333pt;}
.y63{bottom:845.929333pt;}
.y120{bottom:846.424000pt;}
.yf5{bottom:847.620000pt;}
.y95{bottom:848.018667pt;}
.y16b{bottom:848.686667pt;}
.y1a0{bottom:852.153333pt;}
.y9{bottom:854.045333pt;}
.y234{bottom:859.176000pt;}
.y62{bottom:863.225333pt;}
.yf4{bottom:864.357333pt;}
.y16a{bottom:864.626667pt;}
.y94{bottom:864.754667pt;}
.y11f{bottom:867.146667pt;}
.y19f{bottom:868.093333pt;}
.y8{bottom:870.782667pt;}
.y233{bottom:874.518667pt;}
.y61{bottom:880.520000pt;}
.yf3{bottom:881.094667pt;}
.y93{bottom:881.492000pt;}
.y19e{bottom:884.033333pt;}
.y11e{bottom:885.078667pt;}
.y169{bottom:886.969333pt;}
.y7{bottom:887.520000pt;}
.y232{bottom:889.861333pt;}
.y60{bottom:897.816000pt;}
.yf2{bottom:897.832000pt;}
.y92{bottom:898.229333pt;}
.y19d{bottom:899.973333pt;}
.y1ce{bottom:901.816000pt;}
.y168{bottom:902.909333pt;}
.y231{bottom:905.204000pt;}
.y91{bottom:914.966667pt;}
.y5f{bottom:915.110667pt;}
.y19c{bottom:915.914667pt;}
.yf1{bottom:918.553333pt;}
.y230{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y90{bottom:931.704000pt;}
.y167{bottom:931.945333pt;}
.y5e{bottom:932.405333pt;}
.y22f{bottom:935.889333pt;}
.y19b{bottom:938.256000pt;}
.y8f{bottom:948.441333pt;}
.y166{bottom:949.041333pt;}
.y5d{bottom:949.701333pt;}
.y5{bottom:950.616000pt;}
.y22e{bottom:951.230667pt;}
.y19a{bottom:954.197333pt;}
.y8e{bottom:965.178667pt;}
.y165{bottom:966.137333pt;}
.y22d{bottom:966.573333pt;}
.y5c{bottom:966.996000pt;}
.y4{bottom:975.722667pt;}
.y8d{bottom:981.916000pt;}
.y164{bottom:983.233333pt;}
.y5b{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y5a{bottom:1043.020000pt;}
.h8{height:22.673858pt;}
.hd{height:23.209028pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h16{height:29.397999pt;}
.ha{height:29.433775pt;}
.h9{height:30.399505pt;}
.he{height:30.945242pt;}
.h19{height:31.067969pt;}
.h11{height:31.157778pt;}
.h18{height:31.338125pt;}
.h13{height:33.186336pt;}
.hf{height:34.574438pt;}
.h10{height:34.813542pt;}
.h3{height:35.024664pt;}
.h1c{height:35.039062pt;}
.h12{height:35.052646pt;}
.h1b{height:35.343750pt;}
.h1d{height:36.873667pt;}
.h30{height:37.242188pt;}
.h14{height:38.415786pt;}
.h22{height:38.462187pt;}
.h15{height:38.681455pt;}
.h5{height:38.947124pt;}
.h1a{height:39.010156pt;}
.h24{height:39.349375pt;}
.h2{height:45.272024pt;}
.h4{height:45.557261pt;}
.h7{height:48.481423pt;}
.h1e{height:48.688666pt;}
.h23{height:55.349311pt;}
.h26{height:56.797117pt;}
.h6{height:69.148877pt;}
.h20{height:70.293119pt;}
.h28{height:70.298452pt;}
.h29{height:70.558788pt;}
.h1f{height:70.564122pt;}
.h2b{height:74.788122pt;}
.h2c{height:75.566788pt;}
.h2e{height:75.572122pt;}
.h2d{height:76.169455pt;}
.h25{height:77.620473pt;}
.h2a{height:102.181119pt;}
.h27{height:102.441455pt;}
.h2f{height:371.105333pt;}
.h17{height:454.774667pt;}
.h21{height:618.513333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:185.925531pt;}
.w4{width:484.908000pt;}
.w6{width:516.857333pt;}
.w5{width:620.381867pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x40{left:-172.029333pt;}
.x43{left:-143.709333pt;}
.xab{left:-94.388000pt;}
.xae{left:-66.068804pt;}
.x66{left:-40.759467pt;}
.x68{left:-12.439467pt;}
.x67{left:-3.879219pt;}
.x0{left:0.000000pt;}
.x41{left:1.809698pt;}
.x6b{left:17.480533pt;}
.x3{left:26.021437pt;}
.x44{left:30.130667pt;}
.x1{left:48.000000pt;}
.x2{left:51.604853pt;}
.x8d{left:57.040000pt;}
.x8f{left:58.022667pt;}
.x7d{left:61.317333pt;}
.x87{left:62.578667pt;}
.x7f{left:63.754667pt;}
.xa6{left:67.208000pt;}
.x86{left:69.300000pt;}
.x85{left:70.256000pt;}
.x83{left:72.162667pt;}
.x5c{left:74.318667pt;}
.x51{left:75.952000pt;}
.x7e{left:76.845333pt;}
.xac{left:79.451031pt;}
.x5f{left:81.073333pt;}
.x65{left:86.660800pt;}
.x5b{left:87.874667pt;}
.x90{left:93.946667pt;}
.x61{left:98.733333pt;}
.x7c{left:102.449333pt;}
.x56{left:104.976000pt;}
.xad{left:107.770938pt;}
.x6c{left:108.759680pt;}
.x60{left:110.110667pt;}
.xaf{left:111.833333pt;}
.x5e{left:115.649333pt;}
.x72{left:121.512000pt;}
.x5a{left:123.181333pt;}
.x5d{left:125.233333pt;}
.x59{left:126.714667pt;}
.x58{left:127.638667pt;}
.x52{left:129.501333pt;}
.x57{left:131.032000pt;}
.x69{left:133.080533pt;}
.xaa{left:138.422667pt;}
.xa9{left:140.288000pt;}
.xa8{left:141.390667pt;}
.x55{left:155.520000pt;}
.x6a{left:161.400439pt;}
.x53{left:173.084000pt;}
.x75{left:180.009333pt;}
.x81{left:195.112000pt;}
.x88{left:196.016000pt;}
.x80{left:198.765333pt;}
.x76{left:200.433333pt;}
.x91{left:202.657333pt;}
.x6d{left:216.838997pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xa4{left:226.916000pt;}
.x9c{left:236.730667pt;}
.xa0{left:240.152000pt;}
.x5{left:241.085333pt;}
.x9e{left:248.706667pt;}
.x9f{left:249.836000pt;}
.xf{left:251.365333pt;}
.x97{left:253.129333pt;}
.xa2{left:254.392000pt;}
.x98{left:255.566667pt;}
.xc6{left:258.972000pt;}
.x73{left:260.294667pt;}
.xa1{left:262.069333pt;}
.x9d{left:264.414667pt;}
.xa3{left:266.293333pt;}
.x93{left:268.537333pt;}
.x31{left:270.065333pt;}
.x74{left:273.097333pt;}
.x7{left:274.973333pt;}
.x45{left:276.113333pt;}
.xbd{left:278.717333pt;}
.x63{left:280.849333pt;}
.x8{left:282.862667pt;}
.xe{left:285.498667pt;}
.xb0{left:286.402667pt;}
.xa5{left:291.460000pt;}
.xb1{left:293.177333pt;}
.x64{left:295.090667pt;}
.xc2{left:298.842667pt;}
.x62{left:301.948000pt;}
.xb2{left:306.461333pt;}
.x77{left:319.536000pt;}
.x8e{left:320.996000pt;}
.x8a{left:321.900000pt;}
.x78{left:323.082667pt;}
.x89{left:324.317333pt;}
.x9{left:328.961333pt;}
.xc0{left:331.577333pt;}
.x6e{left:333.078016pt;}
.x6f{left:335.158673pt;}
.x2d{left:339.920000pt;}
.x54{left:341.042667pt;}
.x2f{left:342.560000pt;}
.xc1{left:344.860000pt;}
.x49{left:349.286667pt;}
.x10{left:350.664000pt;}
.x2e{left:353.202667pt;}
.xba{left:354.488000pt;}
.x30{left:355.842667pt;}
.x11{left:357.305333pt;}
.x4b{left:360.458667pt;}
.x4a{left:362.569333pt;}
.x4c{left:373.742667pt;}
.x4e{left:378.272000pt;}
.x3b{left:382.994667pt;}
.x4f{left:391.556000pt;}
.x3c{left:396.278667pt;}
.x46{left:398.226667pt;}
.x38{left:403.101333pt;}
.x95{left:410.372000pt;}
.x47{left:411.510667pt;}
.x96{left:414.622667pt;}
.xc7{left:415.824000pt;}
.x19{left:417.162667pt;}
.x1a{left:423.804000pt;}
.xb7{left:437.133333pt;}
.xb8{left:440.388000pt;}
.x3d{left:441.413333pt;}
.x79{left:445.420000pt;}
.x7a{left:446.342667pt;}
.x8c{left:447.784000pt;}
.x70{left:449.238242pt;}
.x8b{left:450.201333pt;}
.x82{left:451.104000pt;}
.x71{left:452.758532pt;}
.xb9{left:453.670667pt;}
.x3e{left:454.696000pt;}
.x3f{left:461.404000pt;}
.x94{left:465.704000pt;}
.x48{left:470.726667pt;}
.x16{left:471.930667pt;}
.xa{left:475.497333pt;}
.x17{left:478.572000pt;}
.x42{left:484.048047pt;}
.xb{left:485.330667pt;}
.x18{left:491.928000pt;}
.x20{left:509.640000pt;}
.x21{left:516.282667pt;}
.x1d{left:526.353333pt;}
.x99{left:530.729333pt;}
.x1e{left:532.994667pt;}
.xc3{left:533.897333pt;}
.xc4{left:547.180000pt;}
.x50{left:548.812000pt;}
.x34{left:552.325333pt;}
.x4d{left:557.586667pt;}
.x9a{left:560.261333pt;}
.x39{left:563.034667pt;}
.x35{left:564.154667pt;}
.x32{left:569.908000pt;}
.x29{left:570.952000pt;}
.x84{left:572.764000pt;}
.x7b{left:573.701333pt;}
.x3a{left:576.318667pt;}
.x92{left:580.309333pt;}
.x33{left:583.192000pt;}
.x2a{left:584.236000pt;}
.xc8{left:592.700000pt;}
.xbb{left:605.097333pt;}
.xc9{left:616.610667pt;}
.xbc{left:618.381333pt;}
.x36{left:621.469333pt;}
.x1b{left:623.516000pt;}
.x1c{left:630.157333pt;}
.x37{left:634.752000pt;}
.x2b{left:647.550667pt;}
.xc{left:648.838667pt;}
.xbe{left:650.701333pt;}
.xcc{left:653.088000pt;}
.xd{left:658.670667pt;}
.x2c{left:660.833333pt;}
.xbf{left:663.985333pt;}
.x22{left:664.884000pt;}
.xb3{left:666.657333pt;}
.x23{left:671.525333pt;}
.x24{left:675.966667pt;}
.xcd{left:676.998667pt;}
.xb4{left:679.940000pt;}
.x25{left:682.608000pt;}
.xa7{left:683.508000pt;}
.x26{left:685.882667pt;}
.x27{left:692.524000pt;}
.x9b{left:694.220000pt;}
.xc5{left:695.510667pt;}
.x1f{left:696.469333pt;}
.xb5{left:699.998667pt;}
.xce{left:701.892000pt;}
.x12{left:703.149333pt;}
.x13{left:709.790667pt;}
.xb6{left:713.281333pt;}
.xca{left:720.356000pt;}
.x28{left:726.488000pt;}
.x14{left:733.778667pt;}
.x15{left:740.420000pt;}
.xcb{left:744.266667pt;}
}




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