
    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_59e7252712e3586dd13ce7f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_752ea6f632d35eb09bd3dab7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_1c1a854ee8da9dc924ee96bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088000;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_eb265df643befac3ab50da87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9abcaada5883c3c751f65f13.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_0553da5d7ac130c830f5819d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.457000;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_7dac63884098b48d200b0e3e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.693000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d49924da8ff3aa3a3c8a2479.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932000;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_28fd6496e8ffe12c291f2a9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131000;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_1adeec2908faae53c6822e1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_e90bad813b866e3513a2baa5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.510000;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_41994f7f1caef7f36a6309d1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.545000;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_c536c697600e6169e61f7f26.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.678000;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_176dd853ab0e3a92ce676c97.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.669000;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_85bdffede2018f26b81c0165.woff2')format("woff");}.fff{font-family:fff;line-height:0.244000;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_64370df8c508f7871b6ae5f8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.818000;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_8f56ed92820d8a5de368f9e6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.264000;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_0cdecbff2b38116701bcac72.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.279000;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;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls87{letter-spacing:-1.846301px;}
.ls89{letter-spacing:-1.711063px;}
.ls91{letter-spacing:-1.705183px;}
.ls8d{letter-spacing:-1.693423px;}
.ls88{letter-spacing:-1.675783px;}
.ls92{letter-spacing:-1.664023px;}
.ls90{letter-spacing:-1.658143px;}
.ls8b{letter-spacing:-1.646383px;}
.ls8a{letter-spacing:-1.634623px;}
.ls93{letter-spacing:-1.622863px;}
.ls8e{letter-spacing:-1.593464px;}
.ls94{letter-spacing:-1.587584px;}
.ls8c{letter-spacing:-1.575824px;}
.ls86{letter-spacing:-1.558184px;}
.ls8f{letter-spacing:-1.505265px;}
.lsae{letter-spacing:-1.502980px;}
.lsad{letter-spacing:-1.453481px;}
.lsab{letter-spacing:-1.394981px;}
.lsa1{letter-spacing:-1.352386px;}
.lsac{letter-spacing:-1.345482px;}
.ls9a{letter-spacing:-1.340626px;}
.ls9f{letter-spacing:-1.317107px;}
.ls9c{letter-spacing:-1.311227px;}
.ls9e{letter-spacing:-1.305347px;}
.lsa2{letter-spacing:-1.293587px;}
.ls97{letter-spacing:-1.275947px;}
.lsa0{letter-spacing:-1.258307px;}
.ls99{letter-spacing:-1.252427px;}
.ls3f{letter-spacing:-1.246547px;}
.ls98{letter-spacing:-1.234787px;}
.ls96{letter-spacing:-1.228902px;}
.ls4e{letter-spacing:-1.223028px;}
.ls4b{letter-spacing:-1.217148px;}
.ls9b{letter-spacing:-1.211268px;}
.ls23{letter-spacing:-1.206012px;}
.ls9d{letter-spacing:-1.205388px;}
.ls95{letter-spacing:-1.193628px;}
.ls51{letter-spacing:-1.187748px;}
.ls3c{letter-spacing:-1.181868px;}
.lsa3{letter-spacing:-1.170108px;}
.lsb0{letter-spacing:-1.169984px;}
.ls30{letter-spacing:-1.164228px;}
.ls28{letter-spacing:-1.158348px;}
.ls22{letter-spacing:-1.158012px;}
.ls82{letter-spacing:-1.152468px;}
.ls36{letter-spacing:-1.140708px;}
.ls38{letter-spacing:-1.134828px;}
.lsaf{letter-spacing:-1.129485px;}
.ls4a{letter-spacing:-1.123069px;}
.ls50{letter-spacing:-1.117189px;}
.ls2a{letter-spacing:-1.111309px;}
.ls85{letter-spacing:-1.105429px;}
.ls83{letter-spacing:-1.099549px;}
.ls20{letter-spacing:-1.098011px;}
.ls2c{letter-spacing:-1.093663px;}
.ls4c{letter-spacing:-1.087789px;}
.ls34{letter-spacing:-1.081909px;}
.ls1f{letter-spacing:-1.080011px;}
.ls3a{letter-spacing:-1.076029px;}
.ls24{letter-spacing:-1.070149px;}
.ls26{letter-spacing:-1.064269px;}
.ls3b{letter-spacing:-1.058389px;}
.ls32{letter-spacing:-1.052509px;}
.ls2f{letter-spacing:-1.046629px;}
.ls1e{letter-spacing:-1.044010px;}
.ls2d{letter-spacing:-1.040749px;}
.ls2b{letter-spacing:-1.034869px;}
.ls29{letter-spacing:-1.028990px;}
.ls33{letter-spacing:-1.023110px;}
.ls21{letter-spacing:-1.020010px;}
.ls4d{letter-spacing:-1.017230px;}
.ls31{letter-spacing:-1.011350px;}
.ls39{letter-spacing:-0.993704px;}
.ls35{letter-spacing:-0.976070px;}
.ls25{letter-spacing:-0.970190px;}
.ls3d{letter-spacing:-0.952550px;}
.ls3e{letter-spacing:-0.911391px;}
.ls37{letter-spacing:-0.905511px;}
.ls27{letter-spacing:-0.887871px;}
.ls52{letter-spacing:-0.870231px;}
.ls2e{letter-spacing:-0.829072px;}
.lsa9{letter-spacing:-0.787490px;}
.lse{letter-spacing:0.000000px;}
.lsa5{letter-spacing:0.000040px;}
.ls41{letter-spacing:0.000058px;}
.lsa7{letter-spacing:0.044968px;}
.lsa6{letter-spacing:0.045032px;}
.lsd{letter-spacing:0.047971px;}
.ls62{letter-spacing:0.048031px;}
.ls0{letter-spacing:0.066021px;}
.lsa8{letter-spacing:0.090000px;}
.ls44{letter-spacing:0.117613px;}
.ls5c{letter-spacing:0.144000px;}
.ls57{letter-spacing:0.176400px;}
.ls7c{letter-spacing:0.176402px;}
.ls5e{letter-spacing:0.251998px;}
.ls76{letter-spacing:0.352798px;}
.ls7a{letter-spacing:0.452755px;}
.lsc{letter-spacing:0.522005px;}
.ls7{letter-spacing:0.528005px;}
.ls68{letter-spacing:0.529200px;}
.ls5{letter-spacing:0.534005px;}
.ls7b{letter-spacing:0.535075px;}
.ls2{letter-spacing:0.540005px;}
.ls15{letter-spacing:0.546005px;}
.ls66{letter-spacing:0.546834px;}
.ls3{letter-spacing:0.552006px;}
.ls10{letter-spacing:0.558005px;}
.ls13{letter-spacing:0.564006px;}
.ls6e{letter-spacing:0.564474px;}
.ls4{letter-spacing:0.570006px;}
.ls9{letter-spacing:0.576005px;}
.ls63{letter-spacing:0.576234px;}
.ls1{letter-spacing:0.582006px;}
.ls6d{letter-spacing:0.582114px;}
.ls14{letter-spacing:0.588006px;}
.lsb{letter-spacing:0.594006px;}
.ls5b{letter-spacing:0.599754px;}
.ls12{letter-spacing:0.600006px;}
.ls6{letter-spacing:0.600020px;}
.ls6a{letter-spacing:0.611514px;}
.lsa{letter-spacing:0.612006px;}
.ls5a{letter-spacing:0.617394px;}
.ls69{letter-spacing:0.623274px;}
.ls6c{letter-spacing:0.629154px;}
.ls11{letter-spacing:0.636006px;}
.ls64{letter-spacing:0.640913px;}
.ls59{letter-spacing:0.652673px;}
.ls8{letter-spacing:0.660007px;}
.lsf{letter-spacing:0.684007px;}
.ls70{letter-spacing:0.693833px;}
.ls6b{letter-spacing:0.705593px;}
.ls79{letter-spacing:0.770272px;}
.ls67{letter-spacing:0.793792px;}
.ls6f{letter-spacing:0.852591px;}
.ls5d{letter-spacing:9.311854px;}
.lsaa{letter-spacing:10.768356px;}
.ls55{letter-spacing:10.936670px;}
.ls54{letter-spacing:10.936692px;}
.ls56{letter-spacing:11.289470px;}
.ls61{letter-spacing:11.389444px;}
.ls71{letter-spacing:11.642270px;}
.ls53{letter-spacing:11.759851px;}
.ls72{letter-spacing:11.995070px;}
.ls60{letter-spacing:12.473818px;}
.ls5f{letter-spacing:12.809818px;}
.lsa4{letter-spacing:13.499837px;}
.ls7e{letter-spacing:13.700231px;}
.ls19{letter-spacing:14.735111px;}
.ls84{letter-spacing:14.805689px;}
.ls1d{letter-spacing:17.816171px;}
.ls78{letter-spacing:17.816231px;}
.ls81{letter-spacing:18.110231px;}
.lsb1{letter-spacing:18.515280px;}
.ls42{letter-spacing:19.050998px;}
.ls48{letter-spacing:19.503761px;}
.ls17{letter-spacing:19.521371px;}
.ls18{letter-spacing:19.521431px;}
.ls43{letter-spacing:19.580191px;}
.ls49{letter-spacing:19.744839px;}
.ls74{letter-spacing:20.168231px;}
.ls73{letter-spacing:20.520971px;}
.ls7f{letter-spacing:21.167771px;}
.ls80{letter-spacing:21.520631px;}
.ls75{letter-spacing:21.990962px;}
.ls45{letter-spacing:23.343362px;}
.ls77{letter-spacing:23.931371px;}
.ls46{letter-spacing:27.635711px;}
.ls40{letter-spacing:27.870898px;}
.ls7d{letter-spacing:28.694111px;}
.ls58{letter-spacing:29.105702px;}
.ls47{letter-spacing:29.370300px;}
.ls16{letter-spacing:32.727731px;}
.ls1a{letter-spacing:32.751251px;}
.ls1b{letter-spacing:32.751311px;}
.ls1c{letter-spacing:33.104051px;}
.ls65{letter-spacing:36.925982px;}
.ls4f{letter-spacing:54.577603px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsdd{word-spacing:-54.636402px;}
.wsc4{word-spacing:-19.803638px;}
.wsc3{word-spacing:-19.562560px;}
.ws22d{word-spacing:-18.577080px;}
.ws1cc{word-spacing:-14.864488px;}
.ws127{word-spacing:-11.448243px;}
.ws1aa{word-spacing:-0.682073px;}
.ws15c{word-spacing:-0.605633px;}
.ws1ac{word-spacing:-0.593874px;}
.ws45{word-spacing:-0.061800px;}
.ws4a{word-spacing:-0.058799px;}
.ws2e{word-spacing:-0.047999px;}
.ws28{word-spacing:-0.044999px;}
.ws23{word-spacing:-0.041999px;}
.ws31{word-spacing:0.000000px;}
.ws224{word-spacing:0.742490px;}
.ws51{word-spacing:0.770272px;}
.ws1c8{word-spacing:0.993710px;}
.ws56{word-spacing:1.105429px;}
.ws22c{word-spacing:1.124985px;}
.ws1e1{word-spacing:1.446465px;}
.ws1d5{word-spacing:1.787502px;}
.ws14c{word-spacing:8.879889px;}
.ws14e{word-spacing:9.071887px;}
.ws14a{word-spacing:9.215885px;}
.ws16f{word-spacing:9.359883px;}
.ws14d{word-spacing:9.407915px;}
.wsbf{word-spacing:10.466293px;}
.wsbb{word-spacing:10.525093px;}
.wsbc{word-spacing:10.760290px;}
.ws223{word-spacing:10.844855px;}
.ws21e{word-spacing:10.889855px;}
.wsbd{word-spacing:10.995488px;}
.ws222{word-spacing:11.069852px;}
.ws228{word-spacing:11.159851px;}
.ws15{word-spacing:11.292113px;}
.ws229{word-spacing:11.339849px;}
.ws128{word-spacing:11.348284px;}
.ws21d{word-spacing:11.429848px;}
.ws94{word-spacing:11.465883px;}
.ws21c{word-spacing:11.474847px;}
.ws119{word-spacing:11.524682px;}
.ws194{word-spacing:11.642281px;}
.ws22a{word-spacing:11.744843px;}
.ws27{word-spacing:11.879842px;}
.ws195{word-spacing:11.995078px;}
.ws196{word-spacing:12.053876px;}
.ws24{word-spacing:12.305824px;}
.ws155{word-spacing:12.389823px;}
.ws174{word-spacing:12.389828px;}
.ws1f{word-spacing:12.431822px;}
.ws172{word-spacing:12.515807px;}
.ws25{word-spacing:12.515821px;}
.ws153{word-spacing:12.557821px;}
.ws26{word-spacing:12.599820px;}
.ws152{word-spacing:12.641819px;}
.ws178{word-spacing:12.683800px;}
.ws22{word-spacing:12.683819px;}
.ws173{word-spacing:12.725812px;}
.ws154{word-spacing:12.725818px;}
.ws177{word-spacing:12.725869px;}
.ws176{word-spacing:12.767818px;}
.ws171{word-spacing:12.767826px;}
.ws21{word-spacing:12.809817px;}
.ws179{word-spacing:12.851816px;}
.ws213{word-spacing:12.869828px;}
.ws22b{word-spacing:12.874328px;}
.ws20{word-spacing:12.893816px;}
.ws156{word-spacing:12.935815px;}
.ws12d{word-spacing:13.018222px;}
.ws175{word-spacing:13.019824px;}
.ws21f{word-spacing:13.184824px;}
.ws215{word-spacing:13.229824px;}
.ws211{word-spacing:13.274823px;}
.ws2d{word-spacing:13.319822px;}
.ws216{word-spacing:13.364822px;}
.ws214{word-spacing:13.409821px;}
.ws220{word-spacing:13.454773px;}
.ws2c{word-spacing:13.454821px;}
.ws226{word-spacing:13.495320px;}
.ws29{word-spacing:13.499820px;}
.ws2a{word-spacing:13.544819px;}
.ws2b{word-spacing:13.589819px;}
.ws227{word-spacing:13.603319px;}
.ws20d{word-spacing:13.634818px;}
.ws210{word-spacing:13.679818px;}
.ws20c{word-spacing:13.724817px;}
.ws212{word-spacing:13.724847px;}
.ws170{word-spacing:13.727828px;}
.ws20e{word-spacing:13.769816px;}
.ws149{word-spacing:13.775828px;}
.ws20f{word-spacing:13.814816px;}
.ws217{word-spacing:13.859815px;}
.ws32{word-spacing:13.871827px;}
.ws218{word-spacing:13.904815px;}
.ws150{word-spacing:13.919826px;}
.ws219{word-spacing:13.949814px;}
.ws1e{word-spacing:13.967825px;}
.ws30{word-spacing:13.967844px;}
.ws21a{word-spacing:13.994813px;}
.ws151{word-spacing:14.015825px;}
.ws21b{word-spacing:14.039813px;}
.ws147{word-spacing:14.063824px;}
.ws159{word-spacing:14.111786px;}
.ws14b{word-spacing:14.111824px;}
.ws2f{word-spacing:14.111846px;}
.ws148{word-spacing:14.159823px;}
.ws157{word-spacing:14.207822px;}
.wsa6{word-spacing:14.255822px;}
.ws14f{word-spacing:14.303821px;}
.ws158{word-spacing:14.351821px;}
.ws6f{word-spacing:14.523452px;}
.ws102{word-spacing:14.641051px;}
.ws116{word-spacing:14.758649px;}
.ws18c{word-spacing:14.935048px;}
.ws113{word-spacing:14.993847px;}
.ws91{word-spacing:15.052646px;}
.ws133{word-spacing:15.111446px;}
.ws124{word-spacing:15.111464px;}
.wsc8{word-spacing:15.170245px;}
.ws125{word-spacing:15.229045px;}
.wsba{word-spacing:15.405443px;}
.ws83{word-spacing:15.523042px;}
.ws187{word-spacing:15.640640px;}
.ws1ff{word-spacing:15.699440px;}
.wsfc{word-spacing:15.758239px;}
.ws101{word-spacing:15.817039px;}
.ws146{word-spacing:15.822000px;}
.ws10f{word-spacing:15.875838px;}
.wsc9{word-spacing:15.993437px;}
.ws145{word-spacing:16.092000px;}
.ws16e{word-spacing:16.146000px;}
.wse5{word-spacing:16.169835px;}
.ws16d{word-spacing:16.200000px;}
.wse6{word-spacing:16.328593px;}
.ws130{word-spacing:16.346233px;}
.wsee{word-spacing:16.394578px;}
.ws1c1{word-spacing:16.452072px;}
.wsb7{word-spacing:16.522631px;}
.ws18d{word-spacing:16.560180px;}
.ws10b{word-spacing:16.581431px;}
.ws57{word-spacing:16.651990px;}
.ws1e0{word-spacing:16.687270px;}
.ws18a{word-spacing:16.699030px;}
.ws1c0{word-spacing:16.716669px;}
.ws135{word-spacing:16.725782px;}
.wsed{word-spacing:16.740189px;}
.wsc6{word-spacing:16.757829px;}
.ws1e2{word-spacing:16.769589px;}
.ws1c6{word-spacing:16.810748px;}
.ws6c{word-spacing:16.851902px;}
.ws1d3{word-spacing:16.857788px;}
.ws44{word-spacing:16.860169px;}
.ws3e{word-spacing:16.860245px;}
.ws8a{word-spacing:16.875428px;}
.ws55{word-spacing:16.887188px;}
.ws85{word-spacing:16.934227px;}
.ws3f{word-spacing:16.980170px;}
.ws108{word-spacing:16.993027px;}
.ws134{word-spacing:17.001785px;}
.ws41{word-spacing:17.040170px;}
.ws10a{word-spacing:17.051826px;}
.ws1d7{word-spacing:17.057706px;}
.ws1f8{word-spacing:17.063586px;}
.wsea{word-spacing:17.069466px;}
.ws1f7{word-spacing:17.081226px;}
.wse9{word-spacing:17.110625px;}
.wsde{word-spacing:17.116505px;}
.wsfa{word-spacing:17.169425px;}
.ws63{word-spacing:17.198825px;}
.wsdf{word-spacing:17.228224px;}
.ws20a{word-spacing:17.239984px;}
.ws43{word-spacing:17.280138px;}
.ws90{word-spacing:17.287024px;}
.ws40{word-spacing:17.298173px;}
.wsec{word-spacing:17.339943px;}
.ws9a{word-spacing:17.404622px;}
.ws42{word-spacing:17.418174px;}
.ws1c3{word-spacing:17.445782px;}
.ws1b0{word-spacing:17.463422px;}
.ws1dd{word-spacing:17.510461px;}
.ws7c{word-spacing:17.522221px;}
.ws64{word-spacing:17.528101px;}
.ws126{word-spacing:17.581021px;}
.ws11e{word-spacing:17.639820px;}
.wse0{word-spacing:17.710379px;}
.ws99{word-spacing:17.757419px;}
.ws197{word-spacing:17.816218px;}
.ws18e{word-spacing:17.816272px;}
.ws8b{word-spacing:17.875018px;}
.ws141{word-spacing:17.875037px;}
.ws70{word-spacing:17.933817px;}
.ws9b{word-spacing:18.051416px;}
.ws46{word-spacing:18.063176px;}
.wsf9{word-spacing:18.110215px;}
.ws5d{word-spacing:18.121975px;}
.wsc2{word-spacing:18.169015px;}
.wsc0{word-spacing:18.227814px;}
.wsce{word-spacing:18.286613px;}
.ws5e{word-spacing:18.310133px;}
.wscf{word-spacing:18.316013px;}
.ws60{word-spacing:18.339527px;}
.ws20b{word-spacing:18.478200px;}
.wsc1{word-spacing:18.521811px;}
.ws54{word-spacing:18.568851px;}
.ws7d{word-spacing:18.580610px;}
.wsb{word-spacing:18.600220px;}
.ws53{word-spacing:18.615884px;}
.ws1f5{word-spacing:18.627650px;}
.ws110{word-spacing:18.698209px;}
.ws5f{word-spacing:18.715849px;}
.ws9c{word-spacing:18.815808px;}
.wse8{word-spacing:18.833448px;}
.ws1f9{word-spacing:18.874607px;}
.wsf3{word-spacing:18.933407px;}
.wsaf{word-spacing:19.051006px;}
.ws1ae{word-spacing:19.168604px;}
.ws5a{word-spacing:19.192124px;}
.ws7e{word-spacing:19.227404px;}
.wsb9{word-spacing:19.286203px;}
.ws49{word-spacing:19.292083px;}
.wsa0{word-spacing:19.403802px;}
.ws140{word-spacing:19.462601px;}
.ws82{word-spacing:19.521401px;}
.ws11d{word-spacing:19.580200px;}
.ws8{word-spacing:19.602178px;}
.wsb8{word-spacing:19.639000px;}
.ws1c2{word-spacing:19.662519px;}
.ws6{word-spacing:19.668179px;}
.ws7{word-spacing:19.734179px;}
.ws4b{word-spacing:19.738959px;}
.ws11b{word-spacing:19.756598px;}
.ws204{word-spacing:19.785998px;}
.ws5{word-spacing:19.800180px;}
.ws13d{word-spacing:19.815398px;}
.ws4c{word-spacing:19.844798px;}
.ws9{word-spacing:19.866181px;}
.ws97{word-spacing:19.874197px;}
.wsa{word-spacing:19.932181px;}
.wsef{word-spacing:19.932997px;}
.ws1f4{word-spacing:19.968276px;}
.ws1af{word-spacing:19.991796px;}
.ws4{word-spacing:19.998182px;}
.ws79{word-spacing:20.050595px;}
.ws81{word-spacing:20.168194px;}
.ws10d{word-spacing:20.285793px;}
.wsd3{word-spacing:20.326953px;}
.ws1a3{word-spacing:20.403392px;}
.ws1ec{word-spacing:20.444551px;}
.ws131{word-spacing:20.520991px;}
.wsaa{word-spacing:20.638589px;}
.ws1d8{word-spacing:20.803228px;}
.ws12a{word-spacing:20.873787px;}
.ws1cd{word-spacing:20.920827px;}
.wsa9{word-spacing:20.991386px;}
.ws1ce{word-spacing:20.997266px;}
.ws17d{word-spacing:21.050185px;}
.ws106{word-spacing:21.108985px;}
.ws1fd{word-spacing:21.167784px;}
.ws62{word-spacing:21.285383px;}
.ws139{word-spacing:21.344182px;}
.ws5b{word-spacing:21.379462px;}
.ws10c{word-spacing:21.461781px;}
.ws61{word-spacing:21.538220px;}
.ws1cb{word-spacing:21.549980px;}
.ws1a4{word-spacing:21.638179px;}
.ws5c{word-spacing:21.661699px;}
.wsd0{word-spacing:21.685219px;}
.ws1f3{word-spacing:21.691093px;}
.wsa8{word-spacing:21.696979px;}
.ws9f{word-spacing:21.755778px;}
.wse1{word-spacing:21.779298px;}
.ws1b6{word-spacing:21.814577px;}
.ws8e{word-spacing:21.873377px;}
.ws1de{word-spacing:21.879257px;}
.wsd7{word-spacing:21.908651px;}
.ws1f2{word-spacing:21.920416px;}
.ws193{word-spacing:21.932176px;}
.ws180{word-spacing:21.990976px;}
.ws200{word-spacing:22.026255px;}
.ws17f{word-spacing:22.049775px;}
.ws1b1{word-spacing:22.108574px;}
.ws138{word-spacing:22.167374px;}
.wsd2{word-spacing:22.173254px;}
.ws1f0{word-spacing:22.214413px;}
.ws1df{word-spacing:22.273213px;}
.ws185{word-spacing:22.284946px;}
.ws18b{word-spacing:22.284973px;}
.ws1ee{word-spacing:22.402571px;}
.ws48{word-spacing:22.408451px;}
.wsc7{word-spacing:22.461371px;}
.ws1f1{word-spacing:22.519320px;}
.ws188{word-spacing:22.520170px;}
.ws1e7{word-spacing:22.608369px;}
.ws17b{word-spacing:22.631915px;}
.ws182{word-spacing:22.637769px;}
.ws225{word-spacing:22.711197px;}
.ws19e{word-spacing:22.755368px;}
.ws68{word-spacing:22.784768px;}
.ws1fb{word-spacing:22.814167px;}
.ws169{word-spacing:22.896487px;}
.ws1ef{word-spacing:22.949406px;}
.ws35{word-spacing:22.980230px;}
.ws88{word-spacing:22.990565px;}
.ws1be{word-spacing:23.049365px;}
.ws168{word-spacing:23.055245px;}
.wsd5{word-spacing:23.108138px;}
.ws7f{word-spacing:23.166964px;}
.ws3a{word-spacing:23.172232px;}
.ws1a{word-spacing:23.202233px;}
.wse{word-spacing:23.208232px;}
.ws3c{word-spacing:23.214232px;}
.ws16{word-spacing:23.280233px;}
.ws111{word-spacing:23.284562px;}
.ws11{word-spacing:23.286233px;}
.ws19{word-spacing:23.298233px;}
.ws17{word-spacing:23.304234px;}
.ws18{word-spacing:23.328233px;}
.ws1b{word-spacing:23.346233px;}
.wsc{word-spacing:23.358234px;}
.ws13{word-spacing:23.364236px;}
.ws115{word-spacing:23.402161px;}
.ws1d{word-spacing:23.406234px;}
.ws37{word-spacing:23.412234px;}
.ws33{word-spacing:23.436256px;}
.ws38{word-spacing:23.448234px;}
.ws3b{word-spacing:23.454235px;}
.ws3d{word-spacing:23.460223px;}
.ws10{word-spacing:23.466235px;}
.ws39{word-spacing:23.478235px;}
.ws36{word-spacing:23.496235px;}
.ws34{word-spacing:23.508235px;}
.wsd4{word-spacing:23.513880px;}
.wsd{word-spacing:23.520235px;}
.wsf{word-spacing:23.550236px;}
.ws12{word-spacing:23.568236px;}
.ws17c{word-spacing:23.578559px;}
.ws1c{word-spacing:23.598236px;}
.ws205{word-spacing:23.607959px;}
.ws0{word-spacing:23.634000px;}
.ws1fc{word-spacing:23.637359px;}
.ws208{word-spacing:23.649119px;}
.ws165{word-spacing:23.713798px;}
.ws1c4{word-spacing:23.754958px;}
.ws1a2{word-spacing:23.813757px;}
.ws19b{word-spacing:23.872556px;}
.wsb5{word-spacing:23.931356px;}
.ws144{word-spacing:23.978395px;}
.ws96{word-spacing:23.990155px;}
.ws1c5{word-spacing:24.025429px;}
.ws9e{word-spacing:24.048955px;}
.ws166{word-spacing:24.054835px;}
.ws1bc{word-spacing:24.107754px;}
.wscc{word-spacing:24.113634px;}
.wscd{word-spacing:24.125394px;}
.wsb4{word-spacing:24.166553px;}
.wsdb{word-spacing:24.213593px;}
.ws112{word-spacing:24.225353px;}
.ws10e{word-spacing:24.284152px;}
.ws11f{word-spacing:24.342952px;}
.ws50{word-spacing:24.384111px;}
.ws121{word-spacing:24.401751px;}
.ws161{word-spacing:24.425271px;}
.ws160{word-spacing:24.431126px;}
.ws14{word-spacing:24.540245px;}
.ws52{word-spacing:24.554629px;}
.ws1e8{word-spacing:24.566389px;}
.ws1e9{word-spacing:24.584029px;}
.wsb3{word-spacing:24.636949px;}
.wscb{word-spacing:24.695748px;}
.wsd9{word-spacing:24.789821px;}
.ws1fe{word-spacing:24.813347px;}
.ws1c7{word-spacing:24.848621px;}
.ws89{word-spacing:24.872146px;}
.wsd8{word-spacing:24.925066px;}
.ws93{word-spacing:24.930946px;}
.ws114{word-spacing:24.989745px;}
.ws4e{word-spacing:25.025025px;}
.ws206{word-spacing:25.048544px;}
.wsa1{word-spacing:25.166143px;}
.ws13e{word-spacing:25.224943px;}
.ws203{word-spacing:25.342541px;}
.wse7{word-spacing:25.354301px;}
.ws202{word-spacing:25.366061px;}
.ws4d{word-spacing:25.454260px;}
.ws1b4{word-spacing:25.460140px;}
.ws73{word-spacing:25.518940px;}
.ws1e6{word-spacing:25.548339px;}
.wse3{word-spacing:25.565979px;}
.wse4{word-spacing:25.595379px;}
.ws129{word-spacing:25.695338px;}
.ws1ca{word-spacing:25.736497px;}
.ws201{word-spacing:25.777657px;}
.wsf2{word-spacing:25.871736px;}
.wsb2{word-spacing:25.930535px;}
.wsa2{word-spacing:25.989335px;}
.ws84{word-spacing:26.048134px;}
.ws47{word-spacing:26.253932px;}
.ws1d2{word-spacing:26.306852px;}
.ws6b{word-spacing:26.365651px;}
.wsff{word-spacing:26.400931px;}
.ws6a{word-spacing:26.471490px;}
.ws1d9{word-spacing:26.489130px;}
.wsf1{word-spacing:26.636128px;}
.ws8c{word-spacing:26.694928px;}
.ws1b9{word-spacing:26.753727px;}
.ws17e{word-spacing:26.871326px;}
.ws1b7{word-spacing:26.930125px;}
.ws136{word-spacing:26.988925px;}
.ws6d{word-spacing:27.047724px;}
.ws72{word-spacing:27.106523px;}
.ws71{word-spacing:27.282922px;}
.ws98{word-spacing:27.400520px;}
.ws1fa{word-spacing:27.518119px;}
.ws87{word-spacing:27.576919px;}
.ws1a0{word-spacing:27.694517px;}
.ws190{word-spacing:27.753317px;}
.ws69{word-spacing:27.835636px;}
.ws1bd{word-spacing:27.870916px;}
.wsad{word-spacing:27.929715px;}
.wsac{word-spacing:27.988519px;}
.wsd6{word-spacing:27.994394px;}
.ws1eb{word-spacing:28.041428px;}
.ws1b8{word-spacing:28.047314px;}
.wsb1{word-spacing:28.106113px;}
.ws86{word-spacing:28.223712px;}
.wsab{word-spacing:28.282511px;}
.wsae{word-spacing:28.341311px;}
.ws19a{word-spacing:28.400110px;}
.ws15e{word-spacing:28.470669px;}
.ws103{word-spacing:28.576508px;}
.ws95{word-spacing:28.635308px;}
.ws137{word-spacing:28.694107px;}
.wsb0{word-spacing:28.752907px;}
.ws75{word-spacing:28.811706px;}
.ws67{word-spacing:28.894025px;}
.ws4f{word-spacing:28.905779px;}
.wsf7{word-spacing:28.929305px;}
.ws13b{word-spacing:28.988104px;}
.wsda{word-spacing:29.064543px;}
.wsbe{word-spacing:29.105703px;}
.ws117{word-spacing:29.164502px;}
.ws9d{word-spacing:29.223302px;}
.ws13a{word-spacing:29.340833px;}
.wsf5{word-spacing:29.458499px;}
.ws1a1{word-spacing:29.517299px;}
.ws1bb{word-spacing:29.693697px;}
.ws19d{word-spacing:29.752496px;}
.ws1a6{word-spacing:29.811296px;}
.ws15f{word-spacing:29.823056px;}
.ws18f{word-spacing:29.870095px;}
.ws1ab{word-spacing:29.928895px;}
.ws1d0{word-spacing:29.981814px;}
.ws17a{word-spacing:30.017094px;}
.ws1d1{word-spacing:30.046493px;}
.wsc5{word-spacing:30.105293px;}
.wsb6{word-spacing:30.281691px;}
.ws181{word-spacing:30.458089px;}
.wseb{word-spacing:30.505129px;}
.ws13c{word-spacing:30.693287px;}
.ws105{word-spacing:30.810886px;}
.ws7a{word-spacing:31.046083px;}
.ws184{word-spacing:31.169562px;}
.ws207{word-spacing:31.398880px;}
.ws12f{word-spacing:31.692877px;}
.ws192{word-spacing:31.751676px;}
.ws1da{word-spacing:31.781076px;}
.ws107{word-spacing:31.869275px;}
.wse2{word-spacing:31.892795px;}
.ws80{word-spacing:32.045673px;}
.wsf4{word-spacing:32.104472px;}
.ws78{word-spacing:32.163272px;}
.ws12c{word-spacing:32.222071px;}
.ws74{word-spacing:32.280871px;}
.ws8f{word-spacing:32.339670px;}
.ws12b{word-spacing:32.398425px;}
.ws77{word-spacing:32.633667px;}
.ws1ba{word-spacing:32.751266px;}
.ws1b2{word-spacing:32.810065px;}
.ws1a9{word-spacing:32.868865px;}
.ws132{word-spacing:32.927664px;}
.ws1e3{word-spacing:33.162862px;}
.ws167{word-spacing:33.198141px;}
.wsfe{word-spacing:33.280460px;}
.ws123{word-spacing:33.515658px;}
.ws6e{word-spacing:33.574457px;}
.wsa4{word-spacing:33.692056px;}
.ws1c9{word-spacing:33.721456px;}
.wsa7{word-spacing:33.809655px;}
.ws120{word-spacing:33.927254px;}
.ws1dc{word-spacing:33.974293px;}
.ws142{word-spacing:34.097772px;}
.ws76{word-spacing:34.221251px;}
.ws163{word-spacing:34.427049px;}
.ws109{word-spacing:34.456448px;}
.ws58{word-spacing:34.509368px;}
.ws59{word-spacing:34.538768px;}
.ws209{word-spacing:34.685766px;}
.ws164{word-spacing:34.691646px;}
.ws11a{word-spacing:34.750445px;}
.ws1bf{word-spacing:34.785725px;}
.ws1ad{word-spacing:34.809245px;}
.ws118{word-spacing:35.044442px;}
.ws198{word-spacing:35.162041px;}
.wsca{word-spacing:35.220841px;}
.ws1e5{word-spacing:35.256120px;}
.ws1a7{word-spacing:35.338439px;}
.wsfb{word-spacing:35.397239px;}
.ws1e4{word-spacing:35.414879px;}
.ws15b{word-spacing:35.520718px;}
.ws1d4{word-spacing:35.544237px;}
.ws122{word-spacing:35.573637px;}
.ws143{word-spacing:35.661836px;}
.ws11c{word-spacing:35.691236px;}
.ws1d6{word-spacing:35.720636px;}
.ws1b5{word-spacing:35.867634px;}
.ws183{word-spacing:35.879394px;}
.ws15a{word-spacing:35.996993px;}
.ws13f{word-spacing:36.044032px;}
.ws1b3{word-spacing:36.161631px;}
.wsa5{word-spacing:36.455628px;}
.ws92{word-spacing:36.573227px;}
.ws16b{word-spacing:37.367006px;}
.wsd1{word-spacing:37.531657px;}
.ws16c{word-spacing:37.655136px;}
.ws1cf{word-spacing:37.684535px;}
.wsa3{word-spacing:38.454808px;}
.ws7b{word-spacing:38.631206px;}
.ws186{word-spacing:38.866403px;}
.ws104{word-spacing:39.277999px;}
.ws8d{word-spacing:39.983592px;}
.ws189{word-spacing:40.159990px;}
.ws1f6{word-spacing:40.412828px;}
.wsf8{word-spacing:40.747984px;}
.ws1ea{word-spacing:40.942022px;}
.ws199{word-spacing:41.041981px;}
.ws16a{word-spacing:42.359088px;}
.ws66{word-spacing:42.758924px;}
.ws1{word-spacing:42.912179px;}
.ws1db{word-spacing:43.158760px;}
.ws65{word-spacing:43.194033px;}
.ws2{word-spacing:43.200180px;}
.ws3{word-spacing:43.632182px;}
.ws100{word-spacing:43.687954px;}
.ws221{word-spacing:44.213384px;}
.wsf0{word-spacing:44.275948px;}
.ws191{word-spacing:44.746343px;}
.ws19f{word-spacing:45.099140px;}
.ws19c{word-spacing:45.334337px;}
.ws1ed{word-spacing:45.410777px;}
.ws1a5{word-spacing:45.863532px;}
.ws15d{word-spacing:47.315878px;}
.wsf6{word-spacing:47.392316px;}
.wsfd{word-spacing:47.451116px;}
.ws1a8{word-spacing:49.509095px;}
.ws162{word-spacing:49.838371px;}
.ws12e{word-spacing:53.213457px;}
.wsdc{word-spacing:56.847260px;}
._1e{margin-left:-55.355635px;}
._1c{margin-left:-20.756188px;}
._1b{margin-left:-19.521401px;}
._48{margin-left:-17.922000px;}
._44{margin-left:-16.438975px;}
._45{margin-left:-15.206436px;}
._21{margin-left:-12.465473px;}
._20{margin-left:-11.029936px;}
._12{margin-left:-2.032635px;}
._6{margin-left:-1.020010px;}
._4{width:1.020010px;}
._7{width:2.040020px;}
._0{width:8.970000px;}
._1d{width:10.163175px;}
._c{width:12.000120px;}
._a{width:13.511813px;}
._b{width:14.579806px;}
._10{width:16.228634px;}
._d{width:18.110215px;}
._f{width:19.345003px;}
._11{width:20.914628px;}
._9{width:22.860229px;}
._8{width:24.060241px;}
._5{width:25.080251px;}
._13{width:26.854093px;}
._41{width:27.865873px;}
._e{width:28.929305px;}
._14{width:30.146860px;}
._39{width:31.672456px;}
._1{width:32.682000px;}
._15{width:33.808603px;}
._18{width:35.671867px;}
._19{width:37.690415px;}
._17{width:39.551576px;}
._16{width:41.722230px;}
._3b{width:43.151461px;}
._3{width:44.208184px;}
._1f{width:45.725513px;}
._42{width:46.942342px;}
._43{width:50.621360px;}
._22{width:54.898219px;}
._47{width:65.879122px;}
._25{width:116.782540px;}
._3a{width:134.878314px;}
._40{width:147.862196px;}
._38{width:167.901901px;}
._3d{width:185.469682px;}
._3c{width:191.181610px;}
._3f{width:208.461394px;}
._3e{width:213.165335px;}
._29{width:302.156223px;}
._36{width:342.331721px;}
._28{width:354.523536px;}
._37{width:359.083511px;}
._2a{width:435.834516px;}
._35{width:539.417257px;}
._23{width:562.937022px;}
._2c{width:591.592604px;}
._27{width:596.152546px;}
._26{width:607.336467px;}
._24{width:622.120282px;}
._2b{width:626.008176px;}
._32{width:730.214872px;}
._2e{width:795.398011px;}
._30{width:837.253534px;}
._2d{width:890.772878px;}
._31{width:952.596092px;}
._2f{width:987.107661px;}
._34{width:1029.539131px;}
._33{width:1058.002775px;}
._46{width:1280.143779px;}
._1a{width:1304.671599px;}
._2{width:1602.275940px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:27.996600px;}
.fsa{font-size:29.995200px;}
.fsf{font-size:31.995000px;}
.fsc{font-size:39.194400px;}
.fs6{font-size:39.996000px;}
.fs8{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs9{font-size:44.999400px;}
.fs7{font-size:47.999400px;}
.fse{font-size:54.000000px;}
.fsd{font-size:55.200600px;}
.fsb{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y2c{bottom:65.394090px;}
.y2b{bottom:77.384925px;}
.y3c0{bottom:89.252070px;}
.y32c{bottom:89.289075px;}
.y32e{bottom:89.291415px;}
.y379{bottom:89.298405px;}
.y138{bottom:89.298855px;}
.y18d{bottom:89.306145px;}
.y275{bottom:89.313600px;}
.y2b2{bottom:89.318415px;}
.y194{bottom:89.320860px;}
.y105{bottom:89.321055px;}
.y144{bottom:89.328255px;}
.y1e8{bottom:89.329635px;}
.y93{bottom:89.334855px;}
.ycf{bottom:89.357190px;}
.y2a{bottom:89.375745px;}
.y240{bottom:89.418900px;}
.y21e{bottom:89.447340px;}
.y6b{bottom:89.716500px;}
.y69{bottom:89.812125px;}
.y32d{bottom:94.308615px;}
.y6a{bottom:96.264600px;}
.y29{bottom:101.366580px;}
.y3bf{bottom:102.774390px;}
.y32b{bottom:102.811395px;}
.y378{bottom:102.820725px;}
.y2b1{bottom:102.840735px;}
.y137{bottom:107.320875px;}
.y18c{bottom:107.328165px;}
.y274{bottom:107.335620px;}
.y193{bottom:107.342865px;}
.y104{bottom:107.343075px;}
.y143{bottom:107.350275px;}
.y1e7{bottom:107.351655px;}
.y92{bottom:107.356860px;}
.yce{bottom:107.379210px;}
.y23f{bottom:107.440905px;}
.y21d{bottom:107.469345px;}
.y68{bottom:107.834145px;}
.y28{bottom:113.357400px;}
.y3be{bottom:116.296710px;}
.y32a{bottom:116.333715px;}
.y328{bottom:116.336775px;}
.y377{bottom:116.343045px;}
.y2b0{bottom:116.363055px;}
.y329{bottom:121.266165px;}
.y136{bottom:125.269395px;}
.y273{bottom:125.284140px;}
.y103{bottom:125.291595px;}
.y1e6{bottom:125.300175px;}
.y91{bottom:125.305380px;}
.y18b{bottom:125.350185px;}
.y192{bottom:125.364885px;}
.y142{bottom:125.372295px;}
.ycd{bottom:125.401215px;}
.y23e{bottom:125.462925px;}
.y21c{bottom:125.491365px;}
.y67{bottom:125.856150px;}
.y327{bottom:129.769095px;}
.y376{bottom:129.775365px;}
.y2af{bottom:129.795375px;}
.y3bd{bottom:130.246530px;}
.y1d3{bottom:133.256546px;}
.y185{bottom:133.256761px;}
.y34{bottom:138.782160px;}
.y324{bottom:143.290245px;}
.y135{bottom:143.291400px;}
.y326{bottom:143.291415px;}
.y375{bottom:143.297685px;}
.y18a{bottom:143.298690px;}
.y272{bottom:143.306145px;}
.y191{bottom:143.313405px;}
.y102{bottom:143.313600px;}
.y2ae{bottom:143.317695px;}
.y141{bottom:143.320800px;}
.y1e5{bottom:143.322195px;}
.y90{bottom:143.327400px;}
.ycc{bottom:143.349735px;}
.y23d{bottom:143.411445px;}
.y21b{bottom:143.439885px;}
.y3bc{bottom:143.678850px;}
.y66{bottom:143.804670px;}
.y325{bottom:148.308615px;}
.y33{bottom:152.304480px;}
.y323{bottom:156.812565px;}
.y321{bottom:156.815475px;}
.y374{bottom:156.820005px;}
.y2ad{bottom:156.840015px;}
.y3bb{bottom:157.628670px;}
.y189{bottom:161.320710px;}
.y134{bottom:161.322705px;}
.y271{bottom:161.328165px;}
.y190{bottom:161.335425px;}
.y101{bottom:161.335620px;}
.y140{bottom:161.342820px;}
.y1e4{bottom:161.344200px;}
.y8f{bottom:161.349420px;}
.ycb{bottom:161.371755px;}
.y23c{bottom:161.433450px;}
.y21a{bottom:161.461890px;}
.y65{bottom:161.826690px;}
.y322{bottom:161.829915px;}
.y32{bottom:165.826800px;}
.y320{bottom:170.337795px;}
.y373{bottom:170.342325px;}
.y31{bottom:170.844150px;}
.y3ba{bottom:171.150990px;}
.y133{bottom:179.262900px;}
.y270{bottom:179.276685px;}
.y100{bottom:179.284140px;}
.y1e3{bottom:179.292720px;}
.y8e{bottom:179.297925px;}
.y188{bottom:179.342730px;}
.y30{bottom:179.351880px;}
.y18f{bottom:179.357430px;}
.y13f{bottom:179.364840px;}
.yca{bottom:179.393760px;}
.y23b{bottom:179.455470px;}
.y219{bottom:179.483910px;}
.y64{bottom:179.848695px;}
.y31d{bottom:183.767925px;}
.y31f{bottom:183.770115px;}
.y372{bottom:183.774645px;}
.y3b9{bottom:184.673310px;}
.y31e{bottom:188.787315px;}
.y2ac{bottom:190.004580px;}
.y2f{bottom:192.784200px;}
.y31c{bottom:197.290245px;}
.y187{bottom:197.291250px;}
.y371{bottom:197.296965px;}
.y26f{bottom:197.298690px;}
.y18e{bottom:197.305950px;}
.yff{bottom:197.306145px;}
.y13e{bottom:197.313360px;}
.y1e2{bottom:197.314740px;}
.y8d{bottom:197.319945px;}
.yc9{bottom:197.342280px;}
.y23a{bottom:197.403990px;}
.y218{bottom:197.432430px;}
.y63{bottom:197.797215px;}
.y2e{bottom:197.801565px;}
.y3b8{bottom:198.623115px;}
.y2ab{bottom:203.436900px;}
.y2d{bottom:206.305500px;}
.y31b{bottom:210.812565px;}
.y319{bottom:210.815340px;}
.y370{bottom:210.819285px;}
.y3b7{bottom:212.572935px;}
.y26e{bottom:215.320710px;}
.yfe{bottom:215.328165px;}
.y13d{bottom:215.335365px;}
.y1e1{bottom:215.336745px;}
.y8c{bottom:215.341965px;}
.y132{bottom:215.357970px;}
.yc8{bottom:215.364300px;}
.y239{bottom:215.426010px;}
.y217{bottom:215.454450px;}
.y62{bottom:215.819235px;}
.y31a{bottom:215.829915px;}
.y2aa{bottom:216.959220px;}
.y318{bottom:224.337660px;}
.y36f{bottom:224.341605px;}
.y3b6{bottom:226.095255px;}
.y2a9{bottom:230.481540px;}
.y26d{bottom:233.269230px;}
.yfd{bottom:233.276685px;}
.y1e0{bottom:233.285265px;}
.y8b{bottom:233.290485px;}
.y131{bottom:233.306490px;}
.y13c{bottom:233.357385px;}
.yc7{bottom:233.386320px;}
.y238{bottom:233.448015px;}
.y216{bottom:233.476455px;}
.y1d2{bottom:233.773200px;}
.y61{bottom:233.841255px;}
.y315{bottom:237.768945px;}
.y317{bottom:237.769980px;}
.y36e{bottom:237.773925px;}
.y1d1{bottom:238.450350px;}
.y3b5{bottom:239.617575px;}
.y316{bottom:242.787315px;}
.y1d0{bottom:246.526260px;}
.y312{bottom:251.289210px;}
.y26c{bottom:251.291250px;}
.y314{bottom:251.291265px;}
.y36d{bottom:251.296245px;}
.yfc{bottom:251.298690px;}
.y13b{bottom:251.305905px;}
.y1df{bottom:251.307285px;}
.y8a{bottom:251.312490px;}
.y130{bottom:251.328510px;}
.yc6{bottom:251.334825px;}
.y237{bottom:251.396535px;}
.y215{bottom:251.424975px;}
.y60{bottom:251.789760px;}
.y3b4{bottom:253.049895px;}
.y313{bottom:256.308630px;}
.y1cf{bottom:259.283580px;}
.y2a8{bottom:263.646090px;}
.y311{bottom:264.811530px;}
.y36c{bottom:264.818565px;}
.y3b3{bottom:266.999700px;}
.y26b{bottom:269.319600px;}
.yfb{bottom:269.320710px;}
.y13a{bottom:269.327910px;}
.y1de{bottom:269.329305px;}
.y89{bottom:269.334510px;}
.y12f{bottom:269.350530px;}
.yc5{bottom:269.356845px;}
.y236{bottom:269.418555px;}
.y214{bottom:269.446995px;}
.y5f{bottom:269.811780px;}
.y1cc{bottom:272.038380px;}
.y1ce{bottom:272.040900px;}
.y1cd{bottom:276.633000px;}
.y2a7{bottom:277.078410px;}
.y310{bottom:278.333850px;}
.y30e{bottom:278.337660px;}
.y36b{bottom:278.340885px;}
.y3b2{bottom:280.522020px;}
.y30f{bottom:283.266000px;}
.y1c9{bottom:284.710380px;}
.y1cb{bottom:284.711700px;}
.yfa{bottom:287.269230px;}
.y1dd{bottom:287.277810px;}
.y88{bottom:287.283030px;}
.y12e{bottom:287.299035px;}
.y139{bottom:287.349930px;}
.yc4{bottom:287.378865px;}
.y235{bottom:287.440560px;}
.y213{bottom:287.469000px;}
.y5e{bottom:287.833800px;}
.y1ca{bottom:289.388850px;}
.y2a6{bottom:290.600730px;}
.y30b{bottom:291.767925px;}
.y30d{bottom:291.769980px;}
.y36a{bottom:291.773205px;}
.y3b1{bottom:294.044340px;}
.y30c{bottom:296.787315px;}
.y1c7{bottom:297.467700px;}
.y1c8{bottom:302.144685px;}
.y2a5{bottom:304.123050px;}
.y30a{bottom:305.290245px;}
.yf9{bottom:305.291250px;}
.y369{bottom:305.295525px;}
.y1dc{bottom:305.299830px;}
.y87{bottom:305.305035px;}
.y12d{bottom:305.321055px;}
.yc3{bottom:305.327370px;}
.y26a{bottom:305.359275px;}
.y234{bottom:305.389080px;}
.y212{bottom:305.417520px;}
.y5d{bottom:305.782320px;}
.y3b0{bottom:307.566660px;}
.y1c6{bottom:317.200320px;}
.y2a4{bottom:317.645370px;}
.y3f1{bottom:318.811515px;}
.y307{bottom:318.811530px;}
.y309{bottom:318.812565px;}
.y368{bottom:318.817845px;}
.y3af{bottom:320.998980px;}
.y184{bottom:322.214100px;}
.y1db{bottom:323.321850px;}
.y86{bottom:323.327055px;}
.y12c{bottom:323.343075px;}
.yc2{bottom:323.349390px;}
.y269{bottom:323.381280px;}
.yf7{bottom:323.402550px;}
.y233{bottom:323.411100px;}
.y211{bottom:323.439540px;}
.y5c{bottom:323.804325px;}
.y308{bottom:323.829915px;}
.y183{bottom:326.891265px;}
.yf8{bottom:329.867700px;}
.y1c5{bottom:330.724155px;}
.y2a3{bottom:331.077690px;}
.y3f0{bottom:332.333835px;}
.y306{bottom:332.333850px;}
.y304{bottom:332.336625px;}
.y367{bottom:332.340165px;}
.y3ae{bottom:334.948800px;}
.y182{bottom:334.969935px;}
.y305{bottom:337.266000px;}
.y181{bottom:339.647100px;}
.y1da{bottom:341.270355px;}
.y85{bottom:341.275575px;}
.y12b{bottom:341.291595px;}
.yc1{bottom:341.297910px;}
.y268{bottom:341.329800px;}
.yf6{bottom:341.351070px;}
.y232{bottom:341.359620px;}
.y210{bottom:341.388060px;}
.y5b{bottom:341.826345px;}
.y2a2{bottom:344.600010px;}
.y303{bottom:345.768945px;}
.y3ef{bottom:345.769965px;}
.y366{bottom:345.772485px;}
.y180{bottom:347.724480px;}
.y3ad{bottom:348.471120px;}
.y1c4{bottom:351.723900px;}
.y2a1{bottom:358.122330px;}
.y300{bottom:359.289060px;}
.y302{bottom:359.291265px;}
.y1d9{bottom:359.292375px;}
.y365{bottom:359.294805px;}
.y84{bottom:359.297580px;}
.y12a{bottom:359.313600px;}
.yc0{bottom:359.319930px;}
.y267{bottom:359.351820px;}
.yf5{bottom:359.373090px;}
.y231{bottom:359.381625px;}
.y20f{bottom:359.410065px;}
.y5a{bottom:359.774865px;}
.y17f{bottom:360.481800px;}
.y3ac{bottom:361.993440px;}
.y301{bottom:364.308630px;}
.y17e{bottom:365.158950px;}
.y1c3{bottom:365.247720px;}
.y27{bottom:370.176262px;}
.y2a0{bottom:371.644650px;}
.y2ff{bottom:372.811380px;}
.y364{bottom:372.817125px;}
.y17d{bottom:373.234875px;}
.y3ab{bottom:375.515760px;}
.y1d8{bottom:377.314395px;}
.y83{bottom:377.319600px;}
.y81{bottom:377.320710px;}
.y129{bottom:377.335620px;}
.ybf{bottom:377.341935px;}
.y266{bottom:377.373840px;}
.yf4{bottom:377.395110px;}
.y230{bottom:377.403645px;}
.y20e{bottom:377.432085px;}
.y59{bottom:377.796870px;}
.y3ee{bottom:381.839055px;}
.y82{bottom:383.867550px;}
.y17c{bottom:385.992195px;}
.y1c2{bottom:386.247465px;}
.y2fe{bottom:386.333700px;}
.y2fc{bottom:386.336625px;}
.y363{bottom:386.339445px;}
.y3aa{bottom:389.465565px;}
.y2fd{bottom:391.266000px;}
.y26{bottom:392.712442px;}
.y1d7{bottom:395.262915px;}
.y80{bottom:395.269230px;}
.y3ed{bottom:395.271375px;}
.y128{bottom:395.284140px;}
.ybe{bottom:395.290455px;}
.y265{bottom:395.322345px;}
.yf3{bottom:395.343615px;}
.y22f{bottom:395.352165px;}
.y20d{bottom:395.380605px;}
.y58{bottom:395.818890px;}
.y17b{bottom:398.749515px;}
.y1c1{bottom:399.687300px;}
.y2fb{bottom:399.768945px;}
.y362{bottom:399.771765px;}
.y3a9{bottom:402.897885px;}
.y17a{bottom:403.426665px;}
.y29f{bottom:404.809200px;}
.y3ec{bottom:408.793695px;}
.y25{bottom:410.652622px;}
.y179{bottom:411.504045px;}
.y7f{bottom:413.291250px;}
.y2fa{bottom:413.291265px;}
.y361{bottom:413.294085px;}
.y127{bottom:413.306145px;}
.ybd{bottom:413.312475px;}
.y264{bottom:413.344365px;}
.yf2{bottom:413.365635px;}
.y22e{bottom:413.374170px;}
.y20c{bottom:413.402610px;}
.y57{bottom:413.767410px;}
.y3a8{bottom:416.420205px;}
.y29e{bottom:418.241535px;}
.y2f9{bottom:418.308630px;}
.y1c0{bottom:420.687030px;}
.y3eb{bottom:422.316015px;}
.y178{bottom:424.261365px;}
.y2f8{bottom:426.811380px;}
.y360{bottom:426.816405px;}
.y24{bottom:428.682802px;}
.y177{bottom:428.938515px;}
.y3a7{bottom:429.942525px;}
.y7e{bottom:431.319585px;}
.y126{bottom:431.328165px;}
.ybc{bottom:431.334480px;}
.y263{bottom:431.366385px;}
.yf1{bottom:431.387655px;}
.y22d{bottom:431.396190px;}
.y20b{bottom:431.424630px;}
.y29d{bottom:431.763840px;}
.y56{bottom:431.789415px;}
.y1be{bottom:434.210865px;}
.y3ea{bottom:435.838335px;}
.y176{bottom:437.017185px;}
.y1bf{bottom:439.568385px;}
.y2f7{bottom:440.333700px;}
.y2f5{bottom:440.336625px;}
.y35f{bottom:440.338725px;}
.y175{bottom:441.694335px;}
.y3a6{bottom:443.464845px;}
.y2f6{bottom:445.266000px;}
.y29c{bottom:445.286160px;}
.y23{bottom:446.712982px;}
.y3e9{bottom:449.270655px;}
.y125{bottom:449.276685px;}
.ybb{bottom:449.283000px;}
.y262{bottom:449.314890px;}
.yf0{bottom:449.336175px;}
.y22c{bottom:449.344710px;}
.y20a{bottom:449.373150px;}
.y55{bottom:449.811435px;}
.y2f4{bottom:453.768945px;}
.y35e{bottom:453.771045px;}
.y1bd{bottom:455.215665px;}
.y1bb{bottom:455.224260px;}
.y174{bottom:456.751320px;}
.y3a5{bottom:457.414665px;}
.y29b{bottom:458.808480px;}
.y1bc{bottom:460.573065px;}
.y3e8{bottom:462.792975px;}
.y22{bottom:464.653162px;}
.y2f1{bottom:467.289060px;}
.y2f3{bottom:467.291265px;}
.y35d{bottom:467.293365px;}
.y124{bottom:467.298690px;}
.yba{bottom:467.305020px;}
.y261{bottom:467.336910px;}
.yef{bottom:467.358180px;}
.y22b{bottom:467.366730px;}
.y209{bottom:467.395170px;}
.y54{bottom:467.759955px;}
.y7d{bottom:467.767260px;}
.y3a4{bottom:470.846985px;}
.y29a{bottom:472.240800px;}
.y2f2{bottom:472.308630px;}
.y1ba{bottom:476.223990px;}
.y3e7{bottom:476.315295px;}
.y173{bottom:477.751050px;}
.y171{bottom:477.755985px;}
.y2f0{bottom:480.811380px;}
.y35c{bottom:480.815685px;}
.y1f{bottom:482.674267px;}
.y21{bottom:482.683342px;}
.y172{bottom:483.023535px;}
.y3a3{bottom:484.369305px;}
.y123{bottom:485.320710px;}
.yb9{bottom:485.327040px;}
.y260{bottom:485.358930px;}
.yee{bottom:485.380200px;}
.y22a{bottom:485.388735px;}
.y208{bottom:485.417175px;}
.y299{bottom:485.763120px;}
.y53{bottom:485.781975px;}
.y7c{bottom:485.789265px;}
.y20{bottom:489.316342px;}
.y1b9{bottom:489.747825px;}
.y3e6{bottom:489.837615px;}
.y2ef{bottom:494.333700px;}
.y2ed{bottom:494.336625px;}
.y35b{bottom:494.338005px;}
.y3a2{bottom:497.891625px;}
.y170{bottom:498.755715px;}
.y16e{bottom:498.769695px;}
.y2ee{bottom:499.266000px;}
.y298{bottom:499.285440px;}
.y1e{bottom:500.704447px;}
.y122{bottom:503.269230px;}
.y3e5{bottom:503.269935px;}
.yb8{bottom:503.275545px;}
.y25f{bottom:503.307450px;}
.yed{bottom:503.328720px;}
.y229{bottom:503.337255px;}
.y207{bottom:503.365695px;}
.y52{bottom:503.803980px;}
.y7b{bottom:503.811285px;}
.y16f{bottom:504.028200px;}
.y2ec{bottom:507.768945px;}
.y35a{bottom:507.770325px;}
.y1b8{bottom:510.747555px;}
.y3a1{bottom:511.841445px;}
.y297{bottom:512.807760px;}
.y3e4{bottom:516.792255px;}
.y16d{bottom:519.769425px;}
.y2e9{bottom:521.289060px;}
.y121{bottom:521.291250px;}
.y2eb{bottom:521.291265px;}
.y359{bottom:521.292645px;}
.yb7{bottom:521.297565px;}
.y25e{bottom:521.329455px;}
.y11f{bottom:521.334735px;}
.yec{bottom:521.350725px;}
.y228{bottom:521.359275px;}
.y206{bottom:521.387715px;}
.y51{bottom:521.752500px;}
.y7a{bottom:521.759805px;}
.y1d{bottom:523.159672px;}
.y1b7{bottom:524.187390px;}
.y3a0{bottom:525.363765px;}
.y296{bottom:526.240080px;}
.y2ea{bottom:526.308630px;}
.y120{bottom:527.839185px;}
.y3e3{bottom:530.314575px;}
.y2e8{bottom:534.811380px;}
.y358{bottom:534.814965px;}
.y39f{bottom:538.796085px;}
.yb6{bottom:539.319585px;}
.yb4{bottom:539.329155px;}
.y25d{bottom:539.351475px;}
.y11e{bottom:539.356755px;}
.yeb{bottom:539.372745px;}
.y227{bottom:539.381280px;}
.y205{bottom:539.409720px;}
.y295{bottom:539.762400px;}
.y50{bottom:539.774520px;}
.y79{bottom:539.781825px;}
.y16c{bottom:540.769170px;}
.y1c{bottom:541.189852px;}
.y3e2{bottom:543.836895px;}
.y1b6{bottom:545.187135px;}
.yb5{bottom:545.867565px;}
.y2e7{bottom:548.333700px;}
.y2e5{bottom:548.336475px;}
.y357{bottom:548.337285px;}
.y39e{bottom:552.824640px;}
.y2e6{bottom:553.266000px;}
.y294{bottom:553.284720px;}
.y3e1{bottom:557.269215px;}
.yb3{bottom:557.277675px;}
.y25c{bottom:557.299995px;}
.y11d{bottom:557.305275px;}
.yea{bottom:557.321265px;}
.y226{bottom:557.329800px;}
.y204{bottom:557.358240px;}
.y4f{bottom:557.796525px;}
.y78{bottom:557.803830px;}
.y1b5{bottom:558.710955px;}
.y1b{bottom:559.130032px;}
.y16b{bottom:561.684900px;}
.y169{bottom:561.724815px;}
.y2e4{bottom:561.768795px;}
.y356{bottom:561.769605px;}
.y39d{bottom:566.256960px;}
.y293{bottom:566.807040px;}
.y16a{bottom:567.042435px;}
.y3e0{bottom:570.791535px;}
.y2e1{bottom:575.289060px;}
.y2e3{bottom:575.291115px;}
.y355{bottom:575.291925px;}
.yb2{bottom:575.299695px;}
.y25b{bottom:575.322000px;}
.y11c{bottom:575.327280px;}
.ye9{bottom:575.343270px;}
.y225{bottom:575.351820px;}
.y203{bottom:575.380260px;}
.y4e{bottom:575.745045px;}
.y77{bottom:575.752350px;}
.y1a{bottom:577.160212px;}
.y1b4{bottom:579.710700px;}
.y39c{bottom:579.779280px;}
.y292{bottom:580.239360px;}
.y2e2{bottom:580.308480px;}
.y168{bottom:582.724560px;}
.y3df{bottom:584.313855px;}
.y2e0{bottom:588.811380px;}
.y354{bottom:588.814245px;}
.y1b2{bottom:593.234535px;}
.yb1{bottom:593.321715px;}
.y25a{bottom:593.344020px;}
.y11b{bottom:593.349300px;}
.ye8{bottom:593.365290px;}
.y224{bottom:593.373840px;}
.y202{bottom:593.402280px;}
.y39b{bottom:593.729100px;}
.y4d{bottom:593.767065px;}
.y76{bottom:593.774370px;}
.y19{bottom:595.190392px;}
.y3de{bottom:597.836175px;}
.y1b3{bottom:598.591965px;}
.y2df{bottom:602.333700px;}
.y353{bottom:602.336565px;}
.y2dd{bottom:602.337660px;}
.y167{bottom:603.724290px;}
.y39a{bottom:607.251420px;}
.y2de{bottom:607.266000px;}
.y3dd{bottom:611.268495px;}
.yb0{bottom:611.270220px;}
.y259{bottom:611.292540px;}
.y11a{bottom:611.297820px;}
.ye7{bottom:611.313810px;}
.y223{bottom:611.322345px;}
.y201{bottom:611.350785px;}
.y4c{bottom:611.789085px;}
.y75{bottom:611.796375px;}
.y291{bottom:613.403925px;}
.y1b1{bottom:614.239200px;}
.y1af{bottom:614.252715px;}
.y2da{bottom:615.767775px;}
.y352{bottom:615.768885px;}
.y2dc{bottom:615.769980px;}
.y1b0{bottom:619.596765px;}
.y399{bottom:620.773740px;}
.y2db{bottom:620.787285px;}
.y18{bottom:622.147777px;}
.y166{bottom:624.724035px;}
.y3dc{bottom:624.790815px;}
.y290{bottom:626.926245px;}
.y2d9{bottom:629.290095px;}
.y351{bottom:629.291205px;}
.yaf{bottom:629.292240px;}
.y258{bottom:629.314560px;}
.y119{bottom:629.319825px;}
.ye6{bottom:629.335830px;}
.y222{bottom:629.344365px;}
.y200{bottom:629.372805px;}
.y4b{bottom:629.737590px;}
.y74{bottom:629.744895px;}
.y398{bottom:634.206060px;}
.y1ae{bottom:635.252460px;}
.y3db{bottom:638.313135px;}
.y28f{bottom:640.448565px;}
.y2d6{bottom:642.811380px;}
.y2d8{bottom:642.812415px;}
.y350{bottom:642.813525px;}
.y165{bottom:645.723765px;}
.yae{bottom:647.314260px;}
.y257{bottom:647.336565px;}
.y118{bottom:647.341845px;}
.ye5{bottom:647.357835px;}
.y221{bottom:647.366385px;}
.y1ff{bottom:647.394825px;}
.y4a{bottom:647.759610px;}
.y73{bottom:647.766915px;}
.y2d7{bottom:647.829780px;}
.y397{bottom:648.155865px;}
.y3da{bottom:651.835455px;}
.y1ad{bottom:656.252190px;}
.y2d5{bottom:656.333700px;}
.y34f{bottom:656.335845px;}
.y2d4{bottom:661.266000px;}
.y396{bottom:661.678185px;}
.yad{bottom:665.262765px;}
.y3d9{bottom:665.267775px;}
.yab{bottom:665.275545px;}
.y256{bottom:665.285085px;}
.y117{bottom:665.290365px;}
.ye4{bottom:665.306355px;}
.y220{bottom:665.314890px;}
.y1fe{bottom:665.343330px;}
.y49{bottom:665.781630px;}
.y72{bottom:665.788935px;}
.y164{bottom:666.723510px;}
.y1ac{bottom:669.692025px;}
.y34e{bottom:669.768165px;}
.y2d3{bottom:669.768945px;}
.yac{bottom:671.810850px;}
.y395{bottom:675.200505px;}
.y3d8{bottom:678.790095px;}
.y17{bottom:679.889527px;}
.y15{bottom:679.889647px;}
.y28e{bottom:681.443010px;}
.y2d0{bottom:683.289060px;}
.y34d{bottom:683.290485px;}
.y2d2{bottom:683.291265px;}
.yaa{bottom:683.297565px;}
.y255{bottom:683.307105px;}
.y116{bottom:683.312385px;}
.ye3{bottom:683.328375px;}
.y21f{bottom:683.336910px;}
.y1fd{bottom:683.365350px;}
.y48{bottom:683.730150px;}
.y71{bottom:683.737440px;}
.y16{bottom:687.287962px;}
.y163{bottom:687.723240px;}
.y2d1{bottom:688.308480px;}
.y394{bottom:689.150325px;}
.y1ab{bottom:690.691755px;}
.y3d7{bottom:692.312400px;}
.y28d{bottom:694.965330px;}
.y2cf{bottom:696.811380px;}
.y34c{bottom:696.812805px;}
.y12{bottom:700.894267px;}
.y14{bottom:700.894342px;}
.ya9{bottom:701.319585px;}
.y254{bottom:701.329110px;}
.y115{bottom:701.334390px;}
.ye2{bottom:701.350380px;}
.ya7{bottom:701.358930px;}
.y1fc{bottom:701.387370px;}
.y47{bottom:701.752155px;}
.y70{bottom:701.759460px;}
.y393{bottom:702.672645px;}
.y1aa{bottom:704.215590px;}
.y3d6{bottom:705.834720px;}
.ya8{bottom:707.867565px;}
.y13{bottom:708.292627px;}
.y28c{bottom:708.397650px;}
.y162{bottom:708.722985px;}
.y2ce{bottom:710.333700px;}
.y34b{bottom:710.335125px;}
.y2cc{bottom:710.336475px;}
.y2cd{bottom:715.266000px;}
.y392{bottom:716.104965px;}
.y3d5{bottom:719.267055px;}
.y253{bottom:719.277630px;}
.y114{bottom:719.282910px;}
.ye1{bottom:719.298900px;}
.ya6{bottom:719.307450px;}
.y1fb{bottom:719.335890px;}
.y46{bottom:719.774175px;}
.y6f{bottom:719.781480px;}
.y11{bottom:721.898962px;}
.yf{bottom:721.899082px;}
.y28b{bottom:721.919970px;}
.y34a{bottom:723.767445px;}
.y2cb{bottom:723.768795px;}
.y1a9{bottom:725.215335px;}
.y10{bottom:729.297427px;}
.y391{bottom:729.627285px;}
.y161{bottom:729.722715px;}
.y15f{bottom:729.742635px;}
.y3d4{bottom:732.789360px;}
.y160{bottom:735.080115px;}
.y28a{bottom:735.442290px;}
.y349{bottom:737.289765px;}
.y2c8{bottom:737.290095px;}
.y2ca{bottom:737.291115px;}
.y252{bottom:737.299650px;}
.y113{bottom:737.304930px;}
.ye0{bottom:737.320920px;}
.ya5{bottom:737.329455px;}
.y1fa{bottom:737.357895px;}
.y45{bottom:737.722695px;}
.y6e{bottom:737.729985px;}
.y1a8{bottom:738.739155px;}
.y2c9{bottom:742.308480px;}
.yc{bottom:742.903747px;}
.ye{bottom:742.903777px;}
.y390{bottom:743.577090px;}
.y3d3{bottom:746.311680px;}
.yd{bottom:750.217042px;}
.y15e{bottom:750.742365px;}
.y348{bottom:750.812085px;}
.y2c7{bottom:750.812415px;}
.y289{bottom:753.464550px;}
.y251{bottom:755.321655px;}
.y112{bottom:755.326935px;}
.ydf{bottom:755.342940px;}
.ya4{bottom:755.351475px;}
.y1f9{bottom:755.379915px;}
.y44{bottom:755.744700px;}
.y6d{bottom:755.752005px;}
.y2c6{bottom:755.829780px;}
.y38f{bottom:757.099410px;}
.y1a7{bottom:759.738900px;}
.y3d2{bottom:759.834000px;}
.yb{bottom:763.908442px;}
.y9{bottom:763.908562px;}
.y347{bottom:764.334405px;}
.y2c5{bottom:764.337465px;}
.y288{bottom:766.896870px;}
.y38e{bottom:770.621730px;}
.ya{bottom:771.221812px;}
.y15d{bottom:771.742110px;}
.y1a5{bottom:773.262720px;}
.y3d1{bottom:773.266320px;}
.y250{bottom:773.270175px;}
.y111{bottom:773.275455px;}
.yde{bottom:773.291445px;}
.ya3{bottom:773.299995px;}
.y1f8{bottom:773.328435px;}
.y43{bottom:773.773035px;}
.y6c{bottom:773.774025px;}
.y346{bottom:777.766725px;}
.y2c4{bottom:777.769785px;}
.y1a6{bottom:778.535250px;}
.y287{bottom:780.419190px;}
.y2c3{bottom:782.787345px;}
.y38d{bottom:784.571550px;}
.y7{bottom:784.913242px;}
.y3d0{bottom:786.788640px;}
.y345{bottom:791.289045px;}
.y24f{bottom:791.292195px;}
.y110{bottom:791.297475px;}
.ydd{bottom:791.313465px;}
.y2c2{bottom:791.320335px;}
.ya2{bottom:791.322000px;}
.y1f7{bottom:791.350440px;}
.y8{bottom:792.226477px;}
.y15c{bottom:792.741840px;}
.y286{bottom:793.941510px;}
.y1a4{bottom:794.182530px;}
.y1a2{bottom:794.189820px;}
.y38c{bottom:798.003870px;}
.y1a3{bottom:799.539915px;}
.y3cf{bottom:800.310960px;}
.y344{bottom:804.811365px;}
.y285{bottom:807.463830px;}
.y10f{bottom:809.319495px;}
.y10d{bottom:809.334390px;}
.ydc{bottom:809.335485px;}
.ya1{bottom:809.344020px;}
.y1f6{bottom:809.372460px;}
.y24e{bottom:809.432310px;}
.y38b{bottom:811.516305px;}
.y15b{bottom:813.741570px;}
.y159{bottom:813.746505px;}
.y3ce{bottom:813.833280px;}
.y1a1{bottom:815.189565px;}
.y10e{bottom:815.867520px;}
.y343{bottom:818.333685px;}
.y2c1{bottom:818.364975px;}
.y15a{bottom:819.098970px;}
.y284{bottom:820.896150px;}
.y6{bottom:820.907362px;}
.y38a{bottom:825.466110px;}
.y42{bottom:826.159260px;}
.y3cd{bottom:827.265600px;}
.y10c{bottom:827.282910px;}
.ydb{bottom:827.283990px;}
.ya0{bottom:827.292540px;}
.y1f5{bottom:827.320980px;}
.y24d{bottom:827.380830px;}
.y1a0{bottom:828.713400px;}
.y342{bottom:831.769770px;}
.y2c0{bottom:831.797295px;}
.y158{bottom:834.746250px;}
.y156{bottom:834.751185px;}
.y283{bottom:838.918410px;}
.y389{bottom:838.988430px;}
.y157{bottom:840.018765px;}
.y3cc{bottom:840.787920px;}
.y10b{bottom:845.304930px;}
.yda{bottom:845.306010px;}
.y9f{bottom:845.314560px;}
.y2bf{bottom:845.319615px;}
.y1f4{bottom:845.343000px;}
.y24c{bottom:845.432250px;}
.y19f{bottom:849.713130px;}
.y41{bottom:851.674515px;}
.y282{bottom:852.440730px;}
.y388{bottom:852.522000px;}
.y3cb{bottom:854.310240px;}
.y155{bottom:855.750915px;}
.y153{bottom:855.761055px;}
.y2be{bottom:858.841935px;}
.y5{bottom:859.931527px;}
.y154{bottom:861.023445px;}
.y19e{bottom:863.236965px;}
.y10a{bottom:863.326935px;}
.yd9{bottom:863.328030px;}
.y9e{bottom:863.336565px;}
.y1f3{bottom:863.365005px;}
.y24b{bottom:863.454255px;}
.y281{bottom:865.963050px;}
.y387{bottom:866.044320px;}
.y3ca{bottom:867.832560px;}
.y40{bottom:869.704695px;}
.y152{bottom:876.760785px;}
.y280{bottom:879.395370px;}
.y386{bottom:879.994140px;}
.y341{bottom:881.263440px;}
.y3c9{bottom:881.264880px;}
.y109{bottom:881.275455px;}
.yd8{bottom:881.276550px;}
.y9d{bottom:881.285085px;}
.y1f2{bottom:881.313525px;}
.y24a{bottom:881.402775px;}
.y19d{bottom:884.236695px;}
.y3f{bottom:887.644875px;}
.y2bd{bottom:890.307765px;}
.y27f{bottom:892.917690px;}
.y385{bottom:893.426460px;}
.y3c8{bottom:894.787200px;}
.y151{bottom:897.760530px;}
.y19c{bottom:897.761730px;}
.y14f{bottom:897.765375px;}
.y4{bottom:898.955692px;}
.y108{bottom:899.297475px;}
.yd7{bottom:899.298555px;}
.y9c{bottom:899.307105px;}
.y1f1{bottom:899.335545px;}
.y249{bottom:899.424795px;}
.y150{bottom:903.032865px;}
.y2bc{bottom:903.830085px;}
.y384{bottom:906.948780px;}
.y340{bottom:908.308080px;}
.y3c7{bottom:908.309520px;}
.y3e{bottom:910.175100px;}
.y27e{bottom:910.939950px;}
.y107{bottom:917.319495px;}
.yd6{bottom:917.320575px;}
.y9b{bottom:917.329110px;}
.y2bb{bottom:917.352405px;}
.y1f0{bottom:917.357550px;}
.y248{bottom:917.446815px;}
.y19b{bottom:918.761460px;}
.y14e{bottom:918.765105px;}
.y14c{bottom:918.770145px;}
.y383{bottom:920.898585px;}
.y33f{bottom:921.830400px;}
.y3c6{bottom:921.831840px;}
.y14d{bottom:924.037530px;}
.y27d{bottom:924.372270px;}
.y3d{bottom:928.205280px;}
.y2ba{bottom:930.874725px;}
.y199{bottom:932.201295px;}
.y382{bottom:934.420905px;}
.y33d{bottom:935.260755px;}
.y106{bottom:935.262720px;}
.y3c5{bottom:935.264160px;}
.yd5{bottom:935.269095px;}
.y9a{bottom:935.277630px;}
.y1ef{bottom:935.306070px;}
.y247{bottom:935.395320px;}
.y19a{bottom:937.558770px;}
.y27c{bottom:937.894590px;}
.y3{bottom:937.907857px;}
.y14b{bottom:939.685875px;}
.y33e{bottom:940.280085px;}
.y2b9{bottom:944.307045px;}
.y3c{bottom:946.145460px;}
.y381{bottom:947.943225px;}
.y33c{bottom:948.783075px;}
.y3c4{bottom:948.786480px;}
.y27b{bottom:951.416910px;}
.y198{bottom:953.206050px;}
.y196{bottom:953.209710px;}
.yd4{bottom:953.291100px;}
.y99{bottom:953.299650px;}
.y1ee{bottom:953.328090px;}
.y246{bottom:953.417340px;}
.y197{bottom:958.563630px;}
.y14a{bottom:960.685620px;}
.y380{bottom:961.893045px;}
.y33b{bottom:962.305395px;}
.y339{bottom:962.308080px;}
.y3c3{bottom:962.308800px;}
.y3b{bottom:964.175640px;}
.y27a{bottom:964.939230px;}
.y33a{bottom:967.322565px;}
.yd3{bottom:971.319495px;}
.y98{bottom:971.321655px;}
.y1d6{bottom:971.322525px;}
.y1ed{bottom:971.350110px;}
.y245{bottom:971.439360px;}
.y195{bottom:974.209440px;}
.y37f{bottom:975.325365px;}
.y338{bottom:975.830400px;}
.y3c2{bottom:975.831120px;}
.y2b8{bottom:975.862875px;}
.y2{bottom:976.932007px;}
.y149{bottom:980.413365px;}
.y3a{bottom:982.205820px;}
.y279{bottom:982.882740px;}
.y37e{bottom:988.847685px;}
.y336{bottom:989.261550px;}
.y1d5{bottom:989.262720px;}
.y3c1{bottom:989.263440px;}
.y97{bottom:989.270175px;}
.y2b7{bottom:989.295195px;}
.y1ec{bottom:989.298615px;}
.y244{bottom:989.387865px;}
.y148{bottom:993.937200px;}
.y337{bottom:994.280085px;}
.y278{bottom:996.405060px;}
.y39{bottom:1000.146000px;}
.y335{bottom:1002.783870px;}
.y333{bottom:1002.785760px;}
.y37d{bottom:1002.797490px;}
.y2b6{bottom:1002.817515px;}
.y96{bottom:1007.292195px;}
.y1eb{bottom:1007.320635px;}
.yd2{bottom:1007.348175px;}
.y243{bottom:1007.409885px;}
.y147{bottom:1007.461035px;}
.y334{bottom:1007.801415px;}
.y277{bottom:1009.927380px;}
.y332{bottom:1016.308080px;}
.y37c{bottom:1016.319810px;}
.y2b5{bottom:1016.339835px;}
.y38{bottom:1018.176180px;}
.y95{bottom:1025.314215px;}
.y1ea{bottom:1025.342655px;}
.yd1{bottom:1025.370195px;}
.y242{bottom:1025.431905px;}
.y146{bottom:1027.190985px;}
.y331{bottom:1029.830400px;}
.y37b{bottom:1029.842130px;}
.y2b4{bottom:1029.862155px;}
.y1{bottom:1033.908330px;}
.y37{bottom:1036.204470px;}
.y94{bottom:1043.262720px;}
.y276{bottom:1043.262735px;}
.y37a{bottom:1043.274450px;}
.y1e9{bottom:1043.291160px;}
.y2b3{bottom:1043.294475px;}
.yd0{bottom:1043.318715px;}
.y241{bottom:1043.380425px;}
.y145{bottom:1043.687985px;}
.y330{bottom:1048.280085px;}
.y36{bottom:1112.827995px;}
.y3f2{bottom:1127.791811px;}
.y35{bottom:1127.791815px;}
.y32f{bottom:1127.791830px;}
.y1d4{bottom:1127.792066px;}
.y186{bottom:1127.792281px;}
.h14{height:20.185549px;}
.hc{height:26.005838px;}
.h13{height:27.739665px;}
.h10{height:28.376746px;}
.h15{height:30.281567px;}
.h17{height:32.444567px;}
.h16{height:33.215585px;}
.he{height:34.607567px;}
.h8{height:34.676532px;}
.ha{height:36.413480px;}
.h5{height:38.144705px;}
.hb{height:39.014480px;}
.h18{height:39.054020px;}
.h11{height:39.799633px;}
.h9{height:41.615480px;}
.hd{height:42.287471px;}
.hf{height:42.570766px;}
.h6{height:44.557800px;}
.h12{height:46.818000px;}
.h7{height:52.020520px;}
.h2{height:56.238000px;}
.h4{height:57.222520px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039410px;}
.x6b{left:87.335400px;}
.x38{left:89.036250px;}
.x1{left:91.077180px;}
.x6c{left:92.947965px;}
.x35{left:94.818975px;}
.x39{left:96.990330px;}
.x41{left:102.557550px;}
.x99{left:107.578980px;}
.x92{left:128.324400px;}
.x93{left:136.318050px;}
.x60{left:137.338650px;}
.x61{left:142.611000px;}
.x62{left:148.563750px;}
.x46{left:158.428350px;}
.x47{left:163.785750px;}
.x18{left:165.996975px;}
.x2c{left:171.354375px;}
.xf{left:176.541825px;}
.x94{left:178.922850px;}
.x57{left:181.554150px;}
.x2d{left:182.664675px;}
.x3a{left:193.294515px;}
.x10{left:195.420525px;}
.x22{left:200.607975px;}
.x95{left:201.968400px;}
.x3{left:207.666225px;}
.x96{left:209.962185px;}
.x64{left:211.747950px;}
.x36{left:212.938575px;}
.x23{left:225.099225px;}
.x33{left:226.374825px;}
.x97{left:227.905500px;}
.x98{left:235.984200px;}
.x4{left:238.620540px;}
.x34{left:249.930690px;}
.x5e{left:267.703950px;}
.x37{left:270.510150px;}
.x58{left:272.117010px;}
.x6a{left:282.075600px;}
.x19{left:286.752825px;}
.x11{left:295.256775px;}
.x63{left:303.930615px;}
.x1a{left:311.244075px;}
.x12{left:319.748025px;}
.x40{left:324.680265px;}
.x24{left:332.078775px;}
.x5{left:333.439410px;}
.x59{left:339.640170px;}
.x6{left:346.620540px;}
.x44{left:353.593650px;}
.x25{left:356.570025px;}
.x45{left:359.121135px;}
.x91{left:362.607735px;}
.x2e{left:371.537025px;}
.x3e{left:413.036085px;}
.x3f{left:418.393665px;}
.x1b{left:422.815740px;}
.x5a{left:430.287030px;}
.x13{left:434.126025px;}
.x26{left:436.337025px;}
.x7{left:441.779460px;}
.x14{left:445.436175px;}
.x8{left:447.392190px;}
.x3b{left:457.083315px;}
.x56{left:459.382500px;}
.x27{left:460.828290px;}
.x80{left:465.165315px;}
.x42{left:469.081530px;}
.x9a{left:479.637645px;}
.x89{left:481.067565px;}
.x77{left:485.404650px;}
.x8a{left:489.146415px;}
.x2f{left:490.337025px;}
.x4a{left:491.442450px;}
.x78{left:493.483350px;}
.x4b{left:499.096065px;}
.x65{left:500.541600px;}
.x30{left:501.562110px;}
.x73{left:503.177865px;}
.x66{left:504.878670px;}
.x81{left:511.086465px;}
.x6f{left:515.253450px;}
.x70{left:519.250365px;}
.x1c{left:526.138575px;}
.x55{left:530.050365px;}
.x1d{left:537.448725px;}
.x79{left:542.295930px;}
.x67{left:548.673885px;}
.x7a{left:550.374630px;}
.x68{left:552.245550px;}
.x9{left:554.626725px;}
.xa{left:560.239275px;}
.x5f{left:562.960515px;}
.x4c{left:569.848665px;}
.x15{left:571.464510px;}
.x4d{left:574.100700px;}
.x53{left:575.461215px;}
.x54{left:579.713235px;}
.x28{left:583.199925px;}
.x6d{left:588.812415px;}
.x5b{left:589.813035px;}
.x6e{left:592.894380px;}
.x31{left:597.486540px;}
.x29{left:602.078640px;}
.x75{left:607.010850px;}
.x90{left:609.477000px;}
.x3c{left:611.517885px;}
.x76{left:615.089730px;}
.x32{left:616.365360px;}
.x86{left:617.810865px;}
.x1e{left:620.362140px;}
.x51{left:622.913265px;}
.x3d{left:624.273885px;}
.x87{left:625.889565px;}
.x52{left:627.250215px;}
.x4e{left:632.352585px;}
.x88{left:634.988865px;}
.x4f{left:636.689535px;}
.x50{left:639.751050px;}
.xb{left:642.642360px;}
.x1f{left:644.853540px;}
.xc{left:648.255090px;}
.x7e{left:650.721150px;}
.x82{left:653.102250px;}
.x5c{left:657.336180px;}
.x7f{left:658.799850px;}
.x83{left:661.095900px;}
.x48{left:665.859855px;}
.x71{left:672.321180px;}
.x84{left:674.787285px;}
.x72{left:676.317915px;}
.x85{left:682.780950px;}
.x16{left:703.785675px;}
.x2a{left:704.976360px;}
.x7c{left:709.058130px;}
.x17{left:715.010910px;}
.x7d{left:717.136800px;}
.x8d{left:727.001415px;}
.x2b{left:729.467640px;}
.x8f{left:731.593515px;}
.x8e{left:735.080130px;}
.x49{left:739.334940px;}
.x8b{left:741.883365px;}
.x69{left:742.903800px;}
.x7b{left:746.475465px;}
.x5d{left:747.899040px;}
.x8c{left:749.962065px;}
.x20{left:751.832910px;}
.xd{left:756.935325px;}
.x21{left:763.143195px;}
.x74{left:765.184080px;}
.xe{left:770.116410px;}
.x43{left:802.346280px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls87{letter-spacing:-1.641157pt;}
.ls89{letter-spacing:-1.520944pt;}
.ls91{letter-spacing:-1.515718pt;}
.ls8d{letter-spacing:-1.505265pt;}
.ls88{letter-spacing:-1.489585pt;}
.ls92{letter-spacing:-1.479132pt;}
.ls90{letter-spacing:-1.473905pt;}
.ls8b{letter-spacing:-1.463452pt;}
.ls8a{letter-spacing:-1.452999pt;}
.ls93{letter-spacing:-1.442545pt;}
.ls8e{letter-spacing:-1.416412pt;}
.ls94{letter-spacing:-1.411186pt;}
.ls8c{letter-spacing:-1.400732pt;}
.ls86{letter-spacing:-1.385053pt;}
.ls8f{letter-spacing:-1.338013pt;}
.lsae{letter-spacing:-1.335982pt;}
.lsad{letter-spacing:-1.291983pt;}
.lsab{letter-spacing:-1.239983pt;}
.lsa1{letter-spacing:-1.202121pt;}
.lsac{letter-spacing:-1.195984pt;}
.ls9a{letter-spacing:-1.191668pt;}
.ls9f{letter-spacing:-1.170761pt;}
.ls9c{letter-spacing:-1.165535pt;}
.ls9e{letter-spacing:-1.160308pt;}
.lsa2{letter-spacing:-1.149855pt;}
.ls97{letter-spacing:-1.134175pt;}
.lsa0{letter-spacing:-1.118495pt;}
.ls99{letter-spacing:-1.113269pt;}
.ls3f{letter-spacing:-1.108042pt;}
.ls98{letter-spacing:-1.097589pt;}
.ls96{letter-spacing:-1.092357pt;}
.ls4e{letter-spacing:-1.087136pt;}
.ls4b{letter-spacing:-1.081909pt;}
.ls9b{letter-spacing:-1.076682pt;}
.ls23{letter-spacing:-1.072011pt;}
.ls9d{letter-spacing:-1.071456pt;}
.ls95{letter-spacing:-1.061003pt;}
.ls51{letter-spacing:-1.055776pt;}
.ls3c{letter-spacing:-1.050549pt;}
.lsa3{letter-spacing:-1.040096pt;}
.lsb0{letter-spacing:-1.039986pt;}
.ls30{letter-spacing:-1.034869pt;}
.ls28{letter-spacing:-1.029643pt;}
.ls22{letter-spacing:-1.029344pt;}
.ls82{letter-spacing:-1.024416pt;}
.ls36{letter-spacing:-1.013963pt;}
.ls38{letter-spacing:-1.008736pt;}
.lsaf{letter-spacing:-1.003987pt;}
.ls4a{letter-spacing:-0.998283pt;}
.ls50{letter-spacing:-0.993057pt;}
.ls2a{letter-spacing:-0.987830pt;}
.ls85{letter-spacing:-0.982603pt;}
.ls83{letter-spacing:-0.977377pt;}
.ls20{letter-spacing:-0.976010pt;}
.ls2c{letter-spacing:-0.972145pt;}
.ls4c{letter-spacing:-0.966923pt;}
.ls34{letter-spacing:-0.961697pt;}
.ls1f{letter-spacing:-0.960010pt;}
.ls3a{letter-spacing:-0.956470pt;}
.ls24{letter-spacing:-0.951244pt;}
.ls26{letter-spacing:-0.946017pt;}
.ls3b{letter-spacing:-0.940790pt;}
.ls32{letter-spacing:-0.935564pt;}
.ls2f{letter-spacing:-0.930337pt;}
.ls1e{letter-spacing:-0.928009pt;}
.ls2d{letter-spacing:-0.925111pt;}
.ls2b{letter-spacing:-0.919884pt;}
.ls29{letter-spacing:-0.914657pt;}
.ls33{letter-spacing:-0.909431pt;}
.ls21{letter-spacing:-0.906676pt;}
.ls4d{letter-spacing:-0.904204pt;}
.ls31{letter-spacing:-0.898977pt;}
.ls39{letter-spacing:-0.883292pt;}
.ls35{letter-spacing:-0.867618pt;}
.ls25{letter-spacing:-0.862391pt;}
.ls3d{letter-spacing:-0.846711pt;}
.ls3e{letter-spacing:-0.810125pt;}
.ls37{letter-spacing:-0.804898pt;}
.ls27{letter-spacing:-0.789219pt;}
.ls52{letter-spacing:-0.773539pt;}
.ls2e{letter-spacing:-0.736952pt;}
.lsa9{letter-spacing:-0.699991pt;}
.lse{letter-spacing:0.000000pt;}
.lsa5{letter-spacing:0.000035pt;}
.ls41{letter-spacing:0.000052pt;}
.lsa7{letter-spacing:0.039972pt;}
.lsa6{letter-spacing:0.040028pt;}
.lsd{letter-spacing:0.042641pt;}
.ls62{letter-spacing:0.042694pt;}
.ls0{letter-spacing:0.058685pt;}
.lsa8{letter-spacing:0.080000pt;}
.ls44{letter-spacing:0.104545pt;}
.ls5c{letter-spacing:0.128000pt;}
.ls57{letter-spacing:0.156800pt;}
.ls7c{letter-spacing:0.156802pt;}
.ls5e{letter-spacing:0.223998pt;}
.ls76{letter-spacing:0.313598pt;}
.ls7a{letter-spacing:0.402449pt;}
.lsc{letter-spacing:0.464005pt;}
.ls7{letter-spacing:0.469338pt;}
.ls68{letter-spacing:0.470400pt;}
.ls5{letter-spacing:0.474671pt;}
.ls7b{letter-spacing:0.475622pt;}
.ls2{letter-spacing:0.480005pt;}
.ls15{letter-spacing:0.485338pt;}
.ls66{letter-spacing:0.486075pt;}
.ls3{letter-spacing:0.490672pt;}
.ls10{letter-spacing:0.496004pt;}
.ls13{letter-spacing:0.501338pt;}
.ls6e{letter-spacing:0.501754pt;}
.ls4{letter-spacing:0.506672pt;}
.ls9{letter-spacing:0.512005pt;}
.ls63{letter-spacing:0.512208pt;}
.ls1{letter-spacing:0.517339pt;}
.ls6d{letter-spacing:0.517435pt;}
.ls14{letter-spacing:0.522672pt;}
.lsb{letter-spacing:0.528005pt;}
.ls5b{letter-spacing:0.533115pt;}
.ls12{letter-spacing:0.533339pt;}
.ls6{letter-spacing:0.533351pt;}
.ls6a{letter-spacing:0.543568pt;}
.lsa{letter-spacing:0.544005pt;}
.ls5a{letter-spacing:0.548794pt;}
.ls69{letter-spacing:0.554021pt;}
.ls6c{letter-spacing:0.559248pt;}
.ls11{letter-spacing:0.565339pt;}
.ls64{letter-spacing:0.569701pt;}
.ls59{letter-spacing:0.580154pt;}
.ls8{letter-spacing:0.586673pt;}
.lsf{letter-spacing:0.608006pt;}
.ls70{letter-spacing:0.616740pt;}
.ls6b{letter-spacing:0.627194pt;}
.ls79{letter-spacing:0.684686pt;}
.ls67{letter-spacing:0.705593pt;}
.ls6f{letter-spacing:0.757859pt;}
.ls5d{letter-spacing:8.277203pt;}
.lsaa{letter-spacing:9.571872pt;}
.ls55{letter-spacing:9.721484pt;}
.ls54{letter-spacing:9.721504pt;}
.ls56{letter-spacing:10.035084pt;}
.ls61{letter-spacing:10.123950pt;}
.ls71{letter-spacing:10.348684pt;}
.ls53{letter-spacing:10.453201pt;}
.ls72{letter-spacing:10.662284pt;}
.ls60{letter-spacing:11.087838pt;}
.ls5f{letter-spacing:11.386505pt;}
.lsa4{letter-spacing:11.999855pt;}
.ls7e{letter-spacing:12.177983pt;}
.ls19{letter-spacing:13.097876pt;}
.ls84{letter-spacing:13.160612pt;}
.ls1d{letter-spacing:15.836596pt;}
.ls78{letter-spacing:15.836650pt;}
.ls81{letter-spacing:16.097983pt;}
.lsb1{letter-spacing:16.458027pt;}
.ls42{letter-spacing:16.934221pt;}
.ls48{letter-spacing:17.336676pt;}
.ls17{letter-spacing:17.352330pt;}
.ls18{letter-spacing:17.352383pt;}
.ls43{letter-spacing:17.404614pt;}
.ls49{letter-spacing:17.550968pt;}
.ls74{letter-spacing:17.927316pt;}
.ls73{letter-spacing:18.240863pt;}
.ls7f{letter-spacing:18.815796pt;}
.ls80{letter-spacing:19.129450pt;}
.ls75{letter-spacing:19.547522pt;}
.ls45{letter-spacing:20.749655pt;}
.ls77{letter-spacing:21.272330pt;}
.ls46{letter-spacing:24.565076pt;}
.ls40{letter-spacing:24.774132pt;}
.ls7d{letter-spacing:25.505876pt;}
.ls58{letter-spacing:25.871735pt;}
.ls47{letter-spacing:26.106934pt;}
.ls16{letter-spacing:29.091316pt;}
.ls1a{letter-spacing:29.112223pt;}
.ls1b{letter-spacing:29.112276pt;}
.ls1c{letter-spacing:29.425823pt;}
.ls65{letter-spacing:32.823095pt;}
.ls4f{letter-spacing:48.513425pt;}
.wsdd{word-spacing:-48.565691pt;}
.wsc4{word-spacing:-17.603234pt;}
.wsc3{word-spacing:-17.388943pt;}
.ws22d{word-spacing:-16.512960pt;}
.ws1cc{word-spacing:-13.212879pt;}
.ws127{word-spacing:-10.176216pt;}
.ws1aa{word-spacing:-0.606287pt;}
.ws15c{word-spacing:-0.538341pt;}
.ws1ac{word-spacing:-0.527888pt;}
.ws45{word-spacing:-0.054933pt;}
.ws4a{word-spacing:-0.052266pt;}
.ws2e{word-spacing:-0.042666pt;}
.ws28{word-spacing:-0.039999pt;}
.ws23{word-spacing:-0.037333pt;}
.ws31{word-spacing:0.000000pt;}
.ws224{word-spacing:0.659991pt;}
.ws51{word-spacing:0.684686pt;}
.ws1c8{word-spacing:0.883298pt;}
.ws56{word-spacing:0.982603pt;}
.ws22c{word-spacing:0.999987pt;}
.ws1e1{word-spacing:1.285747pt;}
.ws1d5{word-spacing:1.588890pt;}
.ws14c{word-spacing:7.893235pt;}
.ws14e{word-spacing:8.063899pt;}
.ws14a{word-spacing:8.191898pt;}
.ws16f{word-spacing:8.319896pt;}
.ws14d{word-spacing:8.362591pt;}
.wsbf{word-spacing:9.303372pt;}
.wsbb{word-spacing:9.355638pt;}
.wsbc{word-spacing:9.564702pt;}
.ws223{word-spacing:9.639871pt;}
.ws21e{word-spacing:9.679871pt;}
.wsbd{word-spacing:9.773767pt;}
.ws222{word-spacing:9.839869pt;}
.ws228{word-spacing:9.919868pt;}
.ws15{word-spacing:10.037434pt;}
.ws229{word-spacing:10.079866pt;}
.ws128{word-spacing:10.087364pt;}
.ws21d{word-spacing:10.159865pt;}
.ws94{word-spacing:10.191896pt;}
.ws21c{word-spacing:10.199864pt;}
.ws119{word-spacing:10.244162pt;}
.ws194{word-spacing:10.348694pt;}
.ws22a{word-spacing:10.439861pt;}
.ws27{word-spacing:10.559859pt;}
.ws195{word-spacing:10.662291pt;}
.ws196{word-spacing:10.714556pt;}
.ws24{word-spacing:10.938510pt;}
.ws155{word-spacing:11.013176pt;}
.ws174{word-spacing:11.013180pt;}
.ws1f{word-spacing:11.050509pt;}
.ws172{word-spacing:11.125162pt;}
.ws25{word-spacing:11.125174pt;}
.ws153{word-spacing:11.162507pt;}
.ws26{word-spacing:11.199840pt;}
.ws152{word-spacing:11.237173pt;}
.ws178{word-spacing:11.274489pt;}
.ws22{word-spacing:11.274506pt;}
.ws173{word-spacing:11.311833pt;}
.ws154{word-spacing:11.311838pt;}
.ws177{word-spacing:11.311884pt;}
.ws176{word-spacing:11.349171pt;}
.ws171{word-spacing:11.349179pt;}
.ws21{word-spacing:11.386504pt;}
.ws179{word-spacing:11.423837pt;}
.ws213{word-spacing:11.439847pt;}
.ws22b{word-spacing:11.443847pt;}
.ws20{word-spacing:11.461170pt;}
.ws156{word-spacing:11.498502pt;}
.ws12d{word-spacing:11.571753pt;}
.ws175{word-spacing:11.573177pt;}
.ws21f{word-spacing:11.719844pt;}
.ws215{word-spacing:11.759843pt;}
.ws211{word-spacing:11.799843pt;}
.ws2d{word-spacing:11.839842pt;}
.ws216{word-spacing:11.879842pt;}
.ws214{word-spacing:11.919841pt;}
.ws220{word-spacing:11.959798pt;}
.ws2c{word-spacing:11.959841pt;}
.ws226{word-spacing:11.995840pt;}
.ws29{word-spacing:11.999840pt;}
.ws2a{word-spacing:12.039839pt;}
.ws2b{word-spacing:12.079839pt;}
.ws227{word-spacing:12.091839pt;}
.ws20d{word-spacing:12.119838pt;}
.ws210{word-spacing:12.159838pt;}
.ws20c{word-spacing:12.199837pt;}
.ws212{word-spacing:12.199864pt;}
.ws170{word-spacing:12.202514pt;}
.ws20e{word-spacing:12.239837pt;}
.ws149{word-spacing:12.245180pt;}
.ws20f{word-spacing:12.279836pt;}
.ws217{word-spacing:12.319836pt;}
.ws32{word-spacing:12.330513pt;}
.ws218{word-spacing:12.359835pt;}
.ws150{word-spacing:12.373179pt;}
.ws219{word-spacing:12.399835pt;}
.ws1e{word-spacing:12.415845pt;}
.ws30{word-spacing:12.415861pt;}
.ws21a{word-spacing:12.439834pt;}
.ws151{word-spacing:12.458511pt;}
.ws21b{word-spacing:12.479834pt;}
.ws147{word-spacing:12.501177pt;}
.ws159{word-spacing:12.543810pt;}
.ws14b{word-spacing:12.543843pt;}
.ws2f{word-spacing:12.543863pt;}
.ws148{word-spacing:12.586509pt;}
.ws157{word-spacing:12.629175pt;}
.wsa6{word-spacing:12.671842pt;}
.ws14f{word-spacing:12.714508pt;}
.ws158{word-spacing:12.757174pt;}
.ws6f{word-spacing:12.909735pt;}
.ws102{word-spacing:13.014267pt;}
.ws116{word-spacing:13.118799pt;}
.ws18c{word-spacing:13.275598pt;}
.ws113{word-spacing:13.327864pt;}
.ws91{word-spacing:13.380130pt;}
.ws133{word-spacing:13.432396pt;}
.ws124{word-spacing:13.432413pt;}
.wsc8{word-spacing:13.484662pt;}
.ws125{word-spacing:13.536929pt;}
.wsba{word-spacing:13.693727pt;}
.ws83{word-spacing:13.798259pt;}
.ws187{word-spacing:13.902791pt;}
.ws1ff{word-spacing:13.955058pt;}
.wsfc{word-spacing:14.007324pt;}
.ws101{word-spacing:14.059590pt;}
.ws146{word-spacing:14.064000pt;}
.ws10f{word-spacing:14.111856pt;}
.wsc9{word-spacing:14.216388pt;}
.ws145{word-spacing:14.304000pt;}
.ws16e{word-spacing:14.352000pt;}
.wse5{word-spacing:14.373187pt;}
.ws16d{word-spacing:14.400000pt;}
.wse6{word-spacing:14.514305pt;}
.ws130{word-spacing:14.529985pt;}
.wsee{word-spacing:14.572958pt;}
.ws1c1{word-spacing:14.624064pt;}
.wsb7{word-spacing:14.686783pt;}
.ws18d{word-spacing:14.720160pt;}
.ws10b{word-spacing:14.739050pt;}
.ws57{word-spacing:14.801769pt;}
.ws1e0{word-spacing:14.833129pt;}
.ws18a{word-spacing:14.843582pt;}
.ws1c0{word-spacing:14.859262pt;}
.ws135{word-spacing:14.867362pt;}
.wsed{word-spacing:14.880168pt;}
.wsc6{word-spacing:14.895848pt;}
.ws1e2{word-spacing:14.906301pt;}
.ws1c6{word-spacing:14.942888pt;}
.ws6c{word-spacing:14.979469pt;}
.ws1d3{word-spacing:14.984700pt;}
.ws44{word-spacing:14.986817pt;}
.ws3e{word-spacing:14.986884pt;}
.ws8a{word-spacing:15.000380pt;}
.ws55{word-spacing:15.010833pt;}
.ws85{word-spacing:15.052646pt;}
.ws3f{word-spacing:15.093484pt;}
.ws108{word-spacing:15.104913pt;}
.ws134{word-spacing:15.112698pt;}
.ws41{word-spacing:15.146818pt;}
.ws10a{word-spacing:15.157179pt;}
.ws1d7{word-spacing:15.162405pt;}
.ws1f8{word-spacing:15.167632pt;}
.wsea{word-spacing:15.172859pt;}
.ws1f7{word-spacing:15.183312pt;}
.wse9{word-spacing:15.209445pt;}
.wsde{word-spacing:15.214671pt;}
.wsfa{word-spacing:15.261711pt;}
.ws63{word-spacing:15.287844pt;}
.wsdf{word-spacing:15.313977pt;}
.ws20a{word-spacing:15.324430pt;}
.ws43{word-spacing:15.360123pt;}
.ws90{word-spacing:15.366243pt;}
.ws40{word-spacing:15.376154pt;}
.wsec{word-spacing:15.413283pt;}
.ws9a{word-spacing:15.470775pt;}
.ws42{word-spacing:15.482821pt;}
.ws1c3{word-spacing:15.507362pt;}
.ws1b0{word-spacing:15.523042pt;}
.ws1dd{word-spacing:15.564855pt;}
.ws7c{word-spacing:15.575308pt;}
.ws64{word-spacing:15.580534pt;}
.ws126{word-spacing:15.627574pt;}
.ws11e{word-spacing:15.679840pt;}
.wse0{word-spacing:15.742559pt;}
.ws99{word-spacing:15.784372pt;}
.ws197{word-spacing:15.836638pt;}
.ws18e{word-spacing:15.836686pt;}
.ws8b{word-spacing:15.888905pt;}
.ws141{word-spacing:15.888922pt;}
.ws70{word-spacing:15.941171pt;}
.ws9b{word-spacing:16.045703pt;}
.ws46{word-spacing:16.056156pt;}
.wsf9{word-spacing:16.097969pt;}
.ws5d{word-spacing:16.108422pt;}
.wsc2{word-spacing:16.150235pt;}
.wsc0{word-spacing:16.202501pt;}
.wsce{word-spacing:16.254767pt;}
.ws5e{word-spacing:16.275674pt;}
.wscf{word-spacing:16.280901pt;}
.ws60{word-spacing:16.301802pt;}
.ws20b{word-spacing:16.425067pt;}
.wsc1{word-spacing:16.463832pt;}
.ws54{word-spacing:16.505645pt;}
.ws7d{word-spacing:16.516098pt;}
.wsb{word-spacing:16.533529pt;}
.ws53{word-spacing:16.547453pt;}
.ws1f5{word-spacing:16.557911pt;}
.ws110{word-spacing:16.620630pt;}
.ws5f{word-spacing:16.636310pt;}
.ws9c{word-spacing:16.725163pt;}
.wse8{word-spacing:16.740843pt;}
.ws1f9{word-spacing:16.777429pt;}
.wsf3{word-spacing:16.829695pt;}
.wsaf{word-spacing:16.934227pt;}
.ws1ae{word-spacing:17.038759pt;}
.ws5a{word-spacing:17.059666pt;}
.ws7e{word-spacing:17.091026pt;}
.wsb9{word-spacing:17.143292pt;}
.ws49{word-spacing:17.148518pt;}
.wsa0{word-spacing:17.247824pt;}
.ws140{word-spacing:17.300090pt;}
.ws82{word-spacing:17.352356pt;}
.ws11d{word-spacing:17.404622pt;}
.ws8{word-spacing:17.424158pt;}
.wsb8{word-spacing:17.456889pt;}
.ws1c2{word-spacing:17.477795pt;}
.ws6{word-spacing:17.482826pt;}
.ws7{word-spacing:17.541493pt;}
.ws4b{word-spacing:17.545741pt;}
.ws11b{word-spacing:17.561421pt;}
.ws204{word-spacing:17.587554pt;}
.ws5{word-spacing:17.600160pt;}
.ws13d{word-spacing:17.613687pt;}
.ws4c{word-spacing:17.639820pt;}
.ws9{word-spacing:17.658827pt;}
.ws97{word-spacing:17.665953pt;}
.wsa{word-spacing:17.717494pt;}
.wsef{word-spacing:17.718219pt;}
.ws1f4{word-spacing:17.749579pt;}
.ws1af{word-spacing:17.770485pt;}
.ws4{word-spacing:17.776162pt;}
.ws79{word-spacing:17.822751pt;}
.ws81{word-spacing:17.927284pt;}
.ws10d{word-spacing:18.031816pt;}
.wsd3{word-spacing:18.068402pt;}
.ws1a3{word-spacing:18.136348pt;}
.ws1ec{word-spacing:18.172935pt;}
.ws131{word-spacing:18.240881pt;}
.wsaa{word-spacing:18.345413pt;}
.ws1d8{word-spacing:18.491758pt;}
.ws12a{word-spacing:18.554477pt;}
.ws1cd{word-spacing:18.596290pt;}
.wsa9{word-spacing:18.659010pt;}
.ws1ce{word-spacing:18.664236pt;}
.ws17d{word-spacing:18.711276pt;}
.ws106{word-spacing:18.763542pt;}
.ws1fd{word-spacing:18.815808pt;}
.ws62{word-spacing:18.920340pt;}
.ws139{word-spacing:18.972606pt;}
.ws5b{word-spacing:19.003966pt;}
.ws10c{word-spacing:19.077139pt;}
.ws61{word-spacing:19.145085pt;}
.ws1cb{word-spacing:19.155538pt;}
.ws1a4{word-spacing:19.233937pt;}
.ws5c{word-spacing:19.254844pt;}
.wsd0{word-spacing:19.275750pt;}
.ws1f3{word-spacing:19.280971pt;}
.wsa8{word-spacing:19.286203pt;}
.ws9f{word-spacing:19.338469pt;}
.wse1{word-spacing:19.359376pt;}
.ws1b6{word-spacing:19.390735pt;}
.ws8e{word-spacing:19.443002pt;}
.ws1de{word-spacing:19.448228pt;}
.wsd7{word-spacing:19.474356pt;}
.ws1f2{word-spacing:19.484815pt;}
.ws193{word-spacing:19.495268pt;}
.ws180{word-spacing:19.547534pt;}
.ws200{word-spacing:19.578894pt;}
.ws17f{word-spacing:19.599800pt;}
.ws1b1{word-spacing:19.652066pt;}
.ws138{word-spacing:19.704332pt;}
.wsd2{word-spacing:19.709559pt;}
.ws1f0{word-spacing:19.746145pt;}
.ws1df{word-spacing:19.798411pt;}
.ws185{word-spacing:19.808841pt;}
.ws18b{word-spacing:19.808865pt;}
.ws1ee{word-spacing:19.913397pt;}
.ws48{word-spacing:19.918623pt;}
.wsc7{word-spacing:19.965663pt;}
.ws1f1{word-spacing:20.017173pt;}
.ws188{word-spacing:20.017929pt;}
.ws1e7{word-spacing:20.096328pt;}
.ws17b{word-spacing:20.117258pt;}
.ws182{word-spacing:20.122461pt;}
.ws225{word-spacing:20.187731pt;}
.ws19e{word-spacing:20.226994pt;}
.ws68{word-spacing:20.253127pt;}
.ws1fb{word-spacing:20.279260pt;}
.ws169{word-spacing:20.352433pt;}
.ws1ef{word-spacing:20.399472pt;}
.ws35{word-spacing:20.426871pt;}
.ws88{word-spacing:20.436058pt;}
.ws1be{word-spacing:20.488324pt;}
.ws168{word-spacing:20.493551pt;}
.wsd5{word-spacing:20.540567pt;}
.ws7f{word-spacing:20.592857pt;}
.ws3a{word-spacing:20.597539pt;}
.ws1a{word-spacing:20.624207pt;}
.wse{word-spacing:20.629540pt;}
.ws3c{word-spacing:20.634873pt;}
.ws16{word-spacing:20.693540pt;}
.ws111{word-spacing:20.697389pt;}
.ws11{word-spacing:20.698874pt;}
.ws19{word-spacing:20.709540pt;}
.ws17{word-spacing:20.714874pt;}
.ws18{word-spacing:20.736207pt;}
.ws1b{word-spacing:20.752208pt;}
.wsc{word-spacing:20.762874pt;}
.ws13{word-spacing:20.768210pt;}
.ws115{word-spacing:20.801921pt;}
.ws1d{word-spacing:20.805541pt;}
.ws37{word-spacing:20.810875pt;}
.ws33{word-spacing:20.832228pt;}
.ws38{word-spacing:20.842875pt;}
.ws3b{word-spacing:20.848208pt;}
.ws3d{word-spacing:20.853532pt;}
.ws10{word-spacing:20.858875pt;}
.ws39{word-spacing:20.869542pt;}
.ws36{word-spacing:20.885542pt;}
.ws34{word-spacing:20.896209pt;}
.wsd4{word-spacing:20.901227pt;}
.wsd{word-spacing:20.906876pt;}
.wsf{word-spacing:20.933543pt;}
.ws12{word-spacing:20.949543pt;}
.ws17c{word-spacing:20.958719pt;}
.ws1c{word-spacing:20.976210pt;}
.ws205{word-spacing:20.984853pt;}
.ws0{word-spacing:21.008000pt;}
.ws1fc{word-spacing:21.010986pt;}
.ws208{word-spacing:21.021439pt;}
.ws165{word-spacing:21.078932pt;}
.ws1c4{word-spacing:21.115518pt;}
.ws1a2{word-spacing:21.167784pt;}
.ws19b{word-spacing:21.220050pt;}
.wsb5{word-spacing:21.272316pt;}
.ws144{word-spacing:21.314129pt;}
.ws96{word-spacing:21.324582pt;}
.ws1c5{word-spacing:21.355937pt;}
.ws9e{word-spacing:21.376849pt;}
.ws166{word-spacing:21.382075pt;}
.ws1bc{word-spacing:21.429115pt;}
.wscc{word-spacing:21.434341pt;}
.wscd{word-spacing:21.444795pt;}
.wsb4{word-spacing:21.481381pt;}
.wsdb{word-spacing:21.523194pt;}
.ws112{word-spacing:21.533647pt;}
.ws10e{word-spacing:21.585913pt;}
.ws11f{word-spacing:21.638179pt;}
.ws50{word-spacing:21.674765pt;}
.ws121{word-spacing:21.690445pt;}
.ws161{word-spacing:21.711352pt;}
.ws160{word-spacing:21.716557pt;}
.ws14{word-spacing:21.813551pt;}
.ws52{word-spacing:21.826337pt;}
.ws1e8{word-spacing:21.836791pt;}
.ws1e9{word-spacing:21.852470pt;}
.wsb3{word-spacing:21.899510pt;}
.wscb{word-spacing:21.951776pt;}
.wsd9{word-spacing:22.035397pt;}
.ws1fe{word-spacing:22.056308pt;}
.ws1c7{word-spacing:22.087663pt;}
.ws89{word-spacing:22.108574pt;}
.wsd8{word-spacing:22.155614pt;}
.ws93{word-spacing:22.160841pt;}
.ws114{word-spacing:22.213107pt;}
.ws4e{word-spacing:22.244466pt;}
.ws206{word-spacing:22.265373pt;}
.wsa1{word-spacing:22.369905pt;}
.ws13e{word-spacing:22.422171pt;}
.ws203{word-spacing:22.526703pt;}
.wse7{word-spacing:22.537157pt;}
.ws202{word-spacing:22.547610pt;}
.ws4d{word-spacing:22.626009pt;}
.ws1b4{word-spacing:22.631236pt;}
.ws73{word-spacing:22.683502pt;}
.ws1e6{word-spacing:22.709635pt;}
.wse3{word-spacing:22.725315pt;}
.wse4{word-spacing:22.751448pt;}
.ws129{word-spacing:22.840300pt;}
.ws1ca{word-spacing:22.876887pt;}
.ws201{word-spacing:22.913473pt;}
.wsf2{word-spacing:22.997099pt;}
.wsb2{word-spacing:23.049365pt;}
.wsa2{word-spacing:23.101631pt;}
.ws84{word-spacing:23.153897pt;}
.ws47{word-spacing:23.336829pt;}
.ws1d2{word-spacing:23.383868pt;}
.ws6b{word-spacing:23.436134pt;}
.wsff{word-spacing:23.467494pt;}
.ws6a{word-spacing:23.530213pt;}
.ws1d9{word-spacing:23.545893pt;}
.wsf1{word-spacing:23.676558pt;}
.ws8c{word-spacing:23.728825pt;}
.ws1b9{word-spacing:23.781091pt;}
.ws17e{word-spacing:23.885623pt;}
.ws1b7{word-spacing:23.937889pt;}
.ws136{word-spacing:23.990155pt;}
.ws6d{word-spacing:24.042421pt;}
.ws72{word-spacing:24.094687pt;}
.ws71{word-spacing:24.251486pt;}
.ws98{word-spacing:24.356018pt;}
.ws1fa{word-spacing:24.460550pt;}
.ws87{word-spacing:24.512817pt;}
.ws1a0{word-spacing:24.617349pt;}
.ws190{word-spacing:24.669615pt;}
.ws69{word-spacing:24.742788pt;}
.ws1bd{word-spacing:24.774147pt;}
.wsad{word-spacing:24.826413pt;}
.wsac{word-spacing:24.878683pt;}
.wsd6{word-spacing:24.883906pt;}
.ws1eb{word-spacing:24.925714pt;}
.ws1b8{word-spacing:24.930946pt;}
.wsb1{word-spacing:24.983212pt;}
.ws86{word-spacing:25.087744pt;}
.wsab{word-spacing:25.140010pt;}
.wsae{word-spacing:25.192276pt;}
.ws19a{word-spacing:25.244542pt;}
.ws15e{word-spacing:25.307262pt;}
.ws103{word-spacing:25.401341pt;}
.ws95{word-spacing:25.453607pt;}
.ws137{word-spacing:25.505873pt;}
.wsb0{word-spacing:25.558139pt;}
.ws75{word-spacing:25.610405pt;}
.ws67{word-spacing:25.683578pt;}
.ws4f{word-spacing:25.694026pt;}
.wsf7{word-spacing:25.714938pt;}
.ws13b{word-spacing:25.767204pt;}
.wsda{word-spacing:25.835150pt;}
.wsbe{word-spacing:25.871736pt;}
.ws117{word-spacing:25.924002pt;}
.ws9d{word-spacing:25.976268pt;}
.ws13a{word-spacing:26.080740pt;}
.wsf5{word-spacing:26.185333pt;}
.ws1a1{word-spacing:26.237599pt;}
.ws1bb{word-spacing:26.394397pt;}
.ws19d{word-spacing:26.446663pt;}
.ws1a6{word-spacing:26.498930pt;}
.ws15f{word-spacing:26.509383pt;}
.ws18f{word-spacing:26.551196pt;}
.ws1ab{word-spacing:26.603462pt;}
.ws1d0{word-spacing:26.650501pt;}
.ws17a{word-spacing:26.681861pt;}
.ws1d1{word-spacing:26.707994pt;}
.wsc5{word-spacing:26.760260pt;}
.wsb6{word-spacing:26.917059pt;}
.ws181{word-spacing:27.073857pt;}
.wseb{word-spacing:27.115670pt;}
.ws13c{word-spacing:27.282922pt;}
.ws105{word-spacing:27.387454pt;}
.ws7a{word-spacing:27.596518pt;}
.ws184{word-spacing:27.706277pt;}
.ws207{word-spacing:27.910115pt;}
.ws12f{word-spacing:28.171446pt;}
.ws192{word-spacing:28.223712pt;}
.ws1da{word-spacing:28.249845pt;}
.ws107{word-spacing:28.328244pt;}
.wse2{word-spacing:28.349151pt;}
.ws80{word-spacing:28.485043pt;}
.wsf4{word-spacing:28.537309pt;}
.ws78{word-spacing:28.589575pt;}
.ws12c{word-spacing:28.641841pt;}
.ws74{word-spacing:28.694107pt;}
.ws8f{word-spacing:28.746373pt;}
.ws12b{word-spacing:28.798600pt;}
.ws77{word-spacing:29.007704pt;}
.ws1ba{word-spacing:29.112236pt;}
.ws1b2{word-spacing:29.164502pt;}
.ws1a9{word-spacing:29.216769pt;}
.ws132{word-spacing:29.269035pt;}
.ws1e3{word-spacing:29.478099pt;}
.ws167{word-spacing:29.509459pt;}
.wsfe{word-spacing:29.582631pt;}
.ws123{word-spacing:29.791696pt;}
.ws6e{word-spacing:29.843962pt;}
.wsa4{word-spacing:29.948494pt;}
.ws1c9{word-spacing:29.974627pt;}
.wsa7{word-spacing:30.053027pt;}
.ws120{word-spacing:30.157559pt;}
.ws1dc{word-spacing:30.199372pt;}
.ws142{word-spacing:30.309131pt;}
.ws76{word-spacing:30.418890pt;}
.ws163{word-spacing:30.601821pt;}
.ws109{word-spacing:30.627954pt;}
.ws58{word-spacing:30.674994pt;}
.ws59{word-spacing:30.701127pt;}
.ws209{word-spacing:30.831792pt;}
.ws164{word-spacing:30.837019pt;}
.ws11a{word-spacing:30.889285pt;}
.ws1bf{word-spacing:30.920644pt;}
.ws1ad{word-spacing:30.941551pt;}
.ws118{word-spacing:31.150615pt;}
.ws198{word-spacing:31.255148pt;}
.wsca{word-spacing:31.307414pt;}
.ws1e5{word-spacing:31.338774pt;}
.ws1a7{word-spacing:31.411946pt;}
.wsfb{word-spacing:31.464212pt;}
.ws1e4{word-spacing:31.479892pt;}
.ws15b{word-spacing:31.573971pt;}
.ws1d4{word-spacing:31.594878pt;}
.ws122{word-spacing:31.621011pt;}
.ws143{word-spacing:31.699410pt;}
.ws11c{word-spacing:31.725543pt;}
.ws1d6{word-spacing:31.751676pt;}
.ws1b5{word-spacing:31.882341pt;}
.ws183{word-spacing:31.892795pt;}
.ws15a{word-spacing:31.997327pt;}
.ws13f{word-spacing:32.039140pt;}
.ws1b3{word-spacing:32.143672pt;}
.wsa5{word-spacing:32.405003pt;}
.ws92{word-spacing:32.509535pt;}
.ws16b{word-spacing:33.215117pt;}
.wsd1{word-spacing:33.361473pt;}
.ws16c{word-spacing:33.471232pt;}
.ws1cf{word-spacing:33.497365pt;}
.wsa3{word-spacing:34.182051pt;}
.ws7b{word-spacing:34.338850pt;}
.ws186{word-spacing:34.547914pt;}
.ws104{word-spacing:34.913777pt;}
.ws8d{word-spacing:35.540971pt;}
.ws189{word-spacing:35.697769pt;}
.ws1f6{word-spacing:35.922513pt;}
.wsf8{word-spacing:36.220430pt;}
.ws1ea{word-spacing:36.392909pt;}
.ws199{word-spacing:36.481761pt;}
.ws16a{word-spacing:37.652522pt;}
.ws66{word-spacing:38.007932pt;}
.ws1{word-spacing:38.144159pt;}
.ws1db{word-spacing:38.363342pt;}
.ws65{word-spacing:38.394696pt;}
.ws2{word-spacing:38.400160pt;}
.ws3{word-spacing:38.784162pt;}
.ws100{word-spacing:38.833737pt;}
.ws221{word-spacing:39.300785pt;}
.wsf0{word-spacing:39.356398pt;}
.ws191{word-spacing:39.774527pt;}
.ws19f{word-spacing:40.088124pt;}
.ws19c{word-spacing:40.297189pt;}
.ws1ed{word-spacing:40.365135pt;}
.ws1a5{word-spacing:40.767584pt;}
.ws15d{word-spacing:42.058558pt;}
.wsf6{word-spacing:42.126503pt;}
.wsfd{word-spacing:42.178770pt;}
.ws1a8{word-spacing:44.008084pt;}
.ws162{word-spacing:44.300775pt;}
.ws12e{word-spacing:47.300851pt;}
.wsdc{word-spacing:50.530898pt;}
._1e{margin-left:-49.205009pt;}
._1c{margin-left:-18.449945pt;}
._1b{margin-left:-17.352356pt;}
._48{margin-left:-15.930667pt;}
._44{margin-left:-14.612423pt;}
._45{margin-left:-13.516832pt;}
._21{margin-left:-11.080420pt;}
._20{margin-left:-9.804388pt;}
._12{margin-left:-1.806787pt;}
._6{margin-left:-0.906676pt;}
._4{width:0.906676pt;}
._7{width:1.813351pt;}
._0{width:7.973333pt;}
._1d{width:9.033933pt;}
._c{width:10.666773pt;}
._a{width:12.010500pt;}
._b{width:12.959827pt;}
._10{width:14.425453pt;}
._d{width:16.097969pt;}
._f{width:17.195558pt;}
._11{width:18.590780pt;}
._9{width:20.320203pt;}
._8{width:21.386881pt;}
._5{width:22.293556pt;}
._13{width:23.870305pt;}
._41{width:24.769665pt;}
._e{width:25.714938pt;}
._14{width:26.797209pt;}
._39{width:28.153294pt;}
._1{width:29.050667pt;}
._15{width:30.052092pt;}
._18{width:31.708326pt;}
._19{width:33.502591pt;}
._17{width:35.156956pt;}
._16{width:37.086427pt;}
._3b{width:38.356854pt;}
._3{width:39.296164pt;}
._1f{width:40.644900pt;}
._42{width:41.726526pt;}
._43{width:44.996764pt;}
._22{width:48.798417pt;}
._47{width:58.559219pt;}
._25{width:103.806702pt;}
._3a{width:119.891835pt;}
._40{width:131.433063pt;}
._38{width:149.246134pt;}
._3d{width:164.861939pt;}
._3c{width:169.939209pt;}
._3f{width:185.299017pt;}
._3e{width:189.480298pt;}
._29{width:268.583309pt;}
._36{width:304.294863pt;}
._28{width:315.132032pt;}
._37{width:319.185343pt;}
._2a{width:387.408459pt;}
._35{width:479.482006pt;}
._23{width:500.388464pt;}
._2c{width:525.860092pt;}
._27{width:529.913374pt;}
._26{width:539.854637pt;}
._24{width:552.995806pt;}
._2b{width:556.451712pt;}
._32{width:649.079886pt;}
._2e{width:707.020454pt;}
._30{width:744.225364pt;}
._2d{width:791.798114pt;}
._31{width:846.752082pt;}
._2f{width:877.429032pt;}
._34{width:915.145894pt;}
._33{width:940.446911pt;}
._46{width:1137.905581pt;}
._1a{width:1159.708088pt;}
._2{width:1424.245280pt;}
.fs10{font-size:24.885867pt;}
.fsa{font-size:26.662400pt;}
.fsf{font-size:28.440000pt;}
.fsc{font-size:34.839467pt;}
.fs6{font-size:35.552000pt;}
.fs8{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs9{font-size:39.999467pt;}
.fs7{font-size:42.666133pt;}
.fse{font-size:48.000000pt;}
.fsd{font-size:49.067200pt;}
.fsb{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:58.128080pt;}
.y2b{bottom:68.786600pt;}
.y3c0{bottom:79.335173pt;}
.y32c{bottom:79.368067pt;}
.y32e{bottom:79.370147pt;}
.y379{bottom:79.376360pt;}
.y138{bottom:79.376760pt;}
.y18d{bottom:79.383240pt;}
.y275{bottom:79.389867pt;}
.y2b2{bottom:79.394147pt;}
.y194{bottom:79.396320pt;}
.y105{bottom:79.396493pt;}
.y144{bottom:79.402893pt;}
.y1e8{bottom:79.404120pt;}
.y93{bottom:79.408760pt;}
.ycf{bottom:79.428613pt;}
.y2a{bottom:79.445107pt;}
.y240{bottom:79.483467pt;}
.y21e{bottom:79.508747pt;}
.y6b{bottom:79.748000pt;}
.y69{bottom:79.833000pt;}
.y32d{bottom:83.829880pt;}
.y6a{bottom:85.568533pt;}
.y29{bottom:90.103627pt;}
.y3bf{bottom:91.355013pt;}
.y32b{bottom:91.387907pt;}
.y378{bottom:91.396200pt;}
.y2b1{bottom:91.413987pt;}
.y137{bottom:95.396333pt;}
.y18c{bottom:95.402813pt;}
.y274{bottom:95.409440pt;}
.y193{bottom:95.415880pt;}
.y104{bottom:95.416067pt;}
.y143{bottom:95.422467pt;}
.y1e7{bottom:95.423693pt;}
.y92{bottom:95.428320pt;}
.yce{bottom:95.448187pt;}
.y23f{bottom:95.503027pt;}
.y21d{bottom:95.528307pt;}
.y68{bottom:95.852573pt;}
.y28{bottom:100.762133pt;}
.y3be{bottom:103.374853pt;}
.y32a{bottom:103.407747pt;}
.y328{bottom:103.410467pt;}
.y377{bottom:103.416040pt;}
.y2b0{bottom:103.433827pt;}
.y329{bottom:107.792147pt;}
.y136{bottom:111.350573pt;}
.y273{bottom:111.363680pt;}
.y103{bottom:111.370307pt;}
.y1e6{bottom:111.377933pt;}
.y91{bottom:111.382560pt;}
.y18b{bottom:111.422387pt;}
.y192{bottom:111.435453pt;}
.y142{bottom:111.442040pt;}
.ycd{bottom:111.467747pt;}
.y23e{bottom:111.522600pt;}
.y21c{bottom:111.547880pt;}
.y67{bottom:111.872133pt;}
.y327{bottom:115.350307pt;}
.y376{bottom:115.355880pt;}
.y2af{bottom:115.373667pt;}
.y3bd{bottom:115.774693pt;}
.y1d3{bottom:118.450263pt;}
.y185{bottom:118.450454pt;}
.y34{bottom:123.361920pt;}
.y324{bottom:127.369107pt;}
.y135{bottom:127.370133pt;}
.y326{bottom:127.370147pt;}
.y375{bottom:127.375720pt;}
.y18a{bottom:127.376613pt;}
.y272{bottom:127.383240pt;}
.y191{bottom:127.389693pt;}
.y102{bottom:127.389867pt;}
.y2ae{bottom:127.393507pt;}
.y141{bottom:127.396267pt;}
.y1e5{bottom:127.397507pt;}
.y90{bottom:127.402133pt;}
.ycc{bottom:127.421987pt;}
.y23d{bottom:127.476840pt;}
.y21b{bottom:127.502120pt;}
.y3bc{bottom:127.714533pt;}
.y66{bottom:127.826373pt;}
.y325{bottom:131.829880pt;}
.y33{bottom:135.381760pt;}
.y323{bottom:139.388947pt;}
.y321{bottom:139.391533pt;}
.y374{bottom:139.395560pt;}
.y2ad{bottom:139.413347pt;}
.y3bb{bottom:140.114373pt;}
.y189{bottom:143.396187pt;}
.y134{bottom:143.397960pt;}
.y271{bottom:143.402813pt;}
.y190{bottom:143.409267pt;}
.y101{bottom:143.409440pt;}
.y140{bottom:143.415840pt;}
.y1e4{bottom:143.417067pt;}
.y8f{bottom:143.421707pt;}
.ycb{bottom:143.441560pt;}
.y23c{bottom:143.496400pt;}
.y21a{bottom:143.521680pt;}
.y65{bottom:143.845947pt;}
.y322{bottom:143.848813pt;}
.y32{bottom:147.401600pt;}
.y320{bottom:151.411373pt;}
.y373{bottom:151.415400pt;}
.y31{bottom:151.861467pt;}
.y3ba{bottom:152.134213pt;}
.y133{bottom:159.344800pt;}
.y270{bottom:159.357053pt;}
.y100{bottom:159.363680pt;}
.y1e3{bottom:159.371307pt;}
.y8e{bottom:159.375933pt;}
.y188{bottom:159.415760pt;}
.y30{bottom:159.423893pt;}
.y18f{bottom:159.428827pt;}
.y13f{bottom:159.435413pt;}
.yca{bottom:159.461120pt;}
.y23b{bottom:159.515973pt;}
.y219{bottom:159.541253pt;}
.y64{bottom:159.865507pt;}
.y31d{bottom:163.349267pt;}
.y31f{bottom:163.351213pt;}
.y372{bottom:163.355240pt;}
.y3b9{bottom:164.154053pt;}
.y31e{bottom:167.810947pt;}
.y2ac{bottom:168.892960pt;}
.y2f{bottom:171.363733pt;}
.y31c{bottom:175.369107pt;}
.y187{bottom:175.370000pt;}
.y371{bottom:175.375080pt;}
.y26f{bottom:175.376613pt;}
.y18e{bottom:175.383067pt;}
.yff{bottom:175.383240pt;}
.y13e{bottom:175.389653pt;}
.y1e2{bottom:175.390880pt;}
.y8d{bottom:175.395507pt;}
.yc9{bottom:175.415360pt;}
.y23a{bottom:175.470213pt;}
.y218{bottom:175.495493pt;}
.y63{bottom:175.819747pt;}
.y2e{bottom:175.823613pt;}
.y3b8{bottom:176.553880pt;}
.y2ab{bottom:180.832800pt;}
.y2d{bottom:183.382667pt;}
.y31b{bottom:187.388947pt;}
.y319{bottom:187.391413pt;}
.y370{bottom:187.394920pt;}
.y3b7{bottom:188.953720pt;}
.y26e{bottom:191.396187pt;}
.yfe{bottom:191.402813pt;}
.y13d{bottom:191.409213pt;}
.y1e1{bottom:191.410440pt;}
.y8c{bottom:191.415080pt;}
.y132{bottom:191.429307pt;}
.yc8{bottom:191.434933pt;}
.y239{bottom:191.489787pt;}
.y217{bottom:191.515067pt;}
.y62{bottom:191.839320pt;}
.y31a{bottom:191.848813pt;}
.y2aa{bottom:192.852640pt;}
.y318{bottom:199.411253pt;}
.y36f{bottom:199.414760pt;}
.y3b6{bottom:200.973560pt;}
.y2a9{bottom:204.872480pt;}
.y26d{bottom:207.350427pt;}
.yfd{bottom:207.357053pt;}
.y1e0{bottom:207.364680pt;}
.y8b{bottom:207.369320pt;}
.y131{bottom:207.383547pt;}
.y13c{bottom:207.428787pt;}
.yc7{bottom:207.454507pt;}
.y238{bottom:207.509347pt;}
.y216{bottom:207.534627pt;}
.y1d2{bottom:207.798400pt;}
.y61{bottom:207.858893pt;}
.y315{bottom:211.350173pt;}
.y317{bottom:211.351093pt;}
.y36e{bottom:211.354600pt;}
.y1d1{bottom:211.955867pt;}
.y3b5{bottom:212.993400pt;}
.y316{bottom:215.810947pt;}
.y1d0{bottom:219.134453pt;}
.y312{bottom:223.368187pt;}
.y26c{bottom:223.370000pt;}
.y314{bottom:223.370013pt;}
.y36d{bottom:223.374440pt;}
.yfc{bottom:223.376613pt;}
.y13b{bottom:223.383027pt;}
.y1df{bottom:223.384253pt;}
.y8a{bottom:223.388880pt;}
.y130{bottom:223.403120pt;}
.yc6{bottom:223.408733pt;}
.y237{bottom:223.463587pt;}
.y215{bottom:223.488867pt;}
.y60{bottom:223.813120pt;}
.y3b4{bottom:224.933240pt;}
.y313{bottom:227.829893pt;}
.y1cf{bottom:230.474293pt;}
.y2a8{bottom:234.352080pt;}
.y311{bottom:235.388027pt;}
.y36c{bottom:235.394280pt;}
.y3b3{bottom:237.333067pt;}
.y26b{bottom:239.395200pt;}
.yfb{bottom:239.396187pt;}
.y13a{bottom:239.402587pt;}
.y1de{bottom:239.403827pt;}
.y89{bottom:239.408453pt;}
.y12f{bottom:239.422693pt;}
.yc5{bottom:239.428307pt;}
.y236{bottom:239.483160pt;}
.y214{bottom:239.508440pt;}
.y5f{bottom:239.832693pt;}
.y1cc{bottom:241.811893pt;}
.y1ce{bottom:241.814133pt;}
.y1cd{bottom:245.896000pt;}
.y2a7{bottom:246.291920pt;}
.y310{bottom:247.407867pt;}
.y30e{bottom:247.411253pt;}
.y36b{bottom:247.414120pt;}
.y3b2{bottom:249.352907pt;}
.y30f{bottom:251.792000pt;}
.y1c9{bottom:253.075893pt;}
.y1cb{bottom:253.077067pt;}
.yfa{bottom:255.350427pt;}
.y1dd{bottom:255.358053pt;}
.y88{bottom:255.362693pt;}
.y12e{bottom:255.376920pt;}
.y139{bottom:255.422160pt;}
.yc4{bottom:255.447880pt;}
.y235{bottom:255.502720pt;}
.y213{bottom:255.528000pt;}
.y5e{bottom:255.852267pt;}
.y1ca{bottom:257.234533pt;}
.y2a6{bottom:258.311760pt;}
.y30b{bottom:259.349267pt;}
.y30d{bottom:259.351093pt;}
.y36a{bottom:259.353960pt;}
.y3b1{bottom:261.372747pt;}
.y30c{bottom:263.810947pt;}
.y1c7{bottom:264.415733pt;}
.y1c8{bottom:268.573053pt;}
.y2a5{bottom:270.331600pt;}
.y30a{bottom:271.369107pt;}
.yf9{bottom:271.370000pt;}
.y369{bottom:271.373800pt;}
.y1dc{bottom:271.377627pt;}
.y87{bottom:271.382253pt;}
.y12d{bottom:271.396493pt;}
.yc3{bottom:271.402107pt;}
.y26a{bottom:271.430467pt;}
.y234{bottom:271.456960pt;}
.y212{bottom:271.482240pt;}
.y5d{bottom:271.806507pt;}
.y3b0{bottom:273.392587pt;}
.y1c6{bottom:281.955840pt;}
.y2a4{bottom:282.351440pt;}
.y3f1{bottom:283.388013pt;}
.y307{bottom:283.388027pt;}
.y309{bottom:283.388947pt;}
.y368{bottom:283.393640pt;}
.y3af{bottom:285.332427pt;}
.y184{bottom:286.412533pt;}
.y1db{bottom:287.397200pt;}
.y86{bottom:287.401827pt;}
.y12c{bottom:287.416067pt;}
.yc2{bottom:287.421680pt;}
.y269{bottom:287.450027pt;}
.yf7{bottom:287.468933pt;}
.y233{bottom:287.476533pt;}
.y211{bottom:287.501813pt;}
.y5c{bottom:287.826067pt;}
.y308{bottom:287.848813pt;}
.y183{bottom:290.570013pt;}
.yf8{bottom:293.215733pt;}
.y1c5{bottom:293.977027pt;}
.y2a3{bottom:294.291280pt;}
.y3f0{bottom:295.407853pt;}
.y306{bottom:295.407867pt;}
.y304{bottom:295.410333pt;}
.y367{bottom:295.413480pt;}
.y3ae{bottom:297.732267pt;}
.y182{bottom:297.751053pt;}
.y305{bottom:299.792000pt;}
.y181{bottom:301.908533pt;}
.y1da{bottom:303.351427pt;}
.y85{bottom:303.356067pt;}
.y12b{bottom:303.370307pt;}
.yc1{bottom:303.375920pt;}
.y268{bottom:303.404267pt;}
.yf6{bottom:303.423173pt;}
.y232{bottom:303.430773pt;}
.y210{bottom:303.456053pt;}
.y5b{bottom:303.845640pt;}
.y2a2{bottom:306.311120pt;}
.y303{bottom:307.350173pt;}
.y3ef{bottom:307.351080pt;}
.y366{bottom:307.353320pt;}
.y180{bottom:309.088427pt;}
.y3ad{bottom:309.752107pt;}
.y1c4{bottom:312.643467pt;}
.y2a1{bottom:318.330960pt;}
.y300{bottom:319.368053pt;}
.y302{bottom:319.370013pt;}
.y1d9{bottom:319.371000pt;}
.y365{bottom:319.373160pt;}
.y84{bottom:319.375627pt;}
.y12a{bottom:319.389867pt;}
.yc0{bottom:319.395493pt;}
.y267{bottom:319.423840pt;}
.yf5{bottom:319.442747pt;}
.y231{bottom:319.450333pt;}
.y20f{bottom:319.475613pt;}
.y5a{bottom:319.799880pt;}
.y17f{bottom:320.428267pt;}
.y3ac{bottom:321.771947pt;}
.y301{bottom:323.829893pt;}
.y17e{bottom:324.585733pt;}
.y1c3{bottom:324.664640pt;}
.y27{bottom:329.045566pt;}
.y2a0{bottom:330.350800pt;}
.y2ff{bottom:331.387893pt;}
.y364{bottom:331.393000pt;}
.y17d{bottom:331.764333pt;}
.y3ab{bottom:333.791787pt;}
.y1d8{bottom:335.390573pt;}
.y83{bottom:335.395200pt;}
.y81{bottom:335.396187pt;}
.y129{bottom:335.409440pt;}
.ybf{bottom:335.415053pt;}
.y266{bottom:335.443413pt;}
.yf4{bottom:335.462320pt;}
.y230{bottom:335.469907pt;}
.y20e{bottom:335.495187pt;}
.y59{bottom:335.819440pt;}
.y3ee{bottom:339.412493pt;}
.y82{bottom:341.215600pt;}
.y17c{bottom:343.104173pt;}
.y1c2{bottom:343.331080pt;}
.y2fe{bottom:343.407733pt;}
.y2fc{bottom:343.410333pt;}
.y363{bottom:343.412840pt;}
.y3aa{bottom:346.191613pt;}
.y2fd{bottom:347.792000pt;}
.y26{bottom:349.077726pt;}
.y1d7{bottom:351.344813pt;}
.y80{bottom:351.350427pt;}
.y3ed{bottom:351.352333pt;}
.y128{bottom:351.363680pt;}
.ybe{bottom:351.369293pt;}
.y265{bottom:351.397640pt;}
.yf3{bottom:351.416547pt;}
.y22f{bottom:351.424147pt;}
.y20d{bottom:351.449427pt;}
.y58{bottom:351.839013pt;}
.y17b{bottom:354.444013pt;}
.y1c1{bottom:355.277600pt;}
.y2fb{bottom:355.350173pt;}
.y362{bottom:355.352680pt;}
.y3a9{bottom:358.131453pt;}
.y17a{bottom:358.601480pt;}
.y29f{bottom:359.830400pt;}
.y3ec{bottom:363.372173pt;}
.y25{bottom:365.024553pt;}
.y179{bottom:365.781373pt;}
.y7f{bottom:367.370000pt;}
.y2fa{bottom:367.370013pt;}
.y361{bottom:367.372520pt;}
.y127{bottom:367.383240pt;}
.ybd{bottom:367.388867pt;}
.y264{bottom:367.417213pt;}
.yf2{bottom:367.436120pt;}
.y22e{bottom:367.443707pt;}
.y20c{bottom:367.468987pt;}
.y57{bottom:367.793253pt;}
.y3a8{bottom:370.151293pt;}
.y29e{bottom:371.770253pt;}
.y2f9{bottom:371.829893pt;}
.y1c0{bottom:373.944027pt;}
.y3eb{bottom:375.392013pt;}
.y178{bottom:377.121213pt;}
.y2f8{bottom:379.387893pt;}
.y360{bottom:379.392360pt;}
.y24{bottom:381.051379pt;}
.y177{bottom:381.278680pt;}
.y3a7{bottom:382.171133pt;}
.y7e{bottom:383.395187pt;}
.y126{bottom:383.402813pt;}
.ybc{bottom:383.408427pt;}
.y263{bottom:383.436787pt;}
.yf1{bottom:383.455693pt;}
.y22d{bottom:383.463280pt;}
.y20b{bottom:383.488560pt;}
.y29d{bottom:383.790080pt;}
.y56{bottom:383.812813pt;}
.y1be{bottom:385.965213pt;}
.y3ea{bottom:387.411853pt;}
.y176{bottom:388.459720pt;}
.y1bf{bottom:390.727453pt;}
.y2f7{bottom:391.407733pt;}
.y2f5{bottom:391.410333pt;}
.y35f{bottom:391.412200pt;}
.y175{bottom:392.617187pt;}
.y3a6{bottom:394.190973pt;}
.y2f6{bottom:395.792000pt;}
.y29c{bottom:395.809920pt;}
.y23{bottom:397.078206pt;}
.y3e9{bottom:399.351693pt;}
.y125{bottom:399.357053pt;}
.ybb{bottom:399.362667pt;}
.y262{bottom:399.391013pt;}
.yf0{bottom:399.409933pt;}
.y22c{bottom:399.417520pt;}
.y20a{bottom:399.442800pt;}
.y55{bottom:399.832387pt;}
.y2f4{bottom:403.350173pt;}
.y35e{bottom:403.352040pt;}
.y1bd{bottom:404.636147pt;}
.y1bb{bottom:404.643787pt;}
.y174{bottom:406.001173pt;}
.y3a5{bottom:406.590813pt;}
.y29b{bottom:407.829760pt;}
.y1bc{bottom:409.398280pt;}
.y3e8{bottom:411.371533pt;}
.y22{bottom:413.025033pt;}
.y2f1{bottom:415.368053pt;}
.y2f3{bottom:415.370013pt;}
.y35d{bottom:415.371880pt;}
.y124{bottom:415.376613pt;}
.yba{bottom:415.382240pt;}
.y261{bottom:415.410587pt;}
.yef{bottom:415.429493pt;}
.y22b{bottom:415.437093pt;}
.y209{bottom:415.462373pt;}
.y54{bottom:415.786627pt;}
.y7d{bottom:415.793120pt;}
.y3a4{bottom:418.530653pt;}
.y29a{bottom:419.769600pt;}
.y2f2{bottom:419.829893pt;}
.y1ba{bottom:423.310213pt;}
.y3e7{bottom:423.391373pt;}
.y173{bottom:424.667600pt;}
.y171{bottom:424.671987pt;}
.y2f0{bottom:427.387893pt;}
.y35c{bottom:427.391720pt;}
.y1f{bottom:429.043793pt;}
.y21{bottom:429.051859pt;}
.y172{bottom:429.354253pt;}
.y3a3{bottom:430.550493pt;}
.y123{bottom:431.396187pt;}
.yb9{bottom:431.401813pt;}
.y260{bottom:431.430160pt;}
.yee{bottom:431.449067pt;}
.y22a{bottom:431.456653pt;}
.y208{bottom:431.481933pt;}
.y299{bottom:431.789440pt;}
.y53{bottom:431.806200pt;}
.y7c{bottom:431.812680pt;}
.y20{bottom:434.947859pt;}
.y1b9{bottom:435.331400pt;}
.y3e6{bottom:435.411213pt;}
.y2ef{bottom:439.407733pt;}
.y2ed{bottom:439.410333pt;}
.y35b{bottom:439.411560pt;}
.y3a2{bottom:442.570333pt;}
.y170{bottom:443.338413pt;}
.y16e{bottom:443.350840pt;}
.y2ee{bottom:443.792000pt;}
.y298{bottom:443.809280pt;}
.y1e{bottom:445.070619pt;}
.y122{bottom:447.350427pt;}
.y3e5{bottom:447.351053pt;}
.yb8{bottom:447.356040pt;}
.y25f{bottom:447.384400pt;}
.yed{bottom:447.403307pt;}
.y229{bottom:447.410893pt;}
.y207{bottom:447.436173pt;}
.y52{bottom:447.825760pt;}
.y7b{bottom:447.832253pt;}
.y16f{bottom:448.025067pt;}
.y2ec{bottom:451.350173pt;}
.y35a{bottom:451.351400pt;}
.y1b8{bottom:453.997827pt;}
.y3a1{bottom:454.970173pt;}
.y297{bottom:455.829120pt;}
.y3e4{bottom:459.370893pt;}
.y16d{bottom:462.017267pt;}
.y2e9{bottom:463.368053pt;}
.y121{bottom:463.370000pt;}
.y2eb{bottom:463.370013pt;}
.y359{bottom:463.371240pt;}
.yb7{bottom:463.375613pt;}
.y25e{bottom:463.403960pt;}
.y11f{bottom:463.408653pt;}
.yec{bottom:463.422867pt;}
.y228{bottom:463.430467pt;}
.y206{bottom:463.455747pt;}
.y51{bottom:463.780000pt;}
.y7a{bottom:463.786493pt;}
.y1d{bottom:465.030819pt;}
.y1b7{bottom:465.944347pt;}
.y3a0{bottom:466.990013pt;}
.y296{bottom:467.768960pt;}
.y2ea{bottom:467.829893pt;}
.y120{bottom:469.190387pt;}
.y3e3{bottom:471.390733pt;}
.y2e8{bottom:475.387893pt;}
.y358{bottom:475.391080pt;}
.y39f{bottom:478.929853pt;}
.yb6{bottom:479.395187pt;}
.yb4{bottom:479.403693pt;}
.y25d{bottom:479.423533pt;}
.y11e{bottom:479.428227pt;}
.yeb{bottom:479.442440pt;}
.y227{bottom:479.450027pt;}
.y205{bottom:479.475307pt;}
.y295{bottom:479.788800pt;}
.y50{bottom:479.799573pt;}
.y79{bottom:479.806067pt;}
.y16c{bottom:480.683707pt;}
.y1c{bottom:481.057646pt;}
.y3e2{bottom:483.410573pt;}
.y1b6{bottom:484.610787pt;}
.yb5{bottom:485.215613pt;}
.y2e7{bottom:487.407733pt;}
.y2e5{bottom:487.410200pt;}
.y357{bottom:487.410920pt;}
.y39e{bottom:491.399680pt;}
.y2e6{bottom:491.792000pt;}
.y294{bottom:491.808640pt;}
.y3e1{bottom:495.350413pt;}
.yb3{bottom:495.357933pt;}
.y25c{bottom:495.377773pt;}
.y11d{bottom:495.382467pt;}
.yea{bottom:495.396680pt;}
.y226{bottom:495.404267pt;}
.y204{bottom:495.429547pt;}
.y4f{bottom:495.819133pt;}
.y78{bottom:495.825627pt;}
.y1b5{bottom:496.631960pt;}
.y1b{bottom:497.004473pt;}
.y16b{bottom:499.275467pt;}
.y169{bottom:499.310947pt;}
.y2e4{bottom:499.350040pt;}
.y356{bottom:499.350760pt;}
.y39d{bottom:503.339520pt;}
.y293{bottom:503.828480pt;}
.y16a{bottom:504.037720pt;}
.y3e0{bottom:507.370253pt;}
.y2e1{bottom:511.368053pt;}
.y2e3{bottom:511.369880pt;}
.y355{bottom:511.370600pt;}
.yb2{bottom:511.377507pt;}
.y25b{bottom:511.397333pt;}
.y11c{bottom:511.402027pt;}
.ye9{bottom:511.416240pt;}
.y225{bottom:511.423840pt;}
.y203{bottom:511.449120pt;}
.y4e{bottom:511.773373pt;}
.y77{bottom:511.779867pt;}
.y1a{bottom:513.031299pt;}
.y1b4{bottom:515.298400pt;}
.y39c{bottom:515.359360pt;}
.y292{bottom:515.768320pt;}
.y2e2{bottom:515.829760pt;}
.y168{bottom:517.977387pt;}
.y3df{bottom:519.390093pt;}
.y2e0{bottom:523.387893pt;}
.y354{bottom:523.390440pt;}
.y1b2{bottom:527.319587pt;}
.yb1{bottom:527.397080pt;}
.y25a{bottom:527.416907pt;}
.y11b{bottom:527.421600pt;}
.ye8{bottom:527.435813pt;}
.y224{bottom:527.443413pt;}
.y202{bottom:527.468693pt;}
.y39b{bottom:527.759200pt;}
.y4d{bottom:527.792947pt;}
.y76{bottom:527.799440pt;}
.y19{bottom:529.058126pt;}
.y3de{bottom:531.409933pt;}
.y1b3{bottom:532.081747pt;}
.y2df{bottom:535.407733pt;}
.y353{bottom:535.410280pt;}
.y2dd{bottom:535.411253pt;}
.y167{bottom:536.643813pt;}
.y39a{bottom:539.779040pt;}
.y2de{bottom:539.792000pt;}
.y3dd{bottom:543.349773pt;}
.yb0{bottom:543.351307pt;}
.y259{bottom:543.371147pt;}
.y11a{bottom:543.375840pt;}
.ye7{bottom:543.390053pt;}
.y223{bottom:543.397640pt;}
.y201{bottom:543.422920pt;}
.y4c{bottom:543.812520pt;}
.y75{bottom:543.819000pt;}
.y291{bottom:545.247933pt;}
.y1b1{bottom:545.990400pt;}
.y1af{bottom:546.002413pt;}
.y2da{bottom:547.349133pt;}
.y352{bottom:547.350120pt;}
.y2dc{bottom:547.351093pt;}
.y1b0{bottom:550.752680pt;}
.y399{bottom:551.798880pt;}
.y2db{bottom:551.810920pt;}
.y18{bottom:553.020246pt;}
.y166{bottom:555.310253pt;}
.y3dc{bottom:555.369613pt;}
.y290{bottom:557.267773pt;}
.y2d9{bottom:559.368973pt;}
.y351{bottom:559.369960pt;}
.yaf{bottom:559.370880pt;}
.y258{bottom:559.390720pt;}
.y119{bottom:559.395400pt;}
.ye6{bottom:559.409627pt;}
.y222{bottom:559.417213pt;}
.y200{bottom:559.442493pt;}
.y4b{bottom:559.766747pt;}
.y74{bottom:559.773240pt;}
.y398{bottom:563.738720pt;}
.y1ae{bottom:564.668853pt;}
.y3db{bottom:567.389453pt;}
.y28f{bottom:569.287613pt;}
.y2d6{bottom:571.387893pt;}
.y2d8{bottom:571.388813pt;}
.y350{bottom:571.389800pt;}
.y165{bottom:573.976680pt;}
.yae{bottom:575.390453pt;}
.y257{bottom:575.410280pt;}
.y118{bottom:575.414973pt;}
.ye5{bottom:575.429187pt;}
.y221{bottom:575.436787pt;}
.y1ff{bottom:575.462067pt;}
.y4a{bottom:575.786320pt;}
.y73{bottom:575.792813pt;}
.y2d7{bottom:575.848693pt;}
.y397{bottom:576.138547pt;}
.y3da{bottom:579.409293pt;}
.y1ad{bottom:583.335280pt;}
.y2d5{bottom:583.407733pt;}
.y34f{bottom:583.409640pt;}
.y2d4{bottom:587.792000pt;}
.y396{bottom:588.158387pt;}
.yad{bottom:591.344680pt;}
.y3d9{bottom:591.349133pt;}
.yab{bottom:591.356040pt;}
.y256{bottom:591.364520pt;}
.y117{bottom:591.369213pt;}
.ye4{bottom:591.383427pt;}
.y220{bottom:591.391013pt;}
.y1fe{bottom:591.416293pt;}
.y49{bottom:591.805893pt;}
.y72{bottom:591.812387pt;}
.y164{bottom:592.643120pt;}
.y1ac{bottom:595.281800pt;}
.y34e{bottom:595.349480pt;}
.y2d3{bottom:595.350173pt;}
.yac{bottom:597.165200pt;}
.y395{bottom:600.178227pt;}
.y3d8{bottom:603.368973pt;}
.y17{bottom:604.346246pt;}
.y15{bottom:604.346353pt;}
.y28e{bottom:605.727120pt;}
.y2d0{bottom:607.368053pt;}
.y34d{bottom:607.369320pt;}
.y2d2{bottom:607.370013pt;}
.yaa{bottom:607.375613pt;}
.y255{bottom:607.384093pt;}
.y116{bottom:607.388787pt;}
.ye3{bottom:607.403000pt;}
.y21f{bottom:607.410587pt;}
.y1fd{bottom:607.435867pt;}
.y48{bottom:607.760133pt;}
.y71{bottom:607.766613pt;}
.y16{bottom:610.922633pt;}
.y163{bottom:611.309547pt;}
.y2d1{bottom:611.829760pt;}
.y394{bottom:612.578067pt;}
.y1ab{bottom:613.948227pt;}
.y3d7{bottom:615.388800pt;}
.y28d{bottom:617.746960pt;}
.y2cf{bottom:619.387893pt;}
.y34c{bottom:619.389160pt;}
.y12{bottom:623.017126pt;}
.y14{bottom:623.017193pt;}
.ya9{bottom:623.395187pt;}
.y254{bottom:623.403653pt;}
.y115{bottom:623.408347pt;}
.ye2{bottom:623.422560pt;}
.ya7{bottom:623.430160pt;}
.y1fc{bottom:623.455440pt;}
.y47{bottom:623.779693pt;}
.y70{bottom:623.786187pt;}
.y393{bottom:624.597907pt;}
.y1aa{bottom:625.969413pt;}
.y3d6{bottom:627.408640pt;}
.ya8{bottom:629.215613pt;}
.y13{bottom:629.593446pt;}
.y28c{bottom:629.686800pt;}
.y162{bottom:629.975987pt;}
.y2ce{bottom:631.407733pt;}
.y34b{bottom:631.409000pt;}
.y2cc{bottom:631.410200pt;}
.y2cd{bottom:635.792000pt;}
.y392{bottom:636.537747pt;}
.y3d5{bottom:639.348493pt;}
.y253{bottom:639.357893pt;}
.y114{bottom:639.362587pt;}
.ye1{bottom:639.376800pt;}
.ya6{bottom:639.384400pt;}
.y1fb{bottom:639.409680pt;}
.y46{bottom:639.799267pt;}
.y6f{bottom:639.805760pt;}
.y11{bottom:641.687966pt;}
.yf{bottom:641.688073pt;}
.y28b{bottom:641.706640pt;}
.y34a{bottom:643.348840pt;}
.y2cb{bottom:643.350040pt;}
.y1a9{bottom:644.635853pt;}
.y10{bottom:648.264379pt;}
.y391{bottom:648.557587pt;}
.y161{bottom:648.642413pt;}
.y15f{bottom:648.660120pt;}
.y3d4{bottom:651.368320pt;}
.y160{bottom:653.404547pt;}
.y28a{bottom:653.726480pt;}
.y349{bottom:655.368680pt;}
.y2c8{bottom:655.368973pt;}
.y2ca{bottom:655.369880pt;}
.y252{bottom:655.377467pt;}
.y113{bottom:655.382160pt;}
.ye0{bottom:655.396373pt;}
.ya5{bottom:655.403960pt;}
.y1fa{bottom:655.429240pt;}
.y45{bottom:655.753507pt;}
.y6e{bottom:655.759987pt;}
.y1a8{bottom:656.657027pt;}
.y2c9{bottom:659.829760pt;}
.yc{bottom:660.358886pt;}
.ye{bottom:660.358913pt;}
.y390{bottom:660.957413pt;}
.y3d3{bottom:663.388160pt;}
.yd{bottom:666.859593pt;}
.y15e{bottom:667.326547pt;}
.y348{bottom:667.388520pt;}
.y2c7{bottom:667.388813pt;}
.y289{bottom:669.746267pt;}
.y251{bottom:671.397027pt;}
.y112{bottom:671.401720pt;}
.ydf{bottom:671.415947pt;}
.ya4{bottom:671.423533pt;}
.y1f9{bottom:671.448813pt;}
.y44{bottom:671.773067pt;}
.y6d{bottom:671.779560pt;}
.y2c6{bottom:671.848693pt;}
.y38f{bottom:672.977253pt;}
.y1a7{bottom:675.323467pt;}
.y3d2{bottom:675.408000pt;}
.yb{bottom:679.029726pt;}
.y9{bottom:679.029833pt;}
.y347{bottom:679.408360pt;}
.y2c5{bottom:679.411080pt;}
.y288{bottom:681.686107pt;}
.y38e{bottom:684.997093pt;}
.ya{bottom:685.530499pt;}
.y15d{bottom:685.992987pt;}
.y1a5{bottom:687.344640pt;}
.y3d1{bottom:687.347840pt;}
.y250{bottom:687.351267pt;}
.y111{bottom:687.355960pt;}
.yde{bottom:687.370173pt;}
.ya3{bottom:687.377773pt;}
.y1f8{bottom:687.403053pt;}
.y43{bottom:687.798253pt;}
.y6c{bottom:687.799133pt;}
.y346{bottom:691.348200pt;}
.y2c4{bottom:691.350920pt;}
.y1a6{bottom:692.031333pt;}
.y287{bottom:693.705947pt;}
.y2c3{bottom:695.810973pt;}
.y38d{bottom:697.396933pt;}
.y7{bottom:697.700659pt;}
.y3d0{bottom:699.367680pt;}
.y345{bottom:703.368040pt;}
.y24f{bottom:703.370840pt;}
.y110{bottom:703.375533pt;}
.ydd{bottom:703.389747pt;}
.y2c2{bottom:703.395853pt;}
.ya2{bottom:703.397333pt;}
.y1f7{bottom:703.422613pt;}
.y8{bottom:704.201313pt;}
.y15c{bottom:704.659413pt;}
.y286{bottom:705.725787pt;}
.y1a4{bottom:705.940027pt;}
.y1a2{bottom:705.946507pt;}
.y38c{bottom:709.336773pt;}
.y1a3{bottom:710.702147pt;}
.y3cf{bottom:711.387520pt;}
.y344{bottom:715.387880pt;}
.y285{bottom:717.745627pt;}
.y10f{bottom:719.395107pt;}
.y10d{bottom:719.408347pt;}
.ydc{bottom:719.409320pt;}
.ya1{bottom:719.416907pt;}
.y1f6{bottom:719.442187pt;}
.y24e{bottom:719.495387pt;}
.y38b{bottom:721.347827pt;}
.y15b{bottom:723.325840pt;}
.y159{bottom:723.330227pt;}
.y3ce{bottom:723.407360pt;}
.y1a1{bottom:724.612947pt;}
.y10e{bottom:725.215573pt;}
.y343{bottom:727.407720pt;}
.y2c1{bottom:727.435533pt;}
.y15a{bottom:728.087973pt;}
.y284{bottom:729.685467pt;}
.y6{bottom:729.695433pt;}
.y38a{bottom:733.747653pt;}
.y42{bottom:734.363787pt;}
.y3cd{bottom:735.347200pt;}
.y10c{bottom:735.362587pt;}
.ydb{bottom:735.363547pt;}
.ya0{bottom:735.371147pt;}
.y1f5{bottom:735.396427pt;}
.y24d{bottom:735.449627pt;}
.y1a0{bottom:736.634133pt;}
.y342{bottom:739.350907pt;}
.y2c0{bottom:739.375373pt;}
.y158{bottom:741.996667pt;}
.y156{bottom:742.001053pt;}
.y283{bottom:745.705253pt;}
.y389{bottom:745.767493pt;}
.y157{bottom:746.683347pt;}
.y3cc{bottom:747.367040pt;}
.y10b{bottom:751.382160pt;}
.yda{bottom:751.383120pt;}
.y9f{bottom:751.390720pt;}
.y2bf{bottom:751.395213pt;}
.y1f4{bottom:751.416000pt;}
.y24c{bottom:751.495333pt;}
.y19f{bottom:755.300560pt;}
.y41{bottom:757.044013pt;}
.y282{bottom:757.725093pt;}
.y388{bottom:757.797333pt;}
.y3cb{bottom:759.386880pt;}
.y155{bottom:760.667480pt;}
.y153{bottom:760.676493pt;}
.y2be{bottom:763.415053pt;}
.y5{bottom:764.383579pt;}
.y154{bottom:765.354173pt;}
.y19e{bottom:767.321747pt;}
.y10a{bottom:767.401720pt;}
.yd9{bottom:767.402693pt;}
.y9e{bottom:767.410280pt;}
.y1f3{bottom:767.435560pt;}
.y24b{bottom:767.514893pt;}
.y281{bottom:769.744933pt;}
.y387{bottom:769.817173pt;}
.y3ca{bottom:771.406720pt;}
.y40{bottom:773.070840pt;}
.y152{bottom:779.342920pt;}
.y280{bottom:781.684773pt;}
.y386{bottom:782.217013pt;}
.y341{bottom:783.345280pt;}
.y3c9{bottom:783.346560pt;}
.y109{bottom:783.355960pt;}
.yd8{bottom:783.356933pt;}
.y9d{bottom:783.364520pt;}
.y1f2{bottom:783.389800pt;}
.y24a{bottom:783.469133pt;}
.y19d{bottom:785.988173pt;}
.y3f{bottom:789.017667pt;}
.y2bd{bottom:791.384680pt;}
.y27f{bottom:793.704613pt;}
.y385{bottom:794.156853pt;}
.y3c8{bottom:795.366400pt;}
.y151{bottom:798.009360pt;}
.y19c{bottom:798.010427pt;}
.y14f{bottom:798.013667pt;}
.y4{bottom:799.071726pt;}
.y108{bottom:799.375533pt;}
.yd7{bottom:799.376493pt;}
.y9c{bottom:799.384093pt;}
.y1f1{bottom:799.409373pt;}
.y249{bottom:799.488707pt;}
.y150{bottom:802.695880pt;}
.y2bc{bottom:803.404520pt;}
.y384{bottom:806.176693pt;}
.y340{bottom:807.384960pt;}
.y3c7{bottom:807.386240pt;}
.y3e{bottom:809.044533pt;}
.y27e{bottom:809.724400pt;}
.y107{bottom:815.395107pt;}
.yd6{bottom:815.396067pt;}
.y9b{bottom:815.403653pt;}
.y2bb{bottom:815.424360pt;}
.y1f0{bottom:815.428933pt;}
.y248{bottom:815.508280pt;}
.y19b{bottom:816.676853pt;}
.y14e{bottom:816.680093pt;}
.y14c{bottom:816.684573pt;}
.y383{bottom:818.576520pt;}
.y33f{bottom:819.404800pt;}
.y3c6{bottom:819.406080pt;}
.y14d{bottom:821.366693pt;}
.y27d{bottom:821.664240pt;}
.y3d{bottom:825.071360pt;}
.y2ba{bottom:827.444200pt;}
.y199{bottom:828.623373pt;}
.y382{bottom:830.596360pt;}
.y33d{bottom:831.342893pt;}
.y106{bottom:831.344640pt;}
.y3c5{bottom:831.345920pt;}
.yd5{bottom:831.350307pt;}
.y9a{bottom:831.357893pt;}
.y1ef{bottom:831.383173pt;}
.y247{bottom:831.462507pt;}
.y19a{bottom:833.385573pt;}
.y27c{bottom:833.684080pt;}
.y3{bottom:833.695873pt;}
.y14b{bottom:835.276333pt;}
.y33e{bottom:835.804520pt;}
.y2b9{bottom:839.384040pt;}
.y3c{bottom:841.018187pt;}
.y381{bottom:842.616200pt;}
.y33c{bottom:843.362733pt;}
.y3c4{bottom:843.365760pt;}
.y27b{bottom:845.703920pt;}
.y198{bottom:847.294267pt;}
.y196{bottom:847.297520pt;}
.yd4{bottom:847.369867pt;}
.y99{bottom:847.377467pt;}
.y1ee{bottom:847.402747pt;}
.y246{bottom:847.482080pt;}
.y197{bottom:852.056560pt;}
.y14a{bottom:853.942773pt;}
.y380{bottom:855.016040pt;}
.y33b{bottom:855.382573pt;}
.y339{bottom:855.384960pt;}
.y3c3{bottom:855.385600pt;}
.y3b{bottom:857.045013pt;}
.y27a{bottom:857.723760pt;}
.y33a{bottom:859.842280pt;}
.yd3{bottom:863.395107pt;}
.y98{bottom:863.397027pt;}
.y1d6{bottom:863.397800pt;}
.y1ed{bottom:863.422320pt;}
.y245{bottom:863.501653pt;}
.y195{bottom:865.963947pt;}
.y37f{bottom:866.955880pt;}
.y338{bottom:867.404800pt;}
.y3c2{bottom:867.405440pt;}
.y2b8{bottom:867.433667pt;}
.y2{bottom:868.384006pt;}
.y149{bottom:871.478547pt;}
.y3a{bottom:873.071840pt;}
.y279{bottom:873.673547pt;}
.y37e{bottom:878.975720pt;}
.y336{bottom:879.343600pt;}
.y1d5{bottom:879.344640pt;}
.y3c1{bottom:879.345280pt;}
.y97{bottom:879.351267pt;}
.y2b7{bottom:879.373507pt;}
.y1ec{bottom:879.376547pt;}
.y244{bottom:879.455880pt;}
.y148{bottom:883.499733pt;}
.y337{bottom:883.804520pt;}
.y278{bottom:885.693387pt;}
.y39{bottom:889.018667pt;}
.y335{bottom:891.363440pt;}
.y333{bottom:891.365120pt;}
.y37d{bottom:891.375547pt;}
.y2b6{bottom:891.393347pt;}
.y96{bottom:895.370840pt;}
.y1eb{bottom:895.396120pt;}
.yd2{bottom:895.420600pt;}
.y243{bottom:895.475453pt;}
.y147{bottom:895.520920pt;}
.y334{bottom:895.823480pt;}
.y277{bottom:897.713227pt;}
.y332{bottom:903.384960pt;}
.y37c{bottom:903.395387pt;}
.y2b5{bottom:903.413187pt;}
.y38{bottom:905.045493pt;}
.y95{bottom:911.390413pt;}
.y1ea{bottom:911.415693pt;}
.yd1{bottom:911.440173pt;}
.y242{bottom:911.495027pt;}
.y146{bottom:913.058653pt;}
.y331{bottom:915.404800pt;}
.y37b{bottom:915.415227pt;}
.y2b4{bottom:915.433027pt;}
.y1{bottom:919.029627pt;}
.y37{bottom:921.070640pt;}
.y94{bottom:927.344640pt;}
.y276{bottom:927.344653pt;}
.y37a{bottom:927.355067pt;}
.y1e9{bottom:927.369920pt;}
.y2b3{bottom:927.372867pt;}
.yd0{bottom:927.394413pt;}
.y241{bottom:927.449267pt;}
.y145{bottom:927.722653pt;}
.y330{bottom:931.804520pt;}
.y36{bottom:989.180440pt;}
.y3f2{bottom:1002.481610pt;}
.y35{bottom:1002.481613pt;}
.y32f{bottom:1002.481627pt;}
.y1d4{bottom:1002.481836pt;}
.y186{bottom:1002.482028pt;}
.h14{height:17.942710pt;}
.hc{height:23.116301pt;}
.h13{height:24.657480pt;}
.h10{height:25.223774pt;}
.h15{height:26.916949pt;}
.h17{height:28.839615pt;}
.h16{height:29.524964pt;}
.he{height:30.762282pt;}
.h8{height:30.823584pt;}
.ha{height:32.367538pt;}
.h5{height:33.906405pt;}
.hb{height:34.679538pt;}
.h18{height:34.714684pt;}
.h11{height:35.377451pt;}
.h9{height:36.991538pt;}
.hd{height:37.588863pt;}
.hf{height:37.840681pt;}
.h6{height:39.606933pt;}
.h12{height:41.616000pt;}
.h7{height:46.240462pt;}
.h2{height:49.989333pt;}
.h4{height:50.864462pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590587pt;}
.x6b{left:77.631467pt;}
.x38{left:79.143333pt;}
.x1{left:80.957493pt;}
.x6c{left:82.620413pt;}
.x35{left:84.283533pt;}
.x39{left:86.213627pt;}
.x41{left:91.162267pt;}
.x99{left:95.625760pt;}
.x92{left:114.066133pt;}
.x93{left:121.171600pt;}
.x60{left:122.078800pt;}
.x61{left:126.765333pt;}
.x62{left:132.056667pt;}
.x46{left:140.825200pt;}
.x47{left:145.587333pt;}
.x18{left:147.552867pt;}
.x2c{left:152.315000pt;}
.xf{left:156.926067pt;}
.x94{left:159.042533pt;}
.x57{left:161.381467pt;}
.x2d{left:162.368600pt;}
.x3a{left:171.817347pt;}
.x10{left:173.707133pt;}
.x22{left:178.318200pt;}
.x95{left:179.527467pt;}
.x3{left:184.592200pt;}
.x96{left:186.633053pt;}
.x64{left:188.220400pt;}
.x36{left:189.278733pt;}
.x23{left:200.088200pt;}
.x33{left:201.222067pt;}
.x97{left:202.582667pt;}
.x98{left:209.763733pt;}
.x4{left:212.107147pt;}
.x34{left:222.160613pt;}
.x5e{left:237.959067pt;}
.x37{left:240.453467pt;}
.x58{left:241.881787pt;}
.x6a{left:250.733867pt;}
.x19{left:254.891400pt;}
.x11{left:262.450467pt;}
.x63{left:270.160547pt;}
.x1a{left:276.661400pt;}
.x12{left:284.220467pt;}
.x40{left:288.604680pt;}
.x24{left:295.181133pt;}
.x5{left:296.390587pt;}
.x59{left:301.902373pt;}
.x6{left:308.107147pt;}
.x44{left:314.305467pt;}
.x25{left:316.951133pt;}
.x45{left:319.218787pt;}
.x91{left:322.317987pt;}
.x2e{left:330.255133pt;}
.x3e{left:367.143187pt;}
.x3f{left:371.905480pt;}
.x1b{left:375.836213pt;}
.x5a{left:382.477360pt;}
.x13{left:385.889800pt;}
.x26{left:387.855133pt;}
.x7{left:392.692853pt;}
.x14{left:395.943267pt;}
.x8{left:397.681947pt;}
.x3b{left:406.296280pt;}
.x56{left:408.340000pt;}
.x27{left:409.625147pt;}
.x80{left:413.480280pt;}
.x42{left:416.961360pt;}
.x9a{left:426.344573pt;}
.x89{left:427.615613pt;}
.x77{left:431.470800pt;}
.x8a{left:434.796813pt;}
.x2f{left:435.855133pt;}
.x4a{left:436.837733pt;}
.x78{left:438.651867pt;}
.x4b{left:443.640947pt;}
.x65{left:444.925867pt;}
.x30{left:445.832987pt;}
.x73{left:447.269213pt;}
.x66{left:448.781040pt;}
.x81{left:454.299080pt;}
.x6f{left:458.003067pt;}
.x70{left:461.555880pt;}
.x1c{left:467.678733pt;}
.x55{left:471.155880pt;}
.x1d{left:477.732200pt;}
.x79{left:482.040827pt;}
.x67{left:487.710120pt;}
.x7a{left:489.221893pt;}
.x68{left:490.884933pt;}
.x9{left:493.001533pt;}
.xa{left:497.990467pt;}
.x5f{left:500.409347pt;}
.x4c{left:506.532147pt;}
.x15{left:507.968453pt;}
.x4d{left:510.311733pt;}
.x53{left:511.521080pt;}
.x54{left:515.300653pt;}
.x28{left:518.399933pt;}
.x6d{left:523.388813pt;}
.x5b{left:524.278253pt;}
.x6e{left:527.017227pt;}
.x31{left:531.099147pt;}
.x29{left:535.181013pt;}
.x75{left:539.565200pt;}
.x90{left:541.757333pt;}
.x3c{left:543.571453pt;}
.x76{left:546.746427pt;}
.x32{left:547.880320pt;}
.x86{left:549.165213pt;}
.x1e{left:551.433013pt;}
.x51{left:553.700680pt;}
.x3d{left:554.910120pt;}
.x87{left:556.346280pt;}
.x52{left:557.555747pt;}
.x4e{left:562.091187pt;}
.x88{left:564.434547pt;}
.x4f{left:565.946253pt;}
.x50{left:568.667600pt;}
.xb{left:571.237653pt;}
.x1f{left:573.203147pt;}
.xc{left:576.226747pt;}
.x7e{left:578.418800pt;}
.x82{left:580.535333pt;}
.x5c{left:584.298827pt;}
.x7f{left:585.599867pt;}
.x83{left:587.640800pt;}
.x48{left:591.875427pt;}
.x71{left:597.618827pt;}
.x84{left:599.810920pt;}
.x72{left:601.171480pt;}
.x85{left:606.916400pt;}
.x16{left:625.587267pt;}
.x2a{left:626.645653pt;}
.x7c{left:630.273893pt;}
.x17{left:635.565253pt;}
.x7d{left:637.454933pt;}
.x8d{left:646.223480pt;}
.x2b{left:648.415680pt;}
.x8f{left:650.305347pt;}
.x8e{left:653.404560pt;}
.x49{left:657.186613pt;}
.x8b{left:659.451880pt;}
.x69{left:660.358933pt;}
.x7b{left:663.533747pt;}
.x5d{left:664.799147pt;}
.x8c{left:666.632947pt;}
.x20{left:668.295920pt;}
.xd{left:672.831400pt;}
.x21{left:678.349507pt;}
.x74{left:680.163627pt;}
.xe{left:684.547920pt;}
.x43{left:713.196693pt;}
}




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