
    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_70d39ef4afd2f528aee0e316.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_6f69dbb9dcfe97465540ca48.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917480;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_97c9707fb73c8353135e0b64.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_bcf09b0705fdd64755f8cf47.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7e38f16c1e97027a8a05de03.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ca5c8831d0baaec8536a6237.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_fc45ea5c839739a572ab67c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706543;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_67fd8ac7c299be07b87f94df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_b3aa8cbd63ac5644c0780008.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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_bd48aa477873a1f328e89889.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_961756671cf716d4abfd83e2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_22123fecb55e10ec18d7dde5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.728027;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_9cc2b87c75c1f01dd642d54b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_0b9163a890df6e5839f4e8a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_fad4bdd8d15914c828c21526.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_425b1d3ec33e02b795b48127.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_a60177a8e5fd551a50b788a7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.728027;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_c7f1802880107355c1f94c60.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910156;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_45e105a27f608e53fadee1ee.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;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_7f8c2bfc6c1e00e44e00b778.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.249958,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249958,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249958,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249979,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249979,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249979,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249980,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250020,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250020,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250020,0.250000,0.000000,0,0);}
.md{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,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);}
.m7{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v5{vertical-align:-43.350922px;}
.v7{vertical-align:-35.325435px;}
.v2{vertical-align:-27.708192px;}
.v4{vertical-align:-7.529400px;}
.v3{vertical-align:-5.119490px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.098032px;}
.v1{vertical-align:27.707690px;}
.lsd8{letter-spacing:-5.288801px;}
.lscb{letter-spacing:-3.082843px;}
.lsee{letter-spacing:-1.325159px;}
.lse8{letter-spacing:-1.155166px;}
.lsb8{letter-spacing:-1.155075px;}
.lsed{letter-spacing:-1.046868px;}
.lsb9{letter-spacing:-1.046787px;}
.ls103{letter-spacing:-0.993951px;}
.lsce{letter-spacing:-0.753718px;}
.ls67{letter-spacing:-0.722546px;}
.lseb{letter-spacing:-0.721979px;}
.lsa7{letter-spacing:-0.713988px;}
.lse2{letter-spacing:-0.685878px;}
.lsbc{letter-spacing:-0.685823px;}
.ls91{letter-spacing:-0.680668px;}
.ls89{letter-spacing:-0.680040px;}
.ls65{letter-spacing:-0.679935px;}
.lse7{letter-spacing:-0.649782px;}
.lsa5{letter-spacing:-0.649727px;}
.lse5{letter-spacing:-0.613681px;}
.lsb5{letter-spacing:-0.613631px;}
.lsa9{letter-spacing:-0.594988px;}
.lse3{letter-spacing:-0.577580px;}
.lsb6{letter-spacing:-0.577535px;}
.ls92{letter-spacing:-0.567225px;}
.lsa0{letter-spacing:-0.555323px;}
.lse1{letter-spacing:-0.541484px;}
.ls93{letter-spacing:-0.538864px;}
.lsa1{letter-spacing:-0.515658px;}
.ls94{letter-spacing:-0.510503px;}
.ls66{letter-spacing:-0.510032px;}
.lse4{letter-spacing:-0.505383px;}
.lsba{letter-spacing:-0.505343px;}
.lsa6{letter-spacing:-0.475992px;}
.ls10{letter-spacing:-0.469835px;}
.ls98{letter-spacing:-0.453779px;}
.ls82{letter-spacing:-0.436326px;}
.lsde{letter-spacing:-0.433186px;}
.ls52{letter-spacing:-0.421646px;}
.ls4d{letter-spacing:-0.373458px;}
.ls6d{letter-spacing:-0.356994px;}
.ls102{letter-spacing:-0.331317px;}
.lse0{letter-spacing:-0.324890px;}
.lsbb{letter-spacing:-0.324864px;}
.lsaa{letter-spacing:-0.317328px;}
.ls79{letter-spacing:-0.317301px;}
.ls2e{letter-spacing:-0.304429px;}
.lsf{letter-spacing:-0.301176px;}
.lsf8{letter-spacing:-0.289902px;}
.ls73{letter-spacing:-0.288791px;}
.ls9f{letter-spacing:-0.288769px;}
.ls78{letter-spacing:-0.288746px;}
.lsd0{letter-spacing:-0.277685px;}
.ls7e{letter-spacing:-0.277639px;}
.ls2f{letter-spacing:-0.265035px;}
.ls101{letter-spacing:-0.259914px;}
.lsf7{letter-spacing:-0.259892px;}
.ls95{letter-spacing:-0.255251px;}
.lse9{letter-spacing:-0.252692px;}
.lsb3{letter-spacing:-0.252672px;}
.lscf{letter-spacing:-0.238016px;}
.ls72{letter-spacing:-0.237996px;}
.ls90{letter-spacing:-0.226889px;}
.ls5c{letter-spacing:-0.216847px;}
.lsdf{letter-spacing:-0.216593px;}
.lsf2{letter-spacing:-0.214213px;}
.lsfc{letter-spacing:-0.214196px;}
.ls4e{letter-spacing:-0.198776px;}
.ls96{letter-spacing:-0.198528px;}
.ls6b{letter-spacing:-0.198330px;}
.ls8d{letter-spacing:-0.169997px;}
.lsd1{letter-spacing:-0.158677px;}
.ls7d{letter-spacing:-0.158650px;}
.ls25{letter-spacing:-0.150588px;}
.ls48{letter-spacing:-0.144564px;}
.lsec{letter-spacing:-0.144395px;}
.ls51{letter-spacing:-0.132517px;}
.ls34{letter-spacing:-0.126494px;}
.ls54{letter-spacing:-0.120470px;}
.ls6e{letter-spacing:-0.118998px;}
.ls80{letter-spacing:-0.118988px;}
.ls88{letter-spacing:-0.116033px;}
.ls5e{letter-spacing:-0.108423px;}
.lse6{letter-spacing:-0.108297px;}
.lsb4{letter-spacing:-0.108288px;}
.ls2d{letter-spacing:-0.104147px;}
.ls50{letter-spacing:-0.102400px;}
.ls22{letter-spacing:-0.090353px;}
.ls97{letter-spacing:-0.085084px;}
.ls4c{letter-spacing:-0.084329px;}
.lscd{letter-spacing:-0.079339px;}
.ls9b{letter-spacing:-0.079332px;}
.ls3e{letter-spacing:-0.078306px;}
.ls32{letter-spacing:-0.072282px;}
.ls2c{letter-spacing:-0.072102px;}
.ls4a{letter-spacing:-0.066259px;}
.ls11{letter-spacing:-0.060235px;}
.lsdb{letter-spacing:-0.056444px;}
.lsb0{letter-spacing:-0.056439px;}
.ls40{letter-spacing:-0.054212px;}
.ls24{letter-spacing:-0.048188px;}
.ls8f{letter-spacing:-0.042499px;}
.ls17{letter-spacing:-0.042165px;}
.lsd2{letter-spacing:-0.039669px;}
.ls83{letter-spacing:-0.039666px;}
.ls7f{letter-spacing:-0.039663px;}
.ls1f{letter-spacing:-0.036141px;}
.lsef{letter-spacing:-0.035702px;}
.lsf9{letter-spacing:-0.035699px;}
.ls1a{letter-spacing:-0.030118px;}
.lsd{letter-spacing:-0.024094px;}
.lsc{letter-spacing:-0.018071px;}
.lsb{letter-spacing:-0.012047px;}
.lsa{letter-spacing:-0.006024px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006024px;}
.ls30{letter-spacing:0.008011px;}
.ls5{letter-spacing:0.012047px;}
.ls2{letter-spacing:0.018071px;}
.ls2a{letter-spacing:0.024034px;}
.ls4{letter-spacing:0.024094px;}
.ls7{letter-spacing:0.030118px;}
.ls12{letter-spacing:0.036141px;}
.ls70{letter-spacing:0.039666px;}
.lsd7{letter-spacing:0.039669px;}
.ls15{letter-spacing:0.042165px;}
.ls57{letter-spacing:0.048068px;}
.ls1{letter-spacing:0.048188px;}
.ls27{letter-spacing:0.052073px;}
.ls13{letter-spacing:0.054212px;}
.ls14{letter-spacing:0.060235px;}
.ls1b{letter-spacing:0.066259px;}
.ls1e{letter-spacing:0.072282px;}
.ls20{letter-spacing:0.078306px;}
.ls99{letter-spacing:0.079332px;}
.lsc5{letter-spacing:0.079339px;}
.ls1c{letter-spacing:0.084329px;}
.ls38{letter-spacing:0.090353px;}
.ls6{letter-spacing:0.096376px;}
.ls53{letter-spacing:0.102400px;}
.lsb7{letter-spacing:0.108288px;}
.ls4b{letter-spacing:0.108423px;}
.lsad{letter-spacing:0.118998px;}
.ls29{letter-spacing:0.120470px;}
.ls4f{letter-spacing:0.126494px;}
.lsf5{letter-spacing:0.129946px;}
.lsff{letter-spacing:0.129957px;}
.ls18{letter-spacing:0.132517px;}
.ls58{letter-spacing:0.138541px;}
.ls76{letter-spacing:0.144373px;}
.ls9a{letter-spacing:0.144384px;}
.ls6a{letter-spacing:0.144395px;}
.ls3{letter-spacing:0.150588px;}
.lse{letter-spacing:0.152214px;}
.ls87{letter-spacing:0.154711px;}
.ls63{letter-spacing:0.198313px;}
.lsea{letter-spacing:0.288791px;}
.ls3f{letter-spacing:0.301176px;}
.lsc4{letter-spacing:0.322088px;}
.ls7b{letter-spacing:0.356964px;}
.ls6f{letter-spacing:0.356994px;}
.ls8b{letter-spacing:0.382494px;}
.lsc8{letter-spacing:0.414113px;}
.ls55{letter-spacing:0.433693px;}
.lsd5{letter-spacing:0.460126px;}
.lsd3{letter-spacing:0.506136px;}
.lsbd{letter-spacing:0.552151px;}
.ls43{letter-spacing:0.602352px;}
.lsbe{letter-spacing:0.644175px;}
.lsc2{letter-spacing:0.690190px;}
.ls85{letter-spacing:0.724238px;}
.lsc1{letter-spacing:0.736200px;}
.lsc0{letter-spacing:0.828224px;}
.lsc3{letter-spacing:0.874111px;}
.ls59{letter-spacing:0.903528px;}
.ls84{letter-spacing:0.921759px;}
.lsb2{letter-spacing:0.968984px;}
.lsdd{letter-spacing:0.969074px;}
.ls86{letter-spacing:1.119275px;}
.lsd4{letter-spacing:1.150312px;}
.lscc{letter-spacing:1.242341px;}
.lsb1{letter-spacing:1.300478px;}
.lsdc{letter-spacing:1.300598px;}
.lsca{letter-spacing:1.318895px;}
.ls3a{letter-spacing:1.505880px;}
.lsc9{letter-spacing:1.518414px;}
.ls46{letter-spacing:1.807056px;}
.lsf6{letter-spacing:1.899206px;}
.ls100{letter-spacing:1.899356px;}
.ls62{letter-spacing:2.110059px;}
.lsa4{letter-spacing:2.110230px;}
.ls61{letter-spacing:2.110400px;}
.ls3c{letter-spacing:2.409408px;}
.ls28{letter-spacing:3.011760px;}
.ls5d{letter-spacing:3.614112px;}
.ls47{letter-spacing:3.915288px;}
.ls2b{letter-spacing:5.119992px;}
.ls21{letter-spacing:5.421168px;}
.ls56{letter-spacing:6.625872px;}
.ls33{letter-spacing:7.228224px;}
.ls5b{letter-spacing:7.529400px;}
.ls44{letter-spacing:7.830576px;}
.ls23{letter-spacing:8.432928px;}
.ls26{letter-spacing:9.035280px;}
.ls5a{letter-spacing:9.264174px;}
.lsfa{letter-spacing:9.353221px;}
.lsf0{letter-spacing:9.353974px;}
.lsfb{letter-spacing:9.603147px;}
.lsf1{letter-spacing:9.603900px;}
.ls16{letter-spacing:9.637632px;}
.ls3b{letter-spacing:9.788220px;}
.ls19{letter-spacing:9.938808px;}
.lsab{letter-spacing:9.995831px;}
.lsa8{letter-spacing:10.075140px;}
.ls37{letter-spacing:10.239984px;}
.ls6c{letter-spacing:10.273465px;}
.ls7a{letter-spacing:10.351971px;}
.ls71{letter-spacing:10.392479px;}
.ls7c{letter-spacing:10.470936px;}
.ls9c{letter-spacing:10.471839px;}
.lsd6{letter-spacing:10.472693px;}
.ls77{letter-spacing:10.670164px;}
.ls81{letter-spacing:10.748570px;}
.ls8a{letter-spacing:11.092312px;}
.ls31{letter-spacing:11.143512px;}
.ls8c{letter-spacing:11.219810px;}
.ls8e{letter-spacing:11.347308px;}
.lsac{letter-spacing:11.423806px;}
.ls45{letter-spacing:12.348216px;}
.ls3d{letter-spacing:12.950568px;}
.ls64{letter-spacing:15.471060px;}
.ls42{letter-spacing:15.962328px;}
.ls35{letter-spacing:18.010325px;}
.ls5f{letter-spacing:18.871437px;}
.ls49{letter-spacing:19.275264px;}
.ls39{letter-spacing:21.082320px;}
.ls1d{letter-spacing:22.588200px;}
.ls41{letter-spacing:24.696432px;}
.lsf3{letter-spacing:44.376477px;}
.lsfd{letter-spacing:44.380342px;}
.lsae{letter-spacing:44.558638px;}
.lsd9{letter-spacing:44.562352px;}
.lsaf{letter-spacing:45.320563px;}
.lsda{letter-spacing:45.324328px;}
.lsf4{letter-spacing:45.481040px;}
.lsfe{letter-spacing:45.484955px;}
.ls74{letter-spacing:49.303314px;}
.lsa2{letter-spacing:49.307179px;}
.ls68{letter-spacing:49.311045px;}
.ls75{letter-spacing:50.530305px;}
.lsa3{letter-spacing:50.534321px;}
.ls69{letter-spacing:50.538337px;}
.ls36{letter-spacing:51.802272px;}
.lsbf{letter-spacing:62.412667px;}
.lsc6{letter-spacing:68.329807px;}
.ls60{letter-spacing:69.800433px;}
.lsc7{letter-spacing:69.954150px;}
.ls9d{letter-spacing:86.991676px;}
.ls9e{letter-spacing:88.218968px;}
.ls8{letter-spacing:707.763600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws70{word-spacing:-98.253668px;}
.ws6f{word-spacing:-97.026376px;}
.ws91{word-spacing:-79.988850px;}
.ws90{word-spacing:-78.364507px;}
.wsca{word-spacing:-69.851900px;}
.wsc3{word-spacing:-69.845877px;}
.wsc9{word-spacing:-68.747287px;}
.wsc2{word-spacing:-68.741314px;}
.ws39{word-spacing:-60.573818px;}
.ws74{word-spacing:-60.569021px;}
.ws46{word-spacing:-60.564224px;}
.ws38{word-spacing:-59.346526px;}
.ws73{word-spacing:-59.341880px;}
.ws45{word-spacing:-59.337233px;}
.wsa9{word-spacing:-53.170015px;}
.ws84{word-spacing:-53.165595px;}
.wsa8{word-spacing:-52.408040px;}
.ws83{word-spacing:-52.403670px;}
.ws96{word-spacing:-40.885892px;}
.wsc0{word-spacing:-36.380555px;}
.wsc7{word-spacing:-36.377694px;}
.wsbf{word-spacing:-36.130629px;}
.wsc6{word-spacing:-36.127768px;}
.wsce{word-spacing:-31.060959px;}
.wsbd{word-spacing:-31.058474px;}
.wscc{word-spacing:-30.729642px;}
.ws35{word-spacing:-29.621989px;}
.wsc1{word-spacing:-26.562441px;}
.wsc8{word-spacing:-26.560350px;}
.ws5d{word-spacing:-26.223439px;}
.wscb{word-spacing:-24.107031px;}
.wsc4{word-spacing:-24.104945px;}
.ws64{word-spacing:-23.162098px;}
.ws62{word-spacing:-23.034600px;}
.ws60{word-spacing:-22.907103px;}
.ws7e{word-spacing:-22.450950px;}
.ws54{word-spacing:-21.774792px;}
.ws47{word-spacing:-21.697307px;}
.wsa6{word-spacing:-21.500757px;}
.ws6e{word-spacing:-21.498983px;}
.ws4e{word-spacing:-21.497158px;}
.ws3f{word-spacing:-21.419623px;}
.ws4c{word-spacing:-21.378194px;}
.ws3b{word-spacing:-21.300608px;}
.ws79{word-spacing:-21.102284px;}
.ws7d{word-spacing:-21.022974px;}
.wscd{word-spacing:-17.101429px;}
.wsc5{word-spacing:-17.100412px;}
.wsbe{word-spacing:-17.066292px;}
.ws5{word-spacing:-15.191317px;}
.ws1d{word-spacing:-15.143129px;}
.ws27{word-spacing:-15.137106px;}
.ws29{word-spacing:-15.131082px;}
.ws22{word-spacing:-15.125059px;}
.wsc{word-spacing:-15.119035px;}
.ws30{word-spacing:-15.113012px;}
.wsd{word-spacing:-15.106988px;}
.ws20{word-spacing:-15.100965px;}
.ws6{word-spacing:-15.094941px;}
.wsb{word-spacing:-15.088918px;}
.wsa{word-spacing:-15.082894px;}
.ws1c{word-spacing:-15.076871px;}
.ws2{word-spacing:-15.070847px;}
.ws11{word-spacing:-15.064824px;}
.ws7{word-spacing:-15.058800px;}
.ws0{word-spacing:-15.052776px;}
.ws21{word-spacing:-15.046753px;}
.ws23{word-spacing:-15.040729px;}
.ws26{word-spacing:-15.034706px;}
.ws2c{word-spacing:-15.010612px;}
.ws32{word-spacing:-14.998565px;}
.ws2f{word-spacing:-14.926283px;}
.ws28{word-spacing:-14.914236px;}
.ws2d{word-spacing:-14.908212px;}
.ws2e{word-spacing:-14.757624px;}
.ws94{word-spacing:-14.309907px;}
.ws9a{word-spacing:-14.033834px;}
.ws97{word-spacing:-13.619717px;}
.ws98{word-spacing:-13.527693px;}
.ws9b{word-spacing:-13.481683px;}
.ws95{word-spacing:-13.435668px;}
.ws18{word-spacing:-13.372214px;}
.ws93{word-spacing:-13.343644px;}
.wsa2{word-spacing:-13.297629px;}
.ws31{word-spacing:-13.251744px;}
.wsa3{word-spacing:-13.113581px;}
.ws61{word-spacing:-12.197284px;}
.ws5f{word-spacing:-11.815712px;}
.ws36{word-spacing:-11.813883px;}
.ws65{word-spacing:-11.772291px;}
.ws63{word-spacing:-11.644793px;}
.ws3d{word-spacing:-11.384137px;}
.ws4d{word-spacing:-11.383186px;}
.wsa5{word-spacing:-11.107403px;}
.ws6d{word-spacing:-11.106475px;}
.ws7a{word-spacing:-11.027143px;}
.wsa1{word-spacing:-10.988395px;}
.ws59{word-spacing:-10.987477px;}
.ws9c{word-spacing:-10.948726px;}
.ws7b{word-spacing:-10.947812px;}
.ws3c{word-spacing:-10.908145px;}
.ws53{word-spacing:-10.907234px;}
.ws4f{word-spacing:-10.867572px;}
.ws3a{word-spacing:-10.828813px;}
.ws9e{word-spacing:-10.790049px;}
.ws41{word-spacing:-10.789148px;}
.ws50{word-spacing:-10.748584px;}
.ws7c{word-spacing:-10.709815px;}
.ws4b{word-spacing:-10.708921px;}
.ws40{word-spacing:-10.670149px;}
.ws5e{word-spacing:-10.636346px;}
.ws57{word-spacing:-10.590818px;}
.ws77{word-spacing:-10.551152px;}
.ws78{word-spacing:-10.313156px;}
.ws9d{word-spacing:-10.274346px;}
.ws7f{word-spacing:-10.179085px;}
.ws3{word-spacing:-10.166316px;}
.ws5a{word-spacing:-10.073503px;}
.ws14{word-spacing:-10.066175px;}
.ws33{word-spacing:-10.062170px;}
.ws44{word-spacing:-10.035482px;}
.ws75{word-spacing:-10.034700px;}
.ws4a{word-spacing:-10.033919px;}
.ws1b{word-spacing:-10.022113px;}
.ws1{word-spacing:-10.014102px;}
.ws16{word-spacing:-9.942000px;}
.wsaf{word-spacing:-9.927185px;}
.ws87{word-spacing:-9.926412px;}
.wsb6{word-spacing:-9.891086px;}
.ws5b{word-spacing:-9.875982px;}
.wsb3{word-spacing:-9.818888px;}
.wsb4{word-spacing:-9.782789px;}
.ws86{word-spacing:-9.782028px;}
.ws43{word-spacing:-9.746691px;}
.ws71{word-spacing:-9.745932px;}
.ws49{word-spacing:-9.745173px;}
.ws99{word-spacing:-9.708651px;}
.wsab{word-spacing:-9.602295px;}
.wsb1{word-spacing:-9.530098px;}
.ws8b{word-spacing:-9.529357px;}
.wsad{word-spacing:-9.457901px;}
.wsae{word-spacing:-9.421800px;}
.ws88{word-spacing:-9.421069px;}
.wsb0{word-spacing:-9.385699px;}
.ws76{word-spacing:-9.384973px;}
.wsac{word-spacing:-9.349604px;}
.ws8c{word-spacing:-9.348877px;}
.wsb5{word-spacing:-9.313503px;}
.wsb7{word-spacing:-8.988614px;}
.ws8a{word-spacing:-8.987913px;}
.wsb2{word-spacing:-8.880316px;}
.ws89{word-spacing:-8.879625px;}
.ws17{word-spacing:-8.708263px;}
.wsaa{word-spacing:-8.390134px;}
.ws85{word-spacing:-8.389358px;}
.ws67{word-spacing:-7.884411px;}
.ws69{word-spacing:-7.685883px;}
.ws68{word-spacing:-7.345547px;}
.ws66{word-spacing:-7.317186px;}
.wsb9{word-spacing:-1.150312px;}
.ws55{word-spacing:-1.029581px;}
.ws8f{word-spacing:-0.991327px;}
.wsa4{word-spacing:-0.952184px;}
.ws6c{word-spacing:-0.952174px;}
.wsa0{word-spacing:-0.832074px;}
.ws51{word-spacing:-0.476107px;}
.ws9f{word-spacing:-0.318751px;}
.wsba{word-spacing:-0.108297px;}
.ws3e{word-spacing:-0.039423px;}
.wsf{word-spacing:-0.030118px;}
.ws4{word-spacing:0.000000px;}
.ws6a{word-spacing:0.226889px;}
.ws24{word-spacing:0.240941px;}
.wsb8{word-spacing:0.322088px;}
.ws8e{word-spacing:0.324864px;}
.wsbb{word-spacing:0.324890px;}
.ws37{word-spacing:0.338783px;}
.ws72{word-spacing:0.554361px;}
.ws8d{word-spacing:0.613631px;}
.ws6b{word-spacing:0.680668px;}
.ws2b{word-spacing:1.174586px;}
.ws1f{word-spacing:1.192657px;}
.ws19{word-spacing:1.493833px;}
.ws15{word-spacing:2.078114px;}
.ws25{word-spacing:2.933454px;}
.ws13{word-spacing:4.451381px;}
.ws9{word-spacing:5.403097px;}
.ws2a{word-spacing:7.511329px;}
.wse{word-spacing:8.101634px;}
.ws34{word-spacing:9.920737px;}
.ws10{word-spacing:9.974949px;}
.ws1a{word-spacing:10.535136px;}
.ws8{word-spacing:11.763935px;}
.ws80{word-spacing:22.530841px;}
.ws12{word-spacing:25.250596px;}
.ws52{word-spacing:34.445515px;}
.ws48{word-spacing:34.445660px;}
.ws58{word-spacing:34.447770px;}
.ws42{word-spacing:34.506103px;}
.ws1e{word-spacing:51.790225px;}
.ws56{word-spacing:53.488944px;}
.wsbc{word-spacing:465.084834px;}
.ws81{word-spacing:541.442045px;}
.wsa7{word-spacing:570.994296px;}
.ws92{word-spacing:581.700147px;}
.ws82{word-spacing:588.180592px;}
.ws5c{word-spacing:669.894047px;}
._12{margin-left:-3077.578020px;}
._73{margin-left:-2581.018085px;}
._79{margin-left:-2576.470327px;}
._5d{margin-left:-2573.922378px;}
._75{margin-left:-2572.814051px;}
._6a{margin-left:-2568.742151px;}
._3e{margin-left:-2565.923144px;}
._114{margin-left:-2564.543758px;}
._112{margin-left:-2562.869219px;}
._4d{margin-left:-2561.525974px;}
._3f{margin-left:-2557.080616px;}
._3a{margin-left:-2556.008430px;}
._ca{margin-left:-2554.737467px;}
._8d{margin-left:-2553.647210px;}
._ef{margin-left:-2550.352344px;}
._85{margin-left:-2549.033194px;}
._eb{margin-left:-2547.171926px;}
._a0{margin-left:-2544.316777px;}
._6c{margin-left:-2542.563933px;}
._48{margin-left:-2541.323088px;}
._56{margin-left:-2537.353588px;}
._59{margin-left:-2535.401968px;}
._35{margin-left:-2533.751523px;}
._96{margin-left:-2532.167338px;}
._33{margin-left:-2530.806022px;}
._98{margin-left:-2528.848378px;}
._16{margin-left:-2527.119628px;}
._1c{margin-left:-2525.782406px;}
._a3{margin-left:-2523.836809px;}
._e4{margin-left:-2522.252624px;}
._a{margin-left:-2520.837096px;}
._92{margin-left:-2518.698747px;}
._64{margin-left:-2516.361621px;}
._f4{margin-left:-2513.867884px;}
._20{margin-left:-2511.590993px;}
._e3{margin-left:-2510.530854px;}
._113{margin-left:-2508.808127px;}
._fc{margin-left:-2506.645683px;}
._82{margin-left:-2505.109686px;}
._89{margin-left:-2503.748370px;}
._b1{margin-left:-2500.929363px;}
._ab{margin-left:-2497.839297px;}
._a9{margin-left:-2495.688900px;}
._a2{margin-left:-2494.020385px;}
._97{margin-left:-2492.671117px;}
._a4{margin-left:-2491.201378px;}
._c2{margin-left:-2488.454653px;}
._99{margin-left:-2486.689762px;}
._8b{margin-left:-2484.406848px;}
._d2{margin-left:-2482.991320px;}
._1{margin-left:-2481.509534px;}
._37{margin-left:-2479.449491px;}
._43{margin-left:-2478.142387px;}
._91{margin-left:-2476.895518px;}
._c4{margin-left:-2475.624555px;}
._8f{margin-left:-2473.835570px;}
._d0{margin-left:-2470.962351px;}
._cc{margin-left:-2466.884428px;}
._9d{margin-left:-2463.499210px;}
._9b{margin-left:-2461.360860px;}
._d9{margin-left:-2460.101944px;}
._9a{margin-left:-2458.168394px;}
._10b{margin-left:-2454.475977px;}
._b6{margin-left:-2442.657830px;}
._e1{margin-left:-2440.856798px;}
._2f{margin-left:-2439.549694px;}
._e5{margin-left:-2437.206545px;}
._de{margin-left:-2435.230830px;}
._ec{margin-left:-2432.857563px;}
._c{margin-left:-2431.526365px;}
._f6{margin-left:-2430.309614px;}
._c6{margin-left:-2427.123172px;}
._d5{margin-left:-2425.725716px;}
._9f{margin-left:-2422.201956px;}
._bb{margin-left:-2420.009395px;}
._4{margin-left:-2419.003467px;}
._f1{margin-left:-2415.292979px;}
._104{margin-left:-2409.462212px;}
._b{margin-left:-2406.763675px;}
._e9{margin-left:-2404.920478px;}
._7e{margin-left:-2403.830220px;}
._86{margin-left:-2399.878791px;}
._90{margin-left:-2397.300725px;}
._d3{margin-left:-2393.578189px;}
._fa{margin-left:-2391.819322px;}
._f2{margin-left:-2388.536503px;}
._8a{margin-left:-2386.313824px;}
._102{margin-left:-2383.627334px;}
._c1{margin-left:-2382.278066px;}
._8{margin-left:-2380.603527px;}
._be{margin-left:-2377.844755px;}
._dc{margin-left:-2376.495487px;}
._e7{margin-left:-2369.044392px;}
._af{margin-left:-2365.117057px;}
._8c{margin-left:-2363.671413px;}
._103{margin-left:-2360.641582px;}
._b9{margin-left:-2358.280362px;}
._f7{margin-left:-2356.852788px;}
._83{margin-left:-2354.521686px;}
._41{margin-left:-2352.220701px;}
._bf{margin-left:-2350.178728px;}
._107{margin-left:-2341.041048px;}
._b4{margin-left:-2336.469196px;}
._ad{margin-left:-2331.945533px;}
._5{margin-left:-2330.283041px;}
._87{margin-left:-2325.795519px;}
._9{margin-left:-2324.584791px;}
._df{margin-left:-2320.338210px;}
._db{margin-left:-2316.037416px;}
._100{margin-left:-2311.314977px;}
._36{margin-left:-2305.436021px;}
._cd{margin-left:-2302.436308px;}
._10c{margin-left:-2295.081590px;}
._c8{margin-left:-2291.479525px;}
._b8{margin-left:-2268.011892px;}
._fb{margin-left:-2264.421874px;}
._ba{margin-left:-2247.766841px;}
._6{margin-left:-2245.495974px;}
._3d{margin-left:-2235.990357px;}
._101{margin-left:-2228.172330px;}
._a8{margin-left:-2224.479912px;}
._d7{margin-left:-2184.224728px;}
._58{margin-left:-2182.821248px;}
._bc{margin-left:-2179.393865px;}
._d1{margin-left:-2161.148623px;}
._52{margin-left:-2156.853853px;}
._c7{margin-left:-2134.524665px;}
._80{margin-left:-2128.501145px;}
._a6{margin-left:-2125.880914px;}
._b5{margin-left:-2123.194424px;}
._29{margin-left:-2117.550385px;}
._108{margin-left:-2110.364326px;}
._94{margin-left:-2091.342050px;}
._47{margin-left:-2080.710537px;}
._a7{margin-left:-2074.488241px;}
._f5{margin-left:-2015.252945px;}
._46{margin-left:-1961.794205px;}
._e2{margin-left:-1960.095573px;}
._93{margin-left:-1956.836848px;}
._7c{margin-left:-1944.952443px;}
._88{margin-left:-1930.056278px;}
._10{margin-left:-1926.725272px;}
._53{margin-left:-1914.051786px;}
._ea{margin-left:-1902.083052px;}
._e0{margin-left:-1875.097682px;}
._f{margin-left:-1828.879213px;}
._e8{margin-left:-1719.281267px;}
._b7{margin-left:-1706.330699px;}
._4b{margin-left:-1679.899493px;}
._d4{margin-left:-1675.923970px;}
._c9{margin-left:-1647.764014px;}
._78{margin-left:-1632.084791px;}
._e6{margin-left:-1617.580155px;}
._b0{margin-left:-1604.635610px;}
._10a{margin-left:-1594.064333px;}
._70{margin-left:-1589.853892px;}
._2d{margin-left:-1561.452996px;}
._d8{margin-left:-1543.406530px;}
._dd{margin-left:-1536.383105px;}
._f9{margin-left:-1518.276404px;}
._7b{margin-left:-1507.608750px;}
._ac{margin-left:-1494.772629px;}
._da{margin-left:-1460.661435px;}
._8e{margin-left:-1445.584565px;}
._bd{margin-left:-1430.224589px;}
._c5{margin-left:-1415.009177px;}
._115{margin-left:-1404.437900px;}
._10d{margin-left:-1397.950569px;}
._f3{margin-left:-1383.192945px;}
._9e{margin-left:-1358.586865px;}
._d6{margin-left:-1338.914049px;}
._63{margin-left:-1337.871980px;}
._5e{margin-left:-1329.583617px;}
._6b{margin-left:-1300.429780px;}
._fe{margin-left:-1286.443166px;}
._95{margin-left:-1276.167041px;}
._10e{margin-left:-1262.626168px;}
._7a{margin-left:-1253.849900px;}
._44{margin-left:-1247.687839px;}
._ae{margin-left:-1234.369836px;}
._84{margin-left:-1231.315911px;}
._2{margin-left:-1222.160161px;}
._109{margin-left:-1194.464016px;}
._f0{margin-left:-1166.888341px;}
._c0{margin-left:-1150.564602px;}
._6e{margin-left:-1148.456370px;}
._cf{margin-left:-1142.095533px;}
._13{margin-left:-1104.112680px;}
._fd{margin-left:-1061.832129px;}
._cb{margin-left:-1056.928984px;}
._77{margin-left:-1054.344894px;}
._ff{margin-left:-1027.040278px;}
._38{margin-left:-999.398344px;}
._c3{margin-left:-963.678871px;}
._106{margin-left:-943.349491px;}
._ce{margin-left:-941.680976px;}
._7f{margin-left:-939.669120px;}
._57{margin-left:-928.525608px;}
._7d{margin-left:-904.558022px;}
._b2{margin-left:-891.209902px;}
._11{margin-left:-888.469200px;}
._ee{margin-left:-864.248626px;}
._4f{margin-left:-858.688917px;}
._b3{margin-left:-851.478764px;}
._a5{margin-left:-840.949651px;}
._76{margin-left:-834.859872px;}
._4a{margin-left:-825.306569px;}
._ed{margin-left:-779.051959px;}
._4e{margin-left:-774.745142px;}
._110{margin-left:-732.128738px;}
._a1{margin-left:-723.737975px;}
._5a{margin-left:-701.330481px;}
._f8{margin-left:-685.500670px;}
._aa{margin-left:-655.358976px;}
._2a{margin-left:-647.450094px;}
._65{margin-left:-618.729951px;}
._81{margin-left:-599.798028px;}
._9c{margin-left:-595.147870px;}
._3b{margin-left:-587.323318px;}
._28{margin-left:-583.588735px;}
._6f{margin-left:-563.524390px;}
._49{margin-left:-558.922421px;}
._d{margin-left:-550.579846px;}
._27{margin-left:-540.791626px;}
._105{margin-left:-534.912670px;}
._14{margin-left:-493.247982px;}
._55{margin-left:-469.677948px;}
._7{margin-left:-394.507672px;}
._50{margin-left:-312.753205px;}
._118{margin-left:-295.773308px;}
._116{margin-left:-248.593389px;}
._54{margin-left:-195.764400px;}
._10f{margin-left:-193.279698px;}
._e{margin-left:-165.646800px;}
._3{margin-left:-135.529200px;}
._72{margin-left:-25.479490px;}
._71{margin-left:-24.202503px;}
._67{margin-left:-21.750931px;}
._68{margin-left:-20.281192px;}
._5c{margin-left:-18.311501px;}
._5b{margin-left:-17.203173px;}
._74{margin-left:-15.661152px;}
._69{margin-left:-13.426426px;}
._51{margin-left:-11.788029px;}
._24{margin-left:-10.378525px;}
._25{margin-left:-9.366574px;}
._34{margin-left:-7.631800px;}
._31{margin-left:-6.336743px;}
._32{margin-left:-5.288651px;}
._4c{margin-left:-4.264652px;}
._66{margin-left:-2.367243px;}
._0{margin-left:-1.289033px;}
._1b{width:1.517927px;}
._26{width:3.053925px;}
._17{width:4.457405px;}
._18{width:5.613921px;}
._22{width:6.631896px;}
._1e{width:7.890811px;}
._15{width:9.023233px;}
._1f{width:10.288172px;}
._23{width:11.492876px;}
._1d{width:12.601204px;}
._21{width:13.721579px;}
._19{width:16.721292px;}
._40{width:17.769384px;}
._42{width:18.980112px;}
._3c{width:20.154698px;}
._1a{width:21.389520px;}
._2b{width:22.570129px;}
._30{width:24.413327px;}
._45{width:25.569842px;}
._39{width:26.840805px;}
._2c{width:28.587626px;}
._111{width:29.798353px;}
._5f{width:33.412465px;}
._61{width:34.918345px;}
._62{width:35.930297px;}
._6d{width:37.279565px;}
._2e{width:40.032314px;}
._60{width:51.790225px;}
._117{width:604.708127px;}
._119{width:648.010930px;}
.fc1{color:rgb(33,29,29);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:25.499568px;}
.fs1c{font-size:25.501927px;}
.fs17{font-size:28.219539px;}
.fs1b{font-size:28.221898px;}
.fs14{font-size:28.361192px;}
.fs1f{font-size:32.486450px;}
.fs23{font-size:32.489261px;}
.fs10{font-size:32.919942px;}
.fs22{font-size:35.699395px;}
.fs1e{font-size:35.702206px;}
.fsd{font-size:36.093233px;}
.fs15{font-size:36.096044px;}
.fs9{font-size:36.098855px;}
.fs5{font-size:38.671049px;}
.fs11{font-size:38.677624px;}
.fsf{font-size:39.662671px;}
.fsa{font-size:39.665984px;}
.fs1a{font-size:39.669296px;}
.fs1{font-size:40.056408px;}
.fs1d{font-size:41.411298px;}
.fs21{font-size:41.414611px;}
.fs6{font-size:42.495984px;}
.fs12{font-size:42.499247px;}
.fs7{font-size:42.502559px;}
.fs19{font-size:46.012565px;}
.fs20{font-size:47.480196px;}
.fs24{font-size:47.483960px;}
.fs4{font-size:50.296392px;}
.fse{font-size:52.751478px;}
.fs16{font-size:52.755996px;}
.fsb{font-size:52.760012px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:56.519190px;}
.fs13{font-size:56.528727px;}
.fs0{font-size:60.235200px;}
.fs3{font-size:66.000000px;}
.fsc{font-size:66.110140px;}
.y0{bottom:0.000000px;}
.y3{bottom:47.811815px;}
.y2{bottom:65.129435px;}
.y9c{bottom:92.988090px;}
.y32{bottom:94.493970px;}
.y3f{bottom:94.494095px;}
.y1{bottom:97.065000px;}
.y6a{bottom:108.046890px;}
.ya7{bottom:109.326888px;}
.y81{bottom:112.564655px;}
.y98{bottom:122.428044px;}
.y9b{bottom:127.623330px;}
.y4f{bottom:128.978747px;}
.y3d{bottom:129.129210px;}
.y31{bottom:129.129335px;}
.y69{bottom:142.682130px;}
.ya6{bottom:143.962128px;}
.y47{bottom:146.823425px;}
.y80{bottom:147.199895px;}
.y97{bottom:157.063284px;}
.y9d{bottom:157.740930px;}
.y19{bottom:163.613862px;}
.y3c{bottom:163.764450px;}
.y30{bottom:163.764575px;}
.y88{bottom:177.317370px;}
.ya5{bottom:178.597368px;}
.y46{bottom:181.458665px;}
.y96{bottom:191.698524px;}
.y68{bottom:192.376170px;}
.y7f{bottom:196.893935px;}
.y2f{bottom:198.249227px;}
.y18{bottom:198.399690px;}
.y3e{bottom:198.399815px;}
.y58{bottom:202.917330px;}
.y87{bottom:211.952610px;}
.y44{bottom:213.082020px;}
.ya4{bottom:213.232608px;}
.y42{bottom:223.171416px;}
.y45{bottom:223.171541px;}
.y95{bottom:226.333764px;}
.y67{bottom:227.011410px;}
.y7e{bottom:231.529175px;}
.y4d{bottom:232.884467px;}
.y17{bottom:233.034930px;}
.y2e{bottom:233.035055px;}
.y43{bottom:234.540935px;}
.y57{bottom:237.552570px;}
.y56{bottom:237.552695px;}
.y86{bottom:246.587850px;}
.ya3{bottom:247.867848px;}
.y94{bottom:260.969004px;}
.y72{bottom:261.646650px;}
.y16{bottom:267.670170px;}
.y2d{bottom:267.670295px;}
.y55{bottom:272.187935px;}
.y66{bottom:276.705450px;}
.y9a{bottom:281.223090px;}
.y7d{bottom:281.223215px;}
.ya2{bottom:282.503088px;}
.y93{bottom:295.604244px;}
.y85{bottom:296.281890px;}
.y15{bottom:302.305410px;}
.y2c{bottom:302.305535px;}
.y65{bottom:311.340690px;}
.y7c{bottom:315.858455px;}
.ya1{bottom:317.138328px;}
.y54{bottom:321.881975px;}
.y1a7{bottom:323.503218px;}
.y1b5{bottom:323.508765px;}
.y1c3{bottom:325.686017px;}
.y8a{bottom:330.917130px;}
.y1b4{bottom:334.220027px;}
.y1a6{bottom:334.223792px;}
.y1c2{bottom:336.397278px;}
.y14{bottom:336.940650px;}
.y2b{bottom:336.940775px;}
.y92{bottom:345.298284px;}
.y64{bottom:345.975930px;}
.y1ac{bottom:349.882434px;}
.y19f{bottom:349.886198px;}
.ya0{bottom:351.622980px;}
.y1bb{bottom:352.058430px;}
.y53{bottom:356.517215px;}
.y1a0{bottom:359.796144px;}
.y1ad{bottom:359.804928px;}
.y1bc{bottom:361.982180px;}
.y1ab{bottom:363.375119px;}
.y99{bottom:365.552370px;}
.y7b{bottom:365.552495px;}
.y19e{bottom:366.361781px;}
.y1ba{bottom:368.526483px;}
.ye0{bottom:369.409694px;}
.yd7{bottom:369.766086px;}
.yea{bottom:369.772360px;}
.y4a{bottom:371.425302px;}
.y13{bottom:371.575890px;}
.y2a{bottom:371.576015px;}
.y1ae{bottom:378.647001px;}
.y91{bottom:379.933524px;}
.ydf{bottom:380.129288px;}
.yd6{bottom:380.485680px;}
.ye9{bottom:380.491955px;}
.y84{bottom:380.611170px;}
.y71{bottom:380.611295px;}
.y1a1{bottom:383.213205px;}
.y1bd{bottom:385.381672px;}
.y9f{bottom:386.258220px;}
.y52{bottom:391.152455px;}
.y63{bottom:395.669970px;}
.yd8{bottom:396.878439px;}
.ycf{bottom:397.234830px;}
.ye1{bottom:397.241105px;}
.y1af{bottom:397.489073px;}
.y7a{bottom:400.187735px;}
.y49{bottom:406.060542px;}
.y12{bottom:406.211130px;}
.y29{bottom:406.211255px;}
.y1a2{bottom:406.603412px;}
.yd9{bottom:406.802188px;}
.yd0{bottom:407.157325px;}
.ye2{bottom:407.163599px;}
.y1be{bottom:408.780663px;}
.y83{bottom:415.246410px;}
.y89{bottom:415.246535px;}
.y1b0{bottom:416.430659px;}
.y9e{bottom:417.580524px;}
.ydd{bottom:417.608132px;}
.ye6{bottom:418.571895px;}
.yd4{bottom:425.706002px;}
.y51{bottom:425.787695px;}
.y1c4{bottom:427.427724px;}
.y90{bottom:429.627564px;}
.y1a3{bottom:430.020473px;}
.y62{bottom:430.305210px;}
.y70{bottom:430.305335px;}
.y1bf{bottom:432.180156px;}
.y79{bottom:434.822975px;}
.y1b1{bottom:435.272732px;}
.y48{bottom:440.695782px;}
.y11{bottom:440.846370px;}
.y28{bottom:440.846495px;}
.yda{bottom:445.764323px;}
.yd1{bottom:446.119962px;}
.ye3{bottom:446.126236px;}
.y1b6{bottom:449.645729px;}
.y82{bottom:449.881775px;}
.y1a4{bottom:453.411182px;}
.y1b2{bottom:454.205031px;}
.y1c0{bottom:455.588433px;}
.y8f{bottom:464.262804px;}
.y61{bottom:464.940450px;}
.y6f{bottom:464.940575px;}
.y1a9{bottom:465.707570px;}
.y1b7{bottom:468.092759px;}
.y1b3{bottom:473.047104px;}
.ya8{bottom:475.331022px;}
.y10{bottom:475.481610px;}
.y27{bottom:475.481735px;}
.y1a5{bottom:476.918471px;}
.y1c5{bottom:478.001449px;}
.y1c1{bottom:479.086938px;}
.y1a8{bottom:479.411957px;}
.y1b8{bottom:479.997995px;}
.y160{bottom:482.465329px;}
.y78{bottom:484.517015px;}
.ydb{bottom:484.835384px;}
.yd2{bottom:485.191022px;}
.ye4{bottom:485.197297px;}
.yd5{bottom:491.745114px;}
.y163{bottom:493.768013px;}
.y1c6{bottom:494.086757px;}
.y1b9{bottom:494.088012px;}
.y1aa{bottom:494.271228px;}
.y19d{bottom:494.274992px;}
.y178{bottom:494.294827px;}
.y8e{bottom:498.898169px;}
.y60{bottom:499.575815px;}
.y122{bottom:500.484802px;}
.y164{bottom:505.072152px;}
.yde{bottom:506.857875px;}
.y120{bottom:508.225716px;}
.yf{bottom:510.116850px;}
.y26{bottom:510.116975px;}
.ye8{bottom:510.189634px;}
.y121{bottom:511.196064px;}
.y6e{bottom:514.634615px;}
.y162{bottom:516.385075px;}
.y77{bottom:519.152255px;}
.ye7{bottom:521.498793px;}
.ydc{bottom:523.906444px;}
.yd3{bottom:524.262083px;}
.ye5{bottom:524.268357px;}
.yc4{bottom:526.695083px;}
.y183{bottom:527.172234px;}
.y114{bottom:527.465843px;}
.y161{bottom:527.682940px;}
.y19a{bottom:528.196232px;}
.y190{bottom:528.862584px;}
.y5f{bottom:534.211055px;}
.y115{bottom:537.374533px;}
.y182{bottom:537.892807px;}
.y199{bottom:538.916805px;}
.y165{bottom:538.988334px;}
.y18f{bottom:539.583157px;}
.y21a{bottom:540.364395px;}
.y20b{bottom:541.059158px;}
.y50{bottom:544.601627px;}
.ye{bottom:544.752090px;}
.y25{bottom:544.752215px;}
.y8d{bottom:548.592209px;}
.y6d{bottom:549.269855px;}
.y218{bottom:549.471769px;}
.y219{bottom:550.013886px;}
.y209{bottom:550.160709px;}
.y20a{bottom:550.700316px;}
.y116{bottom:553.248014px;}
.yf5{bottom:553.533642px;}
.y17b{bottom:553.553959px;}
.y15f{bottom:553.707885px;}
.yce{bottom:554.189954px;}
.y152{bottom:554.201562px;}
.yc0{bottom:554.418171px;}
.y193{bottom:554.577957px;}
.y189{bottom:555.244309px;}
.y15d{bottom:559.825949px;}
.y15e{bottom:561.867671px;}
.y17c{bottom:563.465159px;}
.y210{bottom:564.196765px;}
.yf4{bottom:564.253236px;}
.y194{bottom:564.487902px;}
.y201{bottom:564.885706px;}
.ycd{bottom:564.909549px;}
.y151{bottom:564.913313px;}
.ybf{bottom:565.130411px;}
.y18a{bottom:565.154254px;}
.y113{bottom:567.138251px;}
.y76{bottom:568.846295px;}
.y117{bottom:569.102923px;}
.y17a{bottom:570.029541px;}
.y192{bottom:571.053539px;}
.y188{bottom:571.719891px;}
.y211{bottom:573.121614px;}
.y202{bottom:573.814319px;}
.y157{bottom:574.357691px;}
.y3b{bottom:579.387330px;}
.y24{bottom:579.387455px;}
.y148{bottom:580.581995px;}
.yeb{bottom:580.998622px;}
.yc5{bottom:581.654934px;}
.yb5{bottom:581.885836px;}
.y158{bottom:582.348894px;}
.y8c{bottom:583.227449px;}
.y5e{bottom:583.905095px;}
.y118{bottom:585.075415px;}
.yd{bottom:586.314378px;}
.y17d{bottom:586.882220px;}
.y149{bottom:590.491940px;}
.yec{bottom:590.923626px;}
.yc6{bottom:591.579938px;}
.yb6{bottom:591.802056px;}
.y195{bottom:593.753049px;}
.y18b{bottom:594.419401px;}
.y203{bottom:594.875557px;}
.y212{bottom:598.382375px;}
.y119{bottom:600.939610px;}
.y75{bottom:603.481535px;}
.yf2{bottom:604.105351px;}
.ycb{bottom:604.770394px;}
.ybd{bottom:604.997855px;}
.y20d{bottom:605.412701px;}
.y14a{bottom:607.150236px;}
.y17e{bottom:610.272427px;}
.y159{bottom:610.998888px;}
.y184{bottom:611.072087px;}
.y20f{bottom:611.155124px;}
.y200{bottom:611.834024px;}
.yc{bottom:613.871982px;}
.y3a{bottom:614.022570px;}
.y23{bottom:614.022695px;}
.yb7{bottom:615.212341px;}
.y204{bottom:615.945077px;}
.y11a{bottom:616.903318px;}
.y8b{bottom:618.163865px;}
.y5d{bottom:618.540335px;}
.yed{bottom:620.176976px;}
.ybc{bottom:621.956048px;}
.yca{bottom:622.321224px;}
.y196{bottom:623.008909px;}
.y213{bottom:623.642633px;}
.y18c{bottom:623.675261px;}
.y14b{bottom:623.908045px;}
.y19c{bottom:625.782238px;}
.yf1{bottom:628.507881px;}
.yc7{bottom:630.542576px;}
.y147{bottom:632.153365px;}
.y11b{bottom:632.776298px;}
.y17f{bottom:633.689990px;}
.y205{bottom:637.005813px;}
.yb8{bottom:638.613339px;}
.y15a{bottom:639.648883px;}
.y14c{bottom:640.674638px;}
.y4c{bottom:648.507347px;}
.yb{bottom:648.657810px;}
.y22{bottom:648.657935px;}
.y11c{bottom:648.731222px;}
.y214{bottom:648.992115px;}
.yee{bottom:649.421542px;}
.y197{bottom:652.264769px;}
.y18d{bottom:652.931121px;}
.y5c{bottom:653.175575px;}
.y180{bottom:657.080197px;}
.y14d{bottom:657.332934px;}
.y206{bottom:658.067050px;}
.yb9{bottom:662.014715px;}
.y11d{bottom:664.604201px;}
.y186{bottom:665.813197px;}
.y6c{bottom:668.234375px;}
.y15b{bottom:668.376305px;}
.yc8{bottom:669.604224px;}
.y14e{bottom:674.090241px;}
.y215{bottom:674.252876px;}
.y185{bottom:678.316117px;}
.yef{bottom:678.675394px;}
.y207{bottom:679.128288px;}
.y19b{bottom:680.523523px;}
.y11e{bottom:680.567407px;}
.y181{bottom:680.587486px;}
.y198{bottom:681.619641px;}
.y18e{bottom:682.285993px;}
.y39{bottom:683.142462px;}
.y4b{bottom:683.142587px;}
.ya{bottom:683.293050px;}
.y21{bottom:683.293175px;}
.yba{bottom:685.424498px;}
.y5b{bottom:687.810815px;}
.y14f{bottom:690.848050px;}
.y217{bottom:692.547938px;}
.yf3{bottom:693.954680px;}
.y153{bottom:696.403066px;}
.y11f{bottom:696.440888px;}
.y20c{bottom:696.986519px;}
.y15c{bottom:697.011993px;}
.y179{bottom:697.944008px;}
.y177{bottom:697.947019px;}
.y191{bottom:698.968006px;}
.y216{bottom:699.602358px;}
.y187{bottom:699.634358px;}
.y208{bottom:700.287031px;}
.y6b{bottom:702.869615px;}
.ycc{bottom:707.108542px;}
.y150{bottom:707.605357px;}
.yf0{bottom:708.037168px;}
.yc9{bottom:708.675285px;}
.ybb{bottom:708.925010px;}
.ybe{bottom:710.313557px;}
.y20e{bottom:715.037000px;}
.y1e2{bottom:715.047918px;}
.y1df{bottom:715.129863px;}
.y1ff{bottom:715.728450px;}
.y156{bottom:716.836527px;}
.y38{bottom:717.777702px;}
.y9{bottom:717.928290px;}
.y20{bottom:717.928415px;}
.yc1{bottom:721.982872px;}
.y74{bottom:722.370761px;}
.y174{bottom:723.980748px;}
.y173{bottom:734.692499px;}
.y5a{bottom:737.429561px;}
.y102{bottom:741.930524px;}
.y145{bottom:742.087700px;}
.y138{bottom:742.962604px;}
.y12c{bottom:742.964875px;}
.y1fe{bottom:743.142431px;}
.y1f1{bottom:743.765388px;}
.y167{bottom:749.165261px;}
.y1fc{bottom:752.249805px;}
.y4e{bottom:752.337773px;}
.y37{bottom:752.488236px;}
.y8{bottom:752.488361px;}
.y101{bottom:752.650118px;}
.y1fd{bottom:752.791922px;}
.y144{bottom:752.799451px;}
.y1ef{bottom:752.877255px;}
.y1f0{bottom:753.405568px;}
.y12b{bottom:753.676626px;}
.y137{bottom:753.684156px;}
.y110{bottom:754.634115px;}
.yb1{bottom:755.831290px;}
.y168{bottom:759.089010px;}
.y111{bottom:765.851666px;}
.y1f4{bottom:766.976057px;}
.y1e5{bottom:767.066409px;}
.y1d1{bottom:767.742800px;}
.y13c{bottom:768.466878px;}
.ya9{bottom:768.803191px;}
.y124{bottom:769.345308px;}
.yf6{bottom:769.395504px;}
.y1d{bottom:769.609275px;}
.y1d0{bottom:771.786327px;}
.y59{bottom:772.064801px;}
.y169{bottom:774.953205px;}
.y112{bottom:776.606159px;}
.y1cf{bottom:777.906236px;}
.y1d2{bottom:779.046940px;}
.y105{bottom:779.179959px;}
.y125{bottom:779.256508px;}
.y130{bottom:779.275331px;}
.yf7{bottom:779.320508px;}
.yaa{bottom:779.952977px;}
.y1e6{bottom:780.008193px;}
.y1f5{bottom:781.883014px;}
.y7{bottom:786.973013px;}
.y36{bottom:787.123476px;}
.y1f{bottom:787.123601px;}
.y13d{bottom:787.306691px;}
.y10e{bottom:788.219004px;}
.y166{bottom:788.851473px;}
.y1d6{bottom:790.351079px;}
.y16a{bottom:790.826184px;}
.y1c7{bottom:793.461976px;}
.y106{bottom:797.029908px;}
.y131{bottom:798.705701px;}
.yfd{bottom:799.056320px;}
.yab{bottom:799.182312px;}
.y1e7{bottom:800.441981px;}
.y123{bottom:801.291297px;}
.y12f{bottom:801.305101px;}
.y1c8{bottom:801.449414px;}
.y10f{bottom:801.598748px;}
.y1d7{bottom:801.655218px;}
.y126{bottom:802.664785px;}
.yf8{bottom:802.717993px;}
.y13e{bottom:805.354663px;}
.y73{bottom:806.700041px;}
.y16b{bottom:806.789892px;}
.y1fa{bottom:806.968465px;}
.y1ed{bottom:808.121718px;}
.y13b{bottom:808.140541px;}
.y1f6{bottom:811.968237px;}
.y1d5{bottom:812.966887px;}
.y1f3{bottom:813.933160px;}
.y1e4{bottom:814.008454px;}
.y107{bottom:814.976483px;}
.y132{bottom:818.244369px;}
.yac{bottom:818.517560px;}
.y1e8{bottom:820.786545px;}
.y1c9{bottom:820.837619px;}
.yb2{bottom:821.491422px;}
.y41{bottom:821.608128px;}
.y35{bottom:821.758716px;}
.y6{bottom:821.758841px;}
.y16c{bottom:822.662871px;}
.y13f{bottom:823.403137px;}
.y1d8{bottom:824.269771px;}
.y127{bottom:826.063776px;}
.yf9{bottom:826.124388px;}
.y108{bottom:832.942134px;}
.y1d9{bottom:835.573910px;}
.y133{bottom:837.782534px;}
.yad{bottom:837.853310px;}
.y16d{bottom:838.626580px;}
.y1ca{bottom:840.303754px;}
.y1e9{bottom:841.228615px;}
.y140{bottom:841.351595px;}
.y1f7{bottom:842.126496px;}
.y1da{bottom:846.878049px;}
.y128{bottom:849.463269px;}
.yfa{bottom:849.521873px;}
.y109{bottom:850.792082px;}
.y16e{bottom:854.499559px;}
.y40{bottom:856.243493px;}
.y34{bottom:856.393956px;}
.y5{bottom:856.394081px;}
.yae{bottom:857.072857px;}
.y134{bottom:857.321202px;}
.y1db{bottom:858.183443px;}
.y141{bottom:859.399567px;}
.y1cb{bottom:859.685057px;}
.y1ea{bottom:861.581587px;}
.y10d{bottom:862.172771px;}
.y100{bottom:867.478488px;}
.y12e{bottom:868.511270px;}
.y10a{bottom:868.747945px;}
.y1dc{bottom:869.490092px;}
.y16f{bottom:870.472052px;}
.yb4{bottom:870.573071px;}
.y1f8{bottom:872.203437px;}
.y129{bottom:872.862260px;}
.yfb{bottom:872.937554px;}
.yb3{bottom:873.758007px;}
.y104{bottom:875.557534px;}
.yaf{bottom:876.417893px;}
.y135{bottom:876.859367px;}
.y142{bottom:877.447539px;}
.y1cc{bottom:879.158093px;}
.y1d4{bottom:880.794232px;}
.y1eb{bottom:882.007594px;}
.y13a{bottom:882.802072px;}
.yff{bottom:882.940311px;}
.y170{bottom:886.336246px;}
.y10b{bottom:886.704309px;}
.y146{bottom:890.842291px;}
.y1e{bottom:890.878733px;}
.y33{bottom:891.029196px;}
.y4{bottom:891.029321px;}
.y12d{bottom:891.719466px;}
.y1d3{bottom:892.103390px;}
.y1ee{bottom:892.188724px;}
.y1fb{bottom:892.655546px;}
.yfe{bottom:894.849112px;}
.y143{bottom:895.495511px;}
.yb0{bottom:895.743855px;}
.y139{bottom:895.904483px;}
.y12a{bottom:896.360764px;}
.y136{bottom:896.389250px;}
.yfc{bottom:896.434050px;}
.y1cd{bottom:898.539396px;}
.y171{bottom:902.299955px;}
.y1f9{bottom:902.377884px;}
.y1ec{bottom:902.441382px;}
.y1dd{bottom:904.003607px;}
.y10c{bottom:904.660171px;}
.y155{bottom:909.266658px;}
.y1de{bottom:915.307746px;}
.y176{bottom:917.713892px;}
.y1f2{bottom:917.815037px;}
.y1e1{bottom:917.823444px;}
.y1e3{bottom:917.900370px;}
.y1ce{bottom:917.998628px;}
.y172{bottom:918.164150px;}
.y103{bottom:919.131427px;}
.yc3{bottom:919.139960px;}
.y154{bottom:933.264110px;}
.y1e0{bottom:942.102371px;}
.y175{bottom:944.075074px;}
.yc2{bottom:947.864872px;}
.y1c{bottom:1131.000000px;}
.y1b{bottom:1147.500000px;}
.y1a{bottom:1164.240000px;}
.h21{height:18.564383px;}
.h26{height:18.566100px;}
.h20{height:20.544596px;}
.h25{height:20.546313px;}
.h1c{height:20.647723px;}
.h29{height:23.651024px;}
.h2d{height:23.653070px;}
.h18{height:23.966618px;}
.h2c{height:25.990136px;}
.h28{height:25.992182px;}
.h15{height:26.276861px;}
.h1d{height:26.278907px;}
.h11{height:26.280953px;}
.h6{height:27.832162px;}
.hd{height:28.153581px;}
.h19{height:28.158368px;}
.h17{height:28.875509px;}
.h12{height:28.877921px;}
.h24{height:28.880333px;}
.h27{height:30.148558px;}
.h2b{height:30.150970px;}
.he{height:30.938238px;}
.h1a{height:30.940614px;}
.hf{height:30.943025px;}
.h23{height:33.498405px;}
.h2a{height:34.566881px;}
.h2e{height:34.569621px;}
.h16{height:38.404519px;}
.h1e{height:38.407808px;}
.h13{height:38.410731px;}
.h1f{height:38.412526px;}
.h10{height:41.147516px;}
.h1b{height:41.154459px;}
.h2{height:41.852876px;}
.hc{height:42.088170px;}
.hb{height:42.088671px;}
.h3{height:42.264640px;}
.h14{height:45.902646px;}
.h22{height:50.000677px;}
.h4{height:55.539852px;}
.h5{height:55.540354px;}
.ha{height:55.540856px;}
.h7{height:56.320312px;}
.h9{height:59.088143px;}
.h8{height:68.835938px;}
.h1{height:993.880800px;}
.h0{height:1188.000000px;}
.w1{width:767.998800px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:43.821108px;}
.x4{left:55.080000px;}
.x1a{left:71.473457px;}
.x1{left:75.000000px;}
.x53{left:81.006305px;}
.x5a{left:82.564138px;}
.x73{left:86.116007px;}
.x3{left:88.997508px;}
.x76{left:91.826743px;}
.x75{left:96.374785px;}
.x16{left:100.729731px;}
.x2f{left:103.042976px;}
.x5b{left:104.895460px;}
.x43{left:107.019001px;}
.x44{left:108.631724px;}
.x3c{left:110.849333px;}
.x2e{left:111.868650px;}
.x15{left:114.612613px;}
.x81{left:115.794881px;}
.x2d{left:116.930892px;}
.x79{left:118.160631px;}
.x74{left:119.583688px;}
.xb{left:120.620988px;}
.x3a{left:121.891486px;}
.x14{left:124.728778px;}
.x2c{left:127.046076px;}
.x5d{left:132.182231px;}
.x46{left:134.306777px;}
.x19{left:136.329667px;}
.x32{left:138.646171px;}
.x13{left:140.398212px;}
.x2b{left:142.716012px;}
.x5e{left:144.083689px;}
.x17{left:145.245891px;}
.x30{left:147.563691px;}
.x77{left:150.291844px;}
.x82{left:154.087916px;}
.x78{left:155.643992px;}
.x47{left:162.863432px;}
.x3f{left:164.497312px;}
.x5f{left:171.444338px;}
.x3b{left:173.221376px;}
.x6c{left:175.589373px;}
.x5c{left:179.184661px;}
.x45{left:181.309207px;}
.x18{left:183.330851px;}
.x31{left:185.641122px;}
.x59{left:192.810365px;}
.x72{left:211.743042px;}
.x7a{left:225.166707px;}
.x7d{left:231.157061px;}
.x7c{left:235.705088px;}
.x3e{left:241.160408px;}
.x3d{left:242.703935px;}
.x80{left:249.977064px;}
.x7f{left:252.925095px;}
.x7b{left:254.351916px;}
.x6d{left:259.721633px;}
.x7e{left:262.569002px;}
.x1e{left:264.364763px;}
.x40{left:265.528056px;}
.x39{left:266.971191px;}
.x41{left:270.597450px;}
.x64{left:272.013379px;}
.x6e{left:274.106552px;}
.x1f{left:276.274542px;}
.x33{left:280.152535px;}
.x49{left:281.329757px;}
.x10{left:283.827007px;}
.x1d{left:285.104161px;}
.x60{left:287.404727px;}
.x70{left:289.822920px;}
.x4b{left:291.844404px;}
.x42{left:294.902065px;}
.x48{left:296.995928px;}
.xe{left:298.385102px;}
.x1c{left:300.273727px;}
.x4c{left:303.149958px;}
.x65{left:304.446269px;}
.xd{left:305.927051px;}
.x63{left:308.219754px;}
.x22{left:311.877098px;}
.x1b{left:315.947428px;}
.x20{left:320.795107px;}
.x67{left:323.106381px;}
.x6{left:325.646550px;}
.x6f{left:328.242938px;}
.x4d{left:334.675556px;}
.x4a{left:338.846843px;}
.x66{left:342.130916px;}
.x34{left:344.688403px;}
.xf{left:346.204322px;}
.x21{left:358.881322px;}
.x8{left:364.347666px;}
.x7{left:367.811190px;}
.x71{left:398.839847px;}
.x11{left:410.923280px;}
.x4e{left:424.818787px;}
.x68{left:429.657682px;}
.x12{left:433.867871px;}
.x50{left:436.538361px;}
.x35{left:439.365588px;}
.x69{left:441.056233px;}
.x9{left:442.427544px;}
.x55{left:448.619321px;}
.x27{left:451.234432px;}
.x54{left:452.534509px;}
.x4f{left:457.251678px;}
.x61{left:461.230815px;}
.x52{left:462.812792px;}
.x26{left:465.121733px;}
.x58{left:466.219256px;}
.x37{left:467.548132px;}
.x57{left:468.762875px;}
.x25{left:470.174663px;}
.x62{left:472.531292px;}
.x24{left:475.236905px;}
.x2a{left:486.836999px;}
.x23{left:490.906841px;}
.x6a{left:492.028721px;}
.x36{left:495.795931px;}
.x28{left:497.536478px;}
.x51{left:499.110122px;}
.x56{left:506.594346px;}
.x38{left:507.905716px;}
.x6b{left:511.965318px;}
.x29{left:533.831950px;}
.xa{left:664.093080px;}
.x2{left:671.622480px;}
.x5{left:889.500000px;}
@media print{
.v5{vertical-align:-38.534153pt;}
.v7{vertical-align:-31.400387pt;}
.v2{vertical-align:-24.629504pt;}
.v4{vertical-align:-6.692800pt;}
.v3{vertical-align:-4.550658pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.642695pt;}
.v1{vertical-align:24.629058pt;}
.lsd8{letter-spacing:-4.701157pt;}
.lscb{letter-spacing:-2.740304pt;}
.lsee{letter-spacing:-1.177919pt;}
.lse8{letter-spacing:-1.026814pt;}
.lsb8{letter-spacing:-1.026734pt;}
.lsed{letter-spacing:-0.930549pt;}
.lsb9{letter-spacing:-0.930478pt;}
.ls103{letter-spacing:-0.883512pt;}
.lsce{letter-spacing:-0.669972pt;}
.ls67{letter-spacing:-0.642263pt;}
.lseb{letter-spacing:-0.641759pt;}
.lsa7{letter-spacing:-0.634656pt;}
.lse2{letter-spacing:-0.609669pt;}
.lsbc{letter-spacing:-0.609620pt;}
.ls91{letter-spacing:-0.605038pt;}
.ls89{letter-spacing:-0.604480pt;}
.ls65{letter-spacing:-0.604387pt;}
.lse7{letter-spacing:-0.577584pt;}
.lsa5{letter-spacing:-0.577535pt;}
.lse5{letter-spacing:-0.545494pt;}
.lsb5{letter-spacing:-0.545450pt;}
.lsa9{letter-spacing:-0.528878pt;}
.lse3{letter-spacing:-0.513405pt;}
.lsb6{letter-spacing:-0.513365pt;}
.ls92{letter-spacing:-0.504200pt;}
.lsa0{letter-spacing:-0.493621pt;}
.lse1{letter-spacing:-0.481319pt;}
.ls93{letter-spacing:-0.478990pt;}
.lsa1{letter-spacing:-0.458363pt;}
.ls94{letter-spacing:-0.453781pt;}
.ls66{letter-spacing:-0.453361pt;}
.lse4{letter-spacing:-0.449230pt;}
.lsba{letter-spacing:-0.449194pt;}
.lsa6{letter-spacing:-0.423104pt;}
.ls10{letter-spacing:-0.417631pt;}
.ls98{letter-spacing:-0.403359pt;}
.ls82{letter-spacing:-0.387845pt;}
.lsde{letter-spacing:-0.385055pt;}
.ls52{letter-spacing:-0.374797pt;}
.ls4d{letter-spacing:-0.331963pt;}
.ls6d{letter-spacing:-0.317328pt;}
.ls102{letter-spacing:-0.294504pt;}
.lse0{letter-spacing:-0.288791pt;}
.lsbb{letter-spacing:-0.288768pt;}
.lsaa{letter-spacing:-0.282069pt;}
.ls79{letter-spacing:-0.282046pt;}
.ls2e{letter-spacing:-0.270603pt;}
.lsf{letter-spacing:-0.267712pt;}
.lsf8{letter-spacing:-0.257691pt;}
.ls73{letter-spacing:-0.256703pt;}
.ls9f{letter-spacing:-0.256683pt;}
.ls78{letter-spacing:-0.256663pt;}
.lsd0{letter-spacing:-0.246831pt;}
.ls7e{letter-spacing:-0.246790pt;}
.ls2f{letter-spacing:-0.235587pt;}
.ls101{letter-spacing:-0.231035pt;}
.lsf7{letter-spacing:-0.231015pt;}
.ls95{letter-spacing:-0.226889pt;}
.lse9{letter-spacing:-0.224615pt;}
.lsb3{letter-spacing:-0.224597pt;}
.lscf{letter-spacing:-0.211570pt;}
.ls72{letter-spacing:-0.211552pt;}
.ls90{letter-spacing:-0.201679pt;}
.ls5c{letter-spacing:-0.192753pt;}
.lsdf{letter-spacing:-0.192527pt;}
.lsf2{letter-spacing:-0.190412pt;}
.lsfc{letter-spacing:-0.190397pt;}
.ls4e{letter-spacing:-0.176690pt;}
.ls96{letter-spacing:-0.176470pt;}
.ls6b{letter-spacing:-0.176293pt;}
.ls8d{letter-spacing:-0.151109pt;}
.lsd1{letter-spacing:-0.141046pt;}
.ls7d{letter-spacing:-0.141023pt;}
.ls25{letter-spacing:-0.133856pt;}
.ls48{letter-spacing:-0.128502pt;}
.lsec{letter-spacing:-0.128351pt;}
.ls51{letter-spacing:-0.117793pt;}
.ls34{letter-spacing:-0.112439pt;}
.ls54{letter-spacing:-0.107085pt;}
.ls6e{letter-spacing:-0.105776pt;}
.ls80{letter-spacing:-0.105767pt;}
.ls88{letter-spacing:-0.103141pt;}
.ls5e{letter-spacing:-0.096376pt;}
.lse6{letter-spacing:-0.096264pt;}
.lsb4{letter-spacing:-0.096256pt;}
.ls2d{letter-spacing:-0.092575pt;}
.ls50{letter-spacing:-0.091022pt;}
.ls22{letter-spacing:-0.080314pt;}
.ls97{letter-spacing:-0.075630pt;}
.ls4c{letter-spacing:-0.074959pt;}
.lscd{letter-spacing:-0.070523pt;}
.ls9b{letter-spacing:-0.070517pt;}
.ls3e{letter-spacing:-0.069605pt;}
.ls32{letter-spacing:-0.064251pt;}
.ls2c{letter-spacing:-0.064090pt;}
.ls4a{letter-spacing:-0.058897pt;}
.ls11{letter-spacing:-0.053542pt;}
.lsdb{letter-spacing:-0.050172pt;}
.lsb0{letter-spacing:-0.050168pt;}
.ls40{letter-spacing:-0.048188pt;}
.ls24{letter-spacing:-0.042834pt;}
.ls8f{letter-spacing:-0.037777pt;}
.ls17{letter-spacing:-0.037480pt;}
.lsd2{letter-spacing:-0.035262pt;}
.ls83{letter-spacing:-0.035259pt;}
.ls7f{letter-spacing:-0.035256pt;}
.ls1f{letter-spacing:-0.032125pt;}
.lsef{letter-spacing:-0.031735pt;}
.lsf9{letter-spacing:-0.031733pt;}
.ls1a{letter-spacing:-0.026771pt;}
.lsd{letter-spacing:-0.021417pt;}
.lsc{letter-spacing:-0.016063pt;}
.lsb{letter-spacing:-0.010708pt;}
.lsa{letter-spacing:-0.005354pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005354pt;}
.ls30{letter-spacing:0.007121pt;}
.ls5{letter-spacing:0.010708pt;}
.ls2{letter-spacing:0.016063pt;}
.ls2a{letter-spacing:0.021363pt;}
.ls4{letter-spacing:0.021417pt;}
.ls7{letter-spacing:0.026771pt;}
.ls12{letter-spacing:0.032125pt;}
.ls70{letter-spacing:0.035259pt;}
.lsd7{letter-spacing:0.035262pt;}
.ls15{letter-spacing:0.037480pt;}
.ls57{letter-spacing:0.042727pt;}
.ls1{letter-spacing:0.042834pt;}
.ls27{letter-spacing:0.046287pt;}
.ls13{letter-spacing:0.048188pt;}
.ls14{letter-spacing:0.053542pt;}
.ls1b{letter-spacing:0.058897pt;}
.ls1e{letter-spacing:0.064251pt;}
.ls20{letter-spacing:0.069605pt;}
.ls99{letter-spacing:0.070517pt;}
.lsc5{letter-spacing:0.070523pt;}
.ls1c{letter-spacing:0.074959pt;}
.ls38{letter-spacing:0.080314pt;}
.ls6{letter-spacing:0.085668pt;}
.ls53{letter-spacing:0.091022pt;}
.lsb7{letter-spacing:0.096256pt;}
.ls4b{letter-spacing:0.096376pt;}
.lsad{letter-spacing:0.105776pt;}
.ls29{letter-spacing:0.107085pt;}
.ls4f{letter-spacing:0.112439pt;}
.lsf5{letter-spacing:0.115507pt;}
.lsff{letter-spacing:0.115517pt;}
.ls18{letter-spacing:0.117793pt;}
.ls58{letter-spacing:0.123148pt;}
.ls76{letter-spacing:0.128331pt;}
.ls9a{letter-spacing:0.128342pt;}
.ls6a{letter-spacing:0.128351pt;}
.ls3{letter-spacing:0.133856pt;}
.lse{letter-spacing:0.135302pt;}
.ls87{letter-spacing:0.137521pt;}
.ls63{letter-spacing:0.176279pt;}
.lsea{letter-spacing:0.256703pt;}
.ls3f{letter-spacing:0.267712pt;}
.lsc4{letter-spacing:0.286300pt;}
.ls7b{letter-spacing:0.317301pt;}
.ls6f{letter-spacing:0.317328pt;}
.ls8b{letter-spacing:0.339994pt;}
.lsc8{letter-spacing:0.368100pt;}
.ls55{letter-spacing:0.385505pt;}
.lsd5{letter-spacing:0.409001pt;}
.lsd3{letter-spacing:0.449899pt;}
.lsbd{letter-spacing:0.490801pt;}
.ls43{letter-spacing:0.535424pt;}
.lsbe{letter-spacing:0.572600pt;}
.lsc2{letter-spacing:0.613502pt;}
.ls85{letter-spacing:0.643767pt;}
.lsc1{letter-spacing:0.654400pt;}
.lsc0{letter-spacing:0.736199pt;}
.lsc3{letter-spacing:0.776988pt;}
.ls59{letter-spacing:0.803136pt;}
.ls84{letter-spacing:0.819341pt;}
.lsb2{letter-spacing:0.861319pt;}
.lsdd{letter-spacing:0.861399pt;}
.ls86{letter-spacing:0.994911pt;}
.lsd4{letter-spacing:1.022499pt;}
.lscc{letter-spacing:1.104303pt;}
.lsb1{letter-spacing:1.155980pt;}
.lsdc{letter-spacing:1.156088pt;}
.lsca{letter-spacing:1.172351pt;}
.ls3a{letter-spacing:1.338560pt;}
.lsc9{letter-spacing:1.349701pt;}
.ls46{letter-spacing:1.606272pt;}
.lsf6{letter-spacing:1.688183pt;}
.ls100{letter-spacing:1.688317pt;}
.ls62{letter-spacing:1.875608pt;}
.lsa4{letter-spacing:1.875760pt;}
.ls61{letter-spacing:1.875912pt;}
.ls3c{letter-spacing:2.141696pt;}
.ls28{letter-spacing:2.677120pt;}
.ls5d{letter-spacing:3.212544pt;}
.ls47{letter-spacing:3.480256pt;}
.ls2b{letter-spacing:4.551104pt;}
.ls21{letter-spacing:4.818816pt;}
.ls56{letter-spacing:5.889664pt;}
.ls33{letter-spacing:6.425088pt;}
.ls5b{letter-spacing:6.692800pt;}
.ls44{letter-spacing:6.960512pt;}
.ls23{letter-spacing:7.495936pt;}
.ls26{letter-spacing:8.031360pt;}
.ls5a{letter-spacing:8.234821pt;}
.lsfa{letter-spacing:8.313975pt;}
.lsf0{letter-spacing:8.314644pt;}
.lsfb{letter-spacing:8.536131pt;}
.lsf1{letter-spacing:8.536800pt;}
.ls16{letter-spacing:8.566784pt;}
.ls3b{letter-spacing:8.700640pt;}
.ls19{letter-spacing:8.834496pt;}
.lsab{letter-spacing:8.885183pt;}
.lsa8{letter-spacing:8.955680pt;}
.ls37{letter-spacing:9.102208pt;}
.ls6c{letter-spacing:9.131969pt;}
.ls7a{letter-spacing:9.201752pt;}
.ls71{letter-spacing:9.237760pt;}
.ls7c{letter-spacing:9.307498pt;}
.ls9c{letter-spacing:9.308302pt;}
.lsd6{letter-spacing:9.309060pt;}
.ls77{letter-spacing:9.484590pt;}
.ls81{letter-spacing:9.554284pt;}
.ls8a{letter-spacing:9.859833pt;}
.ls31{letter-spacing:9.905344pt;}
.ls8c{letter-spacing:9.973164pt;}
.ls8e{letter-spacing:10.086496pt;}
.lsac{letter-spacing:10.154495pt;}
.ls45{letter-spacing:10.976192pt;}
.ls3d{letter-spacing:11.511616pt;}
.ls64{letter-spacing:13.752053pt;}
.ls42{letter-spacing:14.188736pt;}
.ls35{letter-spacing:16.009178pt;}
.ls5f{letter-spacing:16.774611pt;}
.ls49{letter-spacing:17.133568pt;}
.ls39{letter-spacing:18.739840pt;}
.ls1d{letter-spacing:20.078400pt;}
.ls41{letter-spacing:21.952384pt;}
.lsf3{letter-spacing:39.445757pt;}
.lsfd{letter-spacing:39.449193pt;}
.lsae{letter-spacing:39.607678pt;}
.lsd9{letter-spacing:39.610980pt;}
.lsaf{letter-spacing:40.284945pt;}
.lsda{letter-spacing:40.288291pt;}
.lsf4{letter-spacing:40.427591pt;}
.lsfe{letter-spacing:40.431071pt;}
.ls74{letter-spacing:43.825168pt;}
.lsa2{letter-spacing:43.828604pt;}
.ls68{letter-spacing:43.832040pt;}
.ls75{letter-spacing:44.915827pt;}
.lsa3{letter-spacing:44.919396pt;}
.ls69{letter-spacing:44.922966pt;}
.ls36{letter-spacing:46.046464pt;}
.lsbf{letter-spacing:55.477926pt;}
.lsc6{letter-spacing:60.737606pt;}
.ls60{letter-spacing:62.044829pt;}
.lsc7{letter-spacing:62.181466pt;}
.ls9d{letter-spacing:77.325934pt;}
.ls9e{letter-spacing:78.416860pt;}
.ls8{letter-spacing:629.123200pt;}
.ws70{word-spacing:-87.336594pt;}
.ws6f{word-spacing:-86.245668pt;}
.ws91{word-spacing:-71.101200pt;}
.ws90{word-spacing:-69.657340pt;}
.wsca{word-spacing:-62.090578pt;}
.wsc3{word-spacing:-62.085224pt;}
.wsc9{word-spacing:-61.108700pt;}
.wsc2{word-spacing:-61.103390pt;}
.ws39{word-spacing:-53.843394pt;}
.ws74{word-spacing:-53.839130pt;}
.ws46{word-spacing:-53.834866pt;}
.ws38{word-spacing:-52.752468pt;}
.ws73{word-spacing:-52.748337pt;}
.ws45{word-spacing:-52.744207pt;}
.wsa9{word-spacing:-47.262236pt;}
.ws84{word-spacing:-47.258306pt;}
.wsa8{word-spacing:-46.584924pt;}
.ws83{word-spacing:-46.581040pt;}
.ws96{word-spacing:-36.343015pt;}
.wsc0{word-spacing:-32.338271pt;}
.wsc7{word-spacing:-32.335728pt;}
.wsbf{word-spacing:-32.116115pt;}
.wsc6{word-spacing:-32.113571pt;}
.wsce{word-spacing:-27.609741pt;}
.wsbd{word-spacing:-27.607532pt;}
.wscc{word-spacing:-27.315237pt;}
.ws35{word-spacing:-26.330657pt;}
.wsc1{word-spacing:-23.611059pt;}
.wsc8{word-spacing:-23.609200pt;}
.ws5d{word-spacing:-23.309724pt;}
.wscb{word-spacing:-21.428472pt;}
.wsc4{word-spacing:-21.426618pt;}
.ws64{word-spacing:-20.588532pt;}
.ws62{word-spacing:-20.475200pt;}
.ws60{word-spacing:-20.361869pt;}
.ws7e{word-spacing:-19.956400pt;}
.ws54{word-spacing:-19.355371pt;}
.ws47{word-spacing:-19.286495pt;}
.wsa6{word-spacing:-19.111784pt;}
.ws6e{word-spacing:-19.110207pt;}
.ws4e{word-spacing:-19.108585pt;}
.ws3f{word-spacing:-19.039665pt;}
.ws4c{word-spacing:-19.002839pt;}
.ws3b{word-spacing:-18.933874pt;}
.ws79{word-spacing:-18.757586pt;}
.ws7d{word-spacing:-18.687088pt;}
.wscd{word-spacing:-15.201270pt;}
.wsc5{word-spacing:-15.200366pt;}
.wsbe{word-spacing:-15.170037pt;}
.ws5{word-spacing:-13.503393pt;}
.ws1d{word-spacing:-13.460559pt;}
.ws27{word-spacing:-13.455205pt;}
.ws29{word-spacing:-13.449851pt;}
.ws22{word-spacing:-13.444497pt;}
.wsc{word-spacing:-13.439142pt;}
.ws30{word-spacing:-13.433788pt;}
.wsd{word-spacing:-13.428434pt;}
.ws20{word-spacing:-13.423080pt;}
.ws6{word-spacing:-13.417725pt;}
.wsb{word-spacing:-13.412371pt;}
.wsa{word-spacing:-13.407017pt;}
.ws1c{word-spacing:-13.401663pt;}
.ws2{word-spacing:-13.396308pt;}
.ws11{word-spacing:-13.390954pt;}
.ws7{word-spacing:-13.385600pt;}
.ws0{word-spacing:-13.380246pt;}
.ws21{word-spacing:-13.374892pt;}
.ws23{word-spacing:-13.369537pt;}
.ws26{word-spacing:-13.364183pt;}
.ws2c{word-spacing:-13.342766pt;}
.ws32{word-spacing:-13.332058pt;}
.ws2f{word-spacing:-13.267807pt;}
.ws28{word-spacing:-13.257098pt;}
.ws2d{word-spacing:-13.251744pt;}
.ws2e{word-spacing:-13.117888pt;}
.ws94{word-spacing:-12.719917pt;}
.ws9a{word-spacing:-12.474519pt;}
.ws97{word-spacing:-12.106415pt;}
.ws98{word-spacing:-12.024616pt;}
.ws9b{word-spacing:-11.983718pt;}
.ws95{word-spacing:-11.942816pt;}
.ws18{word-spacing:-11.886413pt;}
.ws93{word-spacing:-11.861017pt;}
.wsa2{word-spacing:-11.820115pt;}
.ws31{word-spacing:-11.779328pt;}
.wsa3{word-spacing:-11.656516pt;}
.ws61{word-spacing:-10.842030pt;}
.ws5f{word-spacing:-10.502855pt;}
.ws36{word-spacing:-10.501230pt;}
.ws65{word-spacing:-10.464259pt;}
.ws63{word-spacing:-10.350927pt;}
.ws3d{word-spacing:-10.119233pt;}
.ws4d{word-spacing:-10.118388pt;}
.wsa5{word-spacing:-9.873247pt;}
.ws6d{word-spacing:-9.872422pt;}
.ws7a{word-spacing:-9.801905pt;}
.wsa1{word-spacing:-9.767462pt;}
.ws59{word-spacing:-9.766647pt;}
.ws9c{word-spacing:-9.732201pt;}
.ws7b{word-spacing:-9.731388pt;}
.ws3c{word-spacing:-9.696129pt;}
.ws53{word-spacing:-9.695319pt;}
.ws4f{word-spacing:-9.660064pt;}
.ws3a{word-spacing:-9.625612pt;}
.ws9e{word-spacing:-9.591154pt;}
.ws41{word-spacing:-9.590353pt;}
.ws50{word-spacing:-9.554297pt;}
.ws7c{word-spacing:-9.519836pt;}
.ws4b{word-spacing:-9.519041pt;}
.ws40{word-spacing:-9.484577pt;}
.ws5e{word-spacing:-9.454530pt;}
.ws57{word-spacing:-9.414060pt;}
.ws77{word-spacing:-9.378802pt;}
.ws78{word-spacing:-9.167249pt;}
.ws9d{word-spacing:-9.132752pt;}
.ws7f{word-spacing:-9.048075pt;}
.ws3{word-spacing:-9.036726pt;}
.ws5a{word-spacing:-8.954225pt;}
.ws14{word-spacing:-8.947711pt;}
.ws33{word-spacing:-8.944151pt;}
.ws44{word-spacing:-8.920428pt;}
.ws75{word-spacing:-8.919734pt;}
.ws4a{word-spacing:-8.919039pt;}
.ws1b{word-spacing:-8.908545pt;}
.ws1{word-spacing:-8.901424pt;}
.ws16{word-spacing:-8.837334pt;}
.wsaf{word-spacing:-8.824164pt;}
.ws87{word-spacing:-8.823477pt;}
.wsb6{word-spacing:-8.792077pt;}
.ws5b{word-spacing:-8.778651pt;}
.wsb3{word-spacing:-8.727901pt;}
.wsb4{word-spacing:-8.695813pt;}
.ws86{word-spacing:-8.695136pt;}
.ws43{word-spacing:-8.663725pt;}
.ws71{word-spacing:-8.663050pt;}
.ws49{word-spacing:-8.662376pt;}
.ws99{word-spacing:-8.629912pt;}
.wsab{word-spacing:-8.535374pt;}
.wsb1{word-spacing:-8.471199pt;}
.ws8b{word-spacing:-8.470540pt;}
.wsad{word-spacing:-8.407023pt;}
.wsae{word-spacing:-8.374934pt;}
.ws88{word-spacing:-8.374284pt;}
.wsb0{word-spacing:-8.342844pt;}
.ws76{word-spacing:-8.342198pt;}
.wsac{word-spacing:-8.310759pt;}
.ws8c{word-spacing:-8.310113pt;}
.wsb5{word-spacing:-8.278669pt;}
.wsb7{word-spacing:-7.989879pt;}
.ws8a{word-spacing:-7.989256pt;}
.wsb2{word-spacing:-7.893614pt;}
.ws89{word-spacing:-7.893000pt;}
.ws17{word-spacing:-7.740678pt;}
.wsaa{word-spacing:-7.457897pt;}
.ws85{word-spacing:-7.457207pt;}
.ws67{word-spacing:-7.008366pt;}
.ws69{word-spacing:-6.831896pt;}
.ws68{word-spacing:-6.529375pt;}
.ws66{word-spacing:-6.504166pt;}
.wsb9{word-spacing:-1.022499pt;}
.ws55{word-spacing:-0.915183pt;}
.ws8f{word-spacing:-0.881180pt;}
.wsa4{word-spacing:-0.846386pt;}
.ws6c{word-spacing:-0.846377pt;}
.wsa0{word-spacing:-0.739622pt;}
.ws51{word-spacing:-0.423206pt;}
.ws9f{word-spacing:-0.283334pt;}
.wsba{word-spacing:-0.096264pt;}
.ws3e{word-spacing:-0.035043pt;}
.wsf{word-spacing:-0.026771pt;}
.ws4{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.201679pt;}
.ws24{word-spacing:0.214170pt;}
.wsb8{word-spacing:0.286300pt;}
.ws8e{word-spacing:0.288768pt;}
.wsbb{word-spacing:0.288791pt;}
.ws37{word-spacing:0.301140pt;}
.ws72{word-spacing:0.492765pt;}
.ws8d{word-spacing:0.545450pt;}
.ws6b{word-spacing:0.605038pt;}
.ws2b{word-spacing:1.044077pt;}
.ws1f{word-spacing:1.060140pt;}
.ws19{word-spacing:1.327852pt;}
.ws15{word-spacing:1.847213pt;}
.ws25{word-spacing:2.607515pt;}
.ws13{word-spacing:3.956783pt;}
.ws9{word-spacing:4.802753pt;}
.ws2a{word-spacing:6.676737pt;}
.wse{word-spacing:7.201453pt;}
.ws34{word-spacing:8.818433pt;}
.ws10{word-spacing:8.866621pt;}
.ws1a{word-spacing:9.364566pt;}
.ws8{word-spacing:10.456831pt;}
.ws80{word-spacing:20.027414pt;}
.ws12{word-spacing:22.444974pt;}
.ws52{word-spacing:30.618236pt;}
.ws48{word-spacing:30.618365pt;}
.ws58{word-spacing:30.620240pt;}
.ws42{word-spacing:30.672091pt;}
.ws1e{word-spacing:46.035756pt;}
.ws56{word-spacing:47.545728pt;}
.wsbc{word-spacing:413.408741pt;}
.ws81{word-spacing:481.281818pt;}
.wsa7{word-spacing:507.550485pt;}
.ws92{word-spacing:517.066798pt;}
.ws82{word-spacing:522.827193pt;}
.ws5c{word-spacing:595.461375pt;}
._12{margin-left:-2735.624907pt;}
._73{margin-left:-2294.238298pt;}
._79{margin-left:-2290.195846pt;}
._5d{margin-left:-2287.931003pt;}
._75{margin-left:-2286.945823pt;}
._6a{margin-left:-2283.326356pt;}
._3e{margin-left:-2280.820572pt;}
._114{margin-left:-2279.594451pt;}
._112{margin-left:-2278.105972pt;}
._4d{margin-left:-2276.911977pt;}
._3f{margin-left:-2272.960548pt;}
._3a{margin-left:-2272.007493pt;}
._ca{margin-left:-2270.877748pt;}
._8d{margin-left:-2269.908631pt;}
._ef{margin-left:-2266.979862pt;}
._85{margin-left:-2265.807283pt;}
._eb{margin-left:-2264.152823pt;}
._a0{margin-left:-2261.614913pt;}
._6c{margin-left:-2260.056829pt;}
._48{margin-left:-2258.953856pt;}
._56{margin-left:-2255.425412pt;}
._59{margin-left:-2253.690638pt;}
._35{margin-left:-2252.223576pt;}
._96{margin-left:-2250.815411pt;}
._33{margin-left:-2249.605353pt;}
._98{margin-left:-2247.865225pt;}
._16{margin-left:-2246.328558pt;}
._1c{margin-left:-2245.139917pt;}
._a3{margin-left:-2243.410497pt;}
._e4{margin-left:-2242.002332pt;}
._a{margin-left:-2240.744086pt;}
._92{margin-left:-2238.843331pt;}
._64{margin-left:-2236.765885pt;}
._f4{margin-left:-2234.549230pt;}
._20{margin-left:-2232.525327pt;}
._e3{margin-left:-2231.582981pt;}
._113{margin-left:-2230.051668pt;}
._fc{margin-left:-2228.129496pt;}
._82{margin-left:-2226.764165pt;}
._89{margin-left:-2225.554107pt;}
._b1{margin-left:-2223.048323pt;}
._ab{margin-left:-2220.301597pt;}
._a9{margin-left:-2218.390134pt;}
._a2{margin-left:-2216.907009pt;}
._97{margin-left:-2215.707660pt;}
._a4{margin-left:-2214.401225pt;}
._c2{margin-left:-2211.959692pt;}
._99{margin-left:-2210.390899pt;}
._8b{margin-left:-2208.361642pt;}
._d2{margin-left:-2207.103396pt;}
._1{margin-left:-2205.786253pt;}
._37{margin-left:-2203.955103pt;}
._43{margin-left:-2202.793233pt;}
._91{margin-left:-2201.684905pt;}
._c4{margin-left:-2200.555160pt;}
._8f{margin-left:-2198.964951pt;}
._d0{margin-left:-2196.410979pt;}
._cc{margin-left:-2192.786158pt;}
._9d{margin-left:-2189.777075pt;}
._9b{margin-left:-2187.876320pt;}
._d9{margin-left:-2186.757284pt;}
._9a{margin-left:-2185.038573pt;}
._10b{margin-left:-2181.756424pt;}
._b6{margin-left:-2171.251405pt;}
._e1{margin-left:-2169.650487pt;}
._2f{margin-left:-2168.488617pt;}
._e5{margin-left:-2166.405818pt;}
._de{margin-left:-2164.649627pt;}
._ec{margin-left:-2162.540056pt;}
._c{margin-left:-2161.356769pt;}
._f6{margin-left:-2160.275213pt;}
._c6{margin-left:-2157.442820pt;}
._d5{margin-left:-2156.200636pt;}
._9f{margin-left:-2153.068406pt;}
._bb{margin-left:-2151.119462pt;}
._4{margin-left:-2150.225304pt;}
._f1{margin-left:-2146.927092pt;}
._104{margin-left:-2141.744188pt;}
._b{margin-left:-2139.345489pt;}
._e9{margin-left:-2137.707091pt;}
._7e{margin-left:-2136.737974pt;}
._86{margin-left:-2133.225592pt;}
._90{margin-left:-2130.933978pt;}
._d3{margin-left:-2127.625057pt;}
._fa{margin-left:-2126.061619pt;}
._f2{margin-left:-2123.143558pt;}
._8a{margin-left:-2121.167844pt;}
._102{margin-left:-2118.779853pt;}
._c1{margin-left:-2117.580503pt;}
._8{margin-left:-2116.092024pt;}
._be{margin-left:-2113.639782pt;}
._dc{margin-left:-2112.440433pt;}
._e7{margin-left:-2105.817238pt;}
._af{margin-left:-2102.326273pt;}
._8c{margin-left:-2101.041256pt;}
._103{margin-left:-2098.348073pt;}
._b9{margin-left:-2096.249211pt;}
._f7{margin-left:-2094.980256pt;}
._83{margin-left:-2092.908165pt;}
._41{margin-left:-2090.862845pt;}
._bf{margin-left:-2089.047758pt;}
._107{margin-left:-2080.925376pt;}
._b4{margin-left:-2076.861508pt;}
._ad{margin-left:-2072.840474pt;}
._5{margin-left:-2071.362703pt;}
._87{margin-left:-2067.373795pt;}
._9{margin-left:-2066.297592pt;}
._df{margin-left:-2062.522853pt;}
._db{margin-left:-2058.699926pt;}
._100{margin-left:-2054.502202pt;}
._36{margin-left:-2049.276463pt;}
._cd{margin-left:-2046.610052pt;}
._10c{margin-left:-2040.072525pt;}
._c8{margin-left:-2036.870689pt;}
._b8{margin-left:-2016.010570pt;}
._fb{margin-left:-2012.819443pt;}
._ba{margin-left:-1998.014970pt;}
._6{margin-left:-1995.996421pt;}
._3d{margin-left:-1987.546984pt;}
._101{margin-left:-1980.597627pt;}
._a8{margin-left:-1977.315478pt;}
._d7{margin-left:-1941.533092pt;}
._58{margin-left:-1940.285554pt;}
._bc{margin-left:-1937.238991pt;}
._d1{margin-left:-1921.020998pt;}
._52{margin-left:-1917.203425pt;}
._c7{margin-left:-1897.355258pt;}
._80{margin-left:-1892.001018pt;}
._a6{margin-left:-1889.671923pt;}
._b5{margin-left:-1887.283932pt;}
._29{margin-left:-1882.267009pt;}
._108{margin-left:-1875.879401pt;}
._94{margin-left:-1858.970711pt;}
._47{margin-left:-1849.520477pt;}
._a7{margin-left:-1843.989548pt;}
._f5{margin-left:-1791.335951pt;}
._46{margin-left:-1743.817071pt;}
._e2{margin-left:-1742.307176pt;}
._93{margin-left:-1739.410532pt;}
._7c{margin-left:-1728.846616pt;}
._88{margin-left:-1715.605581pt;}
._10{margin-left:-1712.644686pt;}
._53{margin-left:-1701.379365pt;}
._ea{margin-left:-1690.740490pt;}
._e0{margin-left:-1666.753495pt;}
._f{margin-left:-1625.670412pt;}
._e8{margin-left:-1528.250015pt;}
._b7{margin-left:-1516.738399pt;}
._4b{margin-left:-1493.243994pt;}
._d4{margin-left:-1489.710195pt;}
._c9{margin-left:-1464.679123pt;}
._78{margin-left:-1450.742036pt;}
._e6{margin-left:-1437.849027pt;}
._b0{margin-left:-1426.342765pt;}
._10a{margin-left:-1416.946074pt;}
._70{margin-left:-1413.203460pt;}
._2d{margin-left:-1387.958218pt;}
._d8{margin-left:-1371.916915pt;}
._dd{margin-left:-1365.673871pt;}
._f9{margin-left:-1349.579026pt;}
._7b{margin-left:-1340.096667pt;}
._ac{margin-left:-1328.686781pt;}
._da{margin-left:-1298.365720pt;}
._8e{margin-left:-1284.964058pt;}
._bd{margin-left:-1271.310746pt;}
._c5{margin-left:-1257.785935pt;}
._115{margin-left:-1248.389244pt;}
._10d{margin-left:-1242.622728pt;}
._f3{margin-left:-1229.504840pt;}
._9e{margin-left:-1207.632769pt;}
._d6{margin-left:-1190.145821pt;}
._63{margin-left:-1189.219538pt;}
._5e{margin-left:-1181.852104pt;}
._6b{margin-left:-1155.937582pt;}
._fe{margin-left:-1143.505037pt;}
._95{margin-left:-1134.370703pt;}
._10e{margin-left:-1122.334372pt;}
._7a{margin-left:-1114.533244pt;}
._44{margin-left:-1109.055857pt;}
._ae{margin-left:-1097.217632pt;}
._84{margin-left:-1094.503032pt;}
._2{margin-left:-1086.364588pt;}
._109{margin-left:-1061.745792pt;}
._f0{margin-left:-1037.234081pt;}
._c0{margin-left:-1022.724091pt;}
._6e{margin-left:-1020.850107pt;}
._cf{margin-left:-1015.196029pt;}
._13{margin-left:-981.433493pt;}
._fd{margin-left:-943.850781pt;}
._cb{margin-left:-939.492430pt;}
._77{margin-left:-937.195461pt;}
._ff{margin-left:-912.924691pt;}
._38{margin-left:-888.354084pt;}
._c3{margin-left:-856.603441pt;}
._106{margin-left:-838.532881pt;}
._ce{margin-left:-837.049756pt;}
._7f{margin-left:-835.261440pt;}
._57{margin-left:-825.356096pt;}
._7d{margin-left:-804.051575pt;}
._b2{margin-left:-792.186579pt;}
._11{margin-left:-789.750400pt;}
._ee{margin-left:-768.221001pt;}
._4f{margin-left:-763.279037pt;}
._b3{margin-left:-756.870012pt;}
._a5{margin-left:-747.510801pt;}
._76{margin-left:-742.097664pt;}
._4a{margin-left:-733.605839pt;}
._ed{margin-left:-692.490630pt;}
._4e{margin-left:-688.662349pt;}
._110{margin-left:-650.781101pt;}
._a1{margin-left:-643.322644pt;}
._5a{margin-left:-623.404872pt;}
._f8{margin-left:-609.333929pt;}
._aa{margin-left:-582.541312pt;}
._2a{margin-left:-575.511195pt;}
._65{margin-left:-549.982179pt;}
._81{margin-left:-533.153802pt;}
._9c{margin-left:-529.020329pt;}
._3b{margin-left:-522.065171pt;}
._28{margin-left:-518.745542pt;}
._6f{margin-left:-500.910569pt;}
._49{margin-left:-496.819930pt;}
._d{margin-left:-489.404307pt;}
._27{margin-left:-480.703667pt;}
._105{margin-left:-475.477929pt;}
._14{margin-left:-438.442651pt;}
._55{margin-left:-417.491510pt;}
._7{margin-left:-350.673486pt;}
._50{margin-left:-278.002849pt;}
._118{margin-left:-262.909607pt;}
._116{margin-left:-220.971902pt;}
._54{margin-left:-174.012800pt;}
._10f{margin-left:-171.804176pt;}
._e{margin-left:-147.241600pt;}
._3{margin-left:-120.470400pt;}
._72{margin-left:-22.648435pt;}
._71{margin-left:-21.513336pt;}
._67{margin-left:-19.334161pt;}
._68{margin-left:-18.027726pt;}
._5c{margin-left:-16.276890pt;}
._5b{margin-left:-15.291709pt;}
._74{margin-left:-13.921024pt;}
._69{margin-left:-11.934601pt;}
._51{margin-left:-10.478248pt;}
._24{margin-left:-9.225356pt;}
._25{margin-left:-8.325843pt;}
._34{margin-left:-6.783822pt;}
._31{margin-left:-5.632660pt;}
._32{margin-left:-4.701023pt;}
._4c{margin-left:-3.790802pt;}
._66{margin-left:-2.104216pt;}
._0{margin-left:-1.145807pt;}
._1b{width:1.349268pt;}
._26{width:2.714600pt;}
._17{width:3.962138pt;}
._18{width:4.990152pt;}
._22{width:5.895018pt;}
._1e{width:7.014054pt;}
._15{width:8.020652pt;}
._1f{width:9.145042pt;}
._23{width:10.215890pt;}
._1d{width:11.201070pt;}
._21{width:12.196959pt;}
._19{width:14.863370pt;}
._40{width:15.795008pt;}
._42{width:16.871210pt;}
._3c{width:17.915287pt;}
._1a{width:19.012906pt;}
._2b{width:20.062337pt;}
._30{width:21.700735pt;}
._45{width:22.728749pt;}
._39{width:23.858493pt;}
._2c{width:25.411223pt;}
._111{width:26.487425pt;}
._5f{width:29.699969pt;}
._61{width:31.038529pt;}
._62{width:31.938042pt;}
._6d{width:33.137391pt;}
._2e{width:35.584279pt;}
._60{width:46.035756pt;}
._117{width:537.518335pt;}
._119{width:576.009715pt;}
.fs18{font-size:22.666283pt;}
.fs1c{font-size:22.668380pt;}
.fs17{font-size:25.084034pt;}
.fs1b{font-size:25.086131pt;}
.fs14{font-size:25.209948pt;}
.fs1f{font-size:28.876844pt;}
.fs23{font-size:28.879343pt;}
.fs10{font-size:29.262171pt;}
.fs22{font-size:31.732796pt;}
.fs1e{font-size:31.735294pt;}
.fsd{font-size:32.082874pt;}
.fs15{font-size:32.085372pt;}
.fs9{font-size:32.087871pt;}
.fs5{font-size:34.374265pt;}
.fs11{font-size:34.380110pt;}
.fsf{font-size:35.255707pt;}
.fsa{font-size:35.258652pt;}
.fs1a{font-size:35.261597pt;}
.fs1{font-size:35.605696pt;}
.fs1d{font-size:36.810043pt;}
.fs21{font-size:36.812988pt;}
.fs6{font-size:37.774208pt;}
.fs12{font-size:37.777108pt;}
.fs7{font-size:37.780053pt;}
.fs19{font-size:40.900058pt;}
.fs20{font-size:42.204618pt;}
.fs24{font-size:42.207965pt;}
.fs4{font-size:44.707904pt;}
.fse{font-size:46.890203pt;}
.fs16{font-size:46.894219pt;}
.fsb{font-size:46.897788pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:50.239280pt;}
.fs13{font-size:50.247758pt;}
.fs0{font-size:53.542400pt;}
.fs3{font-size:58.666667pt;}
.fsc{font-size:58.764569pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:42.499392pt;}
.y2{bottom:57.892832pt;}
.y9c{bottom:82.656080pt;}
.y32{bottom:83.994640pt;}
.y3f{bottom:83.994752pt;}
.y1{bottom:86.280000pt;}
.y6a{bottom:96.041680pt;}
.ya7{bottom:97.179456pt;}
.y81{bottom:100.057472pt;}
.y98{bottom:108.824928pt;}
.y9b{bottom:113.442960pt;}
.y4f{bottom:114.647776pt;}
.y3d{bottom:114.781520pt;}
.y31{bottom:114.781632pt;}
.y69{bottom:126.828560pt;}
.ya6{bottom:127.966336pt;}
.y47{bottom:130.509712pt;}
.y80{bottom:130.844352pt;}
.y97{bottom:139.611808pt;}
.y9d{bottom:140.214160pt;}
.y19{bottom:145.434544pt;}
.y3c{bottom:145.568400pt;}
.y30{bottom:145.568512pt;}
.y88{bottom:157.615440pt;}
.ya5{bottom:158.753216pt;}
.y46{bottom:161.296592pt;}
.y96{bottom:170.398688pt;}
.y68{bottom:171.001040pt;}
.y7f{bottom:175.016832pt;}
.y2f{bottom:176.221536pt;}
.y18{bottom:176.355280pt;}
.y3e{bottom:176.355392pt;}
.y58{bottom:180.370960pt;}
.y87{bottom:188.402320pt;}
.y44{bottom:189.406240pt;}
.ya4{bottom:189.540096pt;}
.y42{bottom:198.374592pt;}
.y45{bottom:198.374704pt;}
.y95{bottom:201.185568pt;}
.y67{bottom:201.787920pt;}
.y7e{bottom:205.803712pt;}
.y4d{bottom:207.008416pt;}
.y17{bottom:207.142160pt;}
.y2e{bottom:207.142272pt;}
.y43{bottom:208.480832pt;}
.y57{bottom:211.157840pt;}
.y56{bottom:211.157952pt;}
.y86{bottom:219.189200pt;}
.ya3{bottom:220.326976pt;}
.y94{bottom:231.972448pt;}
.y72{bottom:232.574800pt;}
.y16{bottom:237.929040pt;}
.y2d{bottom:237.929152pt;}
.y55{bottom:241.944832pt;}
.y66{bottom:245.960400pt;}
.y9a{bottom:249.976080pt;}
.y7d{bottom:249.976192pt;}
.ya2{bottom:251.113856pt;}
.y93{bottom:262.759328pt;}
.y85{bottom:263.361680pt;}
.y15{bottom:268.715920pt;}
.y2c{bottom:268.716032pt;}
.y65{bottom:276.747280pt;}
.y7c{bottom:280.763072pt;}
.ya1{bottom:281.900736pt;}
.y54{bottom:286.117312pt;}
.y1a7{bottom:287.558416pt;}
.y1b5{bottom:287.563347pt;}
.y1c3{bottom:289.498681pt;}
.y8a{bottom:294.148560pt;}
.y1b4{bottom:297.084468pt;}
.y1a6{bottom:297.087815pt;}
.y1c2{bottom:299.019803pt;}
.y14{bottom:299.502800pt;}
.y2b{bottom:299.502912pt;}
.y92{bottom:306.931808pt;}
.y64{bottom:307.534160pt;}
.y1ac{bottom:311.006608pt;}
.y19f{bottom:311.009954pt;}
.ya0{bottom:312.553760pt;}
.y1bb{bottom:312.940827pt;}
.y53{bottom:316.904192pt;}
.y1a0{bottom:319.818794pt;}
.y1ad{bottom:319.826603pt;}
.y1bc{bottom:321.761937pt;}
.y1ab{bottom:323.000105pt;}
.y99{bottom:324.935440pt;}
.y7b{bottom:324.935552pt;}
.y19e{bottom:325.654916pt;}
.y1ba{bottom:327.579096pt;}
.ye0{bottom:328.364173pt;}
.yd7{bottom:328.680965pt;}
.yea{bottom:328.686542pt;}
.y4a{bottom:330.155824pt;}
.y13{bottom:330.289680pt;}
.y2a{bottom:330.289792pt;}
.y1ae{bottom:336.575112pt;}
.y91{bottom:337.718688pt;}
.ydf{bottom:337.892701pt;}
.yd6{bottom:338.209493pt;}
.ye9{bottom:338.215071pt;}
.y84{bottom:338.321040pt;}
.y71{bottom:338.321152pt;}
.y1a1{bottom:340.633960pt;}
.y1bd{bottom:342.561487pt;}
.y9f{bottom:343.340640pt;}
.y52{bottom:347.691072pt;}
.y63{bottom:351.706640pt;}
.yd8{bottom:352.780834pt;}
.ycf{bottom:353.097627pt;}
.ye1{bottom:353.103204pt;}
.y1af{bottom:353.323620pt;}
.y7a{bottom:355.722432pt;}
.y49{bottom:360.942704pt;}
.y12{bottom:361.076560pt;}
.y29{bottom:361.076672pt;}
.y1a2{bottom:361.425255pt;}
.yd9{bottom:361.601945pt;}
.yd0{bottom:361.917622pt;}
.ye2{bottom:361.923199pt;}
.y1be{bottom:363.360590pt;}
.y83{bottom:369.107920pt;}
.y89{bottom:369.108032pt;}
.y1b0{bottom:370.160586pt;}
.y9e{bottom:371.182688pt;}
.ydd{bottom:371.207228pt;}
.ye6{bottom:372.063907pt;}
.yd4{bottom:378.405335pt;}
.y51{bottom:378.477952pt;}
.y1c4{bottom:379.935755pt;}
.y90{bottom:381.891168pt;}
.y1a3{bottom:382.240421pt;}
.y62{bottom:382.493520pt;}
.y70{bottom:382.493632pt;}
.y1bf{bottom:384.160139pt;}
.y79{bottom:386.509312pt;}
.y1b1{bottom:386.909095pt;}
.y48{bottom:391.729584pt;}
.y11{bottom:391.863440pt;}
.y28{bottom:391.863552pt;}
.yda{bottom:396.234954pt;}
.yd1{bottom:396.551077pt;}
.ye3{bottom:396.556654pt;}
.y1b6{bottom:399.685092pt;}
.y82{bottom:399.894912pt;}
.y1a4{bottom:403.032162pt;}
.y1b2{bottom:403.737806pt;}
.y1c0{bottom:404.967496pt;}
.y8f{bottom:412.678048pt;}
.y61{bottom:413.280400pt;}
.y6f{bottom:413.280512pt;}
.y1a9{bottom:413.962285pt;}
.y1b7{bottom:416.082452pt;}
.y1b3{bottom:420.486315pt;}
.ya8{bottom:422.516464pt;}
.y10{bottom:422.650320pt;}
.y27{bottom:422.650432pt;}
.y1a5{bottom:423.927529pt;}
.y1c5{bottom:424.890177pt;}
.y1c1{bottom:425.855056pt;}
.y1a8{bottom:426.143962pt;}
.y1b8{bottom:426.664885pt;}
.y160{bottom:428.858070pt;}
.y78{bottom:430.681792pt;}
.ydb{bottom:430.964785pt;}
.yd2{bottom:431.280909pt;}
.ye4{bottom:431.286486pt;}
.yd5{bottom:437.106768pt;}
.y163{bottom:438.904900pt;}
.y1c6{bottom:439.188229pt;}
.y1b9{bottom:439.189344pt;}
.y1aa{bottom:439.352202pt;}
.y19d{bottom:439.355549pt;}
.y178{bottom:439.373180pt;}
.y8e{bottom:443.465040pt;}
.y60{bottom:444.067392pt;}
.y122{bottom:444.875380pt;}
.y164{bottom:448.953024pt;}
.yde{bottom:450.540333pt;}
.y120{bottom:451.756192pt;}
.yf{bottom:453.437200pt;}
.y26{bottom:453.437312pt;}
.ye8{bottom:453.501897pt;}
.y121{bottom:454.396501pt;}
.y6e{bottom:457.452992pt;}
.y162{bottom:459.008956pt;}
.y77{bottom:461.468672pt;}
.ye7{bottom:463.554483pt;}
.ydc{bottom:465.694617pt;}
.yd3{bottom:466.010740pt;}
.ye5{bottom:466.016318pt;}
.yc4{bottom:468.173407pt;}
.y183{bottom:468.597541pt;}
.y114{bottom:468.858527pt;}
.y161{bottom:469.051502pt;}
.y19a{bottom:469.507762pt;}
.y190{bottom:470.100075pt;}
.y5f{bottom:474.854272pt;}
.y115{bottom:477.666251pt;}
.y182{bottom:478.126939pt;}
.y199{bottom:479.037160pt;}
.y165{bottom:479.100742pt;}
.y18f{bottom:479.629473pt;}
.y21a{bottom:480.323907pt;}
.y20b{bottom:480.941474pt;}
.y50{bottom:484.090336pt;}
.ye{bottom:484.224080pt;}
.y25{bottom:484.224192pt;}
.y8d{bottom:487.637520pt;}
.y6d{bottom:488.239872pt;}
.y218{bottom:488.419350pt;}
.y219{bottom:488.901232pt;}
.y209{bottom:489.031741pt;}
.y20a{bottom:489.511392pt;}
.y116{bottom:491.776012pt;}
.yf5{bottom:492.029904pt;}
.y17b{bottom:492.047963pt;}
.y15f{bottom:492.184786pt;}
.yce{bottom:492.613293pt;}
.y152{bottom:492.623611pt;}
.yc0{bottom:492.816152pt;}
.y193{bottom:492.958184pt;}
.y189{bottom:493.550497pt;}
.y15d{bottom:497.623066pt;}
.y15e{bottom:499.437930pt;}
.y17c{bottom:500.857919pt;}
.y210{bottom:501.508236pt;}
.yf4{bottom:501.558432pt;}
.y194{bottom:501.767024pt;}
.y201{bottom:502.120627pt;}
.ycd{bottom:502.141821pt;}
.y151{bottom:502.145167pt;}
.ybf{bottom:502.338143pt;}
.y18a{bottom:502.359337pt;}
.y113{bottom:504.122890pt;}
.y76{bottom:505.641152pt;}
.y117{bottom:505.869264pt;}
.y17a{bottom:506.692925pt;}
.y192{bottom:507.603146pt;}
.y188{bottom:508.195459pt;}
.y211{bottom:509.441435pt;}
.y202{bottom:510.057173pt;}
.y157{bottom:510.540170pt;}
.y3b{bottom:515.010960pt;}
.y24{bottom:515.011072pt;}
.y148{bottom:516.072884pt;}
.yeb{bottom:516.443219pt;}
.yc5{bottom:517.026608pt;}
.yb5{bottom:517.231854pt;}
.y158{bottom:517.643461pt;}
.y8c{bottom:518.424400pt;}
.y5e{bottom:519.026752pt;}
.y118{bottom:520.067036pt;}
.yd{bottom:521.168336pt;}
.y17d{bottom:521.673085pt;}
.y149{bottom:524.881725pt;}
.yec{bottom:525.265445pt;}
.yc6{bottom:525.848834pt;}
.yb6{bottom:526.046272pt;}
.y195{bottom:527.780488pt;}
.y18b{bottom:528.372801pt;}
.y203{bottom:528.778273pt;}
.y212{bottom:531.895444pt;}
.y119{bottom:534.168542pt;}
.y75{bottom:536.428032pt;}
.yf2{bottom:536.982535pt;}
.ycb{bottom:537.573684pt;}
.ybd{bottom:537.775871pt;}
.y20d{bottom:538.144623pt;}
.y14a{bottom:539.689098pt;}
.y17e{bottom:542.464379pt;}
.y159{bottom:543.110123pt;}
.y184{bottom:543.175188pt;}
.y20f{bottom:543.248999pt;}
.y200{bottom:543.852466pt;}
.yc{bottom:545.663984pt;}
.y3a{bottom:545.797840pt;}
.y23{bottom:545.797952pt;}
.yb7{bottom:546.855414pt;}
.y204{bottom:547.506735pt;}
.y11a{bottom:548.358505pt;}
.y8b{bottom:549.478992pt;}
.y5d{bottom:549.813632pt;}
.yed{bottom:551.268423pt;}
.ybc{bottom:552.849820pt;}
.yca{bottom:553.174421pt;}
.y196{bottom:553.785697pt;}
.y213{bottom:554.349007pt;}
.y18c{bottom:554.378010pt;}
.y14b{bottom:554.584929pt;}
.y19c{bottom:556.250878pt;}
.yf1{bottom:558.673672pt;}
.yc7{bottom:560.482289pt;}
.y147{bottom:561.914102pt;}
.y11b{bottom:562.467820pt;}
.y17f{bottom:563.279991pt;}
.y205{bottom:566.227389pt;}
.yb8{bottom:567.656302pt;}
.y15a{bottom:568.576785pt;}
.y14c{bottom:569.488567pt;}
.y4c{bottom:576.450976pt;}
.yb{bottom:576.584720pt;}
.y22{bottom:576.584832pt;}
.y11c{bottom:576.649975pt;}
.y214{bottom:576.881880pt;}
.yee{bottom:577.263593pt;}
.y197{bottom:579.790906pt;}
.y18d{bottom:580.383219pt;}
.y5c{bottom:580.600512pt;}
.y180{bottom:584.071286pt;}
.y14d{bottom:584.295941pt;}
.y206{bottom:584.948489pt;}
.yb9{bottom:588.457524pt;}
.y11d{bottom:590.759290pt;}
.y186{bottom:591.833952pt;}
.y6c{bottom:593.986112pt;}
.y15b{bottom:594.112271pt;}
.yc8{bottom:595.203755pt;}
.y14e{bottom:599.191325pt;}
.y215{bottom:599.335890pt;}
.y185{bottom:602.947659pt;}
.yef{bottom:603.267017pt;}
.y207{bottom:603.669589pt;}
.y19b{bottom:604.909799pt;}
.y11e{bottom:604.948806pt;}
.y181{bottom:604.966654pt;}
.y198{bottom:605.884125pt;}
.y18e{bottom:606.476438pt;}
.y39{bottom:607.237744pt;}
.y4b{bottom:607.237856pt;}
.ya{bottom:607.371600pt;}
.y21{bottom:607.371712pt;}
.yba{bottom:609.266220pt;}
.y5b{bottom:611.387392pt;}
.y14f{bottom:614.087156pt;}
.y217{bottom:615.598167pt;}
.yf3{bottom:616.848605pt;}
.y153{bottom:619.024947pt;}
.y11f{bottom:619.058567pt;}
.y20c{bottom:619.543572pt;}
.y15c{bottom:619.566216pt;}
.y179{bottom:620.394673pt;}
.y177{bottom:620.397350pt;}
.y191{bottom:621.304894pt;}
.y216{bottom:621.868763pt;}
.y187{bottom:621.897207pt;}
.y208{bottom:622.477361pt;}
.y6b{bottom:624.772992pt;}
.ycc{bottom:628.540926pt;}
.y150{bottom:628.982540pt;}
.yf0{bottom:629.366372pt;}
.yc9{bottom:629.933587pt;}
.ybb{bottom:630.155564pt;}
.ybe{bottom:631.389828pt;}
.y20e{bottom:635.588445pt;}
.y1e2{bottom:635.598149pt;}
.y1df{bottom:635.670989pt;}
.y1ff{bottom:636.203067pt;}
.y156{bottom:637.188024pt;}
.y38{bottom:638.024624pt;}
.y9{bottom:638.158480pt;}
.y20{bottom:638.158592pt;}
.yc1{bottom:641.762553pt;}
.y74{bottom:642.107344pt;}
.y174{bottom:643.538443pt;}
.y173{bottom:653.059999pt;}
.y5a{bottom:655.492944pt;}
.y102{bottom:659.493799pt;}
.y145{bottom:659.633511pt;}
.y138{bottom:660.411203pt;}
.y12c{bottom:660.413222pt;}
.y1fe{bottom:660.571050pt;}
.y1f1{bottom:661.124790pt;}
.y167{bottom:665.924676pt;}
.y1fc{bottom:668.666493pt;}
.y4e{bottom:668.744688pt;}
.y37{bottom:668.878432pt;}
.y8{bottom:668.878544pt;}
.y101{bottom:669.022327pt;}
.y1fd{bottom:669.148375pt;}
.y144{bottom:669.155068pt;}
.y1ef{bottom:669.224227pt;}
.y1f0{bottom:669.693838pt;}
.y12b{bottom:669.934779pt;}
.y137{bottom:669.941472pt;}
.y110{bottom:670.785880pt;}
.yb1{bottom:671.850035pt;}
.y168{bottom:674.745787pt;}
.y111{bottom:680.757037pt;}
.y1f4{bottom:681.756495pt;}
.y1e5{bottom:681.836808pt;}
.y1d1{bottom:682.438045pt;}
.y13c{bottom:683.081669pt;}
.ya9{bottom:683.380614pt;}
.y124{bottom:683.862496pt;}
.yf6{bottom:683.907114pt;}
.y1d{bottom:684.097133pt;}
.y1d0{bottom:686.032290pt;}
.y59{bottom:686.279824pt;}
.y169{bottom:688.847293pt;}
.y112{bottom:690.316586pt;}
.y1cf{bottom:691.472209pt;}
.y1d2{bottom:692.486169pt;}
.y105{bottom:692.604408pt;}
.y125{bottom:692.672451pt;}
.y130{bottom:692.689183pt;}
.yf7{bottom:692.729340pt;}
.yaa{bottom:693.291535pt;}
.y1e6{bottom:693.340616pt;}
.y1f5{bottom:695.007123pt;}
.y7{bottom:699.531568pt;}
.y36{bottom:699.665312pt;}
.y1f{bottom:699.665424pt;}
.y13d{bottom:699.828170pt;}
.y10e{bottom:700.639114pt;}
.y166{bottom:701.201310pt;}
.y1d6{bottom:702.534292pt;}
.y16a{bottom:702.956608pt;}
.y1c7{bottom:705.299534pt;}
.y106{bottom:708.471029pt;}
.y131{bottom:709.960623pt;}
.yfd{bottom:710.272285pt;}
.yab{bottom:710.384277pt;}
.y1e7{bottom:711.503983pt;}
.y123{bottom:712.258931pt;}
.y12f{bottom:712.271201pt;}
.y1c8{bottom:712.399479pt;}
.y10f{bottom:712.532220pt;}
.y1d7{bottom:712.582416pt;}
.y126{bottom:713.479809pt;}
.yf8{bottom:713.527105pt;}
.y13e{bottom:715.870812pt;}
.y73{bottom:717.066704pt;}
.y16b{bottom:717.146571pt;}
.y1fa{bottom:717.305302pt;}
.y1ed{bottom:718.330416pt;}
.y13b{bottom:718.347148pt;}
.y1f6{bottom:721.749544pt;}
.y1d5{bottom:722.637233pt;}
.y1f3{bottom:723.496142pt;}
.y1e4{bottom:723.563070pt;}
.y107{bottom:724.423541pt;}
.y132{bottom:727.328328pt;}
.yac{bottom:727.571165pt;}
.y1e8{bottom:729.588040pt;}
.y1c9{bottom:729.633439pt;}
.yb2{bottom:730.214598pt;}
.y41{bottom:730.318336pt;}
.y35{bottom:730.452192pt;}
.y6{bottom:730.452304pt;}
.y16c{bottom:731.255886pt;}
.y13f{bottom:731.913900pt;}
.y1d8{bottom:732.684241pt;}
.y127{bottom:734.278912pt;}
.yf9{bottom:734.332789pt;}
.y108{bottom:740.393008pt;}
.y1d9{bottom:742.732365pt;}
.y133{bottom:744.695586pt;}
.yad{bottom:744.758498pt;}
.y16d{bottom:745.445849pt;}
.y1ca{bottom:746.936670pt;}
.y1e9{bottom:747.758769pt;}
.y140{bottom:747.868085pt;}
.y1f7{bottom:748.556885pt;}
.y1da{bottom:752.780488pt;}
.y128{bottom:755.078461pt;}
.yfa{bottom:755.130553pt;}
.y109{bottom:756.259629pt;}
.y16e{bottom:759.555164pt;}
.y40{bottom:761.105328pt;}
.y34{bottom:761.239072pt;}
.y5{bottom:761.239184pt;}
.yae{bottom:761.842539pt;}
.y134{bottom:762.063290pt;}
.y1db{bottom:762.829727pt;}
.y141{bottom:763.910726pt;}
.y1cb{bottom:764.164495pt;}
.y1ea{bottom:765.850300pt;}
.y10d{bottom:766.375796pt;}
.y100{bottom:771.091989pt;}
.y12e{bottom:772.010018pt;}
.y10a{bottom:772.220395pt;}
.y1dc{bottom:772.880082pt;}
.y16f{bottom:773.752935pt;}
.yb4{bottom:773.842730pt;}
.y1f8{bottom:775.291944pt;}
.y129{bottom:775.877564pt;}
.yfb{bottom:775.944492pt;}
.yb3{bottom:776.673784pt;}
.y104{bottom:778.273363pt;}
.yaf{bottom:779.038127pt;}
.y135{bottom:779.430549pt;}
.y142{bottom:779.953368pt;}
.y1cc{bottom:781.473860pt;}
.y1d4{bottom:782.928206pt;}
.y1eb{bottom:784.006751pt;}
.y13a{bottom:784.712953pt;}
.yff{bottom:784.835832pt;}
.y170{bottom:787.854441pt;}
.y10b{bottom:788.181608pt;}
.y146{bottom:791.859814pt;}
.y1e{bottom:791.892208pt;}
.y33{bottom:792.025952pt;}
.y4{bottom:792.026064pt;}
.y12d{bottom:792.639526pt;}
.y1d3{bottom:792.980791pt;}
.y1ee{bottom:793.056643pt;}
.y1fb{bottom:793.471597pt;}
.yfe{bottom:795.421433pt;}
.y143{bottom:795.996009pt;}
.yb0{bottom:796.216760pt;}
.y139{bottom:796.359540pt;}
.y12a{bottom:796.765124pt;}
.y136{bottom:796.790445pt;}
.yfc{bottom:796.830267pt;}
.y1cd{bottom:798.701685pt;}
.y171{bottom:802.044404pt;}
.y1f9{bottom:802.113675pt;}
.y1ec{bottom:802.170117pt;}
.y1dd{bottom:803.558762pt;}
.y10c{bottom:804.142374pt;}
.y155{bottom:808.237029pt;}
.y1de{bottom:813.606886pt;}
.y176{bottom:815.745681pt;}
.y1f2{bottom:815.835588pt;}
.y1e1{bottom:815.843062pt;}
.y1e3{bottom:815.911440pt;}
.y1ce{bottom:815.998781pt;}
.y172{bottom:816.145911pt;}
.y103{bottom:817.005713pt;}
.yc3{bottom:817.013298pt;}
.y154{bottom:829.568098pt;}
.y1e0{bottom:837.424330pt;}
.y175{bottom:839.177843pt;}
.yc2{bottom:842.546553pt;}
.y1c{bottom:1005.333333pt;}
.y1b{bottom:1020.000000pt;}
.y1a{bottom:1034.880000pt;}
.h21{height:16.501674pt;}
.h26{height:16.503200pt;}
.h20{height:18.261863pt;}
.h25{height:18.263390pt;}
.h1c{height:18.353532pt;}
.h29{height:21.023132pt;}
.h2d{height:21.024951pt;}
.h18{height:21.303661pt;}
.h2c{height:23.102343pt;}
.h28{height:23.104162pt;}
.h15{height:23.357209pt;}
.h1d{height:23.359028pt;}
.h11{height:23.360848pt;}
.h6{height:24.739700pt;}
.hd{height:25.025405pt;}
.h19{height:25.029660pt;}
.h17{height:25.667119pt;}
.h12{height:25.669263pt;}
.h24{height:25.671407pt;}
.h27{height:26.798718pt;}
.h2b{height:26.800862pt;}
.he{height:27.500656pt;}
.h1a{height:27.502768pt;}
.hf{height:27.504912pt;}
.h23{height:29.776360pt;}
.h2a{height:30.726116pt;}
.h2e{height:30.728552pt;}
.h16{height:34.137350pt;}
.h1e{height:34.140273pt;}
.h13{height:34.142872pt;}
.h1f{height:34.144468pt;}
.h10{height:36.575570pt;}
.h1b{height:36.581742pt;}
.h2{height:37.202556pt;}
.hc{height:37.411706pt;}
.hb{height:37.412152pt;}
.h3{height:37.568569pt;}
.h14{height:40.802352pt;}
.h22{height:44.445047pt;}
.h4{height:49.368758pt;}
.h5{height:49.369204pt;}
.ha{height:49.369650pt;}
.h7{height:50.062500pt;}
.h9{height:52.522794pt;}
.h8{height:61.187500pt;}
.h1{height:883.449600pt;}
.h0{height:1056.000000pt;}
.w1{width:682.665600pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:38.952096pt;}
.x4{left:48.960000pt;}
.x1a{left:63.531962pt;}
.x1{left:66.666667pt;}
.x53{left:72.005604pt;}
.x5a{left:73.390345pt;}
.x73{left:76.547561pt;}
.x3{left:79.108896pt;}
.x76{left:81.623772pt;}
.x75{left:85.666475pt;}
.x16{left:89.537539pt;}
.x2f{left:91.593757pt;}
.x5b{left:93.240409pt;}
.x43{left:95.128001pt;}
.x44{left:96.561532pt;}
.x3c{left:98.532740pt;}
.x2e{left:99.438800pt;}
.x15{left:101.877878pt;}
.x81{left:102.928783pt;}
.x2d{left:103.938570pt;}
.x79{left:105.031672pt;}
.x74{left:106.296611pt;}
.xb{left:107.218656pt;}
.x3a{left:108.347987pt;}
.x14{left:110.870025pt;}
.x2c{left:112.929845pt;}
.x5d{left:117.495317pt;}
.x46{left:119.383802pt;}
.x19{left:121.181926pt;}
.x32{left:123.241041pt;}
.x13{left:124.798411pt;}
.x2b{left:126.858678pt;}
.x5e{left:128.074390pt;}
.x17{left:129.107458pt;}
.x30{left:131.167725pt;}
.x77{left:133.592750pt;}
.x82{left:136.967037pt;}
.x78{left:138.350215pt;}
.x47{left:144.767495pt;}
.x3f{left:146.219833pt;}
.x5f{left:152.394967pt;}
.x3b{left:153.974557pt;}
.x6c{left:156.079442pt;}
.x5c{left:159.275254pt;}
.x45{left:161.163739pt;}
.x18{left:162.960756pt;}
.x31{left:165.014330pt;}
.x59{left:171.386991pt;}
.x72{left:188.216037pt;}
.x7a{left:200.148184pt;}
.x7d{left:205.472943pt;}
.x7c{left:209.515634pt;}
.x3e{left:214.364807pt;}
.x3d{left:215.736831pt;}
.x80{left:222.201835pt;}
.x7f{left:224.822307pt;}
.x7b{left:226.090592pt;}
.x6d{left:230.863674pt;}
.x7e{left:233.394668pt;}
.x1e{left:234.990901pt;}
.x40{left:236.024938pt;}
.x39{left:237.307725pt;}
.x41{left:240.531067pt;}
.x64{left:241.789670pt;}
.x6e{left:243.650269pt;}
.x1f{left:245.577371pt;}
.x33{left:249.024475pt;}
.x49{left:250.070895pt;}
.x10{left:252.290673pt;}
.x1d{left:253.425921pt;}
.x60{left:255.470869pt;}
.x70{left:257.620373pt;}
.x4b{left:259.417248pt;}
.x42{left:262.135169pt;}
.x48{left:263.996381pt;}
.xe{left:265.231202pt;}
.x1c{left:266.909979pt;}
.x4c{left:269.466629pt;}
.x65{left:270.618906pt;}
.xd{left:271.935157pt;}
.x63{left:273.973114pt;}
.x22{left:277.224088pt;}
.x1b{left:280.842158pt;}
.x20{left:285.151206pt;}
.x67{left:287.205672pt;}
.x6{left:289.463600pt;}
.x6f{left:291.771501pt;}
.x4d{left:297.489383pt;}
.x4a{left:301.197194pt;}
.x66{left:304.116370pt;}
.x34{left:306.389691pt;}
.xf{left:307.737175pt;}
.x21{left:319.005619pt;}
.x8{left:323.864592pt;}
.x7{left:326.943280pt;}
.x71{left:354.524309pt;}
.x11{left:365.265137pt;}
.x4e{left:377.616700pt;}
.x68{left:381.917939pt;}
.x12{left:385.660330pt;}
.x50{left:388.034099pt;}
.x35{left:390.547189pt;}
.x69{left:392.049985pt;}
.x9{left:393.268928pt;}
.x55{left:398.772730pt;}
.x27{left:401.097273pt;}
.x54{left:402.252897pt;}
.x4f{left:406.445936pt;}
.x61{left:409.982947pt;}
.x52{left:411.389149pt;}
.x26{left:413.441540pt;}
.x58{left:414.417116pt;}
.x37{left:415.598340pt;}
.x57{left:416.678111pt;}
.x25{left:417.933034pt;}
.x62{left:420.027815pt;}
.x24{left:422.432804pt;}
.x2a{left:432.743999pt;}
.x23{left:436.361636pt;}
.x6a{left:437.358863pt;}
.x36{left:440.707494pt;}
.x28{left:442.254647pt;}
.x51{left:443.653442pt;}
.x56{left:450.306085pt;}
.x38{left:451.471748pt;}
.x6b{left:455.080282pt;}
.x29{left:474.517289pt;}
.xa{left:590.304960pt;}
.x2{left:596.997760pt;}
.x5{left:790.666667pt;}
}




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