
    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_e07b01231890b932146ae0b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_24717bf072d20128231384db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cdc5e2c7ca2fd31e18f3890d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_be73badfcca5f76237959580.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.226000;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_c206de3b4af222ca6049b855.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.193359;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_9a40cd5ec3ce7431a4a4aadb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_a10b84d053b80a7bcae65ed2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_69cb951c442654bca826d5a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cf4abf5021ef6914559346c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.193359;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_7885467f0fc50268432094ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_67275f7417d19c8a263028de.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_00e15bb4d45acd9c68d6e642.woff2')format("woff");}.fff{font-family:fff;line-height:0.388000;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_250c14a49f77c08445fd0f9f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_535e42601835b33df6f7f7b2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.923000;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;}
.m8{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);}
.m15{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);}
.m1a{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m10{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);}
.m19{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m20{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);}
.m6{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m13{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);}
.m2c{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m23{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);}
.m25{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);}
.m24{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);}
.m2b{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);}
.m14{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);}
.md{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);}
.m1e{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);}
.mc{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m27{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m1b{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.mf{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);}
.m1d{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);}
.m2a{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);}
.m1c{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);}
.m28{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);}
.m12{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);}
.m2{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.874000px;}
.v2{vertical-align:65.754000px;}
.ls56{letter-spacing:-1.478832px;}
.ls5b{letter-spacing:-1.325646px;}
.ls5a{letter-spacing:-1.254945px;}
.ls59{letter-spacing:-1.137110px;}
.ls58{letter-spacing:-1.031058px;}
.ls57{letter-spacing:-1.019274px;}
.ls61{letter-spacing:-1.007491px;}
.ls1c{letter-spacing:-0.805608px;}
.ls22{letter-spacing:-0.769536px;}
.ls24{letter-spacing:-0.751500px;}
.ls2c{letter-spacing:-0.745488px;}
.ls5c{letter-spacing:-0.742362px;}
.ls28{letter-spacing:-0.739476px;}
.ls26{letter-spacing:-0.733464px;}
.ls1f{letter-spacing:-0.727452px;}
.ls1e{letter-spacing:-0.709416px;}
.ls4c{letter-spacing:-0.695228px;}
.ls48{letter-spacing:-0.689336px;}
.ls4b{letter-spacing:-0.683444px;}
.ls1b{letter-spacing:-0.679356px;}
.ls54{letter-spacing:-0.677552px;}
.ls29{letter-spacing:-0.673344px;}
.ls5d{letter-spacing:-0.671661px;}
.ls21{letter-spacing:-0.667332px;}
.ls4f{letter-spacing:-0.665769px;}
.ls46{letter-spacing:-0.659877px;}
.ls1d{letter-spacing:-0.655308px;}
.ls53{letter-spacing:-0.653985px;}
.ls47{letter-spacing:-0.648094px;}
.ls2a{letter-spacing:-0.643284px;}
.ls5f{letter-spacing:-0.642202px;}
.ls55{letter-spacing:-0.636310px;}
.ls2b{letter-spacing:-0.631260px;}
.ls60{letter-spacing:-0.630418px;}
.ls4d{letter-spacing:-0.624527px;}
.ls20{letter-spacing:-0.619236px;}
.ls49{letter-spacing:-0.618635px;}
.ls27{letter-spacing:-0.613224px;}
.ls23{letter-spacing:-0.607212px;}
.ls4e{letter-spacing:-0.606851px;}
.ls5e{letter-spacing:-0.600960px;}
.ls4a{letter-spacing:-0.583284px;}
.ls16{letter-spacing:-0.445284px;}
.ls43{letter-spacing:-0.436378px;}
.ls1a{letter-spacing:-0.081000px;}
.ls52{letter-spacing:-0.070701px;}
.ls45{letter-spacing:-0.047628px;}
.ls18{letter-spacing:-0.027000px;}
.ls51{letter-spacing:-0.005892px;}
.ls19{letter-spacing:-0.005400px;}
.ls44{letter-spacing:-0.005292px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000061px;}
.ls67{letter-spacing:0.000422px;}
.ls6d{letter-spacing:0.000566px;}
.ls2{letter-spacing:0.000600px;}
.ls6c{letter-spacing:0.001155px;}
.ls72{letter-spacing:0.001746px;}
.ls63{letter-spacing:0.002460px;}
.ls73{letter-spacing:0.002544px;}
.ls6e{letter-spacing:0.002697px;}
.ls69{letter-spacing:0.002780px;}
.ls64{letter-spacing:0.002977px;}
.ls3d{letter-spacing:0.005292px;}
.lse{letter-spacing:0.005400px;}
.ls3b{letter-spacing:0.010584px;}
.ls10{letter-spacing:0.010800px;}
.ls38{letter-spacing:0.015876px;}
.lsd{letter-spacing:0.016200px;}
.ls11{letter-spacing:0.021600px;}
.ls33{letter-spacing:0.026460px;}
.ls13{letter-spacing:0.027000px;}
.ls36{letter-spacing:0.031752px;}
.lsc{letter-spacing:0.032400px;}
.ls42{letter-spacing:0.035351px;}
.ls32{letter-spacing:0.037044px;}
.ls15{letter-spacing:0.037800px;}
.ls30{letter-spacing:0.042230px;}
.ls3e{letter-spacing:0.042336px;}
.lsa{letter-spacing:0.043092px;}
.ls3c{letter-spacing:0.047628px;}
.ls12{letter-spacing:0.048600px;}
.ls37{letter-spacing:0.052920px;}
.ls14{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.058212px;}
.ls3f{letter-spacing:0.063504px;}
.lsf{letter-spacing:0.064800px;}
.ls2e{letter-spacing:0.070384px;}
.ls8{letter-spacing:0.071820px;}
.ls41{letter-spacing:0.082485px;}
.ls40{letter-spacing:0.089964px;}
.lsb{letter-spacing:0.177156px;}
.ls31{letter-spacing:0.178305px;}
.ls34{letter-spacing:0.179928px;}
.ls2f{letter-spacing:0.187690px;}
.ls9{letter-spacing:0.191520px;}
.ls25{letter-spacing:0.456912px;}
.ls17{letter-spacing:0.507600px;}
.ls35{letter-spacing:0.534492px;}
.ls5{letter-spacing:1.275394px;}
.ls39{letter-spacing:1.592892px;}
.ls0{letter-spacing:1.861130px;}
.ls71{letter-spacing:3.012422px;}
.ls50{letter-spacing:6.092080px;}
.ls66{letter-spacing:6.154090px;}
.ls1{letter-spacing:10.461300px;}
.ls2d{letter-spacing:11.859509px;}
.ls3{letter-spacing:11.954850px;}
.ls68{letter-spacing:13.391216px;}
.ls62{letter-spacing:13.448400px;}
.ls65{letter-spacing:13.454400px;}
.ls70{letter-spacing:14.085694px;}
.ls7{letter-spacing:14.943900px;}
.ls6f{letter-spacing:16.658292px;}
.ls6a{letter-spacing:18.125364px;}
.ls6b{letter-spacing:18.131157px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-79.284632px;}
.wsc9{word-spacing:-14.943900px;}
.ws67{word-spacing:-14.224392px;}
.ws12f{word-spacing:-13.449600px;}
.ws66{word-spacing:-13.419000px;}
.wsd3{word-spacing:-13.256460px;}
.ws65{word-spacing:-12.161520px;}
.ws2f{word-spacing:-11.955150px;}
.wsd2{word-spacing:-11.918290px;}
.ws6{word-spacing:-10.460700px;}
.wsca{word-spacing:-3.287658px;}
.ws82{word-spacing:-3.083400px;}
.ws81{word-spacing:-3.056400px;}
.ws11b{word-spacing:-2.929004px;}
.wsc0{word-spacing:-2.809453px;}
.ws105{word-spacing:-2.757344px;}
.ws8d{word-spacing:-2.753496px;}
.ws106{word-spacing:-2.739668px;}
.wsa0{word-spacing:-2.630126px;}
.wsc7{word-spacing:-2.570351px;}
.ws90{word-spacing:-2.410812px;}
.wsb8{word-spacing:-2.331248px;}
.ws68{word-spacing:-2.271473px;}
.ws12e{word-spacing:-2.259533px;}
.wsa2{word-spacing:-2.151922px;}
.ws10f{word-spacing:-2.079791px;}
.wsfc{word-spacing:-2.044441px;}
.ws72{word-spacing:-2.041200px;}
.wsfd{word-spacing:-2.032657px;}
.ws7d{word-spacing:-2.030400px;}
.ws7c{word-spacing:-2.003400px;}
.ws110{word-spacing:-1.985523px;}
.ws73{word-spacing:-1.976400px;}
.ws109{word-spacing:-1.956064px;}
.ws4f{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws151{word-spacing:-1.829146px;}
.wsbd{word-spacing:-1.793268px;}
.ws122{word-spacing:-1.733492px;}
.wsbe{word-spacing:-1.673717px;}
.ws26{word-spacing:-1.613941px;}
.wsfb{word-spacing:-1.437589px;}
.wsbf{word-spacing:-1.434614px;}
.wsfa{word-spacing:-1.402239px;}
.ws46{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.wsb9{word-spacing:-1.315063px;}
.wsee{word-spacing:-1.275372px;}
.ws9f{word-spacing:-1.255288px;}
.wsef{word-spacing:-1.233036px;}
.ws91{word-spacing:-1.094184px;}
.ws4e{word-spacing:-1.075961px;}
.ws10e{word-spacing:-1.048733px;}
.ws92{word-spacing:-1.040076px;}
.ws4b{word-spacing:-1.016185px;}
.ws10a{word-spacing:-1.001599px;}
.ws4c{word-spacing:-0.956410px;}
.ws42{word-spacing:-0.836858px;}
.ws54{word-spacing:-0.777083px;}
.ws10d{word-spacing:-0.765929px;}
.ws64{word-spacing:-0.717307px;}
.wsae{word-spacing:-0.669488px;}
.ws123{word-spacing:-0.657532px;}
.ws4d{word-spacing:-0.597756px;}
.ws9e{word-spacing:-0.478205px;}
.ws136{word-spacing:-0.430387px;}
.wsa1{word-spacing:-0.418429px;}
.ws14c{word-spacing:-0.416807px;}
.ws87{word-spacing:-0.366732px;}
.ws20{word-spacing:-0.358654px;}
.wsf5{word-spacing:-0.341722px;}
.ws135{word-spacing:-0.322790px;}
.ws11a{word-spacing:-0.312263px;}
.ws2c{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.276552px;}
.ws15{word-spacing:-0.268992px;}
.wsf1{word-spacing:-0.259308px;}
.ws86{word-spacing:-0.258516px;}
.ws2a{word-spacing:-0.239102px;}
.ws71{word-spacing:-0.237600px;}
.ws134{word-spacing:-0.233600px;}
.ws137{word-spacing:-0.215194px;}
.wsf0{word-spacing:-0.201096px;}
.ws3f{word-spacing:-0.179327px;}
.ws70{word-spacing:-0.178200px;}
.wsd6{word-spacing:-0.161395px;}
.ws6c{word-spacing:-0.129276px;}
.wsdd{word-spacing:-0.126690px;}
.ws24{word-spacing:-0.119551px;}
.ws157{word-spacing:-0.116133px;}
.ws133{word-spacing:-0.113684px;}
.ws132{word-spacing:-0.107597px;}
.wsac{word-spacing:-0.095641px;}
.ws13d{word-spacing:-0.074511px;}
.ws28{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.053798px;}
.wsaf{word-spacing:-0.047821px;}
.ws13c{word-spacing:-0.028800px;}
.ws156{word-spacing:-0.028435px;}
.ws142{word-spacing:-0.027389px;}
.ws155{word-spacing:-0.025526px;}
.ws139{word-spacing:-0.025459px;}
.ws140{word-spacing:-0.025440px;}
.ws143{word-spacing:-0.024941px;}
.ws159{word-spacing:-0.024528px;}
.ws154{word-spacing:-0.008308px;}
.ws138{word-spacing:-0.004474px;}
.ws160{word-spacing:-0.003571px;}
.ws13f{word-spacing:-0.001296px;}
.ws147{word-spacing:-0.000749px;}
.ws2e{word-spacing:-0.000150px;}
.ws1{word-spacing:0.000000px;}
.ws5{word-spacing:0.003300px;}
.ws75{word-spacing:0.037800px;}
.ws96{word-spacing:0.042084px;}
.ws95{word-spacing:0.048096px;}
.ws19{word-spacing:0.053798px;}
.ws103{word-spacing:0.058918px;}
.ws1f{word-spacing:0.059776px;}
.ws141{word-spacing:0.089517px;}
.ws1a{word-spacing:0.107597px;}
.wsed{word-spacing:0.116424px;}
.ws22{word-spacing:0.119551px;}
.wsec{word-spacing:0.137592px;}
.ws6e{word-spacing:0.151200px;}
.ws16{word-spacing:0.161395px;}
.ws6f{word-spacing:0.167400px;}
.wseb{word-spacing:0.174636px;}
.ws23{word-spacing:0.179327px;}
.wse2{word-spacing:0.185220px;}
.ws13e{word-spacing:0.206448px;}
.ws8{word-spacing:0.209214px;}
.wsd8{word-spacing:0.215194px;}
.ws29{word-spacing:0.239102px;}
.wsa{word-spacing:0.292900px;}
.ws37{word-spacing:0.298878px;}
.wsc8{word-spacing:0.300803px;}
.wsd7{word-spacing:0.322790px;}
.wsff{word-spacing:0.347614px;}
.ws8f{word-spacing:0.354708px;}
.ws21{word-spacing:0.358654px;}
.wsfe{word-spacing:0.365289px;}
.ws119{word-spacing:0.371181px;}
.ws8e{word-spacing:0.402804px;}
.wsc6{word-spacing:0.418429px;}
.ws25{word-spacing:0.478205px;}
.ws152{word-spacing:0.484186px;}
.wsdf{word-spacing:0.497448px;}
.wse0{word-spacing:0.508032px;}
.ws77{word-spacing:0.534600px;}
.ws17{word-spacing:0.537984px;}
.wse1{word-spacing:0.539784px;}
.ws74{word-spacing:0.545400px;}
.ws76{word-spacing:0.572400px;}
.wse3{word-spacing:0.582120px;}
.ws36{word-spacing:0.597756px;}
.ws153{word-spacing:0.645581px;}
.ws55{word-spacing:0.657532px;}
.ws9b{word-spacing:0.717307px;}
.wsf7{word-spacing:0.742362px;}
.ws84{word-spacing:0.751500px;}
.wsf6{word-spacing:0.754145px;}
.ws111{word-spacing:0.765929px;}
.ws83{word-spacing:0.775548px;}
.ws2d{word-spacing:0.777083px;}
.ws112{word-spacing:0.789496px;}
.ws2b{word-spacing:0.836858px;}
.wse9{word-spacing:0.878472px;}
.wsc4{word-spacing:0.896634px;}
.wsdc{word-spacing:0.956410px;}
.ws14{word-spacing:0.968371px;}
.wsad{word-spacing:1.004233px;}
.ws38{word-spacing:1.016185px;}
.ws3e{word-spacing:1.050518px;}
.ws9d{word-spacing:1.075961px;}
.ws50{word-spacing:1.135736px;}
.wsea{word-spacing:1.190700px;}
.wsc2{word-spacing:1.195512px;}
.wscd{word-spacing:1.255288px;}
.ws15c{word-spacing:1.344960px;}
.ws15a{word-spacing:1.358135px;}
.ws44{word-spacing:1.374839px;}
.ws101{word-spacing:1.384564px;}
.ws15b{word-spacing:1.398758px;}
.ws45{word-spacing:1.434614px;}
.ws14f{word-spacing:1.452557px;}
.ws100{word-spacing:1.467048px;}
.ws57{word-spacing:1.494390px;}
.ws11d{word-spacing:1.554166px;}
.ws131{word-spacing:1.560154px;}
.ws126{word-spacing:1.613941px;}
.ws4a{word-spacing:1.673717px;}
.wsb5{word-spacing:1.733492px;}
.ws8c{word-spacing:1.785564px;}
.ws9a{word-spacing:1.793268px;}
.wsd5{word-spacing:1.829146px;}
.ws40{word-spacing:1.853044px;}
.ws5f{word-spacing:1.886382px;}
.wse8{word-spacing:1.889244px;}
.wse6{word-spacing:1.894536px;}
.ws5e{word-spacing:1.912819px;}
.ws99{word-spacing:1.923840px;}
.wse7{word-spacing:1.931580px;}
.ws150{word-spacing:1.936742px;}
.ws52{word-spacing:1.972595px;}
.ws9{word-spacing:2.008454px;}
.ws56{word-spacing:2.032370px;}
.ws13{word-spacing:2.044339px;}
.ws5c{word-spacing:2.092146px;}
.wsce{word-spacing:2.151922px;}
.wsd4{word-spacing:2.151936px;}
.ws118{word-spacing:2.156384px;}
.wsf9{word-spacing:2.168168px;}
.ws8b{word-spacing:2.206404px;}
.ws102{word-spacing:2.215302px;}
.wsf3{word-spacing:2.238516px;}
.wsf4{word-spacing:2.249100px;}
.wsf2{word-spacing:2.275560px;}
.wsb3{word-spacing:2.331248px;}
.ws43{word-spacing:2.391024px;}
.ws58{word-spacing:2.450800px;}
.ws114{word-spacing:2.456864px;}
.ws113{word-spacing:2.474539px;}
.ws107{word-spacing:2.492214px;}
.ws117{word-spacing:2.509890px;}
.wsbc{word-spacing:2.510575px;}
.wsf8{word-spacing:2.545240px;}
.ws62{word-spacing:2.570351px;}
.ws13b{word-spacing:2.582323px;}
.ws13a{word-spacing:2.584492px;}
.ws12a{word-spacing:2.630126px;}
.ws79{word-spacing:2.683800px;}
.ws124{word-spacing:2.689902px;}
.ws78{word-spacing:2.694600px;}
.ws5b{word-spacing:2.749678px;}
.ws108{word-spacing:2.851612px;}
.ws41{word-spacing:2.869229px;}
.wsdb{word-spacing:2.929004px;}
.wsda{word-spacing:2.958912px;}
.ws49{word-spacing:2.988780px;}
.wsc1{word-spacing:3.048556px;}
.ws32{word-spacing:3.108331px;}
.ws47{word-spacing:3.168107px;}
.ws14d{word-spacing:3.174106px;}
.ws15f{word-spacing:3.216758px;}
.ws145{word-spacing:3.223430px;}
.ws15e{word-spacing:3.223526px;}
.ws161{word-spacing:3.223978px;}
.ws14e{word-spacing:3.224717px;}
.ws158{word-spacing:3.226061px;}
.wscf{word-spacing:3.227882px;}
.ws130{word-spacing:3.227904px;}
.wsd9{word-spacing:3.281702px;}
.ws88{word-spacing:3.282552px;}
.ws63{word-spacing:3.287658px;}
.ws8a{word-spacing:3.324636px;}
.ws35{word-spacing:3.347434px;}
.ws6b{word-spacing:3.407209px;}
.ws144{word-spacing:3.443098px;}
.ws53{word-spacing:3.466985px;}
.ws1b{word-spacing:3.496896px;}
.wscc{word-spacing:3.526760px;}
.ws5d{word-spacing:3.585241px;}
.ws1d{word-spacing:3.586536px;}
.ws10b{word-spacing:3.593974px;}
.ws15d{word-spacing:3.604493px;}
.ws3c{word-spacing:3.646312px;}
.ws3d{word-spacing:3.706087px;}
.ws7a{word-spacing:3.736800px;}
.ws89{word-spacing:3.745476px;}
.ws7e{word-spacing:3.747600px;}
.ws7b{word-spacing:3.753000px;}
.ws39{word-spacing:3.765863px;}
.wsa3{word-spacing:3.825638px;}
.ws3b{word-spacing:3.945190px;}
.ws51{word-spacing:4.004965px;}
.ws10c{word-spacing:4.053531px;}
.ws12c{word-spacing:4.064741px;}
.wsb4{word-spacing:4.124516px;}
.ws120{word-spacing:4.184292px;}
.ws59{word-spacing:4.363619px;}
.ws94{word-spacing:4.376736px;}
.wsb6{word-spacing:4.423394px;}
.ws93{word-spacing:4.436856px;}
.ws127{word-spacing:4.483170px;}
.wsd1{word-spacing:4.542946px;}
.ws33{word-spacing:4.602721px;}
.ws14a{word-spacing:4.667296px;}
.ws148{word-spacing:4.680461px;}
.ws149{word-spacing:4.695694px;}
.ws9c{word-spacing:4.782048px;}
.wsb1{word-spacing:4.961375px;}
.wsb2{word-spacing:5.021150px;}
.ws12{word-spacing:5.057050px;}
.ws31{word-spacing:5.080926px;}
.ws30{word-spacing:5.140702px;}
.wsb0{word-spacing:5.320028px;}
.wsba{word-spacing:5.379804px;}
.ws11f{word-spacing:5.439580px;}
.ws60{word-spacing:5.499355px;}
.ws1e{word-spacing:5.559131px;}
.ws11e{word-spacing:5.618906px;}
.ws146{word-spacing:5.702630px;}
.ws12b{word-spacing:5.738458px;}
.ws121{word-spacing:5.798233px;}
.wsa4{word-spacing:5.917784px;}
.ws125{word-spacing:5.977560px;}
.ws5a{word-spacing:6.037336px;}
.ws10{word-spacing:6.067206px;}
.ws11{word-spacing:6.150892px;}
.wsbb{word-spacing:6.156887px;}
.ws3a{word-spacing:6.216662px;}
.wsc3{word-spacing:6.276438px;}
.ws61{word-spacing:6.336214px;}
.ws104{word-spacing:6.392560px;}
.wsb7{word-spacing:6.455765px;}
.ws69{word-spacing:6.575316px;}
.ws6a{word-spacing:6.635092px;}
.ws128{word-spacing:6.694867px;}
.wsc5{word-spacing:6.754643px;}
.ws27{word-spacing:6.874194px;}
.ws115{word-spacing:7.070112px;}
.ws116{word-spacing:7.087787px;}
.wse4{word-spacing:7.207704px;}
.ws14b{word-spacing:7.208986px;}
.wse5{word-spacing:7.212996px;}
.ws129{word-spacing:7.352399px;}
.ws48{word-spacing:7.531726px;}
.ws34{word-spacing:7.711052px;}
.ws98{word-spacing:7.929828px;}
.ws97{word-spacing:7.941852px;}
.wsd0{word-spacing:7.950155px;}
.ws12d{word-spacing:8.249033px;}
.wscb{word-spacing:8.488135px;}
.ws11c{word-spacing:8.547911px;}
.wse{word-spacing:8.661460px;}
.ws1c{word-spacing:9.414720px;}
.ws7f{word-spacing:9.509400px;}
.ws80{word-spacing:9.552600px;}
.wsde{word-spacing:11.383374px;}
.ws6d{word-spacing:11.620476px;}
.wsa5{word-spacing:13.395802px;}
.ws7{word-spacing:15.481836px;}
.ws4{word-spacing:15.483541px;}
.wsd{word-spacing:17.699504px;}
.wsc{word-spacing:20.293758px;}
.wsb{word-spacing:20.312252px;}
.wsf{word-spacing:27.448877px;}
.wsaa{word-spacing:187.536806px;}
.wsa8{word-spacing:214.492291px;}
.wsa6{word-spacing:303.900864px;}
.wsa9{word-spacing:363.319958px;}
.wsa7{word-spacing:504.809875px;}
.wsab{word-spacing:523.938739px;}
._19{margin-left:-7.397040px;}
._7{margin-left:-6.070080px;}
._e{margin-left:-4.399495px;}
._4{margin-left:-3.012682px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._3{width:2.301354px;}
._27{width:5.200477px;}
._17{width:6.673291px;}
._26{width:8.307593px;}
._2{width:12.966797px;}
._9{width:15.000614px;}
._8{width:16.937357px;}
._b{width:18.590212px;}
._a{width:19.636416px;}
._c{width:21.459440px;}
._6{width:23.025715px;}
._12{width:24.874217px;}
._21{width:26.361040px;}
._13{width:28.572737px;}
._11{width:30.067127px;}
._24{width:31.411946px;}
._5{width:32.637384px;}
._10{width:34.430746px;}
._15{width:35.626258px;}
._22{width:37.928746px;}
._18{width:38.934144px;}
._14{width:41.484266px;}
._29{width:61.868160px;}
._28{width:88.767360px;}
._1a{width:124.186262px;}
._1d{width:277.432272px;}
._1c{width:279.501014px;}
._20{width:309.284208px;}
._1b{width:351.300038px;}
._1e{width:377.947469px;}
._1f{width:380.432333px;}
._d{width:655.282889px;}
._23{width:2015.295741px;}
._16{width:2080.218914px;}
._25{width:2513.301600px;}
._f{width:2537.211600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,26,56);}
.fse{font-size:35.280000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fsf{font-size:43.600200px;}
.fsb{font-size:46.922400px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fsd{font-size:52.920000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsc{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs0{font-size:101.908268px;}
.fs2{font-size:107.596800px;}
.y15a{bottom:-732.268299px;}
.y17f{bottom:-646.268395px;}
.y17e{bottom:-627.394142px;}
.y17d{bottom:-608.519889px;}
.y17c{bottom:-589.734012px;}
.y17b{bottom:-570.859759px;}
.y17a{bottom:-552.073882px;}
.ybb{bottom:-533.576550px;}
.y179{bottom:-533.199629px;}
.y178{bottom:-514.325376px;}
.y177{bottom:-495.539499px;}
.y175{bottom:-495.529674px;}
.y176{bottom:-491.835099px;}
.y174{bottom:-476.655420px;}
.yd5{bottom:-473.000457px;}
.y173{bottom:-457.781167px;}
.yd4{bottom:-453.831195px;}
.y172{bottom:-438.995290px;}
.yd3{bottom:-434.571753px;}
.y171{bottom:-420.121037px;}
.yd2{bottom:-415.312311px;}
.y170{bottom:-401.335161px;}
.yd1{bottom:-396.143049px;}
.y16f{bottom:-382.460907px;}
.yd0{bottom:-376.883607px;}
.y16e{bottom:-363.586654px;}
.ycf{bottom:-357.624165px;}
.y16d{bottom:-344.800777px;}
.yce{bottom:-338.454903px;}
.y16c{bottom:-325.926524px;}
.ycd{bottom:-319.195461px;}
.y16b{bottom:-307.140648px;}
.ycc{bottom:-300.026199px;}
.y16a{bottom:-288.266394px;}
.ycb{bottom:-280.766757px;}
.y169{bottom:-269.392141px;}
.yca{bottom:-261.507315px;}
.y168{bottom:-250.606264px;}
.yc9{bottom:-242.336550px;}
.y167{bottom:-231.732011px;}
.yc8{bottom:-223.438350px;}
.y166{bottom:-212.946135px;}
.yc7{bottom:-206.158350px;}
.y165{bottom:-189.661899px;}
.yc6{bottom:-188.787900px;}
.yc5{bottom:-171.507900px;}
.yc4{bottom:-154.227900px;}
.y164{bottom:-153.589422px;}
.yc3{bottom:-136.947900px;}
.y163{bottom:-136.566381px;}
.y162{bottom:-119.631981px;}
.yc2{bottom:-119.577450px;}
.y161{bottom:-102.608940px;}
.yc1{bottom:-102.297450px;}
.y160{bottom:-85.674540px;}
.yc0{bottom:-85.017450px;}
.y15f{bottom:-68.740140px;}
.ybf{bottom:-67.737450px;}
.y15e{bottom:-51.805740px;}
.ybe{bottom:-50.367000px;}
.y15d{bottom:-34.782699px;}
.y15c{bottom:-17.848299px;}
.ybd{bottom:-15.176550px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.y15b{bottom:4.113325px;}
.ybc{bottom:7.323090px;}
.y8{bottom:14.151273px;}
.y2{bottom:18.151745px;}
.y49{bottom:31.890000px;}
.ye4{bottom:91.408500px;}
.y1f4{bottom:97.998000px;}
.yfa{bottom:99.223500px;}
.y81{bottom:99.952500px;}
.y1f{bottom:102.823500px;}
.y22e{bottom:103.557000px;}
.y48{bottom:103.621500px;}
.y12c{bottom:105.009000px;}
.y156{bottom:106.246500px;}
.yb7{bottom:106.695000px;}
.ye3{bottom:110.238000px;}
.y1f3{bottom:115.258500px;}
.yf9{bottom:118.053000px;}
.y80{bottom:118.782000px;}
.y1e{bottom:120.711000px;}
.y22d{bottom:120.817500px;}
.y47{bottom:122.449500px;}
.y1d1{bottom:123.732000px;}
.y12b{bottom:123.838500px;}
.y155{bottom:125.076000px;}
.yb6{bottom:125.524500px;}
.ye2{bottom:129.067500px;}
.y1f2{bottom:132.519000px;}
.y19e{bottom:136.300500px;}
.yf8{bottom:136.882500px;}
.y7f{bottom:137.611500px;}
.y22c{bottom:138.078000px;}
.y1d{bottom:138.600000px;}
.y46{bottom:141.279000px;}
.y1d0{bottom:142.561500px;}
.y12a{bottom:142.668000px;}
.y154{bottom:143.905500px;}
.yb5{bottom:144.354000px;}
.ye1{bottom:147.897000px;}
.y1f1{bottom:149.779500px;}
.y19d{bottom:155.128500px;}
.y22b{bottom:155.338500px;}
.yf7{bottom:155.712000px;}
.y7e{bottom:156.441000px;}
.y1c{bottom:156.487500px;}
.y45{bottom:160.108500px;}
.y1cf{bottom:161.391000px;}
.y129{bottom:161.497500px;}
.y153{bottom:162.735000px;}
.yb4{bottom:163.183500px;}
.ye0{bottom:166.726500px;}
.y1f0{bottom:167.040000px;}
.y229{bottom:172.597500px;}
.y22a{bottom:172.599000px;}
.y19c{bottom:173.958000px;}
.y1b{bottom:174.375000px;}
.yf6{bottom:174.541500px;}
.y7d{bottom:175.270500px;}
.y44{bottom:178.938000px;}
.y1ce{bottom:180.220500px;}
.y128{bottom:180.327000px;}
.y152{bottom:181.564500px;}
.yb3{bottom:182.013000px;}
.y1ef{bottom:184.299000px;}
.ydf{bottom:185.554500px;}
.y228{bottom:189.858000px;}
.y1a{bottom:192.264000px;}
.y19b{bottom:192.787500px;}
.yf5{bottom:193.371000px;}
.y7c{bottom:194.100000px;}
.y43{bottom:197.767500px;}
.y127{bottom:199.156500px;}
.y151{bottom:200.394000px;}
.yb2{bottom:200.842500px;}
.y1ee{bottom:201.559500px;}
.y1cd{bottom:203.532000px;}
.yde{bottom:204.384000px;}
.y227{bottom:207.118500px;}
.y19{bottom:210.151500px;}
.y19a{bottom:211.617000px;}
.yf4{bottom:212.200500px;}
.y7b{bottom:212.929500px;}
.y42{bottom:216.597000px;}
.y126{bottom:217.986000px;}
.y1ed{bottom:218.820000px;}
.y150{bottom:219.223500px;}
.yb1{bottom:219.672000px;}
.ydd{bottom:223.213500px;}
.y226{bottom:224.379000px;}
.y18{bottom:228.039000px;}
.y199{bottom:230.446500px;}
.yf3{bottom:231.030000px;}
.y7a{bottom:231.759000px;}
.y41{bottom:235.426500px;}
.y1ec{bottom:236.080500px;}
.y125{bottom:236.815500px;}
.y14f{bottom:238.053000px;}
.yb0{bottom:238.501500px;}
.y225{bottom:241.639500px;}
.ydc{bottom:242.043000px;}
.y198{bottom:249.276000px;}
.yf2{bottom:249.859500px;}
.y79{bottom:250.588500px;}
.y1cc{bottom:252.847500px;}
.y1eb{bottom:253.341000px;}
.y40{bottom:254.256000px;}
.y124{bottom:255.645000px;}
.y14e{bottom:256.882500px;}
.yaf{bottom:257.331000px;}
.y224{bottom:258.900000px;}
.ydb{bottom:260.872500px;}
.y197{bottom:268.105500px;}
.yf1{bottom:268.689000px;}
.y78{bottom:269.418000px;}
.y1ea{bottom:270.601500px;}
.y1cb{bottom:271.677000px;}
.y3f{bottom:273.085500px;}
.y123{bottom:274.474500px;}
.y14d{bottom:275.712000px;}
.yae{bottom:276.160500px;}
.yda{bottom:279.702000px;}
.y196{bottom:286.935000px;}
.yf0{bottom:287.517000px;}
.y1e9{bottom:287.862000px;}
.y77{bottom:288.247500px;}
.y1ca{bottom:290.506500px;}
.y3e{bottom:291.915000px;}
.y122{bottom:293.304000px;}
.y223{bottom:293.421000px;}
.y14c{bottom:294.541500px;}
.yad{bottom:294.990000px;}
.yd9{bottom:298.531500px;}
.y1e8{bottom:305.122500px;}
.y195{bottom:305.764500px;}
.yef{bottom:306.346500px;}
.y76{bottom:307.077000px;}
.y17{bottom:307.299000px;}
.y1c9{bottom:309.336000px;}
.y222{bottom:310.681500px;}
.y3d{bottom:310.744500px;}
.y121{bottom:312.133500px;}
.y14b{bottom:313.371000px;}
.yac{bottom:313.819500px;}
.y1e7{bottom:322.383000px;}
.y194{bottom:324.594000px;}
.yd8{bottom:324.834000px;}
.yee{bottom:325.176000px;}
.y16{bottom:325.186500px;}
.y75{bottom:325.906500px;}
.y221{bottom:327.940500px;}
.y1c8{bottom:328.165500px;}
.y3c{bottom:329.574000px;}
.y120{bottom:330.963000px;}
.y14a{bottom:332.200500px;}
.yab{bottom:332.649000px;}
.y1e6{bottom:339.642000px;}
.y15{bottom:343.074000px;}
.y193{bottom:343.423500px;}
.yd7{bottom:343.663500px;}
.yed{bottom:344.005500px;}
.y74{bottom:344.736000px;}
.y220{bottom:345.201000px;}
.y1c7{bottom:346.995000px;}
.y3b{bottom:348.403500px;}
.y11f{bottom:349.792500px;}
.y149{bottom:351.030000px;}
.yaa{bottom:351.478500px;}
.y1e5{bottom:356.902500px;}
.y14{bottom:360.963000px;}
.y192{bottom:362.253000px;}
.y21f{bottom:362.461500px;}
.yec{bottom:362.835000px;}
.y73{bottom:363.564000px;}
.y1c6{bottom:365.824500px;}
.y3a{bottom:367.233000px;}
.y11e{bottom:368.622000px;}
.y148{bottom:369.859500px;}
.ya9{bottom:370.308000px;}
.y1e4{bottom:374.163000px;}
.yd6{bottom:377.229000px;}
.y159{bottom:379.140033px;}
.y21e{bottom:379.722000px;}
.y191{bottom:381.082500px;}
.yeb{bottom:381.664500px;}
.y72{bottom:382.393500px;}
.y1c5{bottom:384.654000px;}
.y39{bottom:386.062500px;}
.y11d{bottom:387.451500px;}
.y158{bottom:388.577301px;}
.y147{bottom:388.689000px;}
.ya8{bottom:389.137500px;}
.y1e3{bottom:391.423500px;}
.y21d{bottom:396.982500px;}
.y13{bottom:399.024000px;}
.yb8{bottom:399.658500px;}
.y190{bottom:399.912000px;}
.yea{bottom:400.494000px;}
.y71{bottom:401.223000px;}
.y1c4{bottom:403.483500px;}
.y38{bottom:404.892000px;}
.y11c{bottom:406.281000px;}
.y146{bottom:407.518500px;}
.ya7{bottom:407.967000px;}
.y1e2{bottom:408.684000px;}
.y21c{bottom:414.243000px;}
.y12{bottom:416.913000px;}
.y18f{bottom:418.741500px;}
.ye9{bottom:419.323500px;}
.y70{bottom:420.052500px;}
.y1c2{bottom:422.313000px;}
.y1c3{bottom:422.544000px;}
.y37{bottom:423.721500px;}
.y11b{bottom:425.110500px;}
.y1e1{bottom:425.944500px;}
.y145{bottom:426.348000px;}
.ya6{bottom:426.796500px;}
.y21b{bottom:431.503500px;}
.y11{bottom:434.800500px;}
.y18e{bottom:437.571000px;}
.ye8{bottom:438.153000px;}
.y6f{bottom:438.882000px;}
.y1c1{bottom:441.142500px;}
.y36{bottom:442.551000px;}
.y1e0{bottom:443.205000px;}
.y11a{bottom:443.940000px;}
.y144{bottom:445.177500px;}
.y1d3{bottom:445.408500px;}
.ya5{bottom:445.626000px;}
.y21a{bottom:448.764000px;}
.y18d{bottom:456.400500px;}
.ye7{bottom:456.982500px;}
.y6e{bottom:457.711500px;}
.y1c0{bottom:459.972000px;}
.y1df{bottom:460.465500px;}
.y35{bottom:461.380500px;}
.y119{bottom:462.769500px;}
.y143{bottom:464.007000px;}
.ya4{bottom:464.454000px;}
.y219{bottom:466.024500px;}
.y10{bottom:470.622000px;}
.y18c{bottom:475.230000px;}
.ye6{bottom:475.812000px;}
.y6d{bottom:476.541000px;}
.y1de{bottom:477.724500px;}
.y1bf{bottom:478.801500px;}
.y34{bottom:480.210000px;}
.y118{bottom:481.599000px;}
.y142{bottom:482.836500px;}
.ya3{bottom:483.283500px;}
.yf{bottom:488.509500px;}
.y18b{bottom:494.059500px;}
.ye5{bottom:494.641500px;}
.y1dd{bottom:494.985000px;}
.y6c{bottom:495.370500px;}
.y1be{bottom:497.631000px;}
.y33{bottom:499.039500px;}
.y117{bottom:500.428500px;}
.y218{bottom:500.544000px;}
.y141{bottom:501.666000px;}
.ya2{bottom:502.113000px;}
.y18a{bottom:512.889000px;}
.y1bd{bottom:516.460500px;}
.y1dc{bottom:516.729000px;}
.y217{bottom:517.804500px;}
.y32{bottom:517.869000px;}
.y6b{bottom:518.683500px;}
.y116{bottom:519.256500px;}
.y140{bottom:520.495500px;}
.ya1{bottom:520.942500px;}
.ye{bottom:524.329500px;}
.y1d2{bottom:524.977500px;}
.y189{bottom:531.718500px;}
.y216{bottom:535.065000px;}
.y1bc{bottom:535.290000px;}
.y31{bottom:536.698500px;}
.y6a{bottom:537.513000px;}
.y115{bottom:538.086000px;}
.y13f{bottom:539.323500px;}
.ya0{bottom:539.772000px;}
.yd{bottom:542.218500px;}
.y1db{bottom:550.353000px;}
.y215{bottom:552.325500px;}
.y1bb{bottom:554.118000px;}
.y30{bottom:555.528000px;}
.y69{bottom:556.342500px;}
.y114{bottom:556.915500px;}
.y13e{bottom:558.153000px;}
.y9f{bottom:558.601500px;}
.yc{bottom:560.106000px;}
.y188{bottom:565.284000px;}
.y214{bottom:569.586000px;}
.y1ba{bottom:572.947500px;}
.y113{bottom:575.745000px;}
.y1da{bottom:576.894000px;}
.y13d{bottom:576.982500px;}
.y9e{bottom:577.431000px;}
.yb{bottom:577.993500px;}
.y2f{bottom:578.839500px;}
.y68{bottom:579.655500px;}
.y187{bottom:584.517000px;}
.y213{bottom:586.846500px;}
.y1b9{bottom:591.777000px;}
.y1d9{bottom:594.468000px;}
.y112{bottom:594.574500px;}
.y13c{bottom:595.812000px;}
.ya{bottom:595.882500px;}
.y9d{bottom:596.260500px;}
.y67{bottom:598.485000px;}
.yba{bottom:600.513585px;}
.y186{bottom:603.750000px;}
.y212{bottom:604.107000px;}
.yb9{bottom:610.143450px;}
.y1b8{bottom:610.606500px;}
.y1d8{bottom:612.042000px;}
.y111{bottom:613.404000px;}
.y13b{bottom:614.641500px;}
.y9c{bottom:615.090000px;}
.y66{bottom:617.314500px;}
.y7{bottom:618.253464px;}
.y211{bottom:621.366000px;}
.y185{bottom:622.983000px;}
.y1b7{bottom:629.436000px;}
.y1d7{bottom:629.616000px;}
.y110{bottom:632.233500px;}
.y13a{bottom:633.471000px;}
.y9b{bottom:633.919500px;}
.y65{bottom:636.144000px;}
.y20f{bottom:638.626500px;}
.y210{bottom:638.835000px;}
.y184{bottom:642.214500px;}
.y1d6{bottom:647.190000px;}
.y1b6{bottom:648.265500px;}
.y2e{bottom:650.487000px;}
.y10f{bottom:651.063000px;}
.y139{bottom:652.300500px;}
.y9a{bottom:652.749000px;}
.y63{bottom:654.973500px;}
.y64{bottom:655.227000px;}
.y20e{bottom:655.887000px;}
.y183{bottom:661.447500px;}
.y1b5{bottom:667.095000px;}
.y10e{bottom:669.892500px;}
.y2d{bottom:669.943500px;}
.y138{bottom:671.130000px;}
.y99{bottom:671.578500px;}
.y20d{bottom:673.147500px;}
.y1d4{bottom:673.731000px;}
.y61{bottom:673.801500px;}
.y62{bottom:674.034000px;}
.y1d5{bottom:678.613500px;}
.y182{bottom:680.680500px;}
.y1b4{bottom:685.924500px;}
.y10d{bottom:688.722000px;}
.y137{bottom:689.959500px;}
.y98{bottom:690.408000px;}
.y60{bottom:692.631000px;}
.y181{bottom:699.913500px;}
.y1b3{bottom:704.754000px;}
.y2c{bottom:707.334000px;}
.y20c{bottom:707.668500px;}
.y136{bottom:708.789000px;}
.y97{bottom:709.237500px;}
.y5f{bottom:711.460500px;}
.y10c{bottom:712.035000px;}
.y180{bottom:719.146500px;}
.y1b2{bottom:723.583500px;}
.y20b{bottom:724.929000px;}
.y2b{bottom:726.790500px;}
.y135{bottom:727.618500px;}
.y96{bottom:728.067000px;}
.y5e{bottom:730.290000px;}
.y157{bottom:741.576000px;}
.y20a{bottom:742.189500px;}
.y1b1{bottom:742.413000px;}
.y2a{bottom:746.247000px;}
.y134{bottom:746.448000px;}
.y95{bottom:746.896500px;}
.y5d{bottom:749.119500px;}
.y10b{bottom:751.038000px;}
.y209{bottom:759.450000px;}
.y1b0{bottom:761.242500px;}
.y10a{bottom:765.235500px;}
.y133{bottom:765.277500px;}
.y29{bottom:765.705000px;}
.y94{bottom:765.726000px;}
.y5c{bottom:772.432500px;}
.y208{bottom:776.709000px;}
.y109{bottom:779.431500px;}
.y1af{bottom:780.072000px;}
.y132{bottom:784.107000px;}
.y93{bottom:784.555500px;}
.y28{bottom:785.161500px;}
.y108{bottom:793.629000px;}
.y207{bottom:793.969500px;}
.y1ae{bottom:798.901500px;}
.y131{bottom:802.936500px;}
.y92{bottom:803.385000px;}
.y27{bottom:804.619500px;}
.y5b{bottom:806.056500px;}
.y107{bottom:807.825000px;}
.y206{bottom:811.230000px;}
.y1ad{bottom:817.731000px;}
.y130{bottom:821.766000px;}
.y91{bottom:822.214500px;}
.y26{bottom:824.076000px;}
.y5a{bottom:824.886000px;}
.y205{bottom:828.490500px;}
.y106{bottom:830.572500px;}
.y1ac{bottom:836.560500px;}
.y105{bottom:838.792500px;}
.y12f{bottom:840.595500px;}
.y90{bottom:841.044000px;}
.y25{bottom:843.532500px;}
.y59{bottom:843.715500px;}
.y204{bottom:845.751000px;}
.y1ab{bottom:855.390000px;}
.y12e{bottom:859.425000px;}
.y8f{bottom:859.873500px;}
.y58{bottom:862.545000px;}
.y24{bottom:862.990500px;}
.y203{bottom:863.011500px;}
.y104{bottom:863.449500px;}
.y103{bottom:871.668000px;}
.y1aa{bottom:874.219500px;}
.y8e{bottom:878.703000px;}
.y102{bottom:879.888000px;}
.y202{bottom:880.272000px;}
.y57{bottom:881.374500px;}
.y23{bottom:882.447000px;}
.y12d{bottom:882.738000px;}
.y1a9{bottom:893.049000px;}
.y8d{bottom:897.532500px;}
.y56{bottom:900.204000px;}
.y22{bottom:901.903500px;}
.y1a8{bottom:911.878500px;}
.y101{bottom:912.765000px;}
.y1ff{bottom:914.791500px;}
.y200{bottom:914.793000px;}
.y201{bottom:915.001500px;}
.y8c{bottom:916.362000px;}
.y55{bottom:919.033500px;}
.y21{bottom:921.361500px;}
.y100{bottom:929.203500px;}
.y1a7{bottom:930.708000px;}
.y1fe{bottom:932.052000px;}
.y8b{bottom:935.191500px;}
.y54{bottom:937.863000px;}
.y1fd{bottom:949.312500px;}
.y1a6{bottom:949.537500px;}
.y8a{bottom:954.021000px;}
.y53{bottom:956.692500px;}
.y20{bottom:956.937000px;}
.yff{bottom:962.079000px;}
.y1fc{bottom:966.573000px;}
.y1a5{bottom:968.367000px;}
.yfe{bottom:970.299000px;}
.y89{bottom:972.849000px;}
.y52{bottom:975.522000px;}
.y1fb{bottom:983.833500px;}
.y1a4{bottom:987.196500px;}
.y88{bottom:991.678500px;}
.y51{bottom:994.351500px;}
.y6{bottom:998.460000px;}
.y1fa{bottom:1001.094000px;}
.yfd{bottom:1002.159000px;}
.y1a3{bottom:1006.026000px;}
.y87{bottom:1010.508000px;}
.y50{bottom:1013.181000px;}
.y1f9{bottom:1018.354500px;}
.yfc{bottom:1018.597500px;}
.y1a2{bottom:1024.855500px;}
.y86{bottom:1029.337500px;}
.y4f{bottom:1032.010500px;}
.y1f8{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y1a1{bottom:1043.685000px;}
.y85{bottom:1048.167000px;}
.yfb{bottom:1050.216000px;}
.y4e{bottom:1050.840000px;}
.y1f7{bottom:1052.875500px;}
.y1a0{bottom:1062.513000px;}
.y84{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4d{bottom:1069.669500px;}
.y1f6{bottom:1070.134500px;}
.y19f{bottom:1081.342500px;}
.y83{bottom:1085.826000px;}
.y1f5{bottom:1087.395000px;}
.y4c{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y82{bottom:1104.655500px;}
.y4b{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4a{bottom:1173.397500px;}
.h1f{height:19.358489px;}
.h7{height:25.508090px;}
.h1d{height:32.627109px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hc{height:38.734848px;}
.h13{height:39.057638px;}
.ha{height:39.457760px;}
.h1c{height:43.008697px;}
.h6{height:43.038432px;}
.h19{height:43.394055px;}
.h4{height:43.875290px;}
.h10{height:44.279648px;}
.hb{height:45.094826px;}
.h1b{height:48.940664px;}
.h12{height:49.939453px;}
.hd{height:50.731891px;}
.h2{height:51.022650px;}
.h1a{height:54.487273px;}
.h11{height:55.599258px;}
.he{height:56.368391px;}
.h1e{height:57.292391px;}
.h3{height:69.093806px;}
.h14{height:71.608848px;}
.h15{height:72.362026px;}
.h5{height:77.469696px;}
.h16{height:116.485891px;}
.h17{height:149.365891px;}
.h18{height:320.611410px;}
.hf{height:568.381500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:191.412200px;}
.w4{width:567.592500px;}
.w5{width:769.466502px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3c{left:-186.439500px;}
.x0{left:0.000000px;}
.x3e{left:9.130500px;}
.x3{left:29.274117px;}
.x71{left:31.608822px;}
.x3f{left:40.989547px;}
.x1{left:54.000000px;}
.x2{left:58.544190px;}
.x6f{left:61.725618px;}
.x44{left:68.317500px;}
.x54{left:85.890000px;}
.x52{left:88.942500px;}
.x45{left:92.808000px;}
.x4a{left:102.150000px;}
.x4f{left:105.115500px;}
.x43{left:138.123000px;}
.x76{left:145.260000px;}
.x8e{left:158.644500px;}
.x72{left:192.044622px;}
.x50{left:210.957000px;}
.x47{left:219.624000px;}
.x73{left:223.267319px;}
.x46{left:236.994000px;}
.x4{left:250.897500px;}
.x4b{left:251.997000px;}
.x90{left:254.437500px;}
.x8f{left:255.870000px;}
.x39{left:277.599000px;}
.x7{left:282.786000px;}
.x40{left:285.490500px;}
.x3a{left:292.543500px;}
.x55{left:298.590000px;}
.x34{left:301.888500px;}
.x21{left:308.868000px;}
.x5{left:312.165000px;}
.x56{left:313.534500px;}
.x35{left:316.833000px;}
.x36{left:320.451000px;}
.x6{left:324.483000px;}
.x6e{left:331.920000px;}
.x2e{left:336.246000px;}
.x32{left:338.796000px;}
.x2b{left:346.930500px;}
.x2a{left:348.522000px;}
.x2f{left:351.189000px;}
.x33{left:353.740500px;}
.x1a{left:365.778000px;}
.x1e{left:368.701500px;}
.x6a{left:372.292500px;}
.x8c{left:375.474000px;}
.x1b{left:380.721000px;}
.x1f{left:383.646000px;}
.x26{left:385.390500px;}
.x6b{left:387.237000px;}
.x2d{left:394.185000px;}
.x2c{left:395.896500px;}
.x27{left:400.335000px;}
.x28{left:404.074500px;}
.x49{left:410.553000px;}
.x29{left:419.019000px;}
.x48{left:423.613500px;}
.x78{left:432.742500px;}
.x14{left:442.275000px;}
.x79{left:447.685500px;}
.x7e{left:449.344500px;}
.x7a{left:451.399500px;}
.x15{left:457.219500px;}
.x57{left:464.428500px;}
.x7b{left:466.344000px;}
.x87{left:470.724000px;}
.x58{left:479.373000px;}
.x59{left:483.060000px;}
.x80{left:484.438500px;}
.x88{left:485.668500px;}
.x7f{left:495.826500px;}
.x5a{left:498.004500px;}
.x37{left:499.783500px;}
.x8{left:504.123000px;}
.x9{left:511.594500px;}
.x5b{left:513.469500px;}
.x38{left:514.728000px;}
.x24{left:516.886500px;}
.xa{left:519.015000px;}
.xb{left:526.486500px;}
.x5c{left:528.414000px;}
.x25{left:531.829500px;}
.x10{left:549.933000px;}
.x11{left:557.404500px;}
.x12{left:561.118500px;}
.x3d{left:562.627092px;}
.x13{left:568.590000px;}
.x1c{left:580.408500px;}
.x20{left:583.141500px;}
.x68{left:591.001500px;}
.x1d{left:595.353000px;}
.x60{left:601.878000px;}
.x93{left:603.094500px;}
.x92{left:604.527000px;}
.x69{left:605.946000px;}
.x30{left:608.121000px;}
.x65{left:610.318500px;}
.x61{left:616.822500px;}
.x31{left:623.065500px;}
.x5d{left:638.802000px;}
.x22{left:643.693500px;}
.x4d{left:653.815500px;}
.x41{left:655.237500px;}
.x23{left:658.638000px;}
.x74{left:665.414022px;}
.x75{left:667.883622px;}
.x42{left:670.182000px;}
.x89{left:672.583500px;}
.x81{left:678.924000px;}
.x51{left:684.123000px;}
.x77{left:686.587500px;}
.xc{left:689.164500px;}
.x5e{left:691.735500px;}
.x82{left:693.868500px;}
.xd{left:696.637500px;}
.x83{left:697.678500px;}
.x53{left:702.118500px;}
.xe{left:704.079000px;}
.x5f{left:706.680000px;}
.xf{left:711.550500px;}
.x84{left:712.623000px;}
.x4c{left:715.293000px;}
.x4e{left:718.863000px;}
.x85{left:720.244500px;}
.x64{left:733.084500px;}
.x86{left:735.187500px;}
.x8a{left:740.572500px;}
.x91{left:745.198500px;}
.x8b{left:749.670000px;}
.x66{left:752.566500px;}
.x94{left:762.061500px;}
.x67{left:767.509500px;}
.x70{left:769.310075px;}
.x62{left:772.407000px;}
.x6c{left:778.786500px;}
.x3b{left:785.683500px;}
.x63{left:787.351500px;}
.x7c{left:798.876000px;}
.x8d{left:810.400500px;}
.x7d{left:813.820500px;}
.x18{left:816.951000px;}
.x16{left:818.046000px;}
.x19{left:831.894000px;}
.x17{left:832.990500px;}
.x6d{left:837.739500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.221333pt;}
.v2{vertical-align:58.448000pt;}
.ls56{letter-spacing:-1.314517pt;}
.ls5b{letter-spacing:-1.178352pt;}
.ls5a{letter-spacing:-1.115507pt;}
.ls59{letter-spacing:-1.010764pt;}
.ls58{letter-spacing:-0.916496pt;}
.ls57{letter-spacing:-0.906022pt;}
.ls61{letter-spacing:-0.895548pt;}
.ls1c{letter-spacing:-0.716096pt;}
.ls22{letter-spacing:-0.684032pt;}
.ls24{letter-spacing:-0.668000pt;}
.ls2c{letter-spacing:-0.662656pt;}
.ls5c{letter-spacing:-0.659877pt;}
.ls28{letter-spacing:-0.657312pt;}
.ls26{letter-spacing:-0.651968pt;}
.ls1f{letter-spacing:-0.646624pt;}
.ls1e{letter-spacing:-0.630592pt;}
.ls4c{letter-spacing:-0.617980pt;}
.ls48{letter-spacing:-0.612743pt;}
.ls4b{letter-spacing:-0.607506pt;}
.ls1b{letter-spacing:-0.603872pt;}
.ls54{letter-spacing:-0.602269pt;}
.ls29{letter-spacing:-0.598528pt;}
.ls5d{letter-spacing:-0.597032pt;}
.ls21{letter-spacing:-0.593184pt;}
.ls4f{letter-spacing:-0.591795pt;}
.ls46{letter-spacing:-0.586557pt;}
.ls1d{letter-spacing:-0.582496pt;}
.ls53{letter-spacing:-0.581320pt;}
.ls47{letter-spacing:-0.576083pt;}
.ls2a{letter-spacing:-0.571808pt;}
.ls5f{letter-spacing:-0.570846pt;}
.ls55{letter-spacing:-0.565609pt;}
.ls2b{letter-spacing:-0.561120pt;}
.ls60{letter-spacing:-0.560372pt;}
.ls4d{letter-spacing:-0.555135pt;}
.ls20{letter-spacing:-0.550432pt;}
.ls49{letter-spacing:-0.549898pt;}
.ls27{letter-spacing:-0.545088pt;}
.ls23{letter-spacing:-0.539744pt;}
.ls4e{letter-spacing:-0.539423pt;}
.ls5e{letter-spacing:-0.534186pt;}
.ls4a{letter-spacing:-0.518475pt;}
.ls16{letter-spacing:-0.395808pt;}
.ls43{letter-spacing:-0.387892pt;}
.ls1a{letter-spacing:-0.072000pt;}
.ls52{letter-spacing:-0.062845pt;}
.ls45{letter-spacing:-0.042336pt;}
.ls18{letter-spacing:-0.024000pt;}
.ls51{letter-spacing:-0.005237pt;}
.ls19{letter-spacing:-0.004800pt;}
.ls44{letter-spacing:-0.004704pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000054pt;}
.ls67{letter-spacing:0.000375pt;}
.ls6d{letter-spacing:0.000503pt;}
.ls2{letter-spacing:0.000533pt;}
.ls6c{letter-spacing:0.001026pt;}
.ls72{letter-spacing:0.001552pt;}
.ls63{letter-spacing:0.002187pt;}
.ls73{letter-spacing:0.002262pt;}
.ls6e{letter-spacing:0.002397pt;}
.ls69{letter-spacing:0.002471pt;}
.ls64{letter-spacing:0.002646pt;}
.ls3d{letter-spacing:0.004704pt;}
.lse{letter-spacing:0.004800pt;}
.ls3b{letter-spacing:0.009408pt;}
.ls10{letter-spacing:0.009600pt;}
.ls38{letter-spacing:0.014112pt;}
.lsd{letter-spacing:0.014400pt;}
.ls11{letter-spacing:0.019200pt;}
.ls33{letter-spacing:0.023520pt;}
.ls13{letter-spacing:0.024000pt;}
.ls36{letter-spacing:0.028224pt;}
.lsc{letter-spacing:0.028800pt;}
.ls42{letter-spacing:0.031423pt;}
.ls32{letter-spacing:0.032928pt;}
.ls15{letter-spacing:0.033600pt;}
.ls30{letter-spacing:0.037538pt;}
.ls3e{letter-spacing:0.037632pt;}
.lsa{letter-spacing:0.038304pt;}
.ls3c{letter-spacing:0.042336pt;}
.ls12{letter-spacing:0.043200pt;}
.ls37{letter-spacing:0.047040pt;}
.ls14{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.051744pt;}
.ls3f{letter-spacing:0.056448pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2e{letter-spacing:0.062563pt;}
.ls8{letter-spacing:0.063840pt;}
.ls41{letter-spacing:0.073320pt;}
.ls40{letter-spacing:0.079968pt;}
.lsb{letter-spacing:0.157472pt;}
.ls31{letter-spacing:0.158493pt;}
.ls34{letter-spacing:0.159936pt;}
.ls2f{letter-spacing:0.166835pt;}
.ls9{letter-spacing:0.170240pt;}
.ls25{letter-spacing:0.406144pt;}
.ls17{letter-spacing:0.451200pt;}
.ls35{letter-spacing:0.475104pt;}
.ls5{letter-spacing:1.133683pt;}
.ls39{letter-spacing:1.415904pt;}
.ls0{letter-spacing:1.654338pt;}
.ls71{letter-spacing:2.677709pt;}
.ls50{letter-spacing:5.415182pt;}
.ls66{letter-spacing:5.470302pt;}
.ls1{letter-spacing:9.298933pt;}
.ls2d{letter-spacing:10.541786pt;}
.ls3{letter-spacing:10.626533pt;}
.ls68{letter-spacing:11.903303pt;}
.ls62{letter-spacing:11.954133pt;}
.ls65{letter-spacing:11.959467pt;}
.ls70{letter-spacing:12.520617pt;}
.ls7{letter-spacing:13.283467pt;}
.ls6f{letter-spacing:14.807371pt;}
.ls6a{letter-spacing:16.111434pt;}
.ls6b{letter-spacing:16.116584pt;}
.ws0{word-spacing:-70.475229pt;}
.wsc9{word-spacing:-13.283467pt;}
.ws67{word-spacing:-12.643904pt;}
.ws12f{word-spacing:-11.955200pt;}
.ws66{word-spacing:-11.928000pt;}
.wsd3{word-spacing:-11.783520pt;}
.ws65{word-spacing:-10.810240pt;}
.ws2f{word-spacing:-10.626800pt;}
.wsd2{word-spacing:-10.594035pt;}
.ws6{word-spacing:-9.298400pt;}
.wsca{word-spacing:-2.922363pt;}
.ws82{word-spacing:-2.740800pt;}
.ws81{word-spacing:-2.716800pt;}
.ws11b{word-spacing:-2.603559pt;}
.wsc0{word-spacing:-2.497292pt;}
.ws105{word-spacing:-2.450972pt;}
.ws8d{word-spacing:-2.447552pt;}
.ws106{word-spacing:-2.435261pt;}
.wsa0{word-spacing:-2.337890pt;}
.wsc7{word-spacing:-2.284756pt;}
.ws90{word-spacing:-2.142944pt;}
.wsb8{word-spacing:-2.072221pt;}
.ws68{word-spacing:-2.019087pt;}
.ws12e{word-spacing:-2.008474pt;}
.wsa2{word-spacing:-1.912819pt;}
.ws10f{word-spacing:-1.848703pt;}
.wsfc{word-spacing:-1.817281pt;}
.ws72{word-spacing:-1.814400pt;}
.wsfd{word-spacing:-1.806806pt;}
.ws7d{word-spacing:-1.804800pt;}
.ws7c{word-spacing:-1.780800pt;}
.ws110{word-spacing:-1.764909pt;}
.ws73{word-spacing:-1.756800pt;}
.ws109{word-spacing:-1.738724pt;}
.ws4f{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws151{word-spacing:-1.625907pt;}
.wsbd{word-spacing:-1.594016pt;}
.ws122{word-spacing:-1.540882pt;}
.wsbe{word-spacing:-1.487748pt;}
.ws26{word-spacing:-1.434614pt;}
.wsfb{word-spacing:-1.277857pt;}
.wsbf{word-spacing:-1.275213pt;}
.wsfa{word-spacing:-1.246435pt;}
.ws46{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.wsb9{word-spacing:-1.168945pt;}
.wsee{word-spacing:-1.133664pt;}
.ws9f{word-spacing:-1.115811pt;}
.wsef{word-spacing:-1.096032pt;}
.ws91{word-spacing:-0.972608pt;}
.ws4e{word-spacing:-0.956410pt;}
.ws10e{word-spacing:-0.932207pt;}
.ws92{word-spacing:-0.924512pt;}
.ws4b{word-spacing:-0.903276pt;}
.ws10a{word-spacing:-0.890310pt;}
.ws4c{word-spacing:-0.850142pt;}
.ws42{word-spacing:-0.743874pt;}
.ws54{word-spacing:-0.690740pt;}
.ws10d{word-spacing:-0.680826pt;}
.ws64{word-spacing:-0.637606pt;}
.wsae{word-spacing:-0.595101pt;}
.ws123{word-spacing:-0.584473pt;}
.ws4d{word-spacing:-0.531339pt;}
.ws9e{word-spacing:-0.425071pt;}
.ws136{word-spacing:-0.382566pt;}
.wsa1{word-spacing:-0.371937pt;}
.ws14c{word-spacing:-0.370495pt;}
.ws87{word-spacing:-0.325984pt;}
.ws20{word-spacing:-0.318803pt;}
.wsf5{word-spacing:-0.303753pt;}
.ws135{word-spacing:-0.286925pt;}
.ws11a{word-spacing:-0.277567pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.245824pt;}
.ws15{word-spacing:-0.239104pt;}
.wsf1{word-spacing:-0.230496pt;}
.ws86{word-spacing:-0.229792pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws71{word-spacing:-0.211200pt;}
.ws134{word-spacing:-0.207645pt;}
.ws137{word-spacing:-0.191283pt;}
.wsf0{word-spacing:-0.178752pt;}
.ws3f{word-spacing:-0.159402pt;}
.ws70{word-spacing:-0.158400pt;}
.wsd6{word-spacing:-0.143462pt;}
.ws6c{word-spacing:-0.114912pt;}
.wsdd{word-spacing:-0.112614pt;}
.ws24{word-spacing:-0.106268pt;}
.ws157{word-spacing:-0.103229pt;}
.ws133{word-spacing:-0.101053pt;}
.ws132{word-spacing:-0.095642pt;}
.wsac{word-spacing:-0.085014pt;}
.ws13d{word-spacing:-0.066232pt;}
.ws28{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.047821pt;}
.wsaf{word-spacing:-0.042507pt;}
.ws13c{word-spacing:-0.025600pt;}
.ws156{word-spacing:-0.025276pt;}
.ws142{word-spacing:-0.024346pt;}
.ws155{word-spacing:-0.022690pt;}
.ws139{word-spacing:-0.022630pt;}
.ws140{word-spacing:-0.022613pt;}
.ws143{word-spacing:-0.022170pt;}
.ws159{word-spacing:-0.021803pt;}
.ws154{word-spacing:-0.007385pt;}
.ws138{word-spacing:-0.003977pt;}
.ws160{word-spacing:-0.003174pt;}
.ws13f{word-spacing:-0.001152pt;}
.ws147{word-spacing:-0.000666pt;}
.ws2e{word-spacing:-0.000133pt;}
.ws1{word-spacing:0.000000pt;}
.ws5{word-spacing:0.002933pt;}
.ws75{word-spacing:0.033600pt;}
.ws96{word-spacing:0.037408pt;}
.ws95{word-spacing:0.042752pt;}
.ws19{word-spacing:0.047821pt;}
.ws103{word-spacing:0.052371pt;}
.ws1f{word-spacing:0.053134pt;}
.ws141{word-spacing:0.079571pt;}
.ws1a{word-spacing:0.095642pt;}
.wsed{word-spacing:0.103488pt;}
.ws22{word-spacing:0.106268pt;}
.wsec{word-spacing:0.122304pt;}
.ws6e{word-spacing:0.134400pt;}
.ws16{word-spacing:0.143462pt;}
.ws6f{word-spacing:0.148800pt;}
.wseb{word-spacing:0.155232pt;}
.ws23{word-spacing:0.159402pt;}
.wse2{word-spacing:0.164640pt;}
.ws13e{word-spacing:0.183509pt;}
.ws8{word-spacing:0.185968pt;}
.wsd8{word-spacing:0.191283pt;}
.ws29{word-spacing:0.212535pt;}
.wsa{word-spacing:0.260355pt;}
.ws37{word-spacing:0.265669pt;}
.wsc8{word-spacing:0.267380pt;}
.wsd7{word-spacing:0.286925pt;}
.wsff{word-spacing:0.308990pt;}
.ws8f{word-spacing:0.315296pt;}
.ws21{word-spacing:0.318803pt;}
.wsfe{word-spacing:0.324701pt;}
.ws119{word-spacing:0.329939pt;}
.ws8e{word-spacing:0.358048pt;}
.wsc6{word-spacing:0.371937pt;}
.ws25{word-spacing:0.425071pt;}
.ws152{word-spacing:0.430387pt;}
.wsdf{word-spacing:0.442176pt;}
.wse0{word-spacing:0.451584pt;}
.ws77{word-spacing:0.475200pt;}
.ws17{word-spacing:0.478208pt;}
.wse1{word-spacing:0.479808pt;}
.ws74{word-spacing:0.484800pt;}
.ws76{word-spacing:0.508800pt;}
.wse3{word-spacing:0.517440pt;}
.ws36{word-spacing:0.531339pt;}
.ws153{word-spacing:0.573850pt;}
.ws55{word-spacing:0.584473pt;}
.ws9b{word-spacing:0.637606pt;}
.wsf7{word-spacing:0.659877pt;}
.ws84{word-spacing:0.668000pt;}
.wsf6{word-spacing:0.670351pt;}
.ws111{word-spacing:0.680826pt;}
.ws83{word-spacing:0.689376pt;}
.ws2d{word-spacing:0.690740pt;}
.ws112{word-spacing:0.701774pt;}
.ws2b{word-spacing:0.743874pt;}
.wse9{word-spacing:0.780864pt;}
.wsc4{word-spacing:0.797008pt;}
.wsdc{word-spacing:0.850142pt;}
.ws14{word-spacing:0.860774pt;}
.wsad{word-spacing:0.892651pt;}
.ws38{word-spacing:0.903276pt;}
.ws3e{word-spacing:0.933794pt;}
.ws9d{word-spacing:0.956410pt;}
.ws50{word-spacing:1.009543pt;}
.wsea{word-spacing:1.058400pt;}
.wsc2{word-spacing:1.062677pt;}
.wscd{word-spacing:1.115811pt;}
.ws15c{word-spacing:1.195520pt;}
.ws15a{word-spacing:1.207231pt;}
.ws44{word-spacing:1.222079pt;}
.ws101{word-spacing:1.230723pt;}
.ws15b{word-spacing:1.243341pt;}
.ws45{word-spacing:1.275213pt;}
.ws14f{word-spacing:1.291162pt;}
.ws100{word-spacing:1.304043pt;}
.ws57{word-spacing:1.328347pt;}
.ws11d{word-spacing:1.381481pt;}
.ws131{word-spacing:1.386803pt;}
.ws126{word-spacing:1.434614pt;}
.ws4a{word-spacing:1.487748pt;}
.wsb5{word-spacing:1.540882pt;}
.ws8c{word-spacing:1.587168pt;}
.ws9a{word-spacing:1.594016pt;}
.wsd5{word-spacing:1.625907pt;}
.ws40{word-spacing:1.647150pt;}
.ws5f{word-spacing:1.676784pt;}
.wse8{word-spacing:1.679328pt;}
.wse6{word-spacing:1.684032pt;}
.ws5e{word-spacing:1.700284pt;}
.ws99{word-spacing:1.710080pt;}
.wse7{word-spacing:1.716960pt;}
.ws150{word-spacing:1.721549pt;}
.ws52{word-spacing:1.753418pt;}
.ws9{word-spacing:1.785293pt;}
.ws56{word-spacing:1.806551pt;}
.ws13{word-spacing:1.817190pt;}
.ws5c{word-spacing:1.859685pt;}
.wsce{word-spacing:1.912819pt;}
.wsd4{word-spacing:1.912832pt;}
.ws118{word-spacing:1.916786pt;}
.wsf9{word-spacing:1.927260pt;}
.ws8b{word-spacing:1.961248pt;}
.ws102{word-spacing:1.969157pt;}
.wsf3{word-spacing:1.989792pt;}
.wsf4{word-spacing:1.999200pt;}
.wsf2{word-spacing:2.022720pt;}
.wsb3{word-spacing:2.072221pt;}
.ws43{word-spacing:2.125355pt;}
.ws58{word-spacing:2.178489pt;}
.ws114{word-spacing:2.183879pt;}
.ws113{word-spacing:2.199590pt;}
.ws107{word-spacing:2.215302pt;}
.ws117{word-spacing:2.231013pt;}
.wsbc{word-spacing:2.231622pt;}
.wsf8{word-spacing:2.262436pt;}
.ws62{word-spacing:2.284756pt;}
.ws13b{word-spacing:2.295398pt;}
.ws13a{word-spacing:2.297326pt;}
.ws12a{word-spacing:2.337890pt;}
.ws79{word-spacing:2.385600pt;}
.ws124{word-spacing:2.391024pt;}
.ws78{word-spacing:2.395200pt;}
.ws5b{word-spacing:2.444158pt;}
.ws108{word-spacing:2.534766pt;}
.ws41{word-spacing:2.550426pt;}
.wsdb{word-spacing:2.603559pt;}
.wsda{word-spacing:2.630144pt;}
.ws49{word-spacing:2.656693pt;}
.wsc1{word-spacing:2.709827pt;}
.ws32{word-spacing:2.762961pt;}
.ws47{word-spacing:2.816095pt;}
.ws14d{word-spacing:2.821427pt;}
.ws15f{word-spacing:2.859341pt;}
.ws145{word-spacing:2.865271pt;}
.ws15e{word-spacing:2.865357pt;}
.ws161{word-spacing:2.865758pt;}
.ws14e{word-spacing:2.866415pt;}
.ws158{word-spacing:2.867610pt;}
.wscf{word-spacing:2.869229pt;}
.ws130{word-spacing:2.869248pt;}
.wsd9{word-spacing:2.917069pt;}
.ws88{word-spacing:2.917824pt;}
.ws63{word-spacing:2.922363pt;}
.ws8a{word-spacing:2.955232pt;}
.ws35{word-spacing:2.975497pt;}
.ws6b{word-spacing:3.028630pt;}
.ws144{word-spacing:3.060531pt;}
.ws53{word-spacing:3.081764pt;}
.ws1b{word-spacing:3.108352pt;}
.wscc{word-spacing:3.134898pt;}
.ws5d{word-spacing:3.186881pt;}
.ws1d{word-spacing:3.188032pt;}
.ws10b{word-spacing:3.194643pt;}
.ws15d{word-spacing:3.203994pt;}
.ws3c{word-spacing:3.241166pt;}
.ws3d{word-spacing:3.294300pt;}
.ws7a{word-spacing:3.321600pt;}
.ws89{word-spacing:3.329312pt;}
.ws7e{word-spacing:3.331200pt;}
.ws7b{word-spacing:3.336000pt;}
.ws39{word-spacing:3.347434pt;}
.wsa3{word-spacing:3.400567pt;}
.ws3b{word-spacing:3.506835pt;}
.ws51{word-spacing:3.559969pt;}
.ws10c{word-spacing:3.603139pt;}
.ws12c{word-spacing:3.613103pt;}
.wsb4{word-spacing:3.666237pt;}
.ws120{word-spacing:3.719371pt;}
.ws59{word-spacing:3.878772pt;}
.ws94{word-spacing:3.890432pt;}
.wsb6{word-spacing:3.931906pt;}
.ws93{word-spacing:3.943872pt;}
.ws127{word-spacing:3.985040pt;}
.wsd1{word-spacing:4.038174pt;}
.ws33{word-spacing:4.091308pt;}
.ws14a{word-spacing:4.148707pt;}
.ws148{word-spacing:4.160410pt;}
.ws149{word-spacing:4.173950pt;}
.ws9c{word-spacing:4.250709pt;}
.wsb1{word-spacing:4.410111pt;}
.wsb2{word-spacing:4.463245pt;}
.ws12{word-spacing:4.495155pt;}
.ws31{word-spacing:4.516379pt;}
.ws30{word-spacing:4.569513pt;}
.wsb0{word-spacing:4.728914pt;}
.wsba{word-spacing:4.782048pt;}
.ws11f{word-spacing:4.835182pt;}
.ws60{word-spacing:4.888316pt;}
.ws1e{word-spacing:4.941450pt;}
.ws11e{word-spacing:4.994583pt;}
.ws146{word-spacing:5.069005pt;}
.ws12b{word-spacing:5.100851pt;}
.ws121{word-spacing:5.153985pt;}
.wsa4{word-spacing:5.260253pt;}
.ws125{word-spacing:5.313387pt;}
.ws5a{word-spacing:5.366521pt;}
.ws10{word-spacing:5.393072pt;}
.ws11{word-spacing:5.467459pt;}
.wsbb{word-spacing:5.472788pt;}
.ws3a{word-spacing:5.525922pt;}
.wsc3{word-spacing:5.579056pt;}
.ws61{word-spacing:5.632190pt;}
.ws104{word-spacing:5.682275pt;}
.wsb7{word-spacing:5.738458pt;}
.ws69{word-spacing:5.844725pt;}
.ws6a{word-spacing:5.897859pt;}
.ws128{word-spacing:5.950993pt;}
.wsc5{word-spacing:6.004127pt;}
.ws27{word-spacing:6.110395pt;}
.ws115{word-spacing:6.284544pt;}
.ws116{word-spacing:6.300255pt;}
.wse4{word-spacing:6.406848pt;}
.ws14b{word-spacing:6.407987pt;}
.wse5{word-spacing:6.411552pt;}
.ws129{word-spacing:6.535466pt;}
.ws48{word-spacing:6.694867pt;}
.ws34{word-spacing:6.854269pt;}
.ws98{word-spacing:7.048736pt;}
.ws97{word-spacing:7.059424pt;}
.wsd0{word-spacing:7.066804pt;}
.ws12d{word-spacing:7.332474pt;}
.wscb{word-spacing:7.545009pt;}
.ws11c{word-spacing:7.598143pt;}
.wse{word-spacing:7.699075pt;}
.ws1c{word-spacing:8.368640pt;}
.ws7f{word-spacing:8.452800pt;}
.ws80{word-spacing:8.491200pt;}
.wsde{word-spacing:10.118555pt;}
.ws6d{word-spacing:10.329312pt;}
.wsa5{word-spacing:11.907379pt;}
.ws7{word-spacing:13.761632pt;}
.ws4{word-spacing:13.763148pt;}
.wsd{word-spacing:15.732893pt;}
.wsc{word-spacing:18.038896pt;}
.wsb{word-spacing:18.055335pt;}
.wsf{word-spacing:24.399002pt;}
.wsaa{word-spacing:166.699383pt;}
.wsa8{word-spacing:190.659814pt;}
.wsa6{word-spacing:270.134101pt;}
.wsa9{word-spacing:322.951074pt;}
.wsa7{word-spacing:448.719889pt;}
.wsab{word-spacing:465.723324pt;}
._19{margin-left:-6.575147pt;}
._7{margin-left:-5.395627pt;}
._e{margin-left:-3.910662pt;}
._4{margin-left:-2.677939pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._3{width:2.045648pt;}
._27{width:4.622646pt;}
._17{width:5.931814pt;}
._26{width:7.384527pt;}
._2{width:11.526042pt;}
._9{width:13.333879pt;}
._8{width:15.055428pt;}
._b{width:16.524633pt;}
._a{width:17.454592pt;}
._c{width:19.075058pt;}
._6{width:20.467302pt;}
._12{width:22.110415pt;}
._21{width:23.432035pt;}
._13{width:25.397988pt;}
._11{width:26.726335pt;}
._24{width:27.921730pt;}
._5{width:29.011008pt;}
._10{width:30.605107pt;}
._15{width:31.667785pt;}
._22{width:33.714441pt;}
._18{width:34.608128pt;}
._14{width:36.874903pt;}
._29{width:54.993920pt;}
._28{width:78.904320pt;}
._1a{width:110.387789pt;}
._1d{width:246.606464pt;}
._1c{width:248.445346pt;}
._20{width:274.919296pt;}
._1b{width:312.266701pt;}
._1e{width:335.953306pt;}
._1f{width:338.162074pt;}
._d{width:582.473679pt;}
._23{width:1791.373992pt;}
._16{width:1849.083479pt;}
._25{width:2234.045867pt;}
._f{width:2255.299200pt;}
.fse{font-size:31.360000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fsf{font-size:38.755733pt;}
.fsb{font-size:41.708800pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fsd{font-size:47.040000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsc{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs0{font-size:90.585127pt;}
.fs2{font-size:95.641600pt;}
.y15a{bottom:-650.905155pt;}
.y17f{bottom:-574.460796pt;}
.y17e{bottom:-557.683682pt;}
.y17d{bottom:-540.906568pt;}
.y17c{bottom:-524.208011pt;}
.y17b{bottom:-507.430897pt;}
.y17a{bottom:-490.732340pt;}
.ybb{bottom:-474.290267pt;}
.y179{bottom:-473.955226pt;}
.y178{bottom:-457.178112pt;}
.y177{bottom:-440.479555pt;}
.y175{bottom:-440.470821pt;}
.y176{bottom:-437.186755pt;}
.y174{bottom:-423.693707pt;}
.yd5{bottom:-420.444851pt;}
.y173{bottom:-406.916593pt;}
.yd4{bottom:-403.405507pt;}
.y172{bottom:-390.218036pt;}
.yd3{bottom:-386.286003pt;}
.y171{bottom:-373.440922pt;}
.yd2{bottom:-369.166499pt;}
.y170{bottom:-356.742365pt;}
.yd1{bottom:-352.127155pt;}
.y16f{bottom:-339.965251pt;}
.yd0{bottom:-335.007651pt;}
.y16e{bottom:-323.188137pt;}
.ycf{bottom:-317.888147pt;}
.y16d{bottom:-306.489580pt;}
.yce{bottom:-300.848803pt;}
.y16c{bottom:-289.712466pt;}
.ycd{bottom:-283.729299pt;}
.y16b{bottom:-273.013909pt;}
.ycc{bottom:-266.689955pt;}
.y16a{bottom:-256.236795pt;}
.ycb{bottom:-249.570451pt;}
.y169{bottom:-239.459681pt;}
.yca{bottom:-232.450947pt;}
.y168{bottom:-222.761124pt;}
.yc9{bottom:-215.410267pt;}
.y167{bottom:-205.984010pt;}
.yc8{bottom:-198.611867pt;}
.y166{bottom:-189.285453pt;}
.yc7{bottom:-183.251867pt;}
.y165{bottom:-168.588355pt;}
.yc6{bottom:-167.811467pt;}
.yc5{bottom:-152.451467pt;}
.yc4{bottom:-137.091467pt;}
.y164{bottom:-136.523931pt;}
.yc3{bottom:-121.731467pt;}
.y163{bottom:-121.392339pt;}
.y162{bottom:-106.339539pt;}
.yc2{bottom:-106.291067pt;}
.y161{bottom:-91.207947pt;}
.yc1{bottom:-90.931067pt;}
.y160{bottom:-76.155147pt;}
.yc0{bottom:-75.571067pt;}
.y15f{bottom:-61.102347pt;}
.ybf{bottom:-60.211067pt;}
.y15e{bottom:-46.049547pt;}
.ybe{bottom:-44.770667pt;}
.y15d{bottom:-30.917955pt;}
.y15c{bottom:-15.865155pt;}
.ybd{bottom:-13.490267pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.y15b{bottom:3.656289pt;}
.ybc{bottom:6.509413pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:16.134885pt;}
.y49{bottom:28.346667pt;}
.ye4{bottom:81.252000pt;}
.y1f4{bottom:87.109333pt;}
.yfa{bottom:88.198667pt;}
.y81{bottom:88.846667pt;}
.y1f{bottom:91.398667pt;}
.y22e{bottom:92.050667pt;}
.y48{bottom:92.108000pt;}
.y12c{bottom:93.341333pt;}
.y156{bottom:94.441333pt;}
.yb7{bottom:94.840000pt;}
.ye3{bottom:97.989333pt;}
.y1f3{bottom:102.452000pt;}
.yf9{bottom:104.936000pt;}
.y80{bottom:105.584000pt;}
.y1e{bottom:107.298667pt;}
.y22d{bottom:107.393333pt;}
.y47{bottom:108.844000pt;}
.y1d1{bottom:109.984000pt;}
.y12b{bottom:110.078667pt;}
.y155{bottom:111.178667pt;}
.yb6{bottom:111.577333pt;}
.ye2{bottom:114.726667pt;}
.y1f2{bottom:117.794667pt;}
.y19e{bottom:121.156000pt;}
.yf8{bottom:121.673333pt;}
.y7f{bottom:122.321333pt;}
.y22c{bottom:122.736000pt;}
.y1d{bottom:123.200000pt;}
.y46{bottom:125.581333pt;}
.y1d0{bottom:126.721333pt;}
.y12a{bottom:126.816000pt;}
.y154{bottom:127.916000pt;}
.yb5{bottom:128.314667pt;}
.ye1{bottom:131.464000pt;}
.y1f1{bottom:133.137333pt;}
.y19d{bottom:137.892000pt;}
.y22b{bottom:138.078667pt;}
.yf7{bottom:138.410667pt;}
.y7e{bottom:139.058667pt;}
.y1c{bottom:139.100000pt;}
.y45{bottom:142.318667pt;}
.y1cf{bottom:143.458667pt;}
.y129{bottom:143.553333pt;}
.y153{bottom:144.653333pt;}
.yb4{bottom:145.052000pt;}
.ye0{bottom:148.201333pt;}
.y1f0{bottom:148.480000pt;}
.y229{bottom:153.420000pt;}
.y22a{bottom:153.421333pt;}
.y19c{bottom:154.629333pt;}
.y1b{bottom:155.000000pt;}
.yf6{bottom:155.148000pt;}
.y7d{bottom:155.796000pt;}
.y44{bottom:159.056000pt;}
.y1ce{bottom:160.196000pt;}
.y128{bottom:160.290667pt;}
.y152{bottom:161.390667pt;}
.yb3{bottom:161.789333pt;}
.y1ef{bottom:163.821333pt;}
.ydf{bottom:164.937333pt;}
.y228{bottom:168.762667pt;}
.y1a{bottom:170.901333pt;}
.y19b{bottom:171.366667pt;}
.yf5{bottom:171.885333pt;}
.y7c{bottom:172.533333pt;}
.y43{bottom:175.793333pt;}
.y127{bottom:177.028000pt;}
.y151{bottom:178.128000pt;}
.yb2{bottom:178.526667pt;}
.y1ee{bottom:179.164000pt;}
.y1cd{bottom:180.917333pt;}
.yde{bottom:181.674667pt;}
.y227{bottom:184.105333pt;}
.y19{bottom:186.801333pt;}
.y19a{bottom:188.104000pt;}
.yf4{bottom:188.622667pt;}
.y7b{bottom:189.270667pt;}
.y42{bottom:192.530667pt;}
.y126{bottom:193.765333pt;}
.y1ed{bottom:194.506667pt;}
.y150{bottom:194.865333pt;}
.yb1{bottom:195.264000pt;}
.ydd{bottom:198.412000pt;}
.y226{bottom:199.448000pt;}
.y18{bottom:202.701333pt;}
.y199{bottom:204.841333pt;}
.yf3{bottom:205.360000pt;}
.y7a{bottom:206.008000pt;}
.y41{bottom:209.268000pt;}
.y1ec{bottom:209.849333pt;}
.y125{bottom:210.502667pt;}
.y14f{bottom:211.602667pt;}
.yb0{bottom:212.001333pt;}
.y225{bottom:214.790667pt;}
.ydc{bottom:215.149333pt;}
.y198{bottom:221.578667pt;}
.yf2{bottom:222.097333pt;}
.y79{bottom:222.745333pt;}
.y1cc{bottom:224.753333pt;}
.y1eb{bottom:225.192000pt;}
.y40{bottom:226.005333pt;}
.y124{bottom:227.240000pt;}
.y14e{bottom:228.340000pt;}
.yaf{bottom:228.738667pt;}
.y224{bottom:230.133333pt;}
.ydb{bottom:231.886667pt;}
.y197{bottom:238.316000pt;}
.yf1{bottom:238.834667pt;}
.y78{bottom:239.482667pt;}
.y1ea{bottom:240.534667pt;}
.y1cb{bottom:241.490667pt;}
.y3f{bottom:242.742667pt;}
.y123{bottom:243.977333pt;}
.y14d{bottom:245.077333pt;}
.yae{bottom:245.476000pt;}
.yda{bottom:248.624000pt;}
.y196{bottom:255.053333pt;}
.yf0{bottom:255.570667pt;}
.y1e9{bottom:255.877333pt;}
.y77{bottom:256.220000pt;}
.y1ca{bottom:258.228000pt;}
.y3e{bottom:259.480000pt;}
.y122{bottom:260.714667pt;}
.y223{bottom:260.818667pt;}
.y14c{bottom:261.814667pt;}
.yad{bottom:262.213333pt;}
.yd9{bottom:265.361333pt;}
.y1e8{bottom:271.220000pt;}
.y195{bottom:271.790667pt;}
.yef{bottom:272.308000pt;}
.y76{bottom:272.957333pt;}
.y17{bottom:273.154667pt;}
.y1c9{bottom:274.965333pt;}
.y222{bottom:276.161333pt;}
.y3d{bottom:276.217333pt;}
.y121{bottom:277.452000pt;}
.y14b{bottom:278.552000pt;}
.yac{bottom:278.950667pt;}
.y1e7{bottom:286.562667pt;}
.y194{bottom:288.528000pt;}
.yd8{bottom:288.741333pt;}
.yee{bottom:289.045333pt;}
.y16{bottom:289.054667pt;}
.y75{bottom:289.694667pt;}
.y221{bottom:291.502667pt;}
.y1c8{bottom:291.702667pt;}
.y3c{bottom:292.954667pt;}
.y120{bottom:294.189333pt;}
.y14a{bottom:295.289333pt;}
.yab{bottom:295.688000pt;}
.y1e6{bottom:301.904000pt;}
.y15{bottom:304.954667pt;}
.y193{bottom:305.265333pt;}
.yd7{bottom:305.478667pt;}
.yed{bottom:305.782667pt;}
.y74{bottom:306.432000pt;}
.y220{bottom:306.845333pt;}
.y1c7{bottom:308.440000pt;}
.y3b{bottom:309.692000pt;}
.y11f{bottom:310.926667pt;}
.y149{bottom:312.026667pt;}
.yaa{bottom:312.425333pt;}
.y1e5{bottom:317.246667pt;}
.y14{bottom:320.856000pt;}
.y192{bottom:322.002667pt;}
.y21f{bottom:322.188000pt;}
.yec{bottom:322.520000pt;}
.y73{bottom:323.168000pt;}
.y1c6{bottom:325.177333pt;}
.y3a{bottom:326.429333pt;}
.y11e{bottom:327.664000pt;}
.y148{bottom:328.764000pt;}
.ya9{bottom:329.162667pt;}
.y1e4{bottom:332.589333pt;}
.yd6{bottom:335.314667pt;}
.y159{bottom:337.013363pt;}
.y21e{bottom:337.530667pt;}
.y191{bottom:338.740000pt;}
.yeb{bottom:339.257333pt;}
.y72{bottom:339.905333pt;}
.y1c5{bottom:341.914667pt;}
.y39{bottom:343.166667pt;}
.y11d{bottom:344.401333pt;}
.y158{bottom:345.402045pt;}
.y147{bottom:345.501333pt;}
.ya8{bottom:345.900000pt;}
.y1e3{bottom:347.932000pt;}
.y21d{bottom:352.873333pt;}
.y13{bottom:354.688000pt;}
.yb8{bottom:355.252000pt;}
.y190{bottom:355.477333pt;}
.yea{bottom:355.994667pt;}
.y71{bottom:356.642667pt;}
.y1c4{bottom:358.652000pt;}
.y38{bottom:359.904000pt;}
.y11c{bottom:361.138667pt;}
.y146{bottom:362.238667pt;}
.ya7{bottom:362.637333pt;}
.y1e2{bottom:363.274667pt;}
.y21c{bottom:368.216000pt;}
.y12{bottom:370.589333pt;}
.y18f{bottom:372.214667pt;}
.ye9{bottom:372.732000pt;}
.y70{bottom:373.380000pt;}
.y1c2{bottom:375.389333pt;}
.y1c3{bottom:375.594667pt;}
.y37{bottom:376.641333pt;}
.y11b{bottom:377.876000pt;}
.y1e1{bottom:378.617333pt;}
.y145{bottom:378.976000pt;}
.ya6{bottom:379.374667pt;}
.y21b{bottom:383.558667pt;}
.y11{bottom:386.489333pt;}
.y18e{bottom:388.952000pt;}
.ye8{bottom:389.469333pt;}
.y6f{bottom:390.117333pt;}
.y1c1{bottom:392.126667pt;}
.y36{bottom:393.378667pt;}
.y1e0{bottom:393.960000pt;}
.y11a{bottom:394.613333pt;}
.y144{bottom:395.713333pt;}
.y1d3{bottom:395.918667pt;}
.ya5{bottom:396.112000pt;}
.y21a{bottom:398.901333pt;}
.y18d{bottom:405.689333pt;}
.ye7{bottom:406.206667pt;}
.y6e{bottom:406.854667pt;}
.y1c0{bottom:408.864000pt;}
.y1df{bottom:409.302667pt;}
.y35{bottom:410.116000pt;}
.y119{bottom:411.350667pt;}
.y143{bottom:412.450667pt;}
.ya4{bottom:412.848000pt;}
.y219{bottom:414.244000pt;}
.y10{bottom:418.330667pt;}
.y18c{bottom:422.426667pt;}
.ye6{bottom:422.944000pt;}
.y6d{bottom:423.592000pt;}
.y1de{bottom:424.644000pt;}
.y1bf{bottom:425.601333pt;}
.y34{bottom:426.853333pt;}
.y118{bottom:428.088000pt;}
.y142{bottom:429.188000pt;}
.ya3{bottom:429.585333pt;}
.yf{bottom:434.230667pt;}
.y18b{bottom:439.164000pt;}
.ye5{bottom:439.681333pt;}
.y1dd{bottom:439.986667pt;}
.y6c{bottom:440.329333pt;}
.y1be{bottom:442.338667pt;}
.y33{bottom:443.590667pt;}
.y117{bottom:444.825333pt;}
.y218{bottom:444.928000pt;}
.y141{bottom:445.925333pt;}
.ya2{bottom:446.322667pt;}
.y18a{bottom:455.901333pt;}
.y1bd{bottom:459.076000pt;}
.y1dc{bottom:459.314667pt;}
.y217{bottom:460.270667pt;}
.y32{bottom:460.328000pt;}
.y6b{bottom:461.052000pt;}
.y116{bottom:461.561333pt;}
.y140{bottom:462.662667pt;}
.ya1{bottom:463.060000pt;}
.ye{bottom:466.070667pt;}
.y1d2{bottom:466.646667pt;}
.y189{bottom:472.638667pt;}
.y216{bottom:475.613333pt;}
.y1bc{bottom:475.813333pt;}
.y31{bottom:477.065333pt;}
.y6a{bottom:477.789333pt;}
.y115{bottom:478.298667pt;}
.y13f{bottom:479.398667pt;}
.ya0{bottom:479.797333pt;}
.yd{bottom:481.972000pt;}
.y1db{bottom:489.202667pt;}
.y215{bottom:490.956000pt;}
.y1bb{bottom:492.549333pt;}
.y30{bottom:493.802667pt;}
.y69{bottom:494.526667pt;}
.y114{bottom:495.036000pt;}
.y13e{bottom:496.136000pt;}
.y9f{bottom:496.534667pt;}
.yc{bottom:497.872000pt;}
.y188{bottom:502.474667pt;}
.y214{bottom:506.298667pt;}
.y1ba{bottom:509.286667pt;}
.y113{bottom:511.773333pt;}
.y1da{bottom:512.794667pt;}
.y13d{bottom:512.873333pt;}
.y9e{bottom:513.272000pt;}
.yb{bottom:513.772000pt;}
.y2f{bottom:514.524000pt;}
.y68{bottom:515.249333pt;}
.y187{bottom:519.570667pt;}
.y213{bottom:521.641333pt;}
.y1b9{bottom:526.024000pt;}
.y1d9{bottom:528.416000pt;}
.y112{bottom:528.510667pt;}
.y13c{bottom:529.610667pt;}
.ya{bottom:529.673333pt;}
.y9d{bottom:530.009333pt;}
.y67{bottom:531.986667pt;}
.yba{bottom:533.789853pt;}
.y186{bottom:536.666667pt;}
.y212{bottom:536.984000pt;}
.yb9{bottom:542.349733pt;}
.y1b8{bottom:542.761333pt;}
.y1d8{bottom:544.037333pt;}
.y111{bottom:545.248000pt;}
.y13b{bottom:546.348000pt;}
.y9c{bottom:546.746667pt;}
.y66{bottom:548.724000pt;}
.y7{bottom:549.558634pt;}
.y211{bottom:552.325333pt;}
.y185{bottom:553.762667pt;}
.y1b7{bottom:559.498667pt;}
.y1d7{bottom:559.658667pt;}
.y110{bottom:561.985333pt;}
.y13a{bottom:563.085333pt;}
.y9b{bottom:563.484000pt;}
.y65{bottom:565.461333pt;}
.y20f{bottom:567.668000pt;}
.y210{bottom:567.853333pt;}
.y184{bottom:570.857333pt;}
.y1d6{bottom:575.280000pt;}
.y1b6{bottom:576.236000pt;}
.y2e{bottom:578.210667pt;}
.y10f{bottom:578.722667pt;}
.y139{bottom:579.822667pt;}
.y9a{bottom:580.221333pt;}
.y63{bottom:582.198667pt;}
.y64{bottom:582.424000pt;}
.y20e{bottom:583.010667pt;}
.y183{bottom:587.953333pt;}
.y1b5{bottom:592.973333pt;}
.y10e{bottom:595.460000pt;}
.y2d{bottom:595.505333pt;}
.y138{bottom:596.560000pt;}
.y99{bottom:596.958667pt;}
.y20d{bottom:598.353333pt;}
.y1d4{bottom:598.872000pt;}
.y61{bottom:598.934667pt;}
.y62{bottom:599.141333pt;}
.y1d5{bottom:603.212000pt;}
.y182{bottom:605.049333pt;}
.y1b4{bottom:609.710667pt;}
.y10d{bottom:612.197333pt;}
.y137{bottom:613.297333pt;}
.y98{bottom:613.696000pt;}
.y60{bottom:615.672000pt;}
.y181{bottom:622.145333pt;}
.y1b3{bottom:626.448000pt;}
.y2c{bottom:628.741333pt;}
.y20c{bottom:629.038667pt;}
.y136{bottom:630.034667pt;}
.y97{bottom:630.433333pt;}
.y5f{bottom:632.409333pt;}
.y10c{bottom:632.920000pt;}
.y180{bottom:639.241333pt;}
.y1b2{bottom:643.185333pt;}
.y20b{bottom:644.381333pt;}
.y2b{bottom:646.036000pt;}
.y135{bottom:646.772000pt;}
.y96{bottom:647.170667pt;}
.y5e{bottom:649.146667pt;}
.y157{bottom:659.178667pt;}
.y20a{bottom:659.724000pt;}
.y1b1{bottom:659.922667pt;}
.y2a{bottom:663.330667pt;}
.y134{bottom:663.509333pt;}
.y95{bottom:663.908000pt;}
.y5d{bottom:665.884000pt;}
.y10b{bottom:667.589333pt;}
.y209{bottom:675.066667pt;}
.y1b0{bottom:676.660000pt;}
.y10a{bottom:680.209333pt;}
.y133{bottom:680.246667pt;}
.y29{bottom:680.626667pt;}
.y94{bottom:680.645333pt;}
.y5c{bottom:686.606667pt;}
.y208{bottom:690.408000pt;}
.y109{bottom:692.828000pt;}
.y1af{bottom:693.397333pt;}
.y132{bottom:696.984000pt;}
.y93{bottom:697.382667pt;}
.y28{bottom:697.921333pt;}
.y108{bottom:705.448000pt;}
.y207{bottom:705.750667pt;}
.y1ae{bottom:710.134667pt;}
.y131{bottom:713.721333pt;}
.y92{bottom:714.120000pt;}
.y27{bottom:715.217333pt;}
.y5b{bottom:716.494667pt;}
.y107{bottom:718.066667pt;}
.y206{bottom:721.093333pt;}
.y1ad{bottom:726.872000pt;}
.y130{bottom:730.458667pt;}
.y91{bottom:730.857333pt;}
.y26{bottom:732.512000pt;}
.y5a{bottom:733.232000pt;}
.y205{bottom:736.436000pt;}
.y106{bottom:738.286667pt;}
.y1ac{bottom:743.609333pt;}
.y105{bottom:745.593333pt;}
.y12f{bottom:747.196000pt;}
.y90{bottom:747.594667pt;}
.y25{bottom:749.806667pt;}
.y59{bottom:749.969333pt;}
.y204{bottom:751.778667pt;}
.y1ab{bottom:760.346667pt;}
.y12e{bottom:763.933333pt;}
.y8f{bottom:764.332000pt;}
.y58{bottom:766.706667pt;}
.y24{bottom:767.102667pt;}
.y203{bottom:767.121333pt;}
.y104{bottom:767.510667pt;}
.y103{bottom:774.816000pt;}
.y1aa{bottom:777.084000pt;}
.y8e{bottom:781.069333pt;}
.y102{bottom:782.122667pt;}
.y202{bottom:782.464000pt;}
.y57{bottom:783.444000pt;}
.y23{bottom:784.397333pt;}
.y12d{bottom:784.656000pt;}
.y1a9{bottom:793.821333pt;}
.y8d{bottom:797.806667pt;}
.y56{bottom:800.181333pt;}
.y22{bottom:801.692000pt;}
.y1a8{bottom:810.558667pt;}
.y101{bottom:811.346667pt;}
.y1ff{bottom:813.148000pt;}
.y200{bottom:813.149333pt;}
.y201{bottom:813.334667pt;}
.y8c{bottom:814.544000pt;}
.y55{bottom:816.918667pt;}
.y21{bottom:818.988000pt;}
.y100{bottom:825.958667pt;}
.y1a7{bottom:827.296000pt;}
.y1fe{bottom:828.490667pt;}
.y8b{bottom:831.281333pt;}
.y54{bottom:833.656000pt;}
.y1fd{bottom:843.833333pt;}
.y1a6{bottom:844.033333pt;}
.y8a{bottom:848.018667pt;}
.y53{bottom:850.393333pt;}
.y20{bottom:850.610667pt;}
.yff{bottom:855.181333pt;}
.y1fc{bottom:859.176000pt;}
.y1a5{bottom:860.770667pt;}
.yfe{bottom:862.488000pt;}
.y89{bottom:864.754667pt;}
.y52{bottom:867.130667pt;}
.y1fb{bottom:874.518667pt;}
.y1a4{bottom:877.508000pt;}
.y88{bottom:881.492000pt;}
.y51{bottom:883.868000pt;}
.y6{bottom:887.520000pt;}
.y1fa{bottom:889.861333pt;}
.yfd{bottom:890.808000pt;}
.y1a3{bottom:894.245333pt;}
.y87{bottom:898.229333pt;}
.y50{bottom:900.605333pt;}
.y1f9{bottom:905.204000pt;}
.yfc{bottom:905.420000pt;}
.y1a2{bottom:910.982667pt;}
.y86{bottom:914.966667pt;}
.y4f{bottom:917.342667pt;}
.y1f8{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y1a1{bottom:927.720000pt;}
.y85{bottom:931.704000pt;}
.yfb{bottom:933.525333pt;}
.y4e{bottom:934.080000pt;}
.y1f7{bottom:935.889333pt;}
.y1a0{bottom:944.456000pt;}
.y84{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4d{bottom:950.817333pt;}
.y1f6{bottom:951.230667pt;}
.y19f{bottom:961.193333pt;}
.y83{bottom:965.178667pt;}
.y1f5{bottom:966.573333pt;}
.y4c{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y82{bottom:981.916000pt;}
.y4b{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4a{bottom:1043.020000pt;}
.h1f{height:17.207546pt;}
.h7{height:22.673858pt;}
.h1d{height:29.001875pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hc{height:34.430976pt;}
.h13{height:34.717901pt;}
.ha{height:35.073565pt;}
.h1c{height:38.229953pt;}
.h6{height:38.256384pt;}
.h19{height:38.572494pt;}
.h4{height:39.000258pt;}
.h10{height:39.359687pt;}
.hb{height:40.084290pt;}
.h1b{height:43.502813pt;}
.h12{height:44.390625pt;}
.hd{height:45.095014pt;}
.h2{height:45.353467pt;}
.h1a{height:48.433131pt;}
.h11{height:49.421563pt;}
.he{height:50.105236pt;}
.h1e{height:50.926570pt;}
.h3{height:61.416716pt;}
.h14{height:63.652309pt;}
.h15{height:64.321801pt;}
.h5{height:68.861952pt;}
.h16{height:103.543014pt;}
.h17{height:132.769681pt;}
.h18{height:284.987920pt;}
.hf{height:505.228000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:170.144178pt;}
.w4{width:504.526667pt;}
.w5{width:683.970224pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3c{left:-165.724000pt;}
.x0{left:0.000000pt;}
.x3e{left:8.116000pt;}
.x3{left:26.021437pt;}
.x71{left:28.096731pt;}
.x3f{left:36.435153pt;}
.x1{left:48.000000pt;}
.x2{left:52.039280pt;}
.x6f{left:54.867216pt;}
.x44{left:60.726667pt;}
.x54{left:76.346667pt;}
.x52{left:79.060000pt;}
.x45{left:82.496000pt;}
.x4a{left:90.800000pt;}
.x4f{left:93.436000pt;}
.x43{left:122.776000pt;}
.x76{left:129.120000pt;}
.x8e{left:141.017333pt;}
.x72{left:170.706331pt;}
.x50{left:187.517333pt;}
.x47{left:195.221333pt;}
.x73{left:198.459839pt;}
.x46{left:210.661333pt;}
.x4{left:223.020000pt;}
.x4b{left:223.997333pt;}
.x90{left:226.166667pt;}
.x8f{left:227.440000pt;}
.x39{left:246.754667pt;}
.x7{left:251.365333pt;}
.x40{left:253.769333pt;}
.x3a{left:260.038667pt;}
.x55{left:265.413333pt;}
.x34{left:268.345333pt;}
.x21{left:274.549333pt;}
.x5{left:277.480000pt;}
.x56{left:278.697333pt;}
.x35{left:281.629333pt;}
.x36{left:284.845333pt;}
.x6{left:288.429333pt;}
.x6e{left:295.040000pt;}
.x2e{left:298.885333pt;}
.x32{left:301.152000pt;}
.x2b{left:308.382667pt;}
.x2a{left:309.797333pt;}
.x2f{left:312.168000pt;}
.x33{left:314.436000pt;}
.x1a{left:325.136000pt;}
.x1e{left:327.734667pt;}
.x6a{left:330.926667pt;}
.x8c{left:333.754667pt;}
.x1b{left:338.418667pt;}
.x1f{left:341.018667pt;}
.x26{left:342.569333pt;}
.x6b{left:344.210667pt;}
.x2d{left:350.386667pt;}
.x2c{left:351.908000pt;}
.x27{left:355.853333pt;}
.x28{left:359.177333pt;}
.x49{left:364.936000pt;}
.x29{left:372.461333pt;}
.x48{left:376.545333pt;}
.x78{left:384.660000pt;}
.x14{left:393.133333pt;}
.x79{left:397.942667pt;}
.x7e{left:399.417333pt;}
.x7a{left:401.244000pt;}
.x15{left:406.417333pt;}
.x57{left:412.825333pt;}
.x7b{left:414.528000pt;}
.x87{left:418.421333pt;}
.x58{left:426.109333pt;}
.x59{left:429.386667pt;}
.x80{left:430.612000pt;}
.x88{left:431.705333pt;}
.x7f{left:440.734667pt;}
.x5a{left:442.670667pt;}
.x37{left:444.252000pt;}
.x8{left:448.109333pt;}
.x9{left:454.750667pt;}
.x5b{left:456.417333pt;}
.x38{left:457.536000pt;}
.x24{left:459.454667pt;}
.xa{left:461.346667pt;}
.xb{left:467.988000pt;}
.x5c{left:469.701333pt;}
.x25{left:472.737333pt;}
.x10{left:488.829333pt;}
.x11{left:495.470667pt;}
.x12{left:498.772000pt;}
.x3d{left:500.112971pt;}
.x13{left:505.413333pt;}
.x1c{left:515.918667pt;}
.x20{left:518.348000pt;}
.x68{left:525.334667pt;}
.x1d{left:529.202667pt;}
.x60{left:535.002667pt;}
.x93{left:536.084000pt;}
.x92{left:537.357333pt;}
.x69{left:538.618667pt;}
.x30{left:540.552000pt;}
.x65{left:542.505333pt;}
.x61{left:548.286667pt;}
.x31{left:553.836000pt;}
.x5d{left:567.824000pt;}
.x22{left:572.172000pt;}
.x4d{left:581.169333pt;}
.x41{left:582.433333pt;}
.x23{left:585.456000pt;}
.x74{left:591.479131pt;}
.x75{left:593.674331pt;}
.x42{left:595.717333pt;}
.x89{left:597.852000pt;}
.x81{left:603.488000pt;}
.x51{left:608.109333pt;}
.x77{left:610.300000pt;}
.xc{left:612.590667pt;}
.x5e{left:614.876000pt;}
.x82{left:616.772000pt;}
.xd{left:619.233333pt;}
.x83{left:620.158667pt;}
.x53{left:624.105333pt;}
.xe{left:625.848000pt;}
.x5f{left:628.160000pt;}
.xf{left:632.489333pt;}
.x84{left:633.442667pt;}
.x4c{left:635.816000pt;}
.x4e{left:638.989333pt;}
.x85{left:640.217333pt;}
.x64{left:651.630667pt;}
.x86{left:653.500000pt;}
.x8a{left:658.286667pt;}
.x91{left:662.398667pt;}
.x8b{left:666.373333pt;}
.x66{left:668.948000pt;}
.x94{left:677.388000pt;}
.x67{left:682.230667pt;}
.x70{left:683.831178pt;}
.x62{left:686.584000pt;}
.x6c{left:692.254667pt;}
.x3b{left:698.385333pt;}
.x63{left:699.868000pt;}
.x7c{left:710.112000pt;}
.x8d{left:720.356000pt;}
.x7d{left:723.396000pt;}
.x18{left:726.178667pt;}
.x16{left:727.152000pt;}
.x19{left:739.461333pt;}
.x17{left:740.436000pt;}
.x6d{left:744.657333pt;}
}




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