
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_698880345b87952feccb21d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5b63279f4b6d60c3a4b17073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5db8f5a359a940eec606a82d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.746000;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_91915997ab462d96ceed9b9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5626bade38dd94905742f8c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fcb1059aa19d0345f959ddf1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f0ec40719f4f569dbf5811bd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_be5df760cd954857a8a7cc40.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;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_a755422cb6d6b9f31fe2eb80.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_c6850bac3c53e73fa95e07da.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.015625;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_76619f941c740827fd136824.woff2')format("woff");}.fff{font-family:fff;line-height:1.021484;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_723465d700ffd18dc7260837.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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_88ea69a997fe4b2722f9fc02.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b6a18ab37b9ecf30687ae794.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.755000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_b15fb283c180be15e878449c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5c566a8b443e7dcb12ca68f4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_004691753900700f8c72965f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.870000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8128686b419bfca956c9ef50.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m10{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);}
.mb{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);}
.m18{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);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m12{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);}
.m15{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);}
.m7{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);}
.m16{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);}
.m19{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);}
.m1b{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);}
.m1e{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);}
.m24{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);}
.m2{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);}
.m5{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.md{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);}
.m26{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);}
.ma{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);}
.m28{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);}
.m13{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m1f{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);}
.m4{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);}
.m21{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);}
.m1c{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);}
.mc{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);}
.me{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);}
.m29{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);}
.m23{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);}
.m25{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);}
.m9{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);}
.v3{vertical-align:-21.696000px;}
.v2{vertical-align:-19.530000px;}
.v9{vertical-align:-9.786000px;}
.v7{vertical-align:-1.452600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.452600px;}
.v8{vertical-align:16.124400px;}
.v4{vertical-align:17.577000px;}
.v6{vertical-align:19.029600px;}
.v1{vertical-align:21.702000px;}
.ls27{letter-spacing:-0.360000px;}
.ls16{letter-spacing:0.000000px;}
.ls74{letter-spacing:0.000053px;}
.ls31{letter-spacing:0.000124px;}
.ls4d{letter-spacing:0.000230px;}
.ls0{letter-spacing:0.000240px;}
.ls19{letter-spacing:0.000273px;}
.ls2f{letter-spacing:0.000435px;}
.lsb{letter-spacing:0.000566px;}
.ls45{letter-spacing:0.000600px;}
.ls83{letter-spacing:0.000632px;}
.ls79{letter-spacing:0.000676px;}
.ls85{letter-spacing:0.000800px;}
.ls77{letter-spacing:0.000834px;}
.ls7d{letter-spacing:0.000863px;}
.ls82{letter-spacing:0.001036px;}
.ls50{letter-spacing:0.001087px;}
.ls3e{letter-spacing:0.001133px;}
.ls25{letter-spacing:0.001193px;}
.ls6c{letter-spacing:0.001331px;}
.ls5a{letter-spacing:0.001465px;}
.ls69{letter-spacing:0.001541px;}
.ls3d{letter-spacing:0.001546px;}
.ls68{letter-spacing:0.001890px;}
.ls87{letter-spacing:0.002338px;}
.ls7e{letter-spacing:0.002458px;}
.ls7f{letter-spacing:0.002573px;}
.ls38{letter-spacing:0.002583px;}
.ls4f{letter-spacing:0.002690px;}
.ls6{letter-spacing:0.002725px;}
.ls6a{letter-spacing:0.002782px;}
.ls7a{letter-spacing:0.002818px;}
.ls6f{letter-spacing:0.002841px;}
.ls66{letter-spacing:0.002870px;}
.ls2c{letter-spacing:0.002982px;}
.ls15{letter-spacing:0.003488px;}
.ls18{letter-spacing:0.003494px;}
.ls13{letter-spacing:0.003741px;}
.ls4e{letter-spacing:0.003986px;}
.ls30{letter-spacing:0.004200px;}
.ls75{letter-spacing:0.004800px;}
.ls6b{letter-spacing:0.005415px;}
.ls26{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.306000px;}
.ls24{letter-spacing:0.360000px;}
.ls17{letter-spacing:1.275394px;}
.lsd{letter-spacing:1.861130px;}
.ls33{letter-spacing:2.689740px;}
.ls2a{letter-spacing:2.724319px;}
.ls2b{letter-spacing:2.725200px;}
.ls29{letter-spacing:2.730319px;}
.ls4{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls1f{letter-spacing:9.473389px;}
.ls1d{letter-spacing:9.474970px;}
.ls1e{letter-spacing:9.479511px;}
.ls20{letter-spacing:9.481093px;}
.ls1c{letter-spacing:10.629569px;}
.ls78{letter-spacing:11.664686px;}
.ls14{letter-spacing:11.954850px;}
.ls67{letter-spacing:12.071610px;}
.ls55{letter-spacing:12.100804px;}
.ls53{letter-spacing:12.105081px;}
.ls54{letter-spacing:12.106204px;}
.ls73{letter-spacing:12.190518px;}
.ls11{letter-spacing:12.926450px;}
.ls12{letter-spacing:12.932573px;}
.ls59{letter-spacing:12.966171px;}
.ls84{letter-spacing:13.273929px;}
.ls88{letter-spacing:13.332490px;}
.ls89{letter-spacing:13.407259px;}
.ls72{letter-spacing:13.436854px;}
.ls5d{letter-spacing:13.444090px;}
.ls40{letter-spacing:13.445338px;}
.lsa{letter-spacing:13.448074px;}
.ls70{letter-spacing:13.448400px;}
.ls3f{letter-spacing:13.450090px;}
.ls5c{letter-spacing:13.451338px;}
.ls80{letter-spacing:13.454400px;}
.ls6e{letter-spacing:13.507543px;}
.ls7c{letter-spacing:13.611129px;}
.ls86{letter-spacing:13.663320px;}
.ls8{letter-spacing:14.327108px;}
.ls7{letter-spacing:14.331634px;}
.ls3c{letter-spacing:14.796540px;}
.ls2e{letter-spacing:14.862124px;}
.ls2d{letter-spacing:14.868124px;}
.ls3{letter-spacing:14.942725px;}
.ls23{letter-spacing:14.943900px;}
.ls2{letter-spacing:14.944200px;}
.ls21{letter-spacing:14.944766px;}
.ls22{letter-spacing:14.946124px;}
.ls7b{letter-spacing:15.015106px;}
.ls52{letter-spacing:15.123227px;}
.ls5b{letter-spacing:15.183002px;}
.ls76{letter-spacing:15.903341px;}
.ls10{letter-spacing:16.557182px;}
.ls81{letter-spacing:18.915106px;}
.lsf{letter-spacing:18.968947px;}
.lse{letter-spacing:18.976531px;}
.ls71{letter-spacing:19.226871px;}
.ls51{letter-spacing:19.666172px;}
.ls1a{letter-spacing:20.635355px;}
.ls1b{letter-spacing:20.639535px;}
.ls6d{letter-spacing:21.161161px;}
.ls5{letter-spacing:57.415200px;}
.ls9{letter-spacing:70.236600px;}
.lsc{letter-spacing:72.353510px;}
.ls37{letter-spacing:107.080017px;}
.ls36{letter-spacing:110.988838px;}
.ls35{letter-spacing:111.985740px;}
.ls34{letter-spacing:113.644020px;}
.ls48{letter-spacing:120.426600px;}
.ls3a{letter-spacing:123.095638px;}
.ls39{letter-spacing:124.092540px;}
.ls46{letter-spacing:130.890600px;}
.ls4b{letter-spacing:137.298600px;}
.ls3b{letter-spacing:139.041838px;}
.ls4a{letter-spacing:146.256600px;}
.ls58{letter-spacing:153.271566px;}
.ls56{letter-spacing:153.276966px;}
.ls57{letter-spacing:153.277281px;}
.ls41{letter-spacing:160.026600px;}
.ls4c{letter-spacing:161.646600px;}
.ls42{letter-spacing:175.092600px;}
.ls49{letter-spacing:178.080600px;}
.ls65{letter-spacing:187.719740px;}
.ls5f{letter-spacing:187.720090px;}
.ls5e{letter-spacing:187.725740px;}
.ls64{letter-spacing:187.726090px;}
.ls47{letter-spacing:188.538600px;}
.ls63{letter-spacing:198.520090px;}
.ls62{letter-spacing:198.525740px;}
.ls60{letter-spacing:220.125740px;}
.ls61{letter-spacing:220.126090px;}
.ls44{letter-spacing:233.497133px;}
.ls43{letter-spacing:262.603133px;}
.ls32{letter-spacing:511.735761px;}
.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;}
}
.ws66{word-spacing:-511.784179px;}
.wsc1{word-spacing:-54.551578px;}
.wsa4{word-spacing:-49.096420px;}
.ws53{word-spacing:-46.065614px;}
.ws89{word-spacing:-17.914867px;}
.ws10{word-spacing:-17.394700px;}
.ws6b{word-spacing:-16.123380px;}
.wsc{word-spacing:-15.655334px;}
.ws43{word-spacing:-15.246000px;}
.ws2{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.ws67{word-spacing:-14.089801px;}
.ws96{word-spacing:-13.915795px;}
.ws8f{word-spacing:-13.449600px;}
.ws41{word-spacing:-12.420000px;}
.ws68{word-spacing:-12.104640px;}
.ws40{word-spacing:-12.060000px;}
.ws20{word-spacing:-11.955150px;}
.ws42{word-spacing:-11.700000px;}
.ws3d{word-spacing:-5.499355px;}
.ws3c{word-spacing:-5.439580px;}
.ws15b{word-spacing:-4.626662px;}
.wsff{word-spacing:-4.196275px;}
.wsf1{word-spacing:-4.142477px;}
.wsd3{word-spacing:-4.124516px;}
.ws50{word-spacing:-4.004965px;}
.ws102{word-spacing:-3.873485px;}
.ws14f{word-spacing:-3.819686px;}
.ws46{word-spacing:-3.765863px;}
.ws1c{word-spacing:-3.706087px;}
.wsf0{word-spacing:-3.281702px;}
.ws47{word-spacing:-3.168107px;}
.wse6{word-spacing:-2.929004px;}
.ws28{word-spacing:-2.450800px;}
.ws26{word-spacing:-2.331248px;}
.ws11e{word-spacing:-2.313331px;}
.wse5{word-spacing:-2.211697px;}
.ws13{word-spacing:-2.032370px;}
.ws48{word-spacing:-1.972595px;}
.wse{word-spacing:-1.908367px;}
.ws111{word-spacing:-1.882944px;}
.ws32{word-spacing:-1.853044px;}
.ws120{word-spacing:-1.775347px;}
.wsd0{word-spacing:-1.733492px;}
.wscf{word-spacing:-1.673717px;}
.wsea{word-spacing:-1.613941px;}
.ws4e{word-spacing:-1.494390px;}
.ws10a{word-spacing:-1.452557px;}
.ws99{word-spacing:-1.374839px;}
.wsd{word-spacing:-1.322630px;}
.wsd9{word-spacing:-1.255288px;}
.ws10d{word-spacing:-1.237363px;}
.ws81{word-spacing:-1.195515px;}
.wsda{word-spacing:-1.195512px;}
.ws158{word-spacing:-1.075968px;}
.ws10f{word-spacing:-1.022170px;}
.ws15c{word-spacing:-0.914573px;}
.wsdd{word-spacing:-0.896634px;}
.ws10c{word-spacing:-0.806976px;}
.ws1a{word-spacing:-0.777083px;}
.ws52{word-spacing:-0.717307px;}
.ws147{word-spacing:-0.699379px;}
.ws8{word-spacing:-0.657532px;}
.ws6{word-spacing:-0.597756px;}
.wsd7{word-spacing:-0.537980px;}
.ws162{word-spacing:-0.484186px;}
.ws27{word-spacing:-0.478205px;}
.ws3f{word-spacing:-0.418429px;}
.ws12a{word-spacing:-0.376589px;}
.ws30{word-spacing:-0.358654px;}
.ws112{word-spacing:-0.322790px;}
.ws37{word-spacing:-0.298878px;}
.ws93{word-spacing:-0.286924px;}
.wsfb{word-spacing:-0.268992px;}
.ws1e{word-spacing:-0.239102px;}
.ws119{word-spacing:-0.215194px;}
.wsba{word-spacing:-0.191282px;}
.ws15{word-spacing:-0.179327px;}
.wsee{word-spacing:-0.161395px;}
.ws82{word-spacing:-0.143462px;}
.ws2a{word-spacing:-0.119551px;}
.wsef{word-spacing:-0.107597px;}
.ws61{word-spacing:-0.105010px;}
.ws97{word-spacing:-0.095641px;}
.ws7{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.053798px;}
.ws73{word-spacing:-0.048419px;}
.ws21{word-spacing:-0.047821px;}
.ws160{word-spacing:-0.021571px;}
.ws74{word-spacing:-0.020693px;}
.ws79{word-spacing:-0.019647px;}
.ws62{word-spacing:-0.006942px;}
.ws8e{word-spacing:-0.002534px;}
.ws91{word-spacing:-0.002467px;}
.wsa1{word-spacing:-0.002419px;}
.ws6a{word-spacing:-0.002281px;}
.ws7d{word-spacing:-0.002091px;}
.ws9f{word-spacing:-0.001339px;}
.ws8a{word-spacing:-0.001334px;}
.ws76{word-spacing:-0.001201px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.000900px;}
.ws3{word-spacing:0.001175px;}
.wsb{word-spacing:0.003466px;}
.ws9{word-spacing:0.005167px;}
.wsa0{word-spacing:0.019181px;}
.ws98{word-spacing:0.047821px;}
.wsf9{word-spacing:0.053798px;}
.ws2f{word-spacing:0.059776px;}
.wsb9{word-spacing:0.095641px;}
.wsfa{word-spacing:0.107597px;}
.wscb{word-spacing:0.111710px;}
.ws31{word-spacing:0.119551px;}
.wscc{word-spacing:0.143462px;}
.ws72{word-spacing:0.145256px;}
.wsf3{word-spacing:0.161395px;}
.ws19{word-spacing:0.179327px;}
.ws95{word-spacing:0.191282px;}
.ws110{word-spacing:0.215194px;}
.ws5e{word-spacing:0.234496px;}
.ws49{word-spacing:0.239102px;}
.ws6f{word-spacing:0.242093px;}
.ws134{word-spacing:0.268992px;}
.ws2d{word-spacing:0.298878px;}
.ws138{word-spacing:0.322790px;}
.ws2c{word-spacing:0.358654px;}
.wsfe{word-spacing:0.376589px;}
.wse4{word-spacing:0.478205px;}
.ws84{word-spacing:0.526027px;}
.ws54{word-spacing:0.537980px;}
.wsd5{word-spacing:0.597756px;}
.ws36{word-spacing:0.657532px;}
.ws15a{word-spacing:0.699379px;}
.ws3a{word-spacing:0.717307px;}
.ws59{word-spacing:0.777083px;}
.ws155{word-spacing:0.806976px;}
.ws4c{word-spacing:0.896634px;}
.ws4b{word-spacing:0.956410px;}
.wsb7{word-spacing:1.004233px;}
.wsb8{word-spacing:1.008104px;}
.wsdc{word-spacing:1.016185px;}
.wsde{word-spacing:1.075961px;}
.ws2b{word-spacing:1.135736px;}
.ws12d{word-spacing:1.183565px;}
.wsd2{word-spacing:1.255288px;}
.ws17{word-spacing:1.315063px;}
.ws83{word-spacing:1.338977px;}
.ws11c{word-spacing:1.344960px;}
.ws16{word-spacing:1.434614px;}
.ws121{word-spacing:1.452557px;}
.ws4a{word-spacing:1.494390px;}
.ws148{word-spacing:1.506355px;}
.wsd1{word-spacing:1.554166px;}
.ws12f{word-spacing:1.560154px;}
.ws12{word-spacing:1.613941px;}
.ws63{word-spacing:1.733492px;}
.ws35{word-spacing:1.793268px;}
.ws34{word-spacing:1.853044px;}
.wsed{word-spacing:1.882944px;}
.wsf{word-spacing:1.972595px;}
.ws64{word-spacing:2.032370px;}
.ws130{word-spacing:2.044339px;}
.wsbb{word-spacing:2.092146px;}
.wse8{word-spacing:2.151922px;}
.wsec{word-spacing:2.151936px;}
.wse0{word-spacing:2.211697px;}
.wsdf{word-spacing:2.271473px;}
.wscd{word-spacing:2.331248px;}
.wsf4{word-spacing:2.367130px;}
.wsce{word-spacing:2.391024px;}
.wsdb{word-spacing:2.450800px;}
.ws11b{word-spacing:2.474726px;}
.ws38{word-spacing:2.510575px;}
.ws60{word-spacing:2.570351px;}
.wsf2{word-spacing:2.636122px;}
.ws161{word-spacing:2.689920px;}
.wseb{word-spacing:2.749678px;}
.ws113{word-spacing:2.797517px;}
.ws18{word-spacing:2.809453px;}
.wsd8{word-spacing:2.869229px;}
.ws9b{word-spacing:2.929004px;}
.wsd4{word-spacing:2.988780px;}
.ws154{word-spacing:3.012710px;}
.ws80{word-spacing:3.060518px;}
.wsd6{word-spacing:3.108331px;}
.ws58{word-spacing:3.287658px;}
.wsfd{word-spacing:3.389299px;}
.ws86{word-spacing:3.407209px;}
.wse9{word-spacing:3.466985px;}
.wse1{word-spacing:3.526760px;}
.ws5a{word-spacing:3.586536px;}
.ws11a{word-spacing:3.604493px;}
.ws14{word-spacing:3.646312px;}
.ws51{word-spacing:3.765863px;}
.ws14b{word-spacing:3.819686px;}
.ws5d{word-spacing:3.825638px;}
.ws13a{word-spacing:3.873485px;}
.ws5f{word-spacing:3.945190px;}
.ws11{word-spacing:4.004965px;}
.ws9c{word-spacing:4.124516px;}
.ws3e{word-spacing:4.184292px;}
.ws5b{word-spacing:4.244068px;}
.ws13c{word-spacing:4.303872px;}
.ws140{word-spacing:4.465267px;}
.ws29{word-spacing:4.483170px;}
.ws2e{word-spacing:4.542946px;}
.ws108{word-spacing:4.572864px;}
.ws5c{word-spacing:4.662497px;}
.ws136{word-spacing:4.680461px;}
.ws9a{word-spacing:4.722272px;}
.ws101{word-spacing:4.788058px;}
.ws14d{word-spacing:4.841856px;}
.ws94{word-spacing:4.947264px;}
.ws116{word-spacing:4.949453px;}
.ws24{word-spacing:5.080926px;}
.ws23{word-spacing:5.140702px;}
.ws135{word-spacing:5.164646px;}
.ws15d{word-spacing:5.218445px;}
.ws13f{word-spacing:5.272243px;}
.ws15f{word-spacing:5.378342px;}
.ws127{word-spacing:5.379053px;}
.ws114{word-spacing:5.379149px;}
.ws12b{word-spacing:5.379158px;}
.ws153{word-spacing:5.379408px;}
.ws156{word-spacing:5.379840px;}
.ws146{word-spacing:5.382154px;}
.ws13e{word-spacing:5.487437px;}
.ws129{word-spacing:5.541235px;}
.ws4f{word-spacing:5.559131px;}
.ws33{word-spacing:5.678682px;}
.ws125{word-spacing:5.682220px;}
.ws107{word-spacing:5.756429px;}
.wse3{word-spacing:5.798233px;}
.ws15e{word-spacing:5.971622px;}
.ws1d{word-spacing:5.977560px;}
.ws25{word-spacing:6.037336px;}
.ws104{word-spacing:6.240614px;}
.ws14c{word-spacing:6.294413px;}
.wse2{word-spacing:6.336214px;}
.ws132{word-spacing:6.509606px;}
.ws85{word-spacing:6.575316px;}
.ws56{word-spacing:6.635092px;}
.ws142{word-spacing:6.778598px;}
.wsf6{word-spacing:7.101389px;}
.wse7{word-spacing:7.531726px;}
.wsf5{word-spacing:7.693171px;}
.wsf7{word-spacing:7.854566px;}
.ws57{word-spacing:8.488135px;}
.ws106{word-spacing:8.769139px;}
.ws143{word-spacing:9.307123px;}
.ws4d{word-spacing:10.102076px;}
.ws45{word-spacing:10.221696px;}
.ws1b{word-spacing:10.580281px;}
.ws44{word-spacing:10.705882px;}
.wsf8{word-spacing:10.921075px;}
.ws11f{word-spacing:11.082470px;}
.ws12c{word-spacing:11.136269px;}
.ws1f{word-spacing:11.907959px;}
.ws10b{word-spacing:11.943245px;}
.wsfc{word-spacing:12.266035px;}
.ws14e{word-spacing:13.180608px;}
.ws159{word-spacing:13.342003px;}
.ws157{word-spacing:13.386336px;}
.ws115{word-spacing:13.388803px;}
.ws152{word-spacing:13.389514px;}
.ws13b{word-spacing:13.391760px;}
.ws149{word-spacing:13.392230px;}
.ws124{word-spacing:13.392336px;}
.ws151{word-spacing:13.392403px;}
.ws144{word-spacing:13.393325px;}
.ws123{word-spacing:13.394803px;}
.ws100{word-spacing:13.395802px;}
.ws3b{word-spacing:13.449510px;}
.ws139{word-spacing:13.449600px;}
.ws118{word-spacing:13.503398px;}
.ws131{word-spacing:13.557197px;}
.ws150{word-spacing:13.610995px;}
.ws163{word-spacing:13.664794px;}
.ws12e{word-spacing:14.579366px;}
.ws122{word-spacing:14.848358px;}
.ws39{word-spacing:14.884124px;}
.ws10e{word-spacing:17.430682px;}
.ws141{word-spacing:17.861069px;}
.ws109{word-spacing:17.968666px;}
.ws128{word-spacing:18.767357px;}
.ws133{word-spacing:18.770390px;}
.ws145{word-spacing:18.771331px;}
.ws137{word-spacing:18.771466px;}
.ws117{word-spacing:18.773194px;}
.ws14a{word-spacing:18.773779px;}
.ws103{word-spacing:18.775642px;}
.ws126{word-spacing:19.044634px;}
.ws105{word-spacing:19.636416px;}
.ws55{word-spacing:22.834279px;}
.ws11d{word-spacing:23.294707px;}
.ws164{word-spacing:27.275789px;}
.ws13d{word-spacing:32.171443px;}
.ws4{word-spacing:40.068708px;}
.wsac{word-spacing:57.521249px;}
.wsb6{word-spacing:58.524008px;}
.wsb2{word-spacing:58.529408px;}
.wsae{word-spacing:58.538039px;}
.wsb0{word-spacing:58.565169px;}
.wsad{word-spacing:70.635663px;}
.wsa3{word-spacing:70.642679px;}
.wsaf{word-spacing:70.669809px;}
.wsaa{word-spacing:70.670465px;}
.wsa8{word-spacing:70.673049px;}
.wsa6{word-spacing:70.675209px;}
.wsb5{word-spacing:74.709838px;}
.wsa9{word-spacing:74.731023px;}
.wsb1{word-spacing:74.758257px;}
.wsc5{word-spacing:82.460429px;}
.wsc9{word-spacing:82.462253px;}
.wsc3{word-spacing:82.468253px;}
.wsbe{word-spacing:82.472947px;}
.wsc7{word-spacing:82.487587px;}
.wsc0{word-spacing:82.493587px;}
.wsb4{word-spacing:86.830263px;}
.wsa5{word-spacing:86.862897px;}
.wsc2{word-spacing:93.254774px;}
.wsc8{word-spacing:93.265853px;}
.wsbf{word-spacing:95.077200px;}
.ws7a{word-spacing:96.190200px;}
.ws69{word-spacing:96.195600px;}
.ws9e{word-spacing:96.401353px;}
.ws77{word-spacing:98.879400px;}
.wsbd{word-spacing:100.441613px;}
.wsca{word-spacing:100.495411px;}
.ws75{word-spacing:108.297000px;}
.wsc6{word-spacing:111.255091px;}
.wsa7{word-spacing:112.536078px;}
.wsc4{word-spacing:114.859584px;}
.wsab{word-spacing:123.639558px;}
.wsa2{word-spacing:124.638558px;}
.ws78{word-spacing:132.322348px;}
.wsb3{word-spacing:140.833158px;}
.ws92{word-spacing:148.939200px;}
.ws8c{word-spacing:158.652000px;}
.ws90{word-spacing:163.878000px;}
.ws8d{word-spacing:163.884000px;}
.ws8b{word-spacing:177.330000px;}
.ws6c{word-spacing:178.519231px;}
.ws7f{word-spacing:178.567649px;}
.ws6e{word-spacing:190.623871px;}
.ws6d{word-spacing:190.672289px;}
.ws70{word-spacing:202.728511px;}
.ws7c{word-spacing:202.776929px;}
.ws71{word-spacing:204.762090px;}
.ws65{word-spacing:214.701451px;}
.ws88{word-spacing:250.231133px;}
.wsbc{word-spacing:578.601792px;}
.ws9d{word-spacing:599.712284px;}
.ws7b{word-spacing:761.610609px;}
.ws87{word-spacing:802.833523px;}
.ws22{word-spacing:916.242696px;}
.ws7e{word-spacing:1028.559609px;}
._27{margin-left:-511.735761px;}
._1b{margin-left:-8.422121px;}
._1{margin-left:-6.679470px;}
._3{margin-left:-4.949453px;}
._b{margin-left:-3.706087px;}
._2{margin-left:-2.297500px;}
._7{margin-left:-1.016185px;}
._6{width:1.091170px;}
._1a{width:2.884523px;}
._18{width:4.337110px;}
._16{width:5.736960px;}
._19{width:7.306026px;}
._f{width:8.418455px;}
._e{width:9.671725px;}
._1c{width:11.653200px;}
._12{width:13.613440px;}
._88{width:14.645022px;}
._1d{width:15.965740px;}
._4{width:17.861069px;}
._5{width:19.797811px;}
._c{width:20.981236px;}
._14{width:22.280902px;}
._13{width:24.268894px;}
._a{width:26.229566px;}
._21{width:27.600930px;}
._86{width:28.692288px;}
._8b{width:29.714857px;}
._d{width:31.023536px;}
._9{width:32.099497px;}
._8{width:33.859016px;}
._17{width:34.909254px;}
._11{width:36.761994px;}
._87{width:38.854140px;}
._1f{width:41.185388px;}
._89{width:42.393139px;}
._1e{width:43.636188px;}
._20{width:46.968224px;}
._8a{width:52.076851px;}
._0{width:54.367038px;}
._8c{width:61.868160px;}
._75{width:70.646075px;}
._48{width:81.655519px;}
._71{width:82.797492px;}
._74{width:86.840675px;}
._76{width:87.858689px;}
._4a{width:89.816429px;}
._7e{width:95.853595px;}
._73{width:98.919118px;}
._77{width:99.944960px;}
._70{width:102.889440px;}
._7d{width:106.731821px;}
._43{width:108.801375px;}
._2b{width:109.828071px;}
._80{width:112.922842px;}
._37{width:113.977290px;}
._69{width:115.430815px;}
._4b{width:117.753938px;}
._40{width:120.776441px;}
._7c{width:124.758490px;}
._2d{width:126.130349px;}
._6f{width:128.067091px;}
._61{width:130.132819px;}
._5a{width:134.343946px;}
._2e{width:138.138152px;}
._3f{width:139.151615px;}
._72{width:140.849591px;}
._38{width:142.156892px;}
._54{width:145.847462px;}
._7b{width:147.141690px;}
._5e{width:148.806374px;}
._6d{width:151.496294px;}
._58{width:152.511807px;}
._3a{width:154.019439px;}
._66{width:157.522698px;}
._60{width:158.671757px;}
._7f{width:163.439539px;}
._26{width:166.087489px;}
._83{width:167.180774px;}
._59{width:172.083533px;}
._5c{width:174.902544px;}
._56{width:176.222039px;}
._5f{width:177.330768px;}
._65{width:182.211898px;}
._82{width:185.010253px;}
._29{width:186.605130px;}
._45{width:190.623871px;}
._64{width:191.725669px;}
._63{width:197.656320px;}
._35{width:202.873766px;}
._57{width:204.218726px;}
._2a{width:214.784732px;}
._46{width:218.512961px;}
._68{width:224.984909px;}
._2c{width:227.916922px;}
._23{width:229.142903px;}
._6c{width:231.763507px;}
._67{width:238.004122px;}
._47{width:241.027592px;}
._62{width:242.469389px;}
._6b{width:244.944115px;}
._3e{width:256.883713px;}
._5d{width:258.124723px;}
._6a{width:260.276659px;}
._30{width:265.252545px;}
._44{width:266.834684px;}
._5b{width:271.574323px;}
._81{width:273.939008px;}
._32{width:277.357185px;}
._3c{width:280.849475px;}
._49{width:284.507459px;}
._28{width:287.315735px;}
._31{width:293.528984px;}
._3d{width:295.181956px;}
._25{width:297.967818px;}
._39{width:299.371956px;}
._33{width:304.858927px;}
._36{width:306.247392px;}
._4f{width:308.087297px;}
._41{width:313.517627px;}
._3b{width:315.954624px;}
._24{width:319.465659px;}
._51{width:327.551558px;}
._42{width:351.906094px;}
._4d{width:354.230185px;}
._84{width:357.059981px;}
._50{width:360.040412px;}
._4e{width:370.353565px;}
._4c{width:372.435564px;}
._34{width:373.888120px;}
._22{width:386.428527px;}
._55{width:472.780339px;}
._6e{width:628.532087px;}
._7a{width:654.242342px;}
._79{width:688.834714px;}
._53{width:910.860710px;}
._15{width:1620.938085px;}
._2f{width:1902.601829px;}
._85{width:2001.434700px;}
._10{width:2025.344700px;}
._78{width:3481.118700px;}
._52{width:3505.034700px;}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fse{font-size:35.865600px;}
.fsd{font-size:37.658520px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:48.240000px;}
.fsc{font-size:48.418560px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y65{bottom:-750.672000px;}
.y8b{bottom:-715.752000px;}
.y8a{bottom:-695.412000px;}
.y89{bottom:-675.216000px;}
.y88{bottom:-654.882000px;}
.y87{bottom:-634.722000px;}
.y86{bottom:-614.562000px;}
.y85{bottom:-594.222000px;}
.y84{bottom:-574.062000px;}
.y83{bottom:-544.722000px;}
.y82{bottom:-506.562000px;}
.y81{bottom:-486.222000px;}
.y80{bottom:-466.062000px;}
.y7f{bottom:-445.902000px;}
.y7e{bottom:-425.517000px;}
.y7d{bottom:-405.357000px;}
.y7c{bottom:-385.017000px;}
.y7b{bottom:-364.857000px;}
.y7a{bottom:-344.517000px;}
.y79{bottom:-315.357000px;}
.y78{bottom:-277.197000px;}
.y77{bottom:-256.857000px;}
.y76{bottom:-236.697000px;}
.y75{bottom:-216.357000px;}
.y74{bottom:-196.197000px;}
.y73{bottom:-175.827000px;}
.y72{bottom:-155.667000px;}
.y71{bottom:-135.507000px;}
.y70{bottom:-115.167000px;}
.y6f{bottom:-95.007000px;}
.y6e{bottom:-74.667000px;}
.y6d{bottom:-37.047000px;}
.y6c{bottom:-17.607000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.425340px;}
.y6b{bottom:6.873000px;}
.y1b{bottom:14.151273px;}
.y2{bottom:14.814771px;}
.y31{bottom:63.780000px;}
.y30{bottom:108.612000px;}
.y273{bottom:108.957000px;}
.y108{bottom:111.808500px;}
.y1dc{bottom:114.156000px;}
.y20d{bottom:115.560000px;}
.yce{bottom:115.800000px;}
.yab{bottom:117.421500px;}
.y19d{bottom:122.011500px;}
.y61{bottom:122.314500px;}
.y1eb{bottom:123.121500px;}
.y62{bottom:127.740000px;}
.y272{bottom:128.325000px;}
.y2f{bottom:128.875500px;}
.y107{bottom:132.073500px;}
.y1db{bottom:134.419500px;}
.ycd{bottom:136.063500px;}
.yaa{bottom:137.686500px;}
.y20c{bottom:139.725000px;}
.y19c{bottom:142.275000px;}
.y60{bottom:142.579500px;}
.y1ea{bottom:143.386500px;}
.y271{bottom:147.691500px;}
.y106{bottom:152.337000px;}
.y1da{bottom:154.683000px;}
.y20b{bottom:154.923000px;}
.ya9{bottom:157.950000px;}
.y23f{bottom:157.974000px;}
.y2e{bottom:158.106000px;}
.y19b{bottom:162.540000px;}
.y5f{bottom:162.843000px;}
.y1e9{bottom:163.650000px;}
.ycc{bottom:165.294000px;}
.y270{bottom:167.059500px;}
.y20a{bottom:170.121000px;}
.y105{bottom:172.602000px;}
.y1d9{bottom:174.948000px;}
.y23e{bottom:177.340500px;}
.ya8{bottom:178.213500px;}
.y19a{bottom:182.803500px;}
.y1e8{bottom:183.913500px;}
.y209{bottom:185.319000px;}
.y26f{bottom:186.427500px;}
.y129{bottom:188.292000px;}
.y5e{bottom:192.073500px;}
.y104{bottom:192.865500px;}
.y166{bottom:193.356450px;}
.y1d8{bottom:195.211500px;}
.y23d{bottom:196.708500px;}
.ya7{bottom:198.478500px;}
.ycb{bottom:200.113500px;}
.y208{bottom:200.517000px;}
.y199{bottom:203.067000px;}
.y1e7{bottom:204.178500px;}
.y128{bottom:205.087500px;}
.y26e{bottom:205.794000px;}
.y165{bottom:208.472400px;}
.y144{bottom:210.586500px;}
.y1d7{bottom:215.476500px;}
.y207{bottom:215.715000px;}
.y23c{bottom:216.076500px;}
.ya6{bottom:218.742000px;}
.y127{bottom:221.884500px;}
.y103{bottom:222.096000px;}
.y198{bottom:223.332000px;}
.y164{bottom:223.588350px;}
.y1e6{bottom:224.442000px;}
.y143{bottom:224.782500px;}
.y26d{bottom:225.162000px;}
.y5d{bottom:226.893000px;}
.y206{bottom:230.913000px;}
.y2d{bottom:234.522000px;}
.yca{bottom:234.933000px;}
.y23b{bottom:235.443000px;}
.y1d6{bottom:235.740000px;}
.y6a{bottom:238.218000px;}
.y126{bottom:238.680000px;}
.y163{bottom:238.704300px;}
.y141{bottom:238.980000px;}
.ya5{bottom:239.005500px;}
.y142{bottom:243.319500px;}
.y197{bottom:243.595500px;}
.y26c{bottom:244.528500px;}
.y1e5{bottom:244.707000px;}
.y205{bottom:246.111000px;}
.y5c{bottom:247.158000px;}
.y13f{bottom:253.176000px;}
.y2c{bottom:254.785500px;}
.y23a{bottom:254.811000px;}
.yc9{bottom:255.198000px;}
.y125{bottom:255.475500px;}
.y1d5{bottom:256.003500px;}
.y140{bottom:257.517000px;}
.y69{bottom:258.558000px;}
.y162{bottom:260.302950px;}
.y204{bottom:261.309000px;}
.y102{bottom:261.847500px;}
.y26b{bottom:263.896500px;}
.y1e4{bottom:264.970500px;}
.y13e{bottom:267.373500px;}
.y5b{bottom:267.421500px;}
.ya4{bottom:268.236000px;}
.y124{bottom:272.271000px;}
.y196{bottom:272.826000px;}
.y239{bottom:274.177500px;}
.y161{bottom:275.418900px;}
.yc8{bottom:275.461500px;}
.y101{bottom:276.043500px;}
.y1d4{bottom:276.268500px;}
.y203{bottom:276.507000px;}
.y68{bottom:278.718000px;}
.y26a{bottom:283.264500px;}
.y1e3{bottom:285.234000px;}
.y5a{bottom:287.685000px;}
.y123{bottom:289.386000px;}
.y13d{bottom:289.431000px;}
.yff{bottom:290.241000px;}
.y160{bottom:290.534850px;}
.y202{bottom:291.705000px;}
.y2b{bottom:292.983000px;}
.y238{bottom:293.545500px;}
.y100{bottom:294.580500px;}
.yc7{bottom:295.725000px;}
.y1d3{bottom:296.532000px;}
.y67{bottom:299.058000px;}
.y269{bottom:302.631000px;}
.ya3{bottom:303.055500px;}
.yfe{bottom:304.437000px;}
.y1e2{bottom:305.499000px;}
.y15f{bottom:305.650800px;}
.y122{bottom:306.181500px;}
.y13c{bottom:306.226500px;}
.y201{bottom:306.903000px;}
.y195{bottom:307.645500px;}
.y59{bottom:307.950000px;}
.y237{bottom:312.913500px;}
.y2a{bottom:313.246500px;}
.yc6{bottom:315.990000px;}
.y1d2{bottom:316.797000px;}
.yfc{bottom:318.634500px;}
.y66{bottom:319.218000px;}
.y268{bottom:321.999000px;}
.y200{bottom:322.101000px;}
.yfd{bottom:322.974000px;}
.y121{bottom:322.977000px;}
.ya1{bottom:323.320500px;}
.y13b{bottom:323.343000px;}
.y1e1{bottom:325.762500px;}
.y15e{bottom:327.248100px;}
.y194{bottom:327.910500px;}
.y58{bottom:328.213500px;}
.ya2{bottom:328.744500px;}
.y236{bottom:332.280000px;}
.yfb{bottom:332.830500px;}
.y29{bottom:333.511500px;}
.yc5{bottom:336.253500px;}
.y1d1{bottom:337.060500px;}
.y1ff{bottom:337.299000px;}
.y120{bottom:339.772500px;}
.y13a{bottom:340.138500px;}
.y267{bottom:341.367000px;}
.y15d{bottom:342.364050px;}
.y9f{bottom:343.584000px;}
.y1e0{bottom:346.027500px;}
.yfa{bottom:347.028000px;}
.y193{bottom:348.174000px;}
.ya0{bottom:349.009500px;}
.y235{bottom:351.648000px;}
.y1fe{bottom:352.498500px;}
.y28{bottom:353.775000px;}
.y64{bottom:356.508000px;}
.yc4{bottom:356.518500px;}
.y11f{bottom:356.568000px;}
.y139{bottom:356.934000px;}
.y1d0{bottom:357.324000px;}
.y57{bottom:357.444000px;}
.y15c{bottom:357.480000px;}
.y266{bottom:360.733500px;}
.y9e{bottom:363.849000px;}
.y1df{bottom:366.291000px;}
.y1fd{bottom:367.696500px;}
.yf9{bottom:368.177700px;}
.y192{bottom:368.437500px;}
.y234{bottom:371.014500px;}
.y15b{bottom:372.595950px;}
.y11e{bottom:373.363500px;}
.y138{bottom:373.729500px;}
.y27{bottom:374.038500px;}
.yc3{bottom:376.782000px;}
.y1cf{bottom:377.589000px;}
.y265{bottom:380.101500px;}
.yf8{bottom:383.293650px;}
.y9d{bottom:384.112500px;}
.y1de{bottom:386.554500px;}
.y191{bottom:388.702500px;}
.y233{bottom:390.382500px;}
.y11d{bottom:390.480000px;}
.y137{bottom:390.525000px;}
.y1fc{bottom:391.860000px;}
.y56{bottom:392.263500px;}
.y15a{bottom:394.194600px;}
.y26{bottom:394.303500px;}
.y1ab{bottom:395.323500px;}
.yc2{bottom:397.045500px;}
.y1ce{bottom:397.852500px;}
.yf7{bottom:398.409600px;}
.y264{bottom:399.468000px;}
.y9c{bottom:404.376000px;}
.y1dd{bottom:406.819500px;}
.y1fb{bottom:407.058000px;}
.y11c{bottom:407.595000px;}
.y136{bottom:407.641500px;}
.y159{bottom:409.310550px;}
.y1aa{bottom:409.521000px;}
.y232{bottom:409.750500px;}
.yf6{bottom:413.216400px;}
.y25{bottom:414.567000px;}
.yc1{bottom:417.310500px;}
.y1cd{bottom:418.117500px;}
.y263{bottom:418.836000px;}
.y1fa{bottom:422.256000px;}
.y1a9{bottom:423.717000px;}
.y158{bottom:424.426500px;}
.y135{bottom:424.437000px;}
.y9b{bottom:424.641000px;}
.y11b{bottom:424.711500px;}
.y55{bottom:427.083000px;}
.y231{bottom:429.117000px;}
.y190{bottom:431.830500px;}
.y24{bottom:434.832000px;}
.yf5{bottom:435.433350px;}
.y1f9{bottom:437.454000px;}
.yc0{bottom:437.574000px;}
.y1a8{bottom:437.914500px;}
.y262{bottom:438.204000px;}
.y1cc{bottom:438.381000px;}
.y157{bottom:439.542450px;}
.y134{bottom:441.552000px;}
.y11a{bottom:441.826500px;}
.y9a{bottom:444.904500px;}
.y18f{bottom:446.028000px;}
.y54{bottom:447.348000px;}
.y230{bottom:448.485000px;}
.yf4{bottom:450.549300px;}
.y1f8{bottom:452.652000px;}
.y23{bottom:455.095500px;}
.y261{bottom:457.570500px;}
.ybf{bottom:457.839000px;}
.y133{bottom:458.347500px;}
.y1cb{bottom:458.644500px;}
.y119{bottom:458.943000px;}
.y1a7{bottom:459.972000px;}
.y18e{bottom:460.224000px;}
.y156{bottom:461.141100px;}
.y99{bottom:465.169500px;}
.yf3{bottom:465.665250px;}
.y53{bottom:467.611500px;}
.y1f7{bottom:467.850000px;}
.y22f{bottom:467.851500px;}
.y18d{bottom:474.421500px;}
.y22{bottom:475.359000px;}
.y132{bottom:475.464000px;}
.y118{bottom:475.738500px;}
.y1a6{bottom:476.767500px;}
.y260{bottom:476.938500px;}
.ybe{bottom:478.102500px;}
.y1ca{bottom:478.909500px;}
.yf2{bottom:480.459900px;}
.y155{bottom:482.738400px;}
.y22e{bottom:487.219500px;}
.y52{bottom:487.875000px;}
.y18c{bottom:488.617500px;}
.y1f6{bottom:492.015000px;}
.y131{bottom:492.259500px;}
.y117{bottom:492.534000px;}
.y1a5{bottom:493.563000px;}
.y98{bottom:494.400000px;}
.y21{bottom:495.624000px;}
.y25f{bottom:496.305000px;}
.y154{bottom:497.854350px;}
.y1c9{bottom:499.173000px;}
.yf1{bottom:502.784850px;}
.y18b{bottom:502.815000px;}
.y22d{bottom:506.587500px;}
.y1f5{bottom:507.213000px;}
.ybd{bottom:507.333000px;}
.y51{bottom:508.140000px;}
.y130{bottom:509.055000px;}
.y150{bottom:509.265900px;}
.y116{bottom:509.329500px;}
.y1a4{bottom:510.358500px;}
.y153{bottom:512.971650px;}
.y25e{bottom:515.673000px;}
.y20{bottom:515.887500px;}
.yf0{bottom:517.900800px;}
.y1c8{bottom:519.438000px;}
.y1f4{bottom:522.411000px;}
.y18a{bottom:523.964700px;}
.y22c{bottom:525.954000px;}
.y12f{bottom:526.194000px;}
.y115{bottom:526.320000px;}
.y1a3{bottom:527.154000px;}
.y50{bottom:528.403500px;}
.y97{bottom:529.219500px;}
.yef{bottom:533.016750px;}
.y152{bottom:534.568950px;}
.y25d{bottom:535.041000px;}
.y1f{bottom:536.152500px;}
.y1f3{bottom:537.609000px;}
.y189{bottom:539.080650px;}
.y1c7{bottom:539.701500px;}
.ybc{bottom:542.152500px;}
.y12e{bottom:543.309000px;}
.y114{bottom:543.435000px;}
.y1a2{bottom:543.949500px;}
.y22b{bottom:545.322000px;}
.yee{bottom:548.132700px;}
.y4f{bottom:548.667000px;}
.y96{bottom:549.483000px;}
.y1f2{bottom:552.807000px;}
.y188{bottom:554.196600px;}
.y25c{bottom:554.407500px;}
.y151{bottom:556.167600px;}
.y1e{bottom:556.416000px;}
.y1c6{bottom:559.965000px;}
.y12d{bottom:560.104500px;}
.y113{bottom:560.551500px;}
.y1a1{bottom:560.745000px;}
.ybb{bottom:562.416000px;}
.yed{bottom:563.248650px;}
.y22a{bottom:564.688500px;}
.y4e{bottom:568.932000px;}
.y187{bottom:569.312550px;}
.y95{bottom:569.746500px;}
.y25b{bottom:573.775500px;}
.y1d{bottom:576.679500px;}
.y12c{bottom:577.221000px;}
.y112{bottom:577.347000px;}
.y1a0{bottom:577.540500px;}
.yec{bottom:578.364600px;}
.y1c5{bottom:580.230000px;}
.yba{bottom:582.681000px;}
.y229{bottom:584.056500px;}
.y1f1{bottom:585.939000px;}
.y14f{bottom:586.096500px;}
.y4d{bottom:589.195500px;}
.y94{bottom:590.011500px;}
.y186{bottom:590.911200px;}
.y25a{bottom:593.142000px;}
.y12b{bottom:594.016500px;}
.y111{bottom:594.142500px;}
.y19f{bottom:594.337500px;}
.yeb{bottom:600.005100px;}
.y1c4{bottom:600.493500px;}
.yb9{bottom:602.944500px;}
.y228{bottom:603.424500px;}
.y185{bottom:606.027150px;}
.y1f0{bottom:606.202500px;}
.y1a{bottom:607.639555px;}
.y19{bottom:608.406000px;}
.y4c{bottom:609.460500px;}
.y93{bottom:610.275000px;}
.y110{bottom:610.938000px;}
.y12a{bottom:611.133000px;}
.y259{bottom:612.510000px;}
.yea{bottom:615.484200px;}
.y276{bottom:619.699500px;}
.y1c3{bottom:620.758500px;}
.y184{bottom:621.143100px;}
.y227{bottom:622.791000px;}
.yb8{bottom:623.209500px;}
.y1ef{bottom:626.466000px;}
.y10f{bottom:627.928500px;}
.y4b{bottom:629.724000px;}
.y92{bottom:630.540000px;}
.ye9{bottom:630.600150px;}
.y258{bottom:631.878000px;}
.y183{bottom:636.259050px;}
.y275{bottom:639.067500px;}
.y1c2{bottom:641.022000px;}
.y226{bottom:642.159000px;}
.y14e{bottom:643.473000px;}
.ye8{bottom:645.757950px;}
.y18{bottom:646.431000px;}
.y1ee{bottom:646.731000px;}
.y4a{bottom:649.987500px;}
.y91{bottom:650.803500px;}
.y257{bottom:651.244500px;}
.y10e{bottom:651.925500px;}
.yb7{bottom:652.438500px;}
.y182{bottom:657.857700px;}
.y274{bottom:658.434000px;}
.ye7{bottom:661.238400px;}
.y1c1{bottom:661.285500px;}
.y225{bottom:661.527000px;}
.y14d{bottom:663.736500px;}
.y17{bottom:664.587000px;}
.y1ed{bottom:666.994500px;}
.y49{bottom:670.252500px;}
.y256{bottom:670.612500px;}
.y90{bottom:671.067000px;}
.y181{bottom:672.973650px;}
.y10d{bottom:675.567000px;}
.ye6{bottom:676.354350px;}
.y224{bottom:680.893500px;}
.y1c0{bottom:681.550500px;}
.y19e{bottom:681.822000px;}
.y14c{bottom:684.001500px;}
.yb6{bottom:687.258000px;}
.y16{bottom:687.627000px;}
.y180{bottom:688.089600px;}
.y255{bottom:689.979000px;}
.y48{bottom:690.516000px;}
.y8f{bottom:691.332000px;}
.ye5{bottom:691.470300px;}
.y10c{bottom:692.005500px;}
.y223{bottom:700.261500px;}
.y1bf{bottom:701.814000px;}
.y17f{bottom:703.205550px;}
.y15{bottom:705.783000px;}
.ye4{bottom:706.586250px;}
.yb5{bottom:707.523000px;}
.y254{bottom:709.347000px;}
.y47{bottom:710.781000px;}
.y8e{bottom:711.595500px;}
.y14b{bottom:713.232000px;}
.y10b{bottom:716.002500px;}
.y222{bottom:719.628000px;}
.ye3{bottom:721.702200px;}
.y1be{bottom:722.077500px;}
.y14{bottom:723.940500px;}
.y17e{bottom:724.802850px;}
.yb4{bottom:727.786500px;}
.y253{bottom:728.715000px;}
.y46{bottom:731.044500px;}
.ye2{bottom:736.818150px;}
.y13{bottom:737.215500px;}
.y221{bottom:738.996000px;}
.y17d{bottom:739.918800px;}
.y1bd{bottom:742.342500px;}
.y8d{bottom:746.596500px;}
.y10a{bottom:747.622500px;}
.yb3{bottom:748.051500px;}
.y252{bottom:748.081500px;}
.y45{bottom:751.308000px;}
.ye1{bottom:751.934100px;}
.y17c{bottom:755.034750px;}
.y220{bottom:758.364000px;}
.y12{bottom:760.254000px;}
.y1bc{bottom:762.606000px;}
.y8c{bottom:765.829500px;}
.ye0{bottom:767.050050px;}
.y251{bottom:767.449500px;}
.yb2{bottom:768.315000px;}
.y17b{bottom:770.152050px;}
.y44{bottom:771.573000px;}
.y11{bottom:773.529000px;}
.y21f{bottom:777.730500px;}
.ydf{bottom:782.166000px;}
.y1bb{bottom:782.871000px;}
.y250{bottom:786.816000px;}
.y63{bottom:788.259000px;}
.yb1{bottom:788.578500px;}
.y17a{bottom:791.749350px;}
.y43{bottom:791.836500px;}
.y10{bottom:796.569000px;}
.y21e{bottom:797.098500px;}
.yde{bottom:797.281950px;}
.y109{bottom:798.445500px;}
.y1ba{bottom:803.134500px;}
.y24f{bottom:806.184000px;}
.y179{bottom:806.865300px;}
.yb0{bottom:808.843500px;}
.y42{bottom:812.101500px;}
.yf{bottom:814.725000px;}
.y21d{bottom:816.465000px;}
.ydd{bottom:818.880600px;}
.y178{bottom:821.981250px;}
.y1b9{bottom:823.398000px;}
.y24e{bottom:825.552000px;}
.yaf{bottom:829.107000px;}
.y41{bottom:832.365000px;}
.ye{bottom:832.882500px;}
.ydc{bottom:833.996550px;}
.y21c{bottom:835.833000px;}
.y177{bottom:837.097200px;}
.y1b8{bottom:843.663000px;}
.y24d{bottom:844.918500px;}
.ydb{bottom:849.112500px;}
.y14a{bottom:849.372000px;}
.yd{bottom:851.040000px;}
.y40{bottom:852.628500px;}
.y21b{bottom:855.201000px;}
.yae{bottom:858.337500px;}
.y176{bottom:858.695850px;}
.y1b7{bottom:863.926500px;}
.yda{bottom:864.228450px;}
.y24c{bottom:864.286500px;}
.yc{bottom:864.315000px;}
.y149{bottom:869.635500px;}
.y3f{bottom:872.893500px;}
.y175{bottom:873.811800px;}
.y21a{bottom:874.567500px;}
.y1ec{bottom:878.602500px;}
.yd9{bottom:879.344400px;}
.y24b{bottom:883.653000px;}
.y1b6{bottom:884.191500px;}
.yb{bottom:887.353500px;}
.y174{bottom:888.927750px;}
.y148{bottom:889.899000px;}
.y3e{bottom:893.157000px;}
.y219{bottom:893.935500px;}
.yd8{bottom:894.460350px;}
.y24a{bottom:903.021000px;}
.y173{bottom:904.043700px;}
.y1b5{bottom:904.455000px;}
.ya{bottom:905.122500px;}
.yd7{bottom:909.576300px;}
.y147{bottom:910.164000px;}
.y218{bottom:913.302000px;}
.y3d{bottom:913.422000px;}
.y249{bottom:922.389000px;}
.yd6{bottom:924.692250px;}
.y1b4{bottom:924.718500px;}
.y9{bottom:925.386000px;}
.y172{bottom:925.642350px;}
.y146{bottom:930.427500px;}
.y217{bottom:932.670000px;}
.y3c{bottom:933.685500px;}
.yd5{bottom:939.808200px;}
.y171{bottom:940.758300px;}
.y248{bottom:941.755500px;}
.y1b3{bottom:944.983500px;}
.y8{bottom:945.651000px;}
.y216{bottom:952.038000px;}
.y3b{bottom:953.949000px;}
.yd4{bottom:954.602850px;}
.y170{bottom:955.874250px;}
.y145{bottom:959.658000px;}
.y247{bottom:961.123500px;}
.y1b2{bottom:965.247000px;}
.y7{bottom:965.914500px;}
.yd3{bottom:970.445100px;}
.y16f{bottom:970.990200px;}
.y215{bottom:971.404500px;}
.y3a{bottom:974.214000px;}
.y246{bottom:980.490000px;}
.y1b1{bottom:985.512000px;}
.yd2{bottom:985.561050px;}
.y214{bottom:990.772500px;}
.y16e{bottom:992.587500px;}
.y39{bottom:994.477500px;}
.y245{bottom:999.858000px;}
.y1b0{bottom:1005.775500px;}
.yd1{bottom:1007.159700px;}
.y213{bottom:1010.139000px;}
.y6{bottom:1010.451000px;}
.y16d{bottom:1014.186150px;}
.y38{bottom:1014.742500px;}
.y244{bottom:1019.226000px;}
.y1af{bottom:1026.039000px;}
.yd0{bottom:1028.758350px;}
.y16c{bottom:1029.302100px;}
.y212{bottom:1029.507000px;}
.y37{bottom:1035.006000px;}
.y243{bottom:1038.592500px;}
.yad{bottom:1040.430000px;}
.y168{bottom:1040.712300px;}
.y5{bottom:1040.848500px;}
.y16b{bottom:1044.418050px;}
.y1ae{bottom:1046.304000px;}
.y211{bottom:1048.875000px;}
.y36{bottom:1055.269500px;}
.y242{bottom:1057.960500px;}
.ycf{bottom:1058.686500px;}
.y16a{bottom:1066.016700px;}
.y1ad{bottom:1066.567500px;}
.y210{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y241{bottom:1077.327000px;}
.yac{bottom:1080.958500px;}
.y1ac{bottom:1086.832500px;}
.y20f{bottom:1087.609500px;}
.y169{bottom:1087.614000px;}
.y34{bottom:1095.798000px;}
.y240{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y20e{bottom:1115.943000px;}
.y33{bottom:1116.063000px;}
.y167{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.h27{height:24.890726px;}
.ha{height:25.508090px;}
.h26{height:26.110157px;}
.h8{height:30.461558px;}
.h1c{height:31.528142px;}
.h32{height:32.730947px;}
.h11{height:33.072749px;}
.hc{height:33.112997px;}
.h25{height:33.187496px;}
.h31{height:33.378779px;}
.hb{height:34.199443px;}
.h24{height:34.813397px;}
.h1e{height:35.006619px;}
.h10{height:35.052500px;}
.h20{height:35.248712px;}
.h13{height:35.379141px;}
.h1f{height:35.490804px;}
.h33{height:36.367718px;}
.h35{height:37.927872px;}
.h34{height:38.412058px;}
.h1a{height:38.896243px;}
.h9{height:39.165235px;}
.h17{height:39.418945px;}
.h2c{height:39.434227px;}
.h16{height:39.603516px;}
.h1b{height:41.484266px;}
.hf{height:41.723369px;}
.hd{height:43.217759px;}
.he{height:43.516637px;}
.h15{height:43.623633px;}
.h23{height:43.712013px;}
.h18{height:43.798711px;}
.h4{height:43.815515px;}
.h19{height:43.827891px;}
.h22{height:44.992403px;}
.h21{height:46.445003px;}
.h2d{height:46.782790px;}
.h2b{height:46.788790px;}
.h30{height:47.188903px;}
.h2f{height:48.498344px;}
.h2e{height:48.504344px;}
.h2a{height:49.002344px;}
.h2{height:50.931027px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h1d{height:54.768749px;}
.h14{height:55.503491px;}
.h5{height:77.792486px;}
.h3{height:102.503837px;}
.h12{height:223.099500px;}
.h28{height:892.914000px;}
.h29{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.814733px;}
.w4{width:678.150000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w5{width:1262.835000px;}
.w6{width:1263.000000px;}
.x0{left:0.000000px;}
.x3f{left:7.458000px;}
.x8{left:29.274117px;}
.x41{left:39.318000px;}
.x2{left:58.056593px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x61{left:129.340350px;}
.x43{left:131.445000px;}
.x5e{left:137.831850px;}
.x44{left:141.442500px;}
.x92{left:142.521900px;}
.xed{left:144.444000px;}
.x5{left:146.170500px;}
.x5c{left:148.256550px;}
.xe7{left:150.469500px;}
.x82{left:152.860500px;}
.x4d{left:154.459500px;}
.x6c{left:156.482100px;}
.x80{left:158.428500px;}
.x7f{left:159.550500px;}
.x45{left:160.737000px;}
.xfa{left:161.803500px;}
.x63{left:163.641150px;}
.x5f{left:166.280400px;}
.x46{left:167.424000px;}
.x6d{left:169.675650px;}
.x83{left:170.688000px;}
.x7e{left:172.812000px;}
.x5a{left:174.033450px;}
.x7d{left:175.051500px;}
.x4c{left:176.061000px;}
.x60{left:179.668350px;}
.x5d{left:181.247850px;}
.x6a{left:183.190500px;}
.x68{left:184.261050px;}
.x62{left:185.520600px;}
.x70{left:187.095000px;}
.x69{left:188.377200px;}
.x9{left:190.108500px;}
.x71{left:195.711000px;}
.x6b{left:197.400600px;}
.x4f{left:199.783500px;}
.x17{left:202.773000px;}
.x3d{left:204.970500px;}
.xee{left:206.370000px;}
.xc{left:207.570000px;}
.x18{left:210.975000px;}
.x42{left:215.151000px;}
.xb4{left:217.407000px;}
.x19{left:218.446500px;}
.x1a{left:222.190500px;}
.x117{left:223.345500px;}
.x38{left:224.616000px;}
.x34{left:226.140000px;}
.x94{left:227.195250px;}
.x1b{left:229.662000px;}
.xef{left:232.135500px;}
.x48{left:233.158500px;}
.x118{left:234.552000px;}
.x1c{left:237.150000px;}
.xea{left:239.497500px;}
.x35{left:241.084500px;}
.x1d{left:244.621500px;}
.x49{left:247.953000px;}
.xfd{left:249.400500px;}
.x119{left:251.667000px;}
.x2e{left:252.834000px;}
.x11a{left:254.101500px;}
.xa2{left:257.860500px;}
.xa{left:260.142000px;}
.x36{left:267.460500px;}
.xb3{left:268.722000px;}
.xb{left:269.982000px;}
.x107{left:273.906000px;}
.xf5{left:277.351500px;}
.x4a{left:279.339000px;}
.x73{left:280.486500px;}
.x37{left:282.403500px;}
.x93{left:283.834500px;}
.x4b{left:288.532500px;}
.x74{left:289.678500px;}
.xc1{left:291.685500px;}
.xf2{left:293.179500px;}
.x53{left:295.432500px;}
.xe0{left:297.411000px;}
.xf3{left:301.002000px;}
.x59{left:302.661000px;}
.x86{left:303.805500px;}
.xc2{left:306.630000px;}
.xc3{left:310.291500px;}
.x87{left:311.803500px;}
.xdd{left:314.172000px;}
.x1e{left:317.286000px;}
.x8c{left:318.792000px;}
.xbc{left:320.511000px;}
.x22{left:322.491000px;}
.xc4{left:325.236000px;}
.x8d{left:327.021000px;}
.xc5{left:328.896000px;}
.x1f{left:332.230500px;}
.xcc{left:333.663000px;}
.xa1{left:336.028500px;}
.x23{left:337.434000px;}
.xbd{left:339.243000px;}
.x24{left:341.185500px;}
.xc6{left:343.840500px;}
.x64{left:346.612050px;}
.xcd{left:348.606000px;}
.xce{left:352.323000px;}
.x52{left:353.851500px;}
.x25{left:356.128500px;}
.x5b{left:357.900750px;}
.xeb{left:359.512500px;}
.x4e{left:361.950000px;}
.x32{left:363.130500px;}
.xe3{left:364.435500px;}
.x6f{left:365.533500px;}
.xcf{left:367.267500px;}
.x3e{left:371.721000px;}
.xbe{left:372.919500px;}
.x33{left:378.073500px;}
.x90{left:379.095000px;}
.xbf{left:380.496000px;}
.x72{left:385.602000px;}
.x91{left:386.967000px;}
.x75{left:393.001500px;}
.xc0{left:395.440500px;}
.xd0{left:399.913500px;}
.xd1{left:403.683000px;}
.x9b{left:405.214500px;}
.x95{left:406.368600px;}
.x9a{left:407.979150px;}
.xe5{left:408.984000px;}
.x99{left:410.066250px;}
.x96{left:411.077400px;}
.xd2{left:418.627500px;}
.xfb{left:420.280500px;}
.x9c{left:422.406600px;}
.xe6{left:423.928500px;}
.x10b{left:425.563500px;}
.xfc{left:426.723000px;}
.x26{left:428.020500px;}
.x9d{left:431.848500px;}
.x114{left:433.093500px;}
.xd3{left:437.340000px;}
.x100{left:438.394500px;}
.x115{left:439.534500px;}
.xd5{left:441.615000px;}
.x27{left:442.965000px;}
.xf8{left:444.120000px;}
.x65{left:449.266050px;}
.x8e{left:452.292000px;}
.xd6{left:456.558000px;}
.x10f{left:458.344500px;}
.x112{left:461.106000px;}
.x8f{left:463.288500px;}
.x50{left:465.612000px;}
.x30{left:467.584500px;}
.x51{left:472.261500px;}
.xd7{left:473.706000px;}
.xdf{left:474.918000px;}
.xb1{left:477.184500px;}
.x66{left:481.277250px;}
.x31{left:482.529000px;}
.xab{left:483.541500px;}
.xa3{left:487.471500px;}
.xd8{left:488.650500px;}
.xb2{left:492.127500px;}
.x9e{left:494.218500px;}
.x39{left:495.778500px;}
.xb8{left:498.501000px;}
.x97{left:500.167950px;}
.x3a{left:502.204500px;}
.xd4{left:511.390500px;}
.x88{left:517.660500px;}
.x10d{left:519.516000px;}
.x28{left:524.443500px;}
.x89{left:525.885000px;}
.x9f{left:531.675000px;}
.x110{left:533.656500px;}
.xe9{left:535.455000px;}
.xba{left:538.090500px;}
.x29{left:539.388000px;}
.x98{left:542.289300px;}
.x54{left:545.208000px;}
.x20{left:547.021500px;}
.x6e{left:550.081500px;}
.xbb{left:553.033500px;}
.x111{left:560.556000px;}
.x21{left:561.964500px;}
.xf6{left:563.082000px;}
.x106{left:566.130000px;}
.x76{left:568.855500px;}
.xf7{left:570.424500px;}
.x77{left:578.047500px;}
.xb0{left:582.378000px;}
.x55{left:584.616000px;}
.xec{left:586.252500px;}
.x81{left:590.175000px;}
.x108{left:594.789000px;}
.x10c{left:597.859500px;}
.xa4{left:599.631000px;}
.x56{left:602.109000px;}
.x103{left:610.833000px;}
.x67{left:615.942450px;}
.xc7{left:617.353500px;}
.xd{left:624.990000px;}
.xf1{left:626.421000px;}
.xcb{left:628.119000px;}
.x105{left:629.136000px;}
.xe{left:632.463000px;}
.xc8{left:635.958000px;}
.x104{left:637.732500px;}
.x57{left:643.672500px;}
.x10e{left:645.096000px;}
.x8a{left:647.922000px;}
.x109{left:649.155000px;}
.x58{left:650.293500px;}
.x10a{left:653.014500px;}
.xc9{left:654.564000px;}
.xf0{left:657.718500px;}
.x8b{left:658.914000px;}
.x113{left:660.069000px;}
.xdb{left:663.955500px;}
.x78{left:665.479500px;}
.xd9{left:667.876500px;}
.xca{left:669.507000px;}
.x40{left:671.232000px;}
.xf{left:673.891500px;}
.xb5{left:676.840500px;}
.xdc{left:678.900000px;}
.x10{left:681.364500px;}
.xda{left:682.821000px;}
.x11{left:685.026000px;}
.xe4{left:686.973000px;}
.xa0{left:688.480500px;}
.xff{left:691.029000px;}
.x12{left:692.497500px;}
.x116{left:693.937500px;}
.x2f{left:696.879000px;}
.xf9{left:698.056500px;}
.xde{left:699.268500px;}
.x7{left:701.339982px;}
.xfe{left:702.933000px;}
.x2a{left:703.963500px;}
.x47{left:705.921000px;}
.xe8{left:708.396000px;}
.xb9{left:716.287500px;}
.x2b{left:718.908000px;}
.xe1{left:720.033000px;}
.x3b{left:725.025000px;}
.x2c{left:726.231000px;}
.x101{left:727.770000px;}
.xa5{left:728.976000px;}
.x3c{left:731.290500px;}
.xe2{left:734.977500px;}
.xb6{left:738.489000px;}
.x2d{left:741.174000px;}
.x13{left:749.920500px;}
.xb7{left:753.109500px;}
.x14{left:757.393500px;}
.x15{left:764.715000px;}
.xf4{left:766.068000px;}
.x16{left:772.188000px;}
.x102{left:776.362500px;}
.xa6{left:826.542000px;}
.xa7{left:842.433000px;}
.x79{left:857.224500px;}
.x7a{left:866.416500px;}
.xac{left:869.922000px;}
.xad{left:880.915500px;}
.xa8{left:943.995000px;}
.x7b{left:953.848500px;}
.x7c{left:969.739500px;}
.xa9{left:1048.053000px;}
.xaa{left:1063.944000px;}
.x84{left:1066.032000px;}
.x85{left:1076.893500px;}
.xae{left:1081.513500px;}
.xaf{left:1089.511500px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v2{vertical-align:-17.360000pt;}
.v9{vertical-align:-8.698667pt;}
.v7{vertical-align:-1.291200pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.291200pt;}
.v8{vertical-align:14.332800pt;}
.v4{vertical-align:15.624000pt;}
.v6{vertical-align:16.915200pt;}
.v1{vertical-align:19.290667pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls74{letter-spacing:0.000047pt;}
.ls31{letter-spacing:0.000110pt;}
.ls4d{letter-spacing:0.000204pt;}
.ls0{letter-spacing:0.000213pt;}
.ls19{letter-spacing:0.000243pt;}
.ls2f{letter-spacing:0.000387pt;}
.lsb{letter-spacing:0.000503pt;}
.ls45{letter-spacing:0.000533pt;}
.ls83{letter-spacing:0.000562pt;}
.ls79{letter-spacing:0.000600pt;}
.ls85{letter-spacing:0.000711pt;}
.ls77{letter-spacing:0.000742pt;}
.ls7d{letter-spacing:0.000767pt;}
.ls82{letter-spacing:0.000921pt;}
.ls50{letter-spacing:0.000966pt;}
.ls3e{letter-spacing:0.001007pt;}
.ls25{letter-spacing:0.001061pt;}
.ls6c{letter-spacing:0.001183pt;}
.ls5a{letter-spacing:0.001302pt;}
.ls69{letter-spacing:0.001370pt;}
.ls3d{letter-spacing:0.001374pt;}
.ls68{letter-spacing:0.001680pt;}
.ls87{letter-spacing:0.002078pt;}
.ls7e{letter-spacing:0.002185pt;}
.ls7f{letter-spacing:0.002287pt;}
.ls38{letter-spacing:0.002296pt;}
.ls4f{letter-spacing:0.002391pt;}
.ls6{letter-spacing:0.002422pt;}
.ls6a{letter-spacing:0.002473pt;}
.ls7a{letter-spacing:0.002505pt;}
.ls6f{letter-spacing:0.002525pt;}
.ls66{letter-spacing:0.002551pt;}
.ls2c{letter-spacing:0.002651pt;}
.ls15{letter-spacing:0.003100pt;}
.ls18{letter-spacing:0.003106pt;}
.ls13{letter-spacing:0.003325pt;}
.ls4e{letter-spacing:0.003543pt;}
.ls30{letter-spacing:0.003733pt;}
.ls75{letter-spacing:0.004267pt;}
.ls6b{letter-spacing:0.004813pt;}
.ls26{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.272000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls17{letter-spacing:1.133683pt;}
.lsd{letter-spacing:1.654338pt;}
.ls33{letter-spacing:2.390880pt;}
.ls2a{letter-spacing:2.421617pt;}
.ls2b{letter-spacing:2.422400pt;}
.ls29{letter-spacing:2.426950pt;}
.ls4{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls1f{letter-spacing:8.420790pt;}
.ls1d{letter-spacing:8.422196pt;}
.ls1e{letter-spacing:8.426232pt;}
.ls20{letter-spacing:8.427638pt;}
.ls1c{letter-spacing:9.448506pt;}
.ls78{letter-spacing:10.368610pt;}
.ls14{letter-spacing:10.626533pt;}
.ls67{letter-spacing:10.730320pt;}
.ls55{letter-spacing:10.756270pt;}
.ls53{letter-spacing:10.760072pt;}
.ls54{letter-spacing:10.761070pt;}
.ls73{letter-spacing:10.836016pt;}
.ls11{letter-spacing:11.490178pt;}
.ls12{letter-spacing:11.495620pt;}
.ls59{letter-spacing:11.525485pt;}
.ls84{letter-spacing:11.799048pt;}
.ls88{letter-spacing:11.851102pt;}
.ls89{letter-spacing:11.917563pt;}
.ls72{letter-spacing:11.943870pt;}
.ls5d{letter-spacing:11.950302pt;}
.ls40{letter-spacing:11.951411pt;}
.lsa{letter-spacing:11.953843pt;}
.ls70{letter-spacing:11.954133pt;}
.ls3f{letter-spacing:11.955635pt;}
.ls5c{letter-spacing:11.956745pt;}
.ls80{letter-spacing:11.959467pt;}
.ls6e{letter-spacing:12.006705pt;}
.ls7c{letter-spacing:12.098781pt;}
.ls86{letter-spacing:12.145173pt;}
.ls8{letter-spacing:12.735207pt;}
.ls7{letter-spacing:12.739230pt;}
.ls3c{letter-spacing:13.152480pt;}
.ls2e{letter-spacing:13.210777pt;}
.ls2d{letter-spacing:13.216110pt;}
.ls3{letter-spacing:13.282422pt;}
.ls23{letter-spacing:13.283467pt;}
.ls2{letter-spacing:13.283733pt;}
.ls21{letter-spacing:13.284237pt;}
.ls22{letter-spacing:13.285443pt;}
.ls7b{letter-spacing:13.346761pt;}
.ls52{letter-spacing:13.442868pt;}
.ls5b{letter-spacing:13.496002pt;}
.ls76{letter-spacing:14.136303pt;}
.ls10{letter-spacing:14.717495pt;}
.ls81{letter-spacing:16.813427pt;}
.lsf{letter-spacing:16.861286pt;}
.lse{letter-spacing:16.868028pt;}
.ls71{letter-spacing:17.090552pt;}
.ls51{letter-spacing:17.481042pt;}
.ls1a{letter-spacing:18.342537pt;}
.ls1b{letter-spacing:18.346254pt;}
.ls6d{letter-spacing:18.809921pt;}
.ls5{letter-spacing:51.035733pt;}
.ls9{letter-spacing:62.432533pt;}
.lsc{letter-spacing:64.314231pt;}
.ls37{letter-spacing:95.182237pt;}
.ls36{letter-spacing:98.656745pt;}
.ls35{letter-spacing:99.542880pt;}
.ls34{letter-spacing:101.016906pt;}
.ls48{letter-spacing:107.045867pt;}
.ls3a{letter-spacing:109.418345pt;}
.ls39{letter-spacing:110.304480pt;}
.ls46{letter-spacing:116.347200pt;}
.ls4b{letter-spacing:122.043200pt;}
.ls3b{letter-spacing:123.592745pt;}
.ls4a{letter-spacing:130.005867pt;}
.ls58{letter-spacing:136.241392pt;}
.ls56{letter-spacing:136.246192pt;}
.ls57{letter-spacing:136.246472pt;}
.ls41{letter-spacing:142.245867pt;}
.ls4c{letter-spacing:143.685867pt;}
.ls42{letter-spacing:155.637867pt;}
.ls49{letter-spacing:158.293867pt;}
.ls65{letter-spacing:166.861991pt;}
.ls5f{letter-spacing:166.862302pt;}
.ls5e{letter-spacing:166.867325pt;}
.ls64{letter-spacing:166.867635pt;}
.ls47{letter-spacing:167.589867pt;}
.ls63{letter-spacing:176.462302pt;}
.ls62{letter-spacing:176.467325pt;}
.ls60{letter-spacing:195.667325pt;}
.ls61{letter-spacing:195.667635pt;}
.ls44{letter-spacing:207.553007pt;}
.ls43{letter-spacing:233.425007pt;}
.ls32{letter-spacing:454.876232pt;}
.ws66{word-spacing:-454.919270pt;}
.wsc1{word-spacing:-48.490291pt;}
.wsa4{word-spacing:-43.641262pt;}
.ws53{word-spacing:-40.947213pt;}
.ws89{word-spacing:-15.924326pt;}
.ws10{word-spacing:-15.461955pt;}
.ws6b{word-spacing:-14.331894pt;}
.wsc{word-spacing:-13.915853pt;}
.ws43{word-spacing:-13.552000pt;}
.ws2{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.ws67{word-spacing:-12.524268pt;}
.ws96{word-spacing:-12.369595pt;}
.ws8f{word-spacing:-11.955200pt;}
.ws41{word-spacing:-11.040000pt;}
.ws68{word-spacing:-10.759680pt;}
.ws40{word-spacing:-10.720000pt;}
.ws20{word-spacing:-10.626800pt;}
.ws42{word-spacing:-10.400000pt;}
.ws3d{word-spacing:-4.888316pt;}
.ws3c{word-spacing:-4.835182pt;}
.ws15b{word-spacing:-4.112589pt;}
.wsff{word-spacing:-3.730022pt;}
.wsf1{word-spacing:-3.682202pt;}
.wsd3{word-spacing:-3.666237pt;}
.ws50{word-spacing:-3.559969pt;}
.ws102{word-spacing:-3.443098pt;}
.ws14f{word-spacing:-3.395277pt;}
.ws46{word-spacing:-3.347434pt;}
.ws1c{word-spacing:-3.294300pt;}
.wsf0{word-spacing:-2.917069pt;}
.ws47{word-spacing:-2.816095pt;}
.wse6{word-spacing:-2.603559pt;}
.ws28{word-spacing:-2.178489pt;}
.ws26{word-spacing:-2.072221pt;}
.ws11e{word-spacing:-2.056294pt;}
.wse5{word-spacing:-1.965953pt;}
.ws13{word-spacing:-1.806551pt;}
.ws48{word-spacing:-1.753418pt;}
.wse{word-spacing:-1.696326pt;}
.ws111{word-spacing:-1.673728pt;}
.ws32{word-spacing:-1.647150pt;}
.ws120{word-spacing:-1.578086pt;}
.wsd0{word-spacing:-1.540882pt;}
.wscf{word-spacing:-1.487748pt;}
.wsea{word-spacing:-1.434614pt;}
.ws4e{word-spacing:-1.328347pt;}
.ws10a{word-spacing:-1.291162pt;}
.ws99{word-spacing:-1.222079pt;}
.wsd{word-spacing:-1.175671pt;}
.wsd9{word-spacing:-1.115811pt;}
.ws10d{word-spacing:-1.099878pt;}
.ws81{word-spacing:-1.062680pt;}
.wsda{word-spacing:-1.062677pt;}
.ws158{word-spacing:-0.956416pt;}
.ws10f{word-spacing:-0.908595pt;}
.ws15c{word-spacing:-0.812954pt;}
.wsdd{word-spacing:-0.797008pt;}
.ws10c{word-spacing:-0.717312pt;}
.ws1a{word-spacing:-0.690740pt;}
.ws52{word-spacing:-0.637606pt;}
.ws147{word-spacing:-0.621670pt;}
.ws8{word-spacing:-0.584473pt;}
.ws6{word-spacing:-0.531339pt;}
.wsd7{word-spacing:-0.478205pt;}
.ws162{word-spacing:-0.430387pt;}
.ws27{word-spacing:-0.425071pt;}
.ws3f{word-spacing:-0.371937pt;}
.ws12a{word-spacing:-0.334746pt;}
.ws30{word-spacing:-0.318803pt;}
.ws112{word-spacing:-0.286925pt;}
.ws37{word-spacing:-0.265669pt;}
.ws93{word-spacing:-0.255043pt;}
.wsfb{word-spacing:-0.239104pt;}
.ws1e{word-spacing:-0.212535pt;}
.ws119{word-spacing:-0.191283pt;}
.wsba{word-spacing:-0.170029pt;}
.ws15{word-spacing:-0.159402pt;}
.wsee{word-spacing:-0.143462pt;}
.ws82{word-spacing:-0.127522pt;}
.ws2a{word-spacing:-0.106268pt;}
.wsef{word-spacing:-0.095642pt;}
.ws61{word-spacing:-0.093342pt;}
.ws97{word-spacing:-0.085014pt;}
.ws7{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.047821pt;}
.ws73{word-spacing:-0.043039pt;}
.ws21{word-spacing:-0.042507pt;}
.ws160{word-spacing:-0.019174pt;}
.ws74{word-spacing:-0.018394pt;}
.ws79{word-spacing:-0.017464pt;}
.ws62{word-spacing:-0.006171pt;}
.ws8e{word-spacing:-0.002253pt;}
.ws91{word-spacing:-0.002193pt;}
.wsa1{word-spacing:-0.002150pt;}
.ws6a{word-spacing:-0.002028pt;}
.ws7d{word-spacing:-0.001859pt;}
.ws9f{word-spacing:-0.001190pt;}
.ws8a{word-spacing:-0.001186pt;}
.ws76{word-spacing:-0.001068pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000800pt;}
.ws3{word-spacing:0.001044pt;}
.wsb{word-spacing:0.003081pt;}
.ws9{word-spacing:0.004593pt;}
.wsa0{word-spacing:0.017050pt;}
.ws98{word-spacing:0.042507pt;}
.wsf9{word-spacing:0.047821pt;}
.ws2f{word-spacing:0.053134pt;}
.wsb9{word-spacing:0.085014pt;}
.wsfa{word-spacing:0.095642pt;}
.wscb{word-spacing:0.099298pt;}
.ws31{word-spacing:0.106268pt;}
.wscc{word-spacing:0.127522pt;}
.ws72{word-spacing:0.129116pt;}
.wsf3{word-spacing:0.143462pt;}
.ws19{word-spacing:0.159402pt;}
.ws95{word-spacing:0.170029pt;}
.ws110{word-spacing:0.191283pt;}
.ws5e{word-spacing:0.208441pt;}
.ws49{word-spacing:0.212535pt;}
.ws6f{word-spacing:0.215194pt;}
.ws134{word-spacing:0.239104pt;}
.ws2d{word-spacing:0.265669pt;}
.ws138{word-spacing:0.286925pt;}
.ws2c{word-spacing:0.318803pt;}
.wsfe{word-spacing:0.334746pt;}
.wse4{word-spacing:0.425071pt;}
.ws84{word-spacing:0.467579pt;}
.ws54{word-spacing:0.478205pt;}
.wsd5{word-spacing:0.531339pt;}
.ws36{word-spacing:0.584473pt;}
.ws15a{word-spacing:0.621670pt;}
.ws3a{word-spacing:0.637606pt;}
.ws59{word-spacing:0.690740pt;}
.ws155{word-spacing:0.717312pt;}
.ws4c{word-spacing:0.797008pt;}
.ws4b{word-spacing:0.850142pt;}
.wsb7{word-spacing:0.892651pt;}
.wsb8{word-spacing:0.896092pt;}
.wsdc{word-spacing:0.903276pt;}
.wsde{word-spacing:0.956410pt;}
.ws2b{word-spacing:1.009543pt;}
.ws12d{word-spacing:1.052058pt;}
.wsd2{word-spacing:1.115811pt;}
.ws17{word-spacing:1.168945pt;}
.ws83{word-spacing:1.190202pt;}
.ws11c{word-spacing:1.195520pt;}
.ws16{word-spacing:1.275213pt;}
.ws121{word-spacing:1.291162pt;}
.ws4a{word-spacing:1.328347pt;}
.ws148{word-spacing:1.338982pt;}
.wsd1{word-spacing:1.381481pt;}
.ws12f{word-spacing:1.386803pt;}
.ws12{word-spacing:1.434614pt;}
.ws63{word-spacing:1.540882pt;}
.ws35{word-spacing:1.594016pt;}
.ws34{word-spacing:1.647150pt;}
.wsed{word-spacing:1.673728pt;}
.wsf{word-spacing:1.753418pt;}
.ws64{word-spacing:1.806551pt;}
.ws130{word-spacing:1.817190pt;}
.wsbb{word-spacing:1.859685pt;}
.wse8{word-spacing:1.912819pt;}
.wsec{word-spacing:1.912832pt;}
.wse0{word-spacing:1.965953pt;}
.wsdf{word-spacing:2.019087pt;}
.wscd{word-spacing:2.072221pt;}
.wsf4{word-spacing:2.104115pt;}
.wsce{word-spacing:2.125355pt;}
.wsdb{word-spacing:2.178489pt;}
.ws11b{word-spacing:2.199757pt;}
.ws38{word-spacing:2.231622pt;}
.ws60{word-spacing:2.284756pt;}
.wsf2{word-spacing:2.343219pt;}
.ws161{word-spacing:2.391040pt;}
.wseb{word-spacing:2.444158pt;}
.ws113{word-spacing:2.486682pt;}
.ws18{word-spacing:2.497292pt;}
.wsd8{word-spacing:2.550426pt;}
.ws9b{word-spacing:2.603559pt;}
.wsd4{word-spacing:2.656693pt;}
.ws154{word-spacing:2.677965pt;}
.ws80{word-spacing:2.720461pt;}
.wsd6{word-spacing:2.762961pt;}
.ws58{word-spacing:2.922363pt;}
.wsfd{word-spacing:3.012710pt;}
.ws86{word-spacing:3.028630pt;}
.wse9{word-spacing:3.081764pt;}
.wse1{word-spacing:3.134898pt;}
.ws5a{word-spacing:3.188032pt;}
.ws11a{word-spacing:3.203994pt;}
.ws14{word-spacing:3.241166pt;}
.ws51{word-spacing:3.347434pt;}
.ws14b{word-spacing:3.395277pt;}
.ws5d{word-spacing:3.400567pt;}
.ws13a{word-spacing:3.443098pt;}
.ws5f{word-spacing:3.506835pt;}
.ws11{word-spacing:3.559969pt;}
.ws9c{word-spacing:3.666237pt;}
.ws3e{word-spacing:3.719371pt;}
.ws5b{word-spacing:3.772505pt;}
.ws13c{word-spacing:3.825664pt;}
.ws140{word-spacing:3.969126pt;}
.ws29{word-spacing:3.985040pt;}
.ws2e{word-spacing:4.038174pt;}
.ws108{word-spacing:4.064768pt;}
.ws5c{word-spacing:4.144442pt;}
.ws136{word-spacing:4.160410pt;}
.ws9a{word-spacing:4.197575pt;}
.ws101{word-spacing:4.256051pt;}
.ws14d{word-spacing:4.303872pt;}
.ws94{word-spacing:4.397568pt;}
.ws116{word-spacing:4.399514pt;}
.ws24{word-spacing:4.516379pt;}
.ws23{word-spacing:4.569513pt;}
.ws135{word-spacing:4.590797pt;}
.ws15d{word-spacing:4.638618pt;}
.ws13f{word-spacing:4.686438pt;}
.ws15f{word-spacing:4.780749pt;}
.ws127{word-spacing:4.781380pt;}
.ws114{word-spacing:4.781466pt;}
.ws12b{word-spacing:4.781474pt;}
.ws153{word-spacing:4.781696pt;}
.ws156{word-spacing:4.782080pt;}
.ws146{word-spacing:4.784137pt;}
.ws13e{word-spacing:4.877722pt;}
.ws129{word-spacing:4.925542pt;}
.ws4f{word-spacing:4.941450pt;}
.ws33{word-spacing:5.047717pt;}
.ws125{word-spacing:5.050862pt;}
.ws107{word-spacing:5.116826pt;}
.wse3{word-spacing:5.153985pt;}
.ws15e{word-spacing:5.308109pt;}
.ws1d{word-spacing:5.313387pt;}
.ws25{word-spacing:5.366521pt;}
.ws104{word-spacing:5.547213pt;}
.ws14c{word-spacing:5.595034pt;}
.wse2{word-spacing:5.632190pt;}
.ws132{word-spacing:5.786317pt;}
.ws85{word-spacing:5.844725pt;}
.ws56{word-spacing:5.897859pt;}
.ws142{word-spacing:6.025421pt;}
.wsf6{word-spacing:6.312346pt;}
.wse7{word-spacing:6.694867pt;}
.wsf5{word-spacing:6.838374pt;}
.wsf7{word-spacing:6.981837pt;}
.ws57{word-spacing:7.545009pt;}
.ws106{word-spacing:7.794790pt;}
.ws143{word-spacing:8.272998pt;}
.ws4d{word-spacing:8.979623pt;}
.ws45{word-spacing:9.085952pt;}
.ws1b{word-spacing:9.404694pt;}
.ws44{word-spacing:9.516339pt;}
.wsf8{word-spacing:9.707622pt;}
.ws11f{word-spacing:9.851085pt;}
.ws12c{word-spacing:9.898906pt;}
.ws1f{word-spacing:10.584852pt;}
.ws10b{word-spacing:10.616218pt;}
.wsfc{word-spacing:10.903142pt;}
.ws14e{word-spacing:11.716096pt;}
.ws159{word-spacing:11.859558pt;}
.ws157{word-spacing:11.898965pt;}
.ws115{word-spacing:11.901158pt;}
.ws152{word-spacing:11.901790pt;}
.ws13b{word-spacing:11.903787pt;}
.ws149{word-spacing:11.904205pt;}
.ws124{word-spacing:11.904299pt;}
.ws151{word-spacing:11.904358pt;}
.ws144{word-spacing:11.905178pt;}
.ws123{word-spacing:11.906492pt;}
.ws100{word-spacing:11.907379pt;}
.ws3b{word-spacing:11.955120pt;}
.ws139{word-spacing:11.955200pt;}
.ws118{word-spacing:12.003021pt;}
.ws131{word-spacing:12.050842pt;}
.ws150{word-spacing:12.098662pt;}
.ws163{word-spacing:12.146483pt;}
.ws12e{word-spacing:12.959437pt;}
.ws122{word-spacing:13.198541pt;}
.ws39{word-spacing:13.230333pt;}
.ws10e{word-spacing:15.493939pt;}
.ws141{word-spacing:15.876506pt;}
.ws109{word-spacing:15.972147pt;}
.ws128{word-spacing:16.682095pt;}
.ws133{word-spacing:16.684791pt;}
.ws145{word-spacing:16.685628pt;}
.ws137{word-spacing:16.685747pt;}
.ws117{word-spacing:16.687283pt;}
.ws14a{word-spacing:16.687804pt;}
.ws103{word-spacing:16.689459pt;}
.ws126{word-spacing:16.928563pt;}
.ws105{word-spacing:17.454592pt;}
.ws55{word-spacing:20.297137pt;}
.ws11d{word-spacing:20.706406pt;}
.ws164{word-spacing:24.245146pt;}
.ws13d{word-spacing:28.596838pt;}
.ws4{word-spacing:35.616629pt;}
.wsac{word-spacing:51.129999pt;}
.wsb6{word-spacing:52.021340pt;}
.wsb2{word-spacing:52.026140pt;}
.wsae{word-spacing:52.033812pt;}
.wsb0{word-spacing:52.057928pt;}
.wsad{word-spacing:62.787256pt;}
.wsa3{word-spacing:62.793492pt;}
.wsaf{word-spacing:62.817608pt;}
.wsaa{word-spacing:62.818191pt;}
.wsa8{word-spacing:62.820488pt;}
.wsa6{word-spacing:62.822408pt;}
.wsb5{word-spacing:66.408745pt;}
.wsa9{word-spacing:66.427576pt;}
.wsb1{word-spacing:66.451784pt;}
.wsc5{word-spacing:73.298159pt;}
.wsc9{word-spacing:73.299780pt;}
.wsc3{word-spacing:73.305114pt;}
.wsbe{word-spacing:73.309286pt;}
.wsc7{word-spacing:73.322300pt;}
.wsc0{word-spacing:73.327633pt;}
.wsb4{word-spacing:77.182456pt;}
.wsa5{word-spacing:77.211464pt;}
.wsc2{word-spacing:82.893133pt;}
.wsc8{word-spacing:82.902980pt;}
.wsbf{word-spacing:84.513067pt;}
.ws7a{word-spacing:85.502400pt;}
.ws69{word-spacing:85.507200pt;}
.ws9e{word-spacing:85.690092pt;}
.ws77{word-spacing:87.892800pt;}
.wsbd{word-spacing:89.281434pt;}
.wsca{word-spacing:89.329254pt;}
.ws75{word-spacing:96.264000pt;}
.wsc6{word-spacing:98.893414pt;}
.wsa7{word-spacing:100.032069pt;}
.wsc4{word-spacing:102.097408pt;}
.wsab{word-spacing:109.901829pt;}
.wsa2{word-spacing:110.789829pt;}
.ws78{word-spacing:117.619865pt;}
.wsb3{word-spacing:125.185029pt;}
.ws92{word-spacing:132.390400pt;}
.ws8c{word-spacing:141.024000pt;}
.ws90{word-spacing:145.669333pt;}
.ws8d{word-spacing:145.674667pt;}
.ws8b{word-spacing:157.626667pt;}
.ws6c{word-spacing:158.683761pt;}
.ws7f{word-spacing:158.726799pt;}
.ws6e{word-spacing:169.443441pt;}
.ws6d{word-spacing:169.486479pt;}
.ws70{word-spacing:180.203121pt;}
.ws7c{word-spacing:180.246159pt;}
.ws71{word-spacing:182.010747pt;}
.ws65{word-spacing:190.845734pt;}
.ws88{word-spacing:222.427674pt;}
.wsbc{word-spacing:514.312704pt;}
.ws9d{word-spacing:533.077586pt;}
.ws7b{word-spacing:676.987208pt;}
.ws87{word-spacing:713.629798pt;}
.ws22{word-spacing:814.437952pt;}
.ws7e{word-spacing:914.275208pt;}
._27{margin-left:-454.876232pt;}
._1b{margin-left:-7.486330pt;}
._1{margin-left:-5.937307pt;}
._3{margin-left:-4.399514pt;}
._b{margin-left:-3.294300pt;}
._2{margin-left:-2.042222pt;}
._7{margin-left:-0.903276pt;}
._6{width:0.969929pt;}
._1a{width:2.564020pt;}
._18{width:3.855209pt;}
._16{width:5.099520pt;}
._19{width:6.494245pt;}
._f{width:7.483071pt;}
._e{width:8.597089pt;}
._1c{width:10.358400pt;}
._12{width:12.100835pt;}
._88{width:13.017797pt;}
._1d{width:14.191769pt;}
._4{width:15.876506pt;}
._5{width:17.598054pt;}
._c{width:18.649987pt;}
._14{width:19.805246pt;}
._13{width:21.572350pt;}
._a{width:23.315170pt;}
._21{width:24.534160pt;}
._86{width:25.504256pt;}
._8b{width:26.413206pt;}
._d{width:27.576477pt;}
._9{width:28.532886pt;}
._8{width:30.096903pt;}
._17{width:31.030448pt;}
._11{width:32.677328pt;}
._87{width:34.537013pt;}
._1f{width:36.609234pt;}
._89{width:37.682790pt;}
._1e{width:38.787723pt;}
._20{width:41.749533pt;}
._8a{width:46.290534pt;}
._0{width:48.326256pt;}
._8c{width:54.993920pt;}
._75{width:62.796511pt;}
._48{width:72.582684pt;}
._71{width:73.597770pt;}
._74{width:77.191711pt;}
._76{width:78.096612pt;}
._4a{width:79.836826pt;}
._7e{width:85.203195pt;}
._73{width:87.928105pt;}
._77{width:88.839964pt;}
._70{width:91.457280pt;}
._7d{width:94.872730pt;}
._43{width:96.712333pt;}
._2b{width:97.624952pt;}
._80{width:100.375859pt;}
._37{width:101.313147pt;}
._69{width:102.605169pt;}
._4b{width:104.670167pt;}
._40{width:107.356836pt;}
._7c{width:110.896435pt;}
._2d{width:112.115866pt;}
._6f{width:113.837414pt;}
._61{width:115.673617pt;}
._5a{width:119.416841pt;}
._2e{width:122.789468pt;}
._3f{width:123.690324pt;}
._72{width:125.199636pt;}
._38{width:126.361682pt;}
._54{width:129.642189pt;}
._7b{width:130.792613pt;}
._5e{width:132.272333pt;}
._6d{width:134.663373pt;}
._58{width:135.566051pt;}
._3a{width:136.906168pt;}
._66{width:140.020176pt;}
._60{width:141.041562pt;}
._7f{width:145.279590pt;}
._26{width:147.633324pt;}
._83{width:148.605133pt;}
._59{width:152.963140pt;}
._5c{width:155.468928pt;}
._56{width:156.641812pt;}
._5f{width:157.627349pt;}
._65{width:161.966131pt;}
._82{width:164.453558pt;}
._29{width:165.871227pt;}
._45{width:169.443441pt;}
._64{width:170.422817pt;}
._63{width:175.694507pt;}
._35{width:180.332237pt;}
._57{width:181.527757pt;}
._2a{width:190.919762pt;}
._46{width:194.233743pt;}
._68{width:199.986586pt;}
._2c{width:202.592819pt;}
._23{width:203.682580pt;}
._6c{width:206.012006pt;}
._67{width:211.559219pt;}
._47{width:214.246748pt;}
._62{width:215.528346pt;}
._6b{width:217.728102pt;}
._3e{width:228.341079pt;}
._5d{width:229.444198pt;}
._6a{width:231.357030pt;}
._30{width:235.780040pt;}
._44{width:237.186386pt;}
._5b{width:241.399398pt;}
._81{width:243.501341pt;}
._32{width:246.539720pt;}
._3c{width:249.643978pt;}
._49{width:252.895519pt;}
._28{width:255.391764pt;}
._31{width:260.914652pt;}
._3d{width:262.383961pt;}
._25{width:264.860283pt;}
._39{width:266.108406pt;}
._33{width:270.985713pt;}
._36{width:272.219904pt;}
._4f{width:273.855375pt;}
._41{width:278.682335pt;}
._3b{width:280.848555pt;}
._24{width:283.969475pt;}
._51{width:291.156941pt;}
._42{width:312.805417pt;}
._4d{width:314.871276pt;}
._84{width:317.386650pt;}
._50{width:320.035922pt;}
._4e{width:329.203169pt;}
._4c{width:331.053834pt;}
._34{width:332.344996pt;}
._22{width:343.492024pt;}
._55{width:420.249190pt;}
._6e{width:558.695188pt;}
._7a{width:581.548749pt;}
._79{width:612.297523pt;}
._53{width:809.653965pt;}
._15{width:1440.833853pt;}
._2f{width:1691.201626pt;}
._85{width:1779.053067pt;}
._10{width:1800.306400pt;}
._78{width:3094.327733pt;}
._52{width:3115.586400pt;}
.fse{font-size:31.880533pt;}
.fsd{font-size:33.474240pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.880000pt;}
.fsc{font-size:43.038720pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y65{bottom:-667.264000pt;}
.y8b{bottom:-636.224000pt;}
.y8a{bottom:-618.144000pt;}
.y89{bottom:-600.192000pt;}
.y88{bottom:-582.117333pt;}
.y87{bottom:-564.197333pt;}
.y86{bottom:-546.277333pt;}
.y85{bottom:-528.197333pt;}
.y84{bottom:-510.277333pt;}
.y83{bottom:-484.197333pt;}
.y82{bottom:-450.277333pt;}
.y81{bottom:-432.197333pt;}
.y80{bottom:-414.277333pt;}
.y7f{bottom:-396.357333pt;}
.y7e{bottom:-378.237333pt;}
.y7d{bottom:-360.317333pt;}
.y7c{bottom:-342.237333pt;}
.y7b{bottom:-324.317333pt;}
.y7a{bottom:-306.237333pt;}
.y79{bottom:-280.317333pt;}
.y78{bottom:-246.397333pt;}
.y77{bottom:-228.317333pt;}
.y76{bottom:-210.397333pt;}
.y75{bottom:-192.317333pt;}
.y74{bottom:-174.397333pt;}
.y73{bottom:-156.290667pt;}
.y72{bottom:-138.370667pt;}
.y71{bottom:-120.450667pt;}
.y70{bottom:-102.370667pt;}
.y6f{bottom:-84.450667pt;}
.y6e{bottom:-66.370667pt;}
.y6d{bottom:-32.930667pt;}
.y6c{bottom:-15.650667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:3.044747pt;}
.y6b{bottom:6.109333pt;}
.y1b{bottom:12.578910pt;}
.y2{bottom:13.168686pt;}
.y31{bottom:56.693333pt;}
.y30{bottom:96.544000pt;}
.y273{bottom:96.850667pt;}
.y108{bottom:99.385333pt;}
.y1dc{bottom:101.472000pt;}
.y20d{bottom:102.720000pt;}
.yce{bottom:102.933333pt;}
.yab{bottom:104.374667pt;}
.y19d{bottom:108.454667pt;}
.y61{bottom:108.724000pt;}
.y1eb{bottom:109.441333pt;}
.y62{bottom:113.546667pt;}
.y272{bottom:114.066667pt;}
.y2f{bottom:114.556000pt;}
.y107{bottom:117.398667pt;}
.y1db{bottom:119.484000pt;}
.ycd{bottom:120.945333pt;}
.yaa{bottom:122.388000pt;}
.y20c{bottom:124.200000pt;}
.y19c{bottom:126.466667pt;}
.y60{bottom:126.737333pt;}
.y1ea{bottom:127.454667pt;}
.y271{bottom:131.281333pt;}
.y106{bottom:135.410667pt;}
.y1da{bottom:137.496000pt;}
.y20b{bottom:137.709333pt;}
.ya9{bottom:140.400000pt;}
.y23f{bottom:140.421333pt;}
.y2e{bottom:140.538667pt;}
.y19b{bottom:144.480000pt;}
.y5f{bottom:144.749333pt;}
.y1e9{bottom:145.466667pt;}
.ycc{bottom:146.928000pt;}
.y270{bottom:148.497333pt;}
.y20a{bottom:151.218667pt;}
.y105{bottom:153.424000pt;}
.y1d9{bottom:155.509333pt;}
.y23e{bottom:157.636000pt;}
.ya8{bottom:158.412000pt;}
.y19a{bottom:162.492000pt;}
.y1e8{bottom:163.478667pt;}
.y209{bottom:164.728000pt;}
.y26f{bottom:165.713333pt;}
.y129{bottom:167.370667pt;}
.y5e{bottom:170.732000pt;}
.y104{bottom:171.436000pt;}
.y166{bottom:171.872400pt;}
.y1d8{bottom:173.521333pt;}
.y23d{bottom:174.852000pt;}
.ya7{bottom:176.425333pt;}
.ycb{bottom:177.878667pt;}
.y208{bottom:178.237333pt;}
.y199{bottom:180.504000pt;}
.y1e7{bottom:181.492000pt;}
.y128{bottom:182.300000pt;}
.y26e{bottom:182.928000pt;}
.y165{bottom:185.308800pt;}
.y144{bottom:187.188000pt;}
.y1d7{bottom:191.534667pt;}
.y207{bottom:191.746667pt;}
.y23c{bottom:192.068000pt;}
.ya6{bottom:194.437333pt;}
.y127{bottom:197.230667pt;}
.y103{bottom:197.418667pt;}
.y198{bottom:198.517333pt;}
.y164{bottom:198.745200pt;}
.y1e6{bottom:199.504000pt;}
.y143{bottom:199.806667pt;}
.y26d{bottom:200.144000pt;}
.y5d{bottom:201.682667pt;}
.y206{bottom:205.256000pt;}
.y2d{bottom:208.464000pt;}
.yca{bottom:208.829333pt;}
.y23b{bottom:209.282667pt;}
.y1d6{bottom:209.546667pt;}
.y6a{bottom:211.749333pt;}
.y126{bottom:212.160000pt;}
.y163{bottom:212.181600pt;}
.y141{bottom:212.426667pt;}
.ya5{bottom:212.449333pt;}
.y142{bottom:216.284000pt;}
.y197{bottom:216.529333pt;}
.y26c{bottom:217.358667pt;}
.y1e5{bottom:217.517333pt;}
.y205{bottom:218.765333pt;}
.y5c{bottom:219.696000pt;}
.y13f{bottom:225.045333pt;}
.y2c{bottom:226.476000pt;}
.y23a{bottom:226.498667pt;}
.yc9{bottom:226.842667pt;}
.y125{bottom:227.089333pt;}
.y1d5{bottom:227.558667pt;}
.y140{bottom:228.904000pt;}
.y69{bottom:229.829333pt;}
.y162{bottom:231.380400pt;}
.y204{bottom:232.274667pt;}
.y102{bottom:232.753333pt;}
.y26b{bottom:234.574667pt;}
.y1e4{bottom:235.529333pt;}
.y13e{bottom:237.665333pt;}
.y5b{bottom:237.708000pt;}
.ya4{bottom:238.432000pt;}
.y124{bottom:242.018667pt;}
.y196{bottom:242.512000pt;}
.y239{bottom:243.713333pt;}
.y161{bottom:244.816800pt;}
.yc8{bottom:244.854667pt;}
.y101{bottom:245.372000pt;}
.y1d4{bottom:245.572000pt;}
.y203{bottom:245.784000pt;}
.y68{bottom:247.749333pt;}
.y26a{bottom:251.790667pt;}
.y1e3{bottom:253.541333pt;}
.y5a{bottom:255.720000pt;}
.y123{bottom:257.232000pt;}
.y13d{bottom:257.272000pt;}
.yff{bottom:257.992000pt;}
.y160{bottom:258.253200pt;}
.y202{bottom:259.293333pt;}
.y2b{bottom:260.429333pt;}
.y238{bottom:260.929333pt;}
.y100{bottom:261.849333pt;}
.yc7{bottom:262.866667pt;}
.y1d3{bottom:263.584000pt;}
.y67{bottom:265.829333pt;}
.y269{bottom:269.005333pt;}
.ya3{bottom:269.382667pt;}
.yfe{bottom:270.610667pt;}
.y1e2{bottom:271.554667pt;}
.y15f{bottom:271.689600pt;}
.y122{bottom:272.161333pt;}
.y13c{bottom:272.201333pt;}
.y201{bottom:272.802667pt;}
.y195{bottom:273.462667pt;}
.y59{bottom:273.733333pt;}
.y237{bottom:278.145333pt;}
.y2a{bottom:278.441333pt;}
.yc6{bottom:280.880000pt;}
.y1d2{bottom:281.597333pt;}
.yfc{bottom:283.230667pt;}
.y66{bottom:283.749333pt;}
.y268{bottom:286.221333pt;}
.y200{bottom:286.312000pt;}
.yfd{bottom:287.088000pt;}
.y121{bottom:287.090667pt;}
.ya1{bottom:287.396000pt;}
.y13b{bottom:287.416000pt;}
.y1e1{bottom:289.566667pt;}
.y15e{bottom:290.887200pt;}
.y194{bottom:291.476000pt;}
.y58{bottom:291.745333pt;}
.ya2{bottom:292.217333pt;}
.y236{bottom:295.360000pt;}
.yfb{bottom:295.849333pt;}
.y29{bottom:296.454667pt;}
.yc5{bottom:298.892000pt;}
.y1d1{bottom:299.609333pt;}
.y1ff{bottom:299.821333pt;}
.y120{bottom:302.020000pt;}
.y13a{bottom:302.345333pt;}
.y267{bottom:303.437333pt;}
.y15d{bottom:304.323600pt;}
.y9f{bottom:305.408000pt;}
.y1e0{bottom:307.580000pt;}
.yfa{bottom:308.469333pt;}
.y193{bottom:309.488000pt;}
.ya0{bottom:310.230667pt;}
.y235{bottom:312.576000pt;}
.y1fe{bottom:313.332000pt;}
.y28{bottom:314.466667pt;}
.y64{bottom:316.896000pt;}
.yc4{bottom:316.905333pt;}
.y11f{bottom:316.949333pt;}
.y139{bottom:317.274667pt;}
.y1d0{bottom:317.621333pt;}
.y57{bottom:317.728000pt;}
.y15c{bottom:317.760000pt;}
.y266{bottom:320.652000pt;}
.y9e{bottom:323.421333pt;}
.y1df{bottom:325.592000pt;}
.y1fd{bottom:326.841333pt;}
.yf9{bottom:327.269067pt;}
.y192{bottom:327.500000pt;}
.y234{bottom:329.790667pt;}
.y15b{bottom:331.196400pt;}
.y11e{bottom:331.878667pt;}
.y138{bottom:332.204000pt;}
.y27{bottom:332.478667pt;}
.yc3{bottom:334.917333pt;}
.y1cf{bottom:335.634667pt;}
.y265{bottom:337.868000pt;}
.yf8{bottom:340.705467pt;}
.y9d{bottom:341.433333pt;}
.y1de{bottom:343.604000pt;}
.y191{bottom:345.513333pt;}
.y233{bottom:347.006667pt;}
.y11d{bottom:347.093333pt;}
.y137{bottom:347.133333pt;}
.y1fc{bottom:348.320000pt;}
.y56{bottom:348.678667pt;}
.y15a{bottom:350.395200pt;}
.y26{bottom:350.492000pt;}
.y1ab{bottom:351.398667pt;}
.yc2{bottom:352.929333pt;}
.y1ce{bottom:353.646667pt;}
.yf7{bottom:354.141867pt;}
.y264{bottom:355.082667pt;}
.y9c{bottom:359.445333pt;}
.y1dd{bottom:361.617333pt;}
.y1fb{bottom:361.829333pt;}
.y11c{bottom:362.306667pt;}
.y136{bottom:362.348000pt;}
.y159{bottom:363.831600pt;}
.y1aa{bottom:364.018667pt;}
.y232{bottom:364.222667pt;}
.yf6{bottom:367.303467pt;}
.y25{bottom:368.504000pt;}
.yc1{bottom:370.942667pt;}
.y1cd{bottom:371.660000pt;}
.y263{bottom:372.298667pt;}
.y1fa{bottom:375.338667pt;}
.y1a9{bottom:376.637333pt;}
.y158{bottom:377.268000pt;}
.y135{bottom:377.277333pt;}
.y9b{bottom:377.458667pt;}
.y11b{bottom:377.521333pt;}
.y55{bottom:379.629333pt;}
.y231{bottom:381.437333pt;}
.y190{bottom:383.849333pt;}
.y24{bottom:386.517333pt;}
.yf5{bottom:387.051867pt;}
.y1f9{bottom:388.848000pt;}
.yc0{bottom:388.954667pt;}
.y1a8{bottom:389.257333pt;}
.y262{bottom:389.514667pt;}
.y1cc{bottom:389.672000pt;}
.y157{bottom:390.704400pt;}
.y134{bottom:392.490667pt;}
.y11a{bottom:392.734667pt;}
.y9a{bottom:395.470667pt;}
.y18f{bottom:396.469333pt;}
.y54{bottom:397.642667pt;}
.y230{bottom:398.653333pt;}
.yf4{bottom:400.488267pt;}
.y1f8{bottom:402.357333pt;}
.y23{bottom:404.529333pt;}
.y261{bottom:406.729333pt;}
.ybf{bottom:406.968000pt;}
.y133{bottom:407.420000pt;}
.y1cb{bottom:407.684000pt;}
.y119{bottom:407.949333pt;}
.y1a7{bottom:408.864000pt;}
.y18e{bottom:409.088000pt;}
.y156{bottom:409.903200pt;}
.y99{bottom:413.484000pt;}
.yf3{bottom:413.924667pt;}
.y53{bottom:415.654667pt;}
.y1f7{bottom:415.866667pt;}
.y22f{bottom:415.868000pt;}
.y18d{bottom:421.708000pt;}
.y22{bottom:422.541333pt;}
.y132{bottom:422.634667pt;}
.y118{bottom:422.878667pt;}
.y1a6{bottom:423.793333pt;}
.y260{bottom:423.945333pt;}
.ybe{bottom:424.980000pt;}
.y1ca{bottom:425.697333pt;}
.yf2{bottom:427.075467pt;}
.y155{bottom:429.100800pt;}
.y22e{bottom:433.084000pt;}
.y52{bottom:433.666667pt;}
.y18c{bottom:434.326667pt;}
.y1f6{bottom:437.346667pt;}
.y131{bottom:437.564000pt;}
.y117{bottom:437.808000pt;}
.y1a5{bottom:438.722667pt;}
.y98{bottom:439.466667pt;}
.y21{bottom:440.554667pt;}
.y25f{bottom:441.160000pt;}
.y154{bottom:442.537200pt;}
.y1c9{bottom:443.709333pt;}
.yf1{bottom:446.919867pt;}
.y18b{bottom:446.946667pt;}
.y22d{bottom:450.300000pt;}
.y1f5{bottom:450.856000pt;}
.ybd{bottom:450.962667pt;}
.y51{bottom:451.680000pt;}
.y130{bottom:452.493333pt;}
.y150{bottom:452.680800pt;}
.y116{bottom:452.737333pt;}
.y1a4{bottom:453.652000pt;}
.y153{bottom:455.974800pt;}
.y25e{bottom:458.376000pt;}
.y20{bottom:458.566667pt;}
.yf0{bottom:460.356267pt;}
.y1c8{bottom:461.722667pt;}
.y1f4{bottom:464.365333pt;}
.y18a{bottom:465.746400pt;}
.y22c{bottom:467.514667pt;}
.y12f{bottom:467.728000pt;}
.y115{bottom:467.840000pt;}
.y1a3{bottom:468.581333pt;}
.y50{bottom:469.692000pt;}
.y97{bottom:470.417333pt;}
.yef{bottom:473.792667pt;}
.y152{bottom:475.172400pt;}
.y25d{bottom:475.592000pt;}
.y1f{bottom:476.580000pt;}
.y1f3{bottom:477.874667pt;}
.y189{bottom:479.182800pt;}
.y1c7{bottom:479.734667pt;}
.ybc{bottom:481.913333pt;}
.y12e{bottom:482.941333pt;}
.y114{bottom:483.053333pt;}
.y1a2{bottom:483.510667pt;}
.y22b{bottom:484.730667pt;}
.yee{bottom:487.229067pt;}
.y4f{bottom:487.704000pt;}
.y96{bottom:488.429333pt;}
.y1f2{bottom:491.384000pt;}
.y188{bottom:492.619200pt;}
.y25c{bottom:492.806667pt;}
.y151{bottom:494.371200pt;}
.y1e{bottom:494.592000pt;}
.y1c6{bottom:497.746667pt;}
.y12d{bottom:497.870667pt;}
.y113{bottom:498.268000pt;}
.y1a1{bottom:498.440000pt;}
.ybb{bottom:499.925333pt;}
.yed{bottom:500.665467pt;}
.y22a{bottom:501.945333pt;}
.y4e{bottom:505.717333pt;}
.y187{bottom:506.055600pt;}
.y95{bottom:506.441333pt;}
.y25b{bottom:510.022667pt;}
.y1d{bottom:512.604000pt;}
.y12c{bottom:513.085333pt;}
.y112{bottom:513.197333pt;}
.y1a0{bottom:513.369333pt;}
.yec{bottom:514.101867pt;}
.y1c5{bottom:515.760000pt;}
.yba{bottom:517.938667pt;}
.y229{bottom:519.161333pt;}
.y1f1{bottom:520.834667pt;}
.y14f{bottom:520.974667pt;}
.y4d{bottom:523.729333pt;}
.y94{bottom:524.454667pt;}
.y186{bottom:525.254400pt;}
.y25a{bottom:527.237333pt;}
.y12b{bottom:528.014667pt;}
.y111{bottom:528.126667pt;}
.y19f{bottom:528.300000pt;}
.yeb{bottom:533.337867pt;}
.y1c4{bottom:533.772000pt;}
.yb9{bottom:535.950667pt;}
.y228{bottom:536.377333pt;}
.y185{bottom:538.690800pt;}
.y1f0{bottom:538.846667pt;}
.y1a{bottom:540.124048pt;}
.y19{bottom:540.805333pt;}
.y4c{bottom:541.742667pt;}
.y93{bottom:542.466667pt;}
.y110{bottom:543.056000pt;}
.y12a{bottom:543.229333pt;}
.y259{bottom:544.453333pt;}
.yea{bottom:547.097067pt;}
.y276{bottom:550.844000pt;}
.y1c3{bottom:551.785333pt;}
.y184{bottom:552.127200pt;}
.y227{bottom:553.592000pt;}
.yb8{bottom:553.964000pt;}
.y1ef{bottom:556.858667pt;}
.y10f{bottom:558.158667pt;}
.y4b{bottom:559.754667pt;}
.y92{bottom:560.480000pt;}
.ye9{bottom:560.533467pt;}
.y258{bottom:561.669333pt;}
.y183{bottom:565.563600pt;}
.y275{bottom:568.060000pt;}
.y1c2{bottom:569.797333pt;}
.y226{bottom:570.808000pt;}
.y14e{bottom:571.976000pt;}
.ye8{bottom:574.007067pt;}
.y18{bottom:574.605333pt;}
.y1ee{bottom:574.872000pt;}
.y4a{bottom:577.766667pt;}
.y91{bottom:578.492000pt;}
.y257{bottom:578.884000pt;}
.y10e{bottom:579.489333pt;}
.yb7{bottom:579.945333pt;}
.y182{bottom:584.762400pt;}
.y274{bottom:585.274667pt;}
.ye7{bottom:587.767467pt;}
.y1c1{bottom:587.809333pt;}
.y225{bottom:588.024000pt;}
.y14d{bottom:589.988000pt;}
.y17{bottom:590.744000pt;}
.y1ed{bottom:592.884000pt;}
.y49{bottom:595.780000pt;}
.y256{bottom:596.100000pt;}
.y90{bottom:596.504000pt;}
.y181{bottom:598.198800pt;}
.y10d{bottom:600.504000pt;}
.ye6{bottom:601.203867pt;}
.y224{bottom:605.238667pt;}
.y1c0{bottom:605.822667pt;}
.y19e{bottom:606.064000pt;}
.y14c{bottom:608.001333pt;}
.yb6{bottom:610.896000pt;}
.y16{bottom:611.224000pt;}
.y180{bottom:611.635200pt;}
.y255{bottom:613.314667pt;}
.y48{bottom:613.792000pt;}
.y8f{bottom:614.517333pt;}
.ye5{bottom:614.640267pt;}
.y10c{bottom:615.116000pt;}
.y223{bottom:622.454667pt;}
.y1bf{bottom:623.834667pt;}
.y17f{bottom:625.071600pt;}
.y15{bottom:627.362667pt;}
.ye4{bottom:628.076667pt;}
.yb5{bottom:628.909333pt;}
.y254{bottom:630.530667pt;}
.y47{bottom:631.805333pt;}
.y8e{bottom:632.529333pt;}
.y14b{bottom:633.984000pt;}
.y10b{bottom:636.446667pt;}
.y222{bottom:639.669333pt;}
.ye3{bottom:641.513067pt;}
.y1be{bottom:641.846667pt;}
.y14{bottom:643.502667pt;}
.y17e{bottom:644.269200pt;}
.yb4{bottom:646.921333pt;}
.y253{bottom:647.746667pt;}
.y46{bottom:649.817333pt;}
.ye2{bottom:654.949467pt;}
.y13{bottom:655.302667pt;}
.y221{bottom:656.885333pt;}
.y17d{bottom:657.705600pt;}
.y1bd{bottom:659.860000pt;}
.y8d{bottom:663.641333pt;}
.y10a{bottom:664.553333pt;}
.yb3{bottom:664.934667pt;}
.y252{bottom:664.961333pt;}
.y45{bottom:667.829333pt;}
.ye1{bottom:668.385867pt;}
.y17c{bottom:671.142000pt;}
.y220{bottom:674.101333pt;}
.y12{bottom:675.781333pt;}
.y1bc{bottom:677.872000pt;}
.y8c{bottom:680.737333pt;}
.ye0{bottom:681.822267pt;}
.y251{bottom:682.177333pt;}
.yb2{bottom:682.946667pt;}
.y17b{bottom:684.579600pt;}
.y44{bottom:685.842667pt;}
.y11{bottom:687.581333pt;}
.y21f{bottom:691.316000pt;}
.ydf{bottom:695.258667pt;}
.y1bb{bottom:695.885333pt;}
.y250{bottom:699.392000pt;}
.y63{bottom:700.674667pt;}
.yb1{bottom:700.958667pt;}
.y17a{bottom:703.777200pt;}
.y43{bottom:703.854667pt;}
.y10{bottom:708.061333pt;}
.y21e{bottom:708.532000pt;}
.yde{bottom:708.695067pt;}
.y109{bottom:709.729333pt;}
.y1ba{bottom:713.897333pt;}
.y24f{bottom:716.608000pt;}
.y179{bottom:717.213600pt;}
.yb0{bottom:718.972000pt;}
.y42{bottom:721.868000pt;}
.yf{bottom:724.200000pt;}
.y21d{bottom:725.746667pt;}
.ydd{bottom:727.893867pt;}
.y178{bottom:730.650000pt;}
.y1b9{bottom:731.909333pt;}
.y24e{bottom:733.824000pt;}
.yaf{bottom:736.984000pt;}
.y41{bottom:739.880000pt;}
.ye{bottom:740.340000pt;}
.ydc{bottom:741.330267pt;}
.y21c{bottom:742.962667pt;}
.y177{bottom:744.086400pt;}
.y1b8{bottom:749.922667pt;}
.y24d{bottom:751.038667pt;}
.ydb{bottom:754.766667pt;}
.y14a{bottom:754.997333pt;}
.yd{bottom:756.480000pt;}
.y40{bottom:757.892000pt;}
.y21b{bottom:760.178667pt;}
.yae{bottom:762.966667pt;}
.y176{bottom:763.285200pt;}
.y1b7{bottom:767.934667pt;}
.yda{bottom:768.203067pt;}
.y24c{bottom:768.254667pt;}
.yc{bottom:768.280000pt;}
.y149{bottom:773.009333pt;}
.y3f{bottom:775.905333pt;}
.y175{bottom:776.721600pt;}
.y21a{bottom:777.393333pt;}
.y1ec{bottom:780.980000pt;}
.yd9{bottom:781.639467pt;}
.y24b{bottom:785.469333pt;}
.y1b6{bottom:785.948000pt;}
.yb{bottom:788.758667pt;}
.y174{bottom:790.158000pt;}
.y148{bottom:791.021333pt;}
.y3e{bottom:793.917333pt;}
.y219{bottom:794.609333pt;}
.yd8{bottom:795.075867pt;}
.y24a{bottom:802.685333pt;}
.y173{bottom:803.594400pt;}
.y1b5{bottom:803.960000pt;}
.ya{bottom:804.553333pt;}
.yd7{bottom:808.512267pt;}
.y147{bottom:809.034667pt;}
.y218{bottom:811.824000pt;}
.y3d{bottom:811.930667pt;}
.y249{bottom:819.901333pt;}
.yd6{bottom:821.948667pt;}
.y1b4{bottom:821.972000pt;}
.y9{bottom:822.565333pt;}
.y172{bottom:822.793200pt;}
.y146{bottom:827.046667pt;}
.y217{bottom:829.040000pt;}
.y3c{bottom:829.942667pt;}
.yd5{bottom:835.385067pt;}
.y171{bottom:836.229600pt;}
.y248{bottom:837.116000pt;}
.y1b3{bottom:839.985333pt;}
.y8{bottom:840.578667pt;}
.y216{bottom:846.256000pt;}
.y3b{bottom:847.954667pt;}
.yd4{bottom:848.535867pt;}
.y170{bottom:849.666000pt;}
.y145{bottom:853.029333pt;}
.y247{bottom:854.332000pt;}
.y1b2{bottom:857.997333pt;}
.y7{bottom:858.590667pt;}
.yd3{bottom:862.617867pt;}
.y16f{bottom:863.102400pt;}
.y215{bottom:863.470667pt;}
.y3a{bottom:865.968000pt;}
.y246{bottom:871.546667pt;}
.y1b1{bottom:876.010667pt;}
.yd2{bottom:876.054267pt;}
.y214{bottom:880.686667pt;}
.y16e{bottom:882.300000pt;}
.y39{bottom:883.980000pt;}
.y245{bottom:888.762667pt;}
.y1b0{bottom:894.022667pt;}
.yd1{bottom:895.253067pt;}
.y213{bottom:897.901333pt;}
.y6{bottom:898.178667pt;}
.y16d{bottom:901.498800pt;}
.y38{bottom:901.993333pt;}
.y244{bottom:905.978667pt;}
.y1af{bottom:912.034667pt;}
.yd0{bottom:914.451867pt;}
.y16c{bottom:914.935200pt;}
.y212{bottom:915.117333pt;}
.y37{bottom:920.005333pt;}
.y243{bottom:923.193333pt;}
.yad{bottom:924.826667pt;}
.y168{bottom:925.077600pt;}
.y5{bottom:925.198667pt;}
.y16b{bottom:928.371600pt;}
.y1ae{bottom:930.048000pt;}
.y211{bottom:932.333333pt;}
.y36{bottom:938.017333pt;}
.y242{bottom:940.409333pt;}
.ycf{bottom:941.054667pt;}
.y16a{bottom:947.570400pt;}
.y1ad{bottom:948.060000pt;}
.y210{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y241{bottom:957.624000pt;}
.yac{bottom:960.852000pt;}
.y1ac{bottom:966.073333pt;}
.y20f{bottom:966.764000pt;}
.y169{bottom:966.768000pt;}
.y34{bottom:974.042667pt;}
.y240{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y20e{bottom:991.949333pt;}
.y33{bottom:992.056000pt;}
.y167{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.h27{height:22.125090pt;}
.ha{height:22.673858pt;}
.h26{height:23.209028pt;}
.h8{height:27.076941pt;}
.h1c{height:28.025015pt;}
.h32{height:29.094175pt;}
.h11{height:29.397999pt;}
.hc{height:29.433775pt;}
.h25{height:29.499997pt;}
.h31{height:29.670026pt;}
.hb{height:30.399505pt;}
.h24{height:30.945242pt;}
.h1e{height:31.116995pt;}
.h10{height:31.157778pt;}
.h20{height:31.332188pt;}
.h13{height:31.448125pt;}
.h1f{height:31.547382pt;}
.h33{height:32.326861pt;}
.h35{height:33.713664pt;}
.h34{height:34.144051pt;}
.h1a{height:34.574438pt;}
.h9{height:34.813542pt;}
.h17{height:35.039062pt;}
.h2c{height:35.052646pt;}
.h16{height:35.203125pt;}
.h1b{height:36.874903pt;}
.hf{height:37.087439pt;}
.hd{height:38.415786pt;}
.he{height:38.681455pt;}
.h15{height:38.776563pt;}
.h23{height:38.855123pt;}
.h18{height:38.932188pt;}
.h4{height:38.947124pt;}
.h19{height:38.958125pt;}
.h22{height:39.993247pt;}
.h21{height:41.284447pt;}
.h2d{height:41.584702pt;}
.h2b{height:41.590035pt;}
.h30{height:41.945692pt;}
.h2f{height:43.109639pt;}
.h2e{height:43.114973pt;}
.h2a{height:43.557639pt;}
.h2{height:45.272024pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h1d{height:48.683332pt;}
.h14{height:49.336436pt;}
.h5{height:69.148877pt;}
.h3{height:91.114522pt;}
.h12{height:198.310667pt;}
.h28{height:793.701333pt;}
.h29{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.724208pt;}
.w4{width:602.800000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w5{width:1122.520000pt;}
.w6{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3f{left:6.629333pt;}
.x8{left:26.021437pt;}
.x41{left:34.949333pt;}
.x2{left:51.605861pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x61{left:114.969200pt;}
.x43{left:116.840000pt;}
.x5e{left:122.517200pt;}
.x44{left:125.726667pt;}
.x92{left:126.686133pt;}
.xed{left:128.394667pt;}
.x5{left:129.929333pt;}
.x5c{left:131.783600pt;}
.xe7{left:133.750667pt;}
.x82{left:135.876000pt;}
.x4d{left:137.297333pt;}
.x6c{left:139.095200pt;}
.x80{left:140.825333pt;}
.x7f{left:141.822667pt;}
.x45{left:142.877333pt;}
.xfa{left:143.825333pt;}
.x63{left:145.458800pt;}
.x5f{left:147.804800pt;}
.x46{left:148.821333pt;}
.x6d{left:150.822800pt;}
.x83{left:151.722667pt;}
.x7e{left:153.610667pt;}
.x5a{left:154.696400pt;}
.x7d{left:155.601333pt;}
.x4c{left:156.498667pt;}
.x60{left:159.705200pt;}
.x5d{left:161.109200pt;}
.x6a{left:162.836000pt;}
.x68{left:163.787600pt;}
.x62{left:164.907200pt;}
.x70{left:166.306667pt;}
.x69{left:167.446400pt;}
.x9{left:168.985333pt;}
.x71{left:173.965333pt;}
.x6b{left:175.467200pt;}
.x4f{left:177.585333pt;}
.x17{left:180.242667pt;}
.x3d{left:182.196000pt;}
.xee{left:183.440000pt;}
.xc{left:184.506667pt;}
.x18{left:187.533333pt;}
.x42{left:191.245333pt;}
.xb4{left:193.250667pt;}
.x19{left:194.174667pt;}
.x1a{left:197.502667pt;}
.x117{left:198.529333pt;}
.x38{left:199.658667pt;}
.x34{left:201.013333pt;}
.x94{left:201.951333pt;}
.x1b{left:204.144000pt;}
.xef{left:206.342667pt;}
.x48{left:207.252000pt;}
.x118{left:208.490667pt;}
.x1c{left:210.800000pt;}
.xea{left:212.886667pt;}
.x35{left:214.297333pt;}
.x1d{left:217.441333pt;}
.x49{left:220.402667pt;}
.xfd{left:221.689333pt;}
.x119{left:223.704000pt;}
.x2e{left:224.741333pt;}
.x11a{left:225.868000pt;}
.xa2{left:229.209333pt;}
.xa{left:231.237333pt;}
.x36{left:237.742667pt;}
.xb3{left:238.864000pt;}
.xb{left:239.984000pt;}
.x107{left:243.472000pt;}
.xf5{left:246.534667pt;}
.x4a{left:248.301333pt;}
.x73{left:249.321333pt;}
.x37{left:251.025333pt;}
.x93{left:252.297333pt;}
.x4b{left:256.473333pt;}
.x74{left:257.492000pt;}
.xc1{left:259.276000pt;}
.xf2{left:260.604000pt;}
.x53{left:262.606667pt;}
.xe0{left:264.365333pt;}
.xf3{left:267.557333pt;}
.x59{left:269.032000pt;}
.x86{left:270.049333pt;}
.xc2{left:272.560000pt;}
.xc3{left:275.814667pt;}
.x87{left:277.158667pt;}
.xdd{left:279.264000pt;}
.x1e{left:282.032000pt;}
.x8c{left:283.370667pt;}
.xbc{left:284.898667pt;}
.x22{left:286.658667pt;}
.xc4{left:289.098667pt;}
.x8d{left:290.685333pt;}
.xc5{left:292.352000pt;}
.x1f{left:295.316000pt;}
.xcc{left:296.589333pt;}
.xa1{left:298.692000pt;}
.x23{left:299.941333pt;}
.xbd{left:301.549333pt;}
.x24{left:303.276000pt;}
.xc6{left:305.636000pt;}
.x64{left:308.099600pt;}
.xcd{left:309.872000pt;}
.xce{left:313.176000pt;}
.x52{left:314.534667pt;}
.x25{left:316.558667pt;}
.x5b{left:318.134000pt;}
.xeb{left:319.566667pt;}
.x4e{left:321.733333pt;}
.x32{left:322.782667pt;}
.xe3{left:323.942667pt;}
.x6f{left:324.918667pt;}
.xcf{left:326.460000pt;}
.x3e{left:330.418667pt;}
.xbe{left:331.484000pt;}
.x33{left:336.065333pt;}
.x90{left:336.973333pt;}
.xbf{left:338.218667pt;}
.x72{left:342.757333pt;}
.x91{left:343.970667pt;}
.x75{left:349.334667pt;}
.xc0{left:351.502667pt;}
.xd0{left:355.478667pt;}
.xd1{left:358.829333pt;}
.x9b{left:360.190667pt;}
.x95{left:361.216533pt;}
.x9a{left:362.648133pt;}
.xe5{left:363.541333pt;}
.x99{left:364.503333pt;}
.x96{left:365.402133pt;}
.xd2{left:372.113333pt;}
.xfb{left:373.582667pt;}
.x9c{left:375.472533pt;}
.xe6{left:376.825333pt;}
.x10b{left:378.278667pt;}
.xfc{left:379.309333pt;}
.x26{left:380.462667pt;}
.x9d{left:383.865333pt;}
.x114{left:384.972000pt;}
.xd3{left:388.746667pt;}
.x100{left:389.684000pt;}
.x115{left:390.697333pt;}
.xd5{left:392.546667pt;}
.x27{left:393.746667pt;}
.xf8{left:394.773333pt;}
.x65{left:399.347600pt;}
.x8e{left:402.037333pt;}
.xd6{left:405.829333pt;}
.x10f{left:407.417333pt;}
.x112{left:409.872000pt;}
.x8f{left:411.812000pt;}
.x50{left:413.877333pt;}
.x30{left:415.630667pt;}
.x51{left:419.788000pt;}
.xd7{left:421.072000pt;}
.xdf{left:422.149333pt;}
.xb1{left:424.164000pt;}
.x66{left:427.802000pt;}
.x31{left:428.914667pt;}
.xab{left:429.814667pt;}
.xa3{left:433.308000pt;}
.xd8{left:434.356000pt;}
.xb2{left:437.446667pt;}
.x9e{left:439.305333pt;}
.x39{left:440.692000pt;}
.xb8{left:443.112000pt;}
.x97{left:444.593733pt;}
.x3a{left:446.404000pt;}
.xd4{left:454.569333pt;}
.x88{left:460.142667pt;}
.x10d{left:461.792000pt;}
.x28{left:466.172000pt;}
.x89{left:467.453333pt;}
.x9f{left:472.600000pt;}
.x110{left:474.361333pt;}
.xe9{left:475.960000pt;}
.xba{left:478.302667pt;}
.x29{left:479.456000pt;}
.x98{left:482.034933pt;}
.x54{left:484.629333pt;}
.x20{left:486.241333pt;}
.x6e{left:488.961333pt;}
.xbb{left:491.585333pt;}
.x111{left:498.272000pt;}
.x21{left:499.524000pt;}
.xf6{left:500.517333pt;}
.x106{left:503.226667pt;}
.x76{left:505.649333pt;}
.xf7{left:507.044000pt;}
.x77{left:513.820000pt;}
.xb0{left:517.669333pt;}
.x55{left:519.658667pt;}
.xec{left:521.113333pt;}
.x81{left:524.600000pt;}
.x108{left:528.701333pt;}
.x10c{left:531.430667pt;}
.xa4{left:533.005333pt;}
.x56{left:535.208000pt;}
.x103{left:542.962667pt;}
.x67{left:547.504400pt;}
.xc7{left:548.758667pt;}
.xd{left:555.546667pt;}
.xf1{left:556.818667pt;}
.xcb{left:558.328000pt;}
.x105{left:559.232000pt;}
.xe{left:562.189333pt;}
.xc8{left:565.296000pt;}
.x104{left:566.873333pt;}
.x57{left:572.153333pt;}
.x10e{left:573.418667pt;}
.x8a{left:575.930667pt;}
.x109{left:577.026667pt;}
.x58{left:578.038667pt;}
.x10a{left:580.457333pt;}
.xc9{left:581.834667pt;}
.xf0{left:584.638667pt;}
.x8b{left:585.701333pt;}
.x113{left:586.728000pt;}
.xdb{left:590.182667pt;}
.x78{left:591.537333pt;}
.xd9{left:593.668000pt;}
.xca{left:595.117333pt;}
.x40{left:596.650667pt;}
.xf{left:599.014667pt;}
.xb5{left:601.636000pt;}
.xdc{left:603.466667pt;}
.x10{left:605.657333pt;}
.xda{left:606.952000pt;}
.x11{left:608.912000pt;}
.xe4{left:610.642667pt;}
.xa0{left:611.982667pt;}
.xff{left:614.248000pt;}
.x12{left:615.553333pt;}
.x116{left:616.833333pt;}
.x2f{left:619.448000pt;}
.xf9{left:620.494667pt;}
.xde{left:621.572000pt;}
.x7{left:623.413317pt;}
.xfe{left:624.829333pt;}
.x2a{left:625.745333pt;}
.x47{left:627.485333pt;}
.xe8{left:629.685333pt;}
.xb9{left:636.700000pt;}
.x2b{left:639.029333pt;}
.xe1{left:640.029333pt;}
.x3b{left:644.466667pt;}
.x2c{left:645.538667pt;}
.x101{left:646.906667pt;}
.xa5{left:647.978667pt;}
.x3c{left:650.036000pt;}
.xe2{left:653.313333pt;}
.xb6{left:656.434667pt;}
.x2d{left:658.821333pt;}
.x13{left:666.596000pt;}
.xb7{left:669.430667pt;}
.x14{left:673.238667pt;}
.x15{left:679.746667pt;}
.xf4{left:680.949333pt;}
.x16{left:686.389333pt;}
.x102{left:690.100000pt;}
.xa6{left:734.704000pt;}
.xa7{left:748.829333pt;}
.x79{left:761.977333pt;}
.x7a{left:770.148000pt;}
.xac{left:773.264000pt;}
.xad{left:783.036000pt;}
.xa8{left:839.106667pt;}
.x7b{left:847.865333pt;}
.x7c{left:861.990667pt;}
.xa9{left:931.602667pt;}
.xaa{left:945.728000pt;}
.x84{left:947.584000pt;}
.x85{left:957.238667pt;}
.xae{left:961.345333pt;}
.xaf{left:968.454667pt;}
}




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